{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# XYZ Example\n", "\n", "In this tutorial we load an XYZ trajectory." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "import numpy as np\n", "import exatomic\n", "import bz2, os\n", "if not hasattr(bz2, \"open\"):\n", " bz2.open = bz2.BZ2File" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- The extra stuff, bz2, is due to the fact that the data is compressed\n", "- Typically, the syntax is as simple as **exatomic.XYZ(\"myfile.xyz\")**" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "xyz = exatomic.XYZ(exatomic.base.resource(\"H2O.traj.xyz\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- The xyz object is an **Editor**\n", "- **Editors** are representations of text files on disk\n", "- These objects facilitate parsing of output data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " 0: 192\n", " 1: frame: 500\n", " 2: O 10.28508956 8.14460938 13.52695208\n", " 3: O 11.35249854 11.35175769 9.48063013\n", " 4: O 12.13309196 8.16159606 4.40491549\n", " 5: O 13.08212337 0.82074230 8.49852496\n", " 6: O 11.61851733 6.25548970 6.55479391\n", " 7: O 9.43623192 4.76428163 2.98272836\n", " 8: O 13.09122527 -0.60466753 1.95264245\n", " 9: O 12.99597287 5.17908995 0.11265448 " ] } ], "source": [ "xyz.head()" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "227941: H 6.04990327 3.24458779 2.04330157\n", "227942: H 3.57922006 -0.35624345 -2.44128726\n", "227943: H -3.88712344 4.80109139 4.02831396\n", "227944: H -1.25442119 5.64846732 2.59449545\n", "227945: H 5.15913457 2.78450812 10.49242229\n", "227946: H 3.73656644 16.44876653 12.33820213\n", "227947: H 1.84052508 5.15303842 9.75342242\n", "227948: H -0.71357806 4.52787046 1.57043161\n", "227949: H 3.75299748 1.08580857 6.38535047\n", " " ] } ], "source": [ "xyz.tail()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- We expect 1175 **frames** (remember that **frames** are states - in this case denoting steps in time)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1175" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(xyz) // (192 + 2) # 192 atoms per frame plus 2 for the xyz file syntax" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- Parsing is performed automatically if the attribute of interest is requested" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", " | symbol | \n", "x | \n", "y | \n", "z | \n", "frame | \n", "
---|---|---|---|---|---|
atom | \n", "\n", " | \n", " | \n", " | \n", " | \n", " |
0 | \n", "O | \n", "19.4359 | \n", "15.39100 | \n", "25.56210 | \n", "0 | \n", "
1 | \n", "O | \n", "21.4530 | \n", "21.45160 | \n", "17.91570 | \n", "0 | \n", "
2 | \n", "O | \n", "22.9281 | \n", "15.42310 | \n", "8.32404 | \n", "0 | \n", "
3 | \n", "O | \n", "24.7215 | \n", "1.55097 | \n", "16.05980 | \n", "0 | \n", "
4 | \n", "O | \n", "21.9557 | \n", "11.82110 | \n", "12.38670 | \n", "0 | \n", "
\n", " | atom_count | \n", "
---|---|
frame | \n", "\n", " |
0 | \n", "192 | \n", "
1 | \n", "192 | \n", "
2 | \n", "192 | \n", "
3 | \n", "192 | \n", "
4 | \n", "192 | \n", "
\n", " | atom_count | \n", "
---|---|
frame | \n", "\n", " |
1170 | \n", "192 | \n", "
1171 | \n", "192 | \n", "
1172 | \n", "192 | \n", "
1173 | \n", "192 | \n", "
1174 | \n", "192 | \n", "
\n", " | symbol | \n", "x | \n", "y | \n", "z | \n", "frame | \n", "
---|---|---|---|---|---|
atom | \n", "\n", " | \n", " | \n", " | \n", " | \n", " |
225595 | \n", "H | \n", "9.74930 | \n", "5.26193 | \n", "19.82770 | \n", "1174 | \n", "
225596 | \n", "H | \n", "7.06105 | \n", "31.08350 | \n", "23.31570 | \n", "1174 | \n", "
225597 | \n", "H | \n", "3.47807 | \n", "9.73778 | \n", "18.43120 | \n", "1174 | \n", "
225598 | \n", "H | \n", "-1.34846 | \n", "8.55639 | \n", "2.96767 | \n", "1174 | \n", "
225599 | \n", "H | \n", "7.09210 | \n", "2.05187 | \n", "12.06650 | \n", "1174 | \n", "
Failed to display Jupyter Widget of type UniverseWidget
.
\n", " If you're reading this message in the Jupyter Notebook or JupyterLab Notebook, it may mean\n", " that the widgets JavaScript is still loading. If this message persists, it\n", " likely means that the widgets JavaScript library is either not installed or\n", " not enabled. See the Jupyter\n", " Widgets Documentation for setup instructions.\n", "
\n", "\n", " If you're reading this message in another frontend (for example, a static\n", " rendering on GitHub or NBViewer),\n", " it may mean that your frontend doesn't currently support widgets.\n", "
\n" ], "text/plain": [ "UniverseWidget(active_scene_indices=[0], children=(GUIBox(children=(Button(description=' Close', icon='trash', layout=Layout(width='98%'), style=ButtonStyle()), Button(description=' Clear', icon='bomb', layout=Layout(width='98%'), style=ButtonStyle()), Folder(children=(Button(description=' Active Scenes', icon='bars', layout=Layout(width='98%'), style=ButtonStyle()),), layout=Layout(align_items='flex-end', width='100%')), Folder(children=(Button(description=' Image', icon='save', layout=Layout(width='98%'), style=ButtonStyle()),), layout=Layout(align_items='flex-end', width='100%')), Folder(children=(Button(description=' Camera', icon='camera', layout=Layout(width='98%'), style=ButtonStyle()),), layout=Layout(align_items='flex-end', width='100%')), Button(description=' Fill', icon='adjust', layout=Layout(width='98%'), style=ButtonStyle()), Button(description=' Axis', icon='arrows-alt', layout=Layout(width='98%'), style=ButtonStyle()), Folder(children=(Button(description=' Animate', icon='play', layout=Layout(width='98%'), style=ButtonStyle()),), layout=Layout(align_items='flex-end', width='100%')), Folder(children=(Button(description=' Fields', icon='cube', layout=Layout(width='98%'), style=ButtonStyle()),), layout=Layout(align_items='flex-end', width='100%'))), layout=Layout(flex='0 0 240px')), VBox(children=(HBox(children=(UniverseScene(atom_c={0: '#9b9b9b', 1: '#ff0d0d'}, atom_r={0: 0.30235616, 1: 0.59526369}, atom_s='[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]', atom_x='[[19.436,21.453,22.928,24.721,21.956,17.832,24.739,24.559,25.124,19.964,19.685,19.682,18.519,20.645,21.315,16.68,14.463,17.324,14.175,15.655,14.238,15.211,14.904,7.034,17.761,18.166,13.853,13.317,18.003,11.274,9.392,3.848,9.806,15.755,10.095,13.221,4.787,13.153,7.554,12.022,8.787,11.714,5.604,7.313,8.267,9.376,3.667,10.682,0.443,3.796,6.423,5.129,1.841,6.966,1.217,2.336,-3.665,-3.136,-0.113,2.35,0.215,13.4,7.813,-0.742,22.533,20.534,26.497,24.913,25.348,22.082,19.586,25.566,19.126,26.268,25.006,18.843,20.648,22.735,18.372,21.201,19.044,21.332,23.272,22.136,21.49,20.358,16.551,19.582,24.463,21.367,16.901,18.245,19.743,22.97,12.763,8.661,18.38,13.274,14.871,17.772,12.669,16.214,15.685,14.317,17.1,15.422,17.729,16.093,19.4,5.971,12.544,18.395,14.168,18.875,14.513,14.297,13.253,8.8,13.599,14.644,14.161,18.311,18.732,15.303,9.614,13.944,10.536,5.638,9.619,9.884,8.466,14.612,3.747,16.296,14.457,7.156,6.686,12.789,11.193,5.736,12.289,9.786,5.447,9.323,13.842,11.016,0.125,4.692,10.427,8.901,10.151,12.438,11.194,6.455,0.55,7.163,7.376,2.172,7.783,10.149,10.541,4.701,6.368,4.311,5.108,1.292,6.386,-4.981,0.816,0.05,13.244,4.165,14.71,7.352,2.186,-1.826,-0.156,1.446,1.754,8.85,2.158,7.018,1.111,5.905,3.834,1.992,-3.0,-0.512,2.533,-1.232,-5.458,-1.953],[19.175,21.518,22.84,24.651,22.068,17.878,24.722,24.568,25.022,19.831,19.786,19.769,18.687,20.61,21.414,16.748,14.354,17.366,14.122,15.721,14.333,14.982,14.995,7.144,18.048,18.05,13.773,13.593,18.128,10.904,9.37,3.938,9.939,15.809,10.006,13.353,4.816,12.93,7.618,12.088,8.404,11.579,5.607,7.43,8.245,9.165,3.761,10.862,0.377,3.941,6.629,5.034,1.894,7.042,1.359,2.221,-3.451,-3.099,0.11,2.279,0.113,13.213,8.002,-0.745,22.711,20.194,26.308,24.973,24.846,22.004,19.894,24.886,19.126,26.025,24.949,19.394,21.639,22.65,18.649,20.969,19.335,21.413,22.908,22.064,21.001,20.368,16.591,19.708,24.379,21.251,17.014,18.032,19.595,22.758,12.543,8.084,18.419,13.627,15.182,17.499,12.487,16.311,15.34,14.38,17.443,15.898,18.063,15.982,19.187,5.88,12.264,18.584,14.491,18.92,14.248,13.888,13.126,8.837,13.602,14.617,13.868,18.468,18.655,15.405,9.512,13.614,10.68,5.358,9.798,10.185,8.376,14.356,4.138,16.479,14.536,6.728,6.609,13.329,9.887,5.975,12.23,9.974,5.56,9.463,13.662,10.679,-0.285,4.259,10.087,8.167,10.411,12.464,11.437,6.313,0.744,7.417,7.618,1.811,7.667,10.458,9.893,4.341,6.854,3.996,5.233,1.148,6.408,-4.843,1.355,-0.275,13.505,3.817,14.856,6.885,2.003,-1.63,-0.578,1.225,1.321,8.297,2.177,7.2,1.207,6.414,4.052,1.943,-3.417,-0.611,2.842,-1.481,-5.317,-2.068],[18.985,21.64,22.668,24.521,22.153,17.782,24.644,24.49,24.894,19.846,19.778,19.881,18.759,20.723,21.544,16.96,14.399,17.473,14.062,15.768,14.399,14.856,15.035,7.206,18.171,18.031,13.722,13.65,18.207,10.614,9.492,3.918,10.038,15.861,9.874,13.404,4.728,12.881,7.587,12.239,8.043,11.49,5.558,7.497,8.226,8.908,3.97,11.027,0.277,4.015,6.784,4.946,1.997,7.08,1.522,2.131,-3.285,-3.106,0.278,2.192,-0.05,13.122,8.125,-0.844,22.709,20.42,26.158,25.198,25.069,21.666,19.917,25.262,19.042,26.019,25.042,19.234,21.527,22.564,18.724,20.687,18.935,21.727,23.064,21.357,21.292,20.964,16.596,20.004,24.383,21.125,17.371,18.116,19.138,23.034,13.038,8.022,17.995,13.303,15.125,17.908,12.615,16.707,14.796,14.413,17.211,14.852,17.981,15.718,18.934,6.073,12.309,18.619,14.365,18.94,14.768,14.289,13.251,8.653,13.524,14.772,13.761,18.156,18.404,15.573,9.301,13.292,10.465,5.555,9.804,10.603,8.577,14.647,4.152,16.303,14.148,6.472,6.54,13.519,8.962,6.127,12.137,9.932,5.702,9.175,13.649,10.474,-0.033,4.34,9.965,7.58,10.4,12.911,11.367,6.43,1.12,7.51,7.752,2.208,7.385,10.811,9.572,4.09,7.027,3.906,5.392,1.508,6.024,-4.563,1.321,-0.09,13.21,3.576,14.698,6.859,2.197,-1.893,-0.368,1.49,1.228,8.304,2.167,6.842,1.109,7.108,4.097,2.182,-3.576,-0.754,2.375,-1.743,-4.805,-1.988],[18.829,21.641,22.734,24.577,22.284,17.591,24.562,24.552,24.991,20.04,19.614,20.04,18.915,20.778,21.457,17.136,14.488,17.682,14.002,15.68,14.506,14.795,14.959,7.085,18.249,17.948,13.686,13.751,18.063,10.653,9.658,3.935,10.003,16.005,9.769,13.401,4.581,12.907,7.44,12.342,7.793,11.411,5.483,7.513,8.14,8.651,4.103,11.117,0.291,4.025,6.98,4.687,2.171,7.225,1.675,2.175,-3.119,-3.101,0.334,2.12,-0.165,13.012,8.228,-0.873,22.803,20.452,26.511,25.307,24.895,21.864,19.265,25.59,18.581,25.824,24.69,18.932,20.796,22.708,18.505,20.653,19.003,22.506,23.425,21.362,21.161,21.036,16.298,20.049,24.075,21.564,17.311,18.406,19.012,22.893,13.306,8.423,17.674,13.308,15.113,17.887,12.997,17.007,15.067,14.16,16.974,14.227,17.775,16.006,19.249,5.756,12.199,18.406,14.074,19.234,14.529,14.276,13.146,8.965,13.367,14.706,13.365,18.832,18.358,15.284,9.173,13.615,10.548,5.781,9.987,10.626,8.826,14.516,3.683,15.854,13.429,6.681,6.359,13.378,8.863,6.283,11.771,9.945,5.702,8.938,13.953,10.597,0.416,4.596,9.842,7.83,10.487,12.601,11.74,6.4,0.528,7.033,7.837,2.834,7.027,10.997,8.866,3.696,6.646,3.866,5.469,1.506,5.795,-4.027,0.802,-0.217,12.884,3.619,14.905,6.864,2.001,-2.18,0.198,1.93,1.186,8.48,2.312,7.026,1.166,7.367,3.553,2.427,-3.964,-1.251,2.462,-1.34,-4.76,-2.242],[18.624,21.5,22.944,24.71,22.335,17.355,24.38,24.617,25.222,20.179,19.343,20.203,19.046,20.749,21.492,17.253,14.472,17.912,14.045,15.475,14.614,14.817,14.76,6.928,18.319,17.837,13.596,13.877,17.919,10.854,9.848,4.103,9.949,15.978,9.71,13.375,4.541,12.806,7.324,12.315,7.7,11.315,5.373,7.49,8.0,8.454,4.106,11.232,0.377,3.943,7.126,4.326,2.35,7.455,1.666,2.316,-3.307,-3.123,0.438,2.108,-0.265,12.92,8.324,-0.561,22.566,20.449,26.365,25.278,25.205,22.073,19.357,25.713,18.416,26.105,24.933,18.681,20.641,22.88,18.354,20.412,18.795,22.347,23.515,22.279,21.219,20.722,15.929,20.283,23.892,21.66,17.249,18.76,19.285,22.643,13.281,8.225,17.366,14.105,15.088,17.512,13.048,16.937,15.614,14.334,17.259,14.298,17.816,16.795,19.488,5.859,12.09,18.331,14.29,19.432,14.577,14.093,12.942,9.333,13.123,14.892,13.148,19.07,18.619,15.383,9.47,13.89,10.562,5.931,9.74,10.261,8.876,15.021,3.414,16.265,13.237,6.601,6.276,13.374,9.195,5.787,11.989,9.761,5.748,8.839,13.494,10.863,-0.258,4.498,9.492,7.624,10.429,12.792,11.894,6.581,0.61,7.099,7.664,2.75,6.794,10.796,8.56,3.407,6.703,3.642,5.436,1.429,5.244,-3.989,0.383,0.464,12.577,3.936,14.698,7.026,2.122,-1.58,-0.017,1.966,1.039,8.458,2.158,6.978,1.479,7.063,3.183,1.828,-3.856,-1.161,2.854,-1.202,-4.792,-1.944],[18.32,21.276,23.044,24.785,22.395,17.131,24.229,24.682,25.37,20.212,19.063,20.36,19.142,20.615,21.591,17.282,14.614,18.096,14.102,15.356,14.675,14.877,14.57,6.848,18.327,17.922,13.386,13.929,17.932,11.053,10.079,4.313,9.866,15.964,9.679,13.281,4.569,12.603,7.163,12.397,7.58,11.413,5.184,7.441,7.822,8.217,3.936,11.31,0.379,3.664,7.084,4.112,2.544,7.558,1.684,2.498,-3.543,-3.131,0.503,2.138,-0.248,12.801,8.376,-0.1,22.576,20.89,26.333,25.196,25.614,22.284,20.094,25.855,18.636,26.388,25.016,18.498,20.87,22.82,18.075,20.178,18.355,21.852,23.855,22.569,21.723,20.668,15.834,20.456,24.382,21.708,17.684,19.694,19.811,22.961,13.779,8.509,17.423,13.292,14.799,17.862,12.83,16.677,15.535,14.744,16.946,14.249,17.81,17.202,19.355,6.259,12.566,18.558,14.327,19.299,14.744,14.572,12.749,8.942,13.049,14.883,13.558,18.586,18.192,15.177,9.542,13.848,10.134,6.232,9.637,9.798,8.933,15.195,4.011,16.987,13.288,6.431,6.213,13.457,9.605,4.998,11.988,9.675,5.707,8.948,13.669,10.886,0.203,4.546,9.511,7.524,10.574,13.207,11.479,6.348,0.939,7.414,7.737,2.445,6.704,10.902,8.981,3.965,6.739,3.271,5.757,1.742,4.573,-3.869,-0.154,0.579,12.268,3.92,14.679,7.088,2.111,-1.377,-0.201,1.993,1.318,8.667,2.158,7.496,1.735,6.962,2.793,1.466,-4.245,-1.138,2.732,-1.055,-4.885,-2.283],[18.175,21.289,23.138,24.773,22.552,16.876,24.247,24.7,25.525,20.323,18.924,20.538,19.384,20.518,21.655,17.258,14.675,18.073,14.22,15.229,14.637,15.039,14.419,6.868,18.402,18.034,13.193,13.902,18.009,11.298,10.129,4.539,9.761,16.043,9.719,13.162,4.625,12.574,7.043,12.655,7.489,11.612,4.838,7.383,7.682,8.074,3.969,11.287,0.33,3.443,6.997,3.961,2.863,7.488,1.644,2.671,-3.731,-3.154,0.552,2.192,-0.245,12.605,8.375,-0.015,22.508,21.059,26.662,25.198,25.22,22.048,19.833,25.836,18.149,26.248,24.542,18.501,20.884,22.999,17.484,19.783,18.461,21.653,23.811,21.972,21.543,20.898,16.29,20.256,25.008,21.597,17.698,20.607,19.862,22.953,13.902,8.575,17.714,13.355,14.459,18.312,13.014,16.889,15.089,14.847,16.87,14.077,18.192,16.856,18.907,5.887,12.733,17.947,13.907,19.4,14.694,14.503,12.77,8.845,12.905,14.382,13.993,18.29,18.373,14.87,9.983,13.54,10.451,6.213,9.755,10.031,9.337,14.888,4.727,17.109,13.364,6.003,6.341,13.411,9.191,5.138,11.84,9.535,5.825,8.74,13.526,10.836,1.255,4.372,9.568,7.214,10.812,13.376,11.671,5.957,0.815,6.885,7.983,2.605,6.706,11.17,9.019,4.766,6.446,2.856,5.787,1.988,5.111,-3.937,-0.042,-0.006,12.658,3.999,14.26,7.297,1.945,-1.013,0.26,1.78,2.015,8.146,1.617,7.884,1.991,7.069,2.738,1.392,-4.913,-1.191,2.791,-1.075,-4.523,-2.401],[17.993,21.437,23.247,24.705,22.515,16.843,24.351,24.545,25.597,20.329,18.926,20.719,19.555,20.458,21.545,17.197,14.562,18.011,14.235,15.131,14.604,14.961,14.265,6.792,18.399,18.117,13.188,13.787,18.165,11.612,10.069,4.66,9.832,16.082,9.755,12.986,4.68,12.604,7.003,12.923,7.409,11.803,4.596,7.493,7.472,7.925,4.152,11.337,0.409,3.287,6.873,4.013,3.081,7.438,1.554,2.886,-3.88,-3.153,0.738,2.284,-0.318,12.429,8.321,-0.02,22.801,20.561,26.76,25.244,25.479,22.004,19.859,25.671,18.089,26.075,25.126,18.122,20.885,22.89,17.595,19.717,18.449,21.697,23.308,21.771,21.396,21.211,15.811,20.052,24.509,21.785,17.805,19.757,19.571,23.176,14.822,8.045,17.999,14.138,14.325,18.324,13.146,17.171,14.442,15.152,16.901,14.134,18.182,16.475,18.261,5.578,12.879,18.569,13.949,19.204,14.889,14.339,12.802,9.156,12.711,14.371,13.695,18.478,18.995,14.625,10.389,13.312,10.586,6.476,9.687,10.902,9.184,15.029,4.401,16.586,13.291,5.498,6.613,13.351,8.663,5.318,12.125,9.359,5.802,8.545,13.613,11.226,0.843,4.163,9.403,7.043,11.103,13.221,11.907,5.887,0.444,6.554,7.675,2.899,6.485,11.009,8.766,5.406,6.802,3.271,5.604,2.122,5.226,-4.39,0.867,0.161,12.613,4.077,13.969,7.205,2.322,-0.875,0.344,1.9,2.141,8.014,1.472,7.071,2.618,7.242,2.778,1.785,-5.543,-0.908,2.55,-1.275,-4.561,-1.915],[17.972,21.599,23.296,24.648,22.359,16.91,24.438,24.236,25.723,20.094,18.925,20.707,19.733,20.393,21.272,17.094,14.499,17.919,14.149,15.181,14.692,14.826,14.106,6.651,18.431,18.222,13.164,13.632,18.302,11.958,9.918,4.632,9.967,16.153,9.746,12.753,4.766,12.736,6.971,13.075,7.394,12.104,4.494,7.625,7.208,7.71,4.299,11.426,0.553,3.353,6.748,4.129,3.241,7.498,1.581,3.023,-4.021,-3.113,1.072,2.454,-0.373,12.343,8.263,-0.055,22.78,20.674,26.986,25.046,25.605,21.809,19.743,25.417,18.098,26.159,25.57,18.223,20.961,22.625,17.777,19.648,18.434,21.274,23.065,21.978,21.895,20.898,15.725,20.046,23.859,21.798,18.011,19.689,19.041,22.794,15.744,7.771,18.333,13.523,14.361,17.935,12.862,17.314,14.498,15.329,16.918,13.807,18.197,16.278,17.764,5.342,13.067,18.078,14.339,19.472,14.272,14.103,12.542,9.162,12.502,14.689,13.497,18.753,19.212,14.876,10.552,12.867,10.351,6.439,10.09,11.25,9.181,15.478,4.226,15.962,12.426,5.701,6.481,13.074,9.438,5.166,12.3,9.034,5.964,8.671,13.534,11.179,-0.293,4.537,9.147,6.931,11.355,13.135,11.854,5.684,0.628,6.881,7.999,3.107,6.276,11.085,8.469,5.377,7.076,3.726,5.337,1.931,4.961,-4.5,1.356,-0.154,12.029,4.08,13.907,6.943,2.482,-0.997,0.285,2.491,2.409,8.072,1.436,6.96,2.559,7.411,2.877,2.286,-5.521,-0.354,2.409,-0.486,-4.558,-2.111],[17.977,21.857,23.36,24.574,22.373,17.114,24.372,24.009,25.731,20.008,18.892,20.724,19.858,20.313,21.035,17.066,14.383,17.835,14.148,15.321,14.824,14.678,14.016,6.611,18.218,18.237,13.236,13.404,18.199,12.178,9.912,4.603,9.992,16.101,9.782,12.401,4.94,12.722,7.013,13.02,7.332,12.293,4.327,7.734,7.011,7.545,4.403,11.416,0.462,3.488,6.846,4.217,3.204,7.816,1.579,3.15,-3.975,-3.061,1.307,2.68,-0.347,12.255,8.265,-0.143,22.672,20.619,26.488,24.832,25.623,21.321,19.662,24.873,18.4,26.212,25.231,18.371,21.293,22.165,17.404,19.661,18.721,20.709,23.317,21.938,22.233,20.769,16.038,19.412,23.738,21.451,18.202,19.967,18.679,22.627,15.643,7.7,18.361,12.996,14.264,17.739,13.143,17.17,14.342,14.936,17.135,13.689,18.063,15.698,18.172,5.466,13.094,18.103,14.353,19.336,13.98,14.29,12.269,8.634,12.142,14.643,13.309,19.369,18.458,15.083,10.857,12.453,10.932,6.52,10.6,11.489,8.922,15.78,4.247,16.546,11.743,6.41,6.755,12.663,9.657,4.983,12.439,8.8,6.184,8.762,13.42,11.206,0.463,5.008,8.945,6.728,11.313,13.303,12.182,5.392,1.106,6.724,8.495,3.414,6.157,11.281,8.603,4.777,6.543,3.69,5.447,2.354,5.047,-4.699,1.115,-0.196,11.735,3.566,14.072,6.858,2.636,-0.957,1.027,2.767,2.343,7.961,1.765,7.639,2.368,7.225,2.863,3.359,-5.458,-0.182,2.922,-0.665,-4.852,-1.99],[18.101,21.988,23.504,24.444,22.513,17.321,24.147,23.863,25.547,20.137,18.757,20.681,19.831,20.35,21.051,17.022,14.236,17.784,14.105,15.321,14.958,14.655,13.912,6.742,17.886,18.1,13.369,13.176,18.11,12.143,9.976,4.748,10.119,16.049,9.838,11.967,5.198,12.575,7.279,12.847,7.237,12.387,4.122,7.848,6.843,7.399,4.412,11.345,0.417,3.568,7.067,4.318,3.159,8.098,1.625,3.275,-3.89,-3.008,1.363,2.912,-0.326,12.33,8.315,-0.175,23.22,20.674,26.914,24.932,25.05,20.645,20.102,24.389,18.441,26.003,24.985,18.092,21.808,21.989,17.344,19.667,18.96,20.604,23.579,21.766,21.977,21.155,16.394,19.048,23.652,21.591,18.17,20.465,18.674,22.654,14.87,7.866,18.083,13.043,14.56,17.311,13.676,17.185,14.914,13.947,17.185,13.892,17.71,15.465,18.629,5.68,13.243,18.367,14.253,19.121,14.186,13.923,12.08,8.788,11.53,14.442,12.972,18.982,18.331,15.103,11.451,12.308,10.894,6.493,10.446,11.345,9.107,15.356,4.484,17.02,11.87,6.11,7.061,12.256,9.456,5.029,12.43,8.5,6.248,8.658,12.899,11.522,0.696,5.104,8.971,7.128,10.989,13.403,12.598,4.741,0.475,6.606,8.68,3.282,6.17,11.037,8.916,4.607,6.853,3.127,6.173,2.44,5.22,-4.717,0.481,0.209,11.575,3.54,13.994,7.108,3.126,-0.777,1.644,2.623,2.028,7.824,2.197,7.896,2.163,6.848,3.09,3.571,-5.14,-0.016,2.749,-1.136,-5.021,-1.722],[18.251,22.05,23.537,24.35,22.651,17.374,23.975,23.648,25.326,20.426,18.562,20.658,19.711,20.404,21.327,16.986,14.041,17.778,13.991,15.237,15.134,14.689,13.767,6.906,17.61,17.97,13.363,12.932,18.128,12.166,10.103,4.921,10.199,15.969,9.923,11.619,5.394,12.335,7.468,12.805,7.361,12.36,3.914,8.018,6.739,7.406,4.379,11.239,0.366,3.597,7.232,4.256,3.236,8.12,1.702,3.412,-3.827,-2.962,1.325,3.093,-0.251,12.476,8.432,-0.167,23.008,20.813,26.65,24.703,25.062,20.695,20.109,24.443,18.362,25.968,24.961,18.024,21.9,21.904,17.696,19.851,19.02,21.176,23.718,22.021,21.731,21.206,16.386,18.918,23.435,22.057,18.18,20.786,18.797,22.945,14.987,8.238,18.058,13.347,14.565,17.436,13.427,17.046,15.527,13.461,16.976,14.015,17.692,15.223,18.813,5.976,12.761,17.821,14.391,19.497,13.782,13.373,12.04,9.031,11.58,14.625,13.259,17.87,18.633,14.969,11.187,12.195,10.853,6.69,10.35,10.934,9.242,14.862,4.993,16.82,11.878,6.189,7.134,12.069,9.423,4.873,12.495,8.341,6.39,8.501,13.289,12.023,-0.125,4.945,8.652,7.343,10.94,12.933,12.75,4.792,0.134,6.237,8.709,2.616,5.925,11.177,8.977,4.897,7.436,2.787,5.992,2.491,5.337,-4.383,0.051,0.221,11.359,4.042,14.255,6.961,2.793,-0.737,1.521,2.351,2.166,7.715,2.133,8.33,2.113,7.676,2.961,3.099,-4.859,-0.414,2.681,-0.716,-4.842,-1.721],[18.295,22.185,23.495,24.426,22.732,17.48,23.822,23.461,25.329,20.591,18.477,20.563,19.626,20.434,21.612,16.983,13.756,17.75,14.122,15.195,15.145,14.69,13.628,7.062,17.337,17.94,13.256,12.689,18.071,12.135,10.232,5.112,10.235,15.772,9.998,11.444,5.267,12.049,7.627,12.766,7.586,12.305,3.728,8.258,6.66,7.419,4.35,11.288,0.309,3.587,7.403,4.019,3.291,8.103,1.808,3.457,-3.729,-2.885,1.255,3.189,-0.203,12.667,8.469,-0.202,22.661,21.133,26.458,24.787,24.747,21.099,19.545,24.639,18.522,25.989,24.958,18.051,21.784,21.645,17.585,20.005,19.035,21.535,23.571,22.315,21.772,21.086,16.207,19.169,23.555,22.184,18.044,20.457,18.836,22.873,14.661,8.544,17.856,13.155,14.549,17.655,13.522,16.814,15.319,13.811,16.991,13.84,18.22,15.35,18.854,6.123,12.448,17.539,14.544,19.453,13.324,13.71,11.825,9.187,11.485,14.854,13.738,17.318,18.504,14.974,11.34,11.668,11.173,6.839,10.885,11.521,9.691,15.475,5.208,16.347,11.746,6.374,7.072,12.01,8.998,4.291,12.673,8.559,6.622,8.865,13.452,11.541,0.336,5.161,8.588,7.143,11.397,13.017,12.318,5.098,0.135,6.08,8.529,2.552,5.762,10.819,8.959,5.068,7.633,3.217,5.799,2.451,4.945,-4.482,0.366,0.143,11.531,4.568,14.328,6.97,3.003,-0.699,0.949,2.73,2.685,8.099,1.901,7.899,2.471,8.028,2.654,2.862,-4.823,-1.173,2.622,-0.853,-4.857,-1.559],[18.372,22.256,23.501,24.703,22.679,17.672,23.753,23.385,25.445,20.476,18.432,20.339,19.46,20.435,21.686,17.101,13.497,17.651,14.253,15.273,15.043,14.714,13.529,7.216,17.231,17.843,13.26,12.535,17.993,12.046,10.422,5.314,10.408,15.595,10.151,11.453,5.061,11.772,7.759,12.857,7.639,12.284,3.52,8.51,6.743,7.509,4.265,11.317,0.242,3.641,7.527,3.709,3.38,8.063,1.87,3.578,-3.736,-2.8,1.286,3.197,-0.179,12.733,8.544,-0.284,22.938,21.078,26.743,25.554,24.563,21.156,19.561,24.494,18.126,25.717,25.049,18.187,21.774,21.727,17.123,20.175,18.978,21.292,23.368,22.363,21.768,20.999,16.5,19.538,23.649,21.948,18.122,20.059,18.754,23.374,15.102,8.508,17.075,12.873,14.224,17.251,13.657,17.039,15.669,13.331,17.073,13.615,18.388,15.533,18.856,6.081,12.513,17.678,14.499,19.383,13.11,14.099,11.717,9.153,10.871,14.48,13.666,17.108,18.747,14.673,11.711,11.366,10.736,7.002,11.337,11.468,9.781,16.047,5.027,16.203,11.581,6.328,6.912,12.03,9.056,3.854,12.356,8.525,6.81,9.151,13.013,11.01,1.125,4.542,8.517,6.867,11.33,12.837,11.721,4.874,0.445,6.072,8.488,2.643,5.689,10.932,8.71,4.967,8.045,3.819,6.301,2.469,4.657,-4.369,1.124,0.487,11.659,5.027,14.478,6.873,3.496,-0.634,0.571,2.727,2.638,8.179,1.843,7.756,2.223,7.513,2.688,3.003,-4.658,-1.557,2.477,-0.706,-4.915,-1.44],[18.551,22.387,23.403,25.079,22.544,17.893,23.853,23.378,25.644,20.24,18.307,20.028,19.338,20.304,21.669,17.221,13.165,17.545,14.375,15.297,14.985,14.719,13.419,7.328,17.331,17.689,13.181,12.406,17.993,11.963,10.596,5.507,10.57,15.491,10.328,11.559,4.871,11.625,7.752,12.94,7.447,12.091,3.281,8.703,6.758,7.618,4.14,11.271,0.236,3.778,7.554,3.485,3.539,7.98,1.923,3.769,-3.789,-2.664,1.296,3.268,-0.143,12.666,8.553,-0.318,23.032,20.617,26.694,25.364,24.618,21.288,19.729,24.445,18.015,26.698,24.95,18.112,21.651,21.625,17.165,20.364,19.396,21.404,23.515,22.101,21.576,21.022,16.643,20.014,23.49,21.869,17.954,19.771,18.644,23.259,15.625,8.581,17.018,12.745,13.932,17.002,13.589,17.336,15.51,13.165,17.111,13.73,17.674,15.501,18.575,6.076,12.278,17.392,14.522,19.443,13.004,13.783,11.549,9.479,10.887,14.19,14.177,17.398,18.599,14.563,11.842,11.818,10.879,7.332,12.039,11.369,9.581,15.472,5.293,16.348,11.463,6.353,6.698,12.161,9.63,3.561,12.48,8.512,7.143,9.301,12.142,11.513,0.405,4.064,8.628,7.125,11.424,12.597,11.555,4.691,0.575,6.233,9.327,2.448,5.919,11.228,8.827,4.649,7.85,3.886,6.621,2.635,4.814,-4.122,1.484,0.407,11.179,5.014,14.378,7.09,3.066,-0.785,0.588,2.758,2.832,7.958,1.968,7.942,2.297,7.539,2.418,2.947,-4.197,-1.285,2.682,-0.13,-5.365,-1.366],[18.68,22.517,23.194,25.48,22.475,18.037,23.942,23.389,25.637,20.18,18.209,19.76,19.284,20.142,21.668,17.333,12.91,17.528,14.417,15.173,15.023,14.555,13.213,7.383,17.307,17.412,13.172,12.259,17.989,11.857,10.675,5.718,10.819,15.47,10.421,11.766,4.754,11.621,7.761,12.965,7.273,11.916,3.098,8.891,6.671,7.697,4.109,11.149,0.25,3.884,7.669,3.474,3.734,7.962,1.981,3.885,-3.858,-2.538,1.203,3.274,-0.092,12.529,8.553,-0.18,23.557,20.628,26.858,25.428,25.025,21.187,19.545,24.425,18.493,27.255,25.065,17.825,21.779,21.588,17.259,20.433,19.619,21.232,23.389,22.038,21.611,20.997,16.892,19.807,23.574,21.791,17.699,19.958,18.468,22.936,15.7,8.621,17.635,12.298,14.127,17.433,13.52,17.157,14.991,13.678,17.004,14.171,17.124,15.584,18.761,6.081,11.936,17.948,14.479,19.407,13.299,13.657,11.361,9.4,11.309,14.516,14.328,17.999,18.124,14.638,11.815,12.241,10.925,7.639,12.268,11.944,9.979,14.719,5.501,16.042,11.402,6.068,6.609,11.799,9.536,3.331,12.265,8.482,7.152,8.84,12.44,11.828,0.197,4.531,9.124,7.292,11.469,12.847,11.926,4.582,-0.032,6.227,9.681,2.309,6.08,11.177,8.656,3.905,7.186,3.863,6.031,3.139,4.65,-4.078,1.461,0.066,11.224,5.051,13.951,7.131,3.305,-1.399,1.191,2.558,3.123,8.115,2.023,7.575,2.65,8.019,2.123,3.2,-4.113,-1.296,2.353,-0.353,-5.524,-1.185],[18.831,22.596,23.04,25.815,22.482,18.073,23.96,23.344,25.528,20.215,18.144,19.602,19.157,20.064,21.725,17.512,12.804,17.49,14.422,15.007,15.116,14.48,13.182,7.26,17.342,17.232,13.27,12.151,17.897,11.694,10.706,5.932,11.014,15.382,10.488,11.854,4.836,11.703,7.558,12.986,7.239,11.864,2.98,8.98,6.576,7.775,4.046,11.047,0.087,3.944,7.878,3.477,3.874,7.917,1.825,4.043,-3.972,-2.497,1.086,3.395,-0.02,12.379,8.663,-0.014,23.319,21.07,26.421,26.358,25.19,20.83,19.515,24.372,18.755,27.155,25.207,18.157,22.404,21.783,16.967,20.509,19.365,21.333,22.59,22.154,22.157,21.116,16.882,19.336,23.709,21.704,17.7,19.657,18.398,23.154,15.818,8.468,17.955,12.282,14.163,17.888,13.55,16.652,14.882,13.422,16.791,14.338,17.34,15.682,18.813,6.671,12.168,17.291,14.482,19.303,13.338,13.552,11.463,9.125,10.965,14.411,13.666,18.205,17.908,14.676,11.606,12.352,11.01,7.665,12.424,11.787,10.569,14.863,5.758,16.27,11.593,6.163,6.538,12.098,9.602,3.232,12.258,8.432,7.208,8.506,13.024,11.149,0.972,4.881,9.336,6.898,11.103,13.175,12.038,4.323,0.457,6.21,9.045,2.643,6.553,10.717,8.348,3.973,7.051,3.812,6.436,3.166,4.305,-4.128,1.059,0.056,10.681,4.744,13.904,7.406,3.663,-1.388,1.208,2.364,3.276,8.191,2.316,8.058,2.499,7.969,2.367,3.092,-4.576,-1.637,2.628,-0.38,-5.574,-1.117],[18.884,22.65,22.932,26.101,22.553,18.002,24.06,23.336,25.442,20.333,18.225,19.535,19.047,19.974,21.764,17.588,12.783,17.34,14.472,14.923,15.141,14.514,13.495,7.058,17.392,17.295,13.263,12.129,17.672,11.622,10.694,6.094,10.97,15.364,10.564,11.879,4.959,11.779,7.402,13.014,7.137,11.88,2.93,8.804,6.529,7.924,4.147,10.875,0.071,4.116,8.135,3.499,3.845,7.93,1.713,4.197,-4.243,-2.471,0.914,3.525,0.03,12.21,8.794,0.254,22.97,20.903,26.531,26.161,24.299,20.842,19.224,24.376,18.77,27.694,24.914,18.299,22.093,21.554,16.881,20.666,19.448,21.892,22.279,22.168,22.541,21.105,16.551,18.788,23.286,21.611,17.693,19.33,18.377,22.911,15.619,8.337,18.51,12.538,14.194,17.679,13.866,16.567,15.204,12.973,16.818,13.556,17.911,15.828,18.643,7.083,12.132,16.954,14.473,19.175,12.692,13.574,11.61,9.301,10.879,14.517,13.043,18.107,17.805,14.921,10.941,12.52,11.345,7.871,12.324,11.398,10.555,14.854,6.374,16.378,12.005,6.019,6.793,12.063,9.587,2.849,12.168,8.405,7.481,8.196,12.662,10.617,1.018,4.674,9.156,7.034,11.184,13.361,12.037,4.555,0.182,6.399,8.527,2.605,6.676,10.822,8.687,4.245,7.244,3.765,7.138,2.963,4.504,-3.927,0.219,-0.09,10.804,4.81,13.834,7.22,3.845,-1.102,0.883,2.483,3.449,8.371,2.527,7.562,2.647,8.043,2.246,2.796,-4.92,-1.594,2.396,-0.127,-5.334,-1.289],[18.797,22.527,22.873,26.419,22.578,17.844,24.023,23.253,25.291,20.305,18.472,19.559,18.946,19.881,21.757,17.58,12.778,17.206,14.53,15.058,15.136,14.392,13.865,6.929,17.368,17.398,13.316,12.158,17.449,11.495,10.665,6.268,10.787,15.435,10.526,11.88,5.127,11.671,7.248,13.052,7.18,11.912,2.909,8.759,6.671,8.026,4.357,10.762,0.178,4.338,8.275,3.52,3.64,7.969,1.559,4.15,-4.433,-2.394,0.73,3.571,-0.025,12.222,8.848,0.475,23.518,20.793,26.75,25.779,24.267,20.653,19.483,24.486,18.707,27.133,25.073,17.884,21.763,21.484,17.482,20.504,19.451,21.61,22.826,22.501,22.459,20.888,16.592,18.235,22.75,21.925,17.733,19.452,18.522,23.341,15.23,8.211,18.414,12.443,14.423,17.243,13.699,16.417,15.487,12.961,16.871,13.468,18.07,15.787,18.827,6.932,12.087,17.313,14.453,19.029,12.365,14.077,11.896,9.38,11.061,14.785,13.019,17.775,17.978,14.697,10.409,12.637,11.001,8.184,12.249,11.787,10.108,14.775,6.243,15.668,11.67,5.67,6.922,11.36,9.808,2.409,11.784,8.597,7.167,8.306,12.875,11.058,0.653,4.325,9.291,6.901,11.459,12.969,11.992,4.495,0.066,6.109,9.175,2.622,6.461,10.929,8.647,4.301,7.118,4.082,6.872,2.984,4.902,-3.985,0.266,-0.257,11.341,4.925,14.056,7.314,4.066,-1.169,0.779,2.507,3.946,8.642,2.848,6.804,3.437,8.05,2.458,2.945,-4.613,-1.331,2.142,0.355,-5.624,-1.195],[18.684,22.365,22.926,26.515,22.577,17.607,23.91,23.246,25.211,20.227,18.671,19.533,18.961,19.854,21.734,17.464,12.821,17.031,14.498,15.281,15.088,14.555,14.196,6.857,17.306,17.46,13.496,12.09,17.194,11.274,10.629,6.123,10.815,15.458,10.503,11.68,5.27,11.558,7.117,12.908,7.325,11.889,2.877,9.018,6.754,8.019,4.533,10.7,0.339,4.561,8.273,3.513,3.559,7.865,1.377,4.078,-4.444,-2.343,0.676,3.585,-0.049,12.453,9.02,0.558,23.454,20.751,26.615,26.193,24.651,20.271,19.804,24.166,18.607,27.428,24.977,18.138,22.045,21.593,17.735,20.041,19.231,21.565,22.967,22.805,22.019,20.804,16.659,18.335,22.9,21.707,17.509,19.595,18.269,23.252,15.514,7.87,17.758,11.972,14.59,17.108,13.247,16.373,15.748,13.236,17.151,13.825,18.081,15.768,19.064,6.541,11.549,17.717,14.489,18.877,12.985,13.384,12.461,9.594,11.007,14.988,13.215,17.579,18.201,14.756,10.656,12.322,10.961,8.123,11.833,12.045,9.566,15.507,6.174,16.105,11.629,5.662,7.116,11.362,9.708,2.716,12.315,8.613,7.234,8.174,12.821,11.746,0.393,4.687,9.313,6.621,11.313,12.864,11.716,4.577,0.284,6.085,9.41,3.03,6.385,11.217,8.743,4.572,7.53,4.569,6.728,2.259,4.684,-4.009,0.729,-0.457,11.207,5.352,14.195,7.587,3.251,-1.016,0.162,2.482,4.139,8.237,2.849,7.085,3.219,8.029,2.373,2.911,-4.773,-1.489,2.21,0.527,-6.157,-0.904],[18.534,22.216,23.006,26.518,22.607,17.454,23.726,23.496,25.234,20.145,18.622,19.44,19.066,19.797,21.749,17.226,12.901,16.888,14.51,15.469,14.998,14.948,14.511,6.832,17.282,17.544,13.683,11.979,16.987,11.001,10.685,5.841,10.809,15.611,10.518,11.293,5.412,11.687,6.99,12.72,7.362,12.042,2.93,9.262,6.621,7.847,4.624,10.647,0.413,4.701,8.179,3.466,3.476,7.787,1.215,4.078,-4.476,-2.271,0.629,3.556,-0.031,12.705,9.196,0.57,23.183,20.77,26.599,26.366,24.793,20.402,19.59,24.18,18.523,27.97,25.191,18.475,22.036,21.664,17.461,20.326,18.844,21.695,22.849,22.567,21.404,20.827,16.203,18.719,23.479,21.461,17.445,19.518,18.155,22.511,15.897,7.996,17.546,11.75,14.806,17.285,13.268,16.35,15.41,13.408,17.4,14.211,17.842,15.988,19.115,5.936,11.88,17.384,15.061,18.781,13.363,13.491,12.591,9.23,11.135,15.201,13.39,17.075,18.081,15.232,10.912,12.387,11.487,7.749,11.442,11.612,9.952,15.379,5.806,16.156,11.578,5.87,7.165,11.755,9.573,3.124,12.453,8.522,7.436,8.304,12.558,11.545,0.636,5.452,9.166,6.705,11.026,12.922,11.833,4.293,0.383,6.294,9.42,3.832,6.325,10.81,8.764,5.081,7.398,4.789,7.115,2.34,4.805,-3.578,0.77,-0.574,11.187,5.349,14.002,7.868,3.548,-0.883,0.018,2.026,3.475,8.518,3.039,7.328,2.523,8.388,2.169,2.858,-4.621,-1.756,2.084,0.528,-6.1,-0.854],[18.439,22.012,22.982,26.472,22.591,17.353,23.625,23.807,25.237,20.288,18.463,19.369,19.15,19.802,21.67,17.051,13.024,16.855,14.527,15.538,14.932,15.325,14.799,6.794,17.282,17.71,13.84,11.838,16.838,10.952,10.722,5.524,10.732,15.72,10.456,11.212,5.592,11.878,6.944,12.576,7.206,12.313,3.132,9.335,6.485,7.65,4.592,10.687,0.431,4.789,8.191,3.5,3.331,7.794,1.068,4.164,-4.494,-2.11,0.475,3.449,-0.047,12.838,9.476,0.57,23.057,20.936,26.451,26.711,24.728,20.686,19.314,24.677,18.442,27.289,25.004,18.094,21.687,22.032,17.288,20.193,19.007,21.688,23.113,22.182,21.205,21.121,16.078,18.598,23.636,21.745,17.994,19.345,18.301,23.076,15.638,8.438,16.739,12.489,14.71,17.12,13.348,16.013,14.404,13.538,17.442,14.737,17.741,16.233,18.919,5.729,11.705,17.324,14.934,18.572,13.447,14.238,13.07,9.522,11.514,14.921,13.662,16.105,18.207,15.444,10.529,11.765,11.5,7.235,11.113,11.379,10.396,14.893,5.357,15.811,11.692,5.575,7.458,11.193,9.804,2.808,12.676,8.252,7.521,8.221,12.915,11.301,0.968,5.511,8.757,7.02,10.792,13.101,11.724,4.525,0.503,5.88,9.533,5.005,6.003,10.308,8.488,5.355,6.867,4.833,6.711,3.294,4.47,-3.496,0.74,-0.711,11.109,5.314,14.122,8.167,3.588,-0.412,0.095,2.042,3.478,8.742,3.048,7.135,1.984,8.102,2.029,3.369,-4.826,-1.769,1.857,0.687,-5.788,-0.718],[18.359,21.724,22.928,26.385,22.585,17.222,23.566,24.038,25.245,20.627,18.363,19.267,19.23,19.939,21.642,17.002,13.235,16.817,14.394,15.45,14.944,15.648,14.901,6.65,17.208,17.933,13.864,11.701,16.686,10.888,10.614,5.117,10.594,15.512,10.35,11.219,5.762,12.088,6.793,12.486,6.993,12.585,3.385,9.42,6.434,7.489,4.561,10.809,0.483,4.816,8.137,3.512,3.205,7.755,0.969,4.302,-4.453,-1.959,0.342,3.408,-0.075,12.89,9.734,0.715,22.934,21.2,26.912,26.547,24.478,21.108,19.921,24.945,18.437,26.852,24.311,17.692,21.526,22.236,17.537,20.144,19.044,21.573,22.951,21.896,21.13,21.415,16.425,18.429,23.64,22.02,17.867,19.274,18.408,23.196,15.578,8.364,16.727,13.206,15.083,17.261,13.564,15.755,14.126,13.762,17.318,14.561,17.185,15.853,19.307,6.309,11.466,17.932,14.474,18.637,13.208,14.601,12.976,9.567,11.61,14.872,14.053,15.96,18.63,15.148,10.658,11.964,10.966,6.988,11.089,11.81,9.847,15.076,5.046,16.008,11.773,5.342,7.502,11.507,9.685,2.848,12.739,8.274,7.622,8.39,13.312,11.806,0.749,5.104,8.2,6.678,10.768,13.314,11.516,5.035,0.551,5.523,9.601,6.071,5.968,10.875,8.293,5.166,6.552,4.612,6.61,3.309,4.199,-3.692,0.621,-0.738,11.601,4.787,14.601,8.364,3.457,-0.014,0.097,2.069,4.145,8.927,3.109,7.553,1.79,7.926,2.172,3.537,-5.406,-1.728,1.612,0.482,-5.858,-0.521],[18.388,21.491,22.808,26.264,22.623,17.141,23.509,24.133,25.277,20.889,18.439,19.159,19.29,20.142,21.678,17.07,13.552,16.79,14.142,15.441,15.07,15.702,14.664,6.471,17.193,18.253,13.799,11.634,16.56,10.777,10.368,4.781,10.393,15.275,10.404,11.37,5.816,12.205,6.656,12.504,6.814,12.782,3.59,9.574,6.564,7.359,4.673,11.069,0.463,4.732,8.055,3.421,3.094,7.672,0.921,4.444,-4.495,-1.896,0.342,3.344,-0.1,12.973,9.897,0.916,22.709,21.882,26.953,25.553,24.915,21.222,20.368,25.133,18.262,27.509,24.341,17.956,20.89,22.423,17.527,20.201,18.768,21.478,22.563,22.306,21.004,21.48,16.201,18.342,23.067,21.844,17.74,19.446,18.485,22.822,15.718,8.195,17.57,13.066,15.113,17.47,13.214,16.523,14.93,13.676,17.248,14.59,16.162,16.025,19.595,6.166,11.882,17.823,14.458,18.7,12.739,14.451,12.759,8.979,11.145,14.93,14.506,16.409,18.7,15.134,11.007,12.527,10.869,6.504,11.188,11.722,9.808,15.286,4.656,15.874,11.963,5.602,7.634,11.422,10.156,3.532,12.782,8.076,7.701,8.263,13.692,12.406,0.333,5.17,8.401,6.204,10.768,13.276,11.388,5.314,0.614,5.151,9.374,6.305,5.874,11.389,8.073,4.81,6.707,4.331,6.646,2.648,4.804,-3.526,0.213,-0.926,12.088,4.031,14.711,8.259,4.079,0.351,0.012,2.121,3.976,9.362,3.344,7.155,1.742,7.437,2.378,3.667,-5.103,-1.834,1.723,0.109,-5.928,-1.101],[18.48,21.277,22.554,26.073,22.801,17.112,23.467,24.222,25.297,21.075,18.591,19.184,19.455,20.274,21.666,17.27,13.809,16.868,14.096,15.634,15.109,15.516,14.396,6.424,17.339,18.55,13.782,11.489,16.37,10.909,10.14,4.581,10.231,15.133,10.564,11.654,5.892,12.322,6.602,12.514,6.671,12.93,3.89,9.635,6.592,7.363,4.775,11.361,0.29,4.612,7.873,3.456,2.887,7.584,0.81,4.561,-4.468,-1.908,0.264,3.308,-0.192,13.013,9.934,1.001,22.591,22.13,26.631,25.432,25.167,21.378,19.966,24.987,18.255,27.178,24.829,18.565,20.896,22.402,17.558,20.223,18.75,21.773,22.561,22.56,20.946,21.29,16.123,17.788,22.531,22.182,17.737,19.457,18.486,22.845,14.756,7.73,18.013,12.677,14.221,17.068,13.422,16.528,15.113,13.79,17.346,15.021,15.793,15.904,20.015,5.432,11.701,17.398,14.652,18.681,12.691,14.051,12.721,8.675,10.754,14.822,14.498,17.173,18.605,15.386,10.62,12.229,10.881,6.272,10.92,11.602,9.773,15.136,4.068,15.651,12.308,5.444,7.684,11.119,9.99,4.453,13.173,8.246,8.045,8.397,13.907,12.084,0.736,5.938,8.453,6.382,10.836,13.185,11.823,5.33,0.867,5.301,9.776,6.152,5.779,11.267,8.5,4.36,6.762,3.729,6.587,2.223,4.561,-3.69,0.349,-0.956,12.197,3.493,14.56,8.403,4.424,0.88,0.341,1.88,3.52,9.302,3.224,6.42,1.648,7.554,2.062,2.863,-4.725,-1.948,1.886,-0.005,-6.075,-1.247],[18.493,21.277,22.332,25.819,22.982,17.124,23.475,24.291,25.221,21.19,18.803,19.204,19.586,20.294,21.672,17.401,13.882,16.78,14.047,15.89,15.115,15.249,14.295,6.398,17.419,18.671,13.965,11.231,16.222,11.017,9.967,4.447,10.119,15.199,10.628,11.768,6.124,12.403,6.635,12.423,6.732,12.943,4.265,9.634,6.671,7.463,4.757,11.523,0.14,4.253,7.634,3.493,2.594,7.369,0.746,4.502,-4.319,-2.011,0.166,3.24,-0.219,13.069,9.832,1.031,22.383,21.905,26.968,25.393,24.865,21.178,19.983,24.765,18.805,26.505,24.389,18.46,21.651,22.474,18.1,20.34,18.696,21.516,22.384,22.596,20.905,21.487,16.343,17.71,23.029,22.519,18.226,19.036,18.753,23.065,15.207,7.929,18.066,13.248,14.212,17.095,13.561,16.153,14.735,14.14,17.567,15.52,16.636,16.027,20.17,5.661,11.791,17.829,15.14,18.595,12.854,13.774,12.377,8.479,10.553,14.928,13.755,17.428,18.914,15.507,10.719,12.586,11.095,6.222,10.653,11.655,9.517,14.741,4.623,15.865,12.779,5.408,7.515,11.448,9.371,5.522,13.244,8.311,7.94,8.145,13.71,11.588,0.884,6.214,8.416,6.683,10.782,13.175,12.512,5.179,0.599,5.516,10.08,5.287,5.815,11.187,8.386,4.622,6.775,3.742,6.403,1.991,4.105,-3.779,0.267,-0.987,11.777,3.417,14.703,8.444,4.548,0.98,-0.195,1.84,3.823,8.756,2.698,6.75,1.424,7.759,1.877,2.145,-4.43,-1.964,1.895,-0.056,-6.202,-0.814],[18.574,21.411,22.092,25.599,23.039,17.177,23.576,24.293,25.222,21.204,19.101,19.138,19.766,20.274,21.657,17.377,14.037,16.672,14.055,16.127,15.161,15.274,14.451,6.498,17.562,18.563,14.149,10.916,16.284,11.031,9.86,4.492,10.052,15.351,10.528,11.784,6.246,12.518,6.653,12.349,6.842,12.829,4.62,9.528,6.783,7.565,4.666,11.569,0.073,3.909,7.423,3.356,2.265,7.278,0.829,4.447,-4.248,-2.102,0.019,3.108,-0.099,13.119,9.551,1.018,22.456,21.835,26.832,25.1,25.038,21.308,20.647,24.796,18.771,26.04,24.381,18.057,21.829,22.456,18.31,20.2,18.979,21.558,22.614,22.537,20.445,21.746,16.078,18.13,23.548,22.219,18.388,18.685,18.65,23.005,15.744,8.3,17.834,13.536,14.837,17.306,13.342,16.329,14.438,13.852,17.937,14.547,17.179,16.176,20.205,6.048,12.113,18.077,15.196,18.556,12.434,13.675,12.577,8.426,10.742,15.071,13.621,17.473,18.674,15.997,11.408,12.945,11.07,6.011,10.895,11.83,9.379,14.802,4.895,15.449,12.238,5.706,8.109,11.603,9.671,5.834,13.199,8.617,7.609,7.942,13.12,11.802,0.084,5.738,8.699,6.639,10.515,13.094,12.223,5.568,0.352,6.145,9.407,4.848,5.89,11.409,8.438,5.084,5.848,3.999,5.613,1.897,4.708,-3.717,-0.038,-1.08,11.732,3.739,14.723,8.166,3.937,1.127,-0.674,1.871,3.818,8.703,2.08,7.429,1.043,7.67,2.292,2.178,-3.868,-1.955,1.481,-0.0,-6.099,-0.987],[18.574,21.476,21.916,25.414,22.813,17.224,23.785,24.235,25.347,21.201,19.258,19.091,19.981,20.291,21.665,17.307,14.212,16.739,14.021,16.316,15.107,15.286,14.72,6.722,17.808,18.371,14.323,10.753,16.429,11.241,9.883,4.537,10.171,15.367,10.537,11.819,6.311,12.547,6.628,12.207,6.926,12.609,4.84,9.322,7.028,7.626,4.556,11.577,-0.027,3.881,7.111,3.291,2.022,7.297,0.823,4.37,-4.12,-2.202,-0.176,2.932,0.012,13.139,9.185,0.859,22.846,21.416,27.001,25.081,25.406,21.045,20.79,25.233,18.491,25.932,24.811,18.419,21.778,22.457,18.31,20.35,18.833,21.557,22.303,22.294,20.134,21.829,16.053,17.7,24.02,22.142,18.187,18.904,18.6,22.998,15.341,8.582,17.375,13.252,15.373,17.145,13.302,16.482,14.749,14.01,18.047,14.168,16.589,15.895,20.02,5.852,12.47,18.088,15.032,18.59,11.997,14.201,12.945,8.742,10.485,15.176,14.125,17.86,18.566,16.102,11.442,12.576,10.585,6.396,11.0,11.948,9.214,15.038,4.635,15.432,11.517,5.532,7.853,11.698,9.522,5.41,13.172,8.765,7.526,8.085,12.771,12.295,0.293,5.173,8.878,6.493,10.454,13.253,11.507,6.347,0.565,6.346,9.246,5.283,5.954,11.5,8.809,5.089,5.529,3.783,5.441,1.617,4.645,-3.497,0.262,-0.986,11.647,4.477,14.635,7.619,3.471,1.337,-0.645,1.669,3.246,8.798,2.149,7.026,0.415,7.593,2.418,2.445,-3.9,-1.666,1.653,0.699,-5.968,-0.627],[18.513,21.532,21.801,25.191,22.528,17.163,24.034,24.291,25.596,21.175,19.335,19.008,20.064,20.297,21.668,17.346,14.387,16.823,13.966,16.37,14.96,15.342,14.877,6.84,17.831,18.389,14.396,10.668,16.548,11.506,10.004,4.64,10.29,15.26,10.562,11.845,6.315,12.461,6.57,12.088,7.034,12.46,5.025,9.237,7.198,7.703,4.426,11.6,-0.05,3.947,6.858,3.339,1.823,7.176,0.784,4.063,-3.941,-2.281,-0.263,2.846,0.198,13.072,8.823,0.673,22.337,21.433,27.347,24.875,25.088,21.045,20.58,25.305,18.458,26.253,24.912,18.897,21.909,22.526,18.117,20.287,18.677,21.419,22.158,22.284,20.253,21.1,16.463,17.726,24.516,22.217,18.431,19.205,18.574,23.167,14.91,8.566,17.348,13.509,15.32,17.557,13.133,16.571,15.152,14.243,18.173,14.454,16.214,15.935,19.737,5.788,12.839,18.27,15.475,18.692,12.322,14.231,12.947,8.816,10.13,15.279,14.099,18.32,19.176,15.918,11.455,12.522,10.875,6.252,10.726,11.514,9.375,15.141,4.31,15.912,12.425,5.233,7.46,11.4,9.216,5.224,12.5,9.164,7.676,8.126,12.975,12.004,0.742,5.619,8.997,6.627,10.382,13.154,11.632,6.422,0.525,6.6,9.18,5.549,6.069,10.975,8.706,5.105,5.879,3.425,5.212,1.013,4.541,-3.687,0.496,-1.037,11.848,4.704,14.75,7.239,3.586,1.018,-0.5,1.601,3.439,8.271,2.434,6.672,0.542,7.129,2.036,2.165,-3.898,-1.484,1.86,1.481,-5.777,-0.801],[18.466,21.57,21.924,25.05,22.358,17.144,24.294,24.387,25.729,21.152,19.383,18.975,20.088,20.303,21.652,17.465,14.766,16.761,13.991,16.401,14.88,15.469,14.806,6.702,17.707,18.689,14.32,10.672,16.712,11.779,10.154,4.714,10.312,15.233,10.454,11.844,6.422,12.495,6.431,12.04,7.031,12.334,5.104,9.309,7.439,7.799,4.338,11.468,0.023,4.013,6.679,3.435,1.628,6.987,0.718,3.759,-3.893,-2.373,-0.182,2.761,0.408,12.972,8.446,0.544,21.945,21.914,27.068,24.665,25.636,21.519,20.488,25.411,18.56,26.156,24.457,18.77,21.904,22.616,18.053,20.054,18.854,21.251,21.839,21.904,20.266,21.098,16.312,18.012,24.755,22.118,18.579,19.178,18.448,23.238,14.597,8.496,17.593,13.848,15.105,17.634,13.134,16.884,14.896,14.396,18.297,14.93,16.012,16.299,19.359,6.236,12.583,17.965,15.62,18.511,12.43,13.835,13.016,8.969,10.016,14.872,13.754,18.415,19.433,15.782,11.519,13.105,11.544,6.354,10.252,10.881,9.737,14.59,4.186,15.709,12.343,5.219,7.976,11.152,9.463,5.976,12.538,9.176,7.552,8.039,13.817,10.994,0.018,5.77,9.018,6.951,10.472,12.544,12.049,6.4,0.25,6.643,9.047,5.229,6.614,11.407,8.611,5.569,6.212,3.109,5.001,0.805,4.596,-3.987,0.617,-1.119,12.193,4.395,14.701,6.907,3.856,0.907,-0.604,1.637,2.777,7.744,2.49,6.286,0.679,6.643,2.418,2.337,-3.293,-1.337,1.705,1.547,-5.685,-1.275],[18.429,21.514,22.05,24.944,22.335,17.22,24.498,24.506,25.702,21.1,19.315,19.077,20.065,20.258,21.536,17.512,15.094,16.566,13.956,16.446,14.941,15.602,14.677,6.61,17.562,18.927,14.306,10.659,16.776,11.963,10.298,4.766,10.35,15.22,10.243,11.82,6.601,12.628,6.341,12.049,6.97,12.232,5.26,9.258,7.578,7.922,4.358,11.44,-0.055,3.999,6.537,3.561,1.473,6.888,0.554,3.527,-3.825,-2.372,-0.103,2.61,0.55,12.896,8.031,0.383,22.583,21.66,27.461,24.878,25.888,21.785,20.561,25.345,18.642,25.839,24.303,18.366,21.632,22.878,18.447,20.241,18.642,21.63,22.038,22.077,20.437,21.311,16.062,17.691,25.227,22.449,18.636,19.065,18.879,22.797,15.074,8.371,18.004,13.734,15.065,16.948,13.268,16.592,14.687,15.273,18.086,15.373,16.404,16.035,19.758,5.905,13.123,17.963,15.568,18.457,12.131,14.173,12.842,9.022,9.828,14.862,13.967,18.657,19.385,15.814,11.475,12.784,11.078,6.006,9.965,11.358,9.757,14.176,4.875,15.135,12.125,5.42,8.174,11.363,8.773,6.481,12.611,9.439,7.619,7.601,14.343,10.602,0.089,6.073,9.404,7.337,10.309,12.018,11.864,5.981,0.279,6.978,9.143,4.688,6.645,11.589,8.632,5.673,5.917,3.399,4.635,1.193,4.52,-4.049,0.804,-1.184,12.439,4.473,14.838,6.728,3.181,1.23,-0.419,1.726,2.661,7.435,2.506,6.303,0.042,6.548,2.378,2.747,-3.211,-1.281,1.569,1.539,-5.758,-1.21],[18.451,21.393,22.139,24.925,22.431,17.243,24.669,24.604,25.749,21.115,19.285,19.195,20.025,20.232,21.382,17.528,15.228,16.364,14.034,16.464,15.043,15.767,14.466,6.623,17.392,18.994,14.383,10.531,16.754,12.216,10.326,4.767,10.309,15.029,10.034,11.822,6.923,12.635,6.206,11.914,6.984,12.068,5.353,9.13,7.672,8.024,4.451,11.502,-0.112,3.946,6.266,3.649,1.362,6.816,0.386,3.318,-3.697,-2.307,0.052,2.616,0.543,12.954,7.751,0.45,22.215,21.418,27.531,24.502,25.383,21.727,20.602,25.672,18.39,25.664,25.251,18.97,21.643,22.91,18.07,20.224,18.846,21.21,22.441,22.234,20.381,21.369,16.218,17.841,24.828,21.885,18.312,19.209,18.999,23.065,15.439,8.177,17.98,13.863,15.125,16.967,13.271,16.041,14.575,15.379,18.045,15.299,17.175,15.896,20.32,5.275,13.642,17.771,15.204,18.047,11.985,14.358,12.583,8.873,9.945,15.265,14.459,18.331,19.69,16.352,11.484,12.607,10.893,6.255,10.307,11.519,9.943,14.591,4.902,15.341,12.818,5.306,7.955,11.149,8.947,6.169,12.392,9.574,7.759,7.986,14.236,11.595,0.207,6.069,9.631,7.073,10.039,12.627,11.837,6.55,0.334,7.626,8.808,4.8,6.604,11.119,8.551,5.049,5.417,3.788,4.487,0.891,4.945,-3.749,0.769,-1.433,12.109,4.373,14.624,6.055,2.363,1.493,-0.363,1.875,2.789,7.539,2.285,6.754,-0.019,6.73,2.624,2.48,-3.296,-0.843,1.447,1.49,-5.531,-0.809],[18.352,21.228,22.213,24.914,22.581,17.399,24.862,24.611,25.766,21.004,19.432,19.255,19.927,20.227,21.341,17.545,15.227,16.08,14.157,16.275,15.061,15.784,14.232,6.5,17.187,19.137,14.535,10.473,16.785,12.627,10.346,4.712,10.169,14.853,9.921,11.799,7.256,12.763,6.159,11.71,7.12,11.952,5.414,9.1,7.948,8.094,4.469,11.539,-0.077,3.8,5.937,3.756,1.276,6.805,0.219,3.108,-3.617,-2.234,0.13,2.66,0.539,12.923,7.637,0.754,21.928,21.488,27.432,24.2,25.515,21.626,20.801,25.971,18.216,25.588,25.447,19.296,21.406,22.919,18.04,20.149,19.074,20.8,22.406,21.731,20.404,21.878,16.499,18.36,24.622,22.269,18.222,19.674,18.607,23.102,15.401,8.343,17.772,13.918,15.06,17.514,13.317,16.068,14.783,14.969,17.984,14.956,16.802,16.189,20.656,5.769,13.43,17.76,15.092,17.901,11.965,14.322,12.453,9.032,9.453,14.886,14.714,18.126,19.442,16.264,12.037,12.777,11.036,6.323,10.627,11.344,9.753,14.522,4.445,15.573,12.969,5.136,8.391,11.476,9.273,5.262,12.488,9.791,7.716,7.788,14.085,12.433,0.016,6.127,9.607,6.46,10.068,12.938,11.797,6.618,0.667,7.926,8.093,5.252,6.917,11.193,8.253,5.66,5.028,3.487,4.287,0.378,5.146,-3.474,0.354,-1.481,12.096,4.151,14.501,6.052,2.059,2.003,-0.247,1.962,2.744,7.453,2.087,6.693,0.171,6.414,3.013,2.109,-3.058,-0.921,1.481,1.839,-5.271,-0.707],[18.16,20.981,22.236,24.785,22.645,17.613,24.991,24.61,25.814,20.825,19.689,19.27,19.849,20.186,21.324,17.572,14.999,15.906,14.218,16.009,15.017,15.639,14.064,6.618,17.126,19.413,14.553,10.426,16.893,13.062,10.453,4.522,10.068,14.907,10.064,11.814,7.281,13.032,6.178,11.629,7.204,12.064,5.393,9.02,8.272,8.144,4.486,11.573,-0.003,3.674,5.616,3.86,1.177,6.71,0.152,3.019,-3.52,-2.217,0.198,2.743,0.517,12.789,7.591,1.249,22.04,21.435,27.368,24.522,25.494,21.422,20.504,25.925,18.079,25.975,24.955,19.269,21.558,23.106,18.379,20.047,18.901,21.584,22.165,22.224,20.433,21.613,16.47,18.629,25.149,22.266,18.2,19.744,18.527,22.857,15.279,8.406,17.856,14.197,14.699,17.56,13.439,16.132,14.874,14.893,17.82,15.056,15.976,16.467,21.1,5.987,13.568,17.346,15.483,17.671,11.739,14.221,12.192,9.346,9.444,14.46,14.252,18.406,19.288,16.132,12.5,12.129,10.573,6.461,10.794,11.618,9.29,13.652,4.218,14.856,12.844,4.898,8.37,11.406,9.23,5.498,12.837,10.078,7.788,7.837,14.219,11.656,0.651,6.576,9.446,6.484,9.893,12.639,11.928,6.375,0.328,7.498,8.093,5.202,7.238,11.362,8.561,5.468,5.13,2.861,3.978,0.415,5.157,-3.597,0.19,-1.402,12.59,3.878,14.591,6.085,2.223,2.046,-0.062,2.025,2.431,7.311,2.271,6.083,0.057,6.483,2.688,1.769,-3.144,-1.036,1.538,2.052,-5.051,-0.953],[17.949,20.804,22.169,24.736,22.641,17.647,24.966,24.771,25.823,20.675,19.828,19.323,19.747,20.183,21.476,17.601,14.833,15.777,14.295,15.916,15.012,15.628,13.873,6.737,17.093,19.672,14.379,10.337,16.973,13.409,10.492,4.523,9.933,14.776,10.305,11.732,7.1,13.286,6.128,11.557,7.257,12.197,5.431,8.897,8.363,8.256,4.453,11.708,0.093,3.722,5.394,3.872,1.012,6.579,0.2,3.0,-3.497,-2.336,0.179,2.739,0.48,12.868,7.518,1.66,21.895,21.323,27.354,24.746,25.782,20.939,19.882,25.701,18.177,26.01,25.12,19.384,21.24,23.072,18.569,19.544,19.079,21.305,22.119,22.321,20.448,21.692,16.716,18.215,25.408,21.423,18.1,19.283,18.476,23.008,15.461,8.569,18.272,13.588,14.191,17.533,13.566,15.848,15.326,14.775,17.614,15.015,15.682,16.462,21.507,5.73,14.326,17.038,14.809,17.374,11.545,14.346,12.071,9.392,9.888,14.911,14.181,18.347,19.491,16.402,12.932,12.184,10.495,6.155,10.994,11.697,9.505,13.437,4.431,15.172,13.376,5.413,8.239,10.544,9.101,6.257,12.342,10.09,7.499,8.036,14.201,10.916,0.704,6.401,9.647,6.905,9.759,12.315,12.236,6.359,-0.453,7.849,8.562,4.953,7.02,11.043,8.919,5.747,5.211,2.943,3.818,0.646,5.147,-3.669,0.385,-1.407,13.208,4.278,14.182,6.094,2.807,1.931,-0.058,1.997,2.299,6.889,2.293,5.988,-0.13,6.604,2.919,1.614,-2.888,-0.965,1.555,2.801,-5.107,-0.736],[17.729,20.617,22.006,24.689,22.696,17.733,24.959,24.956,25.9,20.386,19.877,19.288,19.634,20.085,21.606,17.663,14.741,15.654,14.585,15.842,15.081,15.657,13.742,6.958,17.066,19.909,14.282,10.316,17.004,13.699,10.483,4.731,9.79,14.548,10.232,11.577,6.859,13.46,6.056,11.469,7.322,12.161,5.662,8.786,8.37,8.443,4.382,11.821,0.055,3.86,5.316,3.9,0.993,6.552,0.337,3.101,-3.553,-2.546,-0.124,2.737,0.502,12.998,7.467,1.97,21.64,20.946,27.421,24.786,25.965,20.079,20.016,25.663,18.233,25.932,25.078,19.203,20.93,23.012,18.64,19.358,19.411,20.889,21.948,22.263,20.335,21.737,16.912,17.82,25.742,21.772,17.78,19.405,18.913,23.345,15.494,8.441,18.315,13.231,14.127,17.419,13.655,15.294,15.832,14.543,17.303,15.013,15.505,16.248,21.881,5.687,14.433,17.124,14.329,17.479,12.166,14.521,11.925,9.071,9.867,15.04,14.321,18.038,19.677,15.855,13.14,11.9,10.876,6.307,10.588,12.039,10.266,14.221,4.717,15.195,14.522,5.264,8.273,10.16,9.202,5.953,12.737,10.068,6.993,7.964,14.253,11.507,0.831,5.961,9.74,7.491,9.667,12.256,11.741,6.38,-0.041,8.036,8.49,4.978,7.188,11.398,8.654,5.725,5.03,3.471,3.784,0.412,5.097,-3.776,0.615,-1.346,13.613,4.294,14.038,6.358,3.421,1.985,-0.275,1.715,2.387,6.919,2.268,6.006,-0.15,6.337,2.986,1.292,-2.887,-1.16,1.493,2.699,-5.432,-1.0],[17.644,20.433,21.744,24.71,22.772,17.935,25.081,25.007,26.065,20.084,19.865,19.266,19.658,19.988,21.67,17.723,14.669,15.561,14.885,15.767,15.05,15.67,13.683,7.143,17.126,20.149,14.159,10.404,16.985,13.867,10.53,4.88,9.631,14.404,10.079,11.224,6.685,13.633,6.029,11.35,7.394,12.227,5.777,8.568,8.371,8.798,4.264,11.86,-0.028,3.972,5.324,3.935,1.089,6.595,0.503,3.326,-3.625,-2.848,-0.496,2.655,0.521,13.07,7.604,2.175,21.405,20.274,27.711,24.25,25.531,19.697,20.297,26.242,17.908,25.755,24.999,19.243,21.287,23.253,18.896,19.296,19.346,21.479,22.065,22.526,19.967,21.505,16.719,17.704,25.469,21.567,17.811,19.156,18.634,23.171,16.046,8.732,18.239,13.827,14.318,17.324,13.454,15.313,15.875,14.614,17.439,15.09,15.786,16.114,21.81,5.9,14.201,17.185,14.657,17.478,12.094,14.221,11.793,9.14,10.072,14.684,14.866,17.647,19.919,15.758,13.155,11.72,10.486,6.733,9.979,11.712,10.459,14.504,4.599,14.847,14.931,5.024,7.803,10.812,9.332,5.549,12.787,10.269,7.023,7.665,14.402,11.326,0.625,5.935,10.088,7.71,9.564,12.344,11.48,6.85,0.909,8.133,8.333,4.976,7.405,11.924,8.508,5.449,4.819,3.651,3.599,0.328,4.878,-3.953,0.623,-1.157,13.444,4.275,14.507,5.998,3.535,1.618,-0.828,1.342,2.731,7.394,2.519,6.255,0.052,5.842,3.028,1.521,-3.666,-1.343,1.743,2.406,-5.375,-1.341],[17.724,20.377,21.502,24.706,22.878,18.021,25.205,25.046,26.04,19.885,19.863,19.153,19.839,19.851,21.854,17.761,14.833,15.474,15.044,15.765,14.795,15.583,13.665,7.183,17.237,20.205,14.168,10.397,16.974,13.872,10.528,4.839,9.511,14.483,9.942,11.079,6.571,13.721,5.945,11.205,7.385,12.29,5.79,8.454,8.454,9.237,4.181,11.964,-0.052,4.053,5.255,3.9,1.193,6.574,0.625,3.574,-3.838,-3.082,-0.844,2.626,0.455,13.173,7.878,2.23,21.044,20.146,27.647,24.258,25.963,19.615,20.2,26.508,17.617,25.802,25.286,19.707,21.442,23.511,19.035,19.626,19.454,21.414,22.372,22.565,19.783,21.576,16.695,18.294,25.548,21.03,18.165,19.443,18.085,23.543,16.441,8.967,18.16,13.892,14.409,17.108,13.705,15.66,15.658,14.334,17.453,14.994,16.335,16.207,21.996,6.036,14.236,17.172,14.837,17.15,12.112,14.094,11.842,9.145,10.596,14.358,14.635,17.366,19.894,15.799,12.919,11.786,10.766,6.542,9.521,11.553,10.152,13.742,4.221,14.765,14.596,4.879,7.93,9.965,9.286,5.937,12.353,10.249,7.282,7.658,14.856,11.346,0.29,5.919,10.765,7.624,9.559,12.21,12.062,6.924,0.986,8.313,7.681,4.887,7.751,11.911,8.515,5.445,5.335,3.43,3.735,0.733,5.049,-4.064,0.548,-1.03,12.641,4.23,14.535,6.215,3.487,1.168,-1.316,1.005,2.615,7.533,2.653,6.643,-0.272,5.683,2.827,1.543,-3.834,-1.21,2.032,2.457,-5.004,-1.627],[17.977,20.32,21.336,24.712,23.003,17.988,25.229,25.249,25.991,19.811,19.985,19.15,20.033,19.604,22.159,17.775,15.014,15.42,15.069,15.699,14.615,15.411,13.668,7.139,17.317,20.15,14.215,10.495,16.948,13.809,10.378,4.654,9.46,14.473,9.959,11.08,6.542,13.872,5.824,11.138,7.287,12.296,5.892,8.565,8.531,9.61,4.097,12.101,-0.103,4.118,5.246,3.963,1.289,6.625,0.682,3.625,-3.962,-3.284,-1.216,2.636,0.389,13.117,8.067,2.154,21.219,20.557,27.492,24.916,25.939,19.998,19.909,26.29,17.377,25.746,25.282,19.285,20.996,23.405,18.741,19.807,19.609,21.51,22.02,22.546,19.607,22.026,16.828,18.499,25.553,21.091,18.32,19.624,17.759,23.701,16.574,8.637,18.152,13.749,14.22,16.613,13.374,15.431,15.536,14.464,17.231,15.049,16.559,16.059,22.021,6.493,14.222,17.652,14.706,17.325,11.823,13.971,11.824,9.097,11.207,14.205,14.094,17.928,19.86,16.018,12.526,11.723,10.511,6.32,10.031,11.495,9.625,13.316,3.823,15.016,13.55,5.051,7.78,10.246,8.624,6.228,13.115,10.406,7.212,7.601,14.882,11.784,0.876,5.618,11.024,7.235,9.606,11.953,12.052,6.866,0.116,8.515,7.62,4.596,8.421,11.737,8.826,5.427,5.661,3.365,4.054,0.75,4.995,-4.19,0.15,-0.896,12.574,4.331,14.732,6.797,3.287,2.091,-1.68,0.578,2.722,7.794,2.691,6.232,-0.189,5.315,2.752,1.839,-3.725,-1.351,1.987,2.659,-5.607,-1.5],[18.325,20.211,21.166,24.833,23.109,17.9,25.113,25.387,26.112,19.824,20.06,19.294,20.104,19.346,22.253,17.647,15.017,15.533,14.966,15.465,14.524,15.294,13.674,7.081,17.32,20.055,14.258,10.639,16.997,13.657,10.164,4.327,9.514,14.286,9.974,11.213,6.424,13.88,5.675,11.063,7.149,12.427,6.124,8.662,8.642,9.909,3.959,12.107,-0.219,4.191,5.245,4.175,1.372,6.743,0.667,3.566,-3.931,-3.211,-1.52,2.78,0.307,13.139,8.224,2.312,21.439,20.172,27.6,24.711,25.842,19.546,19.945,26.183,17.298,25.782,25.386,18.981,20.731,23.54,19.073,20.139,19.467,21.58,21.48,22.843,19.467,22.411,16.832,18.16,25.368,20.882,18.67,19.143,18.004,23.896,16.376,8.888,18.255,14.042,14.042,16.428,12.928,15.101,15.765,14.851,17.295,14.71,16.015,15.92,21.783,6.328,14.362,17.779,14.496,17.432,12.075,14.021,11.813,8.86,11.097,14.63,14.099,18.624,19.869,16.101,12.315,11.696,10.296,6.212,10.334,11.234,9.426,14.047,3.84,14.836,13.548,5.006,7.605,10.872,8.887,6.615,12.925,10.008,6.972,7.381,14.516,11.609,1.044,5.646,11.309,6.988,9.476,12.184,11.899,6.605,-0.556,8.949,8.728,4.529,8.728,11.729,8.767,5.178,5.37,3.617,4.632,0.625,5.011,-4.229,-0.063,-0.982,13.056,4.487,14.723,7.082,2.694,1.766,-2.048,0.204,2.706,8.306,2.725,6.253,0.337,5.624,3.483,1.879,-3.97,-1.296,1.858,1.931,-5.717,-1.561],[18.62,20.284,21.001,24.915,23.244,17.768,25.042,25.366,26.268,19.71,20.075,19.352,20.196,19.057,22.144,17.425,14.982,15.528,14.854,15.152,14.51,15.338,13.772,7.058,17.268,19.907,14.306,10.561,17.021,13.419,10.091,3.982,9.6,14.24,10.03,11.285,6.343,13.875,5.653,11.093,7.037,12.42,6.377,8.632,8.654,10.099,3.802,12.043,-0.437,4.222,5.469,4.486,1.531,6.83,0.452,3.484,-3.668,-2.952,-1.663,2.849,0.203,13.134,8.492,2.363,21.196,20.158,27.869,24.513,26.359,18.92,20.011,26.762,17.676,25.915,25.007,19.167,20.604,23.697,19.681,20.337,19.323,21.467,21.262,22.883,19.638,22.309,16.496,17.875,25.687,20.928,18.586,18.891,19.043,23.759,15.872,8.647,18.227,13.482,14.197,17.225,12.785,15.489,15.986,14.892,16.879,14.277,15.929,15.874,21.738,5.689,14.467,17.431,14.581,17.344,11.961,14.086,11.972,8.731,10.753,15.017,14.59,18.454,20.066,15.902,12.941,12.447,10.611,5.725,10.373,11.356,9.258,14.311,3.819,15.29,14.004,4.748,7.552,10.526,8.951,6.604,12.61,10.092,6.769,7.355,14.208,11.32,0.584,5.851,11.393,7.274,9.365,12.004,11.804,6.9,-0.431,9.657,8.91,4.691,8.607,11.373,8.484,4.84,5.227,3.733,4.119,0.775,5.012,-4.307,0.073,-1.088,13.423,4.693,14.735,6.957,2.885,1.65,-2.467,0.137,2.687,8.951,2.853,6.314,0.49,5.975,3.335,2.291,-4.171,-1.317,2.012,1.828,-5.332,-1.287],[18.809,20.486,20.946,24.957,23.3,17.597,24.967,25.457,26.242,19.482,20.054,19.199,20.215,18.771,21.972,17.202,15.0,15.489,14.742,14.966,14.583,15.412,13.906,6.81,17.309,19.8,14.449,10.272,17.007,13.302,10.118,3.647,9.634,14.254,10.098,11.334,6.53,13.897,5.717,11.276,7.073,12.306,6.576,8.447,8.785,10.06,3.624,11.905,-0.573,4.242,5.774,4.651,1.703,6.747,0.213,3.451,-3.4,-2.65,-1.713,2.981,0.195,13.008,8.828,2.229,21.003,20.724,27.653,24.236,26.084,19.404,20.076,26.774,18.07,25.701,25.09,19.601,20.779,23.83,19.878,20.209,19.153,21.601,21.357,23.009,19.708,22.149,16.286,18.075,25.324,20.545,18.57,19.356,19.577,23.509,15.57,8.438,18.048,13.793,14.006,18.027,13.07,15.705,16.012,14.337,16.568,14.605,15.509,15.973,21.578,6.036,14.293,17.511,13.89,17.278,11.661,13.991,12.099,9.172,10.379,14.691,15.033,18.575,19.808,15.875,12.968,12.146,10.73,5.492,10.016,11.815,9.391,14.162,3.418,15.169,14.478,4.723,7.675,10.599,8.856,6.38,13.006,10.409,6.863,7.439,14.897,11.298,0.34,6.081,11.295,7.775,9.702,11.599,11.774,7.23,0.016,9.446,8.255,4.645,8.519,10.896,8.375,4.816,5.373,3.577,4.339,0.858,5.324,-3.979,-0.214,-1.056,13.308,4.674,14.602,7.01,3.435,1.782,-2.156,0.139,2.523,9.63,2.809,6.519,0.307,6.253,3.53,2.221,-3.742,-1.527,1.801,2.38,-4.99,-1.206],[18.835,20.703,21.05,24.873,23.249,17.469,24.908,25.557,25.911,19.387,20.141,19.071,20.089,18.741,21.837,17.152,15.15,15.541,14.606,14.772,14.633,15.522,13.726,6.594,17.521,19.725,14.65,9.988,16.964,13.315,10.246,3.399,9.528,14.204,10.193,11.306,6.818,14.019,5.681,11.525,7.276,12.182,6.596,8.371,9.013,9.957,3.499,11.621,-0.448,4.245,6.094,4.705,1.786,6.748,0.058,3.458,-3.271,-2.373,-1.687,3.055,0.207,12.929,9.022,2.07,21.346,20.347,27.635,24.511,25.735,19.597,20.275,26.785,18.333,25.431,25.148,19.17,21.02,23.935,19.477,20.416,18.932,21.505,21.761,23.073,19.436,22.138,16.636,18.244,25.399,20.158,18.598,19.232,18.945,23.351,15.9,8.284,17.921,14.133,14.198,17.845,13.506,15.121,15.569,14.648,16.522,15.39,15.695,16.016,21.519,6.139,14.004,17.343,13.683,17.342,11.509,14.068,11.925,9.163,10.272,14.109,14.979,18.18,19.503,16.337,12.281,12.059,10.58,5.031,9.522,11.641,9.908,13.284,3.429,14.146,14.989,4.915,8.329,10.863,9.361,6.607,13.155,10.778,6.641,7.517,15.315,10.831,0.402,6.039,11.288,7.463,9.753,11.976,12.026,7.636,0.361,8.59,8.278,4.483,8.59,11.227,8.665,4.736,5.344,3.388,5.084,1.212,5.455,-3.692,-0.325,-1.575,13.192,4.667,13.935,7.361,3.148,1.5,-1.687,0.07,2.784,9.714,2.922,6.447,0.361,6.275,4.123,2.113,-3.45,-1.259,1.342,2.166,-4.804,-1.145],[18.874,20.828,21.231,24.768,23.19,17.503,24.917,25.606,25.638,19.355,20.132,19.039,19.898,18.932,21.734,17.227,15.411,15.542,14.529,14.627,14.657,15.847,13.355,6.48,17.552,19.679,14.789,9.947,16.957,13.248,10.406,3.154,9.422,13.946,10.323,11.31,7.075,14.17,5.54,11.637,7.369,11.996,6.558,8.468,9.144,10.075,3.483,11.409,-0.127,4.233,6.33,4.68,1.888,6.85,-0.075,3.403,-3.2,-2.202,-1.602,3.178,0.274,12.865,9.111,1.857,21.765,20.179,27.362,24.568,25.585,19.337,20.276,26.915,18.539,25.489,24.804,18.984,21.489,23.787,19.324,20.302,19.218,21.3,21.768,22.672,19.819,22.167,16.41,18.022,25.581,20.385,18.829,18.621,17.609,23.178,15.843,8.347,17.968,14.154,14.012,17.321,13.44,15.241,15.313,15.167,16.451,15.223,16.041,15.835,21.448,5.572,14.115,17.787,13.769,17.331,11.539,14.203,11.474,9.072,10.106,13.968,14.702,17.422,19.609,16.632,11.922,12.577,10.323,4.856,9.073,12.004,9.711,12.792,3.417,14.107,15.476,4.609,8.251,10.615,9.469,6.82,12.472,10.989,6.772,7.137,15.116,11.082,0.812,5.96,11.255,7.422,9.816,12.767,12.155,7.894,0.352,8.182,8.357,4.029,8.399,10.998,9.15,4.655,5.144,3.572,5.45,1.531,5.371,-3.799,0.133,-1.787,13.228,4.681,13.695,7.435,3.022,1.416,-1.625,0.057,2.577,9.189,2.755,6.216,0.429,6.609,4.336,1.916,-3.481,-1.106,1.054,1.656,-5.041,-0.856],[19.076,20.839,21.379,24.687,23.1,17.566,24.926,25.553,25.528,19.436,20.145,19.01,19.816,19.097,21.589,17.339,15.677,15.601,14.523,14.587,14.741,16.006,13.062,6.372,17.451,19.641,14.772,9.953,16.836,13.086,10.458,3.055,9.267,13.673,10.41,11.537,7.178,14.414,5.371,11.738,7.379,11.702,6.511,8.456,9.259,10.191,3.421,11.264,0.233,4.151,6.603,4.623,2.011,6.824,-0.136,3.311,-3.198,-2.149,-1.531,3.344,0.422,12.795,9.067,1.643,21.604,20.632,26.977,24.184,25.535,19.509,19.385,26.852,18.523,25.632,25.079,19.096,21.834,24.05,19.333,20.445,19.108,21.42,21.666,22.25,20.549,21.957,16.152,17.894,25.76,20.301,18.357,18.86,17.314,23.166,15.76,7.915,17.848,14.195,13.244,17.159,13.362,15.446,15.318,15.194,16.35,15.045,16.82,15.515,21.405,5.461,14.364,17.78,13.827,17.466,11.315,14.888,11.246,9.225,10.162,14.423,14.709,17.141,19.536,16.453,12.433,12.294,9.948,4.356,9.267,11.947,9.661,12.73,3.105,14.292,15.664,4.227,8.476,10.382,9.233,6.4,12.005,10.659,6.962,6.832,14.034,11.481,0.884,6.472,11.327,7.964,10.156,12.959,11.814,7.321,0.358,8.158,8.576,4.201,8.656,10.462,8.86,4.616,5.298,3.904,5.427,1.225,5.116,-3.524,0.194,-1.506,13.506,4.619,13.994,7.469,2.881,1.113,-1.932,0.33,2.418,9.046,2.471,6.72,0.996,6.972,3.981,1.766,-2.953,-1.157,1.223,1.758,-5.084,-0.497],[19.32,20.774,21.53,24.637,22.872,17.488,25.074,25.492,25.516,19.57,20.244,19.109,19.618,19.292,21.469,17.397,15.744,15.832,14.548,14.509,14.915,16.031,13.081,6.159,17.335,19.539,14.694,9.88,16.831,13.032,10.493,3.009,9.065,13.381,10.443,11.64,7.231,14.503,5.315,11.98,7.378,11.452,6.365,8.263,9.21,10.239,3.301,11.097,0.455,4.112,6.875,4.475,2.119,6.961,-0.038,3.264,-3.05,-2.049,-1.563,3.45,0.445,12.864,9.02,1.536,21.305,20.936,27.187,24.175,25.451,19.567,19.149,26.772,18.762,25.1,24.911,19.637,21.678,23.753,19.281,20.529,19.017,21.36,22.069,22.435,20.414,21.901,16.752,17.918,25.901,20.428,18.047,19.222,17.456,22.706,15.486,7.831,17.828,14.3,13.22,17.281,13.239,15.229,15.069,15.131,16.257,14.777,16.552,15.627,21.446,5.163,14.382,17.816,13.902,17.587,11.143,14.976,11.336,9.19,9.926,14.599,14.643,17.228,19.539,16.409,12.738,12.391,9.916,4.158,9.824,11.566,9.976,13.528,3.118,14.196,15.801,4.176,8.697,11.32,9.133,6.342,11.801,10.991,6.44,6.89,14.018,10.791,0.919,6.973,11.344,8.262,10.052,12.502,11.137,6.961,0.643,8.039,8.265,4.427,8.751,10.951,8.419,4.473,5.452,3.655,5.232,1.213,5.042,-3.136,-0.171,-1.522,13.54,4.6,14.246,7.172,2.503,1.296,-2.049,0.242,2.63,9.178,2.434,6.518,1.774,6.484,3.483,1.771,-2.943,-0.94,1.499,1.618,-4.824,-0.537],[19.532,20.656,21.697,24.646,22.751,17.458,25.23,25.378,25.565,19.691,20.446,19.243,19.426,19.429,21.417,17.498,15.665,15.975,14.387,14.429,15.015,15.904,13.323,5.812,17.315,19.511,14.672,9.702,16.889,13.045,10.481,2.944,9.079,13.348,10.499,11.748,7.297,14.559,5.439,12.117,7.479,11.188,6.224,7.933,9.137,10.241,3.236,11.005,0.585,4.058,6.932,4.206,2.248,7.103,0.125,3.165,-2.794,-1.97,-1.693,3.408,0.424,12.957,8.85,1.478,21.006,20.931,27.369,24.394,25.4,19.789,19.67,26.178,19.163,24.565,25.046,20.155,21.263,23.529,18.99,20.734,19.012,20.957,22.142,22.551,20.273,21.854,16.674,18.181,25.954,20.654,17.648,19.465,17.76,22.799,15.042,7.685,17.975,14.122,13.533,16.889,13.539,15.593,15.268,15.208,16.327,15.158,16.355,15.778,21.011,4.877,14.374,18.353,13.626,17.807,10.837,14.646,11.491,9.422,9.428,14.375,14.344,17.28,19.524,16.585,12.794,12.611,9.273,4.439,9.938,11.839,9.83,13.219,2.741,13.897,15.593,4.408,8.367,11.457,9.604,5.958,12.042,10.684,6.106,7.311,15.123,10.14,0.973,6.942,11.242,7.645,10.16,12.342,11.151,7.489,1.548,7.864,8.058,3.744,8.562,10.504,8.615,4.471,5.569,3.272,5.26,1.492,4.967,-3.196,-0.184,-1.417,13.9,4.712,14.212,7.125,2.823,1.378,-1.955,0.116,2.391,9.706,2.655,6.286,1.795,6.995,3.493,1.996,-3.15,-1.045,1.597,1.576,-4.51,-0.523],[19.792,20.416,21.824,24.695,22.835,17.464,25.343,25.252,25.685,19.685,20.508,19.299,19.292,19.612,21.409,17.661,15.589,15.989,14.082,14.423,14.953,15.847,13.515,5.427,17.363,19.388,14.687,9.503,17.033,13.153,10.427,2.802,9.137,13.418,10.614,11.998,7.204,14.685,5.43,12.097,7.665,10.952,6.118,7.834,8.938,10.17,3.165,10.854,0.719,4.003,7.026,3.966,2.398,7.103,0.317,3.033,-2.72,-1.961,-1.667,3.251,0.397,13.163,8.661,1.4,21.066,21.068,27.38,24.488,25.574,19.928,20.118,26.405,18.817,24.867,25.639,20.03,20.884,23.551,19.259,21.197,18.872,21.402,22.004,21.939,20.602,22.167,16.308,18.558,25.565,20.525,17.826,19.612,17.842,22.958,15.179,7.113,17.761,14.08,13.966,17.192,13.774,16.323,15.072,15.395,16.117,15.363,15.711,16.327,21.077,4.778,14.045,18.374,13.364,17.439,11.069,14.327,11.615,9.239,9.151,14.491,14.488,17.394,19.754,16.455,13.096,12.333,9.272,4.596,9.721,11.99,9.47,12.798,2.917,14.327,15.431,5.07,8.606,10.341,9.736,5.779,11.79,10.567,6.165,7.181,15.546,10.647,0.946,6.579,11.188,7.544,10.35,12.99,11.277,7.767,2.13,7.904,7.873,3.844,8.389,10.307,9.158,4.461,5.609,3.384,5.599,1.574,4.69,-3.675,-0.054,-1.169,13.595,4.842,13.992,6.923,3.072,1.043,-2.051,0.182,1.854,9.877,2.468,6.783,1.368,7.241,3.736,2.11,-2.619,-1.152,1.423,1.586,-4.463,-0.843],[19.977,20.151,21.849,24.686,22.96,17.46,25.419,25.416,25.829,19.646,20.401,19.33,19.345,19.749,21.398,17.724,15.537,15.905,13.883,14.471,14.868,15.937,13.707,5.104,17.496,19.349,14.744,9.447,17.025,13.345,10.32,2.827,9.147,13.537,10.685,11.956,7.047,14.683,5.376,12.175,7.922,10.849,5.982,7.968,8.758,9.95,3.139,10.567,0.844,3.915,7.075,3.898,2.489,7.105,0.465,2.939,-2.714,-1.966,-1.537,3.04,0.352,13.254,8.472,1.22,20.901,20.712,27.598,24.695,25.368,20.149,19.849,26.426,19.145,25.639,25.503,19.691,20.428,23.81,19.39,21.749,18.948,21.678,22.462,22.116,20.849,22.034,16.241,18.488,25.501,20.306,17.96,19.606,18.076,22.896,15.341,7.015,18.107,14.408,13.826,17.803,13.366,16.35,14.542,15.361,16.11,15.205,15.395,16.197,21.033,4.368,13.717,18.081,13.201,17.443,11.089,14.53,12.051,9.159,9.407,14.523,14.942,17.91,19.167,16.318,13.183,12.886,9.939,4.47,9.597,11.815,9.6,13.341,3.031,14.288,15.862,5.011,8.426,10.956,9.598,5.995,11.238,10.475,6.144,7.016,15.348,10.607,1.274,6.663,11.16,7.834,10.497,13.574,11.295,7.155,2.21,7.508,7.933,4.22,8.367,10.547,9.623,3.972,5.384,3.643,6.325,1.786,3.771,-3.492,0.095,-1.216,13.66,4.739,14.203,6.706,2.17,1.111,-1.924,0.286,2.021,9.295,2.217,6.787,1.464,7.133,3.349,2.485,-2.437,-1.16,1.681,1.724,-4.479,-0.902],[20.042,20.015,21.926,24.775,22.978,17.44,25.309,25.657,25.75,19.513,20.266,19.296,19.418,19.826,21.455,17.596,15.509,15.682,13.917,14.439,14.738,16.083,13.916,5.04,17.768,19.291,14.813,9.454,16.938,13.452,10.265,3.054,9.283,13.798,10.61,12.017,6.978,14.688,5.498,12.453,8.254,10.789,5.874,8.124,8.538,9.715,3.105,10.259,0.997,3.839,7.2,3.868,2.428,7.036,0.583,2.886,-2.893,-1.828,-1.534,2.905,0.444,13.209,8.252,1.164,20.725,20.865,27.666,24.473,25.547,20.297,19.63,26.868,20.082,26.014,25.037,19.978,20.91,23.881,18.806,21.803,19.009,21.189,22.497,22.397,20.534,22.076,16.371,18.37,25.727,20.401,17.727,19.772,17.987,23.063,15.155,6.806,18.317,14.56,13.274,17.703,13.02,15.691,14.264,15.949,16.324,15.487,15.49,16.093,21.055,4.315,14.22,17.967,13.624,17.304,11.095,14.799,12.301,9.348,9.459,14.603,14.517,17.762,18.975,16.756,13.015,12.732,9.92,4.702,9.175,11.489,9.526,13.156,3.068,14.417,15.795,4.056,8.297,11.62,9.477,5.636,11.522,10.329,6.313,6.804,14.797,10.14,1.356,6.935,11.147,7.99,10.65,13.276,11.132,6.896,1.878,7.698,8.08,3.954,8.277,9.924,9.337,4.169,5.452,3.442,6.139,2.289,2.971,-3.227,0.254,-1.088,13.736,4.753,14.688,6.519,1.925,0.977,-1.626,0.205,2.255,8.718,2.26,6.395,1.699,7.138,2.873,2.836,-2.825,-1.13,1.943,2.009,-4.543,-0.505],[20.087,20.011,22.069,24.912,22.853,17.394,24.949,25.828,25.603,19.485,20.263,19.302,19.377,19.894,21.441,17.507,15.603,15.34,13.958,14.455,14.668,16.308,14.007,5.062,18.075,19.28,14.804,9.434,16.616,13.534,10.274,3.342,9.34,13.961,10.462,12.246,7.094,14.606,5.567,12.662,8.421,10.797,5.722,8.221,8.351,9.554,3.048,9.864,1.192,3.941,7.328,3.673,2.376,6.961,0.66,2.926,-3.184,-1.719,-1.565,2.937,0.608,13.195,7.99,1.269,20.581,20.652,27.255,24.585,26.085,20.267,19.323,26.655,20.437,26.284,25.193,19.887,21.011,24.215,18.718,21.147,19.027,21.684,22.221,22.158,20.45,22.234,16.37,18.421,25.653,20.522,17.755,19.609,18.094,22.847,15.262,6.903,17.876,14.472,13.61,17.263,12.957,15.273,14.502,16.251,16.219,15.392,15.883,16.172,20.859,4.493,14.556,18.199,13.761,17.12,11.055,15.053,12.438,9.65,9.141,15.008,14.471,18.029,19.895,16.614,12.996,12.859,9.863,5.193,9.116,10.995,9.082,13.787,3.325,14.524,15.297,4.059,8.16,11.154,9.788,5.318,11.781,10.226,6.546,6.839,15.018,10.341,1.172,6.458,10.637,8.141,10.86,12.99,10.891,7.201,1.33,7.935,8.234,4.233,8.069,9.909,9.473,4.08,5.585,3.037,5.924,1.98,3.22,-3.469,0.206,-0.98,13.734,4.72,14.724,6.334,2.559,1.415,-1.696,0.274,2.029,8.408,2.645,6.182,1.223,7.416,3.079,2.618,-3.628,-1.143,1.931,1.764,-4.739,-0.392],[20.022,19.893,22.134,25.07,22.683,17.204,24.611,25.931,25.596,19.454,20.354,19.341,19.295,19.927,21.42,17.507,15.693,15.11,13.997,14.509,14.727,16.442,14.087,5.119,18.252,19.443,14.733,9.344,16.272,13.596,10.351,3.696,9.263,14.085,10.447,12.394,7.04,14.396,5.47,12.73,8.451,10.967,5.577,8.242,8.324,9.307,2.986,9.593,1.313,4.154,7.448,3.462,2.279,7.013,0.636,3.048,-3.401,-1.775,-1.445,3.001,0.702,13.266,7.779,1.516,20.896,20.64,27.12,24.974,26.172,20.7,18.906,27.135,20.707,26.248,25.013,19.707,20.718,24.145,19.404,20.526,18.831,21.649,22.586,22.197,20.934,21.559,15.972,18.435,25.042,20.51,17.838,19.276,18.099,22.902,15.223,7.037,17.824,14.671,14.158,17.621,12.999,14.942,15.047,15.785,16.416,15.319,15.887,15.93,21.042,4.453,14.202,18.143,13.52,16.916,10.766,15.108,12.402,9.288,9.121,15.141,14.872,17.815,19.917,16.225,13.016,13.294,10.012,5.371,9.43,11.531,9.596,14.369,3.187,14.132,14.72,4.842,8.314,11.224,9.338,5.24,11.546,10.116,6.516,7.29,15.772,10.202,1.305,6.543,10.54,8.316,10.89,13.526,10.789,6.498,1.083,7.573,7.91,4.16,7.78,9.782,10.191,3.692,5.859,3.382,5.685,1.751,3.817,-3.21,0.484,-1.119,13.617,4.775,14.763,6.035,2.999,1.544,-1.498,0.374,2.4,8.314,2.805,6.129,0.997,7.105,3.267,2.233,-3.598,-0.687,1.699,1.581,-5.274,-0.698],[19.912,19.776,22.181,25.126,22.49,16.873,24.384,26.024,25.679,19.453,20.442,19.339,19.14,19.893,21.468,17.622,15.555,14.931,14.169,14.626,14.751,16.495,14.101,5.098,18.308,19.585,14.757,9.309,15.882,13.488,10.454,3.891,9.252,14.233,10.543,12.48,6.911,14.242,5.462,12.764,8.577,11.045,5.411,8.276,8.259,9.041,2.831,9.576,1.341,4.331,7.388,3.472,2.284,7.168,0.514,3.327,-3.504,-1.957,-1.128,3.062,0.85,13.35,7.608,1.749,20.777,20.508,27.5,25.056,25.677,21.036,19.307,26.782,21.084,26.302,24.248,19.775,19.97,24.34,20.19,19.933,18.588,21.434,22.909,22.09,20.868,21.383,15.905,18.227,24.808,20.469,17.774,19.328,18.194,23.157,15.085,7.039,17.907,14.892,14.311,18.289,13.154,14.794,14.813,15.694,16.299,15.879,15.614,15.831,21.216,4.418,14.204,17.627,13.29,16.725,11.019,14.986,12.241,9.253,8.961,14.758,14.959,17.817,19.342,16.558,13.182,13.286,9.658,5.582,9.262,11.968,9.732,13.455,3.516,14.568,14.247,5.302,8.501,11.433,9.34,5.187,12.061,10.147,6.516,6.863,16.036,10.165,1.587,6.62,10.632,8.22,10.991,13.656,10.806,6.768,1.294,7.52,7.903,3.391,7.625,9.509,9.909,4.012,5.672,4.121,5.883,2.101,3.727,-3.374,0.619,-1.208,13.887,4.602,14.833,5.896,3.501,1.561,-1.402,0.573,2.587,8.38,2.62,6.625,1.278,6.902,2.762,2.202,-3.089,-0.995,1.475,1.588,-4.954,-0.666],[19.829,19.583,22.246,25.131,22.349,16.597,24.186,26.097,25.812,19.587,20.568,19.313,18.94,19.832,21.518,17.759,15.49,14.805,14.343,14.601,14.748,16.525,13.942,5.161,18.283,19.553,14.933,9.354,15.718,13.366,10.493,3.93,9.195,14.326,10.725,12.526,6.824,14.206,5.451,12.675,8.622,11.067,5.376,8.375,8.299,8.928,2.644,9.653,1.327,4.401,7.362,3.538,2.519,7.297,0.375,3.726,-3.383,-2.146,-0.854,3.178,0.815,13.536,7.471,1.918,20.834,20.403,27.506,24.583,25.817,20.984,19.743,26.577,21.336,26.08,24.998,19.843,19.666,24.361,19.889,19.378,18.349,21.399,21.951,21.72,20.865,21.969,15.771,18.311,24.94,20.931,17.5,19.637,18.29,23.014,15.376,6.986,18.181,14.595,14.402,18.147,13.564,14.764,14.34,15.327,16.385,15.879,14.423,16.007,21.01,4.309,14.086,17.66,13.528,16.572,11.073,15.028,12.157,9.869,8.741,14.142,14.388,17.246,19.368,16.756,13.178,13.438,9.985,5.791,9.02,11.778,9.655,13.526,3.808,14.416,13.479,5.322,8.365,11.16,9.776,5.294,12.019,10.025,6.805,6.649,15.972,10.613,1.612,6.065,10.34,8.432,10.838,13.412,10.942,6.651,1.92,7.604,8.206,3.143,7.384,9.882,9.474,3.714,5.871,4.109,5.769,1.943,3.592,-3.727,0.72,-1.325,13.904,4.271,15.019,5.727,4.021,1.454,-1.321,0.953,2.701,8.343,2.753,7.033,1.281,6.875,2.31,2.244,-3.714,-0.811,1.672,1.366,-5.084,-0.632],[19.823,19.355,22.157,25.111,22.282,16.495,24.232,26.077,25.932,19.876,20.62,19.443,18.77,19.771,21.429,17.834,15.455,14.678,14.315,14.625,14.752,16.523,13.647,5.315,18.255,19.446,14.933,9.37,15.563,13.321,10.486,3.891,9.162,14.342,10.977,12.446,6.763,14.084,5.401,12.451,8.608,11.271,5.44,8.612,8.415,8.875,2.487,9.81,1.341,4.291,7.393,3.549,2.704,7.424,0.32,4.089,-3.383,-2.274,-0.621,3.218,0.752,13.671,7.386,1.942,20.941,20.595,27.613,24.066,26.525,20.915,19.308,26.876,20.846,25.751,25.293,20.216,19.882,24.275,19.136,19.115,18.158,21.436,21.672,21.935,20.802,21.833,15.346,18.203,24.722,21.201,17.398,19.675,18.053,23.032,15.478,6.811,18.264,15.024,14.005,17.571,13.629,14.542,14.704,14.807,16.569,15.484,14.06,16.281,21.125,4.514,13.676,18.124,13.67,16.42,10.941,15.059,11.796,9.702,8.965,14.157,14.335,16.741,19.458,16.885,12.931,13.195,9.822,5.695,9.27,11.371,9.869,14.243,3.681,14.557,13.0,5.168,8.045,11.435,9.854,5.198,11.683,10.317,6.95,7.114,15.545,10.563,1.32,5.797,10.422,8.771,10.687,13.335,11.26,6.53,2.041,7.605,8.319,3.535,7.455,10.028,9.685,3.201,5.992,3.977,5.785,2.245,3.563,-3.629,0.437,-1.388,14.304,4.89,15.058,5.564,4.007,1.574,-0.952,1.219,3.334,8.065,2.827,6.939,1.706,7.037,2.508,2.192,-3.829,-0.828,1.539,1.113,-4.994,-0.724],[19.851,19.304,22.015,25.168,22.336,16.53,24.421,25.937,26.104,20.065,20.556,19.585,18.672,19.735,21.314,17.853,15.411,14.539,14.183,14.873,14.793,16.399,13.35,5.37,18.19,19.448,14.726,9.551,15.479,13.184,10.389,3.857,9.052,14.469,10.968,12.311,6.66,13.761,5.515,12.318,8.645,11.437,5.539,8.89,8.593,8.973,2.397,9.978,1.391,4.08,7.581,3.533,2.806,7.46,0.251,4.311,-3.457,-2.231,-0.454,3.325,0.682,13.685,7.306,1.805,20.498,21.125,27.775,24.419,26.466,20.476,18.825,27.109,19.902,24.994,24.386,20.824,19.812,24.257,18.893,19.268,18.162,21.402,22.425,22.026,20.689,21.042,15.287,18.591,24.729,21.234,17.414,19.332,17.807,22.895,15.499,7.274,18.004,15.072,13.466,16.974,13.089,14.157,14.658,14.984,16.593,15.771,14.66,16.324,20.994,5.171,13.94,18.945,13.737,16.337,10.706,14.926,11.507,9.287,8.52,14.838,15.027,16.263,19.319,16.537,12.61,13.225,9.629,5.708,9.705,12.08,9.61,13.818,3.291,14.293,12.899,5.136,7.981,11.541,9.972,5.491,12.42,10.301,7.124,6.73,15.216,10.708,1.259,6.821,10.353,8.559,10.497,13.197,11.446,6.945,1.432,8.309,8.356,3.518,7.815,10.264,9.927,3.298,6.204,3.532,5.849,2.273,3.251,-3.536,0.028,-1.37,14.354,5.013,15.011,5.616,4.024,1.864,-0.856,1.38,3.513,7.626,2.546,6.509,1.795,7.55,2.933,2.581,-3.623,-0.781,1.451,1.186,-4.864,-0.827],[19.832,19.285,21.928,25.356,22.442,16.637,24.528,25.715,26.077,20.104,20.423,19.586,18.653,19.6,21.295,17.773,15.443,14.327,14.016,15.116,14.793,16.299,13.421,5.638,18.119,19.394,14.656,9.628,15.549,13.019,10.243,3.873,8.883,14.532,10.988,12.192,6.813,13.364,5.648,12.151,8.652,11.699,5.872,8.698,8.768,9.195,2.396,10.096,1.306,3.846,7.882,3.492,2.75,7.485,0.186,4.389,-3.569,-2.112,-0.464,3.538,0.591,13.753,7.142,1.742,20.589,20.789,27.661,25.036,26.605,20.162,19.115,26.721,19.477,24.105,24.656,20.853,19.919,24.098,19.452,19.515,18.302,21.07,22.804,21.85,20.705,21.105,15.645,18.968,25.177,21.467,17.004,19.463,17.783,22.904,15.599,7.271,18.399,14.34,14.044,17.026,13.115,14.401,14.133,15.184,16.952,15.854,14.809,15.95,21.034,4.93,14.151,19.404,13.943,16.202,10.894,14.834,11.601,9.481,9.2,14.784,14.307,16.394,19.383,16.252,12.476,13.017,9.739,5.717,9.776,12.247,9.457,13.613,3.625,14.04,12.71,4.582,8.434,11.178,9.628,5.497,12.196,10.68,7.011,6.903,14.932,11.1,1.617,6.577,10.602,8.276,10.338,12.912,11.695,6.373,1.595,8.919,8.329,3.176,7.73,10.689,9.776,3.621,5.985,3.251,6.006,2.101,2.941,-3.488,-0.006,-1.223,13.735,5.082,14.968,5.323,4.066,1.397,-1.343,1.326,3.579,7.954,2.26,6.746,1.916,8.286,2.967,2.623,-3.426,-0.92,1.515,1.226,-4.983,-0.392],[19.744,19.265,22.001,25.594,22.624,16.734,24.629,25.494,25.974,19.972,20.341,19.573,18.744,19.468,21.352,17.757,15.421,14.208,13.775,15.295,14.719,16.273,13.731,5.857,18.123,19.409,14.532,9.693,15.676,12.928,10.245,3.91,8.691,14.423,11.048,12.099,7.092,13.074,5.686,11.985,8.476,11.866,5.934,8.417,8.976,9.441,2.55,10.281,1.164,3.609,8.029,3.43,2.751,7.442,0.187,4.228,-3.698,-2.045,-0.634,3.762,0.392,13.872,7.153,1.802,20.974,20.581,27.689,24.755,26.21,20.241,19.209,26.582,20.008,24.306,25.496,20.64,19.515,23.684,19.518,19.671,18.646,21.032,22.295,21.946,20.34,21.233,16.02,18.888,25.639,21.228,17.056,19.841,17.62,23.094,15.063,7.37,18.324,14.314,14.654,17.528,13.143,14.428,14.591,15.301,17.243,15.54,15.198,15.948,20.935,4.796,13.818,19.256,14.371,15.911,11.298,14.721,11.837,9.438,8.61,14.414,14.172,16.543,19.092,16.404,12.318,12.686,9.702,5.405,10.095,11.781,9.484,13.962,4.058,14.276,12.431,4.678,8.561,10.854,9.59,5.757,12.549,10.765,6.723,7.161,14.591,11.034,1.238,5.832,10.898,8.449,10.209,12.638,11.221,7.088,1.997,8.669,8.292,2.932,8.106,10.865,9.875,3.708,5.918,3.57,6.22,2.146,2.768,-3.09,0.408,-1.304,13.87,5.545,15.132,5.393,4.241,0.838,-1.006,1.176,3.303,7.939,1.881,7.052,1.99,8.236,2.38,2.777,-3.668,-0.98,1.569,0.922,-5.451,-0.343],[19.644,19.251,22.037,25.774,22.59,16.836,24.818,25.308,26.014,19.834,20.377,19.589,18.751,19.359,21.492,17.923,15.39,14.158,13.694,15.345,14.565,16.114,14.009,5.958,18.181,19.481,14.526,9.612,15.82,12.908,10.434,3.765,8.766,14.289,10.933,11.907,7.141,12.97,5.711,11.877,8.218,11.921,5.946,8.499,9.084,9.602,2.695,10.375,0.947,3.586,7.991,3.327,2.924,7.343,0.165,3.638,-3.863,-2.012,-0.66,4.094,0.236,14.078,7.287,1.726,20.515,20.615,27.834,24.644,25.498,20.478,19.487,26.52,20.674,24.79,25.243,20.745,19.331,23.674,18.743,19.714,18.516,21.38,21.824,21.829,20.695,21.794,15.894,18.608,25.861,21.013,17.721,19.679,17.574,23.306,14.732,7.612,17.917,14.654,14.476,17.779,13.035,14.033,14.633,14.981,17.056,15.642,15.61,16.092,21.192,5.186,13.508,18.635,14.162,15.616,11.195,14.836,12.21,9.336,8.831,14.52,14.037,17.483,18.867,16.413,12.342,13.332,9.516,5.637,9.82,11.968,9.521,13.588,3.66,14.118,12.422,4.937,8.562,11.1,9.958,6.037,12.871,10.606,6.747,7.295,14.56,11.227,1.06,6.298,11.226,8.51,10.038,12.498,11.331,7.413,1.641,8.058,8.166,3.592,8.387,11.258,9.592,3.91,6.005,3.835,6.223,2.244,2.621,-2.774,-0.002,-1.377,14.333,5.573,15.244,5.492,3.926,1.575,-0.819,1.011,3.419,7.979,1.782,6.606,1.469,7.704,1.977,2.805,-4.018,-1.173,1.549,1.255,-5.431,-0.199],[19.54,19.193,22.067,25.826,22.398,16.86,24.939,25.158,26.034,19.868,20.507,19.487,18.804,19.346,21.721,18.221,15.303,14.013,13.88,15.167,14.525,15.942,14.107,6.056,18.195,19.598,14.71,9.528,16.115,12.982,10.628,3.685,8.846,14.026,10.731,11.811,7.037,13.031,5.713,11.789,7.969,12.02,6.074,8.645,9.046,9.724,2.941,10.454,0.64,3.882,7.915,3.107,2.942,7.147,0.16,3.069,-3.95,-1.951,-0.741,4.316,0.098,14.314,7.507,1.662,20.599,20.452,27.68,24.747,26.14,20.203,19.1,26.255,20.995,25.798,25.256,20.192,19.428,23.525,18.825,19.68,18.5,21.798,21.912,21.756,20.892,21.446,15.494,18.715,26.188,20.993,17.478,19.727,17.678,23.403,15.082,7.633,17.847,14.855,14.359,17.897,13.048,14.558,14.378,15.142,16.846,15.507,15.445,16.692,21.392,5.465,13.696,18.093,13.836,15.161,10.84,14.414,12.226,9.741,9.127,14.35,14.258,17.812,19.284,16.404,12.34,12.736,9.769,5.286,9.635,11.348,9.568,13.074,3.12,14.405,12.388,4.728,8.692,10.935,9.521,6.052,12.385,10.454,7.018,7.113,14.59,11.625,1.3,6.5,11.252,8.681,10.044,12.812,11.542,6.973,1.319,7.496,8.184,4.072,8.323,11.668,9.109,4.285,5.99,3.542,6.243,2.513,2.774,-2.993,-0.434,-1.428,14.633,5.606,15.642,5.705,3.334,1.615,-1.107,1.137,2.848,8.408,2.166,6.436,1.743,7.561,2.011,2.838,-4.271,-1.525,1.421,2.026,-5.403,-0.163],[19.366,19.164,22.02,25.874,22.206,16.834,25.035,25.053,26.134,19.867,20.686,19.356,18.8,19.43,21.883,18.607,15.307,13.914,14.122,14.985,14.595,15.711,14.044,6.174,18.195,19.881,14.927,9.402,16.267,13.138,10.725,3.583,8.863,13.736,10.426,11.658,6.885,13.143,5.613,11.756,7.863,12.068,6.123,8.691,8.838,9.823,3.306,10.579,0.468,4.191,7.837,2.862,2.87,6.917,0.1,2.663,-4.018,-2.13,-0.983,4.306,-0.129,14.489,7.894,1.74,20.851,20.631,27.603,24.821,26.726,20.026,18.911,25.961,21.083,26.581,25.565,19.879,19.049,23.319,19.239,19.557,18.597,22.345,22.357,21.794,21.206,21.05,15.767,18.561,26.343,21.169,17.118,19.755,17.562,23.181,15.24,7.921,18.179,14.376,14.461,17.807,13.033,14.768,14.667,15.532,16.841,14.808,15.851,17.101,21.329,5.48,14.069,18.296,14.011,14.872,10.93,14.28,12.408,9.68,8.715,14.403,15.093,18.096,19.741,16.749,12.348,12.566,10.077,5.177,9.825,10.98,9.659,12.931,3.563,13.517,12.949,4.446,8.257,11.087,9.527,5.948,12.76,10.516,7.114,6.967,14.553,11.562,1.084,6.201,11.097,8.009,10.026,12.81,11.44,7.613,0.709,7.606,8.455,4.216,8.308,11.838,9.395,4.552,5.278,3.655,6.284,2.014,2.869,-2.459,0.03,-1.518,14.654,5.814,16.017,6.037,3.053,1.19,-1.34,1.001,2.36,8.475,2.683,6.704,2.201,7.622,2.31,2.783,-4.232,-1.686,1.306,2.163,-5.493,-0.245],[19.193,19.173,22.026,25.966,22.1,16.891,25.149,25.097,26.254,19.837,20.789,19.303,18.767,19.397,22.003,18.869,15.312,13.865,14.218,15.032,14.678,15.423,14.073,6.323,18.313,20.132,15.269,9.223,16.365,13.302,10.668,3.574,8.908,13.44,10.166,11.7,6.746,13.347,5.499,11.722,7.746,12.152,6.193,8.703,8.68,9.859,3.665,10.723,0.257,4.413,7.822,2.773,2.837,6.715,-0.056,2.392,-4.042,-2.337,-1.227,4.162,-0.245,14.595,8.165,1.884,20.321,20.461,27.908,25.007,26.23,19.828,18.965,25.318,20.823,26.663,25.325,20.034,19.083,23.398,19.651,19.51,18.56,21.812,22.163,21.805,20.882,21.342,16.018,17.895,26.357,21.036,17.1,19.68,17.69,23.253,15.101,8.024,18.62,15.007,14.282,17.369,13.112,13.943,15.44,15.374,16.701,14.463,16.721,17.282,21.881,5.648,14.13,18.611,14.097,14.869,10.789,14.44,12.236,9.475,9.237,14.802,14.796,18.12,19.827,17.038,12.634,13.078,9.843,5.32,9.961,11.32,9.711,12.848,3.383,13.704,12.575,4.565,7.707,11.148,9.207,6.053,13.23,10.445,6.998,6.87,14.723,11.45,1.133,6.125,11.043,7.794,9.811,12.313,11.437,7.554,0.521,7.82,8.478,4.276,8.413,11.897,9.365,4.929,5.098,3.896,6.025,1.717,3.293,-2.431,0.029,-1.694,14.393,5.818,15.956,6.463,3.222,1.147,-1.306,0.384,2.921,8.852,2.842,6.291,1.991,7.366,2.163,2.915,-4.156,-1.948,1.121,1.682,-5.727,-0.615],[19.086,19.066,21.967,26.188,22.151,17.002,25.268,25.169,26.241,19.692,20.815,19.247,18.708,19.33,21.964,18.878,15.346,13.842,14.337,15.166,14.757,15.197,14.05,6.568,18.369,20.388,15.48,9.168,16.596,13.389,10.534,3.538,8.914,13.286,9.996,12.017,6.714,13.434,5.362,11.564,7.668,12.256,6.314,8.602,8.609,9.825,3.862,10.843,0.051,4.461,7.677,2.843,2.816,6.558,-0.115,2.42,-3.926,-2.531,-1.433,3.901,-0.415,14.617,8.455,1.914,20.078,20.368,27.983,24.887,26.427,19.261,19.506,25.486,20.837,25.801,25.382,19.603,20.106,23.368,19.997,19.313,18.846,21.073,21.781,21.863,20.462,21.03,15.96,17.801,25.91,20.413,17.481,19.708,17.465,23.68,14.958,7.919,19.052,14.879,14.427,17.556,13.306,13.697,15.279,15.021,16.782,14.799,16.915,17.134,22.234,5.75,13.956,19.01,13.817,15.282,10.428,13.926,12.32,9.391,8.904,14.675,14.786,17.962,19.58,17.442,12.897,12.941,9.613,5.211,10.038,11.255,9.655,12.626,3.787,13.59,12.011,4.768,8.025,11.08,9.241,6.486,13.154,10.477,7.427,6.819,14.845,11.764,1.029,5.765,11.304,7.965,9.729,12.351,11.844,6.494,0.478,7.772,8.983,4.563,8.364,11.849,9.151,4.852,5.464,4.058,5.935,1.905,3.391,-2.763,0.271,-1.585,14.452,5.553,15.891,6.557,2.935,1.367,-1.297,0.281,2.881,9.234,2.787,5.953,1.507,7.461,1.845,2.988,-4.125,-0.969,0.883,2.283,-5.628,-0.784],[19.02,19.074,21.926,26.39,22.234,17.111,25.377,25.291,26.242,19.343,20.716,19.148,18.779,19.209,21.834,18.69,15.277,13.827,14.38,15.148,14.816,15.15,14.004,6.758,18.368,20.538,15.602,9.091,16.69,13.46,10.495,3.507,8.804,13.153,9.942,12.15,6.753,13.312,5.24,11.377,7.795,12.299,6.337,8.542,8.507,9.813,3.951,10.966,-0.048,4.381,7.558,2.935,2.588,6.479,-0.002,2.54,-3.717,-2.643,-1.621,3.465,-0.385,14.604,8.751,1.985,20.451,20.063,27.985,24.724,26.263,18.87,19.098,25.95,20.707,26.232,25.638,19.26,19.656,23.517,20.036,19.079,18.886,20.845,21.918,21.919,20.704,21.008,16.086,17.923,26.276,20.662,17.408,19.879,17.622,23.531,15.495,8.386,19.039,14.63,14.554,17.843,13.208,14.149,14.881,15.282,16.999,15.034,17.294,16.83,22.035,6.209,14.109,19.516,14.115,15.584,10.755,13.523,12.13,9.355,8.932,14.522,15.144,18.123,20.187,17.41,12.671,13.526,9.799,5.147,10.339,11.086,9.558,12.669,3.855,13.372,12.56,4.094,7.948,11.121,9.094,6.641,13.269,10.308,7.712,6.713,14.883,12.051,0.689,5.825,11.387,7.975,9.773,12.656,12.027,6.185,0.368,7.969,8.973,4.651,8.545,11.689,9.221,5.333,5.053,3.877,6.041,2.268,3.156,-3.017,-0.085,-1.45,15.299,5.338,15.739,7.068,2.739,1.357,-1.403,0.209,2.892,8.751,2.784,6.047,1.497,7.287,2.092,2.711,-4.386,-0.791,1.347,2.375,-5.124,-0.866],[18.885,19.024,22.092,26.599,22.38,17.167,25.548,25.478,26.136,19.149,20.576,19.014,18.86,19.08,21.779,18.381,15.283,13.917,14.371,14.977,14.742,15.241,13.952,6.945,18.439,20.671,15.742,8.968,16.786,13.562,10.706,3.559,8.754,13.179,9.974,12.159,6.825,13.135,5.132,11.378,8.016,12.358,6.227,8.521,8.432,9.811,4.015,11.076,-0.059,4.218,7.578,3.159,2.335,6.423,0.114,2.656,-3.579,-2.715,-1.642,3.056,-0.323,14.716,8.959,2.062,20.462,20.044,27.586,24.984,26.295,18.873,18.681,26.187,20.538,26.884,25.268,19.191,19.444,23.588,19.803,19.254,18.944,21.41,22.269,21.712,20.52,21.815,16.154,17.923,26.152,20.348,16.968,19.972,17.264,22.82,15.683,8.746,18.612,15.184,14.362,17.554,13.016,14.444,15.202,14.829,16.835,14.908,16.702,16.577,22.074,6.299,14.045,19.762,14.164,15.465,10.499,14.127,12.139,9.378,9.087,14.82,15.463,17.818,20.698,17.542,12.372,13.692,9.705,5.229,10.076,10.799,9.615,12.268,3.31,13.338,13.011,3.755,7.793,11.058,8.944,6.23,13.162,10.232,7.65,6.591,14.908,11.753,0.796,6.253,11.367,8.028,9.418,12.038,12.255,7.048,0.666,7.849,9.014,4.344,8.492,11.859,9.369,5.584,4.962,3.798,5.937,2.13,2.77,-3.303,0.22,-1.198,15.254,4.832,15.673,7.148,2.799,1.499,-1.725,0.111,3.046,8.957,2.689,5.979,0.946,6.682,2.212,2.192,-4.139,-1.653,1.533,2.259,-5.119,-0.967],[18.812,18.949,22.239,26.881,22.776,17.138,25.482,25.599,25.885,19.255,20.539,18.914,18.829,18.848,21.698,18.059,15.359,14.082,14.516,14.756,14.619,15.449,13.822,7.026,18.465,20.825,15.945,8.87,16.851,13.589,10.967,3.573,8.692,13.259,9.978,12.116,6.946,13.033,4.979,11.314,8.192,12.285,6.123,8.544,8.393,9.774,4.026,11.251,0.024,4.035,7.453,3.473,2.075,6.452,0.221,2.77,-3.546,-2.789,-1.595,2.733,-0.258,14.839,9.053,2.105,19.907,19.903,27.343,25.326,26.332,18.665,18.718,26.409,20.473,26.846,25.597,19.453,19.396,23.798,19.424,19.34,18.855,21.813,22.389,22.067,20.461,21.644,15.929,17.994,26.113,19.911,17.327,19.382,17.237,23.233,15.104,8.572,18.188,14.752,14.248,18.045,12.89,14.321,15.282,14.883,16.371,14.661,15.736,16.239,22.42,6.144,14.098,19.882,13.599,15.482,10.183,14.301,11.933,9.835,9.103,15.014,15.517,17.653,20.764,17.791,12.691,13.143,9.504,5.318,9.886,10.799,10.105,12.819,3.686,13.319,12.304,4.361,7.964,11.061,9.501,6.241,12.96,10.108,7.125,6.433,14.672,11.536,0.901,5.956,11.333,8.312,9.386,11.698,12.55,7.218,0.885,7.388,8.548,4.223,8.318,12.299,9.456,5.269,5.026,3.451,5.889,1.549,2.47,-3.374,-0.288,-1.186,14.986,4.366,16.012,7.251,2.975,1.192,-1.644,0.241,2.994,9.762,2.459,5.783,0.851,7.041,2.468,1.584,-3.497,-1.86,1.662,2.51,-5.369,-0.928],[18.859,18.876,22.244,27.156,23.149,16.981,25.336,25.597,25.725,19.347,20.656,18.898,18.795,18.662,21.74,17.778,15.337,14.16,14.527,14.618,14.791,15.598,13.611,6.921,18.505,20.952,16.097,8.842,16.886,13.546,11.04,3.544,8.569,13.318,10.094,11.972,6.93,12.841,4.975,11.227,8.413,11.909,6.046,8.462,8.334,9.858,3.958,11.517,0.065,3.896,7.359,3.78,1.831,6.578,0.293,2.8,-3.52,-2.775,-1.586,2.489,-0.425,14.868,9.043,2.172,20.124,20.03,27.492,26.003,25.854,18.565,19.115,26.949,20.316,26.68,25.013,20.19,19.082,23.988,19.138,19.224,18.751,21.302,22.547,22.768,20.79,21.646,15.974,17.892,26.325,20.265,17.56,19.039,16.808,23.421,15.395,8.61,17.817,14.577,14.125,18.271,13.36,14.355,15.498,15.322,16.335,14.827,15.643,16.034,22.431,6.206,14.342,19.939,13.349,15.87,10.368,14.307,11.808,9.956,8.744,14.679,15.621,17.247,20.802,17.938,12.693,12.928,9.673,5.302,9.837,11.318,10.117,13.091,4.012,13.958,11.839,3.982,8.103,11.026,9.059,6.212,13.079,9.947,6.778,6.363,14.507,11.405,0.767,6.011,11.064,8.522,9.461,12.182,12.419,7.027,0.895,7.06,8.694,4.434,8.242,12.525,9.243,5.201,5.263,3.439,5.675,1.079,3.157,-3.458,-0.131,-1.547,15.516,4.208,16.204,7.286,2.88,1.433,-1.15,0.052,3.192,9.926,2.252,5.949,1.262,7.423,2.721,1.183,-3.617,-1.221,1.509,2.131,-5.26,-1.043],[18.908,18.793,22.355,27.382,23.15,16.889,25.158,25.703,25.811,19.46,20.881,18.911,18.954,18.425,21.703,17.593,15.351,14.299,14.482,14.584,15.01,15.602,13.452,6.735,18.732,21.028,16.317,8.896,16.918,13.553,11.075,3.531,8.483,13.442,10.184,11.8,6.778,12.622,5.044,11.326,8.518,11.466,6.012,8.417,8.256,9.971,3.89,11.731,-0.107,4.208,7.284,4.009,1.593,6.795,0.346,2.74,-3.481,-2.735,-1.592,2.394,-0.577,14.866,8.925,2.254,20.346,20.182,27.233,26.466,25.917,18.809,19.42,26.693,20.566,27.073,24.75,20.747,19.031,23.774,19.102,19.319,18.678,21.028,22.519,22.539,20.794,22.003,16.015,17.79,26.18,20.548,17.152,19.662,16.772,23.221,15.71,8.565,17.794,15.05,13.633,17.369,13.466,14.519,15.393,14.886,16.31,14.838,16.327,15.79,22.61,6.368,14.006,19.389,13.475,15.976,10.274,14.381,11.632,9.785,8.566,14.519,15.614,17.156,20.492,17.993,12.259,13.072,9.502,5.202,9.742,11.678,10.05,12.295,3.518,13.977,12.107,3.572,8.127,10.547,9.117,6.235,12.389,9.976,6.576,6.226,14.19,11.467,0.894,5.913,11.083,8.479,9.502,12.28,12.296,6.901,0.815,7.171,8.789,4.439,8.438,12.612,9.445,5.137,5.413,4.233,5.483,1.083,3.841,-3.565,0.372,-1.46,15.451,3.779,16.055,7.254,2.658,1.658,-1.548,0.271,2.941,9.558,2.447,6.16,0.818,7.358,3.176,1.116,-4.065,-1.46,1.091,1.982,-4.967,-0.904],[19.02,18.765,22.427,27.575,22.979,16.845,25.003,25.81,25.848,19.643,21.077,18.95,19.209,18.338,21.57,17.514,15.394,14.498,14.508,14.572,14.908,15.555,13.244,6.625,18.714,21.005,16.317,8.981,17.031,13.464,11.084,3.457,8.526,13.464,10.34,11.678,6.594,12.499,5.054,11.464,8.457,11.114,6.001,8.425,8.212,10.056,3.818,11.887,-0.27,4.779,7.125,4.162,1.421,6.873,0.546,2.662,-3.43,-2.704,-1.55,2.364,-0.602,14.932,8.803,2.332,20.192,20.209,27.56,26.336,26.413,18.374,19.63,26.24,20.545,26.863,25.041,20.582,18.679,23.98,19.586,19.4,18.647,21.138,22.656,21.745,20.824,22.231,15.981,17.948,25.605,20.375,17.632,20.153,16.555,23.016,15.376,8.305,17.995,14.89,13.558,17.661,13.43,14.616,14.848,14.772,16.278,14.84,16.821,15.701,22.444,5.883,13.956,19.382,13.699,16.171,10.409,14.33,11.453,10.099,8.806,15.129,16.356,17.062,20.441,18.313,12.534,13.01,9.263,5.269,9.342,11.395,10.019,12.416,3.352,13.318,11.636,3.888,7.639,10.766,9.54,6.198,11.493,9.915,6.549,6.299,13.894,10.886,0.886,5.974,11.385,8.578,9.672,12.165,12.125,6.776,0.429,7.483,8.73,4.635,8.618,12.154,9.82,4.86,5.4,4.647,5.318,1.079,4.259,-3.8,-0.098,-1.312,15.324,4.017,15.715,7.041,2.233,1.294,-2.067,0.248,2.406,9.283,3.0,6.589,0.327,7.772,3.36,0.969,-3.952,-1.816,1.13,2.655,-5.102,-1.205],[19.0,18.809,22.46,27.482,22.898,16.839,24.907,25.973,25.787,19.824,21.2,19.121,19.506,18.118,21.407,17.517,15.405,14.646,14.369,14.59,14.859,15.549,12.994,6.508,18.583,20.848,16.322,9.182,17.21,13.378,11.12,3.387,8.458,13.412,10.455,11.625,6.518,12.326,5.143,11.595,8.381,10.766,6.011,8.349,8.226,10.098,3.726,11.931,-0.379,5.225,7.062,4.21,1.431,6.882,0.794,2.716,-3.439,-2.887,-1.646,2.377,-0.703,14.947,8.755,2.433,20.027,20.43,27.447,26.253,26.1,18.158,19.671,26.599,20.394,26.948,24.751,20.301,18.879,24.142,20.007,19.518,18.377,21.15,22.911,21.918,20.711,21.822,15.722,17.813,25.505,20.456,17.971,19.346,16.447,23.035,15.168,8.125,18.073,14.667,13.865,18.196,13.483,14.758,15.423,14.944,16.432,15.315,16.504,15.675,22.239,5.728,14.363,19.714,13.508,16.129,10.567,14.013,11.131,10.243,9.033,15.446,16.544,16.844,20.843,18.135,12.809,13.324,9.542,5.257,9.21,11.262,10.083,12.991,3.415,13.296,11.9,4.166,7.544,11.003,9.595,5.816,11.061,9.944,6.634,6.769,13.954,10.666,0.507,6.292,11.549,8.188,9.719,12.374,11.814,6.628,0.466,7.365,8.507,4.427,8.731,11.937,9.168,5.153,5.568,4.829,5.091,0.249,4.588,-3.918,0.097,-1.09,15.698,3.957,15.728,6.858,1.828,1.506,-1.968,0.217,2.04,9.643,3.477,6.177,0.902,7.484,3.595,1.402,-3.578,-1.545,1.784,2.665,-5.277,-1.302],[18.803,18.997,22.518,27.314,22.962,16.795,24.84,26.158,25.513,19.888,21.31,19.225,19.656,17.896,21.324,17.493,15.419,14.632,14.262,14.712,15.13,15.479,12.874,6.423,18.436,20.758,16.27,9.523,17.352,13.462,11.206,3.428,8.336,13.375,10.436,11.815,6.561,12.308,5.31,11.722,7.95,10.562,5.949,8.227,8.138,10.15,3.675,11.82,-0.521,5.434,7.032,4.183,1.462,6.914,1.021,2.776,-3.465,-2.98,-1.776,2.391,-0.656,14.963,8.82,2.483,20.341,20.328,26.87,25.741,25.871,17.98,19.999,27.1,20.021,27.076,24.755,20.533,19.121,24.276,19.996,20.034,18.411,21.013,22.698,22.593,20.879,21.597,15.676,18.09,25.333,20.864,17.773,19.011,16.277,22.661,14.851,8.252,17.774,14.468,13.371,17.916,13.486,15.009,15.565,14.783,16.327,15.642,16.125,15.684,22.249,6.172,14.118,20.078,13.352,16.301,11.043,13.951,11.006,9.917,9.305,15.243,16.157,16.499,20.629,17.818,12.98,13.093,9.001,4.979,9.013,11.932,9.959,12.343,3.494,14.106,12.389,4.201,8.212,10.906,9.38,5.696,10.949,9.821,6.385,7.057,13.992,10.927,0.412,6.454,11.357,8.219,9.834,12.342,11.525,7.144,0.891,7.009,8.052,4.205,8.516,12.223,9.36,4.873,5.643,4.933,5.418,0.756,5.313,-4.184,0.061,-0.612,15.426,4.342,16.291,6.974,2.262,1.576,-1.695,-0.007,2.043,9.533,3.874,5.969,1.013,6.781,3.599,1.858,-3.765,-1.837,2.162,2.461,-5.094,-1.599],[18.713,19.232,22.576,27.26,23.233,16.72,24.776,26.3,25.074,19.802,21.388,19.212,19.711,17.734,21.254,17.264,15.284,14.76,14.231,14.859,15.442,15.466,12.864,6.456,18.365,20.683,16.019,9.857,17.192,13.603,11.06,3.404,8.072,13.411,10.523,11.978,6.678,12.45,5.51,11.644,7.615,10.51,5.95,7.972,7.994,10.084,3.568,11.625,-0.498,5.479,7.104,4.173,1.502,7.003,1.144,2.917,-3.497,-2.859,-1.774,2.61,-0.583,15.022,8.877,2.418,20.767,20.142,26.608,25.842,26.057,17.779,20.117,27.417,19.603,26.606,24.785,20.876,18.722,24.589,19.85,20.172,18.515,20.697,22.404,22.408,20.995,22.038,15.874,18.468,24.96,20.476,18.044,20.108,16.214,22.433,15.419,8.249,17.41,14.556,12.799,17.513,13.726,14.768,15.296,14.344,16.466,15.151,16.678,15.516,22.118,6.564,13.966,20.082,13.815,16.481,11.492,14.081,11.154,9.826,9.347,15.369,15.614,16.569,20.016,17.803,12.899,13.356,8.871,5.093,9.009,11.812,10.281,12.711,3.646,13.834,12.415,4.056,8.313,10.88,9.369,5.687,11.226,9.591,6.295,7.4,14.039,10.786,0.613,6.071,11.064,7.952,9.757,12.271,11.963,7.211,0.027,6.796,7.644,4.685,8.372,12.432,9.154,4.491,5.786,5.17,5.401,1.537,5.895,-4.186,-0.345,-0.527,15.121,4.308,16.459,6.972,2.821,1.304,-1.363,-0.139,2.173,9.461,3.706,6.193,0.464,6.605,3.449,2.461,-3.967,-1.703,2.305,2.528,-5.093,-1.488],[18.657,19.365,22.495,27.318,23.544,16.616,24.685,26.441,24.888,19.571,21.398,19.301,19.805,17.634,21.057,16.978,14.985,14.955,14.46,14.984,15.634,15.493,12.884,6.566,18.306,20.615,15.7,9.93,16.919,13.635,10.9,3.173,7.942,13.552,10.683,11.994,6.557,12.663,5.711,11.565,7.52,10.57,6.011,7.703,7.902,9.846,3.497,11.452,-0.568,5.37,7.153,4.19,1.599,7.027,1.136,3.121,-3.529,-2.687,-1.664,2.953,-0.599,15.139,8.867,2.396,20.911,20.467,26.307,26.286,25.505,17.766,20.086,27.309,19.779,26.428,24.616,21.18,18.709,24.587,19.732,19.804,18.405,20.614,23.07,22.338,20.716,22.461,16.114,18.352,24.55,20.346,18.137,19.901,16.424,22.807,15.38,8.101,17.333,14.68,12.91,17.594,14.167,14.725,14.974,14.356,16.716,14.616,16.512,15.296,21.963,6.377,14.568,19.963,14.105,16.736,11.214,14.273,11.091,9.651,9.875,15.383,15.22,17.066,20.093,17.64,12.752,13.74,9.004,5.117,8.937,11.514,10.037,13.079,3.302,14.016,11.748,4.541,7.908,11.659,9.741,5.729,11.442,9.553,5.925,7.391,13.998,10.592,0.597,6.444,11.43,7.293,9.755,12.284,12.177,6.846,-0.126,7.009,7.882,4.57,8.437,12.217,9.058,4.557,5.838,5.563,5.568,1.32,5.801,-3.891,0.238,-0.479,15.294,4.596,15.927,6.897,2.687,1.65,-1.461,0.196,2.233,9.509,3.603,6.652,0.661,7.157,2.894,2.732,-3.669,-1.474,2.388,2.307,-5.245,-1.175],[18.674,19.521,22.39,27.44,23.721,16.522,24.499,26.317,24.968,19.556,21.389,19.369,19.937,17.594,20.943,16.789,14.828,15.088,14.673,14.951,15.658,15.557,12.952,6.569,18.231,20.432,15.579,9.93,16.695,13.638,10.733,2.869,8.016,13.762,10.805,11.994,6.282,12.692,5.84,11.63,7.657,10.7,6.142,7.632,7.88,9.693,3.475,11.276,-0.776,5.253,7.255,4.12,1.712,6.984,1.132,3.092,-3.493,-2.498,-1.597,3.255,-0.552,15.16,8.895,2.519,20.688,19.985,26.387,26.119,25.538,17.914,19.812,27.051,20.321,26.712,24.743,21.02,19.012,24.497,19.877,19.25,18.223,21.289,23.488,22.765,20.585,22.628,15.77,18.258,25.247,20.581,18.323,19.21,16.805,22.19,14.906,8.422,17.475,14.519,13.234,17.883,13.983,14.953,15.587,14.699,16.85,14.937,16.036,15.245,21.736,6.124,14.195,19.647,13.927,16.951,11.379,14.209,11.175,9.694,9.616,15.46,15.107,17.506,20.313,17.151,12.81,13.103,8.742,4.51,8.676,11.978,9.523,12.878,2.991,14.423,12.144,4.728,7.637,11.359,9.772,5.776,11.694,9.737,5.723,7.541,14.322,10.845,0.386,6.686,11.42,7.637,9.906,12.383,11.71,6.477,0.294,7.677,7.603,4.157,8.599,12.379,9.297,4.563,5.566,6.046,5.43,0.599,5.241,-3.707,0.272,-0.678,15.474,5.05,16.078,7.059,3.436,1.211,-1.559,0.263,2.203,9.06,3.402,6.626,0.777,7.332,2.805,2.892,-3.571,-1.956,2.159,2.229,-5.165,-1.004],[18.745,19.744,22.328,27.517,23.884,16.434,24.467,26.019,24.984,19.662,21.335,19.349,20.094,17.614,21.002,16.711,14.83,15.084,14.786,14.746,15.518,15.732,13.111,6.436,18.07,20.099,15.531,10.023,16.693,13.642,10.513,2.848,8.037,13.946,11.006,11.8,6.152,12.724,5.865,11.674,7.97,10.875,6.233,7.557,8.042,9.634,3.471,11.168,-0.822,5.238,7.231,3.914,1.748,6.917,0.963,3.011,-3.461,-2.378,-1.742,3.571,-0.624,15.13,8.824,2.489,20.744,19.839,26.517,26.201,25.55,17.8,20.179,27.007,20.533,26.747,24.899,20.881,19.791,24.176,20.002,18.669,17.853,21.286,23.115,22.983,20.668,22.593,14.922,18.018,25.696,20.609,18.313,19.217,17.219,21.748,15.964,8.284,17.642,14.596,13.505,17.696,13.801,15.051,15.577,14.854,16.364,15.353,15.668,15.327,21.657,6.018,13.732,19.641,13.575,16.729,11.575,14.158,11.197,9.546,9.702,15.436,15.438,17.641,19.7,17.341,12.685,12.975,9.135,4.289,8.738,12.093,9.595,13.445,3.081,14.414,12.461,4.705,7.095,10.848,9.789,6.098,11.991,9.742,5.978,7.612,14.495,11.033,0.416,6.212,11.037,8.449,9.885,12.318,11.33,6.828,-0.087,7.501,7.656,4.203,8.184,12.486,9.372,4.803,5.462,5.999,5.481,0.553,5.17,-3.798,0.112,-0.63,15.519,5.379,16.354,6.997,2.912,1.623,-1.699,0.082,1.96,9.335,3.397,6.35,0.753,7.469,3.234,3.214,-3.619,-1.367,2.271,2.899,-5.284,-0.855],[18.706,19.988,22.238,27.454,23.976,16.411,24.586,25.834,24.772,19.633,21.133,19.353,20.08,17.666,21.028,16.756,14.946,14.953,14.821,14.416,15.344,15.88,13.303,6.331,17.879,19.72,15.543,10.108,16.83,13.557,10.346,3.012,8.066,14.118,11.308,11.847,6.131,12.805,5.947,11.582,8.116,11.129,6.275,7.523,8.345,9.629,3.489,11.098,-0.747,5.33,7.097,3.788,1.733,6.824,0.818,2.862,-3.438,-2.365,-1.914,3.795,-0.699,15.115,8.794,2.541,21.153,20.014,26.514,26.283,25.228,18.371,21.116,26.702,20.492,26.719,25.17,21.2,20.04,23.996,19.605,18.632,17.374,20.837,22.634,23.191,20.925,22.455,14.608,17.898,25.355,20.458,18.418,19.717,17.528,22.135,16.028,7.84,17.477,14.503,13.523,17.453,13.68,15.187,15.423,14.566,16.071,15.071,16.198,15.377,21.607,5.956,14.309,19.648,13.514,16.659,11.424,14.461,11.568,9.133,9.989,15.163,15.151,17.749,19.432,17.539,12.809,13.334,9.158,4.589,8.813,12.479,9.521,13.539,3.678,14.804,12.376,4.71,6.726,11.075,10.081,6.425,12.374,9.762,5.87,7.386,14.553,10.845,0.294,6.276,10.902,8.254,9.926,11.946,11.52,7.46,-0.093,6.995,7.834,4.648,7.956,12.301,9.798,4.422,5.556,5.643,5.328,1.019,5.559,-3.797,0.088,-0.833,14.924,5.61,15.86,6.936,2.804,1.254,-1.562,-0.154,1.736,9.572,3.501,6.369,0.902,7.17,2.992,3.081,-3.444,-1.161,2.042,3.382,-5.244,-0.906],[18.633,20.123,22.187,27.335,23.969,16.413,24.68,25.746,24.512,19.53,20.917,19.55,20.042,17.829,21.037,16.885,15.041,14.969,14.738,14.203,15.245,15.779,13.497,6.242,17.644,19.727,15.344,10.165,17.036,13.481,10.166,3.283,8.011,14.203,11.597,12.316,6.093,12.842,6.033,11.449,8.171,11.438,6.337,7.523,8.543,9.665,3.501,11.0,-0.58,5.402,6.876,3.707,1.783,6.781,0.798,2.677,-3.323,-2.489,-1.827,3.828,-0.718,14.925,8.867,2.502,20.956,20.007,26.054,26.104,24.748,18.143,21.049,26.576,20.401,26.709,24.847,20.346,19.975,23.961,19.408,19.055,17.267,20.91,22.443,23.362,20.775,22.648,14.774,18.247,25.657,20.257,18.311,19.946,17.43,21.966,15.611,7.973,17.425,14.751,13.408,17.737,13.79,14.729,15.58,14.417,16.017,14.733,16.817,15.425,21.274,6.232,14.386,19.414,13.175,16.821,11.592,14.555,11.737,9.312,9.956,14.703,15.033,17.924,19.374,17.295,13.438,13.291,8.939,5.091,8.998,12.484,9.17,13.257,3.18,14.469,12.375,4.751,7.26,11.18,10.344,6.444,12.334,10.017,5.853,7.523,14.699,10.781,0.052,6.329,11.067,8.395,9.732,11.893,11.604,7.867,-0.008,7.229,7.972,5.012,8.261,12.194,9.655,4.048,5.67,5.507,5.588,1.132,5.416,-3.731,0.001,-1.157,15.279,5.44,15.577,7.029,3.603,1.759,-1.643,-0.023,1.582,9.145,3.605,6.166,1.383,6.604,2.887,3.199,-3.444,-1.704,1.189,2.549,-5.02,-0.893],[18.635,20.042,22.18,27.298,24.03,16.359,24.624,25.655,24.293,19.409,20.639,19.716,19.834,18.057,21.018,17.07,15.189,15.019,14.614,14.092,15.233,15.629,13.627,6.284,17.479,19.923,15.211,10.313,17.43,13.541,10.048,3.437,7.966,14.101,11.685,12.522,6.077,12.951,6.041,11.358,8.368,11.747,6.472,7.52,8.644,9.648,3.482,10.856,-0.558,5.446,6.709,3.512,1.912,6.685,0.739,2.564,-3.155,-2.62,-1.561,3.821,-0.789,14.704,8.82,2.348,20.78,19.897,25.598,26.015,24.864,17.762,20.437,26.585,20.14,26.572,24.947,20.049,19.436,23.897,19.276,19.105,17.879,20.951,22.74,23.117,20.328,22.769,15.033,18.298,25.6,20.428,17.983,20.075,16.958,21.236,15.356,7.974,17.317,14.593,13.607,17.892,13.782,14.609,15.766,14.493,15.786,14.742,16.226,15.926,21.586,6.072,14.047,19.184,13.295,16.77,11.715,14.491,11.849,9.243,10.095,14.751,15.054,17.97,19.862,16.886,13.277,13.696,8.861,5.271,9.011,12.477,8.757,12.998,3.208,14.54,12.887,4.69,7.439,12.023,10.341,6.359,12.577,10.488,5.729,7.833,14.721,10.805,0.631,6.127,11.242,8.383,9.603,12.092,11.346,7.599,0.377,7.933,7.898,4.768,8.364,12.294,9.83,4.392,5.116,5.894,5.532,1.125,5.301,-3.997,0.126,-1.115,15.062,5.573,15.555,7.005,3.165,2.224,-1.511,0.183,1.691,9.18,3.564,6.423,1.066,6.646,3.046,3.211,-3.44,-1.792,1.732,1.785,-4.844,-1.144],[18.557,19.715,22.225,27.361,24.123,16.423,24.531,25.588,24.166,19.327,20.493,19.592,19.454,18.166,20.874,17.153,15.312,15.118,14.618,14.219,15.222,15.632,13.742,6.403,17.443,20.095,15.346,10.639,17.742,13.62,9.888,3.447,7.889,13.967,11.673,12.442,6.159,13.203,5.97,11.325,8.562,11.957,6.632,7.399,8.743,9.596,3.464,10.665,-0.526,5.466,6.664,3.426,1.951,6.543,0.878,2.536,-3.034,-2.689,-1.304,3.869,-0.801,14.488,8.652,2.199,21.134,19.951,25.612,25.992,25.052,17.98,20.029,26.685,19.808,26.828,25.098,20.068,19.493,23.798,19.054,19.482,17.993,20.621,23.099,23.506,20.457,22.568,15.739,18.476,25.31,20.502,17.79,19.774,16.518,21.14,15.139,8.013,17.422,14.502,13.839,17.881,13.518,14.898,15.442,14.712,16.032,15.335,16.572,15.853,21.944,5.831,14.467,18.95,13.312,16.73,11.612,14.18,11.908,9.255,9.916,14.836,14.885,17.98,19.832,17.223,12.407,13.692,9.163,4.968,8.564,12.168,9.063,12.842,4.058,14.335,12.89,5.112,6.674,11.34,9.986,6.469,12.529,10.253,5.789,7.679,15.076,11.448,0.362,5.738,11.233,8.729,9.48,11.922,10.997,6.859,-0.515,8.334,7.77,4.47,8.289,12.302,10.09,4.611,4.897,6.285,5.14,1.159,4.826,-3.953,-0.338,-0.852,14.61,5.586,15.129,6.915,2.57,1.918,-1.029,0.464,1.759,9.294,3.591,6.699,0.829,6.942,2.716,3.039,-3.078,-1.391,1.916,2.204,-4.808,-0.913],[18.492,19.512,22.452,27.494,24.197,16.65,24.571,25.554,24.093,19.314,20.496,19.424,19.277,18.202,20.675,17.156,15.38,15.208,14.591,14.574,14.936,15.876,13.818,6.452,17.476,20.164,15.556,10.805,17.909,13.692,9.765,3.6,7.797,13.873,11.557,12.152,6.252,13.399,5.863,11.221,8.709,12.038,6.655,7.3,8.76,9.543,3.548,10.483,-0.698,5.499,6.633,3.411,1.934,6.582,0.96,2.464,-2.923,-2.583,-1.096,3.83,-0.791,14.283,8.436,1.96,20.931,19.845,25.685,26.03,24.663,18.094,19.519,26.436,19.487,27.213,24.871,20.065,19.353,23.763,19.127,19.898,18.203,20.523,23.113,23.906,20.583,22.718,16.044,18.128,25.492,20.305,17.491,19.628,16.449,20.88,15.486,8.168,17.484,15.265,13.667,17.779,13.187,14.969,15.42,15.011,16.224,15.03,17.161,15.493,21.724,6.074,14.185,19.183,13.667,17.093,12.163,14.228,12.134,9.402,10.927,14.846,15.278,18.464,19.211,17.445,12.348,13.512,8.661,4.797,8.046,11.676,9.222,12.828,3.894,14.292,12.775,5.236,5.72,11.26,9.895,6.511,12.721,10.349,5.638,7.666,15.11,11.772,-0.04,6.227,11.266,8.956,9.273,11.994,10.868,6.587,-0.218,8.181,7.434,4.342,8.628,12.023,10.135,4.871,5.072,6.032,5.045,0.996,4.793,-3.861,-0.138,-0.745,14.746,5.502,14.304,6.649,3.21,1.037,-0.892,0.641,2.099,8.901,3.572,5.997,0.86,6.594,2.249,3.34,-3.237,-1.307,1.836,2.237,-4.628,-0.995],[18.623,19.511,22.718,27.526,24.231,16.92,24.621,25.45,24.112,19.251,20.529,19.274,19.146,18.235,20.551,17.262,15.476,15.109,14.61,14.92,14.449,16.017,13.761,6.441,17.654,20.108,15.795,10.952,18.116,13.724,9.659,3.745,7.536,13.969,11.414,11.953,6.253,13.391,5.881,11.103,8.77,12.186,6.582,7.216,8.716,9.516,3.767,10.42,-0.871,5.583,6.432,3.434,1.913,6.507,0.897,2.516,-2.776,-2.487,-1.016,3.782,-0.771,14.265,8.351,1.48,20.477,19.898,25.429,26.285,24.025,17.701,19.588,26.076,18.645,27.127,25.083,20.475,19.215,23.767,19.542,20.142,18.558,20.903,23.012,23.457,21.107,23.032,15.592,17.966,25.41,20.601,17.25,19.912,16.927,20.377,15.488,8.104,17.254,15.146,13.627,17.606,12.839,15.04,15.55,15.515,16.539,15.369,16.683,15.845,21.851,6.186,14.327,19.331,14.03,16.767,12.299,14.63,12.028,9.267,11.26,14.824,15.415,18.847,19.402,17.379,12.657,13.201,8.474,5.403,7.945,11.851,8.788,12.625,3.512,14.51,13.386,4.565,6.448,11.581,9.499,6.255,12.937,10.489,5.389,7.551,15.028,11.668,-0.202,6.487,11.277,8.688,9.434,11.775,11.008,6.917,-0.107,8.02,7.639,4.757,8.556,11.559,9.9,4.876,5.008,5.91,5.694,0.715,4.677,-3.792,0.517,-0.977,14.808,5.714,13.087,6.591,2.699,0.653,-1.023,0.743,2.5,8.654,3.812,6.266,1.226,6.285,2.151,3.209,-3.569,-1.65,1.886,2.067,-4.276,-0.731],[18.773,19.541,22.981,27.44,24.129,16.913,24.744,25.332,24.029,19.288,20.628,19.262,18.936,18.178,20.65,17.485,15.605,14.781,14.619,15.106,14.117,16.044,13.615,6.322,17.911,20.138,15.842,11.05,18.208,13.736,9.538,3.719,7.307,14.142,11.323,11.942,6.207,13.305,5.992,11.036,8.714,12.332,6.42,7.138,8.689,9.539,3.946,10.412,-1.008,5.703,6.338,3.447,1.959,6.311,0.75,2.515,-2.614,-2.391,-1.034,3.737,-0.731,14.273,8.474,1.051,20.65,19.995,25.678,26.141,24.167,18.137,19.561,26.202,18.783,26.808,24.915,19.965,19.382,23.344,19.433,20.603,18.229,20.49,23.256,23.024,21.318,23.414,15.459,18.584,25.297,20.686,17.133,19.576,17.382,20.351,15.722,7.92,17.322,14.675,13.982,17.671,12.474,15.12,15.769,15.271,17.006,16.055,16.783,16.118,21.962,6.019,14.649,19.23,14.348,16.182,12.112,14.428,12.001,9.349,10.757,14.404,15.443,19.047,19.638,17.721,12.733,12.575,8.708,5.342,8.069,11.859,8.624,13.264,3.864,14.495,13.327,4.777,6.359,11.491,9.453,6.573,13.342,10.569,5.486,7.432,15.057,11.3,-0.727,6.558,11.054,8.654,9.246,11.793,11.04,7.463,-0.459,7.782,7.779,5.299,8.175,11.724,9.386,4.666,4.79,6.472,5.524,1.005,5.046,-3.443,0.594,-0.978,14.984,5.403,12.786,6.756,2.579,0.395,-0.923,0.884,3.075,9.017,4.01,6.643,1.61,6.233,2.654,2.892,-2.881,-1.419,1.733,1.724,-4.375,-0.665],[18.998,19.651,23.168,27.379,24.054,16.729,24.88,25.285,24.031,19.552,20.507,19.434,18.637,18.155,20.678,17.674,15.679,14.447,14.641,15.099,14.019,16.071,13.53,6.167,18.146,20.157,15.883,10.918,18.242,13.688,9.501,3.537,7.302,14.271,11.258,11.838,6.08,13.141,6.238,11.017,8.52,12.398,6.211,7.161,8.737,9.64,4.05,10.427,-1.252,5.872,6.366,3.578,2.29,6.144,0.604,2.5,-2.453,-2.326,-0.929,3.549,-0.545,14.433,8.649,0.729,20.661,20.254,25.744,25.923,24.032,18.597,19.252,26.273,19.542,26.967,25.364,19.722,19.231,23.415,19.101,20.363,18.205,20.538,23.588,23.181,21.397,23.069,15.66,18.298,25.445,20.798,16.963,19.463,17.736,20.827,15.52,7.851,17.908,15.239,14.257,17.858,12.32,14.668,15.657,14.647,16.973,16.078,17.089,16.039,21.901,5.78,14.342,19.371,14.158,16.309,11.975,14.468,11.87,8.952,10.557,13.85,15.73,18.884,19.349,17.498,13.107,12.933,8.52,4.815,8.189,11.646,8.552,13.446,3.837,14.789,12.943,5.219,5.927,11.476,9.552,6.659,12.909,10.248,5.354,7.639,14.883,11.524,-0.603,6.465,10.804,8.851,9.166,11.942,10.822,7.654,-0.566,7.729,7.578,5.063,8.087,12.005,9.623,4.868,4.472,6.433,4.624,1.138,5.009,-3.366,-0.089,-1.059,14.659,5.275,13.544,7.005,3.073,0.477,-0.959,0.843,3.318,9.073,4.083,6.188,1.242,6.472,3.286,2.901,-2.161,-1.313,1.48,0.972,-4.288,-0.532],[19.192,19.725,23.201,27.457,24.011,16.683,25.1,25.404,24.059,19.747,20.219,19.524,18.266,18.209,20.608,17.722,15.781,14.505,14.542,15.072,14.041,15.99,13.484,6.173,18.221,20.063,15.993,10.636,18.368,13.599,9.447,3.341,7.312,14.261,11.255,11.81,5.79,12.913,6.552,10.994,8.252,12.367,5.957,7.156,8.864,9.719,3.97,10.283,-1.294,5.918,6.386,3.791,2.595,5.933,0.443,2.602,-2.24,-2.122,-0.827,3.36,-0.333,14.641,8.705,0.441,20.641,20.331,25.831,26.007,23.721,18.71,18.907,25.889,19.994,26.913,25.892,19.726,19.741,23.644,18.608,20.427,18.298,21.142,23.774,23.665,21.395,22.651,15.276,18.292,25.663,21.124,16.7,20.208,18.037,21.288,15.377,7.956,18.259,15.615,14.247,18.201,12.536,14.158,15.615,14.197,16.898,15.805,17.032,16.143,21.819,5.865,14.372,19.495,13.99,16.05,12.148,14.504,11.759,8.818,10.844,13.812,15.59,18.272,19.213,17.584,13.314,13.227,8.526,4.634,8.234,11.511,8.676,13.115,4.147,14.521,12.746,5.485,6.528,11.355,9.48,6.324,12.716,10.378,5.282,8.307,14.745,11.346,-0.489,6.171,10.953,8.654,9.368,11.748,10.639,7.231,-0.717,7.908,7.917,4.707,8.261,11.882,9.72,4.772,4.173,6.488,4.98,1.342,5.145,-3.632,-0.07,-1.445,15.117,5.227,13.836,7.195,2.627,0.537,-0.342,0.693,3.142,9.148,4.159,5.918,1.639,5.916,2.966,2.715,-2.518,-1.179,1.373,1.195,-4.045,-0.549],[19.282,19.88,23.271,27.538,24.077,16.691,25.301,25.41,24.174,19.822,19.968,19.529,17.948,18.275,20.628,17.665,15.777,14.562,14.434,15.145,14.044,15.864,13.553,6.317,18.103,19.998,16.09,10.558,18.478,13.586,9.437,3.572,7.268,14.004,11.281,11.866,5.574,12.855,6.829,10.957,8.045,12.098,5.679,7.118,8.868,9.795,3.723,10.076,-1.156,5.876,6.516,4.022,2.734,5.634,0.392,2.714,-2.159,-1.957,-1.05,3.33,-0.154,14.793,8.707,0.401,20.942,20.698,25.91,26.519,23.677,18.479,18.684,26.315,19.27,27.011,25.976,19.559,19.516,23.492,18.567,21.063,18.056,21.116,23.361,23.429,21.465,22.822,15.381,18.357,25.823,21.014,16.521,19.783,18.481,21.028,15.339,7.828,18.32,15.406,14.193,18.421,12.587,14.819,15.691,14.621,16.877,15.525,17.014,16.064,21.773,5.894,14.647,19.372,14.204,16.129,12.146,14.236,11.634,9.115,10.735,14.186,15.553,18.298,19.157,18.05,12.872,13.28,8.56,5.173,7.684,11.518,8.767,12.889,3.746,14.896,12.46,5.957,5.783,11.017,9.357,5.903,13.289,10.758,5.564,8.007,14.68,11.528,-0.697,5.683,11.093,8.34,9.119,11.643,10.863,6.554,-0.143,8.245,7.719,4.945,8.558,11.525,9.088,4.767,4.192,6.622,5.563,1.745,5.019,-3.504,0.546,-1.377,15.436,4.946,13.483,6.964,2.558,0.309,-0.374,0.7,2.795,9.035,3.998,6.078,2.009,6.198,2.97,2.593,-2.852,-0.476,1.549,1.447,-3.601,-0.536],[19.276,19.945,23.319,27.636,24.112,16.724,25.325,25.294,24.261,19.875,19.807,19.336,17.789,18.25,20.67,17.663,15.773,14.684,14.398,15.348,14.041,15.753,13.629,6.298,17.97,20.023,16.217,10.42,18.602,13.572,9.551,3.826,7.227,13.776,11.39,11.941,5.36,12.948,7.105,10.86,7.829,12.024,5.44,7.122,8.717,9.884,3.643,10.002,-0.79,5.739,6.711,4.205,2.811,5.516,0.628,2.856,-2.01,-1.925,-1.242,3.377,0.161,14.778,8.643,0.502,21.048,20.856,25.968,26.985,23.858,18.756,18.614,26.562,18.618,27.566,25.742,19.164,19.503,23.703,18.724,20.905,17.928,21.246,23.501,23.215,21.788,23.317,15.629,18.161,25.808,20.592,16.401,19.165,19.208,20.103,15.024,7.843,17.96,14.924,14.037,17.709,12.304,15.331,15.608,15.04,16.917,15.238,17.099,15.886,21.62,6.104,14.463,19.397,14.19,16.25,11.687,14.247,11.928,8.935,10.307,14.254,15.96,18.793,18.998,17.856,12.514,12.544,8.735,5.478,6.714,12.07,8.562,12.755,3.523,14.824,12.509,6.035,5.794,11.199,9.41,5.056,12.918,10.483,5.417,7.83,14.763,11.245,-1.062,5.362,11.12,8.305,9.046,11.673,10.86,6.508,-0.411,8.313,7.646,5.042,8.582,11.221,9.039,4.286,3.67,6.068,5.484,1.808,5.093,-3.12,0.224,-0.993,15.17,5.288,13.414,6.806,2.534,0.317,-1.099,0.495,2.623,8.782,3.959,6.052,1.863,6.384,3.372,2.698,-2.692,-0.313,1.696,1.181,-3.389,-0.251],[19.174,19.819,23.384,27.693,24.085,16.681,25.227,25.195,24.174,19.833,19.671,19.037,17.76,18.31,20.762,17.806,15.693,14.871,14.288,15.494,13.99,15.631,13.679,6.129,17.752,19.988,16.294,10.151,18.541,13.517,9.685,3.848,7.235,13.619,11.636,11.884,5.285,13.041,7.165,10.839,7.744,11.983,5.276,7.072,8.617,9.894,3.722,10.044,-0.496,5.541,6.814,4.33,2.752,5.421,0.873,2.904,-1.737,-1.834,-1.306,3.47,0.42,14.654,8.603,0.596,20.746,20.24,25.835,27.138,24.131,18.747,18.472,26.515,19.006,27.628,25.786,19.242,19.669,23.855,18.211,20.467,18.367,20.614,24.193,23.371,21.906,23.248,15.408,18.065,25.498,20.859,16.062,19.668,19.654,19.761,15.032,7.666,17.435,15.096,14.13,17.454,12.382,15.223,15.97,15.591,17.047,15.087,17.364,16.31,21.91,5.81,14.116,19.236,14.441,16.528,11.608,14.261,11.768,9.134,9.612,14.053,15.784,19.272,19.083,17.663,12.4,12.566,8.937,5.244,6.238,12.309,8.489,12.894,4.152,14.387,12.338,6.37,6.271,11.523,10.001,4.396,12.648,10.052,5.413,8.797,14.888,11.53,-0.736,5.705,11.409,8.111,9.085,11.78,10.678,6.816,0.396,7.292,7.984,4.688,8.469,11.375,9.321,4.394,3.602,5.836,5.381,1.624,5.553,-2.99,0.689,-0.768,15.341,5.046,13.658,6.878,2.428,0.119,-0.993,0.385,2.535,8.88,3.635,5.828,2.068,6.208,3.182,2.574,-2.262,-0.559,2.033,1.233,-3.518,0.001],[19.047,19.64,23.605,27.618,24.026,16.615,25.049,25.022,24.024,19.826,19.503,18.913,17.691,18.432,20.796,18.048,15.638,15.022,14.349,15.499,13.84,15.45,13.677,5.99,17.528,20.092,16.229,9.982,18.355,13.395,9.896,3.735,7.267,13.502,11.935,11.839,5.393,12.998,7.07,10.883,8.018,11.888,5.148,7.009,8.367,9.878,3.975,10.071,-0.155,5.365,6.871,4.318,2.735,5.353,1.11,2.891,-1.632,-1.808,-1.163,3.395,0.529,14.662,8.77,0.566,20.491,20.657,25.698,26.727,24.292,18.63,18.287,26.449,19.633,27.474,25.547,19.478,18.923,23.95,17.773,20.218,18.426,20.626,23.823,23.597,21.9,22.943,15.402,17.962,25.627,20.954,16.176,19.562,19.96,20.31,15.369,7.501,17.811,15.26,14.332,17.755,12.409,15.221,15.629,15.992,17.225,15.206,17.054,16.452,21.904,5.218,14.218,19.006,14.367,16.718,11.413,13.949,11.86,9.236,9.449,13.776,15.709,19.221,19.107,18.051,12.703,12.989,9.121,5.118,6.436,12.271,8.793,12.583,4.368,14.182,12.492,6.205,5.909,11.018,10.107,4.554,13.056,10.05,5.542,8.668,14.874,11.667,0.017,5.777,11.233,8.078,9.184,11.988,10.49,6.457,0.1,7.159,7.812,4.626,8.201,11.842,9.389,5.009,3.798,6.188,5.481,1.579,5.915,-2.749,1.224,-0.576,15.005,5.098,13.773,7.087,2.464,0.226,-0.265,0.232,2.047,9.092,3.538,5.786,1.888,6.366,3.404,2.658,-1.995,-0.209,2.46,1.607,-3.344,0.005],[18.983,19.496,23.691,27.433,23.925,16.634,24.97,24.901,23.945,20.023,19.415,18.893,17.596,18.609,20.856,18.247,15.745,15.024,14.583,15.31,13.767,15.239,13.755,5.934,17.462,20.189,16.178,9.937,18.107,13.336,10.085,3.608,7.261,13.327,11.982,11.785,5.504,12.859,6.853,10.955,8.374,11.979,5.114,7.009,8.083,9.689,4.244,10.102,0.084,5.435,6.921,4.36,2.785,5.494,1.361,2.809,-1.692,-1.734,-0.928,3.37,0.517,14.758,9.002,0.551,20.566,20.837,25.639,26.347,23.8,18.245,18.175,25.929,19.432,27.428,25.357,19.221,19.491,23.293,17.672,20.299,18.173,21.407,23.63,23.059,21.94,23.163,15.378,17.833,25.663,21.009,16.42,19.202,19.918,20.619,15.444,7.715,18.686,14.924,14.33,17.546,12.311,15.037,15.689,15.805,17.003,14.981,17.367,16.475,21.88,5.051,14.138,18.781,14.09,16.564,11.108,13.636,12.085,9.249,9.736,13.462,15.866,18.512,18.965,17.842,13.073,13.261,9.005,5.041,6.867,12.689,8.914,12.453,3.842,14.486,12.816,5.937,5.923,11.164,10.067,4.861,12.852,9.914,5.56,7.688,14.647,10.944,0.458,5.337,10.772,8.435,9.194,11.901,10.141,6.327,-0.052,7.512,7.775,5.353,8.217,11.856,9.794,5.094,3.682,5.879,5.718,1.855,5.555,-3.051,0.972,-0.356,15.115,4.954,13.465,7.32,2.506,0.508,-0.135,0.526,1.713,9.245,3.525,5.606,2.254,6.594,3.311,2.622,-2.273,0.28,2.549,1.501,-3.296,0.067],[18.88,19.627,23.661,27.239,23.676,16.714,25.048,24.6,23.892,20.259,19.379,18.861,17.471,18.732,20.997,18.465,15.836,14.864,14.746,15.058,13.856,14.957,13.9,5.957,17.572,20.041,16.077,9.881,17.98,13.327,10.088,3.45,7.218,13.167,11.947,11.97,5.533,12.694,6.523,10.999,8.498,12.023,5.235,6.967,7.964,9.481,4.408,10.053,0.258,5.532,7.053,4.479,2.884,5.713,1.465,2.739,-1.8,-1.552,-0.675,3.362,0.512,14.835,9.128,0.608,20.716,20.869,25.698,26.668,23.615,18.257,18.587,25.447,18.766,26.954,25.8,18.674,19.539,22.842,17.948,20.64,18.257,21.683,23.767,22.72,21.993,22.975,15.478,17.486,25.365,20.953,16.352,19.697,20.298,20.747,15.643,7.804,18.714,15.063,14.104,16.978,12.437,15.042,16.151,15.489,16.749,14.736,16.854,16.708,21.921,5.509,14.094,18.617,13.984,16.553,11.134,13.521,12.042,9.594,10.149,14.026,15.721,17.585,19.058,17.788,13.197,13.175,9.028,4.923,6.552,12.632,8.708,12.64,3.505,14.276,12.666,5.583,6.082,11.107,10.167,4.842,12.857,9.494,5.53,7.67,14.502,11.245,0.309,5.589,10.592,8.698,9.159,11.517,10.157,5.838,0.504,7.16,8.13,6.089,7.929,11.703,9.994,4.946,3.991,5.709,5.77,1.648,5.764,-3.044,0.677,-0.041,15.251,5.321,13.821,7.296,2.485,0.573,-0.366,1.034,1.339,8.99,3.633,5.655,2.423,6.649,3.139,2.498,-2.967,-0.139,2.623,1.903,-2.923,-0.002],[18.752,19.77,23.565,27.078,23.429,16.997,25.144,24.19,23.966,20.451,19.298,18.846,17.425,18.883,21.213,18.641,15.855,14.74,14.827,15.0,13.933,14.697,14.04,6.101,17.683,19.965,15.867,9.868,17.821,13.283,10.052,3.376,7.098,13.101,12.012,12.267,5.471,12.546,6.286,10.916,8.552,11.961,5.255,6.899,7.94,9.409,4.458,9.895,0.416,5.512,7.145,4.549,2.991,5.996,1.438,2.644,-1.964,-1.423,-0.638,3.397,0.503,14.912,9.083,0.815,21.043,21.026,25.547,26.465,23.974,18.772,18.476,25.015,18.436,27.027,25.642,18.332,19.487,22.492,18.621,20.529,18.551,21.474,23.831,22.939,22.111,22.469,15.651,17.365,25.536,21.293,16.089,19.511,20.64,21.084,15.579,7.595,18.755,15.562,14.313,17.18,12.355,15.151,16.095,15.359,16.699,14.515,16.876,17.085,21.772,5.979,14.251,18.451,13.711,16.3,11.079,13.826,12.199,9.665,10.01,14.076,15.312,17.542,19.183,17.63,13.428,13.236,8.889,4.901,6.027,12.345,8.614,12.054,4.122,13.511,12.097,5.162,6.105,11.215,10.151,4.443,13.243,9.04,5.454,7.476,14.352,11.702,0.076,6.018,10.453,8.572,9.132,11.774,10.654,5.971,0.268,6.83,8.023,6.011,7.638,11.592,10.046,4.866,4.334,6.235,5.685,1.924,6.253,-2.336,0.499,0.089,15.329,5.092,13.553,7.401,2.553,0.806,-0.284,1.08,0.986,9.219,3.719,5.989,1.99,6.847,3.774,2.709,-2.949,-0.629,2.759,2.041,-3.217,0.374],[18.636,19.841,23.519,27.042,23.352,17.289,25.172,23.869,24.029,20.541,19.297,18.906,17.536,19.12,21.516,18.845,15.959,14.642,14.909,15.074,13.855,14.639,14.169,6.281,17.64,19.967,15.545,9.917,17.726,13.205,10.08,3.565,6.936,12.911,11.952,12.529,5.457,12.426,6.095,10.802,8.658,11.951,5.032,6.866,7.875,9.48,4.374,9.828,0.444,5.505,7.139,4.631,3.04,6.322,1.396,2.522,-2.312,-1.234,-0.706,3.367,0.386,14.902,9.044,1.061,20.996,20.91,25.605,25.865,24.127,18.884,18.026,24.288,18.211,27.364,25.725,18.204,19.889,22.306,18.235,20.297,18.889,21.59,23.15,22.743,22.042,22.86,16.066,17.329,25.927,21.643,16.022,18.905,21.067,21.13,15.586,7.789,18.887,15.677,14.586,18.459,12.471,14.964,15.809,15.288,16.778,14.339,16.94,17.266,21.754,5.681,14.205,18.377,13.722,16.324,10.824,13.509,12.54,9.252,9.345,13.397,15.163,17.849,18.93,17.317,13.809,13.503,8.466,4.826,5.715,12.42,8.64,11.855,4.181,13.594,11.917,5.074,5.851,11.721,10.094,3.961,12.805,9.599,5.298,7.564,14.138,11.338,0.572,5.47,10.565,8.409,9.012,12.112,10.794,6.08,0.607,7.057,7.841,5.81,7.798,11.0,10.258,4.903,4.695,6.17,6.066,2.087,6.202,-2.029,0.828,-0.252,15.382,5.306,13.823,7.129,2.734,1.147,-0.15,0.796,0.721,9.486,3.545,5.982,2.002,7.176,3.648,2.477,-2.595,-0.315,2.74,2.168,-3.9,0.534],[18.533,19.89,23.397,27.125,23.553,17.47,25.15,23.647,24.07,20.513,19.138,18.862,17.708,19.491,21.83,19.112,16.043,14.646,14.883,15.167,13.85,14.786,14.269,6.337,17.616,19.886,15.314,9.826,17.728,13.093,9.948,3.791,6.73,12.819,11.897,12.661,5.4,12.335,5.985,10.758,8.719,11.807,4.76,6.856,7.887,9.704,4.246,9.739,0.451,5.322,7.179,4.607,3.102,6.593,1.258,2.491,-2.588,-1.102,-0.684,3.427,0.301,14.834,8.885,1.425,20.94,20.969,26.068,26.588,23.821,18.787,18.363,23.824,18.208,27.072,25.941,18.507,19.646,21.843,17.516,19.841,19.173,21.76,23.268,22.958,21.803,22.846,16.399,17.509,25.902,21.016,16.258,19.335,21.147,20.816,15.953,7.946,19.167,15.618,14.791,18.886,12.406,14.536,15.962,15.537,16.914,14.081,16.988,17.314,21.708,5.75,14.022,18.362,14.179,16.42,11.047,13.69,12.443,9.337,9.27,13.349,14.66,18.485,18.941,17.237,14.036,14.006,8.441,5.173,5.536,12.574,8.799,11.731,3.713,13.863,12.185,5.494,5.915,11.946,10.028,3.94,12.677,9.647,5.343,7.626,13.787,11.146,1.059,5.602,10.728,8.971,9.218,11.77,10.696,5.679,0.542,7.385,7.803,5.186,7.97,10.885,10.143,5.245,4.985,5.595,5.981,1.956,5.988,-2.375,0.814,-0.429,14.919,4.921,13.917,6.94,2.534,0.783,-0.191,0.861,0.723,9.101,3.423,6.144,2.587,7.007,3.205,2.006,-2.669,-0.683,2.336,2.4,-4.476,0.753],[18.28,19.757,23.233,27.239,23.849,17.662,25.073,23.405,24.105,20.382,18.687,18.879,17.984,19.777,21.947,19.301,15.907,14.671,14.872,15.286,13.967,15.082,14.273,6.207,17.632,19.861,15.294,9.642,17.901,13.063,9.764,3.92,6.526,12.979,11.976,12.675,5.424,12.243,5.982,10.77,8.739,11.67,4.559,6.88,7.956,9.841,4.12,9.796,0.437,5.019,7.126,4.497,3.169,6.729,0.996,2.628,-2.714,-1.168,-0.612,3.417,0.096,14.74,8.637,1.811,21.266,21.184,26.042,27.051,23.807,19.212,18.91,24.07,18.23,27.263,25.508,18.8,19.956,21.507,17.019,19.776,19.072,22.739,23.67,23.68,21.546,22.46,16.299,17.785,25.626,21.45,16.492,19.352,21.489,20.685,16.018,7.824,19.509,15.6,14.741,18.629,12.347,14.717,16.144,15.723,17.074,14.184,17.095,17.495,21.547,6.094,13.864,18.671,14.299,16.345,11.024,14.147,12.646,9.58,9.525,13.902,14.366,18.857,18.964,17.025,14.349,13.887,8.225,5.357,5.554,12.675,8.427,12.128,3.991,13.685,12.291,5.372,6.165,11.414,10.166,4.43,12.86,9.361,5.347,7.589,13.919,11.032,1.051,5.474,10.767,9.226,9.056,11.799,10.255,5.563,0.366,6.935,7.718,4.996,8.144,11.262,10.113,5.435,5.308,5.648,5.763,2.047,5.868,-2.4,0.21,-0.509,14.597,5.014,13.193,6.975,2.231,0.683,-0.164,1.041,0.928,8.796,3.227,6.293,3.029,7.143,3.592,1.974,-2.801,-0.901,2.361,2.301,-4.433,0.384],[18.005,19.59,23.132,27.328,23.871,17.757,24.875,23.145,24.015,20.438,18.275,19.039,18.286,20.048,22.066,19.325,15.692,14.689,15.008,15.407,14.221,15.381,14.339,6.079,17.768,19.858,15.269,9.499,18.137,13.236,9.607,4.082,6.285,13.147,12.015,12.522,5.528,12.258,6.027,10.787,8.704,11.637,4.562,6.83,7.962,9.804,4.087,9.975,0.399,5.003,7.077,4.438,3.223,6.811,0.836,2.834,-2.688,-1.308,-0.394,3.455,-0.312,14.63,8.678,2.013,20.917,20.761,25.818,26.404,24.006,19.36,19.08,23.747,18.051,27.198,25.728,18.207,20.046,21.534,16.531,19.618,19.29,22.684,23.55,23.334,21.323,22.823,16.37,17.861,25.42,21.429,16.669,19.018,21.624,20.458,15.584,7.739,19.699,15.088,14.3,17.453,12.458,15.16,15.926,15.554,17.138,14.472,17.076,17.555,21.693,5.797,13.574,18.729,13.933,16.271,10.666,14.111,12.427,9.217,9.566,14.322,14.75,18.64,18.796,17.244,14.977,13.636,7.937,5.042,5.734,12.596,8.103,12.58,3.98,14.197,12.08,5.082,5.871,11.534,10.142,4.309,12.777,8.909,5.455,7.301,13.865,10.736,0.997,5.381,10.779,8.99,9.206,11.713,10.05,5.732,0.545,7.05,7.906,5.153,8.272,11.664,10.31,4.88,5.303,5.691,5.863,2.14,5.984,-2.338,0.03,-0.531,15.198,4.957,13.692,6.742,2.446,1.59,-0.178,1.146,1.314,8.889,3.249,6.624,2.778,7.333,3.477,2.086,-3.241,-0.877,2.385,2.843,-4.269,0.542],[17.845,19.41,23.116,27.177,23.641,17.815,24.705,22.964,23.91,20.536,17.926,19.181,18.428,20.245,22.216,19.272,15.476,14.936,15.008,15.37,14.499,15.343,14.282,5.983,17.714,19.806,15.34,9.556,18.246,13.559,9.558,4.173,6.085,13.301,11.979,12.436,5.519,12.291,5.994,10.879,8.535,11.597,4.726,6.768,7.846,9.722,4.079,10.126,0.414,5.19,7.171,4.383,3.139,6.841,0.881,3.096,-2.643,-1.312,-0.281,3.462,-0.739,14.756,8.86,2.28,20.473,20.992,25.77,26.14,23.644,19.254,19.075,23.192,17.716,27.357,25.66,17.568,19.813,21.291,17.051,19.443,19.486,21.64,23.237,22.829,21.341,22.696,16.635,17.73,25.381,21.324,16.865,19.471,22.01,21.002,15.8,7.697,19.581,15.187,14.467,17.662,12.855,15.012,16.435,14.988,16.949,14.714,17.041,17.56,21.638,5.723,13.618,18.929,14.046,16.646,11.008,13.992,12.537,8.864,8.914,14.01,15.238,18.324,18.947,16.941,15.326,13.592,7.803,5.031,5.407,12.464,8.379,12.281,4.392,13.816,12.012,5.05,6.144,11.678,10.058,3.888,12.209,9.561,5.388,7.121,14.019,10.774,1.275,5.658,10.969,8.583,9.379,11.985,10.327,5.545,0.125,7.176,7.843,5.699,8.063,11.705,10.301,4.487,5.337,5.618,5.725,2.081,6.038,-2.274,-0.228,-0.653,15.33,5.061,13.559,6.804,2.63,2.184,-0.092,1.27,1.502,9.238,3.28,6.464,2.479,7.075,3.291,2.136,-3.199,-1.156,2.239,2.602,-4.194,0.486],[17.973,19.258,23.129,26.94,23.368,17.848,24.627,22.806,23.76,20.519,17.761,19.406,18.42,20.481,22.421,19.23,15.244,15.157,15.083,15.201,14.61,15.156,14.27,5.827,17.616,19.72,15.451,9.763,18.248,13.731,9.773,4.304,5.964,13.296,11.9,12.498,5.528,12.421,5.895,10.96,8.236,11.412,4.927,6.712,7.845,9.642,4.123,10.238,0.45,5.314,7.24,4.368,2.85,6.799,0.936,3.281,-2.69,-1.223,-0.227,3.472,-1.194,14.892,8.924,2.626,20.753,21.355,25.611,26.308,23.446,19.391,19.283,22.787,17.884,27.39,24.785,17.093,19.868,20.98,16.865,19.397,19.582,21.719,22.93,22.425,21.436,22.39,17.29,17.765,25.339,21.805,17.38,19.477,22.057,21.73,16.227,7.588,19.146,15.296,14.726,17.85,13.355,15.293,16.194,14.617,17.071,14.769,17.376,17.377,21.552,5.732,13.762,19.034,14.377,16.849,11.105,13.863,12.34,8.853,9.291,14.447,15.032,18.161,19.209,17.361,15.429,13.309,7.812,5.241,4.999,12.611,8.467,12.381,4.829,13.962,12.117,4.58,6.075,10.986,10.066,3.576,12.148,9.727,5.344,7.602,14.125,11.27,1.244,6.052,10.668,8.04,9.696,12.113,10.92,5.613,0.36,7.064,7.643,5.778,7.933,11.647,9.693,4.524,5.333,5.825,5.907,1.836,5.526,-2.444,-0.892,-0.826,14.581,4.857,13.704,7.148,2.515,1.696,0.066,1.267,1.755,9.166,3.533,6.67,2.293,7.134,3.21,2.2,-3.209,-1.381,2.198,2.526,-4.291,0.427],[18.256,19.432,23.135,26.813,23.253,17.958,24.527,22.597,23.656,20.427,17.561,19.536,18.453,20.622,22.662,19.077,15.101,15.174,15.223,15.276,14.735,15.097,14.235,5.749,17.61,19.765,15.524,9.912,18.243,13.636,10.089,4.474,6.087,13.257,11.956,12.341,5.558,12.587,5.848,11.084,7.921,11.294,5.06,6.729,7.96,9.532,4.126,10.294,0.432,5.38,7.195,4.233,2.493,6.795,0.927,3.196,-2.93,-1.09,-0.165,3.378,-1.434,14.858,8.848,2.733,20.705,21.23,25.396,26.002,23.622,19.6,19.178,23.07,18.145,26.921,25.152,17.567,19.806,21.028,16.086,19.712,19.525,22.817,23.111,22.564,21.274,22.266,17.368,18.102,25.301,21.451,17.535,19.313,22.44,21.754,16.5,7.494,19.173,14.487,14.976,17.358,13.097,15.352,15.782,14.489,17.081,14.534,17.407,17.368,21.643,5.842,13.75,18.89,14.098,16.83,11.248,13.915,12.464,9.397,10.203,14.76,14.882,18.252,18.778,17.255,15.347,13.727,7.767,5.016,5.125,12.551,8.78,12.588,4.358,14.263,12.302,4.987,6.056,11.385,10.184,3.465,12.242,9.318,5.256,7.527,14.292,10.833,1.274,5.406,10.592,8.114,9.533,12.058,10.824,6.011,0.483,6.976,7.656,5.629,7.746,11.82,9.316,4.473,5.6,5.721,6.279,1.69,5.42,-2.482,-1.372,-0.733,14.902,5.115,13.952,7.153,2.707,1.706,0.166,1.463,1.878,9.245,3.641,6.412,2.229,7.127,3.458,2.148,-3.538,-1.753,1.844,3.495,-4.438,0.504],[18.364,19.734,23.137,26.777,23.285,18.139,24.545,22.485,23.571,20.323,17.39,19.501,18.508,20.767,22.858,18.97,14.933,15.021,15.335,15.387,14.872,15.149,14.24,5.894,17.581,19.836,15.486,10.143,18.227,13.536,10.45,4.394,6.351,13.39,12.142,12.166,5.471,12.704,5.888,11.186,7.757,11.239,5.133,6.814,8.041,9.427,4.01,10.379,0.41,5.281,7.12,4.124,2.221,6.862,0.821,3.125,-3.265,-0.962,-0.172,3.268,-1.384,14.783,8.742,2.812,21.082,20.98,25.495,25.587,23.347,20.044,19.52,22.967,17.9,27.074,25.048,17.224,20.175,20.773,16.042,19.65,19.649,23.205,23.29,22.867,21.401,22.049,16.922,18.42,25.31,21.134,17.01,19.842,22.524,21.699,16.549,7.553,18.912,14.252,14.82,17.479,13.213,15.323,15.798,14.4,16.815,14.277,16.928,17.144,21.526,5.931,13.889,18.709,13.907,16.673,11.366,13.822,12.368,9.895,9.892,14.527,15.043,18.472,18.754,17.463,15.148,13.791,8.131,5.562,5.49,12.277,9.026,12.688,4.396,14.0,12.555,5.016,5.77,11.531,10.233,3.472,12.151,9.684,5.596,7.294,14.357,10.663,1.257,5.664,10.705,8.421,9.762,11.812,10.413,5.915,0.105,7.183,7.56,5.145,7.709,11.892,9.123,4.578,5.776,5.808,6.253,1.521,5.519,-2.222,-1.583,-0.977,15.427,4.791,13.586,6.877,2.917,1.796,0.019,1.248,1.45,8.974,3.556,5.994,1.869,7.06,3.094,1.903,-3.645,-2.03,2.019,3.736,-4.796,0.766],[18.322,20.054,23.135,26.89,23.397,18.285,24.641,22.405,23.548,20.292,17.26,19.567,18.528,20.988,22.799,18.857,14.672,14.844,15.361,15.31,15.05,15.238,14.183,6.216,17.506,19.784,15.49,10.244,18.176,13.542,10.627,4.177,6.707,13.651,12.133,12.044,5.312,12.71,5.904,11.158,7.808,11.285,5.097,7.046,8.213,9.464,3.735,10.441,0.357,5.145,7.103,4.032,2.04,6.886,0.728,3.159,-3.657,-0.811,-0.322,3.164,-1.164,14.68,8.498,2.907,21.634,20.696,25.33,25.642,22.949,20.29,19.409,22.736,18.216,26.787,24.941,16.746,20.298,20.579,16.239,19.393,19.8,23.154,23.201,22.923,21.325,22.172,16.959,17.816,24.945,21.599,17.042,19.469,22.853,21.447,16.588,7.994,18.856,14.717,14.428,17.975,13.346,15.11,16.367,14.487,17.099,14.614,16.952,17.114,21.693,5.756,14.009,18.585,13.907,16.419,11.75,13.699,12.379,9.814,9.944,14.631,15.534,18.74,19.349,17.186,14.795,12.822,8.517,5.328,5.522,12.552,9.427,12.924,4.687,14.385,12.652,4.911,5.609,11.028,10.247,3.532,12.545,10.079,5.532,7.811,14.522,11.145,0.994,5.686,10.561,7.829,9.647,11.897,10.806,5.162,0.102,7.405,7.388,4.613,7.8,11.793,9.095,4.85,5.693,5.806,5.841,1.522,5.333,-1.939,-1.686,-1.168,14.769,4.653,13.887,6.643,3.191,2.007,-0.028,1.446,1.553,9.053,3.273,6.759,1.171,6.884,2.954,1.87,-3.649,-2.056,1.875,3.004,-5.388,0.664],[18.282,20.238,23.027,26.877,23.575,18.331,24.625,22.251,23.531,20.279,17.153,19.421,18.541,21.233,22.502,18.783,14.489,14.776,15.439,15.186,15.302,15.302,14.065,6.458,17.573,19.739,15.415,10.292,18.2,13.615,10.607,3.978,6.878,14.044,12.024,11.708,5.129,12.733,6.059,11.158,7.839,11.663,4.853,7.271,8.395,9.614,3.552,10.552,0.297,5.01,7.009,3.96,1.912,6.88,0.775,3.298,-4.001,-0.741,-0.332,3.145,-0.961,14.489,8.253,2.919,21.198,21.184,25.435,26.187,23.067,19.956,19.425,22.617,18.464,27.076,24.958,16.581,20.589,20.705,16.552,19.506,20.023,23.16,23.267,22.871,21.156,22.036,17.215,17.632,25.493,21.72,17.229,19.229,22.839,21.324,16.75,8.301,19.341,14.365,14.439,17.4,13.458,14.669,16.356,14.614,17.03,14.924,17.383,17.154,21.579,5.952,13.902,18.664,14.477,16.577,11.88,13.848,12.296,9.69,9.807,15.278,15.596,18.849,19.551,17.141,14.531,12.717,8.54,4.685,5.574,13.021,9.266,12.76,4.519,14.323,12.408,4.992,5.907,10.903,10.412,3.651,12.55,10.088,5.772,7.699,14.432,11.597,1.014,5.014,10.597,7.884,9.385,12.114,11.146,5.002,0.158,7.28,7.809,4.462,7.96,11.936,9.264,4.768,5.753,5.676,6.599,1.609,5.104,-2.027,-1.154,-0.952,14.735,4.779,13.444,6.498,3.179,1.842,-0.208,1.442,1.852,8.808,3.255,6.729,0.894,6.631,3.036,1.797,-3.957,-1.983,1.578,2.597,-5.699,0.76],[18.298,20.065,22.797,26.802,23.616,18.346,24.664,22.182,23.496,20.301,17.056,19.303,18.581,21.325,22.135,18.853,14.321,14.848,15.422,15.13,15.555,15.169,14.002,6.548,17.726,19.74,15.297,10.358,18.342,13.662,10.673,3.871,6.923,14.274,12.057,11.391,4.928,12.797,6.006,11.273,7.832,12.066,4.633,7.418,8.378,9.703,3.547,10.786,0.281,4.918,6.956,3.909,1.842,6.814,0.833,3.47,-4.161,-0.653,-0.303,3.22,-0.811,14.255,8.254,2.73,21.329,21.318,25.537,25.861,23.152,19.869,19.172,22.724,18.21,26.91,24.921,16.575,20.805,20.875,16.386,19.742,19.906,23.046,23.452,23.434,21.026,22.08,17.22,17.994,25.375,21.304,17.677,19.593,22.922,21.407,16.804,8.237,19.567,13.966,14.052,16.956,13.718,14.565,16.23,14.672,17.013,14.534,16.873,17.079,21.47,6.526,13.966,18.516,14.05,16.757,11.876,13.642,12.516,9.957,10.286,15.5,14.842,18.61,19.08,17.231,14.637,12.983,8.58,4.738,5.916,12.924,9.287,13.324,4.376,14.655,12.402,5.517,5.239,10.894,10.196,3.41,12.937,10.032,5.984,7.833,14.384,11.656,1.471,5.536,10.819,8.518,9.704,12.003,10.888,5.255,-0.029,7.485,7.929,4.621,8.331,12.33,9.149,4.653,5.238,5.175,7.056,1.471,5.374,-2.33,-0.159,-0.954,14.689,4.964,13.49,6.356,3.233,1.662,0.046,1.137,1.845,8.393,3.02,6.349,1.035,7.003,2.916,2.063,-4.206,-1.987,1.856,3.022,-5.807,0.632],[18.326,19.766,22.795,26.614,23.653,18.302,24.708,22.354,23.492,20.113,16.957,19.603,18.712,21.443,21.907,18.907,14.183,15.1,15.339,15.022,15.666,14.771,14.036,6.567,17.699,19.733,15.11,10.635,18.299,13.747,10.892,3.949,6.988,14.363,12.069,11.259,4.86,12.976,5.886,11.454,7.981,12.279,4.579,7.505,8.28,9.7,3.714,10.97,0.34,4.86,7.098,3.959,1.778,6.585,0.812,3.543,-4.147,-0.635,-0.357,3.338,-0.75,14.157,8.321,2.485,21.334,21.025,25.466,25.586,22.972,20.122,19.36,22.864,18.321,26.392,24.964,16.265,20.276,20.462,15.945,19.712,19.541,22.311,22.904,23.425,20.805,21.976,17.099,17.739,24.922,21.228,17.524,19.558,22.769,21.474,16.574,8.305,19.431,14.064,14.046,17.901,13.983,15.12,15.826,14.521,16.826,14.468,16.785,17.292,21.562,6.656,13.986,18.365,13.933,16.777,12.103,13.167,12.439,10.184,10.129,15.516,14.756,18.75,19.133,16.978,15.011,12.511,8.873,5.294,6.156,12.805,9.806,13.652,4.134,15.058,12.508,5.058,5.091,10.793,10.241,3.22,13.156,10.094,5.887,7.762,14.729,11.79,1.542,5.028,11.039,7.784,9.848,12.045,11.048,4.498,-0.263,7.294,7.928,4.975,8.349,12.672,8.758,4.65,5.464,5.186,6.546,1.329,5.27,-2.173,0.28,-1.043,14.452,4.982,13.174,6.421,3.21,1.382,-0.212,1.382,1.975,8.811,3.02,6.081,1.047,6.998,2.899,2.152,-4.277,-1.485,1.956,2.92,-5.876,0.668],[18.276,19.622,22.723,26.337,23.531,18.184,24.706,22.426,23.451,19.831,16.894,19.731,18.911,21.443,21.785,19.013,14.147,15.313,15.134,14.998,15.648,14.467,14.096,6.587,17.69,19.703,14.891,10.751,18.191,13.963,11.149,4.167,7.069,14.463,11.999,11.078,4.813,13.232,5.858,11.609,8.085,12.285,4.626,7.62,8.173,9.607,4.041,11.231,0.374,4.888,7.25,3.921,1.739,6.352,0.711,3.523,-4.034,-0.712,-0.464,3.265,-0.69,14.165,8.417,2.148,20.71,20.781,25.243,25.324,23.047,20.563,19.768,23.332,18.878,26.932,24.627,16.325,20.245,20.663,15.813,19.714,19.395,21.948,22.908,23.03,20.962,22.098,16.941,18.072,25.591,21.338,17.64,19.632,23.254,21.116,16.88,8.397,19.44,13.89,14.318,17.967,13.964,15.253,15.472,13.963,16.796,14.403,17.0,17.25,21.513,6.058,13.78,18.041,14.109,17.184,12.173,12.993,12.523,10.059,10.55,15.218,15.047,18.588,19.684,16.596,15.205,12.319,8.894,5.624,6.369,12.726,9.808,13.234,4.479,15.103,12.801,4.753,5.771,10.828,10.203,3.208,12.82,9.872,6.349,7.368,14.911,11.966,1.091,4.983,10.676,8.21,9.899,12.377,11.021,3.802,0.092,7.053,7.968,5.126,7.837,12.373,9.052,4.923,5.921,5.645,6.852,1.536,5.352,-1.904,-0.114,-1.071,14.531,5.079,13.101,6.737,3.287,0.849,-0.685,1.341,1.978,8.907,3.081,6.122,0.908,6.564,2.81,2.165,-3.97,-1.65,1.887,2.857,-5.816,0.878],[18.307,19.926,22.652,26.18,23.318,18.124,24.749,22.564,23.375,19.663,16.948,19.625,19.175,21.552,21.642,19.12,14.123,15.191,14.836,14.99,15.6,14.352,14.233,6.596,17.735,19.705,14.727,10.726,18.011,14.158,11.196,4.566,7.279,14.458,11.947,10.813,4.834,13.429,5.881,11.702,8.329,12.147,4.649,7.761,8.137,9.243,4.388,11.362,0.344,4.972,7.329,3.765,1.748,6.238,0.625,3.56,-3.756,-0.641,-0.642,3.146,-0.839,14.275,8.59,1.781,20.753,20.646,25.14,25.39,23.298,20.85,19.801,23.259,18.938,26.856,25.221,16.382,20.323,20.743,15.68,19.693,19.655,22.2,23.016,23.151,20.933,21.893,16.732,18.11,25.3,20.766,17.565,19.789,23.03,20.695,16.376,8.292,19.145,13.887,14.389,17.103,13.997,15.052,15.276,13.282,16.929,13.928,16.963,17.25,21.322,5.941,14.087,17.95,14.027,16.926,12.255,12.603,12.526,9.988,11.117,15.184,15.137,18.479,19.607,16.343,15.439,12.325,8.864,5.427,6.033,12.677,10.058,13.753,4.891,15.254,13.075,4.732,5.776,10.591,10.06,3.466,13.138,9.606,6.153,7.686,14.897,11.886,1.065,5.295,10.422,8.553,10.017,12.638,11.467,3.998,-0.052,6.846,8.242,5.3,7.611,12.828,9.212,5.587,5.628,5.801,7.029,1.382,5.413,-2.168,-0.509,-1.077,14.217,4.963,13.549,6.701,3.394,0.738,-0.596,1.101,1.999,8.813,3.226,6.176,0.96,6.788,3.048,1.821,-3.863,-2.237,1.823,3.061,-5.415,0.561],[18.429,20.185,22.678,26.165,23.234,18.036,24.88,22.677,23.32,19.599,17.039,19.43,19.245,21.673,21.618,19.007,14.093,15.072,14.483,14.955,15.619,14.22,14.305,6.899,17.703,19.698,14.701,10.722,17.84,14.237,11.189,4.901,7.398,14.57,12.04,10.582,4.889,13.473,6.018,11.824,8.533,12.045,4.721,7.823,8.164,8.833,4.495,11.353,0.203,5.097,7.327,3.692,1.822,6.351,0.591,3.668,-3.496,-0.482,-0.868,3.068,-1.155,14.404,8.727,1.728,21.505,20.392,25.179,25.729,23.078,21.136,19.881,23.012,18.435,26.507,25.07,16.254,20.4,21.145,15.911,19.824,19.594,22.424,22.998,22.687,20.736,21.8,16.928,18.092,24.838,20.702,17.653,19.41,23.053,20.648,15.658,8.389,19.106,13.953,14.255,17.314,13.882,14.926,15.442,12.879,16.732,13.923,16.556,17.173,21.329,5.943,14.74,17.856,13.969,16.828,12.146,12.674,12.671,10.285,10.821,15.203,14.92,18.834,19.213,16.403,15.655,12.041,9.022,5.363,5.913,12.513,10.117,13.202,5.03,15.064,12.726,5.135,5.209,9.981,10.238,3.1,12.756,9.259,6.306,7.778,15.122,12.051,1.121,5.25,10.242,8.328,10.181,12.323,11.831,4.035,0.002,6.922,8.257,5.567,7.472,12.939,8.761,5.562,4.807,6.159,7.219,1.216,5.472,-2.168,-0.964,-1.14,14.112,4.509,13.215,7.008,3.478,0.729,-0.295,0.8,2.073,8.651,3.289,5.583,0.972,7.144,2.816,1.819,-3.593,-2.072,1.683,2.721,-5.157,0.727],[18.496,20.3,22.661,26.199,23.339,17.883,24.861,22.867,23.341,19.501,17.136,19.216,19.073,21.888,21.705,18.907,14.127,15.125,14.273,14.912,15.745,14.216,14.23,7.303,17.564,19.635,14.687,10.586,17.806,14.29,11.277,5.12,7.283,14.516,11.971,10.4,4.976,13.395,6.222,11.867,8.331,12.032,4.516,7.793,8.094,8.644,4.421,11.242,-0.061,5.263,7.349,3.719,1.859,6.361,0.492,3.824,-3.426,-0.421,-0.924,2.928,-1.398,14.274,8.871,1.882,21.525,20.321,25.223,26.231,22.759,20.787,19.79,22.925,18.677,27.121,25.02,16.208,20.737,21.135,16.136,19.926,19.37,22.69,23.133,22.556,21.047,22.009,16.72,17.659,25.459,20.929,17.866,19.556,23.245,20.902,15.53,8.876,19.387,13.405,14.248,18.003,14.002,15.011,15.128,12.802,16.605,13.709,16.803,17.1,21.406,6.814,14.737,17.807,13.911,17.029,12.279,12.705,12.484,10.462,10.509,15.154,14.47,18.284,19.563,16.534,15.742,11.815,9.164,5.76,6.279,12.782,10.0,13.614,4.939,15.198,12.52,5.073,5.313,10.154,10.25,3.1,12.802,9.462,6.737,7.808,15.171,12.013,0.772,4.888,9.886,8.749,10.002,12.75,11.955,4.162,-0.213,7.437,8.057,5.307,6.951,12.348,9.08,5.348,4.8,5.966,7.123,1.276,4.986,-1.643,-1.028,-1.12,14.494,4.694,13.652,7.284,3.55,0.708,-0.935,0.689,2.391,8.55,3.362,6.194,1.022,6.925,3.009,1.662,-3.668,-2.122,1.71,2.875,-5.009,0.998],[18.568,20.361,22.736,26.447,23.685,17.785,24.818,22.994,23.42,19.501,17.341,19.02,18.945,22.074,21.808,19.045,14.196,15.279,14.24,14.812,15.816,14.309,14.041,7.651,17.581,19.697,14.646,10.465,17.89,14.223,11.295,5.217,7.049,14.389,11.81,10.42,5.026,13.329,6.341,11.875,8.076,12.14,4.16,7.687,8.186,8.581,4.348,11.208,-0.387,5.297,7.327,3.727,1.9,6.425,0.31,4.096,-3.575,-0.306,-0.933,2.924,-1.573,14.164,9.025,2.019,21.193,20.114,25.197,26.349,22.863,20.68,19.296,23.345,19.183,27.396,25.131,16.385,20.977,21.235,16.034,19.964,19.142,22.579,22.905,22.752,20.961,22.331,16.383,17.065,25.727,20.786,17.536,19.355,23.286,21.222,15.672,9.15,19.022,13.091,14.15,17.298,14.362,14.949,15.015,12.981,16.552,13.862,16.569,17.288,21.471,7.457,14.706,17.332,13.96,16.998,11.904,12.597,12.412,10.11,10.601,15.525,14.432,17.552,19.462,16.526,15.814,11.831,8.928,6.14,6.661,12.578,10.247,13.424,5.007,15.411,12.661,5.171,5.695,10.416,10.106,2.86,13.067,9.851,6.171,8.096,15.002,11.734,0.352,5.273,9.667,7.777,10.233,12.8,11.728,4.216,-0.32,7.185,8.201,5.334,6.788,12.224,8.791,5.641,4.522,5.69,6.647,1.024,4.817,-1.739,-0.978,-1.403,14.359,4.665,13.553,7.529,3.503,0.985,-1.009,0.966,2.684,8.72,3.499,6.72,1.311,7.068,2.75,1.587,-3.684,-2.493,1.509,3.084,-5.166,0.846],[18.603,20.397,22.745,26.849,23.959,17.713,24.81,23.054,23.529,19.501,17.475,18.702,18.98,22.152,21.896,19.216,14.233,15.35,14.3,14.688,15.678,14.374,13.851,7.978,17.58,19.73,14.739,10.507,17.805,14.147,11.169,5.187,6.921,14.163,11.653,10.486,5.118,13.221,6.428,11.902,7.705,12.303,3.93,7.539,8.353,8.465,4.588,11.32,-0.734,5.319,7.298,3.62,1.955,6.424,-0.023,4.322,-3.725,-0.273,-0.823,3.021,-1.715,14.139,9.235,2.016,21.2,19.996,25.295,26.42,23.237,20.955,19.385,23.701,19.434,27.228,24.995,16.798,21.023,21.264,16.257,19.792,19.251,22.389,22.909,23.721,20.918,22.495,16.347,17.052,25.203,20.68,17.776,19.05,23.567,21.314,15.306,9.07,19.132,12.964,14.219,17.5,13.961,15.408,14.874,13.428,16.602,14.212,16.861,17.405,21.45,6.86,15.029,17.29,13.891,17.081,11.981,12.793,12.093,10.139,10.536,15.426,14.951,17.651,19.414,16.373,15.382,12.113,8.733,5.956,6.105,11.895,10.075,13.256,5.152,15.037,13.099,5.197,5.599,10.35,9.851,2.488,12.749,9.958,6.33,7.978,14.917,11.938,0.279,5.325,9.885,8.102,10.239,12.836,11.846,3.752,-0.488,7.064,8.076,5.553,6.947,12.555,8.342,5.802,4.62,5.933,6.716,0.774,5.138,-1.813,-1.262,-1.644,13.977,4.684,12.873,7.382,3.326,0.657,-0.667,0.934,3.063,9.042,3.454,6.738,1.41,6.891,2.523,1.734,-3.516,-2.474,1.302,2.836,-5.224,0.887],[18.423,20.394,22.704,27.253,24.176,17.594,24.699,23.02,23.707,19.461,17.606,18.555,19.099,22.227,21.993,19.262,14.338,15.453,14.406,14.711,15.38,14.469,13.72,8.062,17.589,19.723,14.892,10.498,17.878,14.112,10.938,5.068,6.8,13.963,11.481,10.562,5.138,13.161,6.537,11.943,7.519,12.304,3.884,7.523,8.621,8.445,4.836,11.459,-1.061,5.376,7.131,3.448,1.911,6.391,-0.408,4.406,-3.697,-0.273,-0.628,3.021,-1.78,13.949,9.235,1.87,21.464,20.076,25.544,26.478,23.567,21.525,19.878,23.56,19.524,27.814,25.335,17.128,20.703,21.196,16.44,19.611,19.38,22.53,22.828,23.764,20.911,22.624,16.826,17.213,25.353,20.845,17.83,18.344,23.767,21.505,14.276,9.366,19.372,12.672,14.282,18.474,13.39,15.283,14.277,14.114,16.413,14.097,16.561,17.542,21.388,6.788,15.031,17.836,13.604,17.392,12.236,12.884,11.832,10.165,10.581,15.199,15.079,17.897,19.719,16.837,15.186,12.009,8.737,5.734,5.741,12.249,9.599,13.17,4.785,14.477,12.379,5.286,5.608,10.397,9.628,2.417,13.191,10.067,6.169,7.865,15.021,12.262,0.301,5.64,9.794,8.075,10.227,12.511,12.23,3.411,-0.677,7.107,8.109,5.448,6.922,12.792,8.597,6.246,4.615,6.018,7.044,0.701,5.345,-1.553,-1.38,-1.921,14.27,4.867,13.047,7.584,3.687,0.426,-0.428,1.013,3.122,9.081,3.545,6.458,1.464,6.589,2.742,1.732,-3.568,-2.455,1.128,2.7,-5.123,1.05],[18.118,20.34,22.68,27.67,24.225,17.529,24.768,22.894,23.944,19.568,17.844,18.569,19.243,22.344,22.102,19.229,14.523,15.501,14.403,14.748,15.108,14.512,13.725,8.075,17.803,19.674,15.137,10.334,18.003,14.074,10.63,4.791,6.788,13.897,11.519,10.678,5.203,12.991,6.6,11.931,7.644,12.192,3.975,7.567,8.777,8.457,4.977,11.586,-1.231,5.525,6.81,3.301,1.856,6.314,-0.719,4.409,-3.508,-0.132,-0.383,2.967,-1.797,13.887,9.03,1.686,21.479,19.651,25.833,27.021,23.603,21.844,20.348,22.932,19.212,28.279,24.857,17.04,20.66,21.234,16.471,19.429,19.396,22.372,22.958,23.685,20.711,22.814,16.85,16.821,25.542,20.778,17.63,18.279,23.572,21.681,13.859,9.628,18.767,12.854,14.156,18.255,13.529,14.817,13.998,14.283,16.444,13.953,16.498,17.627,21.446,7.517,14.689,17.767,13.747,17.362,11.722,13.103,12.119,9.703,10.806,15.017,14.785,18.055,19.537,17.08,15.465,12.097,8.526,5.832,6.176,12.357,9.595,13.176,5.0,14.706,12.324,5.253,5.831,10.342,9.769,2.675,12.866,10.244,5.941,8.012,14.685,11.751,-0.216,5.129,9.529,7.866,10.035,12.608,12.239,3.427,-0.88,8.176,8.247,5.798,6.83,12.826,8.268,6.297,4.922,6.147,6.513,0.574,5.014,-1.452,-1.473,-2.237,14.373,4.625,12.885,7.553,3.72,0.234,-0.009,1.262,3.011,8.755,3.541,6.169,1.154,6.912,2.913,1.552,-3.834,-2.465,0.666,2.827,-4.955,1.474],[17.855,20.273,22.772,28.188,24.238,17.554,24.886,22.84,24.132,19.703,17.985,18.335,19.425,22.507,22.166,19.098,14.718,15.32,14.215,14.727,14.931,14.517,13.912,8.286,17.955,19.664,15.275,10.143,18.059,14.038,10.374,4.502,6.933,13.833,11.579,10.823,5.316,12.772,6.557,11.848,7.676,11.849,4.09,7.587,8.889,8.436,5.02,11.696,-1.373,5.667,6.713,3.194,1.613,6.321,-0.907,4.376,-3.274,0.172,-0.112,2.86,-1.831,13.964,8.767,1.577,21.408,19.814,26.018,27.599,23.808,21.861,20.37,22.773,18.293,27.997,24.784,16.981,20.722,20.88,16.641,19.343,19.249,22.541,23.246,23.901,20.784,22.811,16.494,16.825,25.426,21.006,17.83,18.677,23.051,21.436,14.633,9.54,18.466,13.103,14.055,18.034,13.433,15.327,14.212,14.266,16.676,14.063,16.624,17.472,21.533,7.615,14.588,17.675,13.876,17.13,11.551,13.048,12.228,9.226,10.515,14.591,15.201,18.433,19.169,16.896,15.535,12.331,8.768,5.407,6.118,12.044,9.62,12.926,4.922,14.884,12.798,4.967,5.491,10.459,9.77,2.656,12.527,10.304,6.558,8.165,14.531,11.138,-0.501,5.488,9.51,8.24,10.097,12.698,11.813,3.383,-0.919,9.097,7.918,6.456,6.753,13.213,8.427,5.95,5.44,6.114,5.758,0.737,4.719,-1.367,-1.439,-2.585,14.326,4.402,13.074,7.206,3.58,0.494,-0.437,1.831,2.949,8.665,3.76,6.254,0.711,5.963,2.455,1.61,-3.72,-2.53,0.368,2.647,-4.97,1.422],[17.626,20.221,22.906,28.416,24.202,17.572,24.852,22.899,24.242,19.882,17.89,17.964,19.577,22.582,22.08,18.918,14.918,15.227,13.989,14.744,14.832,14.572,14.036,8.512,17.948,19.768,15.219,10.017,18.108,13.932,10.167,4.434,6.905,13.738,11.543,11.096,5.411,12.788,6.476,11.698,7.68,11.438,4.007,7.534,9.003,8.478,5.057,11.876,-1.438,5.763,6.49,3.081,1.272,6.438,-0.876,4.322,-3.11,0.399,-0.21,2.746,-1.84,14.153,8.768,1.519,21.321,20.303,26.033,27.759,24.143,21.761,19.928,23.046,18.036,28.575,25.306,16.926,20.706,21.033,16.774,19.212,19.207,23.339,23.369,24.376,21.141,22.869,16.264,16.53,25.692,21.445,18.164,18.814,23.634,21.389,15.706,9.604,19.12,13.861,14.496,18.263,13.031,14.953,14.613,13.953,16.478,14.253,16.754,17.126,21.452,7.712,14.434,17.724,13.612,17.206,11.869,12.898,12.205,9.129,9.77,14.248,15.162,18.441,19.732,17.132,15.301,12.2,8.92,5.414,6.33,12.277,9.333,12.8,4.969,14.179,12.08,4.906,5.947,10.649,9.659,2.469,12.525,10.757,6.426,7.638,14.759,11.418,-0.348,6.093,9.88,7.904,9.936,12.514,11.567,3.456,-0.757,8.401,8.032,6.203,6.95,12.982,8.987,6.147,5.875,6.046,6.345,0.823,4.047,-0.989,-1.548,-2.743,14.504,4.499,13.038,7.108,3.551,0.549,-0.518,1.751,2.987,8.536,3.966,6.265,0.439,5.495,2.328,1.432,-3.288,-2.38,0.209,2.59,-4.799,1.77],[17.479,20.127,23.013,28.324,24.221,17.621,24.942,22.991,24.301,20.082,17.76,17.76,19.698,22.658,21.958,18.92,15.15,15.17,14.145,14.783,14.707,14.706,13.968,8.713,17.795,19.937,15.126,9.859,18.138,13.779,9.965,4.64,6.804,13.513,11.49,11.323,5.729,12.913,6.31,11.514,7.7,11.451,3.802,7.403,9.002,8.629,5.107,12.017,-1.276,5.821,6.347,2.928,1.053,6.582,-0.762,4.224,-3.017,0.632,-0.567,2.76,-1.739,14.354,9.087,1.532,21.279,20.414,26.204,27.591,24.145,21.531,19.506,23.229,18.118,28.393,24.726,16.755,20.949,21.299,16.43,18.838,18.934,23.459,23.157,24.048,21.146,22.824,16.15,16.468,25.133,21.275,18.115,17.969,23.854,21.378,15.368,10.132,18.957,14.203,14.712,18.266,13.355,14.704,13.893,14.227,16.498,14.341,16.855,17.137,21.622,7.777,13.854,18.269,13.607,17.169,11.444,13.219,12.273,9.213,9.682,14.748,14.972,18.606,20.042,16.871,15.2,12.673,8.61,5.788,5.7,11.904,9.121,12.716,5.276,14.434,12.09,4.82,5.961,10.437,9.809,2.187,12.534,10.58,5.823,7.542,14.729,10.728,-0.413,5.619,10.224,8.33,9.684,12.247,11.668,3.385,-0.682,7.481,8.377,5.623,7.091,13.02,8.741,6.864,6.127,6.25,6.619,0.046,3.97,-1.028,-1.895,-2.461,14.493,4.389,13.445,7.571,3.296,0.061,-0.247,1.115,2.973,9.038,3.982,6.348,0.631,5.21,2.104,1.369,-3.029,-2.083,0.265,2.793,-4.825,1.946],[17.37,20.12,23.017,28.28,24.179,17.671,24.909,23.035,24.402,20.017,17.653,17.694,19.76,22.746,21.781,19.096,15.311,15.116,14.283,14.843,14.682,14.91,13.936,8.92,17.73,20.004,15.048,9.701,18.279,13.532,9.799,4.824,6.672,13.286,11.407,11.424,5.981,12.913,5.963,11.367,7.774,11.58,3.568,7.203,8.906,8.873,5.327,12.224,-1.082,5.778,6.325,2.704,0.828,6.662,-0.742,4.037,-2.988,0.8,-0.714,2.842,-1.718,14.426,9.454,1.589,21.035,20.257,26.273,27.427,23.646,21.931,19.83,22.89,18.141,28.227,24.68,16.553,20.824,21.139,16.345,18.691,19.019,22.863,22.875,24.308,21.124,22.782,16.185,16.552,25.754,21.216,18.011,17.953,23.419,21.381,15.53,10.28,18.561,14.346,14.285,17.684,12.954,15.086,13.274,14.941,16.625,14.073,17.159,17.384,21.664,7.81,14.181,18.377,13.837,16.955,10.96,13.542,12.243,8.926,10.404,15.189,14.915,18.761,20.114,16.621,14.769,12.628,8.45,5.703,5.614,11.213,8.743,12.56,4.562,14.434,13.028,4.803,5.925,10.87,9.769,2.16,12.421,10.153,5.626,7.341,14.634,10.861,-0.312,5.916,10.038,8.596,9.583,12.347,12.145,2.767,-0.221,7.349,8.233,5.439,7.183,13.376,8.572,7.187,6.149,6.185,5.93,-0.275,4.135,-0.74,-1.608,-2.367,14.569,4.522,13.843,8.023,3.218,0.223,-0.485,1.096,2.646,9.265,4.044,6.106,0.609,5.28,2.294,1.788,-3.509,-2.149,0.653,2.66,-4.63,2.001],[17.286,20.127,22.849,28.295,24.08,17.813,24.999,22.899,24.442,19.89,17.546,17.722,19.837,22.776,21.613,19.263,15.506,15.169,14.339,14.904,14.714,14.991,13.973,9.057,17.74,19.935,14.999,9.708,18.518,13.336,9.616,4.775,6.482,13.152,11.329,11.535,6.077,12.886,5.628,11.471,7.816,11.734,3.428,6.97,8.818,8.994,5.49,12.65,-0.877,5.757,6.266,2.553,0.631,6.538,-0.776,3.803,-3.013,1.007,-0.718,3.052,-1.837,14.458,9.696,1.603,20.929,19.863,26.329,27.37,23.768,22.134,20.133,22.648,17.681,28.667,24.64,16.624,20.515,21.157,16.828,18.919,19.154,22.256,23.33,24.387,21.059,22.751,16.256,16.732,25.831,21.373,17.984,18.367,23.562,20.848,15.692,9.987,18.696,14.387,13.93,17.666,12.705,15.009,13.211,15.045,16.647,14.386,16.787,17.929,21.725,7.95,14.194,17.705,14.0,16.97,10.9,13.463,12.37,8.882,10.143,14.768,14.41,18.455,20.15,16.919,14.518,12.536,8.366,5.349,6.105,11.376,8.45,12.338,5.016,13.572,12.368,4.619,6.076,11.057,9.53,1.999,12.562,10.306,5.748,6.617,14.793,11.62,0.152,6.673,10.22,7.811,9.586,12.228,12.442,2.566,-0.125,7.717,7.843,5.821,7.196,13.504,9.285,6.814,5.701,5.943,6.043,0.347,4.313,-0.679,-1.025,-2.414,14.486,4.79,13.601,8.398,3.402,0.602,-0.616,1.047,2.326,9.469,3.826,6.218,0.315,5.449,1.885,1.723,-3.764,-2.383,0.577,2.995,-4.511,2.081],[17.212,20.022,22.84,28.444,24.007,17.917,25.161,22.741,24.466,19.831,17.592,17.892,19.857,22.754,21.429,19.34,15.693,15.225,14.302,14.913,14.603,15.019,14.097,9.046,17.677,19.864,15.11,9.633,18.485,13.374,9.508,4.522,6.474,12.898,11.262,11.548,6.227,12.765,5.337,11.636,7.784,12.016,3.458,6.714,8.736,8.875,5.525,13.067,-0.5,5.756,6.244,2.506,0.542,6.299,-0.878,3.544,-3.017,1.179,-0.642,3.228,-1.976,14.342,9.782,1.682,21.231,20.159,26.333,27.296,24.175,22.244,20.132,22.718,17.331,28.406,24.625,16.544,20.693,21.039,16.602,18.736,19.319,22.138,23.441,23.54,20.962,22.671,16.539,17.115,25.547,20.988,18.023,18.415,23.814,20.855,15.778,10.23,18.719,14.826,14.178,17.527,13.067,14.906,13.066,14.713,16.768,14.681,16.937,17.756,21.503,8.092,13.72,18.068,13.869,17.052,10.862,13.511,12.485,8.861,9.753,14.106,14.761,18.326,19.819,16.855,14.755,13.27,8.258,5.484,5.632,11.926,8.447,12.38,5.322,13.834,12.081,3.994,6.079,10.716,9.519,2.169,13.005,10.496,5.542,6.601,14.672,11.207,0.394,6.316,10.502,8.042,9.836,12.275,12.903,2.722,-0.363,8.09,7.668,6.651,7.519,13.989,9.384,6.9,5.255,5.84,5.868,0.353,4.102,-0.184,-1.572,-2.435,14.792,4.806,13.053,8.799,3.206,0.47,-0.506,1.122,2.238,9.477,4.12,5.917,-0.145,5.672,1.965,1.974,-3.647,-2.488,0.366,3.194,-4.295,2.629],[17.155,19.986,22.973,28.656,23.919,18.001,25.24,22.687,24.479,19.772,17.685,18.137,19.828,22.719,21.407,19.284,15.777,15.256,14.18,14.899,14.371,15.12,14.216,8.973,17.549,19.77,15.394,9.495,18.315,13.461,9.518,4.232,6.48,12.771,11.283,11.552,6.308,12.669,5.132,11.694,7.634,12.125,3.681,6.492,8.745,8.785,5.706,13.47,-0.117,5.775,6.219,2.528,0.384,6.066,-1.055,3.295,-2.905,1.354,-0.473,3.287,-2.208,14.211,9.757,1.869,21.109,19.488,26.335,28.284,24.105,22.245,19.803,22.454,17.517,28.128,25.082,16.548,20.733,21.016,16.361,18.577,19.574,22.3,22.978,23.619,21.042,22.799,16.433,16.831,25.991,21.177,18.083,18.509,24.28,21.006,15.736,10.539,18.684,15.254,15.046,17.625,12.714,14.864,12.742,14.783,16.577,14.508,16.834,18.204,21.267,8.417,14.003,18.742,14.113,17.193,10.736,13.629,12.688,8.642,8.878,14.231,15.25,18.896,19.902,17.061,14.919,12.798,8.184,5.362,5.202,12.165,8.747,12.451,4.586,13.982,12.397,3.412,6.569,11.082,9.459,2.159,12.856,10.42,5.257,6.574,14.358,11.235,0.446,5.918,10.241,8.237,9.817,12.56,13.559,2.907,0.139,8.014,7.531,6.149,7.144,14.061,8.928,6.985,4.995,5.568,5.333,0.073,3.771,-0.007,-1.742,-2.65,14.48,5.041,12.924,8.719,2.978,0.468,-0.281,1.345,1.678,9.198,4.012,5.344,0.004,6.134,2.025,2.467,-3.362,-2.496,0.346,2.98,-4.594,3.005],[17.201,20.081,22.991,29.117,23.871,18.075,25.349,22.716,24.457,19.65,17.658,18.233,19.772,22.69,21.582,19.332,15.872,15.263,13.969,14.873,14.241,15.275,14.344,9.125,17.518,19.854,15.479,9.198,18.314,13.474,9.548,4.009,6.346,12.93,11.341,11.654,6.258,12.651,4.848,11.634,7.439,11.98,3.903,6.35,8.858,8.599,5.6,13.807,0.175,5.7,6.284,2.635,0.165,5.902,-1.31,3.075,-2.766,1.357,-0.298,3.305,-2.399,14.169,9.599,2.102,20.937,19.747,26.379,28.698,23.875,21.908,19.454,22.273,17.852,28.544,24.452,16.344,20.825,20.963,16.809,18.541,19.047,22.578,22.996,24.145,21.248,22.691,16.367,16.761,26.095,21.204,18.142,18.765,24.369,21.125,15.456,10.249,18.607,15.281,15.244,17.95,12.311,14.949,12.668,15.085,16.736,14.316,16.701,18.757,21.598,8.016,14.271,18.61,13.749,17.017,10.447,13.802,12.684,8.798,8.022,14.561,14.856,18.543,20.117,17.434,14.802,12.357,8.059,4.904,5.245,11.869,8.542,12.413,4.571,13.907,12.184,3.951,6.231,10.933,9.409,2.362,12.487,10.245,5.009,6.545,14.53,12.011,0.87,6.726,9.849,7.563,9.872,12.355,13.516,3.765,0.661,7.433,7.283,5.832,7.065,14.301,8.909,7.279,4.459,5.6,4.833,0.449,3.71,0.167,-1.971,-2.725,14.552,5.157,13.092,8.673,2.397,0.569,-0.169,1.546,1.748,9.484,3.772,5.456,0.429,6.255,2.016,2.301,-2.823,-2.496,0.116,3.414,-4.341,2.852],[17.248,20.137,23.044,29.549,23.968,18.069,25.346,22.702,24.502,19.621,17.584,18.24,19.758,22.63,21.758,19.5,16.028,15.274,13.704,14.786,14.309,15.369,14.451,9.242,17.615,20.144,15.327,8.829,18.286,13.495,9.491,4.173,6.167,13.1,11.259,11.579,6.15,12.594,4.787,11.457,7.351,11.788,4.1,6.321,8.909,8.501,5.487,13.874,0.443,5.625,6.336,2.76,0.072,5.832,-1.518,2.936,-2.52,1.269,-0.394,3.099,-2.425,14.243,9.492,2.27,21.26,19.919,26.21,28.256,23.888,21.437,19.513,22.486,17.666,28.936,24.797,16.274,21.128,21.061,17.021,18.695,18.719,22.889,23.348,23.52,21.277,22.604,16.352,17.066,26.13,21.13,18.238,19.037,23.922,21.356,14.968,10.217,19.134,15.134,15.027,17.664,12.567,14.753,12.965,15.386,16.353,14.755,16.795,18.79,21.991,7.818,14.152,18.466,13.437,17.101,10.376,13.88,12.682,9.027,8.925,14.184,14.821,18.404,19.966,17.041,14.697,13.116,8.005,4.914,5.465,11.419,8.025,12.704,4.946,14.093,12.19,3.971,5.652,10.695,9.582,2.237,12.69,10.279,4.785,6.329,14.515,12.189,1.354,6.752,9.819,7.73,9.58,11.956,13.781,4.347,0.773,7.45,6.979,5.744,6.812,14.593,9.021,7.417,4.157,5.722,4.926,0.517,4.096,-0.449,-2.426,-3.121,14.758,4.867,13.22,8.43,1.943,1.033,0.013,1.239,1.783,9.266,3.953,5.513,-0.377,6.329,2.307,1.843,-2.968,-2.707,-0.197,3.734,-4.117,2.732],[17.203,20.068,23.075,29.726,24.099,18.009,25.344,22.684,24.534,19.631,17.585,18.414,19.81,22.533,21.845,19.789,16.286,15.406,13.53,14.487,14.378,15.265,14.438,9.136,17.722,20.423,15.173,8.813,18.21,13.66,9.417,4.418,6.066,13.199,11.119,11.643,5.928,12.469,4.924,11.189,7.39,11.68,4.175,6.248,8.867,8.477,5.625,13.877,0.797,5.618,6.372,2.902,-0.014,5.795,-1.74,2.834,-2.377,1.066,-0.361,2.768,-2.378,14.389,9.36,2.353,21.25,19.547,26.377,28.897,23.783,21.4,20.0,22.512,17.413,29.247,24.497,16.463,20.932,20.961,16.45,18.694,18.992,23.144,23.661,23.047,21.167,23.087,16.303,17.019,25.718,20.979,18.58,19.383,23.563,21.344,14.572,10.427,19.295,15.201,14.714,17.865,12.391,14.845,13.075,15.281,16.149,15.044,17.036,18.543,22.26,8.334,13.907,18.596,13.532,17.434,10.244,13.627,12.548,8.685,9.429,14.826,14.847,18.492,19.986,16.951,14.665,12.848,7.805,5.318,5.278,11.391,8.204,12.525,4.933,14.064,12.293,3.191,6.12,10.661,9.21,2.393,12.762,10.691,4.834,6.152,14.283,11.323,0.97,6.082,10.038,8.111,9.354,11.734,14.579,4.303,0.975,7.933,7.038,5.586,6.971,14.145,8.574,7.241,4.063,5.708,5.064,-0.161,4.423,-0.649,-2.228,-2.949,14.36,4.406,13.106,8.328,2.018,1.497,0.046,1.234,1.591,8.974,3.844,5.456,-0.655,6.218,2.945,1.726,-3.188,-2.779,-0.055,3.635,-3.75,2.194],[17.091,19.93,23.09,29.784,24.173,17.989,25.148,22.597,24.497,19.595,17.614,18.617,19.987,22.456,21.794,19.864,16.578,15.493,13.479,14.208,14.493,15.046,14.235,9.057,17.812,20.563,15.176,9.108,18.233,13.865,9.359,4.525,6.05,13.076,10.947,11.676,5.764,12.446,4.979,10.93,7.286,11.614,4.219,6.173,8.949,8.533,5.668,13.893,1.204,5.648,6.444,3.213,-0.318,5.674,-1.733,2.851,-2.347,0.913,-0.143,2.502,-2.253,14.311,9.182,2.365,20.983,19.925,26.408,29.547,24.124,21.719,19.938,22.393,17.507,29.162,24.756,16.489,20.816,20.627,16.524,18.473,19.267,23.333,23.383,23.759,21.216,23.218,16.59,17.207,25.729,21.028,18.812,19.331,23.394,21.266,14.827,10.349,19.353,15.489,14.532,18.121,12.697,15.048,13.189,15.547,16.083,14.381,16.8,18.777,22.373,8.099,14.107,18.611,13.274,17.301,10.356,13.614,12.343,8.084,9.127,15.089,14.447,17.993,20.759,16.786,14.919,12.695,7.817,5.563,5.04,10.824,8.775,12.454,4.895,14.251,11.863,3.513,6.248,10.687,9.176,2.602,12.104,10.657,4.884,6.35,14.363,10.307,0.287,5.605,9.811,8.114,9.071,11.595,14.98,3.845,0.836,8.075,7.269,6.19,7.136,14.202,8.501,7.091,4.168,5.625,5.395,0.184,4.536,-0.752,-2.27,-2.947,14.661,4.129,13.269,8.479,2.408,1.409,-0.229,1.735,1.714,9.046,3.67,5.383,-0.208,6.089,2.73,1.255,-2.949,-2.295,-0.104,3.623,-3.669,1.96],[17.0,19.941,23.092,29.911,24.193,18.058,25.021,22.409,24.454,19.604,17.727,18.683,20.227,22.404,21.631,19.741,16.821,15.411,13.559,14.064,14.694,14.829,13.968,8.98,17.947,20.593,15.286,9.418,18.153,13.999,9.251,4.509,6.073,12.868,10.855,11.576,5.681,12.52,5.099,10.717,7.078,11.283,4.203,6.145,9.078,8.497,5.728,13.972,1.46,5.687,6.515,3.534,-0.506,5.586,-1.542,3.084,-2.25,0.951,-0.061,2.356,-2.085,14.09,9.024,2.401,21.361,19.882,26.319,28.686,23.988,22.196,19.648,22.383,17.507,28.854,24.907,16.477,20.609,20.588,16.884,18.636,19.345,23.244,23.187,24.799,21.348,23.001,16.68,17.133,25.598,21.317,18.704,19.32,23.618,21.067,14.955,10.32,19.096,15.887,14.199,17.535,12.898,14.568,13.305,15.878,15.783,14.301,16.675,18.701,22.162,7.868,14.929,18.095,13.195,17.287,10.984,13.608,12.207,8.529,8.487,14.745,14.667,18.229,20.918,17.079,15.052,13.109,7.863,5.355,5.198,10.743,8.877,12.292,5.191,13.948,11.858,3.646,5.793,10.776,9.205,3.102,12.319,10.463,4.87,6.655,14.313,11.113,0.096,5.85,10.023,7.653,8.908,11.495,14.653,3.685,1.034,7.836,7.055,6.12,7.092,14.398,8.912,7.042,4.202,5.63,5.256,0.627,4.758,-0.848,-2.451,-2.934,14.759,4.082,13.055,8.164,2.325,1.054,0.151,1.751,1.622,8.975,4.087,5.111,-0.392,6.029,2.56,0.822,-3.07,-2.381,-0.158,3.485,-3.665,2.393],[17.009,20.157,23.068,29.927,24.307,18.191,25.066,22.241,24.465,19.613,17.735,18.641,20.365,22.324,21.351,19.507,17.026,15.209,13.784,14.043,14.777,14.704,13.801,9.016,17.95,20.295,15.545,9.564,18.026,14.162,9.399,4.438,6.171,12.784,10.947,11.471,5.614,12.569,5.264,10.56,7.124,11.066,4.245,6.088,9.12,8.411,5.677,14.022,1.441,5.826,6.327,3.741,-0.447,5.656,-1.353,3.288,-2.202,1.059,-0.012,2.346,-2.028,13.83,8.735,2.51,21.443,19.559,26.288,28.509,23.504,22.384,20.074,22.472,17.184,29.265,24.717,16.796,20.849,20.398,16.551,18.672,19.291,22.757,23.403,24.372,21.167,22.955,16.618,16.932,25.421,21.109,18.705,19.405,24.102,21.057,14.922,10.468,19.059,15.968,13.876,17.778,12.988,14.288,13.057,15.758,15.745,14.488,16.654,18.656,21.992,8.136,15.379,18.097,12.808,16.909,10.639,13.019,11.88,8.755,8.853,14.775,14.935,18.447,20.689,17.218,15.009,12.675,7.971,5.055,5.247,11.442,8.136,11.726,5.167,13.72,12.096,3.926,5.822,10.602,9.205,3.316,11.919,10.587,5.025,6.937,14.435,11.557,0.414,6.245,10.026,7.378,8.811,11.217,14.064,3.674,1.443,7.586,6.945,5.701,7.176,14.765,8.11,7.259,4.058,5.394,5.054,0.244,5.475,-0.292,-2.0,-2.73,14.135,4.042,12.677,8.102,2.612,0.766,0.532,1.413,2.004,8.653,4.097,5.24,-1.19,6.12,3.083,1.144,-2.852,-2.742,0.132,3.376,-3.62,2.611],[17.012,20.336,23.003,30.01,24.423,18.379,25.114,22.135,24.427,19.489,17.526,18.52,20.393,22.278,21.054,19.386,17.055,15.054,13.986,14.076,14.809,14.729,13.67,9.188,17.914,19.982,15.626,9.59,17.862,14.329,9.649,4.367,6.241,12.614,11.142,11.157,5.644,12.753,5.414,10.352,7.082,11.062,4.458,6.029,9.044,8.32,5.419,14.107,1.28,5.931,6.1,3.959,-0.396,5.83,-1.221,3.404,-2.184,1.208,0.027,2.51,-2.056,13.515,8.434,2.631,21.361,19.424,26.247,28.866,23.785,22.142,20.586,22.357,17.317,29.257,24.591,16.836,21.138,20.299,16.23,18.709,19.148,21.879,23.67,23.423,21.176,23.278,16.52,16.823,25.622,20.924,18.614,19.434,24.044,21.415,15.235,10.918,19.009,16.186,13.87,18.115,13.124,14.856,12.797,15.78,15.698,14.168,16.601,18.641,21.798,8.379,15.069,18.293,12.67,16.934,10.984,13.097,11.815,8.652,9.355,14.706,15.486,18.053,20.159,17.406,15.206,12.611,7.958,5.495,5.15,11.567,8.296,12.17,4.758,13.82,12.226,4.059,5.385,10.64,9.185,3.617,11.788,10.437,4.676,6.916,14.6,10.679,1.217,6.252,10.039,8.089,8.498,11.236,13.677,3.672,1.063,7.964,7.02,5.888,7.348,14.185,8.287,7.066,4.2,5.596,4.837,-0.14,5.715,-0.206,-1.604,-2.569,14.231,4.113,12.547,8.155,2.622,0.98,0.159,1.706,2.261,7.931,4.35,5.756,-1.396,6.035,3.242,1.166,-2.83,-2.607,0.437,3.651,-3.53,2.544],[17.065,20.387,22.884,30.134,24.458,18.513,25.115,22.062,24.341,19.267,17.277,18.454,20.422,22.164,20.707,19.408,17.075,15.085,14.129,14.069,14.855,14.658,13.604,9.311,17.883,19.815,15.576,9.81,17.602,14.357,9.798,4.384,6.147,12.658,11.115,10.977,5.686,12.958,5.435,10.303,7.16,11.031,4.784,6.118,9.02,8.289,5.26,14.134,1.139,6.074,5.918,4.027,-0.424,5.99,-1.063,3.39,-2.106,1.236,0.03,2.688,-2.106,13.424,8.14,2.751,21.769,19.21,26.128,29.069,24.231,21.95,20.593,22.114,17.725,28.946,24.676,16.419,21.133,20.549,16.225,18.48,19.041,21.447,23.915,23.687,21.211,23.386,16.87,16.968,25.759,20.885,18.573,18.644,23.798,21.286,15.453,11.133,18.789,16.21,13.904,17.905,13.066,14.93,12.92,15.781,15.939,14.274,16.003,18.733,21.502,8.594,15.067,18.521,13.259,16.965,10.896,13.404,11.792,8.543,9.211,14.872,15.88,17.919,20.044,17.24,15.572,12.325,7.957,5.407,5.488,11.425,9.111,11.457,4.87,13.408,12.456,4.317,5.336,10.389,9.156,3.935,12.099,10.508,4.732,7.157,14.821,10.591,1.292,6.129,9.953,7.635,8.523,11.072,13.585,3.969,1.073,7.473,6.483,5.612,7.21,14.141,8.943,7.035,4.32,6.118,4.761,0.155,5.819,-0.366,-1.87,-2.473,14.319,4.269,12.35,7.871,2.777,1.226,0.04,1.844,1.924,8.017,4.293,5.587,-0.71,5.927,4.154,1.044,-2.625,-2.284,0.496,3.757,-3.831,2.683],[17.124,20.481,22.815,30.189,24.489,18.619,25.162,22.032,24.412,19.136,17.052,18.555,20.457,21.998,20.396,19.481,17.094,15.191,14.202,14.169,14.899,14.456,13.497,9.305,17.956,19.797,15.407,10.038,17.29,14.382,9.922,4.382,6.121,12.591,10.892,10.954,5.613,13.007,5.436,10.386,7.229,11.05,5.009,6.324,8.987,8.42,5.246,14.147,1.159,6.174,5.807,4.278,-0.354,5.91,-0.96,3.329,-2.08,1.153,-0.084,2.745,-2.151,13.582,7.923,2.886,21.704,19.318,26.283,29.221,23.905,21.869,20.182,22.255,17.663,29.297,24.454,16.06,20.673,20.427,16.198,18.826,19.147,21.366,23.187,24.347,20.942,23.189,16.842,16.689,25.638,20.61,18.721,19.144,23.166,20.514,15.347,11.043,18.987,16.4,13.806,17.632,13.06,14.207,13.134,15.909,15.884,14.032,15.989,18.725,21.352,8.517,15.303,18.329,13.132,16.932,11.109,13.023,11.603,8.77,9.171,15.151,15.285,18.022,20.417,17.101,15.224,12.087,8.036,5.012,5.67,11.633,9.191,11.949,4.915,13.387,12.259,4.197,5.741,10.562,9.105,3.51,11.698,10.344,5.075,7.146,14.856,10.93,0.764,6.218,10.183,7.626,8.788,11.489,13.732,4.286,0.646,7.484,6.818,5.349,7.281,14.878,8.447,6.802,4.365,6.169,4.654,0.574,5.582,-0.391,-1.912,-2.413,14.251,4.378,12.408,7.356,2.855,1.163,0.503,1.56,1.985,8.163,4.336,5.692,-0.282,6.058,3.736,1.582,-1.995,-2.685,0.517,3.717,-3.322,2.475],[17.18,20.486,22.656,30.267,24.565,18.619,25.249,22.013,24.509,19.17,16.908,18.729,20.396,21.784,20.064,19.574,17.144,15.198,14.041,14.206,15.001,14.158,13.306,9.138,18.006,19.963,15.152,10.071,17.051,14.457,10.034,4.256,6.217,12.693,10.803,10.887,5.656,12.909,5.376,10.572,7.199,11.002,4.935,6.682,9.006,8.823,5.249,14.265,1.142,6.239,5.772,4.428,-0.211,5.825,-0.798,3.41,-2.01,0.949,-0.229,2.793,-2.104,13.734,7.754,2.912,21.589,19.365,26.386,29.154,23.819,21.147,19.77,22.293,17.272,29.438,24.595,16.073,20.952,20.215,15.595,18.794,19.205,21.252,22.853,24.561,20.954,23.628,16.873,17.073,25.533,20.598,18.964,19.431,22.473,20.558,15.065,10.883,19.148,16.465,13.663,17.935,13.178,14.418,13.737,15.717,15.88,13.822,16.383,18.81,21.349,8.32,15.506,18.133,12.765,16.91,10.885,12.624,11.508,9.353,9.821,15.331,14.409,17.719,20.852,16.89,15.22,12.119,7.988,5.145,5.146,11.452,8.75,12.025,4.762,13.986,12.006,4.051,5.305,10.817,8.999,3.305,12.094,10.494,5.27,6.965,14.709,10.4,0.374,5.77,10.036,8.202,9.153,11.918,13.995,4.482,0.837,7.703,7.315,5.556,7.428,15.076,8.115,6.769,4.324,5.685,4.956,0.872,5.863,-0.522,-1.742,-2.461,14.489,4.471,12.779,7.542,2.468,1.4,0.493,1.322,2.093,8.198,4.702,5.554,-0.77,5.531,3.832,1.78,-2.247,-2.94,0.61,3.419,-3.191,2.536],[17.115,20.452,22.461,30.339,24.715,18.588,25.308,21.954,24.559,19.23,16.813,18.828,20.363,21.549,19.788,19.689,17.091,15.228,13.766,14.167,15.145,13.847,13.169,8.85,17.995,20.184,15.01,10.019,17.084,14.569,10.145,4.198,6.134,12.927,10.829,10.76,5.685,12.805,5.191,10.808,7.207,10.882,4.978,6.997,9.228,9.072,5.282,14.473,1.083,6.276,5.759,4.55,-0.219,5.733,-0.449,3.417,-2.051,0.841,-0.312,2.863,-2.032,13.879,7.762,2.816,21.6,19.314,26.453,29.422,23.821,20.946,19.439,22.312,17.596,29.223,25.003,16.445,21.013,20.183,15.341,18.584,18.7,21.014,23.123,24.262,20.628,23.998,16.931,17.279,26.017,20.82,19.011,19.242,22.051,20.658,14.964,10.634,18.917,16.404,13.629,17.725,13.278,14.806,13.66,15.674,15.691,13.421,15.708,19.0,21.9,8.595,15.895,18.462,12.8,17.024,11.086,12.775,11.364,9.189,10.057,15.41,14.338,17.131,20.43,16.634,15.549,12.393,7.891,5.295,5.08,11.41,9.101,12.008,4.048,14.08,11.866,4.117,5.176,10.411,9.021,3.374,11.975,10.345,5.551,6.879,14.482,10.941,-0.047,6.151,10.279,7.47,9.119,11.653,13.871,4.604,1.198,7.955,7.417,5.522,7.382,14.507,8.453,7.012,4.359,5.947,4.925,0.667,6.114,-0.631,-1.566,-2.202,14.516,4.522,12.695,7.408,2.338,1.256,-0.036,1.214,2.267,8.263,4.546,5.341,-0.629,5.573,4.316,1.152,-2.307,-2.318,0.723,3.469,-3.487,2.387],[17.151,20.473,22.195,30.416,24.881,18.579,25.361,21.95,24.554,19.254,16.786,18.839,20.356,21.363,19.558,19.613,17.012,15.308,13.623,14.117,15.288,13.711,13.061,8.741,17.916,20.345,14.972,10.012,17.153,14.631,10.446,4.055,5.899,13.122,10.908,10.633,5.719,12.598,5.048,10.968,7.24,10.867,5.135,7.173,9.46,9.164,5.131,14.558,0.98,6.329,5.782,4.75,-0.206,5.647,-0.127,3.337,-2.186,0.946,-0.413,2.814,-1.926,13.751,7.89,2.767,21.327,19.338,26.359,29.496,24.075,21.246,19.884,22.393,17.84,29.276,24.625,16.041,20.742,20.106,15.669,18.525,18.824,20.709,23.217,24.429,20.658,23.488,16.692,17.019,25.89,20.572,18.722,19.214,21.563,20.141,14.42,10.566,19.166,16.668,13.625,17.694,13.431,15.039,13.241,15.535,15.698,13.041,15.898,19.199,22.265,8.219,15.856,18.436,12.858,17.085,11.34,12.369,11.425,8.976,9.436,15.904,14.548,16.965,20.122,16.762,15.31,12.245,7.848,5.099,5.24,11.139,9.577,12.519,4.653,14.032,11.992,3.923,5.529,10.067,9.129,3.906,11.554,10.161,5.722,6.541,14.392,10.892,-0.468,6.61,10.414,7.864,9.184,11.606,13.926,4.174,0.969,7.934,7.408,5.375,7.574,14.347,8.613,6.861,4.326,6.745,4.999,0.127,6.283,-0.715,-1.41,-1.547,14.404,4.219,12.633,7.274,2.568,1.0,-0.151,1.357,2.111,8.523,4.584,5.459,-0.592,5.774,4.746,1.292,-2.378,-2.147,1.08,3.571,-3.33,2.197],[17.316,20.41,21.983,30.463,24.974,18.595,25.264,22.034,24.514,19.162,16.855,18.797,20.273,21.171,19.422,19.523,16.978,15.395,13.512,14.137,15.516,13.746,13.052,8.694,17.831,20.377,15.026,9.97,17.369,14.427,10.713,4.043,5.691,13.38,10.949,10.495,5.876,12.384,4.943,11.134,7.344,10.799,5.234,7.286,9.626,9.165,4.998,14.515,0.761,6.577,5.892,5.054,-0.276,5.668,0.08,3.267,-2.309,1.112,-0.481,2.606,-1.898,13.361,8.066,2.79,21.364,19.364,26.414,29.431,24.152,21.845,20.543,22.111,17.702,29.33,24.7,15.887,21.159,20.223,15.573,18.842,18.986,20.469,23.346,24.445,20.435,23.764,16.813,17.078,25.7,20.546,18.431,19.409,21.094,19.936,14.129,10.492,19.242,16.988,13.515,17.585,13.568,14.948,13.287,15.264,16.007,13.189,16.228,18.622,22.152,7.86,15.586,18.262,12.982,17.217,10.798,12.326,11.246,9.689,9.054,16.047,14.579,16.866,20.273,16.858,15.467,12.036,7.457,4.452,4.836,11.172,9.252,12.545,4.756,13.967,11.975,3.956,5.399,10.25,9.039,4.153,11.732,10.892,5.751,6.83,14.253,10.323,-0.533,6.421,10.942,8.454,9.291,11.53,13.785,4.058,0.499,8.087,7.536,4.917,8.242,14.819,8.447,6.573,4.267,6.681,5.455,0.725,6.324,-0.722,-0.932,-1.397,14.023,4.249,12.594,8.077,2.353,1.005,-0.33,1.19,2.096,8.174,4.643,5.259,-1.193,5.35,4.561,1.389,-2.701,-2.419,1.558,3.153,-3.697,2.223],[17.528,20.384,21.871,30.532,24.983,18.608,25.105,22.117,24.528,19.037,17.0,18.793,20.09,21.076,19.522,19.594,16.791,15.551,13.464,14.224,15.606,13.869,13.056,8.622,17.727,20.256,15.085,9.769,17.515,14.151,10.753,4.024,5.469,13.532,10.886,10.437,5.941,12.285,4.99,11.263,7.508,10.615,5.304,7.262,9.843,9.259,4.928,14.405,0.612,6.804,6.036,5.309,-0.316,5.604,0.181,3.224,-2.55,1.218,-0.609,2.456,-1.912,13.079,8.279,2.786,21.521,19.547,26.428,29.684,23.72,22.215,20.722,21.868,18.016,29.238,24.889,16.672,21.06,20.412,15.838,18.885,18.942,20.361,23.233,24.682,20.348,24.199,16.729,16.958,25.512,20.374,18.339,19.423,20.462,20.284,14.298,10.465,19.072,16.89,13.425,17.327,13.816,14.514,13.26,15.159,15.885,13.615,16.221,18.461,21.922,7.973,15.026,18.277,12.982,17.239,11.169,12.466,11.383,10.263,9.323,16.284,14.843,16.78,20.74,16.851,15.553,11.782,7.214,5.063,4.503,11.574,9.489,12.478,4.148,14.41,11.359,3.809,5.64,10.427,8.932,4.172,11.521,11.116,5.72,6.751,14.09,10.974,-0.857,6.43,10.99,8.04,9.694,11.066,13.646,4.528,0.089,8.455,7.825,4.936,8.428,15.006,8.149,6.512,4.305,6.527,5.489,0.487,6.279,-0.56,-1.173,-1.197,13.91,4.27,11.957,8.209,2.331,0.941,-0.457,1.029,2.069,8.563,5.243,5.06,-1.434,5.954,4.022,1.089,-2.617,-2.237,1.799,2.953,-3.528,2.212],[17.782,20.483,21.953,30.619,25.051,18.548,25.007,22.141,24.501,18.96,17.31,18.719,19.926,21.038,19.823,19.922,16.51,15.517,13.56,14.262,15.656,14.1,13.004,8.614,17.585,20.105,15.144,9.689,17.412,14.024,10.841,3.881,5.461,13.547,10.724,10.452,5.91,12.325,5.08,11.302,7.466,10.473,5.371,7.133,9.931,9.318,4.844,14.232,0.486,6.993,6.14,5.385,-0.31,5.471,0.147,3.206,-2.65,1.32,-0.745,2.404,-1.977,13.027,8.574,2.798,21.052,19.425,26.359,29.735,23.849,21.907,20.9,22.252,18.086,29.441,24.766,16.455,21.23,20.294,16.303,19.242,18.731,20.102,22.714,24.672,20.148,23.955,16.708,17.16,25.55,20.029,18.343,19.182,19.616,20.545,14.417,10.454,19.218,16.621,13.399,17.381,13.792,14.704,12.927,14.94,15.78,13.809,16.247,18.648,21.548,8.113,14.978,18.382,12.893,17.457,11.388,12.541,11.54,10.029,9.146,16.677,15.004,17.083,20.818,16.757,15.033,11.735,7.222,5.094,4.204,11.622,9.691,12.797,4.275,15.075,11.351,3.81,5.989,9.914,8.801,3.81,11.085,11.108,5.891,6.596,14.046,10.943,-0.975,7.004,11.066,8.442,10.119,10.906,13.853,4.952,0.412,8.446,7.4,5.42,8.03,14.718,8.642,6.247,4.801,6.678,5.446,-0.211,6.273,-0.507,-1.185,-0.742,13.802,3.775,11.866,7.571,2.313,1.044,-0.954,1.049,2.168,8.584,5.401,5.362,-1.127,5.64,3.718,1.007,-2.798,-2.329,1.953,3.183,-3.347,1.722],[17.913,20.51,21.975,30.638,25.064,18.432,24.99,22.254,24.498,18.888,17.576,18.608,19.91,20.929,20.19,20.167,16.41,15.453,13.678,14.25,15.742,14.376,12.831,8.605,17.462,19.908,15.214,9.659,17.186,14.159,10.908,3.714,5.533,13.647,10.696,10.421,5.952,12.496,5.134,11.31,7.473,10.321,5.327,6.955,9.858,9.215,4.827,14.021,0.472,7.187,5.981,5.34,-0.425,5.411,0.16,3.197,-2.629,1.404,-0.963,2.317,-2.012,13.097,8.756,2.9,21.807,19.112,26.336,29.469,24.078,21.315,20.708,22.665,18.071,29.539,24.87,16.893,21.291,20.327,16.258,19.519,18.761,19.727,22.882,24.571,20.266,23.907,16.713,17.08,25.679,20.313,18.136,19.306,19.261,20.809,14.444,10.239,19.691,16.095,13.822,17.301,13.795,14.988,13.038,14.888,15.891,14.061,16.139,18.96,21.554,7.972,14.804,18.23,12.797,17.296,10.829,13.274,11.208,9.603,9.381,16.553,14.994,17.177,19.886,16.725,15.118,11.973,7.291,4.538,4.482,11.079,9.922,12.668,4.165,15.05,11.872,3.835,5.911,9.753,8.827,3.669,11.444,10.912,5.477,6.973,14.282,10.484,-1.183,7.162,10.594,8.413,10.022,11.079,13.73,4.929,0.631,8.295,7.286,5.018,7.875,14.782,8.502,6.052,5.136,7.084,5.072,0.097,6.412,-0.405,-1.056,-0.499,13.89,3.947,12.363,8.281,2.5,0.993,-0.994,0.856,2.171,8.767,5.358,5.365,-0.838,5.645,3.724,0.883,-2.664,-2.472,1.882,3.234,-3.862,1.64],[17.793,20.568,22.017,30.567,24.977,18.295,25.03,22.566,24.644,18.877,17.694,18.563,20.002,20.753,20.579,20.226,16.304,15.431,13.71,14.246,15.825,14.734,12.812,8.517,17.352,19.717,15.213,9.574,16.783,14.388,10.861,3.589,5.483,13.836,10.784,10.44,5.893,12.727,5.168,11.364,7.492,10.34,5.237,6.778,9.71,9.0,4.733,13.922,0.367,7.333,5.702,5.27,-0.528,5.346,0.297,3.181,-2.599,1.596,-1.088,2.273,-1.881,13.316,8.867,2.954,21.678,19.533,26.526,29.474,23.769,21.25,20.231,22.83,18.393,29.356,24.368,17.263,21.277,20.673,16.268,19.213,18.867,19.623,23.067,24.579,20.204,23.908,16.377,17.152,25.506,20.095,18.227,19.343,19.193,20.746,14.644,9.971,19.503,15.837,13.592,17.639,13.853,14.92,13.53,14.895,15.904,13.957,16.07,19.454,21.531,7.808,14.734,17.692,12.972,17.115,11.371,13.488,11.191,9.528,9.127,16.047,14.681,17.578,19.305,17.141,16.005,12.088,7.308,4.384,5.138,11.274,9.839,13.192,3.962,13.919,12.077,4.182,5.75,10.05,9.044,3.901,11.246,10.632,5.467,6.777,14.398,10.171,-1.059,7.329,10.612,8.463,9.743,11.095,12.877,4.365,0.971,8.173,7.275,4.775,7.552,14.752,8.128,6.494,5.538,7.26,5.022,0.554,6.747,-0.166,-1.744,-0.496,14.021,4.03,12.346,8.359,2.52,1.133,-0.767,0.446,1.803,9.224,5.598,5.229,-0.924,5.323,3.744,0.869,-2.872,-2.211,1.98,3.118,-3.679,1.969],[17.649,20.685,22.093,30.435,24.865,18.186,24.948,22.895,24.778,18.91,17.897,18.569,20.05,20.504,20.916,20.241,16.175,15.378,13.678,14.261,15.746,14.839,13.017,8.361,17.346,19.619,15.144,9.52,16.481,14.641,10.714,3.572,5.382,13.924,10.87,10.598,5.855,12.762,5.038,11.419,7.505,10.45,5.091,6.713,9.548,8.951,4.599,13.95,0.372,7.408,5.441,5.203,-0.593,5.212,0.399,3.14,-2.561,1.804,-1.195,2.355,-1.746,13.51,9.039,2.94,20.864,19.525,26.616,29.499,23.845,21.283,20.238,23.317,18.133,29.194,24.054,16.964,21.265,21.029,16.982,19.322,18.938,19.75,23.389,24.437,20.503,23.825,16.328,16.903,25.403,20.11,18.5,18.742,19.549,20.896,14.93,9.71,19.617,15.639,13.159,17.505,13.884,14.892,13.689,15.051,15.773,14.421,15.583,19.346,21.461,7.736,14.878,17.534,13.238,16.983,11.251,13.368,11.596,9.738,9.395,15.737,14.72,17.502,19.55,16.939,15.579,11.834,7.281,4.376,4.825,11.72,9.696,13.594,3.593,14.368,12.269,4.303,5.527,10.071,9.014,4.208,11.605,10.882,5.362,6.917,14.555,10.365,-1.339,7.158,10.094,8.21,9.721,11.398,12.302,3.918,1.207,8.219,6.951,4.709,7.453,14.594,8.714,6.118,5.778,6.914,5.43,0.558,6.616,0.168,-1.557,-0.475,14.354,3.935,12.573,8.137,2.361,1.304,-1.121,0.36,2.071,8.448,5.769,5.222,-0.935,5.162,3.965,1.16,-3.058,-2.051,2.021,3.087,-3.499,2.28],[17.63,20.726,22.239,30.334,24.819,18.219,24.737,23.175,24.772,18.774,18.069,18.537,20.09,20.241,21.113,20.337,16.088,15.395,13.822,14.303,15.543,14.887,13.269,8.185,17.464,19.617,15.179,9.638,16.33,14.737,10.556,3.66,5.308,14.042,10.836,10.703,5.848,12.684,4.93,11.448,7.615,10.629,4.985,6.744,9.47,8.916,4.373,14.015,0.394,7.298,5.236,5.113,-0.654,5.038,0.427,3.236,-2.592,1.923,-1.338,2.459,-1.691,13.653,9.093,2.975,21.479,19.041,26.485,29.359,24.084,21.694,20.268,23.347,17.707,29.167,24.572,17.319,20.906,21.335,17.147,19.206,18.978,20.192,23.403,24.372,20.606,23.732,16.492,16.675,25.312,20.217,18.385,18.848,19.696,21.233,14.841,9.445,19.529,15.37,13.224,17.407,13.728,14.621,13.327,15.146,16.003,14.564,15.355,19.117,21.135,7.62,15.218,17.911,13.001,17.228,11.075,13.168,11.727,9.279,8.845,15.665,15.133,16.884,19.952,16.42,15.424,11.96,7.013,4.528,4.374,11.67,9.501,13.131,3.597,14.827,11.785,3.582,5.68,10.235,8.983,3.734,11.782,10.888,5.086,6.586,14.385,10.623,-1.377,7.668,9.74,7.905,9.945,11.481,12.407,4.082,1.265,8.123,7.011,5.226,7.334,14.642,8.693,5.638,5.772,6.743,5.305,0.281,6.87,0.418,-0.613,-0.469,14.283,4.333,12.446,8.491,2.255,1.091,-1.565,0.496,1.967,8.425,6.094,4.96,-0.79,5.683,4.007,1.35,-2.52,-2.304,2.287,3.195,-3.877,2.767],[17.665,20.756,22.289,30.284,24.848,18.449,24.58,23.317,24.701,18.459,18.196,18.497,20.093,20.091,21.218,20.358,16.059,15.522,13.986,14.386,15.393,14.83,13.408,7.977,17.681,19.688,15.269,9.649,16.531,14.721,10.349,3.789,5.285,14.048,10.693,10.758,5.979,12.532,4.767,11.414,7.667,10.771,4.869,6.848,9.425,8.794,4.219,14.08,0.38,7.141,5.292,5.061,-0.628,4.866,0.554,3.229,-2.676,1.953,-1.385,2.632,-1.633,13.41,9.155,3.012,22.022,19.085,26.565,28.819,24.156,21.422,20.239,23.253,17.926,29.516,24.042,17.833,20.507,21.506,16.798,18.946,18.923,20.726,23.415,24.705,20.677,23.524,16.614,16.937,25.009,19.894,18.278,19.612,19.043,21.443,14.595,9.046,19.724,15.47,14.128,17.362,13.496,15.025,13.257,14.987,15.991,14.736,15.494,19.455,20.672,7.878,15.368,18.128,13.082,17.025,11.471,13.277,11.785,9.109,8.999,15.62,14.962,15.929,20.146,16.956,15.823,12.277,6.996,4.56,4.245,11.498,9.288,13.387,4.179,15.043,11.308,3.511,6.021,10.444,8.962,3.167,11.543,10.684,5.525,6.384,14.177,10.726,-1.423,7.545,10.103,8.476,10.111,11.465,12.403,4.505,0.905,7.829,7.263,4.964,7.06,14.545,8.552,5.691,5.441,7.049,4.728,0.279,6.603,0.464,-0.669,-0.684,14.007,4.397,12.287,8.28,2.935,1.209,-1.556,0.344,1.967,9.426,5.635,5.213,-0.818,4.855,4.052,1.486,-2.452,-2.232,2.071,3.261,-4.143,2.361],[17.723,20.811,22.271,30.104,24.968,18.72,24.488,23.267,24.737,18.27,18.169,18.553,20.022,19.925,21.283,20.365,16.07,15.621,13.946,14.524,15.373,14.804,13.554,7.951,17.844,19.779,15.331,9.734,16.752,14.735,10.152,3.897,5.297,14.052,10.436,10.861,6.169,12.343,4.643,11.317,7.754,10.747,4.746,7.014,9.347,8.793,4.135,14.056,0.224,6.985,5.4,4.885,-0.605,4.777,0.707,3.269,-2.812,1.925,-1.395,2.839,-1.695,13.031,9.271,3.143,22.165,18.974,26.582,28.783,24.169,21.007,20.431,23.575,17.827,29.837,24.025,17.824,20.728,21.429,16.842,19.309,19.16,21.062,23.386,24.72,20.468,23.51,16.938,17.251,24.741,19.447,18.256,20.127,18.569,21.279,15.183,8.879,19.485,15.833,14.803,17.994,13.467,15.169,14.064,15.142,15.64,14.516,16.023,19.635,21.199,7.367,15.092,18.341,13.017,17.55,11.405,13.194,11.984,9.147,8.981,15.568,15.007,15.879,19.793,17.137,15.409,12.32,7.117,4.514,4.487,11.072,9.107,13.162,4.008,15.046,11.689,3.789,6.386,10.165,8.523,2.878,11.723,10.355,5.967,6.419,13.955,10.886,-1.464,7.061,10.128,8.601,10.1,11.336,12.546,4.739,0.841,7.733,7.84,4.463,7.25,14.345,9.051,5.631,4.537,7.211,4.829,0.433,6.451,0.181,-0.882,-0.664,14.086,4.527,12.062,8.467,2.768,1.427,-1.392,0.448,1.973,9.074,5.236,4.875,-0.789,4.211,4.165,1.718,-2.767,-1.902,1.943,3.129,-3.811,1.674],[17.727,20.876,22.216,30.022,25.037,18.946,24.497,23.164,24.844,18.237,18.051,18.739,19.889,19.783,21.302,20.34,16.189,15.82,13.991,14.532,15.411,14.955,13.784,8.044,18.006,19.888,15.366,9.712,16.915,14.584,10.051,3.758,5.463,13.936,10.065,11.086,6.367,12.204,4.646,11.233,7.903,10.755,4.656,7.216,9.193,8.866,3.973,14.071,0.093,6.747,5.424,4.688,-0.566,4.66,0.865,3.338,-2.847,1.76,-1.329,2.96,-1.75,12.904,9.365,3.295,22.098,18.973,26.579,28.848,24.491,20.364,20.628,23.685,18.027,28.994,24.001,17.035,21.479,21.36,17.144,19.361,19.829,21.036,23.281,24.302,20.451,24.165,17.148,17.169,25.424,19.339,18.325,19.366,18.636,21.183,15.029,8.744,19.538,15.9,15.245,18.175,13.718,15.078,14.311,14.983,15.809,14.329,15.795,18.997,21.68,7.58,15.245,18.561,13.08,17.388,11.187,13.388,12.391,9.081,8.792,15.298,15.344,16.66,19.916,17.007,15.338,12.114,7.335,4.833,4.901,10.638,9.139,12.974,3.669,14.811,11.855,3.583,6.63,10.46,8.114,2.972,11.635,10.078,5.754,6.297,13.808,10.566,-1.584,6.727,10.179,8.314,9.704,10.933,12.452,4.422,0.341,7.678,8.068,4.181,7.389,14.498,9.271,5.753,4.13,7.11,5.085,0.314,5.642,0.076,-0.975,-0.752,13.912,4.778,11.642,8.426,2.433,1.502,-1.487,0.427,2.27,8.999,4.805,4.463,-0.874,4.558,3.982,1.858,-3.289,-2.239,2.253,3.165,-3.743,1.953],[17.725,21.033,22.106,29.889,25.075,19.174,24.688,23.159,24.919,18.378,17.845,18.786,19.844,19.675,21.308,20.255,16.428,15.894,14.088,14.494,15.437,15.242,13.965,8.178,18.124,20.015,15.381,9.47,17.004,14.391,10.024,3.505,5.884,13.75,9.846,11.389,6.403,12.062,4.627,11.083,7.882,10.742,4.634,7.419,8.919,8.947,3.845,14.12,0.016,6.466,5.26,4.451,-0.586,4.556,0.921,3.422,-2.829,1.595,-1.298,3.073,-1.763,12.868,9.447,3.305,22.11,19.0,26.83,29.21,24.76,20.327,20.452,23.177,18.077,28.591,24.215,17.009,21.119,21.34,16.914,18.955,20.143,20.782,23.096,24.593,20.381,24.005,17.368,17.409,25.782,19.557,18.134,18.718,18.685,21.184,14.999,9.034,19.963,15.492,15.101,17.692,13.575,15.039,13.435,15.298,15.435,14.731,15.733,18.82,21.728,7.54,15.161,18.912,13.429,17.904,10.959,13.692,12.806,9.09,9.049,15.062,15.311,16.76,19.97,17.257,15.06,12.781,7.655,4.502,4.647,10.912,9.061,12.967,3.526,14.778,11.372,3.425,6.935,10.659,7.966,3.104,11.535,10.412,5.616,6.378,14.008,10.194,-1.733,7.409,10.426,8.527,9.604,10.557,12.499,3.982,-0.246,7.555,7.773,4.115,7.631,15.111,9.205,5.484,4.438,6.882,5.366,-0.161,5.596,-0.032,-1.175,-0.341,13.924,4.834,11.648,8.159,2.553,1.594,-1.627,0.626,2.24,9.099,4.911,4.623,-0.774,5.024,3.336,1.807,-3.639,-2.487,2.442,3.515,-3.944,2.188],[17.737,21.088,22.011,29.778,25.039,19.386,24.908,23.176,24.975,18.603,17.658,18.705,19.874,19.605,21.299,20.283,16.678,15.986,14.113,14.481,15.333,15.564,14.053,8.242,18.16,20.038,15.526,9.243,16.96,14.203,9.953,3.293,6.181,13.619,9.916,11.673,6.469,11.927,4.693,10.814,7.77,10.712,4.599,7.566,8.736,9.078,3.862,14.17,-0.145,6.244,5.205,4.271,-0.698,4.544,0.853,3.504,-2.863,1.349,-1.493,3.178,-1.806,12.908,9.459,3.25,22.43,19.453,26.797,29.017,24.604,20.556,20.345,23.174,17.49,28.875,24.723,17.257,20.647,21.407,16.68,18.761,19.97,20.327,23.207,24.682,20.372,23.659,17.68,18.043,25.44,19.823,18.09,18.539,18.999,21.303,15.158,9.274,19.39,15.936,15.173,17.782,13.64,15.401,13.33,15.805,15.307,15.3,16.038,19.31,21.57,7.642,14.92,18.783,12.994,17.838,10.832,14.119,12.241,9.113,9.166,15.555,15.254,16.433,20.075,17.408,14.621,13.317,8.044,4.423,5.393,10.983,9.121,12.783,3.494,14.825,10.923,3.473,7.2,10.835,8.062,3.337,11.507,10.112,5.831,6.105,13.588,10.758,-1.865,7.856,10.624,8.324,9.535,10.15,12.656,3.966,0.257,7.119,8.029,4.165,7.729,15.248,9.418,5.416,4.645,6.889,5.264,0.066,5.571,0.277,-1.346,-0.08,13.7,4.797,11.943,8.37,2.642,1.377,-1.493,0.248,2.258,8.951,4.642,4.736,-0.591,4.355,2.756,1.948,-2.904,-2.409,2.348,3.428,-4.198,1.878],[17.655,21.071,22.126,29.718,24.91,19.499,25.097,23.15,25.026,18.741,17.653,18.637,19.968,19.536,21.199,20.471,16.909,16.141,14.143,14.384,15.304,15.935,14.125,8.26,18.132,20.003,15.655,9.168,16.863,14.011,9.949,3.212,6.296,13.529,10.101,11.87,6.633,11.726,4.687,10.562,7.707,10.903,4.533,7.654,8.562,9.162,3.98,14.212,-0.298,6.126,5.22,4.11,-0.68,4.564,0.686,3.618,-2.868,1.065,-1.8,3.214,-1.928,13.073,9.449,3.121,22.685,19.566,26.883,28.356,24.621,20.94,20.427,23.441,17.677,28.966,24.224,16.715,21.154,21.328,16.732,19.156,19.77,20.086,23.192,24.703,20.322,23.385,17.663,17.933,25.996,19.989,18.201,18.717,18.955,21.334,14.882,9.214,19.513,16.73,14.964,17.845,13.411,15.401,14.101,15.568,15.515,15.336,16.205,19.419,21.435,7.643,15.096,18.253,12.775,17.864,10.926,14.171,12.268,9.024,8.685,15.806,15.92,15.999,20.139,17.411,14.614,13.371,8.139,4.293,5.753,10.534,9.064,12.58,3.472,14.538,10.66,3.49,7.304,10.949,8.287,2.859,11.88,10.082,6.159,6.324,13.405,10.457,-1.937,7.798,10.767,7.961,9.177,9.936,12.876,4.091,0.501,7.028,8.471,4.42,7.956,14.902,9.369,5.675,4.163,6.816,5.499,-0.15,5.501,0.214,-1.046,-0.276,13.574,4.853,11.816,8.138,2.9,1.377,-1.694,-0.185,2.23,9.332,4.273,4.987,-1.31,4.75,2.754,1.854,-2.099,-2.292,2.335,3.02,-4.062,1.892],[17.637,21.19,22.21,29.603,24.694,19.441,25.243,23.107,25.237,18.675,17.713,18.623,20.117,19.591,20.998,20.658,17.08,16.229,14.218,14.332,15.268,16.109,14.102,8.253,18.115,19.915,15.757,9.1,16.763,14.049,9.988,3.258,6.193,13.451,10.118,12.045,6.842,11.505,4.72,10.342,7.594,11.176,4.252,7.723,8.385,9.162,4.083,14.266,-0.456,6.07,5.406,4.009,-0.796,4.644,0.552,3.816,-2.813,0.827,-1.99,3.233,-1.957,13.265,9.474,3.036,22.86,19.499,26.978,28.276,24.241,20.707,20.59,23.212,18.135,28.803,24.928,16.642,20.91,21.253,17.1,18.938,19.847,20.192,23.194,24.884,20.435,22.984,17.624,17.522,25.86,19.763,18.334,19.127,18.508,20.909,14.94,9.033,20.001,16.808,15.465,17.938,13.44,15.546,14.309,16.079,15.805,15.278,16.132,19.327,21.579,7.35,15.03,17.841,12.966,18.183,10.792,14.615,12.838,9.06,8.499,15.326,16.268,15.672,20.172,17.506,14.597,13.452,7.954,4.027,5.476,11.048,9.162,12.524,3.425,14.487,10.991,3.812,7.334,10.961,8.356,2.533,11.994,9.985,6.27,6.611,13.136,10.742,-2.12,7.407,10.765,7.989,8.641,10.301,12.832,4.149,0.631,7.086,8.486,4.149,8.152,15.041,9.146,5.83,4.314,6.586,5.478,-0.505,5.208,-0.118,-1.368,-0.889,13.945,4.85,11.964,8.043,3.251,1.117,-1.949,-0.137,2.424,9.424,4.272,4.66,-1.354,4.81,3.008,1.76,-1.938,-2.628,1.968,3.309,-3.811,1.807],[17.61,21.333,22.186,29.588,24.506,19.277,25.392,22.991,25.427,18.411,17.78,18.708,20.173,19.633,20.786,20.612,17.169,16.294,14.287,14.603,15.18,16.117,14.244,8.226,18.136,19.872,15.786,9.053,16.669,14.11,10.066,3.271,5.948,13.442,10.199,12.211,6.966,11.416,4.827,10.189,7.376,11.283,3.94,7.766,8.256,9.091,4.044,14.403,-0.571,5.96,5.651,3.93,-1.001,4.722,0.43,4.059,-2.757,0.596,-1.959,3.26,-1.997,13.464,9.518,3.023,23.191,19.511,27.201,28.964,24.254,20.125,20.699,23.146,18.078,28.192,24.755,17.213,20.871,21.254,17.168,18.825,19.898,20.546,23.324,24.752,20.627,23.053,17.449,17.466,25.722,19.538,18.321,19.317,18.704,20.262,15.472,9.083,19.817,16.463,15.483,18.047,13.53,15.647,13.591,16.121,15.612,15.503,15.762,19.387,21.386,7.471,15.274,17.773,13.238,18.091,10.76,14.904,12.541,9.276,8.254,14.921,16.032,16.16,20.19,17.44,14.907,13.179,7.804,4.388,5.148,11.257,9.459,12.341,3.438,14.556,11.031,4.009,7.309,11.356,8.378,2.238,11.776,9.715,6.227,6.579,13.271,11.641,-2.152,7.316,10.765,7.975,8.493,10.27,12.776,3.69,0.527,6.788,8.149,4.159,8.898,14.986,8.898,5.676,5.178,6.482,5.414,-0.829,5.159,-0.223,-1.318,-0.959,14.006,4.733,12.368,8.729,3.798,1.15,-1.745,-0.413,2.496,9.1,4.384,4.478,-0.478,4.965,3.289,1.852,-1.829,-2.796,1.693,3.512,-3.788,1.769],[17.614,21.466,22.202,29.756,24.491,19.048,25.448,22.884,25.471,18.095,17.98,18.785,20.05,19.577,20.566,20.418,17.074,16.319,14.276,15.018,15.15,16.172,14.398,8.24,18.139,19.773,15.658,9.112,16.672,14.241,10.195,3.225,5.713,13.357,10.479,12.32,6.956,11.416,4.94,10.154,7.225,11.333,3.762,7.748,8.054,9.103,3.746,14.48,-0.603,5.882,5.821,3.883,-1.163,4.886,0.286,4.301,-2.717,0.392,-1.852,3.289,-2.09,13.53,9.592,3.048,23.255,19.319,27.322,28.709,24.848,20.173,20.874,22.912,17.483,28.505,24.005,17.046,21.491,21.15,17.045,18.791,19.727,20.92,23.23,24.468,20.786,23.517,17.244,17.907,26.191,19.031,18.169,19.217,19.092,20.623,15.048,9.275,19.969,16.328,15.223,17.919,13.471,15.846,13.514,16.195,15.306,15.513,15.261,19.24,21.503,7.478,15.087,18.244,13.72,18.212,10.624,14.387,12.479,9.335,8.549,14.836,15.738,17.04,20.231,17.261,14.982,13.303,7.495,4.624,4.815,11.349,9.71,12.46,3.123,14.598,11.247,3.768,7.496,11.843,8.804,2.23,12.139,9.13,6.318,6.659,13.033,11.573,-2.223,7.888,10.532,7.682,8.363,10.061,12.924,3.393,0.102,6.325,8.073,4.385,9.065,15.336,8.952,5.469,5.005,6.517,5.655,-0.641,5.339,-0.272,-1.058,-0.399,14.308,4.661,12.188,8.602,4.018,1.233,-1.593,-0.339,2.696,9.512,4.243,5.005,-0.349,5.457,3.051,1.883,-2.337,-2.517,1.869,3.298,-3.506,1.792],[17.651,21.684,22.275,29.964,24.601,18.84,25.435,22.854,25.48,17.737,18.116,18.792,19.931,19.517,20.399,20.404,16.888,16.502,14.096,15.288,15.127,16.106,14.511,8.197,18.117,19.75,15.443,9.39,16.707,14.309,10.333,3.176,5.561,13.228,10.82,12.395,6.962,11.471,5.037,10.152,7.294,11.441,3.6,7.693,7.671,9.235,3.464,14.446,-0.556,5.869,6.004,3.813,-1.214,5.122,0.23,4.507,-2.7,0.233,-1.714,3.277,-2.076,13.494,9.646,3.055,23.304,18.726,27.27,28.514,25.001,20.522,20.508,22.875,17.354,29.145,24.229,16.92,21.33,21.053,17.275,19.092,19.125,21.4,22.891,24.713,20.487,23.774,17.103,17.515,25.873,18.941,18.234,19.319,18.781,20.855,15.014,9.188,19.813,16.22,15.43,18.078,13.505,15.875,14.181,15.982,16.028,15.931,15.826,19.131,21.298,7.78,15.276,18.576,13.75,18.199,10.625,14.4,12.931,9.173,8.513,15.517,15.985,17.188,19.75,17.131,15.007,13.695,7.422,3.869,4.983,11.863,9.615,12.281,3.268,14.515,10.879,3.814,8.07,11.336,8.928,1.933,12.116,9.15,6.491,6.374,12.771,11.144,-2.394,7.163,10.68,7.308,8.433,10.336,13.299,3.527,0.222,6.211,8.377,3.744,8.402,15.715,9.046,5.211,4.372,6.543,5.676,-0.728,5.079,-0.243,-1.466,-0.526,14.329,4.88,12.37,8.315,3.886,1.168,-1.541,-0.405,2.871,9.584,4.335,5.713,-1.082,5.648,2.554,1.791,-2.954,-2.644,2.076,3.092,-3.407,1.371],[17.678,21.757,22.124,30.14,24.808,18.658,25.226,22.957,25.529,17.745,18.038,18.684,19.844,19.406,20.392,20.498,16.695,16.823,14.052,15.266,15.326,16.093,14.651,8.006,18.172,19.659,15.4,9.749,16.929,14.269,10.343,3.021,5.554,13.043,11.037,12.324,6.836,11.431,5.047,10.285,7.453,11.417,3.391,7.7,7.236,9.396,3.305,14.449,-0.503,5.99,6.293,3.669,-1.132,5.368,0.139,4.534,-2.694,0.233,-1.669,3.235,-2.01,13.536,9.699,2.945,23.356,18.162,27.321,29.189,24.59,20.24,20.577,23.039,17.742,28.883,24.846,17.227,21.528,21.109,17.476,19.337,18.899,21.6,23.131,24.611,20.347,23.658,16.797,17.082,26.09,19.329,17.979,19.413,18.534,20.247,14.999,9.354,19.75,16.3,16.015,18.115,13.43,16.22,13.736,15.582,15.905,15.566,15.862,19.139,21.056,7.563,15.367,18.299,13.823,18.478,11.04,14.783,13.032,9.344,8.934,15.277,16.211,16.258,19.734,17.006,15.41,13.355,7.294,4.093,5.422,11.666,9.661,11.815,2.732,14.258,11.345,4.108,8.115,11.139,9.16,1.567,12.011,8.952,6.258,6.644,12.98,11.144,-2.203,7.381,10.838,7.487,8.602,10.255,13.456,3.669,0.511,5.897,8.648,3.45,8.006,15.213,9.128,4.951,4.345,6.533,5.745,-0.557,5.055,-0.721,-1.587,-0.672,13.565,4.809,12.543,8.609,3.808,1.168,-1.452,-0.191,3.194,9.767,4.464,5.834,-1.904,5.816,2.427,1.834,-3.18,-3.101,1.857,3.027,-3.773,0.553],[17.827,21.712,21.915,30.209,25.033,18.406,25.174,23.088,25.489,17.934,17.993,18.552,19.796,19.216,20.412,20.568,16.54,17.167,13.992,14.968,15.507,16.158,14.717,7.686,18.231,19.55,15.36,9.987,16.934,14.292,10.385,2.801,5.65,12.772,11.088,12.337,6.634,11.437,5.11,10.405,7.588,11.247,3.225,7.758,7.021,9.561,3.205,14.373,-0.467,6.108,6.681,3.587,-1.018,5.557,-0.026,4.476,-2.702,0.123,-1.641,3.318,-2.078,13.551,9.966,2.811,23.345,18.064,27.202,29.382,24.355,20.186,20.761,23.305,17.951,28.768,24.078,16.953,21.926,21.266,16.984,19.175,19.33,21.785,23.384,24.9,20.334,23.497,16.699,16.97,25.758,19.609,17.957,19.276,18.517,19.897,15.09,9.3,19.964,16.799,16.015,18.089,13.903,16.674,13.41,15.673,16.064,14.827,16.365,19.374,20.75,7.151,15.068,18.263,13.695,19.158,11.407,14.822,12.987,9.441,9.548,14.899,16.07,16.239,20.274,16.832,15.41,12.981,7.457,3.981,5.698,11.795,9.453,11.967,2.709,14.397,11.244,4.042,7.316,11.481,9.212,1.535,12.329,8.183,6.288,6.808,13.279,10.932,-2.113,7.453,10.667,7.85,8.737,10.116,13.265,2.938,0.772,5.391,8.344,3.998,7.972,15.427,9.387,4.791,4.778,6.807,5.811,-0.722,4.994,-0.923,-1.265,-1.016,14.293,4.683,12.553,8.734,4.045,0.983,-1.798,0.139,2.88,9.806,4.752,5.366,-1.969,5.977,2.941,1.764,-3.302,-2.712,1.683,2.955,-4.059,1.03],[17.958,21.829,21.848,30.206,25.212,18.265,25.141,23.065,25.348,18.07,17.966,18.411,19.964,19.026,20.45,20.72,16.547,17.395,13.85,14.715,15.476,16.123,14.728,7.409,18.319,19.601,15.235,10.081,16.908,14.301,10.452,2.705,5.857,12.702,11.194,12.485,6.419,11.377,5.171,10.412,7.715,11.083,2.992,7.792,6.94,9.683,3.215,14.274,-0.441,6.217,6.754,3.719,-1.026,5.746,-0.233,4.323,-2.734,-0.001,-1.737,3.493,-2.082,13.737,10.237,2.693,23.538,17.999,27.064,29.141,24.329,20.306,20.557,23.263,17.861,28.837,23.693,16.899,21.473,21.216,16.967,19.125,19.097,22.123,23.255,25.217,20.3,23.84,16.571,16.933,25.573,19.696,18.154,19.377,18.639,20.34,15.126,9.041,19.673,16.875,15.543,18.128,13.778,17.021,13.903,15.695,16.027,15.379,15.827,19.41,20.443,6.756,15.091,18.005,13.147,19.181,11.033,14.822,13.017,9.438,9.154,15.299,16.004,16.772,20.025,16.728,15.128,13.274,7.535,3.916,5.384,12.365,9.718,12.098,2.705,14.466,11.367,4.088,7.008,11.646,9.554,1.545,11.833,8.305,6.325,6.874,13.111,10.534,-2.086,6.786,11.008,7.819,9.004,10.135,13.023,2.858,0.527,5.229,8.821,4.167,7.873,15.52,9.339,4.743,5.126,6.941,6.178,-0.768,5.024,-1.015,-1.352,-1.376,14.257,4.852,12.642,8.996,4.301,0.862,-1.876,0.114,2.551,10.307,4.529,4.818,-1.461,6.316,2.946,2.044,-3.36,-2.584,1.377,2.84,-3.821,1.434],[17.946,21.952,21.936,30.203,25.281,18.238,25.073,22.942,25.112,18.097,17.978,18.304,20.16,19.026,20.586,20.795,16.693,17.432,13.816,14.595,15.435,16.123,14.749,7.315,18.343,19.655,15.149,9.893,16.891,14.286,10.441,2.814,6.013,12.793,11.445,12.489,6.279,11.233,5.198,10.47,7.74,10.779,2.968,7.965,6.827,9.84,3.288,14.231,-0.441,6.248,6.736,3.913,-1.066,5.975,-0.396,4.094,-2.84,-0.092,-1.946,3.718,-2.105,13.881,10.498,2.583,23.772,18.103,26.918,29.142,24.016,19.821,20.24,22.929,17.92,29.081,24.188,16.961,21.687,21.066,17.431,19.337,18.535,22.23,22.809,24.99,20.1,24.195,16.375,16.961,25.911,19.76,18.336,18.862,18.504,20.67,15.056,8.587,19.895,16.894,15.819,18.043,13.56,16.865,13.444,15.948,15.347,16.122,15.909,19.329,20.509,6.99,15.269,18.278,12.922,19.195,11.049,14.577,12.964,9.512,9.014,15.53,15.999,16.322,19.47,16.667,15.124,13.354,7.874,4.142,5.236,11.825,9.866,12.152,2.272,14.569,11.344,4.133,7.464,11.933,9.643,1.312,11.447,8.549,6.438,6.797,12.802,11.092,-2.18,6.269,10.932,7.585,9.069,9.707,12.998,2.929,0.415,5.77,8.946,3.916,8.232,15.113,9.401,4.818,4.683,6.83,6.284,-0.68,5.404,-0.812,-0.97,-1.57,13.917,5.11,12.623,9.14,4.185,0.723,-1.606,-0.391,2.385,10.46,4.412,5.342,-1.156,6.105,2.71,2.264,-3.124,-3.109,0.975,2.896,-3.289,0.978],[17.777,21.994,22.032,30.28,25.19,18.277,25.075,22.808,24.818,18.019,18.014,18.249,20.177,19.075,20.657,20.683,16.913,17.372,13.722,14.492,15.502,16.199,14.943,7.375,18.262,19.568,15.122,9.575,16.824,14.383,10.379,2.926,6.028,13.079,11.492,12.4,6.205,11.029,5.213,10.434,7.668,10.573,3.098,8.18,6.81,10.016,3.424,14.112,-0.387,6.32,6.694,4.083,-1.075,6.179,-0.478,3.948,-2.822,-0.154,-2.176,3.925,-2.176,13.888,10.613,2.524,23.756,18.341,26.648,29.336,23.906,19.852,20.855,22.853,17.974,29.063,24.389,16.933,21.798,20.907,17.126,19.398,18.232,22.121,22.693,24.8,20.175,23.903,16.406,17.038,26.073,19.714,18.316,18.004,18.378,20.942,14.579,7.871,20.411,17.536,16.104,18.218,13.643,17.057,13.331,16.045,15.137,15.936,16.4,19.274,20.588,7.169,15.068,18.328,13.145,19.119,10.862,14.702,13.269,9.556,9.0,15.455,15.409,16.457,20.214,16.816,15.276,13.43,7.828,3.909,5.284,12.073,9.472,11.989,2.471,14.614,11.57,4.15,7.582,11.451,9.655,1.58,11.323,8.478,6.505,6.755,12.467,11.231,-2.214,6.393,11.073,7.548,9.069,9.541,12.897,2.348,0.594,5.672,8.879,4.132,8.382,15.345,9.471,4.719,4.678,6.593,6.132,-0.33,5.49,-0.666,-1.139,-1.477,14.21,5.306,13.325,9.346,3.535,0.715,-1.189,-1.037,2.484,10.413,4.925,6.544,-1.148,5.932,2.991,2.35,-2.893,-3.645,1.225,2.869,-4.108,0.742],[17.593,21.923,22.071,30.346,24.929,18.091,25.192,22.75,24.669,17.998,18.003,18.156,20.23,19.117,20.658,20.653,17.16,17.476,13.6,14.518,15.536,16.185,15.186,7.464,18.236,19.483,15.032,9.358,16.876,14.573,10.392,2.834,5.865,13.319,11.477,12.329,6.11,10.913,5.323,10.23,7.634,10.639,3.15,8.235,6.826,10.108,3.51,13.974,-0.253,6.444,6.575,4.21,-0.94,6.455,-0.386,3.906,-2.745,-0.147,-2.311,3.984,-2.311,13.938,10.672,2.459,23.712,18.067,26.403,29.283,23.669,20.39,20.606,23.097,17.223,29.044,24.138,17.045,21.219,20.868,17.282,19.022,18.501,22.014,23.413,24.631,20.461,23.684,16.301,16.989,26.026,19.585,18.464,18.567,18.271,20.888,14.736,8.064,19.967,18.474,16.028,18.208,13.788,16.945,13.276,16.29,15.572,15.251,16.306,19.122,20.728,6.898,15.048,17.777,13.031,18.995,10.743,14.89,13.594,9.174,8.444,15.565,14.95,16.241,20.017,16.84,15.433,13.06,7.529,4.197,5.758,12.111,9.537,12.295,3.201,14.756,11.343,4.053,7.288,11.12,9.997,1.614,11.196,8.232,6.695,6.828,12.273,10.209,-1.863,6.844,11.307,7.454,8.983,9.723,12.746,2.802,0.406,5.143,9.155,4.27,8.386,15.422,9.362,4.938,5.215,7.199,6.428,-0.396,5.409,-0.676,-2.182,-1.454,14.477,5.295,12.76,9.481,3.414,0.674,-1.423,-1.15,2.345,10.815,4.713,7.148,-1.557,6.488,3.427,2.441,-3.043,-3.804,1.359,2.725,-3.812,0.765],[17.234,21.674,22.19,30.202,24.682,17.832,25.344,22.906,24.603,18.018,18.017,18.09,20.293,19.223,20.588,20.704,17.575,17.603,13.559,14.665,15.496,16.071,15.344,7.471,18.233,19.443,14.881,9.285,16.949,14.739,10.331,2.724,5.807,13.367,11.437,12.167,5.993,10.891,5.459,10.102,7.699,10.676,3.215,8.269,6.719,10.165,3.585,13.839,-0.201,6.549,6.644,4.301,-0.819,6.909,-0.335,3.903,-2.661,-0.134,-2.361,3.862,-2.558,13.895,10.796,2.411,23.552,17.769,26.309,29.371,23.51,20.398,20.238,23.053,17.332,28.825,24.166,16.89,21.387,21.041,17.444,18.936,18.653,22.105,23.603,24.456,20.71,23.521,16.241,16.635,26.078,19.689,18.513,19.172,18.339,20.712,14.82,8.721,19.638,18.661,16.242,17.933,13.735,17.275,12.989,16.639,16.018,15.62,16.135,19.263,20.774,7.003,15.7,17.957,13.267,19.376,10.398,14.896,13.511,9.23,8.753,15.518,14.983,15.961,19.319,16.673,15.339,12.857,7.604,3.908,5.597,12.059,9.961,12.799,3.01,15.041,11.119,4.358,7.092,11.481,9.553,1.835,11.484,8.343,6.514,6.983,12.205,10.272,-1.901,6.803,11.141,7.506,8.573,9.458,12.625,2.772,0.51,5.201,9.088,4.268,8.445,15.394,9.209,5.031,5.555,7.196,6.43,-0.27,5.812,-0.764,-2.481,-1.137,14.179,5.031,13.024,9.387,3.595,0.659,-2.103,-1.012,2.317,10.618,4.659,6.536,-1.372,6.351,3.197,2.165,-3.718,-3.95,1.491,2.372,-3.622,0.757],[16.966,21.519,22.319,30.044,24.598,17.757,25.44,23.033,24.676,18.006,18.034,18.016,20.135,19.304,20.535,20.769,18.062,17.779,13.452,14.91,15.363,15.975,15.495,7.453,18.288,19.395,14.781,9.436,16.842,14.961,10.3,2.588,5.785,13.372,11.31,12.008,5.84,10.993,5.66,10.016,7.822,10.743,3.332,8.258,6.605,10.078,3.599,13.809,-0.222,6.604,6.74,4.353,-0.68,7.228,-0.237,3.878,-2.881,-0.111,-2.44,3.573,-2.844,13.781,10.759,2.313,23.354,17.696,26.347,29.158,23.646,20.243,20.715,23.071,17.672,28.855,24.744,16.854,20.999,21.154,17.15,18.391,18.812,22.154,23.514,24.418,20.614,23.225,16.043,16.538,26.153,19.874,18.54,19.011,18.412,20.581,14.713,9.141,19.658,18.952,16.299,18.127,13.472,17.836,12.781,16.847,16.26,15.892,16.286,19.826,20.65,6.884,15.197,17.96,13.701,19.349,10.166,14.813,13.753,9.547,8.359,15.655,15.359,16.429,19.802,16.453,15.361,13.083,7.589,3.539,5.243,12.1,9.411,12.665,2.583,14.962,11.088,4.399,7.188,11.275,9.661,1.827,11.784,8.377,6.464,6.926,12.198,10.964,-2.107,6.182,11.366,7.914,8.501,9.679,12.498,2.438,0.786,5.563,9.099,4.528,8.436,15.098,9.386,4.79,6.053,6.904,6.578,-0.446,5.519,-0.992,-1.752,-1.102,14.119,4.697,13.296,9.358,3.397,0.622,-2.007,-0.713,2.346,10.694,4.889,6.451,-0.748,6.203,3.08,1.852,-3.9,-3.673,1.507,2.055,-3.698,0.795],[16.982,21.469,22.384,30.007,24.554,17.827,25.494,22.891,24.878,18.01,17.953,17.9,19.904,19.226,20.528,20.836,18.616,17.994,13.329,15.181,15.271,15.986,15.588,7.398,18.391,19.421,14.868,9.471,16.782,15.075,10.296,2.468,5.718,13.364,11.237,11.927,5.708,11.084,5.888,10.085,7.98,10.941,3.337,8.185,6.645,9.964,3.567,13.797,-0.249,6.624,6.799,4.268,-0.477,7.401,-0.07,3.741,-3.249,-0.127,-2.3,3.244,-2.947,13.734,10.634,2.14,23.283,17.71,26.653,29.056,23.986,20.626,20.666,23.337,16.979,28.648,25.125,17.041,20.653,21.06,17.28,18.145,18.184,22.181,23.018,24.484,20.518,23.396,16.003,16.372,25.881,19.813,18.156,19.188,18.434,20.487,14.368,9.104,19.607,19.288,16.582,18.509,13.494,18.246,12.945,17.661,16.162,15.481,15.873,20.042,20.256,6.646,14.785,18.031,13.748,19.038,10.641,14.317,13.947,9.607,8.464,15.389,15.624,16.31,19.881,16.432,15.217,12.657,7.445,3.808,5.297,11.806,9.176,12.418,2.921,14.336,11.099,4.593,7.293,10.818,9.772,1.692,11.321,8.117,6.624,7.438,12.54,10.996,-2.069,5.766,11.156,7.953,8.596,9.757,12.587,3.132,0.569,5.137,9.244,4.376,8.489,15.016,9.568,4.835,6.13,6.344,6.891,-0.252,5.461,-0.751,-1.661,-1.327,13.93,4.643,12.898,9.513,3.121,0.49,-1.621,-0.855,2.335,10.684,5.14,6.987,-0.859,7.006,3.15,1.839,-3.935,-3.815,1.684,1.833,-4.224,0.878],[17.04,21.367,22.293,29.92,24.478,17.796,25.565,22.699,25.039,18.074,17.854,17.843,19.653,19.122,20.526,20.846,19.282,18.167,13.268,15.231,15.238,15.892,15.662,7.265,18.451,19.427,15.03,9.473,16.709,15.028,10.243,2.623,5.673,13.346,11.211,11.79,5.711,11.103,6.116,10.275,8.094,11.021,3.359,8.151,6.709,9.922,3.616,13.77,-0.22,6.599,6.956,4.172,-0.241,7.542,0.141,3.508,-3.474,-0.233,-1.977,3.027,-2.959,13.554,10.638,1.896,23.161,18.106,26.781,29.284,23.948,20.492,20.214,22.902,16.876,28.636,24.866,17.125,21.009,20.886,16.929,18.65,18.229,21.871,22.931,24.552,20.463,23.604,16.025,16.175,25.878,19.858,17.821,19.061,18.291,20.362,14.097,8.809,19.377,19.692,16.542,18.401,13.612,17.996,13.439,17.975,16.414,15.744,15.814,20.126,20.403,7.022,15.54,18.385,13.676,19.38,11.125,14.496,14.058,9.47,8.828,14.944,15.839,16.227,19.521,16.57,14.863,12.786,7.399,3.804,5.053,11.752,9.622,11.995,3.015,13.484,11.403,5.222,7.489,11.244,9.353,2.071,11.657,8.122,6.542,7.392,12.586,10.591,-1.996,5.455,10.638,7.752,8.677,9.528,12.254,2.653,0.567,5.128,9.177,4.421,8.309,14.74,9.624,4.935,5.957,6.144,6.966,0.282,5.561,-0.561,-1.971,-1.104,14.005,4.659,12.805,9.257,2.796,0.267,-1.331,-0.867,2.097,10.29,5.259,7.05,-1.365,6.989,3.053,1.59,-4.286,-4.261,1.722,2.079,-4.385,0.856],[17.129,21.305,22.012,29.874,24.464,17.727,25.723,22.581,25.128,18.262,17.704,17.859,19.321,19.021,20.54,20.739,19.875,18.213,13.356,15.154,15.192,15.836,15.622,7.169,18.459,19.498,15.139,9.557,16.645,15.035,10.201,2.932,5.6,13.144,11.262,11.935,5.779,11.104,6.342,10.406,8.021,10.912,3.465,8.146,6.693,9.783,3.737,13.737,-0.057,6.588,7.016,4.087,-0.089,7.567,0.334,3.249,-3.429,-0.365,-1.658,2.868,-2.897,13.35,10.645,1.638,23.119,18.414,26.577,29.026,23.668,20.257,19.446,22.775,17.347,28.696,24.496,16.57,20.548,20.893,16.809,18.517,18.233,21.46,23.195,24.482,20.307,23.064,15.989,16.142,26.304,20.065,17.889,18.485,18.134,20.488,14.252,8.487,19.368,19.911,16.451,18.073,13.422,17.967,13.28,18.445,16.5,15.78,15.955,20.247,20.501,6.87,15.218,18.043,13.859,19.553,10.775,14.504,13.965,9.378,8.868,15.125,15.8,16.029,19.857,16.757,15.202,12.737,7.434,3.724,5.187,11.853,9.54,12.225,3.051,13.6,11.33,4.991,7.296,10.896,9.621,2.267,12.373,8.469,6.49,7.054,12.675,10.433,-1.936,5.953,10.531,8.147,9.172,9.531,12.2,2.242,0.622,5.585,8.937,4.472,8.136,14.589,9.53,5.044,6.105,6.405,7.086,0.612,5.608,-0.914,-1.791,-0.774,14.029,4.255,12.547,9.059,2.184,-0.115,-0.958,-0.484,2.032,10.043,4.899,7.454,-1.07,6.421,3.232,1.34,-4.38,-4.469,1.936,2.112,-3.888,0.703],[17.239,21.265,21.747,29.797,24.421,17.681,25.971,22.596,25.074,18.403,17.344,17.83,19.041,18.988,20.697,20.708,20.269,18.161,13.508,15.122,15.127,15.921,15.55,7.148,18.376,19.693,15.139,9.501,16.605,15.242,10.208,3.061,5.6,12.972,11.333,12.037,5.786,11.105,6.316,10.58,7.964,10.842,3.622,8.068,6.785,9.55,3.85,13.708,0.125,6.441,6.922,4.096,-0.078,7.574,0.421,3.019,-3.134,-0.435,-1.362,2.698,-2.882,13.354,10.465,1.357,23.082,17.95,26.598,28.929,23.816,20.326,19.026,23.1,17.575,28.752,24.765,16.478,20.254,20.808,17.195,18.32,17.689,20.922,22.938,24.613,20.087,22.95,15.915,16.147,26.346,20.263,17.264,18.359,18.152,20.641,14.78,8.284,19.285,20.418,16.375,18.13,13.425,18.002,12.996,18.815,16.345,15.488,15.437,20.108,20.648,6.628,14.196,18.075,13.678,19.38,10.664,14.275,13.737,9.326,8.682,15.261,15.961,16.074,19.277,16.732,14.696,12.974,7.411,4.147,5.415,11.765,9.085,12.399,3.549,14.243,10.985,4.788,7.052,11.184,9.553,2.323,11.406,8.413,6.396,7.533,12.803,10.946,-1.649,6.607,11.069,8.272,9.41,9.84,12.425,2.873,0.864,5.544,8.979,4.71,8.042,14.798,9.421,5.098,6.04,6.745,7.075,0.703,5.445,-0.707,-1.368,-0.682,13.684,4.025,12.596,9.502,1.66,-0.558,-1.177,-0.028,2.249,10.127,4.653,7.179,-0.245,6.905,3.315,1.166,-3.966,-4.124,2.167,1.868,-4.315,0.465],[17.263,21.195,21.587,29.677,24.371,17.535,26.118,22.656,25.033,18.184,17.005,17.696,18.779,18.999,20.923,20.809,20.483,18.057,13.687,15.101,14.975,16.025,15.453,7.225,18.341,19.803,15.163,9.405,16.466,15.293,10.235,3.191,5.728,12.916,11.215,12.065,5.761,11.137,6.282,10.841,8.015,10.904,3.79,7.872,6.936,9.408,3.923,13.662,0.356,6.21,6.85,4.178,-0.035,7.587,0.46,2.91,-2.784,-0.357,-1.133,2.515,-2.874,13.375,10.266,1.087,23.045,17.895,26.422,29.187,23.807,20.255,19.55,23.265,17.413,28.382,25.336,16.593,20.892,20.742,16.328,18.673,17.701,20.524,22.239,24.58,19.773,23.379,15.683,16.179,26.049,20.097,17.006,18.549,18.45,20.331,14.669,7.832,19.246,21.09,16.585,17.949,13.207,18.047,13.24,18.958,16.044,15.558,15.517,20.475,20.484,6.923,14.592,18.383,13.624,19.43,10.819,14.469,13.8,9.388,8.282,14.935,16.133,16.476,19.597,16.604,14.781,13.231,7.6,4.371,4.981,12.093,9.188,12.39,3.571,14.644,11.045,5.439,7.156,11.459,9.655,2.337,10.093,8.381,6.242,7.549,13.014,10.766,-1.48,6.344,10.786,8.111,9.409,9.821,12.79,3.027,1.038,5.533,9.174,5.018,7.962,15.241,9.375,5.094,5.905,6.964,6.908,0.674,5.56,-0.076,-1.637,-0.802,13.609,3.978,12.758,9.439,1.568,-0.532,-1.348,0.385,1.99,9.913,4.345,6.646,-0.554,7.428,2.851,1.042,-3.485,-3.412,2.086,1.596,-4.164,0.621],[17.116,21.285,21.438,29.573,24.385,17.508,26.056,22.588,25.005,17.857,16.808,17.509,18.7,19.066,21.106,21.048,20.594,18.023,13.763,15.176,14.716,16.024,15.462,7.423,18.441,19.81,15.243,9.32,16.397,15.291,10.255,3.396,5.818,13.073,11.034,12.188,5.621,11.413,6.447,10.949,8.111,10.739,3.775,7.691,6.959,9.342,3.909,13.729,0.493,6.024,6.958,4.257,0.006,7.552,0.458,2.931,-2.513,-0.096,-1.021,2.338,-2.791,13.366,10.091,1.008,22.984,17.921,26.485,28.768,24.095,19.971,20.052,23.404,17.491,28.283,25.251,15.935,21.11,20.989,15.893,18.336,17.813,20.576,22.092,24.392,19.581,23.401,15.912,16.359,25.785,19.661,17.226,18.374,18.558,20.0,14.716,7.515,19.409,21.226,16.108,17.554,12.989,17.398,13.383,18.772,15.865,16.012,15.101,20.959,20.455,6.779,15.271,18.075,13.621,19.236,10.491,14.553,13.631,9.648,8.197,14.429,16.121,16.473,19.89,16.658,15.52,12.718,7.496,4.435,4.571,11.892,9.222,12.3,3.331,14.551,11.193,5.313,6.963,10.9,9.749,2.886,10.738,8.687,6.086,7.792,12.777,10.911,-1.361,6.161,10.501,7.909,9.738,10.105,13.004,2.761,0.983,5.62,8.604,4.788,7.917,15.404,9.736,5.183,6.266,6.696,6.099,0.567,5.504,-0.21,-1.681,-0.867,14.062,3.906,12.52,8.728,1.957,-0.673,-1.104,0.685,1.768,9.658,4.237,7.423,-0.927,6.95,2.935,1.054,-3.071,-2.949,1.943,1.344,-3.444,0.972],[16.851,21.406,21.304,29.461,24.449,17.637,25.873,22.461,25.032,17.587,16.67,17.367,18.793,19.088,21.199,21.353,20.618,17.98,13.758,15.28,14.516,16.012,15.443,7.575,18.511,19.849,15.323,9.313,16.351,15.257,10.18,3.586,5.691,13.169,10.801,12.184,5.374,11.758,6.597,10.979,8.278,10.662,3.8,7.507,7.009,9.331,3.798,13.951,0.494,5.9,7.047,4.252,-0.01,7.659,0.495,3.108,-2.325,0.078,-0.949,2.19,-2.732,13.291,9.716,0.967,23.021,17.457,26.61,28.576,23.96,20.461,19.97,23.062,17.388,28.597,24.79,15.566,21.143,20.866,16.285,17.95,17.46,21.068,22.474,24.663,19.619,23.541,16.372,15.884,26.081,19.349,17.513,18.355,18.429,20.019,14.89,7.629,19.913,21.097,15.8,17.862,12.987,16.685,13.358,18.816,16.299,15.703,15.116,20.639,20.171,6.959,15.723,18.206,13.766,19.169,10.673,14.736,13.605,9.53,8.238,14.013,16.255,16.326,19.178,16.794,16.34,12.93,7.424,4.474,4.724,11.614,9.234,12.998,3.993,14.166,11.493,5.191,6.821,11.302,9.244,2.545,11.549,8.798,5.804,7.464,12.331,10.776,-1.356,5.981,10.55,8.044,9.588,10.25,12.771,2.663,0.704,5.85,8.166,4.833,8.185,15.628,9.817,5.003,6.244,5.883,5.607,0.557,5.623,-0.476,-1.015,-0.668,14.297,3.819,12.107,8.646,2.32,-0.708,-1.112,0.695,1.608,9.794,4.181,7.333,-0.578,6.937,3.313,1.064,-3.19,-3.237,2.261,1.603,-3.334,1.2],[16.669,21.442,21.323,29.428,24.626,17.854,25.788,22.198,24.964,17.378,16.642,17.303,18.837,19.204,21.268,21.587,20.508,17.964,13.706,15.346,14.459,16.045,15.368,7.646,18.674,19.686,15.427,9.467,16.377,15.345,9.929,3.8,5.501,13.273,10.483,12.289,5.253,11.954,6.507,10.895,8.372,10.833,3.758,7.236,7.258,9.33,3.736,14.18,0.339,5.767,7.211,4.242,-0.047,7.81,0.67,3.314,-2.275,0.152,-1.001,2.178,-2.756,13.234,9.392,0.992,23.168,16.799,26.374,28.685,23.655,20.734,20.077,22.638,16.675,28.566,24.837,15.717,21.095,20.847,16.464,18.023,17.179,21.582,22.557,24.889,19.729,23.362,16.207,15.555,26.044,19.268,17.557,18.255,18.284,20.384,14.318,8.095,20.265,21.129,16.08,17.791,12.879,17.03,13.86,18.802,16.318,15.275,15.677,20.585,20.185,7.287,15.244,18.707,13.982,19.152,10.598,14.487,13.508,9.359,8.433,14.038,16.548,16.18,19.558,16.815,16.427,13.276,6.951,4.792,4.902,11.422,8.843,12.861,3.889,13.364,11.81,5.584,6.545,11.438,8.85,2.166,11.367,8.757,5.809,7.665,12.415,10.275,-1.508,5.75,11.129,8.832,9.578,10.262,13.014,3.116,0.728,6.023,8.339,4.796,8.58,15.617,9.825,4.868,6.146,5.57,5.395,0.421,5.91,-0.366,-1.234,0.115,13.807,3.731,11.641,8.477,2.172,-0.79,-0.88,0.514,2.352,9.287,3.968,7.2,-0.966,7.142,3.093,0.841,-3.328,-3.437,2.49,1.599,-3.626,0.9],[16.608,21.414,21.505,29.466,24.707,17.925,25.868,21.9,24.806,17.271,16.699,17.196,18.786,19.413,21.283,21.734,20.378,18.056,13.66,15.261,14.47,16.0,15.251,7.664,18.924,19.455,15.559,9.687,16.471,15.399,9.534,3.93,5.257,13.223,10.084,12.48,5.156,12.049,6.388,10.847,8.444,11.044,3.807,7.009,7.587,9.479,3.713,14.302,0.052,5.659,7.321,4.298,-0.226,7.856,0.932,3.575,-2.311,0.096,-1.063,2.242,-2.948,13.092,9.191,0.992,23.312,16.783,26.275,28.335,23.292,20.766,20.146,22.613,16.274,28.64,25.082,15.956,20.714,20.138,16.223,17.917,17.91,22.247,22.452,24.813,19.607,23.289,16.018,15.7,25.586,19.085,17.524,18.518,18.33,21.295,14.684,8.698,20.365,20.92,15.88,17.763,12.647,18.097,13.535,18.645,16.239,14.677,15.159,20.968,20.265,6.831,14.647,18.954,14.235,19.654,10.766,15.024,13.766,9.013,8.314,14.493,16.878,16.488,20.159,16.586,16.258,13.411,6.527,4.69,5.645,11.106,8.394,12.437,3.641,14.068,11.574,5.317,5.969,11.442,9.24,2.799,11.41,9.046,5.61,7.648,12.793,10.392,-1.56,6.375,11.157,9.135,9.618,9.862,13.114,2.723,0.994,6.225,8.191,4.607,8.879,15.686,9.975,4.991,6.567,5.78,5.658,0.348,5.773,0.115,-1.789,0.56,13.708,3.385,11.481,8.299,2.225,-0.596,-0.892,0.49,2.892,8.451,3.925,7.585,-1.228,7.571,3.008,0.602,-3.035,-3.198,2.586,1.369,-3.743,0.827],[16.562,21.364,21.658,29.508,24.616,17.877,25.963,21.567,24.641,17.241,16.787,17.091,18.674,19.63,21.359,21.865,20.221,18.425,13.653,15.197,14.489,15.942,15.158,7.601,19.116,19.338,15.698,9.795,16.576,15.331,9.205,3.866,5.087,13.168,9.732,12.664,5.068,12.097,6.219,10.864,8.535,11.283,4.017,6.842,7.941,9.583,3.738,14.254,-0.14,5.584,7.443,4.333,-0.408,7.93,1.026,3.784,-2.173,0.008,-1.01,2.194,-3.191,12.926,8.929,0.865,23.135,17.13,25.999,28.723,23.297,20.819,19.858,22.704,16.913,28.627,24.952,16.012,20.645,19.74,16.212,17.354,18.575,22.283,22.431,24.485,19.748,23.922,16.053,16.048,25.918,19.081,17.479,18.805,18.716,21.845,14.901,8.699,20.388,21.008,15.505,18.284,12.696,18.371,13.34,18.401,16.321,14.707,14.954,21.297,20.199,6.62,14.783,18.786,13.626,19.678,11.12,15.268,14.173,8.506,8.739,14.721,16.867,16.548,19.182,16.737,16.273,13.479,6.539,4.292,5.834,10.849,8.277,12.759,3.936,13.908,11.499,4.988,6.064,11.677,9.314,2.822,11.952,9.708,5.385,7.434,12.616,10.815,-1.853,6.267,11.303,8.893,9.335,10.135,13.078,2.885,0.871,6.608,7.661,4.526,9.248,15.824,10.074,5.241,6.602,5.985,5.931,-0.019,5.572,-0.189,-1.825,1.369,14.061,3.349,11.202,8.137,2.775,-0.772,-1.063,0.581,2.657,9.099,4.065,7.043,-0.6,7.516,3.292,0.471,-2.799,-3.245,2.412,1.327,-3.755,1.23],[16.513,21.231,21.764,29.641,24.534,17.944,26.084,21.42,24.542,17.298,16.871,17.113,18.405,19.852,21.466,21.954,20.101,18.871,13.613,15.064,14.54,15.931,15.114,7.474,19.125,19.233,15.856,9.899,16.696,15.26,9.107,3.66,5.089,13.165,9.467,12.787,5.066,12.173,5.895,10.948,8.591,11.545,4.2,6.636,8.23,9.691,3.793,14.228,-0.194,5.508,7.551,4.301,-0.408,7.942,1.094,3.807,-1.977,-0.07,-1.029,2.087,-3.41,12.802,8.662,0.768,23.048,17.353,26.0,28.839,23.095,20.934,19.946,22.038,17.339,29.045,24.802,16.141,21.224,19.651,15.939,17.241,17.971,22.271,22.636,24.465,19.998,23.369,16.271,16.309,26.234,19.046,17.466,18.827,18.849,21.929,14.515,8.566,20.338,20.865,15.454,18.528,12.808,18.325,13.631,18.296,15.754,14.938,15.553,21.588,19.954,6.576,14.891,18.408,13.624,19.671,10.795,14.952,14.352,8.793,8.999,14.45,16.719,16.121,18.706,17.28,16.36,13.746,6.536,4.598,5.306,10.745,8.335,12.728,3.756,13.781,11.285,5.145,6.181,11.862,9.27,2.59,12.101,9.759,5.3,7.313,12.941,11.02,-2.063,5.79,11.279,8.474,9.446,10.493,13.165,3.45,0.475,7.413,7.587,4.438,9.615,15.837,10.204,5.36,6.386,6.016,6.147,-0.235,5.936,-0.631,-2.099,1.828,13.776,3.346,11.354,7.43,3.217,-1.054,-0.969,0.778,2.198,9.782,4.103,7.183,-1.205,7.251,3.476,0.446,-2.459,-3.38,2.312,1.177,-3.092,1.213],[16.531,21.278,21.724,29.796,24.439,18.021,26.233,21.43,24.469,17.365,16.944,17.179,18.132,19.933,21.588,21.955,20.033,19.258,13.624,14.872,14.564,15.802,15.055,7.459,18.907,19.076,16.03,9.985,16.803,15.285,9.233,3.634,5.15,13.227,9.301,12.814,5.128,12.301,5.693,11.083,8.628,11.671,4.266,6.464,8.375,9.806,3.76,14.356,-0.127,5.362,7.633,4.342,-0.481,7.85,1.105,3.658,-1.785,-0.261,-1.095,2.031,-3.62,12.825,8.439,0.749,22.841,17.388,26.054,28.46,23.012,21.402,19.723,21.686,17.267,28.883,25.127,15.547,21.092,19.731,16.204,17.275,17.242,22.012,22.856,24.745,19.937,23.552,16.522,16.139,25.941,19.206,17.649,18.7,18.778,21.675,13.979,8.074,20.381,20.576,16.028,18.04,12.975,18.232,13.866,18.252,16.159,15.538,15.91,21.763,20.171,7.047,14.929,18.603,13.649,19.736,10.82,14.535,14.574,9.122,8.696,14.209,16.789,16.444,19.103,17.469,16.371,14.136,6.748,4.319,5.117,10.494,8.334,12.432,3.281,13.494,11.598,4.987,6.344,12.069,9.267,3.019,11.682,9.937,5.292,7.154,13.498,10.928,-1.851,5.906,11.733,8.666,9.866,9.995,12.772,3.31,0.509,7.327,7.61,4.349,9.801,15.508,10.152,5.164,6.532,5.995,5.909,0.293,5.739,-0.843,-2.189,2.0,13.657,3.269,11.101,7.222,2.82,-1.087,-0.883,0.595,2.388,9.515,3.655,7.576,-1.422,7.342,3.205,0.466,-2.638,-3.225,2.454,1.356,-3.271,1.064],[16.641,21.383,21.652,29.76,24.458,17.98,26.354,21.519,24.44,17.585,16.864,17.162,18.032,19.864,21.689,21.942,20.121,19.426,13.684,14.845,14.468,15.697,15.072,7.611,18.55,19.082,16.094,10.045,16.892,15.323,9.478,3.669,5.266,13.242,9.27,12.796,5.216,12.416,5.679,10.992,8.629,11.503,4.29,6.291,8.528,10.081,3.543,14.462,0.123,5.254,7.626,4.302,-0.374,7.87,1.061,3.435,-1.845,-0.547,-1.223,2.022,-3.721,12.803,8.392,0.837,23.3,17.172,25.891,28.823,23.583,21.006,19.498,22.288,17.37,28.624,25.286,15.637,20.674,19.84,16.511,17.297,17.174,21.609,22.635,24.352,19.619,23.308,16.66,15.76,26.062,19.42,17.527,18.665,18.874,21.597,13.826,7.454,20.347,20.761,16.138,17.598,12.98,18.497,14.049,18.268,16.202,15.607,16.045,21.645,20.162,6.736,14.843,19.157,13.528,20.319,11.312,14.791,14.774,8.944,8.719,14.297,17.388,16.322,18.614,17.149,16.491,14.061,7.063,3.819,4.9,10.112,8.391,12.688,3.677,13.864,11.67,4.454,6.037,12.019,8.406,3.467,12.23,9.686,5.187,7.043,13.75,10.488,-1.739,6.52,11.791,9.133,9.447,10.242,12.864,2.984,0.559,7.082,7.392,4.374,9.381,15.797,10.135,4.958,6.615,6.026,6.162,-0.072,5.569,-0.405,-2.344,2.038,13.926,3.355,11.193,7.625,2.204,-0.969,-1.295,0.504,2.657,8.787,3.666,6.863,-1.116,7.688,2.986,0.385,-2.513,-3.235,2.231,1.283,-3.178,0.141],[16.877,21.538,21.683,29.623,24.367,18.009,26.41,21.648,24.338,17.864,16.841,17.074,18.002,19.652,21.778,21.938,20.413,19.527,13.754,14.932,14.35,15.715,15.231,7.607,18.321,19.078,16.081,10.158,16.839,15.256,9.66,3.705,5.473,13.274,9.195,12.821,5.36,12.383,5.719,10.694,8.606,11.211,4.398,6.02,8.636,10.357,3.371,14.588,0.231,5.277,7.611,4.24,-0.163,7.801,0.9,3.244,-2.098,-0.898,-1.406,2.036,-3.788,12.89,8.51,0.984,23.228,16.961,26.069,29.326,23.895,20.816,19.658,22.759,17.518,28.601,25.29,16.126,20.651,20.015,15.538,17.367,17.684,21.349,22.3,24.6,19.829,23.57,16.325,15.412,26.189,19.821,16.961,18.583,18.579,21.711,14.199,7.288,20.53,20.973,16.096,17.549,12.668,18.763,13.715,18.69,15.776,15.554,15.245,21.196,19.882,6.683,14.807,18.68,13.265,20.662,11.015,14.812,14.165,9.09,9.454,14.3,17.078,16.381,18.751,17.021,16.543,13.37,7.279,4.331,4.371,10.219,8.48,12.906,3.603,13.998,11.66,4.945,5.88,11.714,8.166,3.638,12.081,10.121,4.83,7.044,13.298,10.889,-1.607,6.933,12.048,8.832,9.409,10.614,13.482,3.029,0.403,7.082,6.874,4.23,9.265,16.234,10.181,4.56,6.742,6.459,6.775,0.152,5.73,-0.731,-2.571,2.14,13.87,3.305,11.482,7.977,2.385,-0.813,-1.611,-0.067,2.376,8.41,3.795,6.934,-0.497,7.64,2.989,0.394,-2.636,-3.41,1.847,1.091,-3.201,-0.323],[17.091,21.552,21.719,29.594,24.351,18.036,26.492,21.781,24.298,17.782,16.783,16.993,18.003,19.419,21.88,21.921,20.73,19.545,13.717,14.928,14.295,15.781,15.354,7.498,18.287,19.065,15.937,10.181,16.439,15.112,9.739,3.728,5.754,13.282,9.134,12.679,5.55,12.228,5.811,10.554,8.566,10.968,4.643,5.705,8.696,10.603,3.204,14.785,0.234,5.48,7.645,4.24,0.146,7.836,0.684,3.052,-2.384,-1.037,-1.554,2.112,-3.821,12.934,8.609,1.06,23.452,17.599,26.105,28.713,23.576,20.677,19.014,22.44,17.269,28.895,25.378,15.825,21.016,20.112,15.608,17.599,18.521,21.541,22.549,24.425,19.972,23.612,16.253,15.609,26.289,19.701,16.938,18.437,18.527,21.479,14.878,7.586,20.699,21.232,16.473,17.729,12.526,19.512,13.605,18.951,15.862,15.222,15.341,20.859,19.579,7.01,14.946,17.843,13.55,20.594,11.02,14.857,13.805,9.253,10.214,14.315,16.952,16.646,18.781,17.355,16.189,13.327,7.232,4.562,4.326,10.571,8.398,12.791,3.308,13.562,11.307,5.269,6.334,12.131,8.361,3.172,11.362,10.282,4.341,7.338,13.237,10.801,-1.475,6.759,12.002,8.559,9.534,9.638,13.793,3.638,-0.013,7.51,6.802,4.184,10.081,16.427,10.092,4.374,6.57,6.709,7.123,1.102,5.914,-0.82,-2.741,1.995,14.147,3.162,11.62,7.752,2.721,-0.388,-1.721,-0.099,1.932,8.691,4.024,6.914,-0.686,7.746,3.108,0.315,-2.899,-3.236,1.008,0.931,-3.892,-0.337],[17.127,21.587,21.699,29.588,24.466,17.969,26.628,21.6,24.378,17.497,16.778,17.113,18.09,19.278,21.88,21.876,20.95,19.59,13.707,14.803,14.333,15.831,15.402,7.41,18.316,19.088,15.865,10.177,16.083,15.035,9.723,3.698,6.022,13.164,9.197,12.538,5.616,12.122,6.004,10.437,8.509,10.723,4.834,5.451,8.682,10.747,3.048,15.044,0.178,5.795,7.82,4.204,0.404,7.844,0.451,2.848,-2.615,-0.812,-1.628,2.234,-3.739,12.972,8.613,1.161,23.227,17.426,25.989,28.079,23.182,20.711,18.703,22.51,17.704,28.979,25.417,15.531,21.12,19.889,15.979,17.935,18.77,22.477,23.01,24.496,19.911,22.884,16.216,15.673,26.358,19.311,16.348,18.237,18.564,21.004,14.511,8.354,20.724,21.111,16.17,17.941,12.523,19.957,13.923,19.332,15.949,14.654,15.01,20.948,19.694,6.719,14.845,17.723,13.812,20.03,11.395,15.207,13.667,9.142,9.777,14.648,16.848,16.115,18.523,17.018,16.112,14.096,7.465,3.851,4.833,10.603,8.199,12.273,3.691,13.497,11.132,4.705,6.552,12.11,8.531,3.384,11.409,10.001,4.308,7.342,13.16,10.357,-1.439,6.694,12.298,8.696,9.298,9.39,13.559,4.066,0.228,7.614,6.636,4.184,10.741,16.379,10.057,4.187,6.565,6.756,6.852,1.581,5.849,-0.609,-2.76,2.131,14.073,3.612,11.627,7.677,2.473,-0.309,-1.614,-0.028,1.918,9.295,4.12,7.13,-0.478,7.601,3.284,0.523,-2.874,-3.23,0.887,0.609,-3.77,0.07],[17.217,21.506,21.725,29.551,24.614,17.897,26.759,21.25,24.402,17.284,16.828,17.19,18.157,19.367,21.803,21.869,21.07,19.557,13.593,14.745,14.381,15.888,15.279,7.339,18.389,19.073,15.832,10.157,15.86,15.064,9.6,3.572,6.046,12.938,9.343,12.602,5.683,12.086,6.075,10.385,8.469,10.602,5.014,5.33,8.514,10.91,2.97,15.182,0.261,5.958,8.03,4.154,0.566,7.898,0.52,2.558,-2.624,-0.406,-1.711,2.432,-3.685,12.911,8.581,1.192,23.352,17.166,26.145,28.317,23.456,20.691,18.886,21.831,17.455,28.83,25.449,15.747,21.155,19.647,16.046,18.112,18.399,22.923,22.861,24.683,20.085,23.539,16.042,15.731,26.263,19.12,16.389,18.607,18.455,20.489,14.284,8.735,20.559,20.905,15.852,17.458,12.498,20.121,14.031,19.611,15.713,13.982,14.797,21.172,20.12,6.76,15.087,18.332,13.056,19.895,11.158,15.401,13.79,9.005,8.95,14.614,17.015,15.554,18.706,16.92,16.391,13.867,7.926,3.629,5.5,10.66,8.125,11.891,4.124,13.242,11.438,5.132,6.2,11.493,9.093,3.725,11.573,9.961,4.143,7.516,13.369,10.589,-1.468,6.608,12.425,8.767,8.855,9.84,13.861,3.986,0.171,7.138,6.33,4.063,10.453,16.049,10.086,4.163,6.697,6.905,6.952,1.633,5.494,-0.982,-2.246,1.782,13.719,3.801,11.327,7.839,2.209,-0.437,-1.713,-0.102,2.463,9.667,4.21,7.104,-0.477,7.614,3.211,0.925,-3.214,-3.145,0.797,0.847,-4.124,0.142],[17.29,21.378,21.775,29.622,24.811,17.794,26.922,21.079,24.469,17.161,16.789,17.223,18.483,19.549,21.624,21.763,21.021,19.434,13.439,14.585,14.241,15.771,15.154,7.255,18.425,19.167,15.787,9.912,15.75,15.157,9.387,3.458,5.954,12.711,9.504,12.685,5.662,12.12,6.08,10.308,8.462,10.691,5.093,5.226,8.284,11.145,2.981,15.253,0.335,6.04,8.288,4.024,0.527,8.03,0.527,2.259,-2.54,-0.071,-1.846,2.621,-3.606,12.685,8.567,1.227,23.209,17.184,25.991,28.686,23.554,20.665,19.039,21.09,17.471,28.321,25.778,15.755,20.721,19.384,16.155,18.2,17.628,22.495,22.643,24.554,19.791,23.511,16.014,15.903,26.313,18.872,16.707,18.795,18.705,20.574,14.439,8.667,20.201,21.639,15.757,17.707,12.522,20.082,13.77,20.029,15.599,14.195,14.841,22.028,20.159,6.793,15.773,18.879,13.041,20.652,10.95,15.738,13.598,8.927,8.968,14.289,16.735,15.53,18.552,17.323,16.529,13.174,7.441,3.968,5.949,11.001,8.408,12.197,4.069,13.659,11.441,5.644,6.444,11.958,9.055,3.873,11.886,9.654,4.161,7.741,13.596,10.099,-1.211,6.949,12.218,8.849,9.111,9.807,13.643,3.62,0.461,7.227,6.373,4.119,9.686,16.147,9.987,4.065,6.846,7.225,7.178,1.419,5.503,-0.74,-2.141,1.873,13.666,3.657,11.132,8.078,2.509,-0.577,-1.472,-0.598,2.526,9.484,4.327,6.921,-0.451,8.372,3.08,0.765,-3.255,-3.033,0.944,1.423,-3.928,0.477],[17.39,21.257,21.708,29.728,24.882,17.708,27.059,21.026,24.478,17.018,16.687,17.387,18.953,19.694,21.429,21.685,21.078,19.391,13.448,14.445,14.011,15.73,15.013,7.13,18.466,19.461,15.602,9.744,15.798,15.289,9.114,3.403,5.946,12.772,9.597,12.584,5.585,12.046,6.185,10.303,8.481,10.813,4.997,5.161,8.157,11.377,3.051,15.153,0.513,6.153,8.628,3.893,0.366,8.195,0.601,2.05,-2.423,0.213,-2.085,2.649,-3.551,12.576,8.65,1.348,23.09,17.143,26.058,29.041,23.457,20.698,19.255,21.492,17.944,28.317,26.011,15.434,20.287,19.488,15.986,18.181,17.225,21.857,22.797,25.021,20.085,23.609,16.197,15.758,26.899,18.832,17.071,18.463,18.874,20.946,14.104,8.128,19.918,21.853,15.642,18.216,12.393,19.778,13.405,20.058,15.445,13.915,14.577,22.365,20.26,6.722,16.03,18.601,13.254,20.389,10.723,15.974,13.749,8.625,8.661,13.996,16.278,15.661,18.687,17.102,16.387,13.599,6.904,4.074,5.189,10.989,8.344,12.12,3.584,13.454,11.285,5.104,6.809,12.581,9.007,4.428,11.146,9.806,3.837,7.4,13.814,10.02,-1.076,6.754,12.191,8.867,8.867,9.339,13.811,3.449,0.077,7.162,6.451,4.276,9.606,16.707,9.881,4.001,7.041,7.484,7.506,1.115,5.404,-0.436,-2.077,2.086,13.563,3.703,11.267,8.218,2.556,-0.398,-1.634,-0.657,1.827,8.9,4.427,7.28,-0.161,8.276,3.048,0.847,-2.826,-3.452,0.817,1.574,-3.579,0.93],[17.551,21.243,21.783,29.783,24.931,17.823,27.189,21.185,24.346,16.973,16.646,17.386,19.249,19.7,21.377,21.703,21.207,19.313,13.434,14.344,13.906,15.758,14.823,6.81,18.578,19.717,15.416,9.593,15.822,15.366,8.738,3.434,5.865,12.923,9.535,12.488,5.629,11.951,6.137,10.315,8.378,10.875,5.049,5.039,8.22,11.574,3.091,15.064,0.603,6.278,8.769,3.923,0.324,8.322,0.736,1.933,-2.235,0.432,-2.406,2.642,-3.549,12.67,8.871,1.465,23.011,17.091,26.144,28.775,23.332,20.845,19.524,21.748,17.405,29.0,25.731,15.322,20.849,19.6,16.124,18.556,17.232,22.042,22.891,24.765,19.917,23.815,16.212,15.623,27.031,18.568,17.483,18.657,18.997,20.579,14.489,7.709,19.828,21.294,15.486,18.074,12.187,19.871,13.613,19.936,15.317,13.891,14.94,22.018,20.372,6.821,15.375,17.952,12.884,19.797,10.672,15.961,13.894,8.498,8.826,13.96,15.994,15.865,19.789,16.909,16.24,13.806,6.643,3.792,4.608,10.986,7.718,11.797,3.043,12.822,11.069,5.304,6.718,11.805,9.418,4.153,10.778,9.707,3.571,7.565,13.732,10.03,-0.927,6.158,12.161,8.805,8.947,9.779,14.132,3.839,0.195,6.983,6.421,4.333,10.391,16.54,9.894,4.08,7.007,7.205,7.609,0.816,5.352,-0.246,-1.941,2.139,13.598,3.739,11.358,7.861,2.02,-0.33,-2.563,-0.574,1.026,8.621,4.503,7.678,-0.837,8.411,2.843,0.993,-2.882,-3.423,1.035,1.79,-3.692,1.037],[17.641,21.334,21.634,29.78,24.922,17.937,27.259,21.451,24.209,16.954,16.707,17.292,19.294,19.738,21.441,21.672,21.291,19.178,13.466,14.156,13.886,15.831,14.693,6.436,18.567,19.923,15.434,9.492,15.99,15.285,8.363,3.495,5.791,12.909,9.508,12.333,5.619,11.797,6.182,10.508,8.166,10.722,5.125,4.967,8.386,11.701,3.128,15.049,0.665,6.348,8.8,4.011,0.214,8.409,0.852,1.682,-2.249,0.494,-2.658,2.649,-3.475,12.842,8.994,1.56,23.115,17.381,25.862,28.754,23.057,21.152,19.846,21.65,17.272,28.865,25.657,15.57,20.999,19.789,16.135,18.443,17.993,22.401,23.072,24.533,20.068,23.68,16.188,16.096,26.991,18.561,17.411,18.761,18.889,20.558,13.848,7.514,20.035,21.187,15.058,18.037,12.061,20.059,13.916,19.517,15.161,14.401,14.69,21.748,20.541,6.612,14.834,18.269,12.898,19.684,11.105,15.699,13.983,8.058,8.936,14.028,16.004,15.533,20.152,17.16,16.402,13.437,6.162,3.326,4.447,10.717,6.888,12.172,2.829,13.469,11.194,5.672,6.808,11.029,9.351,3.719,11.776,9.523,3.293,7.3,13.609,9.875,-1.203,6.218,12.609,8.45,9.025,10.012,13.642,3.955,0.9,7.351,6.308,3.911,11.095,16.256,9.917,4.341,6.823,7.253,7.308,1.026,5.772,-0.177,-2.042,2.178,13.702,3.77,11.518,8.121,2.336,-0.109,-2.996,-0.965,0.865,8.818,4.589,7.709,-0.716,8.853,2.933,0.746,-2.936,-2.921,1.623,1.905,-3.293,1.371],[17.501,21.393,21.446,29.658,24.871,18.113,27.277,21.661,24.264,16.965,16.781,17.259,19.155,19.782,21.413,21.676,21.228,19.104,13.371,13.954,13.904,15.956,14.68,6.13,18.54,20.151,15.581,9.477,16.084,15.108,7.996,3.527,5.622,13.053,9.493,12.138,5.533,11.734,6.314,10.695,7.984,10.606,5.09,4.921,8.595,11.845,3.172,15.045,0.699,6.306,8.917,4.201,0.214,8.379,0.91,1.421,-2.353,0.454,-2.794,2.65,-3.331,12.997,9.025,1.656,23.252,17.392,25.808,28.571,22.794,21.277,19.627,21.996,18.02,28.843,25.784,15.788,20.626,20.242,16.367,18.446,18.843,22.403,22.789,24.825,19.895,23.994,16.314,16.303,26.731,18.568,17.319,18.982,19.252,20.687,14.325,7.207,19.995,21.626,14.713,17.892,12.091,19.693,13.916,19.441,15.195,14.546,15.282,21.272,20.614,6.203,14.875,18.948,12.483,19.926,10.861,15.286,13.628,7.213,8.463,14.131,16.453,15.487,19.605,17.144,16.865,12.651,5.961,3.024,4.916,10.818,6.782,12.421,3.009,13.468,11.378,5.558,6.707,11.43,9.359,3.828,11.417,9.95,3.476,7.361,13.384,9.789,-1.128,6.779,12.74,8.202,9.319,10.204,13.33,3.918,1.289,7.438,6.323,3.998,10.977,15.761,9.582,4.503,7.142,7.554,7.628,1.21,5.777,-0.35,-1.971,2.265,13.959,3.608,11.33,8.678,2.38,-0.149,-3.122,-1.042,1.196,9.068,4.495,7.488,-0.599,9.19,3.362,0.883,-2.959,-2.545,1.467,2.006,-3.591,1.523],[17.524,21.369,21.236,29.511,24.947,18.348,27.212,21.878,24.471,16.908,16.823,17.445,18.928,19.713,21.224,21.595,21.183,19.098,13.437,13.786,13.962,16.1,14.675,5.998,18.73,20.275,15.714,9.498,16.285,15.054,7.664,3.514,5.425,13.221,9.569,11.867,5.553,11.856,6.341,10.706,7.853,10.412,5.024,5.044,8.669,11.873,3.199,15.001,0.751,6.143,9.15,4.456,0.391,8.41,0.819,1.401,-2.42,0.463,-2.945,2.594,-3.112,13.045,9.126,1.691,23.115,16.994,25.995,28.606,23.1,21.158,18.982,22.057,17.702,28.748,25.721,15.726,20.73,20.711,16.748,18.162,19.113,22.1,22.381,24.715,19.525,23.648,16.549,15.814,26.878,18.689,17.213,18.772,19.156,20.509,14.548,6.744,20.024,21.549,15.077,17.809,12.233,19.088,13.491,19.32,14.941,14.626,15.176,21.121,21.024,6.226,15.016,18.664,12.578,20.209,10.286,14.93,13.095,7.134,8.481,13.996,16.954,15.527,19.509,16.842,16.752,12.99,6.292,3.251,5.54,11.109,6.87,12.774,3.362,12.874,11.352,5.629,6.091,11.982,9.333,4.208,11.198,10.153,3.49,7.817,13.555,9.466,-1.083,6.824,12.757,8.576,9.335,9.867,13.574,3.69,0.992,7.459,6.21,4.658,10.402,15.788,8.978,3.945,7.314,7.504,7.849,1.015,5.682,-0.734,-1.793,2.182,14.028,3.622,11.94,8.712,1.62,-0.0,-2.444,-1.207,1.143,9.04,4.498,7.369,-0.64,9.057,3.458,1.191,-2.911,-2.299,1.169,2.078,-3.952,1.009],[17.604,21.395,21.045,29.549,24.842,18.529,27.077,22.045,24.61,16.809,16.846,17.611,18.567,19.515,20.951,21.487,21.086,19.095,13.663,13.629,13.969,16.156,14.604,6.132,18.972,20.357,15.735,9.562,16.36,15.061,7.376,3.553,5.463,13.245,9.672,11.809,5.552,12.085,6.401,10.52,7.759,10.132,5.029,5.317,8.611,11.851,3.009,15.07,0.743,6.051,9.406,4.565,0.506,8.474,0.644,1.44,-2.439,0.484,-3.067,2.451,-2.831,13.111,9.243,1.725,23.198,17.014,26.376,28.879,23.57,20.943,19.052,22.397,17.36,28.344,25.812,15.895,20.65,20.6,16.437,18.229,19.039,21.812,21.967,24.636,19.235,23.778,16.648,15.802,27.136,18.326,16.779,18.352,18.924,20.224,14.409,6.259,19.91,21.159,15.623,18.439,12.505,19.571,13.357,19.39,14.636,14.675,15.22,20.821,21.151,6.031,15.458,18.335,12.264,19.869,10.66,15.529,12.836,7.8,8.565,14.141,17.082,15.916,20.217,16.972,16.57,13.129,6.669,3.486,5.163,11.132,6.587,12.94,3.339,13.367,11.567,5.324,6.399,10.844,9.794,3.759,10.938,9.927,3.622,7.312,13.802,9.092,-1.019,6.962,12.37,8.514,9.315,9.751,13.563,3.655,0.591,7.454,6.514,4.196,10.665,16.27,8.953,3.961,6.841,7.115,7.804,1.014,5.639,-0.34,-1.559,2.115,14.083,3.82,12.319,8.593,1.565,-0.036,-2.269,-1.634,0.955,8.984,4.347,7.928,-0.363,9.039,3.63,1.064,-3.045,-2.45,1.408,2.212,-3.489,0.014],[17.676,21.373,20.971,29.784,24.571,18.583,26.926,21.964,24.755,16.767,16.926,17.641,18.322,19.339,20.658,21.346,20.915,19.099,13.9,13.557,13.96,16.098,14.451,6.294,19.172,20.511,15.729,9.505,16.219,15.207,7.262,3.674,5.716,13.241,9.829,11.831,5.618,12.217,6.337,10.463,7.766,9.858,4.857,5.611,8.512,11.93,2.757,15.197,0.683,5.996,9.533,4.533,0.501,8.478,0.751,1.332,-2.373,0.471,-3.155,2.291,-2.566,13.281,9.263,1.805,23.249,17.52,26.336,29.137,23.491,20.673,18.809,22.771,17.577,28.378,25.199,15.925,20.851,20.206,16.281,18.885,18.88,21.503,22.248,24.654,19.149,23.831,17.048,16.037,26.611,17.806,16.523,18.911,18.966,19.731,14.678,6.326,20.224,20.867,15.635,18.774,12.664,19.9,14.153,19.357,14.518,14.586,15.25,20.197,21.005,6.393,15.35,18.912,11.86,20.279,11.04,16.102,13.181,7.626,8.906,14.07,16.537,16.201,20.316,17.223,16.287,12.793,6.625,3.124,4.962,11.158,6.438,12.234,3.154,13.296,11.935,5.466,6.563,10.48,9.734,3.331,10.443,9.814,3.985,7.217,14.118,8.822,-1.1,6.757,12.365,7.721,9.239,9.668,13.494,4.09,0.557,7.305,6.881,3.495,10.884,16.327,9.487,4.163,6.95,7.231,8.039,1.091,5.682,-0.08,-1.404,2.212,14.203,3.706,11.807,8.377,2.179,0.015,-3.024,-1.348,1.144,9.191,4.195,8.19,-0.558,9.749,3.73,0.906,-3.307,-2.667,1.348,2.058,-3.076,-0.35],[17.861,21.473,20.838,30.047,24.411,18.66,26.667,21.799,24.775,16.896,17.018,17.762,18.329,19.329,20.355,21.222,20.723,19.1,14.214,13.478,13.889,16.114,14.399,6.492,19.329,20.637,15.78,9.322,16.161,15.35,7.113,3.821,6.025,13.102,9.933,11.803,5.767,12.213,6.149,10.462,7.804,9.613,4.63,5.811,8.337,12.1,2.584,15.282,0.613,5.992,9.655,4.432,0.363,8.578,0.946,1.299,-2.374,0.446,-3.244,2.149,-2.393,13.35,9.176,2.048,23.342,17.317,26.239,29.377,23.336,20.504,18.574,22.629,17.731,29.372,25.29,15.842,20.757,20.163,16.524,19.134,19.017,21.055,22.451,24.437,19.434,23.624,16.784,16.484,26.104,17.868,16.546,19.219,18.755,19.68,14.686,6.788,20.548,20.751,14.943,18.457,12.239,19.276,14.609,19.246,14.028,14.387,14.984,19.752,21.162,6.303,15.424,19.521,12.206,19.782,10.925,15.584,13.595,7.342,9.084,13.827,16.241,15.654,20.061,17.46,16.267,12.519,6.22,2.984,4.768,11.46,6.804,12.147,3.019,13.259,12.023,5.977,6.126,11.216,9.632,3.343,10.626,9.831,4.583,7.319,13.89,8.648,-1.294,6.863,12.964,7.581,8.998,9.89,13.452,3.893,1.018,7.46,7.191,3.643,10.587,15.902,9.595,3.833,7.233,7.342,8.076,0.802,5.999,-0.404,-1.274,2.434,14.286,3.386,11.906,8.514,1.945,0.455,-3.309,-1.544,0.572,9.686,4.497,7.687,-0.84,10.324,3.634,0.623,-3.159,-2.784,1.412,1.479,-3.305,0.066],[17.957,21.5,20.933,30.337,24.43,18.782,26.447,21.701,24.59,17.037,17.071,17.887,18.354,19.37,20.132,21.091,20.532,18.893,14.439,13.409,13.756,15.998,14.33,6.606,19.354,20.584,15.904,9.242,16.036,15.471,7.014,4.047,6.13,13.021,10.026,11.811,5.922,12.004,6.084,10.448,7.93,9.508,4.598,5.985,8.252,12.287,2.594,15.167,0.579,6.03,9.96,4.32,0.122,8.709,1.039,1.107,-2.504,0.428,-3.317,1.975,-2.308,13.256,9.316,2.303,23.267,17.135,26.038,29.563,23.068,20.792,18.837,22.372,18.566,29.575,25.382,15.914,20.627,20.555,16.82,19.044,19.059,20.676,22.164,24.54,19.104,23.368,16.95,16.449,25.899,18.401,16.589,19.599,18.54,19.651,14.995,7.323,20.975,20.935,14.923,18.558,11.98,18.578,14.725,18.65,14.405,14.627,15.34,19.58,21.217,6.367,15.777,19.069,11.749,20.085,10.444,14.957,13.526,7.135,8.477,13.838,16.453,15.113,19.666,17.612,16.761,12.777,6.183,3.174,4.68,11.414,6.588,12.737,2.854,13.058,11.793,5.586,6.911,11.422,10.268,3.386,10.6,9.938,4.691,6.991,13.921,8.602,-1.135,6.75,13.076,8.317,8.933,9.887,13.349,3.59,1.414,7.073,7.137,3.83,10.736,16.39,9.245,3.518,7.559,7.281,8.469,0.365,5.78,-0.842,-1.387,2.526,14.156,3.225,12.364,8.495,1.76,0.897,-3.036,-1.681,0.303,9.819,4.615,7.445,-1.135,9.76,3.192,0.287,-3.262,-2.583,1.662,1.609,-3.754,0.449],[18.001,21.5,20.959,30.547,24.526,18.836,26.135,21.701,24.415,17.183,17.127,17.877,18.345,19.383,20.018,20.925,20.273,18.631,14.623,13.32,13.652,15.829,14.267,6.635,19.24,20.316,15.979,9.043,15.943,15.67,6.957,4.263,6.16,13.11,10.192,11.882,6.016,11.867,6.031,10.546,8.025,9.394,4.653,6.04,8.142,12.492,2.68,15.066,0.688,6.129,10.288,4.128,-0.194,8.853,1.101,0.824,-2.703,0.456,-3.209,1.737,-2.174,13.16,9.665,2.575,23.306,17.656,26.082,29.521,23.043,20.719,19.037,22.419,18.835,29.151,25.013,16.519,20.782,20.329,16.413,19.386,19.226,20.505,22.029,24.533,19.31,23.542,17.376,16.252,26.18,18.599,16.519,19.194,19.052,19.169,14.774,7.207,21.37,20.692,15.36,18.652,11.956,18.64,14.555,18.499,14.799,14.942,14.873,19.465,21.117,6.31,15.172,18.622,11.838,19.836,10.397,14.623,12.678,7.428,8.601,13.67,16.583,14.871,19.827,17.672,16.935,13.565,6.521,3.311,4.804,11.673,6.537,12.384,3.098,13.24,11.534,4.911,7.279,10.933,10.133,3.296,10.443,9.481,4.424,7.017,13.563,8.678,-1.217,6.894,13.105,8.747,9.237,9.895,13.477,3.956,1.129,6.846,7.25,3.811,11.223,16.448,9.382,3.94,7.467,7.375,8.934,0.359,5.306,-0.952,-1.402,2.211,14.137,3.293,12.205,8.831,1.519,0.804,-3.024,-1.44,0.98,9.348,4.278,7.967,-1.097,9.505,3.111,0.517,-3.418,-2.315,2.105,2.36,-3.388,0.417],[18.195,21.665,20.861,30.695,24.67,18.86,25.885,21.749,24.384,17.356,17.212,17.547,18.343,19.419,20.01,20.764,19.965,18.52,14.701,13.366,13.569,15.682,14.151,6.659,19.11,20.127,15.932,8.912,15.716,15.939,6.883,4.386,6.224,13.171,10.321,12.072,6.009,11.837,5.922,10.619,8.11,9.233,4.688,6.016,7.873,12.604,2.852,14.96,0.807,6.235,10.454,3.864,-0.463,8.91,1.189,0.713,-2.777,0.524,-2.946,1.556,-1.866,13.045,9.951,2.822,23.412,17.683,26.116,29.69,23.189,20.524,18.709,22.598,17.787,29.594,24.341,16.785,21.087,19.983,16.225,19.582,19.138,19.901,22.225,24.501,19.08,23.95,17.049,16.106,25.772,18.334,16.454,19.03,18.948,19.309,15.024,6.254,21.342,19.87,15.39,18.373,12.003,18.308,14.864,18.343,14.462,14.736,14.869,19.367,20.897,6.893,15.058,19.027,12.277,19.097,10.584,14.295,12.722,7.66,8.6,13.636,16.3,15.054,19.843,17.473,16.775,13.387,6.901,3.077,5.139,12.05,6.984,12.148,3.547,13.229,11.432,4.912,7.326,11.0,10.193,3.558,10.598,9.19,4.537,6.907,13.682,8.649,-1.043,6.665,13.684,8.333,9.04,10.13,13.339,3.987,0.833,6.939,7.154,4.068,11.902,16.061,9.768,3.886,7.181,7.212,8.793,0.535,5.479,-0.874,-0.8,2.014,14.15,3.101,12.187,9.505,0.912,0.948,-2.707,-1.311,0.432,9.009,4.545,8.688,-1.511,10.499,3.251,0.881,-3.576,-2.274,2.451,3.094,-3.36,0.325],[18.265,21.806,20.683,30.916,24.855,18.807,25.8,21.882,24.529,17.342,17.213,17.224,18.26,19.297,20.084,20.678,19.703,18.364,14.784,13.495,13.524,15.491,14.236,6.671,19.004,20.064,15.837,9.018,15.496,16.104,6.852,4.436,6.308,13.133,10.445,12.148,5.888,11.918,5.789,10.497,8.265,9.202,4.747,5.974,7.603,12.602,3.011,14.876,0.906,6.322,10.516,3.735,-0.769,8.954,1.283,0.667,-2.77,0.464,-2.788,1.452,-1.432,12.945,10.081,3.032,23.386,17.159,26.017,29.759,23.07,20.914,18.915,22.697,17.884,29.986,24.533,16.401,21.119,20.198,16.527,19.772,19.155,19.083,22.248,24.511,19.334,23.732,17.119,15.955,24.967,18.503,16.524,19.015,18.627,19.61,14.72,6.419,20.812,19.715,15.123,18.542,12.25,18.118,14.931,18.031,14.562,14.136,14.872,19.066,20.761,6.457,16.041,19.193,11.775,19.573,10.171,14.575,12.75,7.193,8.47,13.509,16.562,14.911,19.266,17.344,17.016,13.351,7.195,2.907,5.391,11.718,6.732,12.346,3.925,12.97,11.666,4.943,7.212,11.424,10.555,3.396,10.366,9.341,5.083,6.897,13.638,8.451,-0.627,6.231,13.649,7.914,8.947,10.016,13.04,3.916,1.08,6.657,7.486,3.964,12.305,15.968,9.798,4.181,7.219,7.663,8.977,0.399,5.299,-0.995,-0.25,2.098,13.755,3.273,12.538,9.605,0.741,1.357,-2.196,-1.079,0.265,9.078,5.105,8.516,-1.612,10.92,2.817,0.735,-3.658,-2.094,2.796,2.981,-3.765,0.637],[18.269,21.807,20.733,31.081,24.927,18.79,25.774,22.063,24.687,17.157,17.112,17.013,18.22,18.967,20.078,20.577,19.654,18.259,14.731,13.417,13.52,15.415,14.411,6.65,19.061,19.899,15.878,9.14,15.31,16.16,6.722,4.552,6.411,12.969,10.396,12.159,5.669,12.027,5.746,10.297,8.288,9.222,4.697,6.074,7.471,12.436,3.128,14.874,1.018,6.402,10.582,3.744,-0.808,8.977,1.428,0.772,-2.798,0.356,-2.752,1.399,-0.947,12.844,10.201,3.206,23.489,17.214,26.263,29.755,23.357,20.269,18.819,22.9,18.677,29.919,24.995,16.288,20.897,20.376,16.247,19.988,19.085,19.187,21.983,25.049,19.121,23.623,17.053,15.962,24.769,18.767,16.357,18.697,18.524,19.898,14.848,7.087,19.936,19.897,14.441,18.261,12.55,18.354,14.889,18.36,14.657,14.205,14.762,19.134,21.115,6.543,15.613,18.61,11.878,19.898,10.217,14.286,13.297,7.68,8.913,13.248,16.785,14.519,19.176,17.475,17.042,13.627,6.989,3.253,5.456,12.151,6.17,12.512,3.636,13.552,11.883,4.471,7.294,11.268,10.409,3.344,10.663,9.118,5.258,7.054,13.904,8.309,-0.863,5.988,13.699,8.258,8.965,9.572,13.246,4.243,1.287,6.836,7.433,3.863,12.194,15.881,9.622,4.522,7.659,8.153,9.125,-0.062,5.013,-1.297,-0.407,2.263,13.964,3.285,12.313,9.363,1.155,1.643,-2.573,-1.354,0.977,9.13,4.937,7.916,-1.896,10.43,2.435,0.745,-3.789,-2.068,2.733,2.62,-3.315,1.0],[18.494,21.686,20.833,31.146,24.918,18.759,25.692,22.306,24.866,17.046,16.895,16.951,18.19,18.538,20.116,20.393,19.554,18.26,14.7,13.236,13.486,15.393,14.503,6.777,19.118,19.754,15.985,9.305,15.166,16.148,6.519,4.617,6.518,12.898,10.29,12.247,5.521,12.146,5.79,10.111,8.229,9.273,4.717,6.231,7.524,12.2,3.193,14.833,0.876,6.557,10.498,3.853,-0.857,8.887,1.591,1.026,-2.774,0.338,-2.828,1.404,-0.627,12.875,10.267,3.441,23.525,17.158,26.343,30.014,23.499,19.69,18.645,23.029,18.754,30.169,24.564,16.897,21.064,20.481,16.251,20.182,19.122,19.693,21.945,24.954,19.158,24.242,17.121,15.71,25.507,18.398,16.302,18.607,18.075,19.515,14.791,7.376,19.373,20.215,14.349,18.399,12.396,18.209,14.526,18.364,14.731,14.474,14.419,19.094,20.847,6.716,15.339,18.835,12.084,19.594,10.822,13.97,13.394,7.573,8.587,13.595,16.514,14.513,19.085,17.511,16.671,13.286,6.92,3.683,5.648,12.012,6.443,11.929,3.761,12.723,11.817,4.566,6.895,10.964,10.052,3.528,10.586,8.976,5.135,6.721,13.842,8.249,-0.679,5.937,13.732,8.396,8.967,9.421,13.366,4.145,1.756,6.601,7.472,4.425,11.684,16.089,9.822,4.18,7.665,7.773,8.96,-0.518,4.93,-1.307,0.028,2.494,14.061,3.211,11.909,9.458,1.841,1.849,-2.801,-1.292,0.727,9.403,4.852,7.869,-1.442,10.158,2.603,0.802,-3.884,-1.664,2.625,3.293,-3.207,1.327],[18.88,21.606,20.98,31.108,24.944,18.723,25.626,22.554,24.884,16.946,16.775,17.028,18.17,18.179,20.172,20.139,19.416,18.183,14.628,13.083,13.371,15.488,14.441,6.97,19.171,19.613,15.865,9.352,15.141,16.018,6.37,4.707,6.511,12.67,10.05,12.27,5.433,12.154,5.924,10.058,8.175,9.275,4.746,6.437,7.682,11.993,3.261,14.749,0.79,6.691,10.323,4.009,-1.098,8.707,1.745,1.363,-2.666,0.44,-2.948,1.492,-0.488,12.934,10.281,3.723,23.292,17.285,26.229,30.355,23.581,19.551,19.012,23.322,18.826,29.784,24.402,17.031,21.167,20.797,16.224,20.332,19.113,19.918,21.726,24.235,19.121,24.265,17.027,15.55,25.678,18.07,16.325,18.57,17.962,19.567,14.866,7.469,19.054,19.977,14.89,18.706,12.481,18.405,14.561,17.978,14.274,14.078,14.032,18.951,20.634,7.194,15.514,19.05,11.956,19.347,10.686,14.406,13.323,6.892,8.966,13.824,16.386,14.417,19.018,17.339,17.079,13.378,7.189,3.626,5.934,11.501,6.987,11.796,4.087,12.474,12.149,4.749,6.924,11.035,10.365,3.55,10.425,9.21,4.753,6.996,13.826,8.253,-0.643,6.324,13.313,8.13,8.561,9.368,13.183,4.229,1.93,6.389,7.514,4.211,10.786,16.164,9.893,4.401,7.181,7.597,8.644,-0.092,5.486,-1.151,0.411,2.569,14.092,3.286,12.211,10.114,1.599,2.064,-2.488,-1.301,0.779,9.339,4.979,7.901,-1.561,10.332,3.136,0.627,-3.699,-1.309,3.136,3.722,-3.531,1.615],[19.29,21.621,21.1,31.017,24.85,18.67,25.658,22.732,24.718,16.714,16.732,17.145,18.256,18.046,20.244,19.903,19.356,18.057,14.543,12.929,13.244,15.545,14.376,7.176,19.317,19.415,15.587,9.252,15.217,15.912,6.365,4.889,6.315,12.392,9.901,12.445,5.471,12.11,6.041,10.053,8.049,9.246,4.814,6.622,7.907,11.785,3.364,14.657,0.925,6.642,10.384,4.256,-1.334,8.526,1.999,1.568,-2.609,0.688,-3.015,1.522,-0.357,12.852,10.183,3.929,23.309,17.376,26.331,29.986,23.187,19.113,18.767,23.941,18.939,29.772,24.346,16.721,20.856,21.025,16.39,20.971,18.955,19.775,22.015,24.99,19.357,24.061,16.959,15.742,25.286,18.179,16.403,18.568,18.092,19.426,14.579,7.471,18.917,19.723,15.449,18.271,12.821,18.535,14.913,17.952,13.973,14.192,14.637,18.527,20.862,6.959,15.302,18.824,11.375,19.615,10.308,14.779,13.042,7.087,8.829,13.322,16.206,14.709,19.29,17.19,16.982,13.574,6.987,3.496,5.683,11.478,6.819,11.822,4.178,12.945,12.26,4.806,6.586,11.161,10.147,3.219,10.835,9.588,4.884,7.236,13.905,8.317,-0.883,6.547,13.114,7.929,8.484,9.646,12.908,4.752,1.411,7.275,7.585,3.971,10.444,15.76,9.719,4.826,7.1,8.18,8.79,-0.401,5.785,-1.053,-0.062,2.608,13.901,3.185,12.192,11.014,0.947,2.162,-2.393,-1.616,1.162,9.57,5.121,7.526,-1.842,10.22,3.261,0.815,-3.384,-1.097,3.339,3.614,-3.796,1.114],[19.602,21.603,21.198,30.833,24.842,18.511,25.699,22.941,24.659,16.586,16.717,17.232,18.293,18.072,20.244,19.723,19.386,18.253,14.513,12.825,13.11,15.544,14.304,7.32,19.314,19.243,15.463,9.097,15.527,15.853,6.495,5.227,6.068,12.418,9.916,12.571,5.51,12.109,6.063,10.054,7.936,9.24,4.885,6.859,8.293,11.59,3.475,14.389,0.942,6.485,10.538,4.432,-1.588,8.417,2.17,1.465,-2.693,0.931,-3.082,1.402,-0.226,12.771,10.177,4.138,23.476,16.655,25.836,29.252,23.001,18.868,18.713,24.073,19.496,30.135,24.28,16.857,20.904,21.257,16.143,21.041,19.046,19.516,22.337,24.88,19.457,23.891,16.979,15.822,25.519,17.966,16.368,18.726,17.975,19.466,14.442,7.251,18.762,19.885,15.377,18.654,12.908,17.883,14.498,17.814,13.565,14.426,14.62,18.476,21.017,6.924,15.303,18.963,11.138,19.416,10.395,14.485,13.079,7.23,8.2,13.051,15.704,14.652,18.995,17.031,17.254,13.522,6.702,4.051,4.803,11.584,6.479,11.532,4.06,12.357,11.67,4.965,6.93,11.715,10.031,3.56,10.78,9.946,5.104,7.047,13.927,8.391,-0.71,6.183,12.945,7.798,8.919,9.4,12.706,4.27,1.354,7.863,7.578,4.512,10.664,15.4,9.713,4.616,7.269,7.858,8.923,-0.616,5.708,-0.772,0.319,2.945,13.617,3.24,11.686,10.938,1.098,2.748,-2.497,-1.493,1.255,9.255,4.997,7.464,-1.854,10.069,3.361,1.088,-3.387,-1.273,3.557,3.47,-3.533,0.373],[19.853,21.548,21.26,30.564,24.83,18.361,25.719,23.277,24.534,16.383,16.721,17.222,18.218,18.056,20.093,19.671,19.481,18.527,14.452,12.704,13.028,15.438,14.28,7.38,19.412,19.012,15.534,9.069,15.827,15.91,6.557,5.58,5.828,12.508,10.022,12.574,5.544,12.082,5.965,10.007,7.932,9.265,4.895,7.02,8.746,11.482,3.532,14.023,0.953,6.292,10.42,4.431,-1.781,8.42,2.342,1.306,-2.767,0.981,-3.055,1.354,-0.117,12.594,10.119,4.315,23.372,16.338,25.721,28.929,23.255,18.975,19.059,23.658,20.031,30.603,24.378,17.492,20.911,21.624,16.377,21.035,18.925,19.299,22.504,24.594,19.622,23.96,16.803,15.976,25.294,17.703,16.364,18.857,18.572,19.665,15.06,7.309,18.552,20.078,15.109,18.741,12.582,17.308,13.967,17.755,13.355,14.344,14.736,18.552,20.759,7.196,15.247,18.732,11.52,19.825,10.066,14.266,12.904,7.315,8.312,13.101,15.963,14.796,18.908,17.035,17.232,13.697,6.595,4.563,4.273,11.461,6.478,11.852,4.381,12.119,11.613,4.801,7.012,11.551,10.146,3.917,10.235,10.205,5.459,7.452,13.983,8.316,-0.544,6.343,12.353,8.146,8.824,8.799,12.812,4.07,1.326,7.66,8.244,4.641,10.822,15.608,9.735,4.718,7.117,7.16,8.624,-0.857,5.74,-0.011,0.511,2.95,13.972,3.196,11.898,9.743,1.665,2.993,-2.593,-1.517,1.268,9.421,4.576,7.487,-2.386,10.132,3.148,0.685,-3.925,-0.943,3.747,3.861,-3.018,-0.17],[20.003,21.499,21.307,30.428,24.783,18.293,25.662,23.637,24.476,16.048,16.874,17.226,18.186,18.225,19.854,19.659,19.72,18.628,14.321,12.626,13.009,15.288,14.208,7.411,19.653,18.786,15.745,9.338,16.025,16.035,6.448,5.939,5.67,12.567,10.235,12.448,5.615,12.102,5.803,9.77,8.079,9.269,4.947,7.166,9.006,11.467,3.562,13.944,0.96,6.095,10.119,4.208,-1.963,8.411,2.388,1.228,-2.695,0.96,-3.045,1.386,0.06,12.5,10.059,4.493,23.357,16.503,25.867,28.864,22.812,19.257,18.861,23.645,19.836,30.175,24.333,17.882,20.75,22.193,16.097,21.575,18.768,19.589,22.625,24.781,19.584,23.854,16.598,16.168,25.125,17.456,16.363,18.758,18.704,19.153,14.933,8.12,18.428,19.994,14.709,18.359,12.322,17.459,13.993,18.189,13.635,14.149,14.746,18.849,20.608,6.941,14.773,19.09,11.556,19.916,10.498,14.244,13.22,6.924,8.426,13.237,16.245,15.447,18.748,17.144,16.933,13.774,6.34,4.504,4.247,11.389,7.125,11.971,4.992,12.373,11.965,4.567,7.083,11.282,10.082,3.276,10.027,10.083,5.84,7.023,13.772,8.489,-0.71,6.365,11.84,8.4,8.728,8.958,12.46,4.577,1.518,7.636,8.644,4.178,10.199,15.497,9.746,5.028,7.156,6.892,8.613,-1.322,5.721,0.867,0.526,3.119,13.5,3.145,11.931,9.059,1.696,2.843,-2.656,-1.398,1.239,9.124,4.322,7.263,-2.734,9.84,2.995,0.476,-3.737,-1.354,3.83,4.089,-3.503,-0.825],[20.079,21.539,21.279,30.333,24.769,18.27,25.55,23.988,24.439,15.711,16.961,17.25,18.157,18.583,19.653,19.672,20.062,18.591,14.125,12.782,13.062,15.101,14.108,7.44,19.883,18.716,15.731,9.656,16.129,16.093,6.268,6.14,5.592,12.628,10.352,12.369,5.687,12.155,5.585,9.652,8.168,9.173,4.98,7.323,8.931,11.525,3.518,13.956,0.927,5.982,9.759,3.932,-2.183,8.256,2.344,1.294,-2.668,0.892,-3.126,1.425,0.182,12.525,9.918,4.574,23.307,16.153,25.821,28.734,22.975,19.9,18.654,24.092,19.652,29.754,24.025,17.884,20.733,22.778,16.261,21.549,18.55,19.753,22.401,24.59,19.462,23.376,16.655,16.215,25.633,17.337,16.204,18.926,18.481,18.47,14.421,8.645,18.209,20.423,14.257,18.941,12.347,17.705,14.283,18.548,13.329,13.895,14.954,18.905,20.427,7.001,15.146,19.256,11.186,19.626,11.006,14.278,13.271,7.322,8.894,12.906,16.305,15.491,18.299,17.33,16.819,13.59,6.027,4.791,4.67,11.659,7.01,11.826,5.628,12.489,12.015,4.802,6.984,11.294,10.336,3.204,10.589,10.157,6.03,6.791,13.942,8.446,-0.647,6.498,11.578,8.275,8.406,9.225,12.26,5.125,1.85,7.473,8.862,4.072,10.337,14.992,9.831,5.006,6.97,7.206,8.292,-1.64,5.553,1.785,0.816,3.216,13.061,3.187,11.791,9.677,1.246,3.007,-2.674,-1.391,0.985,8.943,4.106,7.495,-2.126,9.829,2.938,0.886,-3.224,-1.468,3.319,4.162,-3.804,-0.726],[20.001,21.611,21.264,30.191,24.78,18.258,25.544,24.302,24.389,15.419,17.141,17.259,17.989,18.985,19.525,19.623,20.463,18.383,13.938,12.911,13.07,15.011,13.988,7.403,20.023,18.75,15.585,9.877,16.103,16.188,6.212,6.306,5.556,12.668,10.518,12.444,5.746,12.261,5.517,9.84,8.139,9.043,5.086,7.499,8.752,11.481,3.359,13.948,1.017,6.101,9.485,3.767,-2.228,8.168,2.108,1.378,-2.872,0.915,-3.28,1.603,0.322,12.6,9.847,4.539,23.482,15.815,25.876,28.731,23.049,19.365,18.662,24.999,19.861,30.172,23.816,17.514,21.118,23.309,16.093,21.46,18.251,19.272,22.061,24.734,19.634,23.564,16.622,15.954,25.409,17.017,16.043,18.979,19.25,18.733,14.468,8.824,18.093,20.74,14.033,19.13,12.626,18.064,13.81,18.857,13.627,13.963,15.689,19.07,20.622,6.853,15.306,19.132,11.275,19.869,10.734,13.879,12.739,7.522,8.542,12.965,16.494,14.896,18.637,16.786,17.354,13.693,6.361,4.901,4.818,11.662,6.254,11.582,5.972,12.848,11.353,4.154,7.234,11.523,10.377,3.532,10.383,10.366,6.069,6.976,14.137,8.32,-0.587,6.081,11.916,7.869,8.452,8.972,12.286,4.562,2.068,7.638,8.805,4.301,10.329,14.681,9.955,4.678,6.952,6.909,7.735,-1.376,5.226,2.374,0.814,2.793,13.562,3.378,11.554,10.393,1.045,2.85,-2.994,-1.574,1.102,8.342,4.263,7.122,-2.397,8.959,2.8,1.223,-3.925,-0.648,3.642,4.085,-3.542,-0.611],[19.854,21.722,21.203,30.07,24.869,18.145,25.526,24.651,24.3,15.18,17.138,17.132,17.843,19.384,19.484,19.592,20.892,18.143,13.731,13.041,13.041,14.918,13.83,7.264,20.096,18.932,15.546,9.844,16.101,16.395,6.165,6.429,5.55,12.673,10.615,12.543,5.861,12.34,5.493,10.163,7.982,8.911,5.131,7.64,8.669,11.317,3.228,13.874,1.277,6.27,9.13,3.743,-2.175,8.093,1.937,1.492,-3.215,0.997,-3.508,1.865,0.635,12.728,9.795,4.396,23.648,15.757,25.885,28.838,23.027,19.221,18.677,25.326,20.024,29.686,23.853,17.947,21.456,23.212,16.373,21.329,18.504,18.452,22.403,24.607,19.384,23.795,16.452,16.12,25.378,16.757,15.982,18.814,19.779,19.387,14.647,8.694,18.109,20.124,13.999,19.048,12.795,18.069,13.521,19.576,13.98,13.995,15.421,19.051,20.421,6.711,15.686,19.431,11.697,19.58,10.734,13.727,12.378,7.132,9.009,13.183,16.041,14.848,18.876,16.85,17.42,13.788,6.706,4.722,4.295,11.68,7.214,11.914,6.254,12.675,12.205,4.198,7.379,11.523,10.312,3.719,9.848,9.929,6.074,6.857,13.878,8.337,-0.436,5.523,12.473,7.73,8.817,9.431,12.42,4.3,1.644,7.871,8.558,4.223,10.125,15.199,9.733,4.406,6.933,7.073,7.677,-1.073,4.829,2.262,0.344,2.204,13.616,3.666,11.452,10.17,1.186,2.961,-3.413,-1.736,1.34,8.514,4.397,6.751,-2.283,8.919,2.426,1.128,-4.472,-0.683,3.577,3.62,-3.909,-0.556],[19.755,21.752,21.078,29.913,24.925,17.912,25.476,24.859,24.276,15.187,17.071,17.043,17.918,19.713,19.505,19.582,21.257,17.978,13.609,13.244,13.037,14.867,13.671,7.18,20.227,19.106,15.637,9.796,16.052,16.528,6.308,6.371,5.472,12.676,10.641,12.495,5.918,12.444,5.536,10.394,7.663,8.797,5.138,7.805,8.739,11.127,3.219,14.023,1.467,6.356,8.94,3.622,-1.94,8.0,1.86,1.476,-3.61,1.05,-3.701,2.067,0.759,12.809,9.681,4.25,23.538,15.495,25.307,28.634,22.736,20.306,18.338,25.356,19.859,29.571,23.851,17.461,21.143,23.147,16.139,21.307,18.436,18.015,22.428,24.587,19.523,23.559,16.173,15.747,25.622,16.848,16.077,18.511,19.444,18.945,14.446,8.585,18.01,20.882,14.104,19.04,12.646,17.573,13.488,19.761,13.452,13.438,14.688,18.967,20.894,6.839,16.319,19.724,11.755,19.177,10.928,14.096,12.556,7.202,8.738,12.805,15.814,15.325,19.076,17.249,17.522,13.544,6.229,4.743,3.902,11.636,7.573,12.108,6.546,12.576,12.505,4.748,7.522,11.443,9.868,3.735,10.151,9.851,6.844,6.683,14.051,7.839,-0.101,5.947,12.627,7.695,9.161,9.572,12.77,4.659,1.699,7.386,7.802,3.94,10.005,15.423,9.244,4.527,7.006,7.245,7.414,-1.403,5.125,2.066,0.489,1.924,13.612,3.566,11.776,10.229,2.186,3.025,-3.78,-1.791,1.644,8.816,4.501,7.114,-2.364,9.249,2.677,1.381,-4.217,-0.407,3.368,3.25,-4.394,-0.463],[19.717,21.488,21.04,29.682,24.863,17.732,25.591,24.895,24.198,15.288,16.869,16.869,17.953,19.919,19.389,19.583,21.499,17.897,13.546,13.243,12.959,14.78,13.638,7.244,20.373,19.316,15.782,9.762,15.829,16.619,6.593,6.223,5.238,12.712,10.565,12.303,5.94,12.568,5.679,10.433,7.407,8.738,5.026,7.97,8.833,10.934,3.264,14.377,1.593,6.443,9.04,3.542,-1.769,8.171,1.819,1.516,-3.725,1.132,-3.774,2.22,0.719,12.879,9.595,4.19,23.344,15.524,25.153,28.257,22.499,20.905,18.724,25.032,19.86,29.411,24.144,17.822,20.904,23.128,15.899,21.359,18.059,18.324,22.245,24.603,19.231,23.512,15.788,15.535,25.381,17.017,16.077,18.61,19.652,18.711,14.24,8.706,18.126,21.483,13.883,19.115,12.23,17.301,13.45,19.859,13.761,13.191,15.226,18.844,21.002,6.826,15.99,19.67,11.823,19.256,10.749,14.107,12.479,7.523,8.489,12.96,16.122,15.083,18.784,17.3,17.819,13.443,6.185,4.341,3.902,11.543,6.695,11.947,6.547,12.722,12.117,4.719,7.492,11.682,9.84,3.975,9.926,9.659,8.124,6.983,14.339,7.868,0.137,6.286,12.435,7.941,8.989,9.448,13.027,4.736,2.399,7.278,7.553,3.884,10.279,15.258,9.078,4.792,7.264,7.104,7.485,-1.169,5.198,2.017,0.812,2.658,14.003,4.058,11.457,9.678,1.45,2.716,-3.886,-1.746,1.706,9.261,4.609,6.964,-2.515,8.551,2.984,1.772,-4.291,-0.238,3.123,3.409,-4.822,-0.37],[19.818,21.104,20.988,29.426,24.749,17.573,25.794,24.758,24.028,15.358,16.764,16.666,17.809,20.064,19.299,19.623,21.583,17.82,13.407,13.115,12.866,14.626,13.707,7.423,20.4,19.466,15.94,9.67,15.723,16.655,6.831,5.986,5.037,12.766,10.459,12.101,5.854,12.662,5.835,10.271,7.514,8.757,4.956,8.04,8.756,10.787,3.311,14.604,1.806,6.494,9.057,3.574,-1.592,8.375,1.868,1.433,-3.601,1.287,-3.659,2.357,0.657,12.945,9.619,4.154,23.001,15.835,25.343,27.947,22.517,20.532,18.705,24.891,19.881,29.109,24.224,18.119,20.94,23.08,15.951,21.374,17.765,18.683,21.95,24.448,19.157,23.645,16.029,15.775,25.674,16.953,15.965,18.496,20.116,18.834,13.907,8.921,18.307,21.324,13.977,19.134,12.736,17.579,14.095,19.908,14.083,13.503,14.888,18.916,21.135,6.757,16.007,19.542,11.523,19.325,10.63,13.485,12.139,7.748,8.582,12.962,16.93,14.537,18.911,17.086,17.393,13.522,6.426,4.289,4.172,11.686,6.765,11.902,6.262,12.765,12.212,4.991,7.674,11.243,10.078,3.545,9.805,9.6,9.004,7.325,14.128,8.432,0.415,6.153,12.502,8.017,8.774,9.821,12.87,4.657,3.102,7.611,8.087,4.043,10.464,15.738,8.906,4.788,7.148,7.172,7.621,-0.671,4.921,1.544,0.774,2.731,13.762,4.111,11.66,8.974,1.153,2.602,-3.96,-1.916,1.225,8.645,4.592,7.056,-1.921,8.632,2.385,1.7,-4.786,-0.276,3.162,3.715,-4.375,0.288],[20.086,21.013,20.893,29.241,24.658,17.468,26.022,24.524,23.797,15.412,16.91,16.57,17.62,20.178,19.284,19.722,21.497,17.706,13.313,12.87,12.85,14.424,13.864,7.565,20.316,19.645,16.114,9.488,15.649,16.647,7.014,5.846,5.024,12.705,10.429,11.937,5.742,12.672,6.065,10.136,7.775,8.963,4.924,8.075,8.551,10.803,3.391,14.728,2.165,6.473,9.081,3.558,-1.32,8.366,1.908,1.094,-3.423,1.484,-3.583,2.381,0.544,12.916,9.426,4.146,22.612,15.886,25.622,27.777,22.766,20.607,18.631,24.451,19.953,28.791,24.511,17.428,21.04,23.299,16.0,21.02,17.645,19.104,21.815,24.181,19.14,23.672,15.968,15.629,25.963,17.084,15.76,18.305,20.248,18.44,13.944,9.077,18.311,21.049,14.285,18.997,12.711,17.186,13.94,20.131,13.611,13.554,14.608,19.12,21.18,6.925,16.069,19.459,11.524,19.367,10.798,13.102,12.05,7.688,8.14,13.168,17.349,14.724,18.851,17.311,17.108,13.497,5.973,4.442,4.455,11.581,7.882,11.866,5.926,12.767,12.666,5.141,7.241,10.84,10.034,3.649,10.294,9.717,9.275,7.336,14.183,8.379,0.545,5.414,12.358,7.9,8.589,9.994,13.007,4.484,3.35,7.518,8.714,4.204,10.681,15.599,9.454,4.274,7.207,7.224,7.471,-0.007,4.967,1.239,0.817,2.339,13.705,4.222,11.733,9.19,1.487,2.571,-4.151,-1.72,1.561,8.108,4.658,7.515,-2.066,9.033,2.082,1.719,-4.269,-0.337,3.537,3.626,-3.821,0.279],[20.221,21.131,20.801,29.061,24.639,17.331,26.225,24.248,23.73,15.488,17.039,16.576,17.56,20.32,19.265,19.851,21.334,17.555,13.305,12.608,12.919,14.185,13.953,7.571,20.272,19.74,16.278,9.256,15.503,16.588,7.325,5.92,5.163,12.412,10.396,11.89,5.496,12.721,6.244,10.174,7.932,9.299,4.953,8.206,8.31,10.961,3.331,14.656,2.496,6.439,9.16,3.507,-0.983,8.359,2.0,0.957,-3.276,1.572,-3.799,2.385,0.291,12.943,9.232,4.107,22.865,15.685,25.422,27.748,22.405,21.207,18.387,24.373,20.513,28.994,24.806,17.497,21.376,23.78,15.941,21.758,17.817,19.386,21.702,24.047,18.954,23.69,15.57,15.129,25.79,16.988,15.548,18.293,20.244,18.352,14.142,9.035,18.096,20.861,14.436,19.589,12.015,16.88,13.409,19.893,13.467,13.102,14.836,19.597,21.396,7.556,16.297,18.963,11.451,18.782,10.404,13.061,13.01,7.59,8.099,13.044,16.863,14.992,19.043,17.764,17.346,13.347,6.303,4.088,4.14,11.098,7.746,11.773,6.087,12.14,12.803,5.208,7.157,11.049,9.793,3.936,10.34,9.753,9.076,7.585,14.241,8.631,0.751,4.757,12.325,7.935,8.584,9.449,13.089,4.686,3.388,7.378,8.684,4.537,10.491,15.568,9.78,4.471,7.111,7.099,7.639,0.469,5.287,1.589,0.529,2.441,13.891,4.102,11.302,9.087,1.246,2.495,-4.236,-1.739,1.008,7.996,4.616,7.611,-1.841,8.619,2.716,1.549,-3.837,-0.033,3.501,3.477,-3.608,0.35],[20.361,21.268,20.669,29.006,24.799,17.109,26.247,24.053,23.716,15.542,17.122,16.561,17.638,20.532,19.297,19.909,21.093,17.547,13.265,12.438,12.853,13.96,14.034,7.498,20.491,19.842,16.291,9.152,15.437,16.605,7.499,5.837,5.455,12.051,10.24,12.031,5.265,12.774,6.338,10.175,7.939,9.641,5.077,8.252,8.274,11.17,3.379,14.32,2.703,6.314,9.069,3.63,-0.53,8.332,2.061,0.897,-3.231,1.599,-4.153,2.3,0.101,12.888,9.074,3.997,23.04,15.798,25.121,27.472,22.098,21.507,18.145,24.38,20.288,29.093,24.706,18.174,21.106,23.747,16.07,21.766,17.651,19.011,21.794,24.405,18.885,23.64,15.519,15.347,26.055,17.117,15.715,18.246,20.111,18.702,13.825,8.973,18.171,21.017,14.538,19.872,12.29,16.512,13.436,19.44,13.141,12.462,14.604,20.4,21.628,7.709,16.44,18.876,11.415,18.811,10.05,13.188,14.051,8.037,7.743,13.025,16.546,14.548,19.105,17.866,17.625,13.438,6.902,4.18,4.4,11.27,7.709,11.554,6.265,12.058,12.291,5.453,7.028,11.225,9.824,4.059,10.441,9.644,8.992,7.273,14.125,9.032,1.022,4.514,12.693,7.789,8.797,9.507,12.956,4.725,3.104,7.31,8.478,4.125,10.112,15.635,9.354,4.659,6.937,7.256,7.71,0.487,5.357,2.098,0.741,2.57,14.014,4.029,12.003,9.267,1.317,2.597,-4.339,-2.099,1.119,7.993,4.488,7.193,-1.081,8.732,3.437,1.591,-4.272,-0.802,3.583,3.5,-3.945,0.217],[20.223,21.283,20.596,28.809,25.06,17.117,26.265,23.914,23.765,15.591,17.224,16.551,17.811,20.709,19.323,19.942,20.803,17.63,13.091,12.412,12.821,13.763,14.193,7.414,20.648,19.97,16.218,9.053,15.223,16.736,7.446,5.676,5.853,11.905,10.1,12.164,4.978,12.789,6.17,10.153,7.792,9.871,5.138,8.244,8.358,11.325,3.445,14.001,2.664,6.343,9.108,3.907,-0.064,8.241,2.091,0.794,-3.4,1.549,-4.355,2.313,0.026,12.951,8.92,3.982,23.062,16.018,24.629,27.321,21.978,21.63,18.459,24.449,19.938,28.533,25.092,18.418,20.902,23.392,16.212,21.569,17.226,18.567,21.754,24.621,18.818,23.661,15.497,15.604,25.869,17.084,16.09,18.287,20.815,19.146,13.788,9.122,18.205,21.122,14.731,19.878,12.737,16.299,13.072,19.215,13.215,12.432,14.569,21.15,21.709,7.009,16.066,19.605,11.416,19.125,10.077,13.088,14.321,8.59,7.729,12.734,16.851,14.478,18.986,17.652,17.513,13.653,7.076,4.209,4.904,11.399,8.207,11.304,5.988,12.353,11.987,5.815,6.908,11.247,9.575,4.032,11.165,9.578,8.798,7.576,14.266,8.725,1.133,4.519,13.112,8.115,8.672,9.704,12.793,4.556,3.817,7.409,8.365,3.905,10.318,15.017,9.403,4.868,7.333,6.873,7.653,1.008,5.49,2.957,0.748,2.651,14.154,4.204,11.93,9.617,1.015,2.203,-4.253,-2.353,1.234,7.565,4.484,7.277,-0.971,8.771,3.191,1.857,-4.557,-1.335,3.611,3.549,-4.169,0.104],[19.944,21.2,20.533,28.488,25.183,17.264,26.346,23.814,23.586,15.682,17.313,16.682,18.043,20.922,19.297,20.01,20.635,17.736,12.882,12.524,12.866,13.694,14.445,7.361,20.716,20.002,16.299,9.033,15.057,16.765,7.409,5.465,6.145,12.039,9.931,12.15,4.887,12.805,6.03,10.049,7.775,9.928,5.089,8.186,8.589,11.455,3.479,13.791,2.72,6.37,9.386,4.115,0.315,8.402,2.135,0.566,-3.563,1.542,-4.271,2.407,-0.087,13.056,8.754,3.967,23.062,15.731,24.913,27.51,21.916,21.624,18.878,24.335,20.15,27.982,25.356,18.257,20.911,23.692,15.945,21.395,17.588,18.698,21.12,24.593,18.712,23.608,15.673,15.365,25.648,16.899,16.12,18.39,20.754,18.971,13.428,9.059,18.465,20.805,15.051,19.533,12.813,16.248,12.703,19.067,13.546,12.103,14.381,21.346,21.812,6.767,15.789,20.245,11.132,19.108,10.227,13.023,13.628,8.686,7.572,12.56,17.026,14.624,19.035,17.597,17.428,13.517,7.354,3.841,4.854,11.058,7.919,11.19,5.687,11.527,12.233,5.516,6.691,11.024,9.6,3.943,11.12,9.106,8.754,7.267,14.313,9.376,0.931,4.657,13.213,8.209,8.315,9.5,12.246,4.531,3.753,7.149,8.696,4.316,11.183,14.823,9.337,4.693,7.322,6.633,7.813,1.585,5.489,3.2,0.5,2.819,13.948,4.233,11.464,10.02,1.334,2.237,-4.148,-2.344,0.781,7.569,4.467,7.209,-1.153,8.634,2.769,1.738,-4.673,-0.769,3.56,3.564,-4.412,0.406],[19.661,21.117,20.323,28.369,24.968,17.567,26.451,23.724,23.309,15.701,17.298,16.846,18.235,21.152,19.237,20.134,20.538,17.811,12.61,12.597,12.976,13.694,14.7,7.394,20.705,19.931,16.461,8.957,14.963,16.632,7.397,5.113,6.232,12.146,9.71,11.96,5.033,12.861,5.846,9.77,7.932,9.91,4.993,8.101,8.779,11.597,3.489,13.618,2.721,6.241,9.64,4.103,0.572,8.677,2.233,0.469,-3.682,1.553,-4.169,2.501,-0.121,12.983,8.739,3.95,22.733,16.014,25.031,27.169,22.072,21.731,18.752,24.394,20.046,27.813,25.115,17.984,21.201,23.381,15.99,20.801,17.877,19.219,20.769,24.613,18.63,23.746,15.843,15.399,26.141,17.378,16.261,18.407,20.106,18.793,13.012,8.922,18.661,20.564,15.276,19.697,12.712,16.403,13.07,18.936,13.605,12.165,14.647,21.289,21.748,7.023,16.097,19.687,11.704,18.975,10.06,13.158,13.307,8.204,7.912,12.903,16.91,14.427,19.437,17.733,17.467,13.322,7.834,3.404,5.047,10.506,7.619,11.172,5.81,12.011,12.535,4.594,6.791,10.828,9.966,3.854,11.252,9.169,8.349,7.124,14.474,9.25,0.863,5.008,13.4,8.006,8.12,9.476,12.12,4.254,3.3,7.228,8.358,4.373,11.612,14.995,9.351,4.749,7.224,7.087,8.261,1.812,5.552,3.422,0.279,3.231,13.961,4.32,12.103,9.793,0.709,2.51,-4.083,-2.504,0.809,8.019,4.351,7.642,-0.648,9.349,3.109,1.436,-4.535,-1.005,3.401,3.485,-4.505,1.007],[19.29,21.023,20.135,28.381,24.676,17.828,26.632,23.584,23.18,15.842,17.209,17.011,18.199,21.315,19.275,20.278,20.358,17.794,12.351,12.695,13.226,13.916,14.91,7.502,20.513,19.793,16.529,8.897,14.941,16.602,7.335,4.746,6.36,12.167,9.604,11.725,5.186,13.022,5.595,9.568,8.087,10.056,4.912,7.94,8.865,11.656,3.538,13.656,2.456,6.153,9.968,3.999,0.629,8.808,2.345,0.432,-3.739,1.72,-4.182,2.465,-0.141,13.03,8.885,3.975,22.527,16.733,24.903,27.36,22.113,22.143,18.38,24.285,19.836,28.13,25.454,17.941,21.726,22.833,15.991,20.785,18.223,19.315,20.792,24.023,18.181,23.429,15.969,15.573,26.363,17.281,16.284,18.396,20.546,19.121,13.25,9.013,18.884,20.711,15.604,20.092,12.902,16.81,12.818,18.711,13.787,12.768,14.217,21.063,21.629,7.247,15.97,19.171,11.763,18.965,10.02,12.918,13.175,8.067,7.689,13.411,16.593,14.322,19.612,17.827,16.983,13.249,7.781,3.082,4.971,10.092,7.876,11.508,5.11,12.464,12.667,4.682,6.874,10.815,9.596,3.838,10.814,9.2,7.446,6.406,14.414,8.65,0.948,5.421,13.571,8.283,8.015,9.512,12.271,4.254,3.484,8.002,7.781,4.01,11.026,14.543,9.859,4.709,7.634,7.118,8.401,1.841,5.765,3.491,0.111,3.248,14.392,4.245,12.37,9.359,1.099,2.461,-3.909,-2.468,0.747,7.812,4.235,7.859,0.096,9.805,3.53,2.171,-4.635,-1.63,3.616,3.354,-4.491,1.356],[19.109,21.088,19.961,28.542,24.413,17.902,26.887,23.49,23.313,16.204,17.038,17.117,18.085,21.499,19.389,20.424,20.098,17.634,12.142,12.799,13.501,14.164,14.992,7.586,20.3,19.698,16.428,8.798,14.884,16.525,7.253,4.381,6.387,12.27,9.614,11.733,5.228,13.178,5.356,9.501,8.225,10.057,4.967,7.704,8.947,11.564,3.493,13.859,2.218,6.107,10.261,3.949,0.764,8.805,2.417,0.545,-3.695,1.918,-4.221,2.561,-0.119,13.175,8.955,3.951,22.512,17.014,24.798,27.518,21.746,22.359,18.598,24.072,19.246,28.18,25.665,18.239,21.438,23.118,16.308,20.632,18.241,18.726,20.626,23.851,18.102,22.897,16.095,15.593,26.371,17.176,16.236,18.512,20.932,18.821,13.341,9.083,19.138,20.444,15.302,19.575,13.243,17.682,12.38,18.489,13.229,13.706,14.119,20.536,21.337,7.248,15.89,19.509,11.377,18.945,9.782,12.896,13.468,8.311,7.635,13.949,16.733,14.619,19.163,17.764,17.351,13.178,7.432,3.02,5.358,10.754,7.673,11.249,4.559,12.214,12.966,5.113,6.911,10.613,9.555,3.699,11.256,9.505,6.668,6.127,14.617,9.158,0.594,5.474,13.266,8.59,7.742,9.336,12.198,4.434,3.478,7.917,8.276,3.9,10.409,14.399,9.598,4.991,7.549,6.506,8.749,1.155,5.592,3.597,0.237,3.017,14.648,4.305,12.05,8.971,0.968,2.474,-3.98,-2.286,0.571,7.695,4.293,7.75,-0.488,9.524,3.48,1.622,-4.704,-1.3,3.78,3.465,-4.56,1.223],[19.258,21.209,19.801,28.729,24.177,17.849,27.096,23.407,23.512,16.41,17.018,17.142,18.07,21.705,19.301,20.604,19.829,17.517,12.061,12.773,13.701,14.546,15.012,7.646,20.032,19.592,16.386,8.544,14.866,16.299,7.244,4.062,6.509,12.302,9.817,11.781,5.189,13.301,5.28,9.344,8.201,10.073,5.126,7.503,9.038,11.366,3.454,14.026,1.961,5.977,10.404,4.023,0.804,8.617,2.353,0.463,-3.631,2.03,-4.04,2.475,-0.047,13.21,8.969,3.958,22.876,17.2,25.108,27.384,21.968,22.47,18.694,24.441,18.618,28.203,25.864,17.826,21.545,23.485,16.063,20.699,17.862,18.548,20.483,24.313,18.024,22.823,16.102,15.686,26.85,17.744,16.272,18.709,20.886,19.203,12.842,8.763,19.168,20.059,14.711,18.901,13.493,18.183,12.371,18.351,13.459,13.409,14.521,19.801,21.166,7.282,16.034,19.548,11.743,18.443,10.115,13.236,13.582,7.771,7.902,13.95,16.821,14.359,18.763,17.459,17.492,13.231,7.319,2.635,4.963,10.917,7.302,11.002,4.719,12.575,13.333,4.781,6.893,10.925,10.051,3.662,11.453,9.749,7.035,6.517,14.985,9.241,0.395,5.429,13.063,8.787,7.499,9.547,12.286,4.299,3.257,7.35,8.558,3.748,10.263,14.737,9.471,5.055,7.143,6.282,9.494,1.053,5.336,3.48,0.733,2.782,14.34,4.337,12.379,8.924,1.009,2.546,-3.825,-2.279,0.917,7.87,4.073,7.45,-0.8,9.87,3.007,1.639,-4.684,-1.067,3.962,3.489,-4.532,1.09],[19.528,21.381,19.741,28.887,24.088,17.715,27.129,23.483,23.711,16.533,17.09,17.19,18.092,21.916,19.192,20.646,19.661,17.429,12.128,12.717,13.845,14.682,14.797,7.64,19.65,19.495,16.472,8.506,14.819,16.034,7.159,3.878,6.65,12.305,10.039,11.804,5.218,13.358,5.339,9.263,8.077,10.207,5.107,7.294,9.039,11.24,3.403,14.079,1.771,5.781,10.645,4.028,0.805,8.396,2.281,0.268,-3.601,2.108,-3.688,2.324,0.067,13.135,8.992,3.938,23.146,16.996,25.264,27.98,22.484,22.725,18.254,24.042,19.261,27.792,26.262,17.879,21.516,23.459,16.252,21.023,17.795,19.116,20.8,23.807,17.842,22.797,16.001,15.757,27.016,17.768,16.355,18.569,20.937,19.106,12.509,8.503,19.474,20.051,14.924,19.01,13.546,18.105,13.038,18.357,14.296,13.515,14.258,19.568,20.845,7.632,15.45,18.661,11.684,18.646,9.832,14.049,13.661,7.809,7.266,13.725,16.999,14.226,18.931,17.739,16.756,13.288,7.658,2.222,4.934,10.189,7.424,11.046,4.175,12.831,13.45,4.703,6.872,10.778,10.191,3.827,11.019,10.068,8.271,6.411,14.934,8.959,0.249,5.297,12.942,8.608,7.638,9.121,12.577,4.592,3.038,7.593,7.781,3.566,10.111,15.015,9.61,4.899,7.619,6.539,9.128,1.221,5.645,3.591,1.15,2.668,14.301,4.229,12.491,9.503,1.072,2.663,-3.387,-2.163,0.855,8.003,4.039,7.022,-0.791,9.977,3.102,1.963,-4.63,-1.195,4.001,3.449,-4.464,0.68],[19.81,21.518,19.827,29.11,24.018,17.537,27.088,23.596,23.866,16.599,17.262,17.222,17.981,22.098,19.259,20.617,19.645,17.501,12.221,12.743,13.939,14.773,14.532,7.569,19.266,19.517,16.668,8.448,14.773,15.719,7.065,3.6,6.892,12.317,10.004,11.863,5.297,13.285,5.366,9.363,8.032,10.154,5.018,7.111,8.973,11.173,3.267,14.061,1.703,5.648,10.689,4.036,0.766,8.421,2.285,0.078,-3.557,2.077,-3.453,2.375,0.221,13.02,9.026,3.912,23.229,16.551,25.646,28.203,22.443,22.809,18.486,24.07,20.061,27.869,25.845,17.993,21.605,23.148,16.665,21.213,17.87,19.236,20.749,23.559,17.921,22.919,15.734,15.734,26.724,18.008,16.107,18.716,21.321,18.76,13.225,8.543,19.607,20.296,15.226,18.946,13.291,17.617,13.162,18.04,14.196,13.235,14.346,19.642,21.178,7.716,15.324,18.356,11.753,19.001,9.244,14.375,13.043,7.706,7.505,14.207,17.085,14.107,18.833,17.953,16.883,13.316,7.714,2.539,5.067,10.814,7.622,11.388,3.26,12.304,13.682,5.084,6.986,10.566,10.582,3.781,11.174,10.324,8.815,6.553,14.718,9.193,0.08,5.398,12.801,8.233,7.738,8.64,12.323,4.722,2.393,8.011,7.294,3.993,9.972,14.903,9.566,4.683,7.271,6.55,8.99,1.376,5.676,3.669,0.642,2.988,14.421,4.125,11.976,9.977,0.762,2.61,-3.058,-2.193,0.738,7.793,3.89,7.231,-0.698,10.264,3.225,1.371,-4.481,-1.261,3.484,3.353,-4.535,0.793],[20.234,21.633,20.046,29.398,23.903,17.263,27.034,23.608,23.903,16.636,17.369,17.197,17.865,22.179,19.471,20.611,19.736,17.73,12.299,12.858,13.926,14.851,14.3,7.515,19.125,19.575,16.749,8.425,14.902,15.489,7.089,3.251,7.146,12.284,10.062,11.883,5.376,13.15,5.404,9.53,8.034,9.976,4.901,7.042,8.949,11.221,3.16,13.951,1.605,5.609,10.594,4.284,0.645,8.476,2.135,0.029,-3.522,1.962,-3.455,2.288,0.21,13.032,8.998,3.929,23.232,16.581,25.609,27.897,22.641,22.824,18.108,24.564,19.689,28.68,25.675,18.505,22.25,23.437,16.647,21.413,18.175,18.964,20.625,23.7,18.28,22.94,15.777,15.772,26.746,18.144,15.935,18.779,21.716,18.846,13.57,8.229,19.38,20.076,15.154,18.089,13.752,17.465,12.916,17.874,13.382,13.396,13.869,19.605,21.412,7.109,15.317,18.526,11.575,18.986,9.697,14.08,12.849,7.607,7.632,14.112,17.482,14.424,19.05,17.973,16.843,13.382,7.882,2.567,5.361,10.909,7.308,11.48,2.291,11.942,13.685,4.5,7.113,11.031,10.332,3.66,11.419,10.494,8.747,6.576,14.623,9.172,-0.073,5.773,12.481,8.126,7.883,9.095,12.227,3.99,1.863,8.186,7.311,3.994,9.682,14.828,9.413,4.579,6.952,6.642,9.162,1.064,5.427,3.469,0.539,3.118,14.183,4.107,12.3,9.369,0.973,2.327,-3.338,-1.847,0.29,7.826,3.787,7.585,-0.888,9.957,3.442,1.745,-4.289,-1.075,3.469,3.428,-4.599,1.504],[20.64,21.708,20.236,29.59,23.784,17.079,27.067,23.66,23.922,16.615,17.232,17.155,17.867,22.206,19.62,20.564,19.795,17.956,12.363,12.826,13.768,14.891,14.137,7.457,19.105,19.634,16.695,8.72,15.164,15.351,7.106,3.027,7.29,12.152,10.121,11.928,5.463,13.183,5.287,9.722,7.975,9.793,4.667,7.079,9.137,11.218,3.151,13.889,1.42,5.691,10.544,4.652,0.445,8.383,2.026,0.112,-3.538,1.902,-3.607,2.274,0.087,13.13,8.816,3.872,23.382,16.903,25.495,28.161,22.542,22.798,17.921,24.378,19.579,28.95,26.042,18.503,22.122,23.994,16.602,21.645,17.937,19.502,21.026,23.865,18.337,22.758,15.563,15.864,26.497,18.091,16.119,18.745,21.748,19.212,12.904,7.482,19.188,19.889,15.219,18.289,13.609,18.14,12.655,18.175,13.231,13.783,14.585,19.811,21.367,6.463,15.211,18.304,11.839,19.133,10.056,13.756,12.867,8.256,7.82,13.355,17.873,15.072,19.153,17.891,16.459,13.467,7.921,1.952,5.869,10.598,7.207,11.127,1.824,12.104,13.184,4.346,7.139,11.159,9.954,3.463,10.803,10.739,7.89,6.732,14.827,8.801,-0.357,5.956,12.502,8.222,7.922,9.919,12.373,4.29,1.594,7.744,7.743,3.536,9.729,14.558,9.417,4.605,7.298,6.69,9.171,0.99,5.852,3.405,0.53,2.593,14.541,4.083,12.256,8.968,0.449,2.355,-3.223,-2.101,0.103,8.118,3.97,7.369,-1.147,9.736,3.551,1.708,-4.137,-1.316,3.462,3.272,-4.696,2.062],[20.865,21.7,20.231,29.679,23.682,16.934,27.134,23.709,24.03,16.624,17.093,17.127,17.914,22.196,19.749,20.533,19.876,18.23,12.395,12.801,13.47,14.915,14.008,7.31,19.147,19.728,16.632,9.144,15.537,15.287,7.181,2.795,7.181,12.029,10.108,12.019,5.555,13.285,5.208,9.927,8.075,9.588,4.556,6.962,9.315,11.224,3.111,13.865,1.091,5.846,10.629,4.784,0.425,8.218,1.937,0.119,-3.602,1.959,-3.804,2.3,-0.068,13.317,8.673,3.863,23.455,16.745,25.383,28.909,22.308,22.906,18.194,24.206,20.057,28.377,25.916,17.562,21.334,23.59,16.192,22.012,17.248,19.929,21.544,23.88,18.508,22.429,15.26,15.998,26.458,17.822,16.033,18.83,22.067,19.326,12.725,6.643,18.871,19.794,15.124,19.032,12.963,19.101,12.65,18.278,13.882,13.933,14.679,20.069,21.23,6.902,15.019,17.838,11.545,19.672,10.164,13.656,12.828,8.016,8.361,13.374,17.601,15.163,18.996,17.879,16.0,13.426,8.141,1.652,6.404,10.815,7.373,10.617,2.293,12.009,13.242,4.778,7.208,10.858,10.218,3.159,10.856,10.501,7.376,6.581,14.981,8.601,-0.544,5.568,12.569,8.747,8.145,10.09,12.229,4.212,1.969,7.753,8.161,3.702,9.894,14.581,9.576,4.578,7.202,6.259,9.356,0.936,6.143,3.631,0.245,3.158,14.514,3.965,12.418,9.174,0.838,2.49,-3.138,-2.432,0.058,7.593,3.899,6.915,-1.128,9.773,3.984,1.454,-4.302,-1.549,3.012,3.291,-4.746,1.931],[21.028,21.539,20.349,29.609,23.691,16.753,27.167,23.605,23.96,16.572,16.947,17.132,17.899,22.15,19.86,20.432,19.787,18.689,12.584,12.848,13.168,14.923,13.925,7.176,19.239,19.584,16.596,9.54,15.671,15.328,7.236,2.71,7.048,11.852,10.017,12.085,5.609,13.347,5.347,10.036,8.449,9.496,4.453,6.907,9.425,11.242,3.033,13.81,0.825,5.85,10.751,4.816,0.615,8.006,1.923,0.046,-3.732,2.019,-3.872,2.294,-0.087,13.451,8.61,3.958,23.248,16.789,25.359,29.257,22.403,23.001,18.219,24.214,20.751,28.169,25.913,17.199,21.75,23.943,16.02,21.61,17.074,20.036,21.439,23.392,18.641,22.343,15.058,16.036,27.128,17.772,16.222,18.899,22.087,19.077,13.58,6.075,18.697,19.984,14.626,18.954,12.622,19.07,12.893,18.119,14.179,13.816,15.019,20.816,21.033,6.871,14.802,18.199,11.422,19.653,10.788,13.963,12.481,7.595,8.586,13.376,16.816,15.034,19.349,17.952,15.566,13.37,8.129,1.583,5.804,10.477,7.541,10.374,1.894,12.178,13.885,4.655,7.222,11.0,10.293,3.136,11.18,10.797,6.476,6.522,14.847,8.651,-1.005,5.469,12.552,8.876,8.235,10.022,12.081,4.103,1.982,7.857,7.397,4.109,10.303,14.95,9.896,4.401,6.674,5.897,9.649,0.612,6.274,3.887,0.231,3.239,14.619,4.139,12.98,9.239,1.068,2.285,-3.773,-2.277,0.532,7.351,4.132,6.959,-0.931,9.823,4.308,1.696,-4.578,-1.556,2.867,3.538,-4.968,1.797],[21.069,21.528,20.599,29.539,23.722,16.637,27.243,23.574,23.753,16.484,16.802,17.108,17.882,22.095,19.89,20.353,19.512,18.792,12.964,13.003,12.933,15.029,13.75,6.987,19.256,19.334,16.483,9.812,15.556,15.402,7.235,2.647,6.836,11.668,9.817,12.24,5.591,13.445,5.596,10.003,8.744,9.644,4.326,6.774,9.49,11.224,2.997,13.825,0.676,5.757,10.809,4.934,0.769,7.876,1.958,-0.01,-3.847,2.025,-3.88,2.449,-0.016,13.594,8.486,4.078,23.062,17.039,25.47,28.92,22.633,23.106,17.763,24.393,21.259,28.445,26.111,17.694,22.175,23.634,16.31,22.146,17.517,19.969,21.49,23.38,18.717,22.373,14.913,16.395,26.737,17.839,16.008,18.881,21.545,19.32,13.784,6.234,18.541,19.78,14.776,18.434,12.663,18.888,12.888,18.056,13.855,13.897,15.057,21.385,21.001,6.734,14.896,18.633,11.557,19.83,10.589,13.92,12.388,8.34,8.956,13.015,16.899,14.974,19.04,17.911,15.756,13.181,7.739,1.912,5.204,10.215,7.39,10.215,1.285,12.421,14.539,4.553,7.301,11.347,10.373,2.84,10.852,11.077,6.614,7.15,14.447,8.844,-1.224,5.852,12.655,8.728,8.77,9.187,12.352,4.021,1.358,8.121,7.785,3.733,10.567,14.84,10.239,4.141,6.568,6.192,9.348,0.966,6.216,3.818,0.464,2.925,14.933,4.121,12.872,9.159,0.578,2.517,-3.41,-2.382,1.161,7.907,3.883,7.211,-0.557,10.092,4.101,1.754,-4.043,-1.513,3.024,3.369,-5.369,1.214],[21.058,21.681,20.839,29.499,23.788,16.612,27.199,23.629,23.588,16.312,16.826,17.179,17.696,21.968,19.902,20.373,19.282,18.59,13.231,13.259,12.744,15.277,13.556,6.786,19.18,19.016,16.403,9.916,15.452,15.495,7.341,2.553,6.606,11.434,9.59,12.524,5.482,13.57,5.947,9.88,8.843,9.922,4.214,6.719,9.543,11.223,2.888,13.838,0.629,5.663,10.744,5.027,0.911,7.881,2.023,0.13,-3.934,1.818,-3.768,2.552,0.103,13.68,8.415,4.098,23.387,16.449,25.433,29.048,22.717,22.672,17.782,24.113,21.313,28.34,26.447,17.923,21.671,23.164,16.365,22.369,17.561,19.697,21.722,24.078,18.998,22.198,15.401,16.516,26.613,17.983,16.051,19.055,21.618,19.427,13.657,6.606,18.546,19.257,14.874,17.871,12.963,18.997,13.486,17.706,14.021,14.389,14.624,21.14,20.827,6.412,15.241,18.704,12.059,19.726,10.491,14.04,12.572,8.351,8.894,12.686,17.108,15.138,18.536,17.396,16.129,13.732,7.008,2.155,4.831,10.216,7.436,9.958,1.598,12.207,14.575,5.27,6.691,11.474,10.603,2.82,11.028,10.75,7.518,7.35,14.818,8.91,-1.137,6.554,12.586,9.116,8.804,8.752,12.377,3.744,0.778,8.13,7.62,3.503,10.416,14.693,10.378,4.339,6.467,6.482,9.053,1.428,6.216,3.746,0.552,3.069,14.604,4.348,12.782,9.052,0.568,3.128,-3.098,-2.301,0.243,7.879,3.893,7.101,-0.221,10.73,3.971,1.797,-4.1,-1.503,3.374,3.694,-5.26,1.184],[21.062,21.738,21.091,29.509,23.955,16.664,27.159,23.577,23.605,16.302,17.056,17.251,17.467,21.734,19.943,20.386,19.139,18.335,13.368,13.425,12.69,15.542,13.347,6.6,19.055,18.685,16.321,9.868,15.503,15.558,7.481,2.523,6.372,11.249,9.473,12.77,5.279,13.634,6.241,9.68,8.825,10.087,4.163,6.805,9.569,11.266,2.942,13.951,0.591,5.63,10.744,5.064,1.158,7.865,2.13,0.211,-3.963,1.554,-3.505,2.575,0.198,13.567,8.326,4.202,23.491,15.917,25.348,29.051,22.949,22.373,17.753,24.014,20.961,28.237,26.223,17.68,21.659,23.462,16.254,21.926,17.441,19.376,21.755,24.121,19.247,22.544,15.32,16.662,27.027,18.064,15.682,19.02,21.719,19.039,14.152,6.454,18.755,19.109,14.595,17.507,13.028,18.602,13.633,17.618,14.865,14.384,14.894,21.109,20.418,6.028,15.165,18.42,12.13,19.81,10.549,14.356,12.629,7.963,8.899,12.399,17.076,15.078,18.421,17.546,16.605,14.437,7.017,1.76,4.619,10.264,7.335,9.876,2.502,11.745,13.921,5.851,6.373,12.029,10.011,2.921,11.452,10.648,7.842,7.706,15.132,9.407,-1.217,6.617,12.595,9.158,8.469,9.573,12.166,3.466,0.748,8.048,7.217,3.608,10.123,14.724,10.326,4.407,6.414,6.221,9.017,1.063,6.444,3.184,0.775,3.295,14.542,4.454,12.615,9.266,1.498,3.107,-3.085,-2.204,-0.532,7.313,3.915,7.176,-0.2,10.698,4.306,2.019,-4.975,-1.446,3.232,3.662,-5.037,1.64],[21.024,21.786,21.32,29.537,24.203,16.675,27.202,23.517,23.793,16.531,17.368,17.249,17.169,21.431,19.869,20.43,19.072,18.087,13.58,13.526,12.691,15.604,13.105,6.292,18.838,18.469,16.438,9.903,15.701,15.647,7.483,2.592,6.197,11.177,9.379,12.908,5.1,13.538,6.446,9.483,8.774,10.161,4.211,6.943,9.518,11.334,3.119,14.112,0.47,5.567,10.682,5.208,1.381,7.963,2.156,0.325,-4.046,1.425,-3.308,2.726,0.206,13.444,8.152,4.295,23.477,16.123,25.498,28.891,22.537,22.666,17.913,24.212,20.512,28.393,26.151,17.508,21.659,23.193,16.717,21.908,16.977,19.787,22.165,23.847,19.52,22.954,15.171,16.795,26.824,18.095,15.407,18.986,21.386,18.587,14.345,6.405,18.786,19.328,14.178,17.556,12.866,18.058,13.245,17.857,14.434,13.978,15.206,21.622,20.324,6.288,15.258,18.192,12.314,19.355,10.49,14.888,12.176,7.979,9.07,12.728,17.186,14.638,18.127,17.683,16.73,14.13,7.21,0.986,4.626,10.111,7.646,9.571,2.91,11.619,13.936,5.421,6.276,11.808,9.902,2.728,11.197,10.95,7.216,7.897,14.965,9.684,-1.412,6.235,12.82,9.134,7.583,9.793,12.26,3.885,0.946,7.946,7.052,3.861,10.126,14.746,10.235,4.266,6.517,5.787,9.221,0.925,6.615,2.979,0.51,3.366,14.447,4.375,12.604,9.339,1.274,2.897,-2.767,-1.805,-0.521,7.189,3.729,7.353,0.04,9.771,4.498,1.817,-4.814,-1.077,2.733,3.741,-4.847,1.778],[20.921,21.793,21.549,29.685,24.337,16.552,27.234,23.413,23.806,16.761,17.631,17.148,17.102,21.162,19.746,20.53,19.202,17.872,13.682,13.543,12.668,15.526,12.781,6.051,18.668,18.414,16.624,9.958,15.928,15.832,7.405,2.73,6.173,11.077,9.309,12.761,4.984,13.487,6.464,9.283,8.786,10.16,4.361,6.952,9.362,11.439,3.301,14.127,0.275,5.462,10.421,5.382,1.588,8.128,2.006,0.524,-3.977,1.477,-3.261,2.873,0.202,13.386,7.948,4.282,23.64,17.155,25.578,28.966,22.825,22.725,17.433,23.795,20.313,28.333,26.159,17.976,21.73,23.588,17.359,21.903,16.953,19.68,22.477,24.362,19.714,22.96,15.216,16.92,26.635,17.838,15.081,18.966,20.756,18.744,14.558,6.446,19.01,19.159,14.253,17.519,12.384,17.498,13.474,17.817,14.272,14.068,15.559,21.778,20.165,5.828,15.42,17.937,12.149,19.357,10.941,14.932,11.963,8.29,8.717,12.598,17.577,15.343,17.915,17.507,16.81,14.029,6.618,1.045,4.535,9.678,7.808,9.545,2.847,12.008,13.795,5.478,6.589,11.855,10.009,2.641,11.236,10.87,6.395,7.547,14.625,9.145,-1.507,5.297,12.817,9.101,7.797,8.945,12.343,4.421,1.312,8.16,7.935,4.517,10.214,15.022,10.58,4.14,6.63,5.772,9.314,1.31,6.682,3.035,0.654,3.353,14.377,4.5,12.724,8.911,0.715,2.836,-2.675,-1.814,-0.212,7.678,3.763,7.617,0.265,9.465,4.28,1.744,-4.631,-1.517,2.933,3.538,-4.998,1.863],[20.717,21.821,21.782,29.901,24.381,16.334,27.128,23.281,23.757,16.997,17.915,17.027,17.172,20.919,19.619,20.643,19.349,17.772,13.719,13.529,12.477,15.544,12.505,5.87,18.701,18.373,16.772,9.957,16.28,16.043,7.319,2.768,6.231,11.056,9.243,12.599,4.88,13.431,6.467,9.281,8.963,10.086,4.545,6.864,9.233,11.5,3.471,14.098,0.149,5.426,10.325,5.417,1.741,8.149,1.898,0.621,-3.826,1.67,-3.39,2.921,0.225,13.523,7.908,4.105,23.584,17.529,25.492,29.49,22.692,22.171,17.379,23.441,20.66,28.44,26.187,18.124,21.859,23.834,17.125,21.838,17.342,19.411,22.532,24.519,20.046,22.734,15.041,16.837,27.417,18.245,15.259,18.898,20.56,18.66,14.327,6.022,19.241,19.314,14.205,17.239,12.347,17.231,13.785,17.78,13.953,14.548,15.514,21.483,20.256,5.313,15.357,17.625,12.206,19.338,10.587,14.36,11.814,8.325,8.8,11.658,17.187,15.346,17.776,17.554,17.099,13.824,6.093,1.714,4.439,9.476,7.378,9.298,3.621,12.28,13.52,5.797,6.613,11.66,9.956,2.96,11.247,10.634,6.913,7.965,15.076,9.216,-1.44,4.961,12.877,8.86,7.884,8.285,12.467,4.338,1.432,7.985,7.667,4.886,10.491,14.953,10.387,4.065,6.624,5.992,8.701,1.118,6.825,3.459,0.784,3.167,14.561,4.592,12.138,8.249,1.633,2.809,-2.767,-1.953,0.701,7.279,3.762,7.527,0.464,9.753,4.374,1.997,-4.67,-1.623,2.96,3.39,-4.985,1.491],[20.52,21.778,22.03,30.132,24.317,16.227,27.027,23.323,23.644,17.268,18.073,17.034,17.092,20.672,19.449,20.774,19.287,17.776,13.65,13.469,12.305,15.698,12.319,5.65,18.695,18.335,16.732,9.968,16.446,16.228,7.265,2.744,6.238,11.032,9.174,12.45,4.827,13.41,6.83,9.266,9.042,9.907,4.651,6.823,9.199,11.475,3.552,14.046,0.197,5.432,10.335,5.354,1.686,8.002,1.818,0.85,-3.739,1.893,-3.497,2.989,0.417,13.737,7.916,3.896,23.398,16.808,25.588,29.679,22.903,21.833,17.828,23.367,20.787,28.861,26.491,18.016,22.112,22.913,17.063,21.715,17.288,19.322,22.698,24.275,20.183,22.639,15.275,16.496,27.328,18.311,15.323,18.853,20.58,18.848,14.474,6.049,18.987,19.504,14.03,17.513,12.345,17.228,13.58,18.368,13.952,14.972,15.636,21.141,20.268,5.726,15.556,17.892,12.248,19.129,10.482,14.236,11.542,7.729,8.961,11.69,16.786,15.645,17.965,17.811,17.686,13.668,6.438,2.39,4.51,9.841,6.917,9.401,4.041,11.82,13.468,5.447,6.476,11.704,9.727,3.251,11.372,10.652,7.277,7.788,15.203,9.922,-1.726,4.839,12.904,8.985,7.775,8.764,12.047,4.416,0.781,7.764,7.185,4.446,10.731,14.928,10.468,3.932,6.63,6.025,8.525,0.915,6.686,3.662,0.582,2.864,14.644,4.715,12.524,8.029,1.741,2.364,-2.874,-2.127,1.455,6.578,3.566,7.451,0.432,10.265,4.455,1.992,-4.377,-1.363,2.824,3.67,-4.976,1.077],[20.461,21.64,22.233,30.401,24.209,16.183,26.946,23.349,23.527,17.411,18.083,17.057,17.07,20.471,19.345,20.814,19.291,17.909,13.589,13.38,12.233,15.953,12.162,5.595,18.746,18.268,16.57,9.96,16.527,16.494,7.056,2.762,6.154,11.04,9.128,12.387,4.778,13.373,7.117,9.285,8.945,9.882,4.735,6.836,9.26,11.352,3.597,13.952,0.189,5.417,10.484,5.224,1.467,7.947,1.705,1.136,-3.79,2.0,-3.466,3.057,0.644,13.973,7.97,3.733,22.924,16.281,25.297,29.777,23.089,21.066,17.522,23.633,20.095,28.888,26.243,18.233,22.422,23.166,17.778,21.732,17.336,19.318,22.886,24.234,20.387,22.609,15.155,16.175,26.6,18.386,15.242,18.786,20.951,18.691,14.564,6.115,18.999,18.879,13.774,17.481,12.527,17.158,13.002,17.933,14.504,15.357,16.093,21.026,19.961,5.453,15.451,18.087,12.153,19.135,10.471,14.458,11.538,7.884,9.249,12.057,17.108,16.01,18.01,17.488,17.834,13.724,7.151,2.137,4.553,9.883,7.197,9.343,3.696,11.389,13.663,6.22,6.138,11.613,9.642,3.296,11.261,10.672,7.405,7.763,15.079,9.536,-1.587,5.565,12.577,9.165,7.552,9.107,11.821,4.061,0.247,7.662,7.626,4.465,10.865,14.529,10.353,3.469,6.3,5.977,8.803,1.337,6.459,3.82,0.964,2.944,14.808,4.674,13.149,7.617,1.695,2.266,-2.69,-1.992,1.64,6.512,3.648,7.673,0.563,10.318,4.485,1.89,-4.374,-1.261,2.804,3.331,-5.03,1.007],[20.71,21.466,22.352,30.548,24.17,15.953,26.842,23.308,23.493,17.363,18.057,17.076,17.002,20.312,19.379,20.906,19.229,18.109,13.576,13.365,12.295,16.211,12.007,5.633,18.749,18.203,16.419,9.993,16.952,16.413,6.867,2.705,6.225,11.033,9.07,12.398,4.772,13.433,7.263,9.153,8.921,9.815,4.687,6.947,9.259,11.144,3.607,13.798,0.254,5.353,10.663,5.037,1.377,7.995,1.674,1.367,-3.998,2.013,-3.227,2.93,0.77,14.084,8.029,3.544,22.782,17.113,25.339,30.406,22.739,20.379,17.615,24.378,20.073,28.952,25.784,18.516,22.325,23.614,17.572,21.696,17.263,19.385,23.071,24.305,20.629,22.456,15.18,15.818,26.525,18.148,15.135,18.705,20.928,18.235,14.186,6.086,19.332,18.966,13.647,17.402,12.737,17.254,12.763,17.985,14.363,15.733,15.956,20.606,20.177,4.972,15.579,18.081,12.242,19.48,10.531,14.919,11.95,8.231,9.092,12.275,17.075,15.967,17.785,16.868,18.026,13.523,6.879,1.679,4.488,9.795,7.374,9.604,3.666,11.535,13.631,6.733,5.993,11.352,9.908,3.302,11.331,10.763,7.657,8.407,14.88,8.817,-1.39,6.037,12.238,9.032,7.765,8.974,11.932,4.076,0.016,7.917,7.736,5.001,10.641,14.33,9.998,3.133,6.522,5.592,9.248,1.236,6.246,3.881,1.099,2.856,14.852,4.597,12.888,7.349,1.983,2.494,-2.595,-1.684,1.068,7.46,3.768,7.723,0.205,9.922,4.223,1.951,-4.745,-1.06,2.829,2.943,-5.034,2.173],[21.099,21.361,22.391,30.622,24.1,15.641,26.769,23.43,23.543,17.178,17.974,17.066,16.904,20.227,19.399,21.02,19.157,18.268,13.566,13.403,12.456,16.454,12.044,5.647,18.702,18.282,16.359,10.006,17.393,16.245,6.833,2.549,6.281,11.161,9.103,12.404,4.742,13.505,7.54,8.943,8.941,9.693,4.605,7.185,9.263,10.892,3.577,13.675,0.29,5.294,10.703,4.865,1.38,8.104,1.706,1.382,-4.284,2.108,-2.913,2.716,0.811,13.86,8.133,3.455,22.931,17.73,25.39,31.011,22.476,19.71,17.788,23.777,20.36,28.867,25.617,17.987,21.72,23.435,17.442,22.135,17.0,19.385,23.271,24.247,20.548,22.499,15.057,15.723,26.698,18.519,15.312,18.561,20.507,18.905,13.685,6.238,19.785,19.592,13.572,17.272,12.861,17.433,13.138,18.364,13.671,15.577,16.424,20.79,20.154,5.157,15.694,18.196,12.115,19.809,10.399,14.893,11.734,7.87,8.635,12.131,16.864,16.472,17.703,16.802,17.758,13.175,6.76,1.764,4.912,10.072,7.133,9.893,3.423,11.536,13.627,6.208,6.091,11.826,10.089,3.367,10.883,10.784,7.466,8.378,15.248,9.257,-1.514,5.675,11.654,9.069,7.9,8.642,12.043,4.032,0.433,7.958,7.408,5.316,10.632,14.394,10.258,2.914,6.631,5.583,9.363,1.126,5.908,3.683,0.907,2.79,14.966,4.288,12.622,7.174,1.913,1.906,-2.361,-1.679,1.236,7.975,3.671,7.444,0.046,9.792,3.876,1.556,-4.331,-0.752,2.729,3.263,-4.906,2.335],[21.446,21.375,22.426,30.601,23.969,15.399,26.741,23.457,23.524,17.046,17.898,16.987,16.98,20.143,19.483,21.24,19.257,18.359,13.457,13.371,12.58,16.443,12.209,5.659,18.638,18.35,16.315,9.871,17.575,16.221,6.807,2.403,6.265,11.405,9.402,12.518,4.659,13.579,7.75,8.762,8.935,9.588,4.538,7.289,9.334,10.594,3.562,13.575,0.331,5.284,10.561,4.621,1.385,8.121,1.712,1.24,-4.373,2.193,-2.672,2.49,0.801,13.576,8.275,3.468,22.934,17.501,25.285,31.261,22.632,19.231,17.667,23.223,20.187,28.867,25.918,17.647,21.387,23.35,17.711,22.611,16.377,18.984,23.278,24.635,20.65,22.412,14.693,15.839,26.639,18.323,15.301,18.645,20.671,19.103,13.53,6.285,19.637,19.47,13.884,17.25,13.301,17.712,13.98,18.053,13.139,15.573,17.115,21.504,20.173,5.475,15.282,18.07,12.032,19.684,10.243,15.462,11.598,7.689,8.93,11.73,16.94,17.255,18.01,17.211,17.376,13.32,7.504,1.564,4.901,10.076,7.132,9.903,3.358,11.775,13.494,5.925,6.337,11.611,9.892,3.02,11.008,10.86,7.293,8.436,15.349,9.63,-1.485,4.874,11.349,9.005,7.812,8.454,12.032,4.019,1.059,7.757,8.064,5.024,10.291,14.808,10.277,3.212,6.734,5.754,9.164,1.031,6.183,4.121,1.345,2.82,14.316,4.042,13.081,6.891,1.731,1.798,-1.849,-1.119,1.728,7.461,3.558,7.761,0.538,10.125,3.721,1.369,-4.548,-1.055,2.878,2.937,-5.247,1.765],[21.578,21.421,22.669,30.52,23.949,15.218,26.725,23.253,23.392,16.938,17.957,16.962,17.115,20.064,19.519,21.457,19.322,18.296,13.395,13.304,12.612,16.452,12.343,5.692,18.608,18.475,16.18,9.7,17.553,16.204,6.745,2.275,6.311,11.624,9.744,12.659,4.67,13.526,7.804,8.679,8.902,9.679,4.39,7.339,9.417,10.263,3.467,13.583,0.485,5.278,10.362,4.458,1.457,8.235,1.826,1.3,-4.408,2.285,-2.618,2.313,0.716,13.34,8.265,3.445,22.979,17.182,24.746,31.383,22.288,19.305,17.292,23.978,20.586,28.949,25.978,18.34,21.881,23.407,17.449,23.04,16.563,18.941,23.204,24.779,20.946,22.16,14.369,16.096,26.834,17.79,15.402,18.737,21.122,18.801,13.689,5.899,19.755,19.191,14.101,17.065,13.302,17.569,13.929,17.919,13.118,15.481,17.371,22.037,20.372,5.607,14.94,17.851,11.882,19.594,10.588,15.174,11.942,8.018,9.264,12.374,16.479,17.689,17.99,17.352,17.176,13.828,7.336,1.375,4.936,10.077,7.556,9.978,3.981,12.22,12.847,6.558,6.282,11.568,10.044,2.797,11.101,10.982,7.712,7.984,15.125,9.416,-1.203,4.566,10.982,8.838,7.362,8.63,11.582,4.132,1.66,7.88,8.254,5.105,9.919,14.693,10.255,3.631,6.627,5.562,8.903,0.969,6.117,3.956,1.156,2.858,14.237,4.074,13.063,7.227,1.402,2.491,-1.838,-1.169,1.298,7.109,3.596,8.064,0.827,10.015,3.597,1.4,-4.716,-1.047,3.134,2.967,-5.586,1.453],[21.62,21.554,23.036,30.503,24.04,15.145,26.81,23.177,23.155,16.858,18.084,16.973,17.143,20.086,19.504,21.575,19.264,18.13,13.486,13.212,12.75,16.403,12.508,5.782,18.376,18.687,15.852,9.582,17.567,16.089,6.81,2.245,6.409,11.899,10.01,12.7,4.714,13.244,7.748,8.616,8.817,9.822,4.256,7.373,9.495,9.895,3.409,13.517,0.832,5.227,10.172,4.381,1.58,8.409,2.116,1.305,-4.442,2.221,-2.851,2.292,0.648,13.228,8.197,3.633,22.828,16.865,23.836,31.065,21.877,19.221,16.892,24.07,20.652,28.933,25.756,18.586,22.241,23.139,17.562,23.205,16.897,19.396,23.581,24.467,21.126,22.249,14.316,16.378,26.447,18.092,15.594,18.797,21.063,18.567,13.92,5.255,19.991,19.318,14.389,17.531,12.702,17.44,12.955,18.324,13.656,15.926,16.764,22.79,20.537,5.493,15.077,18.162,11.942,19.505,10.577,14.711,12.094,7.839,9.034,12.779,16.496,17.294,18.325,17.167,17.479,13.793,7.178,1.579,4.837,10.295,7.474,10.373,3.982,12.094,12.754,6.881,6.48,12.261,9.959,2.834,10.97,11.073,8.305,8.122,14.859,8.968,-0.851,4.768,10.487,8.919,6.877,8.848,11.627,3.771,2.057,8.267,8.227,4.699,10.1,14.362,10.318,3.641,6.544,5.528,8.716,1.301,5.625,4.109,0.763,3.026,14.432,3.877,12.276,7.588,1.725,2.662,-1.892,-1.801,1.103,7.294,3.574,8.145,0.53,9.403,3.705,1.311,-4.486,-1.133,3.238,2.449,-6.033,1.531],[21.596,21.656,23.237,30.509,24.138,15.322,26.912,23.296,22.769,16.944,18.219,17.03,17.056,20.131,19.457,21.636,19.301,18.011,13.693,13.21,12.956,16.429,12.629,5.877,18.193,18.7,15.568,9.541,17.563,16.033,6.908,2.193,6.429,12.207,10.142,12.614,4.834,13.019,7.695,8.58,8.625,9.705,4.216,7.476,9.662,9.573,3.339,13.345,1.304,5.154,9.943,4.376,1.66,8.407,2.304,1.12,-4.501,2.105,-3.175,2.42,0.551,13.22,8.199,3.71,22.752,16.979,23.436,31.044,21.707,19.415,17.041,24.226,20.466,28.743,25.903,18.583,22.724,23.029,17.673,23.199,16.388,19.563,24.08,24.558,21.449,22.384,14.253,16.243,26.24,18.426,15.277,18.931,20.425,18.718,13.757,4.587,20.307,19.237,14.171,17.838,12.651,17.511,12.745,18.404,14.069,16.056,16.996,23.258,20.52,5.516,15.163,17.701,11.912,19.182,10.159,14.879,12.461,7.718,8.567,12.551,16.375,16.369,18.87,16.678,17.545,13.892,7.629,2.045,4.953,10.361,7.29,10.599,4.152,11.976,12.51,6.344,6.575,12.193,9.861,2.829,11.206,11.009,8.335,8.798,14.614,9.169,-0.433,4.753,10.227,9.023,6.761,8.909,11.894,3.685,2.275,8.182,7.711,4.535,9.414,14.147,9.956,3.152,6.876,5.634,8.773,1.594,6.102,3.783,0.471,3.091,14.02,4.009,12.093,7.663,1.641,2.86,-2.404,-1.905,1.509,7.209,3.697,8.284,0.691,9.383,3.643,1.174,-4.63,-1.182,3.58,2.428,-6.233,2.73],[21.508,21.753,23.31,30.416,24.244,15.615,26.938,23.493,22.471,17.016,18.284,17.06,16.96,20.145,19.211,21.67,19.435,17.866,13.923,13.299,13.053,16.609,12.526,5.936,18.057,18.638,15.461,9.494,17.483,16.001,6.931,2.385,6.493,12.352,10.056,12.482,4.889,12.951,7.628,8.668,8.353,9.565,4.295,7.51,9.633,9.237,3.304,13.229,1.793,5.064,9.813,4.425,1.819,8.434,2.372,0.946,-4.594,2.2,-3.27,2.49,0.598,13.257,8.181,3.626,22.486,17.648,23.454,31.566,21.158,19.577,17.715,24.213,20.395,28.682,26.328,18.712,23.174,23.364,17.557,22.949,16.409,19.32,24.307,24.934,21.586,22.431,14.147,15.834,27.078,17.806,15.335,18.792,20.676,18.539,13.381,4.371,20.571,19.433,14.313,17.585,13.057,17.84,13.116,17.921,14.048,15.891,17.976,23.368,20.34,5.388,14.995,17.057,11.823,19.256,10.427,15.231,12.704,8.123,8.656,12.759,16.109,15.586,18.296,16.949,17.493,13.361,7.27,1.701,5.133,10.415,7.776,10.959,4.004,12.346,12.029,6.381,6.773,11.619,10.01,3.23,10.853,11.021,7.853,8.155,14.451,9.122,-0.005,4.828,10.372,8.602,6.871,8.628,11.431,3.823,2.514,7.971,7.58,4.588,9.352,14.121,10.217,2.679,7.004,5.506,8.394,1.888,6.189,3.691,0.533,3.562,13.795,4.243,12.384,7.432,1.335,3.089,-3.243,-1.509,1.1,7.256,3.703,7.677,1.022,9.491,3.648,1.539,-4.955,-1.126,3.509,2.511,-6.163,2.832],[21.496,21.82,23.335,30.318,24.376,15.852,27.15,23.698,22.345,16.863,18.168,16.875,17.129,20.099,18.705,21.747,19.56,17.781,14.092,13.359,12.942,16.834,12.511,5.949,17.85,18.491,15.485,9.426,17.347,15.96,7.11,2.567,6.532,12.414,9.851,12.324,4.948,12.995,7.432,8.811,8.297,9.419,4.533,7.537,9.39,9.04,3.287,13.021,2.225,5.023,9.728,4.371,2.129,8.432,2.403,0.783,-4.629,2.358,-3.229,2.613,0.844,13.186,8.086,3.548,22.155,17.715,23.587,31.601,20.952,19.703,17.611,24.39,20.296,28.824,26.291,18.816,23.155,23.062,17.929,22.859,17.21,18.873,24.387,24.618,21.854,22.641,14.869,16.005,27.055,17.923,15.335,18.511,21.261,18.399,13.174,4.594,20.471,19.354,14.179,17.317,13.802,17.657,13.739,18.067,13.649,15.991,18.057,23.27,20.353,5.181,14.798,17.19,11.952,19.459,10.816,15.384,12.542,7.645,8.888,12.749,15.935,15.816,17.612,16.947,17.426,13.618,7.042,1.39,4.775,10.55,8.131,10.923,4.406,12.914,12.158,6.331,6.677,11.413,9.623,3.558,10.764,10.763,7.163,7.846,14.231,8.855,0.524,5.176,10.293,7.969,7.104,8.544,11.23,3.92,3.246,7.922,8.099,4.375,9.555,14.087,10.101,3.18,6.894,5.113,8.433,2.244,6.003,4.158,0.807,3.169,14.23,4.074,12.716,7.529,0.991,2.377,-3.456,-1.566,0.749,7.267,3.299,7.693,0.964,9.486,3.6,1.948,-4.988,-1.023,3.392,2.456,-5.783,1.838],[21.699,21.759,23.3,30.274,24.421,16.035,27.384,23.811,22.23,16.684,17.956,16.672,17.282,20.074,18.402,21.892,19.604,17.759,14.22,13.388,12.828,16.987,12.558,5.865,17.764,18.342,15.512,9.491,17.247,15.982,7.27,2.795,6.404,12.505,9.556,12.282,5.017,13.019,7.098,8.889,8.262,9.388,4.734,7.435,9.153,8.986,3.2,12.858,2.634,4.97,9.743,4.206,2.389,8.517,2.291,0.677,-4.505,2.352,-3.24,2.679,1.03,13.168,8.078,3.319,21.527,17.167,23.624,31.242,21.27,20.25,17.5,24.694,20.295,28.952,26.507,18.615,23.676,23.202,17.596,22.609,17.603,18.629,24.085,24.923,22.059,22.625,15.764,15.993,26.913,18.169,15.462,18.441,20.698,17.891,13.25,5.217,20.325,19.229,13.958,16.499,14.136,17.33,13.929,18.603,13.555,16.499,17.17,23.184,20.085,5.285,14.639,17.356,11.849,19.52,10.39,15.496,12.601,7.662,8.356,12.4,15.966,16.357,17.817,16.718,17.279,13.202,7.486,1.345,4.958,10.615,8.696,10.796,4.116,12.758,12.643,6.117,6.682,11.519,9.655,3.463,10.371,10.36,7.694,8.33,14.55,8.403,1.015,5.349,10.204,8.423,7.196,9.054,11.222,3.832,3.945,7.591,8.336,4.619,9.512,13.839,9.888,3.664,6.833,4.955,8.403,2.35,5.696,4.19,1.291,3.089,13.942,4.398,12.694,7.389,1.037,2.138,-3.157,-1.918,0.591,6.842,3.592,8.546,1.14,9.462,3.62,1.767,-4.813,-0.743,3.69,2.422,-5.688,1.99],[21.893,21.683,23.171,30.177,24.417,16.187,27.465,23.839,22.154,16.442,17.708,16.582,17.246,20.086,18.32,22.02,19.693,17.787,14.319,13.364,12.759,17.09,12.573,5.868,17.679,18.2,15.407,9.536,17.144,16.113,7.492,2.942,6.376,12.515,9.447,12.318,5.028,13.157,6.872,8.941,8.283,9.314,4.735,7.33,8.888,9.02,3.245,12.889,2.944,4.969,9.848,4.077,2.479,8.851,2.234,0.563,-4.242,2.277,-3.313,2.789,1.131,13.161,8.054,3.013,21.71,16.409,23.827,30.777,21.105,20.53,18.126,24.59,20.403,29.503,26.699,17.914,23.433,23.275,17.259,22.801,17.304,18.654,23.651,25.191,21.594,22.597,15.628,15.489,27.049,18.085,15.41,18.243,20.746,17.936,13.591,5.598,20.546,19.532,14.271,15.935,13.6,17.067,13.317,18.679,13.946,16.67,16.134,22.959,20.096,5.393,14.727,17.46,11.795,19.332,10.415,15.428,12.462,8.263,8.31,12.682,15.729,16.276,18.048,16.777,16.773,13.155,7.294,1.355,5.089,10.621,8.681,11.152,4.019,12.326,12.662,6.397,6.815,11.347,9.711,3.547,10.72,10.315,8.759,7.973,14.769,8.758,1.355,5.28,10.377,8.772,7.129,8.994,11.018,3.902,4.031,7.307,7.828,4.517,9.277,13.692,9.669,3.438,7.092,5.477,8.417,2.717,5.471,3.988,1.292,2.934,13.704,4.473,12.014,7.084,1.709,2.187,-2.694,-1.793,0.88,7.05,3.387,8.419,1.895,9.428,3.807,1.743,-4.32,-0.666,3.75,2.279,-5.784,2.346],[21.968,21.545,22.909,30.111,24.376,16.302,27.427,23.754,22.228,16.195,17.419,16.431,17.273,20.193,18.183,22.079,19.856,17.852,14.342,13.294,12.572,17.077,12.733,5.882,17.5,18.141,15.237,9.497,16.876,16.247,7.87,3.083,6.49,12.346,9.662,12.396,4.927,13.27,6.895,8.897,8.354,9.375,4.634,7.392,8.763,9.076,3.294,12.946,3.155,5.154,9.959,4.126,2.515,9.132,2.213,0.503,-3.971,2.173,-3.248,3.054,1.171,13.003,7.986,2.836,22.253,15.839,23.652,30.799,20.749,20.12,18.117,24.253,20.73,28.75,26.637,17.065,23.175,22.797,17.592,23.286,16.978,18.928,23.408,24.897,21.108,22.543,15.166,15.132,27.649,17.685,15.615,18.106,21.066,18.336,14.358,5.839,20.546,20.123,14.26,15.978,13.468,17.299,13.013,18.427,14.119,16.677,15.932,23.208,19.631,5.701,14.822,17.982,12.05,19.017,10.685,15.548,11.611,8.146,8.947,13.006,16.046,15.93,18.066,16.504,17.233,13.634,7.463,1.231,5.104,10.556,8.396,11.337,4.185,12.356,12.697,6.13,6.763,11.297,9.842,3.646,10.908,10.175,9.092,7.462,14.807,9.157,1.379,5.044,10.469,8.276,7.119,8.849,11.068,3.833,3.785,7.256,7.344,3.918,9.02,14.016,9.745,3.32,7.85,5.632,8.556,3.054,5.426,3.741,1.381,2.577,13.914,4.62,11.906,7.07,1.295,1.937,-2.692,-1.821,1.131,7.156,3.499,8.101,1.23,9.649,3.543,1.915,-4.153,-0.682,3.548,1.589,-5.521,2.306],[21.995,21.511,22.513,30.214,24.316,16.25,27.38,23.477,22.302,15.982,17.224,16.222,17.363,20.346,18.117,22.127,20.068,17.982,14.338,13.296,12.398,17.092,12.831,5.925,17.364,18.054,15.159,9.465,16.46,16.31,8.157,3.143,6.692,12.129,10.003,12.579,4.809,13.354,6.886,8.857,8.305,9.711,4.453,7.5,8.805,9.107,3.129,12.908,3.204,5.448,10.031,4.173,2.507,9.276,2.117,0.456,-3.868,2.118,-3.16,3.351,1.182,12.933,7.892,2.629,21.397,16.451,23.502,30.627,20.574,19.921,18.244,24.281,20.758,28.452,26.432,16.731,23.136,22.889,16.915,23.322,16.812,18.832,23.344,25.167,20.699,22.489,15.218,15.24,27.663,17.679,15.476,18.056,21.028,18.579,15.25,5.754,20.401,20.079,13.844,16.491,13.4,17.954,13.576,18.414,13.863,16.63,16.563,23.21,19.483,6.155,14.907,17.991,11.891,18.834,10.387,15.623,11.106,8.39,8.185,13.028,16.185,15.448,17.701,16.242,17.911,13.547,7.583,1.455,4.834,10.286,8.618,10.55,3.928,12.406,12.389,5.961,6.636,11.405,9.753,3.83,10.729,10.177,9.056,7.851,14.603,9.043,1.396,4.594,10.44,8.434,7.2,9.143,11.451,3.583,3.655,7.195,7.201,4.302,8.903,14.421,10.036,3.355,8.271,5.813,8.482,3.318,5.863,3.915,1.716,3.03,13.581,5.201,12.366,7.718,1.044,2.21,-2.457,-1.717,0.957,6.733,3.68,8.278,0.68,9.918,3.407,2.376,-4.188,-0.75,3.386,1.689,-5.524,1.565],[21.967,21.364,22.076,30.362,24.445,16.182,27.315,23.221,22.384,15.95,17.096,16.254,17.334,20.487,18.074,22.087,20.179,18.149,14.555,13.25,12.272,17.102,12.795,6.028,17.263,18.001,15.074,9.375,16.099,16.216,8.349,3.095,6.77,11.828,10.17,12.702,4.713,13.135,6.888,8.901,8.378,9.931,4.321,7.458,8.917,9.082,2.952,12.985,3.18,5.652,10.049,4.168,2.434,9.389,2.089,0.438,-4.043,2.097,-3.075,3.675,1.297,13.01,7.747,2.575,21.452,16.296,23.283,30.233,20.629,20.014,18.378,24.059,20.451,28.657,26.546,17.272,23.204,23.209,16.859,22.747,16.68,18.961,23.179,25.633,20.391,22.688,14.748,15.033,27.26,17.334,15.613,17.912,21.428,18.431,14.889,5.395,20.449,19.892,13.752,16.723,13.461,17.891,13.91,18.509,13.828,16.431,16.699,23.176,19.381,6.355,14.84,18.146,11.79,19.161,10.486,15.535,11.037,8.585,8.07,13.174,15.403,15.011,17.701,16.714,17.579,13.329,7.962,1.569,5.126,10.54,9.601,10.596,3.659,12.211,12.601,6.069,6.563,11.842,10.258,3.712,11.252,10.428,8.773,8.081,14.728,9.66,1.416,4.31,10.744,8.492,7.055,9.205,11.458,3.326,3.894,7.197,7.956,4.531,9.289,14.237,9.971,2.996,7.99,6.152,8.72,3.199,6.032,3.982,2.129,3.086,13.38,5.414,12.309,8.435,1.794,2.122,-2.225,-1.677,0.495,7.136,3.828,8.37,0.923,9.723,3.905,2.534,-4.326,-0.637,3.056,1.936,-5.713,1.472],[21.907,21.233,21.753,30.415,24.673,16.053,27.239,23.134,22.445,15.889,17.213,16.267,17.279,20.468,18.052,22.01,20.11,18.302,14.766,13.082,12.231,17.121,12.699,6.151,17.297,18.059,14.857,9.379,15.792,16.033,8.628,2.952,6.883,11.714,10.34,12.779,4.74,12.817,6.881,8.887,8.614,10.183,4.332,7.309,9.096,9.203,2.885,13.162,3.077,5.85,10.004,4.175,2.362,9.352,1.914,0.532,-4.275,2.063,-2.961,3.889,1.561,13.23,7.855,2.66,21.567,16.12,23.552,30.306,20.81,20.412,18.536,23.335,20.111,28.886,26.401,17.292,22.946,22.699,17.196,22.642,16.942,19.303,22.67,25.839,20.152,23.046,14.717,14.753,27.346,17.661,15.677,17.807,21.375,18.029,14.533,5.193,20.353,20.021,13.871,16.289,13.737,17.381,13.86,18.768,14.096,16.502,16.105,23.221,19.622,6.311,14.475,18.03,11.939,19.572,9.976,15.525,11.055,9.037,8.963,12.862,15.351,14.737,17.977,16.498,17.187,13.144,7.994,1.356,5.523,11.035,9.886,10.547,3.561,11.942,12.554,6.222,6.552,12.195,10.187,3.616,11.363,10.307,8.548,7.648,14.225,9.77,1.446,3.925,10.38,8.6,7.087,9.203,11.203,3.375,3.924,7.468,8.287,3.832,9.314,14.06,10.135,2.882,7.864,6.179,8.671,2.436,5.871,3.875,2.223,2.839,13.888,5.405,12.06,8.206,1.924,1.819,-2.699,-1.456,0.651,6.878,4.012,8.584,0.949,9.671,4.042,2.435,-4.402,-0.242,3.048,2.132,-5.849,2.158],[21.708,21.164,21.56,30.657,24.886,15.907,27.21,23.05,22.436,15.91,17.371,16.044,17.301,20.344,18.062,21.862,20.076,18.407,14.636,12.963,12.304,17.301,12.488,6.144,17.352,18.249,14.655,9.511,15.415,15.888,8.961,2.82,7.041,11.707,10.566,12.886,4.837,12.66,6.616,8.824,8.854,10.456,4.456,7.224,9.199,9.407,2.8,13.342,2.808,5.911,9.902,4.19,2.293,9.227,1.68,0.779,-4.231,2.156,-2.864,3.893,1.802,13.451,8.085,2.822,21.456,15.913,23.761,29.865,20.978,20.792,18.498,23.144,20.067,29.084,26.192,16.811,22.763,22.602,17.596,23.017,16.749,18.687,21.739,25.907,20.212,23.1,14.936,14.803,27.524,17.667,15.608,17.81,20.946,17.956,14.918,5.578,20.265,20.147,14.034,16.282,13.687,17.557,14.068,18.638,14.233,16.83,15.179,23.39,19.91,6.274,14.468,17.355,11.892,19.841,10.445,15.694,10.91,9.222,8.403,11.981,15.715,14.376,17.941,15.737,16.988,13.518,7.869,1.039,5.409,11.423,10.217,10.346,3.538,11.754,11.83,6.226,6.532,12.038,9.831,3.713,11.69,10.468,8.072,7.421,13.939,9.604,1.071,3.774,9.568,9.012,7.193,8.747,11.655,3.877,3.818,7.474,7.2,3.492,9.401,13.857,10.295,2.988,7.925,6.205,8.497,2.098,5.922,3.91,1.924,2.56,13.994,5.737,12.449,7.705,1.511,1.587,-2.816,-1.361,1.131,7.436,4.245,8.525,0.772,9.712,3.3,2.686,-4.276,-0.002,3.098,2.524,-5.989,2.089],[21.353,21.1,21.345,30.783,25.029,15.756,27.184,23.031,22.351,15.967,17.445,15.855,17.373,20.235,18.08,21.686,20.045,18.53,14.404,12.912,12.346,17.557,12.246,6.066,17.427,18.387,14.648,9.707,15.029,15.892,9.121,2.737,7.042,11.688,10.624,12.935,4.923,12.637,6.273,8.718,9.019,10.587,4.67,7.081,9.197,9.527,2.681,13.577,2.417,5.872,9.79,4.103,2.173,9.076,1.699,0.964,-3.967,2.287,-2.781,3.982,1.795,13.603,8.211,3.032,21.51,15.412,23.688,29.693,21.148,20.733,18.041,23.202,20.38,29.504,26.491,17.103,22.676,23.04,17.459,22.776,16.702,18.278,20.9,26.034,20.249,23.274,15.141,15.093,27.511,17.864,15.518,17.675,20.574,17.815,14.667,6.071,20.369,19.902,13.612,16.543,13.261,17.973,13.685,18.882,14.086,17.184,14.897,23.167,20.195,6.198,14.227,16.676,11.886,19.671,10.435,15.938,10.895,9.37,8.413,11.742,14.947,14.035,17.828,16.271,16.516,13.656,8.238,1.046,5.275,11.996,10.782,10.593,3.774,11.856,12.004,5.243,6.792,11.697,10.321,3.62,11.735,10.62,8.102,7.769,14.152,10.568,0.652,4.306,9.71,8.953,7.329,8.31,11.797,3.807,3.361,7.528,6.801,4.097,9.44,13.875,10.655,2.759,7.917,6.622,8.662,2.612,5.764,4.121,1.871,2.696,13.713,5.8,12.434,8.36,1.797,1.603,-2.43,-1.437,0.957,7.975,4.231,7.73,0.861,9.524,3.492,2.974,-4.244,0.024,2.787,2.886,-5.638,2.106],[21.082,20.998,21.142,30.763,25.206,15.559,27.195,23.163,22.267,16.002,17.46,15.769,17.344,20.137,18.163,21.521,19.996,18.733,14.173,12.888,12.34,17.737,12.054,6.019,17.428,18.561,14.813,9.865,14.652,15.864,9.226,2.715,7.023,11.691,10.635,12.924,5.087,12.788,5.9,8.61,9.173,10.735,4.697,7.06,9.2,9.666,2.635,13.758,1.995,5.835,9.754,4.066,2.148,8.73,1.838,1.034,-3.644,2.252,-2.642,4.196,1.628,13.577,8.34,3.254,21.477,15.5,23.923,29.775,21.088,20.282,18.239,23.28,19.667,29.718,26.417,17.438,22.726,22.445,17.087,21.697,16.952,18.821,20.989,26.195,19.695,23.489,15.195,14.987,27.243,17.754,15.547,17.667,20.277,18.03,14.08,6.039,20.196,19.962,13.155,16.928,13.383,17.377,13.518,19.018,13.78,17.073,14.91,23.196,20.235,6.014,14.084,16.594,12.041,19.227,10.251,16.159,10.324,9.293,8.828,12.269,14.694,14.382,17.97,16.709,16.5,13.625,7.924,1.493,5.409,11.736,10.02,10.778,4.02,11.832,12.515,4.918,6.779,11.912,10.274,3.989,11.822,10.474,8.238,7.269,14.445,10.384,0.2,5.426,10.601,9.094,7.415,8.132,11.976,4.354,2.743,7.55,7.924,4.064,9.551,14.222,10.712,2.266,8.106,6.713,8.433,2.889,5.871,3.977,1.735,2.393,14.106,5.862,12.491,9.287,2.19,2.033,-2.223,-1.525,1.057,7.805,4.217,7.346,0.642,9.458,3.769,2.805,-4.133,-0.122,3.043,2.756,-5.169,2.551],[20.797,20.909,21.026,30.756,25.424,15.393,27.181,23.26,22.233,15.921,17.29,15.757,17.292,19.957,18.55,21.45,19.995,18.78,13.945,12.872,12.323,17.681,11.864,6.096,17.437,18.777,15.01,9.796,14.445,15.883,9.117,2.727,6.954,11.754,10.506,13.076,5.319,12.977,5.564,8.636,9.281,10.784,4.778,7.265,9.276,9.994,2.5,13.856,1.665,5.813,9.817,4.154,2.271,8.404,1.824,1.037,-3.453,2.154,-2.549,4.31,1.417,13.589,8.602,3.469,21.172,15.873,23.808,29.943,20.836,19.731,18.56,23.402,19.113,29.59,25.921,17.019,22.543,22.586,17.523,22.023,16.601,18.925,21.554,26.388,19.402,23.69,14.91,14.602,27.411,17.873,15.577,17.543,20.414,18.197,14.157,5.625,20.056,20.263,12.777,16.649,13.626,17.112,14.092,18.605,13.969,17.111,14.709,22.978,20.578,5.692,13.992,16.41,11.917,19.396,10.4,16.196,9.987,9.563,9.073,12.545,15.157,13.918,18.326,16.485,16.846,13.612,8.099,1.71,5.359,11.044,9.95,10.467,3.769,11.715,12.596,5.065,6.809,12.254,10.39,3.7,11.756,10.557,8.631,6.579,14.481,10.192,0.069,6.023,11.142,9.172,7.298,8.066,12.342,4.104,2.302,7.505,7.991,3.216,9.953,14.76,10.365,2.59,7.806,6.305,8.574,2.244,5.953,3.906,1.494,2.796,14.255,6.002,12.145,8.981,2.216,2.609,-2.182,-1.056,1.288,7.31,4.287,7.066,0.451,9.137,3.95,2.876,-3.715,-0.295,3.04,2.624,-4.384,2.343],[20.74,20.751,20.977,30.707,25.613,15.368,27.154,23.311,22.186,15.93,16.996,15.776,17.319,19.754,19.024,21.361,19.972,18.692,13.937,12.755,12.276,17.66,11.748,6.227,17.386,19.0,15.155,9.728,14.411,15.971,9.07,2.678,6.903,11.789,10.173,13.249,5.47,13.218,5.265,8.808,9.248,10.668,4.727,7.429,9.418,10.475,2.225,14.028,1.41,5.693,9.852,4.408,2.288,8.115,1.754,1.162,-3.196,2.143,-2.427,4.259,1.173,13.642,8.735,3.635,20.79,15.858,23.492,30.278,21.077,19.236,18.693,23.56,19.45,29.431,26.319,16.743,22.429,23.122,17.486,22.067,16.557,19.093,21.908,26.604,19.776,23.889,14.46,14.303,27.631,17.484,15.728,17.275,20.099,18.101,13.837,5.341,20.115,20.224,12.685,16.144,13.18,17.471,13.819,18.077,13.996,17.253,14.367,22.951,20.319,6.207,14.432,16.452,11.684,20.004,10.367,16.013,10.006,9.296,8.516,12.663,15.882,13.285,18.964,16.448,17.187,13.814,7.766,1.25,5.173,11.206,10.368,10.38,3.794,12.048,11.991,5.003,7.049,12.157,10.382,3.708,12.124,10.774,9.069,6.23,14.059,10.503,-0.278,6.009,10.964,9.368,7.376,8.06,12.224,4.182,1.922,7.872,7.867,2.882,10.224,15.209,10.759,2.708,6.672,6.46,8.613,1.803,6.07,3.922,1.461,2.742,14.265,6.014,12.201,8.6,1.519,2.425,-2.556,-0.862,1.13,7.346,4.073,7.16,0.702,9.057,3.651,3.062,-3.944,-0.596,2.997,2.983,-3.514,1.778],[20.828,20.495,20.98,30.605,25.744,15.337,27.181,23.379,22.231,15.791,16.745,15.785,17.36,19.556,19.309,21.258,19.777,18.63,13.862,12.629,12.338,17.757,11.732,6.374,17.3,19.223,15.381,9.621,14.344,16.17,9.092,2.547,6.848,11.776,9.98,13.263,5.433,13.257,5.078,8.994,9.215,10.573,4.624,7.451,9.56,10.943,1.93,14.172,1.176,5.591,9.723,4.594,2.314,7.748,1.691,1.318,-2.851,2.122,-2.359,4.166,0.909,13.827,8.709,3.698,20.736,15.93,23.389,30.265,21.126,18.773,18.71,23.777,19.463,29.409,27.164,16.994,22.27,23.263,17.111,21.813,16.967,19.804,21.549,26.572,19.999,24.035,15.1,14.366,27.377,17.667,15.795,17.572,19.691,18.587,14.162,5.262,20.059,19.796,13.043,16.074,12.975,17.68,13.396,18.367,13.509,17.239,14.376,22.891,20.101,6.857,14.573,16.648,11.821,20.047,10.569,16.135,10.163,9.399,8.395,12.458,15.931,13.637,19.534,16.802,17.481,13.831,7.695,0.816,5.231,11.382,10.139,10.818,3.733,11.869,12.311,4.263,7.308,12.177,9.773,3.402,11.785,11.077,9.096,6.122,14.624,9.836,-0.541,5.381,11.302,8.985,7.555,8.333,12.506,4.048,1.711,8.186,7.82,3.015,10.255,15.239,10.889,2.561,6.134,6.499,8.595,2.159,6.423,4.078,1.279,2.644,14.495,5.838,12.359,9.364,1.155,2.291,-2.466,-0.852,1.23,7.606,4.006,7.334,0.486,9.065,3.667,3.026,-4.107,-0.954,2.865,3.446,-2.733,1.697],[20.79,20.308,20.983,30.52,25.84,15.396,27.227,23.472,22.425,15.684,16.768,15.756,17.437,19.372,19.456,21.094,19.461,18.592,13.784,12.576,12.416,17.797,11.905,6.512,17.346,19.415,15.655,9.603,14.336,16.493,9.054,2.382,6.89,11.825,10.072,13.256,5.142,13.304,4.931,9.111,9.186,10.327,4.404,7.222,9.644,11.346,1.807,14.349,1.093,5.609,9.519,4.58,2.402,7.53,1.66,1.337,-2.452,2.134,-2.226,4.005,0.712,14.113,8.713,3.743,20.762,15.878,24.042,29.655,21.19,18.569,18.517,23.989,19.163,29.435,26.591,16.719,21.878,22.959,16.95,21.923,16.954,19.733,20.704,26.092,19.849,24.38,15.624,14.846,27.186,17.366,15.616,17.663,19.829,18.641,14.131,5.241,20.169,19.484,13.288,16.028,13.579,17.307,13.083,18.323,13.807,17.34,14.226,22.932,20.783,7.261,14.569,16.271,11.488,19.773,10.128,16.383,10.191,9.337,8.446,11.93,15.758,13.878,19.374,17.236,17.396,13.757,7.92,0.856,5.081,10.89,10.299,10.663,3.557,11.562,12.462,4.432,7.006,12.024,9.647,3.033,11.444,11.04,8.768,6.097,14.669,10.042,-0.604,4.696,11.408,9.153,7.76,8.392,12.585,4.213,1.47,8.073,8.016,2.81,10.733,15.23,10.668,1.889,6.286,6.181,8.318,2.579,6.438,3.808,0.983,3.079,14.73,5.739,12.486,9.959,1.764,2.336,-1.825,-1.026,1.761,7.946,4.359,6.642,0.606,8.672,4.262,2.821,-3.543,-1.076,2.717,3.168,-2.462,2.046],[20.658,20.269,20.962,30.375,26.053,15.606,27.208,23.587,22.714,15.614,16.918,15.71,17.502,19.261,19.489,20.984,19.254,18.54,13.692,12.482,12.427,17.834,12.134,6.667,17.371,19.639,15.805,9.506,14.403,16.644,9.077,2.103,6.888,11.749,10.189,13.163,4.684,13.348,4.888,9.099,9.264,10.102,4.247,6.897,9.673,11.733,1.758,14.472,1.036,5.675,9.368,4.527,2.475,7.303,1.749,1.331,-2.045,2.22,-2.069,3.784,0.566,14.184,8.917,3.757,20.507,15.3,24.219,29.11,21.368,18.517,18.31,24.107,19.368,30.021,25.942,16.493,21.82,22.926,17.406,21.588,17.164,18.971,20.084,26.08,19.876,24.26,14.953,14.295,27.104,17.567,15.781,17.414,19.737,18.664,13.618,5.127,20.329,19.877,13.068,16.194,13.588,17.0,12.984,17.677,13.752,17.401,14.432,22.781,21.313,7.614,14.939,16.434,11.747,19.23,10.005,16.257,10.311,9.18,8.694,12.379,16.223,13.45,19.032,17.463,17.465,14.109,7.869,0.82,5.282,10.858,10.391,10.699,3.866,12.226,12.377,4.586,6.333,12.289,10.133,3.248,11.502,11.057,8.189,5.792,14.121,9.752,-0.648,4.972,11.263,9.704,7.896,7.873,13.019,3.973,1.604,8.04,7.516,2.858,11.002,15.361,10.716,1.474,6.807,6.136,8.152,2.677,6.222,3.91,0.495,2.681,14.99,5.605,12.479,9.661,2.581,2.642,-1.776,-0.933,1.521,7.971,4.657,6.074,0.785,8.453,4.597,2.771,-2.892,-0.739,2.863,2.686,-2.551,2.065],[20.485,20.234,20.909,30.313,26.394,15.807,27.229,23.731,22.882,15.618,17.094,15.615,17.45,19.184,19.419,20.907,19.184,18.527,13.469,12.397,12.434,17.825,12.259,6.804,17.46,19.85,16.064,9.315,14.385,16.664,9.088,1.803,6.669,11.603,10.219,13.208,4.253,13.295,4.884,8.982,9.448,10.047,4.305,6.583,9.785,11.897,1.682,14.596,1.034,5.777,9.493,4.547,2.492,7.054,1.773,1.402,-1.751,2.266,-1.978,3.66,0.492,14.075,9.146,3.729,20.647,15.531,24.184,28.456,21.681,18.487,18.643,24.073,19.51,30.561,26.013,17.062,21.93,23.518,17.748,21.682,17.222,18.971,19.716,26.601,20.38,24.527,14.981,13.883,27.07,17.137,15.884,16.885,19.202,19.087,13.563,4.924,19.954,20.398,13.135,16.019,13.682,16.845,13.034,18.166,13.566,17.341,14.665,22.375,21.244,7.65,14.872,17.126,12.141,18.802,9.78,16.221,10.458,9.463,8.484,12.933,16.325,13.41,18.852,17.319,17.75,13.923,7.88,1.081,5.135,11.428,10.506,10.553,3.481,12.524,12.156,4.121,5.683,11.947,9.943,2.871,11.486,11.009,7.5,6.001,14.465,9.305,-0.427,5.311,11.977,9.797,7.969,7.502,12.972,3.54,1.679,7.997,7.639,2.825,11.026,15.918,10.784,1.848,6.451,6.411,8.526,2.342,6.416,4.218,0.439,2.617,14.724,5.256,12.448,9.299,1.693,3.032,-1.805,-0.72,0.848,7.983,4.329,6.153,0.764,8.347,4.077,2.508,-3.026,-1.258,3.084,2.841,-2.333,2.01],[20.504,20.092,20.898,30.3,26.779,15.98,27.238,23.761,22.939,15.659,17.325,15.593,17.452,19.142,19.448,20.775,19.283,18.525,13.308,12.492,12.508,17.737,12.236,6.829,17.695,19.958,16.252,9.005,14.234,16.83,9.086,1.549,6.523,11.356,10.185,13.176,4.016,13.268,4.888,8.969,9.6,10.022,4.313,6.486,9.895,11.937,1.706,14.734,1.047,5.759,9.775,4.622,2.405,6.753,1.741,1.3,-1.661,2.189,-1.942,3.53,0.395,13.919,9.206,3.761,20.523,16.125,24.273,28.542,21.842,18.02,18.852,24.261,19.07,30.667,27.051,17.705,21.8,23.705,17.202,21.867,17.274,19.479,19.834,27.241,20.042,25.092,15.768,14.067,27.007,17.184,16.118,16.953,19.111,18.528,14.078,5.006,19.938,19.968,13.464,16.124,13.778,16.86,12.726,18.29,13.67,17.342,14.322,21.645,20.58,7.394,14.838,17.255,11.591,19.378,9.53,16.238,10.48,9.504,7.949,12.528,16.608,13.82,19.457,17.685,17.414,13.485,7.248,0.98,4.867,11.027,10.431,10.327,3.509,11.923,12.21,4.405,5.41,11.686,9.931,3.219,11.337,11.078,7.258,6.006,14.574,9.805,-0.71,4.729,12.062,9.419,7.747,7.851,13.151,3.889,1.344,8.466,7.678,2.629,11.147,15.96,11.153,1.686,5.452,6.192,8.557,1.958,6.415,3.799,0.831,3.042,14.697,5.396,12.315,9.771,1.909,3.382,-1.937,-0.703,1.19,8.214,4.656,6.332,0.763,8.66,3.528,2.659,-2.88,-1.402,2.906,3.004,-2.055,2.035],[20.662,19.892,20.833,30.315,27.167,16.227,27.355,23.71,22.931,15.778,17.321,15.71,17.572,19.002,19.509,20.621,19.382,18.629,13.291,12.706,12.49,17.579,12.11,6.742,17.937,19.957,16.36,8.621,14.137,17.026,9.097,1.41,6.46,11.085,10.12,12.987,3.991,13.287,4.962,9.116,9.595,9.974,4.311,6.403,9.966,11.942,1.663,14.872,0.939,5.579,9.747,4.706,2.311,6.562,1.749,1.397,-1.689,2.102,-2.038,3.678,0.367,13.956,9.222,3.879,20.369,15.67,24.389,28.52,21.438,17.719,18.724,23.901,19.54,30.494,26.931,17.701,21.292,23.518,17.256,21.909,17.668,19.303,20.082,27.567,19.447,25.359,15.694,14.341,26.999,17.449,15.82,17.358,19.814,18.458,13.862,5.148,19.833,19.783,13.373,16.479,13.63,17.314,12.276,18.066,13.665,17.28,14.114,21.62,21.321,7.825,15.258,17.453,11.185,19.747,9.341,15.92,10.428,9.333,7.798,12.015,16.563,13.298,19.678,17.972,17.619,14.031,6.897,0.629,4.792,10.609,10.107,10.18,2.984,11.176,12.622,4.692,5.373,11.924,10.242,2.968,11.375,11.337,7.446,6.0,14.276,10.02,-0.883,4.419,11.56,9.639,7.619,8.301,13.092,4.076,1.609,8.481,7.607,2.789,10.918,15.886,11.223,1.544,5.115,6.186,8.563,2.148,6.387,3.499,1.287,3.062,14.928,5.403,12.563,10.442,2.125,3.28,-1.801,-0.595,1.451,8.606,4.974,6.131,0.466,8.71,3.71,2.295,-2.513,-1.456,2.635,2.997,-1.569,1.737],[20.9,19.724,20.725,30.23,27.482,16.158,27.525,23.613,22.895,15.714,17.141,15.801,17.668,18.97,19.559,20.48,19.398,18.808,13.296,12.756,12.367,17.391,11.864,6.71,18.089,20.019,16.449,8.335,14.195,17.184,8.998,1.206,6.543,10.841,10.012,12.94,4.16,13.463,5.057,9.223,9.409,10.021,4.239,6.351,9.896,11.85,1.63,14.972,0.88,5.452,9.564,4.799,2.139,6.441,1.751,1.604,-1.667,2.116,-2.084,3.811,0.492,14.113,9.357,3.984,20.621,15.085,23.948,29.226,21.428,17.226,18.59,23.971,19.595,29.985,26.385,16.841,20.914,23.069,17.837,22.359,17.597,19.286,19.753,27.537,19.745,25.665,16.02,14.38,27.056,17.596,15.943,17.436,19.749,19.098,13.149,5.244,19.701,20.028,13.277,16.494,13.863,17.201,12.27,18.406,13.547,17.278,14.1,22.126,21.696,8.263,15.469,17.78,11.478,19.608,9.052,15.659,10.362,9.403,7.876,12.005,16.577,13.735,19.549,18.018,18.094,14.024,6.646,0.091,4.741,11.354,10.5,10.444,2.889,11.388,12.165,4.358,5.772,11.886,9.659,2.727,11.435,11.129,7.272,6.199,14.486,9.818,-0.815,5.01,11.982,9.929,7.87,8.228,13.254,3.812,1.824,8.306,7.178,2.709,11.209,15.913,10.709,1.604,5.797,6.177,8.704,2.372,6.594,3.848,0.678,2.613,15.103,5.625,12.63,10.263,1.79,3.129,-1.687,-0.925,1.596,9.028,4.722,5.93,0.193,8.312,4.102,2.791,-2.759,-1.037,2.941,3.125,-1.137,0.988],[21.04,19.737,20.523,30.221,27.655,15.93,27.573,23.617,22.929,15.428,16.955,15.708,17.742,18.977,19.61,20.438,19.445,18.829,13.288,12.702,12.364,17.397,11.691,6.697,18.189,20.015,16.49,8.365,14.361,17.329,8.865,0.981,6.664,10.771,9.973,12.828,4.547,13.577,4.885,9.244,9.248,10.217,4.086,6.329,9.775,11.886,1.68,15.08,1.027,5.401,9.414,4.834,1.9,6.373,1.665,1.647,-1.527,2.034,-2.064,3.904,0.605,14.079,9.487,4.1,20.501,15.297,24.111,29.677,21.536,17.258,18.959,24.386,19.59,29.476,26.351,16.402,20.995,23.713,17.117,22.169,17.179,19.818,19.465,27.578,20.116,25.861,16.036,14.185,27.379,17.327,16.19,17.041,19.082,18.644,12.722,5.184,19.397,20.294,13.158,16.736,13.697,17.034,12.06,18.715,13.883,17.423,14.591,22.227,21.535,8.186,15.454,18.038,11.954,19.525,9.027,15.692,9.994,9.047,7.433,11.902,16.638,14.307,19.84,18.048,18.178,13.693,7.015,-0.402,4.887,11.531,10.239,10.096,2.501,11.565,12.397,4.722,6.036,11.673,9.709,3.256,11.574,11.068,7.804,6.131,14.617,9.624,-0.398,5.048,11.913,9.447,8.231,7.805,13.347,3.802,2.013,7.964,7.293,2.707,11.14,16.19,10.466,1.239,6.364,6.22,8.382,2.081,6.431,3.889,0.614,2.763,15.153,5.572,12.592,9.962,1.903,2.852,-1.848,-0.74,1.677,9.538,4.723,5.804,0.466,8.291,4.716,3.341,-3.003,-1.052,3.049,3.227,-1.356,1.491],[20.915,19.736,20.396,30.176,27.641,15.778,27.597,23.811,23.052,15.194,16.734,15.549,17.741,18.944,19.633,20.358,19.597,18.7,13.155,12.711,12.38,17.506,11.487,6.62,18.332,20.089,16.424,8.568,14.617,17.404,8.682,0.81,6.741,10.826,10.114,12.604,4.95,13.663,4.503,9.11,9.099,10.408,4.133,6.497,9.551,12.053,1.658,15.233,1.37,5.442,9.47,4.87,1.84,6.226,1.548,1.564,-1.377,2.088,-1.95,3.958,0.522,13.897,9.528,4.177,20.231,15.495,24.271,29.555,21.778,17.228,19.066,24.586,20.221,30.034,26.345,16.363,20.974,24.039,16.565,21.64,17.236,19.6,19.33,27.742,19.482,25.899,15.276,14.042,27.442,16.726,16.72,16.944,18.793,18.536,13.471,5.181,19.735,20.577,12.715,17.093,13.097,17.177,11.953,18.486,14.27,17.279,14.955,22.222,20.71,8.072,15.762,17.94,12.336,19.328,9.291,15.835,9.815,8.985,7.765,12.065,16.615,13.59,20.157,17.845,18.005,13.602,7.555,-0.54,5.047,10.604,9.732,10.048,2.012,11.365,12.788,4.363,6.725,11.341,9.917,3.087,11.944,11.059,8.048,6.179,14.564,9.916,-0.062,5.166,12.059,9.363,8.291,7.591,13.565,3.964,2.255,8.135,7.201,2.771,10.78,16.424,10.526,1.293,6.624,6.06,8.275,1.373,6.28,3.742,1.019,2.853,14.909,5.839,12.886,10.566,2.278,3.103,-1.913,-0.419,1.461,9.033,4.937,6.151,0.463,8.459,4.73,2.92,-2.503,-1.237,2.342,3.193,-1.549,2.227],[20.715,19.571,20.273,30.181,27.575,15.612,27.596,24.067,23.202,15.143,16.501,15.508,17.731,18.872,19.649,20.356,19.732,18.541,12.983,12.707,12.23,17.539,11.346,6.641,18.445,20.136,16.266,8.772,14.719,17.372,8.53,0.823,6.81,11.004,10.212,12.363,5.388,13.753,4.119,8.896,9.007,10.456,4.332,6.683,9.424,12.243,1.579,15.431,1.601,5.521,9.715,4.912,1.843,6.226,1.427,1.495,-1.166,2.331,-1.781,3.853,0.468,13.883,9.649,4.298,20.113,15.398,24.083,28.756,21.92,17.315,19.149,24.289,20.265,30.403,26.459,16.142,20.874,24.017,17.074,21.793,16.849,19.18,19.445,28.058,19.129,25.802,14.869,13.943,27.432,16.529,17.109,16.922,18.702,18.781,14.108,4.856,19.968,20.647,12.312,17.639,13.651,16.981,11.755,18.742,13.906,17.359,14.657,21.928,20.423,7.672,15.457,17.654,12.551,19.416,9.632,15.825,9.611,9.356,8.163,12.222,16.657,13.436,20.28,17.643,18.264,13.46,7.659,-0.929,5.129,10.378,9.838,10.286,2.018,11.267,12.604,3.981,6.796,11.019,10.321,3.365,11.852,10.824,7.929,5.71,14.841,10.249,0.074,5.218,11.686,9.085,8.285,7.24,13.827,3.952,2.842,7.957,7.313,2.552,11.189,16.385,10.469,1.228,6.353,5.741,8.709,1.503,6.388,3.943,0.506,2.551,14.46,5.37,12.451,10.771,2.413,3.157,-1.941,-0.48,1.157,8.565,4.555,5.595,0.209,8.542,4.592,2.673,-2.008,-1.234,2.429,3.07,-1.437,1.961],[20.611,19.389,20.211,30.113,27.483,15.422,27.62,24.241,23.294,15.155,16.492,15.533,17.782,18.891,19.602,20.418,19.887,18.481,12.897,12.599,12.104,17.56,11.251,6.625,18.527,20.092,16.081,8.864,14.623,17.317,8.682,0.853,6.879,11.228,10.338,12.207,5.569,13.775,3.873,8.7,8.965,10.338,4.618,6.72,9.384,12.377,1.402,15.539,1.797,5.466,10.021,4.915,1.85,6.29,1.292,1.559,-0.895,2.658,-1.663,3.572,0.327,13.819,9.794,4.21,19.701,15.43,24.506,28.349,21.751,17.231,19.094,24.263,19.588,30.286,26.487,16.061,20.563,23.825,16.694,22.072,16.944,19.113,19.246,28.535,19.194,25.714,14.26,13.832,27.37,16.92,17.301,16.856,18.899,18.75,13.506,4.912,19.612,20.344,12.198,18.154,13.653,17.042,11.924,18.76,13.588,17.713,14.403,21.613,21.205,7.385,15.427,16.981,12.146,19.286,9.318,15.776,9.446,8.808,8.181,11.668,16.183,14.004,19.958,17.647,17.94,13.464,7.442,-0.248,5.308,11.087,9.975,10.76,2.48,11.117,12.593,3.563,7.345,10.918,10.265,3.46,11.808,10.866,7.2,5.323,14.787,9.862,0.228,5.655,11.702,8.811,8.25,7.142,14.243,4.57,2.956,7.699,7.976,2.294,11.255,16.28,10.406,1.122,6.003,6.017,8.854,2.141,6.466,4.181,0.342,2.578,15.078,5.226,12.339,10.701,1.801,3.393,-2.057,-0.409,0.663,8.864,4.681,5.372,-0.033,8.806,4.675,2.648,-2.074,-1.09,2.716,3.164,-0.915,1.828],[20.567,19.213,20.206,29.956,27.425,15.244,27.674,24.288,23.328,15.212,16.607,15.517,17.76,18.941,19.578,20.361,19.86,18.454,12.861,12.464,11.896,17.628,11.18,6.567,18.49,20.048,15.912,8.692,14.416,17.356,8.737,1.028,6.94,11.338,10.523,12.198,5.661,13.786,3.604,8.646,8.862,10.118,4.927,6.684,9.427,12.378,1.196,15.476,2.028,5.481,10.127,4.842,1.856,6.469,1.317,1.502,-0.669,2.96,-1.622,3.379,0.192,13.844,9.953,4.046,19.883,14.834,24.742,28.32,21.66,17.581,19.222,24.551,18.975,29.687,26.553,16.218,20.572,23.657,16.092,21.747,16.943,19.392,18.907,28.696,19.318,25.709,14.373,13.956,26.921,17.222,17.388,16.841,18.933,18.211,12.679,4.878,19.406,20.179,12.5,18.603,13.377,16.978,11.659,18.874,13.784,17.687,14.776,21.328,21.826,7.543,15.596,16.732,11.392,18.901,9.341,15.806,9.307,8.673,8.119,11.869,15.967,14.298,19.617,17.654,17.629,13.293,7.512,0.271,5.278,11.59,10.147,11.029,2.763,11.644,12.893,4.006,7.466,11.292,10.506,3.799,11.458,11.025,7.264,5.313,14.647,9.786,0.322,5.494,12.332,9.632,7.703,7.196,14.769,4.389,3.229,7.851,8.404,1.742,11.008,16.381,10.17,1.13,5.768,6.207,9.153,2.31,6.304,4.161,0.712,2.466,14.874,5.146,12.723,10.54,2.222,3.834,-1.333,-0.397,0.88,9.634,4.639,5.304,0.041,9.126,5.227,2.742,-2.192,-1.095,2.484,2.908,-0.425,2.242],[20.49,19.235,20.196,29.772,27.417,15.112,27.76,24.314,23.295,15.168,16.601,15.456,17.724,19.055,19.537,20.194,19.694,18.333,12.631,12.359,11.867,17.669,11.243,6.435,18.341,19.984,15.906,8.584,14.452,17.387,8.656,1.21,6.994,11.402,10.855,12.311,5.652,13.918,3.474,8.588,8.715,9.914,5.005,6.916,9.702,12.346,0.92,15.295,2.284,5.647,10.063,4.97,1.842,6.724,1.356,1.421,-0.528,2.958,-1.451,3.414,0.233,13.984,10.181,3.876,20.125,14.587,24.557,28.919,21.955,17.709,19.297,24.356,19.103,29.218,26.458,15.853,20.562,23.932,16.549,21.217,16.881,19.472,18.91,28.487,19.416,25.693,15.181,14.03,27.331,16.928,16.863,16.848,18.949,18.262,13.259,4.775,19.537,20.253,12.483,19.346,13.188,16.795,11.765,18.714,13.607,17.632,14.766,21.415,21.735,7.608,15.44,16.646,11.161,18.822,9.472,15.946,9.694,9.071,7.643,11.356,15.934,13.21,19.398,17.22,18.4,13.264,7.745,0.225,5.281,11.281,10.101,10.471,3.07,12.029,12.937,3.86,7.362,11.222,10.405,4.192,11.089,11.084,7.25,5.171,14.956,10.301,0.675,5.474,11.788,9.267,7.309,7.838,14.868,4.241,3.294,8.081,8.062,1.439,11.279,16.737,10.063,1.055,6.098,6.304,8.922,1.852,6.041,4.655,0.504,2.258,14.279,5.177,12.621,10.928,2.188,3.612,-1.044,-0.264,0.943,9.589,4.494,5.358,0.302,9.019,5.018,2.519,-1.894,-0.95,2.453,2.676,-0.493,2.175],[20.368,19.417,20.218,29.646,27.326,15.197,27.923,24.186,23.307,14.898,16.502,15.398,17.715,19.199,19.452,20.07,19.613,18.189,12.495,12.159,11.862,17.712,11.306,6.159,18.283,19.793,15.833,8.642,14.54,17.454,8.578,1.418,6.991,11.47,10.973,12.365,5.689,14.109,3.449,8.538,8.562,9.984,4.928,7.049,9.932,12.36,0.628,15.14,2.504,5.774,9.86,5.131,1.719,6.989,1.278,1.364,-0.553,2.644,-1.206,3.725,0.314,13.919,10.413,3.653,20.123,15.174,24.502,28.756,21.809,17.53,18.994,24.311,19.428,29.505,26.43,15.683,20.672,23.832,17.549,21.384,16.555,19.183,18.904,28.385,19.275,25.653,15.301,13.91,27.705,16.642,16.341,17.009,19.254,18.792,13.669,4.698,19.499,20.081,12.57,19.218,12.899,16.852,11.812,18.574,13.695,17.737,14.42,21.434,21.021,7.635,15.516,16.639,11.191,18.907,9.542,15.907,9.671,9.034,7.466,11.359,15.845,13.49,19.859,17.588,17.962,13.509,7.853,0.229,5.622,11.612,9.88,10.362,2.789,11.682,13.357,3.71,7.255,11.156,10.985,4.174,11.283,11.233,8.085,5.003,15.101,10.135,1.076,5.441,11.8,8.743,7.325,7.502,14.473,4.547,3.503,8.311,8.38,1.288,11.239,16.39,10.126,0.904,6.584,6.536,8.767,1.964,6.464,4.582,0.38,2.615,14.962,5.341,12.553,11.489,2.232,3.653,-1.832,-0.08,1.277,9.627,5.045,5.565,0.112,8.595,4.276,2.538,-1.323,-1.243,2.573,2.499,-0.664,2.512],[20.361,19.673,20.149,29.688,27.139,15.318,28.024,23.903,23.27,14.75,16.506,15.479,17.742,19.264,19.207,19.958,19.677,18.048,12.61,12.083,11.801,17.728,11.263,5.901,18.228,19.553,15.831,8.713,14.673,17.301,8.447,1.645,7.049,11.502,11.061,12.333,5.72,14.291,3.468,8.408,8.548,10.233,4.918,7.242,9.956,12.531,0.365,14.985,2.73,5.866,9.79,5.114,1.597,7.193,1.342,1.458,-0.555,2.381,-1.285,4.128,0.271,13.794,10.63,3.501,19.562,14.895,24.474,28.322,21.664,17.66,18.828,24.319,19.075,29.018,26.689,16.118,21.143,23.791,17.616,21.623,16.77,19.49,18.773,28.427,19.231,25.735,14.647,13.817,27.673,16.544,16.119,16.704,19.375,19.304,12.966,4.551,19.3,19.986,12.637,18.964,12.983,17.429,11.882,18.753,13.348,17.712,14.326,21.577,20.895,7.521,15.535,16.546,11.465,18.675,9.494,16.038,9.558,8.713,8.164,11.772,15.95,14.147,20.003,17.497,17.728,13.446,7.741,-0.076,5.538,11.766,9.874,10.871,3.133,11.342,13.831,3.794,7.563,11.395,10.609,4.191,11.752,11.579,8.385,5.02,15.338,9.497,1.056,5.492,12.162,9.046,8.27,6.643,13.822,4.258,3.865,8.359,8.461,1.161,11.374,15.693,10.036,1.058,6.485,6.137,8.898,1.995,6.601,4.138,0.687,2.88,14.991,5.547,12.262,11.266,2.075,3.35,-1.874,-0.058,1.535,9.838,5.371,5.79,-0.093,8.713,4.161,3.189,-1.269,-1.128,2.172,2.199,-0.358,2.16],[20.448,19.681,20.011,29.77,27.04,15.362,28.052,23.636,23.239,14.785,16.586,15.605,17.795,19.327,18.998,19.802,19.94,17.919,12.707,12.207,11.767,17.746,11.187,5.729,18.139,19.437,15.862,8.773,14.863,17.168,8.383,1.712,7.039,11.444,11.169,12.291,5.803,14.52,3.599,8.335,8.689,10.435,4.995,7.361,9.993,12.594,0.361,14.746,2.906,5.935,9.986,4.95,1.603,7.29,1.412,1.486,-0.467,2.19,-1.593,4.35,0.178,13.568,10.676,3.393,19.24,14.569,24.508,28.588,21.599,17.692,19.146,24.271,18.93,29.164,26.693,16.536,21.304,23.441,16.878,21.247,16.85,19.164,18.456,28.253,19.355,25.36,14.879,13.978,27.938,16.5,16.152,16.785,19.299,19.186,13.317,4.404,19.045,20.187,12.204,18.783,13.522,17.475,12.088,18.468,12.743,17.623,14.711,21.277,21.129,7.299,15.46,16.49,11.498,18.88,9.433,16.036,9.462,8.772,8.319,11.639,15.892,14.202,19.061,17.303,18.3,13.135,7.724,0.708,5.284,11.741,9.859,11.221,3.546,11.36,13.232,3.911,7.511,11.349,10.111,4.038,11.717,11.38,7.882,5.291,15.547,9.676,1.134,5.807,12.542,9.096,8.043,6.721,13.421,4.459,3.725,8.428,8.437,0.944,11.456,15.502,10.069,1.19,6.315,6.597,8.741,1.931,6.112,4.105,0.772,2.597,14.565,6.024,12.325,11.351,2.546,2.587,-1.53,-0.526,1.47,9.786,5.138,6.096,-0.211,9.003,4.844,3.377,-1.593,-0.936,2.153,2.115,-0.18,1.462],[20.556,19.336,19.875,30.021,27.065,15.345,28.022,23.522,23.248,14.768,16.668,15.818,17.901,19.379,18.969,19.56,20.141,17.839,12.834,12.321,11.678,17.738,11.124,5.68,18.031,19.145,15.785,8.688,15.149,17.312,8.576,1.844,6.992,11.43,11.185,12.157,5.859,14.577,3.825,8.333,8.812,10.383,5.176,7.214,9.981,12.539,0.57,14.523,2.895,6.027,10.188,4.883,1.578,7.39,1.309,1.484,-0.562,2.076,-1.837,4.308,0.016,13.443,10.533,3.324,19.617,15.054,24.271,29.02,21.545,17.734,18.961,23.89,19.227,29.104,26.228,15.88,20.887,22.991,17.237,20.907,16.935,19.404,18.414,27.92,19.348,25.377,14.656,14.26,27.949,16.549,16.496,17.266,19.433,18.598,14.092,4.131,19.017,20.829,12.333,18.161,13.317,17.052,11.867,19.07,13.147,17.615,14.764,20.788,21.052,6.723,15.491,16.999,11.486,18.685,9.841,15.994,9.281,9.364,7.85,11.492,16.078,14.329,18.725,17.357,18.311,13.435,7.916,0.816,5.427,11.946,9.686,10.823,3.525,11.516,13.514,3.936,7.52,11.007,10.81,4.657,11.541,11.249,7.977,5.516,15.592,10.268,1.253,6.537,12.08,9.19,7.414,6.817,13.511,4.244,3.713,8.412,8.817,1.257,11.461,15.404,10.0,0.965,6.542,6.728,8.643,2.343,6.016,3.802,0.809,2.211,14.571,6.066,12.331,11.525,2.745,2.863,-1.994,-0.679,1.531,9.804,4.81,6.232,0.099,9.467,5.035,3.153,-1.733,-0.998,2.928,2.1,-0.578,1.539],[20.683,19.146,19.88,30.27,27.187,15.02,27.805,23.498,23.16,14.754,16.719,16.035,17.887,19.376,19.147,19.342,20.407,17.769,13.045,12.39,11.64,17.729,11.169,5.616,17.899,18.885,15.654,8.54,15.347,17.572,8.765,1.931,7.036,11.454,11.243,12.053,6.072,14.66,4.001,8.264,8.903,10.184,5.323,7.072,9.958,12.449,0.656,14.433,2.823,6.024,10.284,4.894,1.619,7.582,1.26,1.607,-0.933,2.065,-1.957,4.227,-0.178,13.592,10.509,3.362,19.863,14.949,24.224,29.155,21.57,17.794,19.301,23.556,19.516,29.122,26.37,15.865,20.447,23.072,17.883,20.806,16.602,19.282,18.114,28.133,19.443,25.49,14.182,14.591,27.708,16.583,16.439,17.446,19.778,18.55,13.845,4.25,19.037,21.155,12.496,17.429,12.717,16.697,12.268,19.338,13.684,17.695,14.665,20.936,20.323,5.725,15.821,17.402,11.693,18.03,9.696,15.968,9.375,9.29,8.17,11.563,16.118,14.708,18.494,17.236,17.854,13.327,8.12,0.321,5.829,11.664,9.944,10.243,3.321,11.517,13.818,3.948,7.404,10.822,11.068,4.889,11.864,11.256,7.544,5.828,15.477,10.025,1.22,6.496,11.826,9.574,7.362,7.108,13.841,4.325,3.807,8.242,8.275,2.009,11.436,15.164,10.117,1.196,6.943,6.172,9.058,2.262,6.441,3.819,0.89,2.154,14.567,5.593,12.125,11.208,2.359,3.482,-2.263,-0.485,0.981,9.658,5.055,6.106,0.108,9.556,4.693,2.888,-1.89,-1.249,2.781,2.211,-0.338,1.389],[20.855,19.218,19.967,30.37,27.245,14.633,27.492,23.44,23.123,14.718,16.894,16.053,17.862,19.241,19.227,19.326,20.634,17.599,13.157,12.579,11.658,17.754,11.304,5.557,17.809,18.709,15.583,8.574,15.333,17.674,8.719,1.978,7.154,11.27,11.312,12.015,6.275,14.812,4.131,8.175,9.016,10.058,5.372,6.939,10.039,12.423,0.771,14.471,2.734,5.849,10.205,5.018,1.681,7.803,1.364,1.615,-1.261,2.14,-1.944,4.089,-0.265,13.83,10.573,3.501,19.766,14.403,24.439,28.979,21.497,18.007,19.159,23.401,19.284,29.919,26.445,16.287,20.713,23.629,17.129,21.148,16.236,19.415,18.181,28.234,19.634,25.429,14.736,15.059,27.609,16.515,16.31,17.358,20.322,18.887,13.486,4.288,18.682,20.991,12.405,16.636,13.113,16.735,12.432,19.255,13.501,17.919,14.865,20.98,20.162,4.557,15.978,16.906,11.558,17.796,9.394,15.976,9.655,9.243,8.249,11.281,16.022,14.98,18.407,16.743,18.115,13.071,8.339,0.551,6.116,11.402,10.081,10.561,2.83,11.447,13.433,4.034,7.733,10.721,10.797,4.391,11.458,11.167,7.401,5.849,15.427,9.27,1.039,6.613,12.265,9.384,7.46,6.913,14.016,4.681,3.703,8.289,8.266,1.794,11.51,15.108,10.452,1.587,7.346,6.085,9.191,1.895,6.273,3.793,0.373,2.496,14.673,5.688,12.659,11.254,2.716,3.315,-2.548,-0.537,0.541,9.748,5.511,6.077,0.078,9.032,3.957,2.915,-2.238,-1.653,1.962,2.329,-0.981,1.38],[21.045,19.473,20.039,30.416,27.048,14.648,27.2,23.422,23.145,14.575,17.054,15.995,17.886,19.188,19.203,19.368,20.606,17.336,13.165,12.852,11.571,17.759,11.567,5.424,17.636,18.552,15.636,8.7,15.292,17.688,8.518,2.091,7.294,11.04,11.297,12.015,6.44,14.803,4.293,8.107,9.215,10.001,5.238,6.971,10.149,12.585,0.814,14.579,2.523,5.661,9.98,4.955,1.724,7.943,1.446,1.588,-1.559,2.185,-1.983,4.107,-0.262,13.927,10.761,3.643,19.383,14.708,24.385,28.924,21.578,17.742,19.035,23.316,19.69,29.772,26.083,16.244,21.169,23.013,16.394,21.738,16.215,19.755,18.557,27.987,19.6,25.43,14.32,14.786,27.079,16.321,16.11,17.374,20.242,18.67,13.579,4.707,18.662,21.013,12.48,16.79,12.864,16.681,12.372,19.465,13.468,17.793,14.945,20.845,20.25,3.97,15.941,16.529,11.363,18.158,9.5,15.919,9.851,9.693,8.07,11.585,16.041,14.652,18.555,17.103,18.309,13.235,8.232,0.404,5.996,12.047,9.746,10.954,3.304,10.783,13.572,4.022,7.97,10.803,10.484,4.265,11.126,11.178,7.804,5.685,15.845,9.106,1.03,6.609,12.059,9.002,7.201,6.578,14.133,4.594,3.891,8.384,8.515,1.735,11.271,15.374,10.208,1.224,7.532,6.446,8.873,1.982,6.311,3.944,0.1,3.107,15.106,5.68,12.846,11.493,2.455,2.946,-2.529,-0.514,0.673,9.829,4.856,6.567,-0.055,9.273,3.924,2.789,-2.43,-0.821,1.813,2.645,-1.814,1.691],[21.383,19.739,20.089,30.262,26.609,14.847,26.946,23.309,23.053,14.538,17.081,15.883,17.936,19.282,19.17,19.368,20.679,17.145,13.189,13.086,11.25,17.602,11.756,5.3,17.597,18.454,15.925,8.879,15.286,17.634,8.458,2.103,7.264,10.963,11.272,12.092,6.564,14.746,4.484,8.023,9.295,10.065,5.03,7.182,10.099,12.696,0.798,14.761,2.411,5.583,9.906,4.809,1.635,8.124,1.527,1.532,-1.811,2.367,-2.116,4.064,-0.158,13.867,10.933,3.672,19.415,14.686,24.328,29.296,21.608,17.448,18.485,23.349,20.077,29.198,25.953,15.966,21.121,23.043,16.803,21.997,16.441,19.392,18.469,27.721,19.469,25.05,14.037,14.498,26.8,16.321,16.114,17.514,19.414,18.823,14.128,5.336,18.911,20.757,13.072,16.601,12.726,16.291,12.029,19.327,13.379,17.684,14.798,20.694,20.191,3.81,15.901,16.156,11.958,18.084,9.48,15.901,10.017,9.318,8.114,11.795,16.576,14.401,18.707,17.18,18.392,13.257,8.142,0.687,5.695,12.012,9.258,10.094,3.588,10.696,13.584,4.101,8.334,11.036,10.424,4.11,11.114,11.597,8.175,6.116,16.013,9.684,0.767,6.404,12.631,9.463,7.245,6.555,13.852,4.339,3.94,8.522,8.541,2.165,11.636,15.414,10.786,1.421,7.008,6.151,8.515,2.23,6.529,3.772,0.481,3.079,14.322,5.507,12.321,11.878,2.442,3.132,-1.924,-0.7,1.272,10.096,4.628,6.836,-0.044,9.2,4.163,2.724,-2.785,-0.846,2.008,2.529,-1.792,1.718],[21.741,19.794,20.021,30.093,26.191,15.008,26.801,23.17,22.924,14.761,17.023,15.832,17.848,19.336,19.079,19.391,20.626,17.043,13.227,13.296,10.96,17.46,11.818,5.176,17.455,18.502,16.151,8.937,15.347,17.622,8.36,2.1,7.038,10.95,11.196,12.308,6.578,14.617,4.791,8.006,9.328,10.192,4.898,7.443,10.138,12.833,0.993,14.918,2.516,5.616,9.931,4.79,1.52,8.159,1.561,1.564,-1.957,2.578,-2.185,3.932,-0.053,13.606,11.027,3.589,19.799,14.369,24.486,29.02,21.468,17.847,18.839,23.369,20.04,29.191,25.567,16.435,21.402,23.157,17.942,21.505,16.607,19.497,18.515,27.241,19.495,24.406,14.697,14.576,27.104,16.634,16.251,17.161,19.14,19.243,14.0,5.753,18.921,20.777,12.853,16.624,12.584,15.831,12.197,19.357,13.604,17.055,14.814,20.833,20.079,3.845,15.741,16.342,12.191,17.974,10.023,15.765,10.048,8.838,7.999,11.069,16.831,14.938,18.111,17.392,18.389,13.827,7.827,0.589,5.401,11.805,9.409,9.487,3.056,11.065,13.716,4.375,8.26,11.127,10.869,3.852,11.803,11.589,8.256,6.102,15.895,9.776,0.882,6.696,12.539,9.863,7.476,6.408,13.318,3.85,3.422,8.59,8.575,2.132,11.675,15.034,10.532,1.555,6.93,5.817,8.802,2.079,6.429,4.004,0.767,2.427,14.218,5.555,12.168,11.742,2.376,3.23,-2.026,-0.954,1.888,9.998,4.724,6.939,-0.209,9.174,4.614,2.652,-3.263,-1.302,2.992,2.256,-1.405,1.383],[21.794,19.746,19.904,30.048,25.885,15.234,26.729,23.059,22.92,14.867,17.225,15.783,17.833,19.488,19.011,19.542,20.382,16.955,13.156,13.446,10.729,17.29,11.718,5.047,17.305,18.526,16.321,8.938,15.637,17.697,8.317,1.931,6.71,11.035,11.187,12.579,6.463,14.412,5.072,7.948,9.285,10.447,4.802,7.563,10.259,12.834,1.227,14.884,2.713,5.569,10.001,4.958,1.329,8.131,1.678,1.584,-2.098,2.769,-2.156,3.865,0.004,13.391,11.04,3.487,19.934,14.769,24.249,28.608,21.322,17.9,19.052,22.985,20.321,29.226,25.594,16.365,21.461,22.811,18.059,21.319,16.511,19.539,18.465,26.724,19.412,24.097,15.099,15.129,26.96,16.681,16.431,17.09,19.568,18.702,13.772,5.918,18.787,20.824,12.687,16.408,12.243,15.88,12.81,19.21,13.94,17.194,14.781,21.153,20.292,3.978,15.911,16.274,12.032,18.109,9.833,15.466,10.017,8.755,8.141,10.888,17.022,15.033,17.974,17.561,18.285,13.641,7.679,0.204,5.275,11.993,8.444,9.981,3.172,11.603,13.459,4.324,8.073,11.487,10.881,3.963,11.567,11.272,8.863,6.386,15.318,9.563,1.04,7.228,12.316,9.785,7.252,6.409,13.195,3.839,3.959,8.504,8.742,2.268,11.699,14.963,10.435,1.711,7.305,6.092,8.599,1.936,6.351,4.225,0.556,2.428,14.747,5.324,12.313,11.845,2.392,2.869,-2.606,-0.784,2.266,9.705,4.949,6.908,-0.256,9.208,4.708,2.479,-3.496,-1.116,2.929,2.577,-1.469,1.979],[21.856,19.726,19.791,30.046,25.717,15.291,26.724,23.018,22.974,14.819,17.361,15.862,17.795,19.639,18.842,19.745,20.154,16.922,13.088,13.589,10.64,17.15,11.546,5.044,17.25,18.536,16.495,9.058,15.861,17.792,8.118,1.755,6.507,11.163,11.228,12.717,6.499,14.147,5.162,7.774,9.308,10.61,4.85,7.587,10.203,12.701,1.444,14.821,2.888,5.491,9.888,5.136,1.192,8.256,1.73,1.559,-2.216,2.947,-2.036,3.718,0.065,13.414,11.093,3.472,19.817,15.0,24.114,28.567,21.283,17.765,19.246,22.794,20.288,29.259,25.731,16.397,21.248,23.024,17.845,21.33,16.844,18.819,18.334,25.819,18.955,24.387,15.021,15.101,26.529,16.519,16.488,17.62,20.125,18.635,14.248,5.854,18.898,20.455,12.785,16.245,12.094,15.881,12.412,19.21,13.9,17.562,15.168,21.299,20.354,3.515,15.997,15.83,12.487,18.01,9.183,15.401,9.866,9.04,8.043,11.503,16.919,15.121,18.279,17.334,18.475,13.471,7.55,0.237,4.994,12.005,7.8,10.293,2.887,12.066,12.981,4.532,8.151,11.622,10.408,3.968,11.013,11.582,8.934,6.624,15.182,9.928,1.435,6.664,12.541,9.697,6.922,6.541,13.041,4.259,4.35,8.478,8.603,2.772,11.984,14.859,10.587,1.816,7.265,6.109,8.539,1.786,6.753,4.807,0.368,3.344,14.402,5.372,12.282,11.771,2.482,2.685,-2.446,-0.618,2.068,9.955,4.593,6.907,-0.457,9.259,4.643,2.501,-3.746,-0.849,2.053,2.576,-1.943,2.882],[22.014,19.865,19.684,30.024,25.605,15.171,26.75,23.101,22.975,14.831,17.312,15.943,17.797,19.705,18.65,19.911,19.953,16.936,13.163,13.72,10.86,17.165,11.453,5.007,17.177,18.507,16.581,9.125,15.947,17.819,7.994,1.538,6.452,11.273,11.138,12.671,6.655,13.866,5.232,7.616,9.539,10.62,5.03,7.46,10.089,12.722,1.628,14.66,3.048,5.291,9.713,5.387,1.071,8.413,1.77,1.557,-2.351,3.229,-1.792,3.475,0.133,13.43,11.149,3.486,20.237,15.207,24.419,28.982,21.596,17.892,19.251,23.283,20.593,29.272,25.44,16.937,21.517,22.931,17.411,21.354,16.48,19.105,18.663,25.2,18.692,24.03,14.748,14.937,26.39,16.495,16.259,17.643,20.629,18.199,14.152,6.187,18.954,20.307,12.26,16.495,12.277,15.857,12.332,19.239,14.291,17.125,15.068,21.127,20.052,3.481,16.0,16.111,12.602,17.606,9.999,15.39,9.646,8.522,8.083,11.492,17.365,15.305,18.609,17.291,18.76,13.858,7.399,0.302,4.864,11.767,7.586,9.734,2.854,12.251,13.124,4.362,8.375,11.641,10.335,4.284,11.538,11.545,8.586,6.471,15.369,10.367,1.633,5.946,12.24,9.457,6.604,6.41,12.804,3.909,4.142,8.684,8.316,3.059,11.503,15.244,10.986,1.69,7.0,5.444,8.188,1.802,6.971,4.935,0.694,3.034,14.152,5.328,12.173,11.657,2.362,2.738,-2.367,-0.404,1.779,9.86,4.307,7.276,-0.764,9.351,4.196,2.38,-3.553,-0.973,1.287,2.718,-2.49,2.891],[22.206,20.252,19.664,30.08,25.382,14.987,26.704,23.165,22.959,15.042,17.349,15.904,17.861,19.758,18.543,20.004,19.95,16.953,13.405,13.821,11.161,17.175,11.335,4.938,17.125,18.41,16.667,9.239,15.947,17.746,7.893,1.487,6.403,11.33,10.895,12.676,6.725,13.831,5.269,7.454,9.751,10.612,5.16,7.277,10.016,12.742,1.737,14.501,3.227,4.855,9.605,5.546,0.904,8.532,1.662,1.642,-2.501,3.392,-1.705,3.229,0.172,13.242,11.026,3.47,20.099,15.017,24.525,29.05,21.69,18.161,19.114,23.604,20.621,28.724,25.414,16.733,22.033,23.117,16.515,21.355,16.121,19.064,18.625,25.615,18.637,23.723,14.224,15.039,26.626,16.502,16.163,17.422,20.743,18.115,14.016,6.497,19.169,20.079,12.142,16.913,12.504,15.716,12.686,18.732,13.942,17.272,14.982,21.323,19.851,3.63,15.92,15.716,12.198,17.996,10.338,15.393,9.539,8.856,8.347,11.437,17.856,15.362,18.825,17.495,18.377,13.85,7.416,0.002,4.831,11.59,7.91,9.705,2.811,11.692,12.845,4.582,8.051,11.247,10.503,4.364,11.997,11.181,8.652,6.636,14.89,10.028,1.571,6.351,12.437,9.737,6.601,6.092,12.698,4.131,4.367,8.501,8.331,2.921,11.508,15.232,11.111,1.764,7.116,5.9,7.972,2.013,6.995,4.8,1.006,3.015,14.595,4.939,12.014,12.092,2.205,2.958,-1.83,-0.51,1.753,9.752,4.269,8.011,-0.758,9.281,4.575,2.089,-3.615,-0.817,1.574,2.608,-2.469,3.106],[22.257,20.545,19.726,29.921,25.241,14.754,26.699,23.232,22.929,15.017,17.263,15.925,17.883,19.786,18.51,20.073,19.973,16.983,13.673,13.817,11.237,17.252,11.307,4.785,16.982,18.297,16.761,9.404,15.937,17.521,7.858,1.666,6.408,11.152,10.574,12.728,6.634,13.753,5.361,7.293,9.926,10.432,5.266,7.478,9.965,12.784,1.743,14.429,3.406,4.549,9.564,5.689,0.758,8.901,1.563,1.681,-2.796,3.28,-1.78,3.067,0.323,13.044,10.92,3.459,20.412,15.028,24.388,29.62,21.336,18.034,19.087,23.353,20.722,28.905,25.351,16.421,22.195,23.18,16.495,21.78,16.276,18.502,18.497,25.893,19.099,23.475,14.611,14.955,26.694,16.923,16.382,17.524,21.085,18.823,14.431,6.567,19.569,19.833,12.535,16.863,12.891,15.821,12.705,19.055,13.957,17.701,14.728,21.398,19.868,3.971,15.69,15.482,12.391,18.538,10.033,15.501,9.614,8.591,8.595,11.945,18.085,15.505,18.505,17.444,18.361,13.725,7.631,0.014,5.254,11.91,8.417,10.251,2.402,11.571,12.735,4.775,8.003,11.513,10.154,4.053,11.426,11.009,8.871,6.576,15.078,9.703,1.719,7.233,12.403,10.105,6.609,5.943,12.715,4.503,4.609,8.099,8.549,3.016,11.892,14.708,11.06,2.309,7.444,5.296,8.014,1.819,7.139,5.04,0.83,3.202,14.563,4.763,11.983,11.431,2.18,2.492,-0.98,-0.373,2.025,9.788,3.891,8.046,-1.007,9.217,5.106,1.73,-3.431,-0.906,1.962,2.517,-1.857,2.678],[22.312,20.682,19.811,29.833,25.12,14.734,26.825,23.216,22.834,14.938,17.063,16.027,18.018,19.883,18.57,20.127,19.908,16.978,13.87,13.8,11.331,17.533,11.443,4.786,16.802,18.262,16.766,9.553,15.937,17.442,7.75,1.949,6.505,10.946,10.444,12.806,6.541,13.614,5.533,7.177,9.983,10.102,5.275,8.054,9.942,12.69,1.876,14.393,3.526,4.346,9.568,5.875,0.565,9.236,1.567,1.708,-2.964,3.016,-1.723,2.999,0.455,12.953,10.813,3.422,21.073,14.817,24.085,29.711,21.292,18.361,19.251,23.365,20.974,28.807,25.708,16.495,22.154,23.444,17.232,21.464,16.102,18.678,18.582,25.735,18.814,23.521,15.025,14.771,26.015,16.77,16.488,17.551,20.708,18.167,14.918,6.104,19.189,20.031,12.646,16.42,12.536,16.532,13.069,19.17,13.674,17.381,14.676,21.513,19.975,3.658,15.817,15.588,12.484,18.369,10.027,15.757,9.813,8.85,8.559,11.453,17.672,15.602,17.817,17.556,18.371,14.303,7.639,0.189,5.565,11.397,8.31,10.323,2.259,11.401,12.552,4.512,8.154,12.108,9.682,4.749,11.115,10.954,9.277,6.29,14.866,9.559,2.055,6.878,12.519,10.287,6.267,5.906,12.683,4.243,4.389,8.134,8.726,3.264,11.438,14.441,11.444,1.935,8.078,4.228,8.176,1.617,7.414,4.898,0.734,2.822,13.903,4.575,11.897,11.132,2.281,2.38,-0.756,-0.473,2.301,9.259,3.573,8.054,-1.276,8.986,5.153,1.807,-3.525,-0.962,2.268,2.759,-2.083,2.308],[22.401,20.746,19.622,29.923,24.987,14.872,26.915,23.208,22.63,14.866,16.879,16.101,18.029,19.983,18.539,20.163,19.794,16.998,14.065,13.682,11.314,17.816,11.625,4.824,16.672,18.231,16.639,9.713,15.898,17.528,7.678,2.135,6.581,10.805,10.382,13.214,6.344,13.375,5.628,7.004,10.076,9.783,5.238,8.373,9.987,12.488,2.057,14.383,3.62,3.991,9.571,6.011,0.499,9.424,1.575,1.745,-3.022,2.854,-1.472,2.947,0.5,12.898,10.718,3.419,20.6,14.84,24.144,28.915,21.158,19.124,19.554,23.604,20.821,28.643,25.502,16.411,22.442,23.174,17.816,21.603,16.037,18.915,18.744,25.243,18.446,23.356,14.785,15.265,26.161,16.57,16.564,17.706,20.002,18.195,14.999,5.874,19.32,20.099,12.594,15.614,12.429,16.828,13.517,18.861,13.586,17.468,15.296,21.623,19.993,3.353,15.712,15.436,12.178,17.959,10.096,16.038,9.879,8.673,8.65,11.735,17.305,15.482,17.81,17.788,18.134,14.278,7.601,0.47,5.312,11.21,7.691,9.605,2.926,11.233,12.587,4.787,8.015,11.805,9.915,4.9,11.003,11.033,9.383,6.816,14.395,9.362,2.121,6.641,12.247,9.886,6.166,5.674,12.543,4.3,4.401,8.269,9.594,3.355,11.364,14.502,11.338,2.228,8.561,4.386,8.219,1.334,7.572,4.54,1.005,2.875,13.896,4.694,11.594,11.645,2.532,2.884,-0.839,-0.331,2.542,9.479,3.31,8.283,-1.331,8.796,4.964,1.994,-3.472,-0.952,2.563,2.523,-2.69,2.539],[22.512,20.708,19.367,30.011,24.829,14.944,26.828,23.267,22.508,14.886,16.784,16.245,17.97,19.977,18.454,20.202,19.674,16.966,14.195,13.449,11.473,17.995,11.658,4.838,16.569,18.256,16.471,9.84,15.789,17.576,7.649,2.327,6.414,10.577,10.328,13.523,6.3,13.063,5.865,6.793,10.15,9.614,5.22,8.221,10.046,12.442,2.136,14.435,3.623,3.705,9.553,5.922,0.479,9.501,1.701,1.967,-3.086,2.982,-1.163,2.951,0.482,12.92,10.989,3.472,20.466,14.865,23.868,29.344,21.028,19.328,19.346,23.523,20.953,29.027,25.279,16.291,22.488,22.968,17.527,22.212,16.467,18.776,18.385,24.512,18.452,23.198,14.192,15.871,26.776,16.573,16.387,17.98,19.339,18.285,14.65,5.314,19.75,19.69,12.721,15.397,12.963,16.656,13.637,18.714,14.264,18.186,14.966,21.661,19.994,3.632,15.592,15.26,11.909,18.412,9.87,16.359,9.921,8.673,8.541,11.846,17.268,15.13,18.259,17.4,17.942,13.927,7.323,0.654,5.068,11.551,6.679,9.077,3.313,11.593,12.107,5.205,7.417,12.372,10.181,4.284,11.022,11.205,9.43,7.194,14.501,9.161,1.784,6.601,11.884,10.184,6.279,5.616,12.644,4.557,4.347,8.222,9.223,3.56,11.441,14.461,11.546,2.654,9.07,4.687,8.083,1.596,7.533,4.61,1.327,3.22,14.325,4.681,11.861,11.379,2.332,2.503,-0.433,0.211,2.275,9.531,3.007,8.378,-1.267,9.063,4.953,1.725,-3.49,-1.004,2.44,2.543,-2.195,2.307],[22.633,20.701,19.308,30.28,24.594,14.921,26.717,23.29,22.556,15.059,16.805,16.509,17.914,19.875,18.438,20.266,19.549,16.996,14.157,13.324,11.732,18.234,11.48,4.77,16.475,18.334,16.388,9.879,15.422,17.463,7.512,2.504,6.131,10.342,10.263,13.569,6.328,12.901,6.185,6.627,10.208,9.548,5.133,7.914,10.076,12.465,2.216,14.577,3.483,3.568,9.661,5.768,0.401,9.562,1.873,2.202,-3.116,3.151,-0.88,3.034,0.429,13.081,11.315,3.495,21.022,14.735,24.037,30.25,21.039,18.68,19.21,23.344,20.743,29.14,25.304,16.351,22.225,23.388,16.383,22.719,16.543,18.217,17.89,24.385,18.478,22.888,14.772,15.625,26.381,16.91,16.49,18.118,18.97,18.221,14.587,4.44,19.639,19.432,12.797,15.786,12.851,15.979,13.078,18.9,13.862,17.945,14.156,21.484,19.818,4.0,15.771,15.059,12.364,18.674,9.996,16.499,9.931,8.723,8.941,12.306,17.096,14.945,18.484,17.361,18.017,14.623,7.114,0.891,5.124,11.68,7.065,9.064,3.245,11.859,11.806,5.308,7.479,12.433,10.094,4.35,10.847,11.114,9.534,7.123,14.06,8.996,1.647,6.878,12.354,10.541,5.972,5.676,12.806,4.444,4.009,8.251,8.305,3.572,11.601,14.732,11.514,2.267,9.248,5.006,8.156,1.948,7.309,4.944,1.159,3.411,14.314,4.394,11.911,11.478,1.994,2.154,0.007,0.179,2.547,9.66,3.073,8.133,-1.036,9.251,4.929,1.746,-4.131,-1.006,2.117,2.983,-2.156,2.32],[22.58,20.786,19.138,30.727,24.424,14.987,26.651,23.282,22.746,15.324,16.743,16.779,17.964,19.65,18.453,20.291,19.462,17.012,13.977,13.415,11.858,18.321,11.408,4.613,16.459,18.353,16.462,9.925,14.939,17.344,7.36,2.565,5.941,10.209,10.193,13.511,6.386,12.817,6.351,6.561,10.248,9.569,5.009,7.729,10.106,12.584,2.207,14.769,3.372,3.625,9.803,5.722,0.394,9.666,1.888,2.388,-3.299,3.271,-0.683,3.084,0.398,13.122,11.489,3.473,21.425,14.522,24.341,29.767,21.39,18.238,19.4,23.206,20.883,29.459,25.131,16.503,22.055,23.028,16.069,22.577,16.072,18.271,18.182,24.911,18.719,22.711,15.212,15.486,25.989,17.199,16.289,18.193,18.85,18.249,14.521,3.519,19.972,19.694,12.701,16.193,12.798,15.637,13.15,18.6,13.704,17.81,14.421,21.085,20.151,4.492,15.487,14.972,11.894,18.255,10.271,16.792,9.721,8.699,9.27,12.613,17.127,14.765,18.281,17.572,18.17,14.439,6.89,1.369,4.955,11.412,7.77,8.806,3.067,11.674,11.939,5.252,7.915,12.069,9.802,4.681,10.676,10.736,9.367,7.237,14.126,8.536,1.655,6.361,12.099,10.155,5.534,5.545,12.901,4.392,3.942,8.286,7.964,3.564,11.414,15.104,11.576,2.244,9.039,4.828,8.259,1.633,7.261,5.044,0.916,3.507,14.444,4.714,11.843,12.058,2.07,2.447,-0.177,0.418,2.784,10.094,3.013,8.407,-1.122,9.383,4.747,2.059,-4.558,-1.03,2.281,2.949,-2.409,2.357],[22.369,20.944,18.978,30.947,24.473,15.21,26.496,23.153,22.968,15.48,16.607,16.953,18.05,19.342,18.44,20.267,19.489,16.982,13.814,13.531,12.014,18.353,11.433,4.534,16.581,18.456,16.523,9.987,14.625,17.362,7.388,2.588,5.832,10.118,10.073,13.416,6.412,12.812,6.303,6.579,10.251,9.515,4.972,7.629,10.005,12.618,2.14,14.939,3.452,3.674,9.894,5.738,0.322,9.845,1.815,2.484,-3.612,3.221,-0.505,3.213,0.351,13.013,11.647,3.502,21.406,14.987,24.41,29.781,21.638,18.224,19.544,23.028,20.64,30.094,25.436,16.491,22.449,23.078,16.93,22.091,16.29,19.035,18.204,25.152,18.072,22.617,14.559,16.228,26.248,17.24,16.553,18.562,18.736,18.298,14.08,2.869,20.046,19.415,12.673,16.066,12.683,15.541,13.38,18.309,13.973,18.256,14.027,21.717,20.151,4.413,15.372,14.831,11.735,18.063,10.283,16.702,9.896,8.423,8.848,11.96,16.785,14.746,17.934,17.61,17.469,14.147,6.733,1.378,4.915,11.312,7.389,8.557,2.842,10.946,12.071,5.501,7.982,12.273,10.002,4.473,10.935,10.842,8.9,7.539,14.044,8.652,1.651,6.175,12.001,10.201,5.62,5.46,13.109,4.422,4.275,8.173,8.391,3.698,11.641,15.288,11.453,2.258,8.685,4.616,8.187,1.463,7.534,4.935,0.733,3.163,14.334,4.657,12.394,12.069,2.797,2.315,-0.809,0.676,2.85,10.223,2.463,8.974,-1.104,9.768,4.501,1.868,-4.087,-1.151,2.772,2.622,-2.983,2.54],[21.987,21.217,18.875,31.047,24.496,15.4,26.427,22.906,23.132,15.634,16.582,17.116,18.164,19.17,18.564,20.489,19.487,16.856,13.709,13.559,11.946,18.449,11.561,4.502,16.56,18.509,16.476,10.037,14.411,17.351,7.452,2.553,5.821,9.943,9.859,13.379,6.456,12.814,6.195,6.751,10.217,9.445,4.924,7.672,9.901,12.563,2.113,15.036,3.632,3.717,9.993,5.758,0.166,10.009,1.72,2.576,-3.826,2.996,-0.438,3.325,0.257,12.877,11.705,3.48,21.122,15.467,24.425,30.129,21.575,18.211,19.702,23.123,20.599,29.951,25.219,16.071,22.998,23.39,17.575,21.286,16.745,18.79,17.869,24.905,17.642,22.669,15.149,16.26,26.326,17.051,16.869,18.906,18.438,18.587,14.26,2.796,19.546,19.172,12.914,16.269,13.254,15.867,13.002,19.006,13.999,18.458,13.747,21.823,20.281,4.285,15.532,15.079,12.6,18.182,10.214,16.667,10.098,8.503,8.974,12.105,16.841,14.686,17.801,17.499,17.887,14.274,6.704,0.908,5.027,11.372,6.858,8.965,3.259,9.886,11.995,5.364,7.94,12.033,9.869,4.145,10.756,10.793,8.427,7.552,14.154,9.251,1.812,6.413,12.468,10.21,6.087,5.495,13.177,4.527,4.39,7.995,8.944,3.482,11.529,15.268,11.393,2.407,8.746,4.319,8.356,1.641,7.444,4.761,1.069,2.543,14.277,4.679,11.859,11.814,3.366,2.291,-0.48,0.518,2.803,10.032,2.51,9.102,-1.255,9.878,4.908,1.72,-3.951,-1.093,2.95,2.542,-3.674,2.092],[21.625,21.431,18.799,31.025,24.425,15.614,26.405,22.869,23.222,15.669,16.722,17.317,18.367,19.084,18.82,20.695,19.474,16.845,13.709,13.684,11.825,18.537,11.839,4.461,16.524,18.393,16.371,10.075,14.311,17.517,7.416,2.546,6.002,9.733,9.575,13.362,6.602,12.818,6.116,7.035,10.187,9.495,4.814,7.803,9.811,12.489,2.134,14.993,3.727,3.789,10.025,5.823,0.025,10.081,1.582,2.613,-3.948,2.698,-0.609,3.385,0.224,12.607,11.571,3.446,21.559,15.596,24.444,30.429,21.683,18.212,19.931,23.161,19.968,29.45,24.72,16.391,23.029,22.904,17.021,21.006,16.841,18.551,17.646,24.719,18.014,22.76,15.539,15.988,26.318,17.518,17.038,19.041,17.952,18.389,14.038,2.883,19.875,18.897,13.366,16.046,13.085,16.215,13.233,18.488,13.556,18.225,13.965,21.689,20.152,4.088,15.684,14.914,13.036,18.486,10.129,16.796,10.121,8.917,9.373,12.449,16.967,13.991,18.164,17.494,18.506,14.435,6.499,1.236,4.904,11.158,7.385,8.844,3.866,9.47,11.773,4.908,7.903,12.329,9.117,4.566,10.302,10.474,8.771,7.186,14.046,9.372,1.855,6.247,12.303,10.285,6.173,5.823,13.335,4.445,4.291,8.003,9.234,3.484,11.252,15.061,11.561,2.634,9.415,4.444,8.462,1.424,7.303,4.453,0.941,2.458,14.115,4.957,11.499,12.145,3.951,2.278,-0.229,0.76,3.193,9.776,2.806,8.763,-1.523,9.566,4.961,2.137,-4.364,-0.963,2.973,2.829,-3.694,1.552],[21.328,21.51,18.813,31.11,24.377,15.851,26.408,22.992,23.156,15.778,16.834,17.486,18.464,18.88,18.934,20.814,19.304,17.012,13.683,13.834,11.742,18.582,12.19,4.221,16.42,18.176,16.309,10.116,14.292,17.723,7.393,2.693,6.079,9.524,9.344,13.477,6.737,12.747,5.946,7.127,10.3,9.43,4.821,7.962,9.743,12.413,2.282,14.885,3.709,3.989,9.992,5.913,-0.219,10.074,1.438,2.741,-3.971,2.525,-0.577,3.505,0.125,12.299,11.653,3.486,22.283,15.066,24.647,30.216,21.754,17.853,20.191,22.802,19.682,30.132,24.678,17.138,23.085,23.076,16.591,21.298,16.772,19.172,17.519,24.89,18.382,22.649,15.231,16.288,26.363,17.613,17.157,19.023,18.011,18.832,13.653,2.847,20.389,18.984,13.307,15.507,12.665,16.678,13.146,18.283,13.67,18.086,13.51,21.795,19.795,3.786,15.863,14.939,12.762,18.682,10.421,17.208,10.591,8.821,9.202,12.045,16.736,13.544,18.638,17.05,18.334,14.67,6.51,1.575,4.858,10.999,7.53,8.743,3.221,9.496,11.643,5.011,7.965,12.177,8.66,4.481,10.667,10.485,9.299,7.109,13.979,8.881,1.887,5.707,12.343,10.326,6.015,6.015,13.126,4.004,4.291,7.887,8.955,3.788,11.434,15.204,11.377,2.34,10.153,4.627,8.411,1.186,7.345,4.372,0.315,2.685,13.646,5.008,11.863,11.901,4.161,2.154,-0.619,0.485,3.412,9.716,2.816,8.402,-1.595,9.665,4.932,2.227,-4.679,-1.558,2.543,3.062,-3.425,1.952],[21.214,21.706,18.84,31.36,24.439,15.94,26.496,23.187,23.013,15.914,16.841,17.497,18.517,18.636,19.08,20.927,19.013,17.33,13.46,13.927,11.615,18.697,12.483,3.97,16.184,18.005,16.259,10.204,14.169,17.673,7.244,2.728,5.969,9.321,9.341,13.552,6.61,12.649,5.816,7.019,10.57,9.244,4.747,8.001,9.711,12.424,2.44,14.749,3.58,4.134,10.044,5.97,-0.529,10.066,1.315,2.909,-3.89,2.666,-0.338,3.61,-0.082,12.066,11.861,3.497,22.023,14.887,24.414,30.374,21.491,17.804,19.881,22.534,19.531,30.196,24.868,16.601,23.064,23.02,17.209,21.262,16.932,19.403,17.44,24.824,18.275,22.658,15.36,16.677,26.504,17.424,17.062,19.163,18.137,18.711,14.229,2.297,20.483,19.344,13.83,15.497,12.916,16.895,12.835,18.858,14.417,18.299,13.257,21.886,19.385,3.858,15.862,14.89,12.195,18.926,10.602,17.301,10.903,8.664,9.374,12.376,16.696,14.239,18.683,16.364,17.987,14.786,6.709,1.212,4.763,10.943,7.084,8.49,3.045,9.707,11.886,5.004,7.775,12.223,9.157,4.155,10.417,10.757,9.278,7.354,14.177,8.764,1.845,5.515,12.509,10.197,6.032,5.872,12.926,4.504,4.679,7.833,8.725,3.828,11.337,15.401,11.709,2.546,10.181,4.675,8.271,1.072,7.441,4.503,0.516,2.814,13.668,4.903,11.435,11.975,4.044,2.354,-0.55,0.676,3.566,10.145,2.976,8.293,-2.013,10.273,4.945,1.97,-4.551,-1.585,1.946,3.078,-3.575,1.971],[21.153,21.778,18.742,31.66,24.618,15.905,26.637,23.302,22.87,16.003,16.797,17.473,18.508,18.488,19.122,20.977,18.883,17.688,13.393,13.913,11.616,18.809,12.685,3.79,15.97,17.86,16.087,10.313,14.132,17.41,7.17,2.597,5.862,9.144,9.395,13.633,6.242,12.716,5.858,7.007,10.735,9.002,4.685,7.872,9.699,12.518,2.53,14.745,3.405,4.127,10.103,6.005,-0.729,10.044,1.261,3.057,-3.773,2.968,-0.164,3.563,-0.118,11.983,11.986,3.516,21.701,15.483,24.054,30.898,21.354,17.666,19.761,23.083,19.841,29.878,24.973,16.419,23.589,23.391,17.072,21.021,17.295,19.244,17.48,25.114,17.694,22.863,15.382,16.35,26.669,17.789,16.771,19.198,17.926,19.148,14.075,2.027,20.563,18.696,14.293,15.315,12.689,17.03,12.841,18.307,14.2,18.624,13.413,22.168,18.814,4.009,15.581,14.417,12.21,19.445,10.188,17.034,11.144,8.348,9.231,12.52,17.236,15.342,19.228,16.373,17.742,15.052,6.757,1.496,5.04,11.013,6.8,8.166,3.647,9.803,11.892,5.016,7.585,12.527,9.815,4.222,10.066,10.635,9.252,7.261,14.09,8.757,1.825,5.173,12.49,10.594,6.047,5.91,12.925,4.616,4.744,7.959,8.558,3.958,11.304,15.234,12.209,2.734,10.004,4.695,8.158,0.632,7.607,4.763,0.27,2.905,13.471,4.878,10.95,12.36,4.521,2.677,-0.442,1.036,3.581,10.264,2.656,8.283,-2.3,10.202,4.943,2.222,-3.974,-1.688,1.877,2.729,-3.815,1.838],[21.225,21.774,18.536,31.859,24.784,15.877,26.655,23.519,22.777,16.25,16.716,17.482,18.54,18.375,19.157,21.075,18.739,18.024,13.555,13.821,11.549,18.778,12.828,3.667,15.751,17.827,16.05,10.195,14.316,17.177,7.168,2.63,5.888,8.975,9.348,13.928,5.894,12.797,6.101,7.116,10.755,8.768,4.717,7.785,9.66,12.582,2.425,14.875,3.256,4.131,10.05,6.13,-0.811,10.016,1.273,3.267,-3.617,3.092,-0.08,3.47,-0.103,11.965,12.05,3.62,22.062,15.39,24.288,30.978,21.33,17.676,20.091,23.545,19.723,30.562,25.091,16.607,23.258,23.396,16.59,20.64,16.691,19.033,17.1,25.613,17.74,22.978,15.276,16.384,26.545,18.096,16.798,19.09,17.362,18.751,13.876,1.943,20.282,18.533,14.183,14.941,12.865,17.183,12.919,17.678,13.787,18.928,13.61,21.87,18.048,3.861,15.273,14.251,12.082,19.402,10.037,16.903,11.407,8.7,9.24,12.558,16.832,14.789,19.6,16.428,17.437,15.454,6.596,1.335,4.917,10.811,6.707,8.438,3.824,9.563,11.857,4.983,7.436,12.55,9.845,4.187,10.156,10.557,9.251,7.061,14.501,8.72,1.49,5.033,12.27,10.858,6.047,5.904,13.077,4.0,4.141,7.791,8.165,4.048,11.351,14.821,11.996,2.76,9.615,4.515,8.499,0.222,7.702,5.027,0.309,2.711,13.068,4.906,11.448,12.377,4.955,2.117,-0.352,0.895,3.465,10.183,3.033,8.431,-2.425,9.882,4.95,2.155,-3.903,-1.745,2.319,2.953,-3.901,2.559],[21.368,21.72,18.411,32.03,24.964,15.752,26.546,23.707,22.687,16.353,16.71,17.597,18.609,18.248,19.11,21.206,18.603,18.253,13.699,13.618,11.581,18.541,12.854,3.58,15.459,17.926,16.036,9.875,14.486,17.076,7.29,2.883,6.048,8.825,9.296,14.18,5.602,12.814,6.316,7.289,10.715,8.715,4.666,7.892,9.596,12.437,2.333,14.935,3.005,4.219,9.882,6.342,-0.859,9.961,1.47,3.445,-3.458,3.089,-0.212,3.35,-0.132,11.976,12.039,3.597,22.489,15.641,24.385,30.923,21.676,17.357,20.072,23.309,19.876,30.976,24.866,16.52,22.857,23.077,16.829,20.644,16.846,18.798,16.903,25.717,17.924,23.214,15.05,16.85,26.534,18.201,17.351,19.229,17.126,18.766,14.164,2.296,20.549,18.651,14.251,14.487,12.711,17.87,13.256,17.884,13.501,18.861,13.559,21.824,17.451,3.45,15.18,14.449,11.876,19.26,10.221,16.949,11.139,8.897,9.767,12.243,16.38,13.695,19.625,17.014,17.625,15.722,6.428,1.299,4.864,10.66,6.84,8.436,3.298,9.496,11.718,5.129,7.008,13.0,9.353,4.039,9.566,10.74,9.185,7.164,14.216,8.558,1.184,5.045,12.646,10.533,6.4,5.862,13.315,4.403,3.247,7.921,7.808,3.466,11.083,15.255,11.988,2.536,9.204,4.652,8.466,0.205,7.693,5.085,0.456,2.059,13.477,4.687,11.553,12.392,4.813,2.193,-0.243,1.267,3.724,10.174,2.933,8.777,-2.725,9.937,4.946,1.855,-4.198,-1.374,2.896,3.122,-3.872,2.706],[21.502,21.64,18.462,32.215,25.094,15.577,26.459,23.34,22.64,16.396,16.814,17.933,18.688,18.079,19.031,21.406,18.443,18.372,13.717,13.347,11.482,18.244,12.715,3.615,15.27,17.969,16.154,9.789,14.403,17.109,7.45,3.039,6.122,8.832,9.266,14.307,5.314,12.707,6.346,7.413,10.596,8.83,4.774,8.039,9.501,12.27,2.206,15.024,2.637,4.344,9.739,6.605,-0.872,9.994,1.739,3.516,-3.322,3.154,-0.288,3.339,-0.056,12.074,12.12,3.511,22.205,15.829,24.36,30.99,21.512,17.119,20.31,23.312,20.105,31.098,24.664,16.292,23.174,23.321,17.375,20.622,17.055,18.701,17.503,25.376,17.153,23.363,15.26,17.009,26.529,18.253,17.194,19.471,17.184,18.949,14.734,2.536,21.221,18.916,14.273,13.819,12.817,18.117,13.077,18.486,12.791,17.767,13.131,22.385,17.713,3.555,15.313,14.618,11.791,19.88,9.26,17.261,11.168,8.733,9.184,12.284,16.392,14.009,19.876,16.981,17.468,15.64,6.26,1.46,4.849,10.436,7.504,8.089,3.477,8.996,11.452,5.54,6.438,13.025,9.047,3.947,9.624,10.625,9.145,7.315,13.856,8.364,0.76,5.069,12.495,10.317,6.56,6.183,13.379,4.267,2.948,7.928,8.218,3.647,11.335,15.438,12.059,2.472,9.099,5.032,7.859,-0.126,8.095,4.957,0.351,1.896,13.512,4.889,11.188,12.085,4.817,2.489,-0.671,1.0,4.258,10.499,3.355,8.617,-2.5,9.62,5.128,1.934,-4.074,-1.472,3.091,3.062,-3.805,1.937],[21.367,21.753,18.429,32.231,25.052,15.515,26.448,22.933,22.722,16.53,17.025,18.18,18.649,17.918,19.102,21.725,18.51,18.391,13.681,13.136,11.28,17.842,12.644,3.813,15.209,18.082,16.316,9.607,14.366,17.232,7.616,3.002,5.886,8.868,9.229,14.31,5.0,12.514,6.368,7.511,10.496,8.996,4.943,8.037,9.511,12.268,2.217,15.092,2.363,4.62,9.466,6.849,-0.993,9.97,1.87,3.514,-3.249,3.143,-0.328,3.404,0.119,12.026,12.286,3.415,21.469,15.635,24.102,31.359,21.161,17.172,20.387,22.922,19.86,30.731,24.676,16.617,23.294,22.83,17.255,20.703,16.626,18.687,17.467,25.72,17.142,23.295,14.792,17.133,26.26,18.286,17.125,19.607,17.306,18.445,14.873,2.586,21.211,18.801,14.077,13.469,12.923,17.932,13.188,17.638,12.449,17.605,13.453,22.522,18.203,3.84,15.457,14.5,11.524,19.972,9.368,17.576,11.25,8.879,8.826,12.014,16.926,14.629,19.825,16.539,17.096,15.611,6.699,1.944,4.813,10.252,7.854,8.27,4.062,8.207,11.403,5.382,6.57,12.824,9.243,3.993,10.317,10.378,9.529,7.58,14.191,8.586,0.689,4.939,12.07,10.26,6.388,6.308,13.35,4.117,3.439,7.608,8.989,3.824,10.855,15.313,12.215,2.556,9.647,4.883,7.976,0.272,8.449,4.81,0.869,2.313,13.49,4.828,11.055,11.885,4.81,2.65,-0.173,0.781,4.147,10.68,3.514,8.441,-2.561,9.379,5.38,2.004,-3.792,-1.732,3.103,2.373,-3.086,2.056],[21.001,21.832,18.33,32.094,25.05,15.313,26.428,22.733,22.693,16.65,17.235,18.266,18.513,17.821,19.06,21.959,18.718,18.253,13.626,13.014,11.111,17.578,12.566,4.052,15.101,18.171,16.386,9.543,14.495,17.172,7.779,3.092,5.597,8.971,9.24,14.206,4.833,12.549,6.394,7.598,10.491,9.161,4.972,8.079,9.452,12.252,2.27,15.089,2.438,4.849,9.214,7.053,-0.972,9.974,1.946,3.415,-3.196,3.104,-0.24,3.425,0.242,11.995,12.44,3.223,22.227,15.826,24.157,31.703,21.306,16.992,19.938,22.014,19.286,30.595,24.793,16.703,23.431,22.934,17.372,20.695,16.833,18.88,17.021,26.003,17.463,23.236,15.178,17.348,26.286,18.408,17.105,19.677,16.894,19.047,14.504,2.675,21.103,18.374,14.195,13.994,12.602,18.004,13.251,17.368,12.549,17.993,13.811,22.728,17.845,3.967,15.25,14.265,11.391,19.398,9.64,16.778,11.062,9.217,8.368,11.9,17.63,14.964,19.829,16.68,17.47,15.657,6.86,1.736,4.628,10.059,7.593,8.342,3.505,7.434,11.511,5.112,6.526,12.952,9.204,4.056,10.184,10.632,9.059,7.462,13.889,9.195,0.811,4.162,12.378,10.374,6.893,6.121,13.294,4.725,3.271,7.831,8.66,3.763,11.131,15.754,12.199,2.771,9.933,5.133,7.692,0.483,8.318,4.998,1.149,2.641,13.598,4.639,11.147,12.532,4.972,2.577,-0.641,1.039,3.906,10.6,3.199,8.192,-2.627,9.649,5.441,1.91,-3.743,-1.08,3.059,2.137,-2.209,2.443],[20.762,21.868,18.362,32.129,25.107,15.273,26.429,22.585,22.637,16.703,17.167,18.274,18.369,17.685,19.103,22.132,18.954,18.068,13.637,13.024,10.887,17.461,12.538,4.213,14.997,18.136,16.542,9.646,14.753,17.046,7.894,3.175,5.345,8.967,9.368,14.165,4.659,12.719,6.243,7.71,10.486,9.167,5.051,8.001,9.392,12.344,2.395,15.118,2.579,4.958,9.128,7.105,-0.889,10.03,2.027,3.341,-3.081,3.286,-0.223,3.359,0.479,12.113,12.552,2.985,22.845,16.036,24.255,31.683,21.318,16.575,19.807,22.186,19.062,30.514,24.657,16.314,23.06,23.113,17.477,20.361,16.504,19.128,17.219,25.499,17.196,23.206,15.009,18.053,26.525,18.546,16.864,19.728,16.384,18.802,13.931,2.623,21.188,18.045,14.04,14.116,12.483,18.039,12.882,18.32,12.458,17.56,13.243,22.526,17.667,3.972,15.233,13.767,11.519,19.084,9.058,16.301,10.892,8.901,8.819,11.286,17.128,15.046,20.059,16.955,17.712,15.378,6.331,1.444,4.383,10.205,7.36,9.114,3.714,7.123,11.468,5.193,6.322,12.933,8.879,4.006,10.421,10.659,9.233,7.412,14.069,9.607,0.772,3.992,12.514,10.613,7.272,6.125,13.394,5.069,3.154,7.938,8.139,3.823,11.252,15.873,11.904,2.731,9.902,4.908,7.245,0.261,8.153,5.105,1.003,2.943,13.577,4.807,11.047,12.8,4.975,2.232,-0.791,1.21,3.549,10.833,3.864,8.398,-2.5,9.186,5.329,1.842,-3.851,-0.899,2.948,2.565,-2.3,2.162],[20.72,21.77,18.444,32.227,25.042,15.256,26.425,22.673,22.576,16.768,16.806,18.307,18.194,17.408,19.166,22.194,19.241,17.951,13.463,13.073,10.607,17.413,12.62,4.19,14.817,18.016,16.658,9.747,14.93,17.06,7.826,3.156,5.155,8.932,9.514,14.117,4.597,12.887,5.977,7.863,10.502,9.112,5.204,7.907,9.329,12.501,2.559,15.126,2.656,5.081,8.966,7.058,-0.868,10.079,2.127,3.346,-2.891,3.46,-0.342,3.273,0.613,12.339,12.638,2.856,22.638,15.912,24.097,31.487,21.234,16.389,19.688,22.59,19.491,30.314,24.611,16.637,22.973,22.198,17.144,19.847,16.588,18.974,17.643,25.187,17.094,23.607,14.481,18.679,26.334,18.473,16.527,19.481,16.55,18.812,14.246,2.949,21.77,18.155,14.037,13.765,12.209,17.57,13.246,18.892,12.419,16.903,13.163,22.75,17.644,3.719,15.324,13.459,11.569,19.442,9.494,16.33,11.01,9.048,9.201,11.155,16.986,15.462,19.798,17.052,16.987,15.27,6.088,1.935,4.269,10.875,7.427,9.369,3.925,7.224,11.811,5.584,6.076,12.864,8.956,4.355,10.263,10.641,8.96,7.61,14.578,9.158,0.794,4.084,12.424,10.202,7.161,6.325,13.567,4.623,2.94,7.655,8.36,4.041,10.942,16.137,11.933,2.822,9.583,5.271,7.598,0.018,7.987,5.203,1.237,2.982,13.693,4.817,11.193,12.322,5.088,1.797,-0.123,0.8,3.055,10.793,3.902,8.764,-2.53,9.122,5.341,2.003,-3.826,-1.096,3.131,2.82,-2.886,2.517],[20.725,21.681,18.444,32.121,24.947,15.204,26.343,22.823,22.467,16.764,16.608,18.343,18.059,17.007,19.076,22.204,19.554,17.888,13.219,13.107,10.351,17.267,12.824,4.161,14.577,17.82,16.644,9.907,15.109,17.105,7.663,3.049,5.066,9.036,9.745,14.106,4.673,12.964,5.878,7.935,10.515,8.965,5.337,7.901,9.255,12.597,2.692,15.141,2.654,5.258,8.842,6.957,-0.821,10.079,2.315,3.295,-2.748,3.558,-0.37,3.229,0.628,12.559,12.6,2.862,21.793,16.031,24.099,31.721,21.311,16.281,19.242,22.391,19.536,30.653,24.889,15.784,23.288,22.656,16.789,19.898,16.697,19.137,17.755,25.72,16.961,23.151,14.743,18.972,25.938,18.614,16.574,19.424,16.62,18.562,14.66,2.618,22.362,19.006,14.291,13.16,11.905,17.009,13.12,18.504,12.26,17.395,13.667,23.28,17.425,3.816,15.413,14.06,11.847,19.478,9.466,16.898,11.373,9.243,8.638,10.916,17.537,16.088,19.621,16.747,16.704,15.293,6.517,1.987,4.395,10.816,7.309,8.711,3.829,7.616,11.986,5.142,6.266,12.841,9.416,4.269,10.147,10.603,9.087,7.17,14.509,9.102,0.913,4.164,12.197,10.358,7.177,6.484,14.011,4.311,2.968,7.767,8.804,3.787,11.251,16.186,12.06,3.259,9.252,5.23,7.642,0.406,8.189,5.164,1.496,2.728,14.111,4.76,11.582,12.573,4.868,2.033,-0.437,0.397,3.119,10.844,3.702,9.354,-2.571,8.728,5.288,1.965,-3.709,-0.918,3.357,2.426,-2.302,2.718],[20.789,21.602,18.276,32.088,24.923,15.0,26.267,22.81,22.509,16.792,16.499,18.37,17.983,16.622,18.875,22.281,19.715,17.736,13.102,13.135,10.181,17.125,13.071,4.037,14.505,17.767,16.735,9.796,15.41,17.096,7.447,2.942,5.087,9.125,10.056,14.267,4.886,12.797,5.739,7.874,10.625,8.872,5.341,8.104,9.398,12.695,2.622,15.161,2.527,5.364,8.681,6.787,-0.685,10.129,2.538,3.134,-2.629,3.556,-0.48,3.202,0.738,12.639,12.588,2.98,21.394,16.105,24.109,31.928,21.187,15.704,19.504,22.399,19.241,30.397,24.726,16.107,23.389,23.414,16.675,20.014,16.456,19.11,17.372,25.811,16.901,23.209,14.418,19.157,26.033,18.53,16.406,19.437,15.956,18.34,14.021,2.566,22.633,20.104,14.457,12.904,11.532,17.106,12.981,18.807,11.922,17.933,14.278,22.748,17.458,3.717,15.292,14.068,11.799,19.425,9.563,17.276,11.57,8.908,9.018,10.622,17.803,16.829,19.233,16.312,17.265,15.252,6.499,1.449,4.525,10.256,7.49,8.053,3.934,8.294,12.014,4.68,6.665,12.801,9.685,4.399,10.349,10.369,9.125,7.123,14.244,9.221,0.899,4.346,12.901,10.383,7.613,6.12,14.896,4.474,3.258,7.653,8.95,4.045,11.339,15.965,12.4,3.302,8.556,5.104,7.401,0.596,8.219,5.185,1.838,2.76,14.388,4.759,11.964,12.881,4.409,2.376,-0.586,0.841,3.447,10.819,3.953,9.751,-2.25,8.588,5.432,1.819,-3.394,-0.933,3.786,2.44,-1.997,2.186],[20.781,21.494,18.111,32.108,25.121,14.694,26.223,22.818,22.658,16.878,16.534,18.37,18.081,16.338,18.618,22.227,19.92,17.68,12.971,13.028,10.045,17.037,13.33,3.938,14.45,17.773,16.914,9.633,15.821,17.288,7.369,2.751,5.147,9.175,10.058,14.471,5.234,12.563,5.66,7.727,10.83,9.048,5.277,8.263,9.464,12.843,2.397,15.067,2.329,5.401,8.545,6.644,-0.579,10.037,2.82,3.078,-2.602,3.486,-0.593,3.148,0.806,12.62,12.699,3.198,21.867,15.909,24.103,32.133,21.197,15.203,19.502,22.004,19.128,30.013,24.49,16.436,23.105,22.777,16.499,20.5,15.825,18.787,17.045,25.82,17.151,23.667,14.298,19.013,26.287,18.624,16.593,19.577,15.697,18.727,13.21,2.457,22.775,20.367,14.606,13.11,11.733,17.663,13.121,18.942,11.888,17.51,14.589,22.707,17.419,3.506,15.517,13.702,11.87,19.193,10.16,17.559,11.687,8.471,8.356,10.386,17.828,16.979,19.638,16.26,17.059,15.445,6.383,1.231,4.187,10.807,7.355,7.822,3.737,8.67,11.609,4.779,7.038,12.957,9.351,4.16,10.161,10.726,9.484,7.062,13.834,9.036,0.853,4.671,13.237,10.351,7.959,5.866,14.804,4.901,3.632,8.125,9.242,3.993,11.342,16.236,12.477,2.753,8.302,5.664,7.014,0.59,8.19,5.293,1.972,3.128,14.169,4.557,12.08,12.498,3.756,2.001,-0.562,0.732,3.149,10.843,4.069,10.271,-2.07,9.2,5.206,1.691,-3.688,-0.757,3.784,2.8,-2.477,2.511],[20.698,21.408,18.106,32.123,25.415,14.377,26.203,22.747,22.609,17.045,16.592,18.314,18.364,16.316,18.444,22.079,20.154,17.872,12.769,12.943,10.023,16.957,13.6,3.878,14.315,17.884,16.976,9.559,16.155,17.448,7.326,2.481,5.028,9.196,9.886,14.569,5.725,12.399,5.603,7.829,10.943,9.359,5.151,8.387,9.61,12.981,2.124,14.912,2.257,5.51,8.43,6.549,-0.481,9.996,3.09,3.031,-2.751,3.443,-0.721,3.077,0.945,12.52,12.675,3.306,22.371,16.038,24.215,32.051,21.373,14.999,19.541,22.309,18.947,30.406,24.391,15.778,22.833,22.27,17.129,20.654,15.543,18.798,17.39,26.132,16.655,23.487,14.623,18.425,26.359,18.726,16.792,19.601,15.626,18.132,13.214,2.378,22.713,19.923,14.488,13.419,11.732,17.414,13.147,19.262,11.902,16.757,14.648,23.118,17.805,3.438,15.866,13.366,11.988,19.199,9.323,17.737,11.85,8.737,8.029,10.129,17.605,16.859,19.599,16.906,16.944,15.697,6.636,1.226,4.221,11.072,7.069,7.848,3.656,8.809,11.165,4.87,7.181,13.007,9.23,3.885,10.268,10.552,9.73,7.301,14.061,9.07,0.555,4.617,12.344,10.61,7.576,5.896,13.829,4.992,3.24,8.184,9.122,3.242,11.874,15.618,12.766,2.287,8.153,5.126,7.405,0.719,8.033,5.201,1.839,3.741,14.021,4.598,12.343,12.629,3.934,2.138,-0.735,0.001,2.595,10.975,4.093,10.696,-2.202,9.357,5.131,1.644,-4.096,-0.357,3.594,2.776,-2.289,3.037],[20.629,21.324,18.18,32.196,25.6,14.221,26.235,22.583,22.403,17.18,16.512,18.271,18.696,16.479,18.341,21.969,20.384,18.091,12.598,12.968,10.076,16.861,13.672,3.788,14.215,18.13,16.894,9.405,16.308,17.572,7.323,2.154,4.931,9.059,9.783,14.6,6.054,12.309,5.482,8.044,11.001,9.564,4.944,8.4,9.706,12.987,1.785,14.754,2.161,5.524,8.362,6.506,-0.382,10.037,3.298,2.882,-2.93,3.495,-0.891,3.059,1.278,12.477,12.414,3.255,22.406,16.474,24.017,32.068,21.42,15.277,19.791,22.615,18.979,30.567,24.64,15.951,22.44,22.915,17.026,20.224,15.632,18.565,17.794,26.241,16.559,23.661,14.207,17.339,26.052,18.922,16.895,19.349,15.585,18.543,13.929,2.635,22.292,19.44,14.639,12.862,11.615,17.2,12.799,19.684,11.809,16.656,15.034,22.667,17.592,3.348,16.02,13.223,11.892,19.194,8.962,17.77,12.155,8.935,8.396,9.679,18.051,17.368,20.015,17.335,17.323,15.595,6.5,1.279,4.398,10.468,7.208,7.863,3.669,9.327,11.704,5.089,7.345,13.149,9.158,4.179,10.878,10.671,9.722,7.075,13.91,9.836,0.445,4.794,12.814,10.774,7.667,6.42,13.816,4.418,3.094,8.05,8.536,3.22,11.691,15.129,12.652,2.017,8.358,4.945,7.769,0.432,7.805,5.439,2.134,4.211,14.101,4.69,12.498,12.696,4.123,3.07,-0.658,0.009,2.539,10.611,4.096,11.124,-2.135,8.846,4.954,1.762,-3.466,-0.484,3.671,2.491,-2.611,2.633],[20.596,21.178,18.32,32.341,25.73,14.252,26.306,22.623,22.238,17.25,16.438,18.154,19.059,16.699,18.457,21.804,20.554,18.119,12.628,12.905,10.012,16.743,13.714,3.735,14.078,18.392,16.879,9.251,16.447,17.796,7.428,1.927,5.063,8.831,9.857,14.605,6.033,12.265,5.337,8.047,10.978,9.737,4.766,8.373,9.72,12.989,1.563,14.632,1.978,5.42,8.187,6.477,-0.359,10.029,3.514,2.663,-2.934,3.53,-0.958,3.116,1.48,12.661,12.167,3.273,21.707,16.533,23.877,32.136,21.054,15.708,19.553,22.12,19.47,30.443,24.861,16.408,22.641,22.582,16.826,19.455,15.519,17.996,17.696,26.123,16.966,23.977,13.586,17.095,25.861,18.964,17.365,19.206,15.654,18.753,14.188,3.083,21.961,19.645,14.74,12.355,11.759,17.667,12.233,19.778,12.052,16.925,15.303,22.637,17.481,2.925,15.937,13.731,12.058,19.299,9.393,17.753,12.27,8.921,8.314,9.476,18.284,17.819,19.985,17.061,17.659,15.497,6.487,0.724,4.299,10.842,7.36,7.846,3.135,10.024,11.452,4.821,7.586,13.429,8.961,3.946,10.683,10.661,8.88,6.742,13.773,10.05,0.671,5.442,13.473,10.713,7.985,6.441,13.785,4.418,3.23,8.119,7.996,3.052,11.352,15.736,12.597,1.746,8.642,5.394,8.009,0.613,7.76,5.413,2.623,4.19,14.426,4.635,12.186,12.045,4.237,2.809,-0.415,0.296,2.67,10.353,4.325,11.547,-2.079,8.4,4.859,1.744,-3.584,0.209,3.875,2.354,-3.223,2.674],[20.562,21.074,18.399,32.458,25.853,14.406,26.342,22.605,22.063,17.184,16.612,17.964,19.385,16.915,18.624,21.655,20.753,18.027,12.776,12.965,9.91,16.621,13.815,3.748,14.027,18.429,16.899,9.121,16.622,17.999,7.509,1.745,5.265,8.686,9.913,14.603,5.981,12.054,5.191,7.585,10.836,9.74,4.625,8.213,9.732,13.06,1.41,14.595,1.897,5.248,7.974,6.567,-0.303,10.004,3.777,2.466,-2.919,3.513,-0.939,3.185,1.58,12.823,12.095,3.301,20.998,16.386,23.737,32.292,20.913,15.668,19.595,22.079,19.449,31.055,24.735,16.319,22.855,22.508,16.99,19.663,15.483,18.062,17.289,26.424,17.115,23.929,13.35,17.294,26.125,18.925,17.507,19.28,15.748,18.702,14.266,2.636,21.792,20.323,14.846,12.374,11.58,17.871,12.493,19.546,11.864,17.125,15.172,22.953,18.148,3.117,16.241,13.821,11.776,19.41,8.983,17.798,12.193,8.891,8.08,9.305,18.662,17.633,20.112,17.43,17.909,15.804,6.748,0.031,4.75,11.373,7.594,7.707,2.906,10.363,11.047,4.077,7.332,13.397,9.219,3.541,11.125,10.459,8.66,6.706,13.58,9.55,0.511,5.292,13.363,11.102,8.223,5.779,13.719,5.107,3.097,8.011,8.31,3.009,12.011,16.006,12.327,1.641,8.8,5.235,7.656,0.86,7.782,5.34,2.79,3.645,14.592,4.71,12.21,12.419,3.93,2.003,-0.264,0.495,2.857,10.307,4.487,11.343,-2.069,8.574,5.061,1.685,-3.894,0.405,3.967,2.491,-2.786,2.942],[20.621,21.043,18.307,32.624,25.972,14.455,26.303,22.627,21.884,17.037,16.775,17.873,19.525,16.983,18.722,21.555,20.915,17.962,13.244,13.045,9.781,16.606,13.898,3.715,14.107,18.368,17.175,8.927,16.675,18.193,7.494,1.591,5.573,8.635,9.865,14.647,5.864,11.734,5.01,7.23,10.734,9.621,4.536,8.179,9.782,13.341,1.346,14.538,1.828,5.038,7.799,6.691,-0.141,10.065,4.057,2.283,-2.862,3.524,-0.924,3.215,1.627,12.888,12.07,3.078,20.698,16.294,23.685,32.057,20.849,15.715,20.411,21.902,19.072,31.743,24.584,16.109,22.596,23.319,17.502,19.943,15.905,18.972,17.955,26.36,16.679,24.139,14.096,17.346,26.49,18.79,17.783,19.069,16.05,19.253,14.472,2.458,22.001,20.906,14.759,12.667,11.482,17.57,13.041,20.074,12.085,17.026,15.117,23.089,17.881,3.228,16.571,13.202,11.75,19.337,8.554,17.389,12.291,8.947,8.214,8.818,18.604,17.2,20.244,17.868,18.013,15.762,7.12,-0.077,4.964,11.076,7.626,7.316,2.554,10.264,11.362,4.084,6.927,13.416,9.14,3.678,10.728,10.159,8.643,6.707,13.319,9.872,0.235,5.205,13.344,11.008,7.729,5.379,13.852,4.728,2.732,8.141,8.015,2.915,11.949,15.507,12.368,1.64,8.612,4.893,7.236,0.635,8.297,5.314,2.62,3.422,14.596,4.895,12.61,12.69,3.506,1.612,-0.481,0.192,3.254,10.228,4.043,10.964,-1.976,8.549,5.423,1.816,-3.784,-0.073,3.796,2.624,-2.253,2.671],[20.624,20.99,18.307,32.834,26.091,14.568,26.28,22.799,21.877,16.867,16.823,17.865,19.639,16.969,18.842,21.572,21.09,17.888,13.861,13.217,9.687,16.671,13.876,3.673,14.126,18.359,17.435,8.811,16.565,18.387,7.428,1.436,5.848,8.515,9.715,14.608,5.653,11.564,4.742,7.137,10.815,9.598,4.522,8.219,9.798,13.562,1.323,14.481,1.709,4.715,7.7,6.892,-0.127,10.099,4.267,2.14,-2.705,3.401,-1.031,3.225,1.469,12.911,12.068,2.692,21.151,16.301,23.575,31.599,20.762,15.765,20.963,22.052,18.922,31.719,24.84,16.133,22.502,23.361,17.514,20.366,15.773,19.725,18.207,26.256,16.71,24.278,14.95,17.461,26.208,18.681,17.962,19.137,16.164,19.382,15.103,2.774,22.435,20.695,14.944,13.093,11.399,17.238,13.155,20.678,12.319,16.629,15.313,22.841,17.199,2.862,16.676,12.92,12.107,18.765,8.83,16.744,12.597,8.851,7.902,8.685,19.163,17.248,19.986,17.719,17.931,15.779,7.0,0.282,5.149,11.314,7.321,7.166,2.826,10.084,11.218,4.576,6.719,13.606,8.729,3.998,10.603,10.09,8.541,6.495,13.293,9.295,-0.07,5.404,13.642,10.963,7.411,5.55,13.232,3.764,2.541,8.004,7.851,2.606,12.212,15.131,12.447,1.666,8.307,5.115,6.726,0.928,8.481,5.277,2.546,3.708,14.507,4.803,13.274,12.31,3.408,1.195,-0.159,0.001,2.99,10.369,4.413,10.36,-1.708,8.451,5.299,1.933,-3.769,0.192,3.817,2.071,-2.53,2.669],[20.644,20.989,18.452,32.931,26.18,14.764,26.279,22.977,21.976,16.709,16.804,17.889,19.695,16.948,19.025,21.654,21.329,17.672,14.489,13.39,9.612,16.719,13.858,3.618,14.083,18.323,17.609,8.763,16.428,18.562,7.362,1.332,6.065,8.378,9.569,14.484,5.424,11.53,4.488,7.06,10.997,9.624,4.558,8.215,9.785,13.716,1.217,14.258,1.551,4.623,7.621,7.032,-0.082,9.924,4.412,1.975,-2.599,3.204,-1.126,3.136,1.273,13.023,12.008,2.315,21.886,16.155,23.463,31.88,20.732,15.968,21.066,22.631,19.237,31.862,25.038,16.244,22.151,22.522,16.896,20.037,15.759,19.825,17.731,26.659,17.159,24.267,14.442,17.914,25.379,18.432,18.338,19.327,15.547,19.164,15.283,3.503,22.841,20.396,15.059,13.37,11.083,17.375,13.509,20.507,12.704,16.119,15.676,22.682,17.424,2.475,16.977,12.788,12.504,19.125,9.182,16.57,12.233,8.801,7.994,8.64,19.302,17.494,19.846,17.705,18.009,15.867,7.41,0.403,4.781,11.21,7.347,7.087,2.812,9.714,10.836,4.093,6.793,13.566,8.652,3.377,10.677,10.199,9.159,6.065,13.357,9.389,-0.056,5.32,13.605,11.459,7.414,5.405,13.224,4.122,2.468,7.985,8.176,2.69,12.624,15.729,12.446,1.138,8.527,4.967,7.094,1.249,8.319,5.129,2.5,4.172,14.575,4.717,13.698,12.253,3.502,0.859,-0.367,0.22,2.552,10.134,4.017,9.869,-1.873,8.54,5.47,1.898,-3.326,0.354,4.27,1.588,-2.412,2.799],[20.675,21.208,18.653,33.08,26.063,14.812,26.192,23.071,22.1,16.643,16.654,17.916,19.649,16.898,19.2,21.895,21.444,17.582,14.911,13.593,9.493,16.691,13.761,3.617,14.052,18.246,17.58,8.788,16.413,18.719,7.366,1.179,6.126,8.257,9.572,14.255,5.231,11.536,4.38,6.982,11.147,9.803,4.582,8.319,9.919,13.842,0.752,14.069,1.376,4.657,7.571,7.126,0.044,9.702,4.581,1.83,-2.426,3.087,-1.03,2.99,1.221,13.234,11.891,2.034,22.117,15.726,23.773,32.192,20.914,16.149,21.254,22.625,19.412,31.846,25.148,16.559,22.288,22.718,16.711,19.541,16.196,19.386,17.488,27.409,17.623,24.523,14.658,17.962,24.998,18.394,18.22,19.559,15.409,19.595,15.036,3.092,22.338,20.876,14.632,13.147,11.325,17.032,14.127,19.935,12.806,15.811,15.425,22.246,17.833,2.828,17.094,12.946,12.647,19.385,9.153,16.624,11.983,8.96,8.18,8.795,19.42,17.215,20.127,17.818,18.398,15.791,7.32,-0.028,5.125,10.934,7.25,7.042,2.714,9.567,11.021,3.579,6.88,13.287,8.878,3.276,11.133,10.136,8.717,6.125,13.128,9.969,-0.005,4.979,13.762,12.075,7.464,5.17,13.275,4.765,2.566,8.141,7.902,2.481,12.327,15.648,12.464,1.126,8.372,4.842,7.754,0.677,8.425,4.868,2.343,3.983,14.849,4.671,13.55,12.608,3.394,0.468,-0.986,-0.094,2.459,10.074,3.858,9.584,-1.806,8.515,5.588,1.808,-3.405,-0.178,4.22,1.638,-2.017,2.416],[20.528,21.537,18.922,33.233,25.984,14.908,26.087,23.089,22.261,16.618,16.489,17.983,19.515,16.894,19.444,21.994,21.265,17.484,15.211,13.756,9.53,16.498,13.631,3.638,14.021,18.349,17.48,8.872,16.333,18.877,7.337,1.099,6.141,8.23,9.671,14.03,5.087,11.469,4.38,6.859,11.213,10.191,4.666,8.308,10.131,13.885,0.349,13.914,1.277,4.625,7.657,7.241,0.045,9.449,4.714,1.737,-2.121,2.927,-1.036,2.951,1.137,13.507,11.881,1.94,21.932,15.6,24.074,32.11,21.538,16.094,20.976,22.217,19.206,31.967,24.915,15.883,22.422,23.826,17.337,20.004,16.16,19.113,17.988,27.489,17.734,24.544,15.094,17.421,25.021,18.399,18.184,19.291,15.726,19.27,15.329,2.491,21.793,21.472,14.714,12.845,11.272,17.091,14.305,20.093,12.963,15.947,14.841,23.082,17.782,2.965,17.021,13.317,12.641,19.259,8.577,16.65,11.983,8.941,8.341,8.99,19.018,17.024,20.048,17.757,18.765,15.643,7.295,-0.287,5.263,11.096,7.01,6.77,2.39,9.551,10.988,3.854,6.814,12.882,8.915,3.563,11.576,10.178,8.514,5.861,13.293,9.972,-0.141,4.694,13.952,11.88,7.514,5.152,12.966,4.414,2.487,8.419,7.753,1.831,12.442,15.002,12.571,0.614,8.366,5.154,7.139,0.354,8.495,4.794,2.361,3.766,15.206,4.51,13.08,12.583,3.21,0.299,-0.138,0.149,2.44,10.142,3.735,9.259,-1.8,7.859,5.839,1.736,-3.617,0.009,4.181,1.285,-2.117,2.115],[20.419,21.709,19.136,33.305,26.071,14.956,26.015,23.12,22.436,16.567,16.32,17.968,19.337,17.032,19.597,22.014,21.065,17.364,15.456,13.686,9.671,16.201,13.531,3.57,14.011,18.534,17.284,8.856,16.322,18.991,7.187,1.146,6.159,8.213,9.84,13.893,5.008,11.395,4.27,6.742,11.05,10.505,4.771,8.091,10.314,13.979,0.097,13.753,1.301,4.411,7.67,7.416,-0.084,9.168,4.779,1.776,-1.839,2.867,-0.949,2.944,1.109,13.711,11.965,1.978,22.101,15.769,24.124,32.129,21.664,15.744,20.209,22.444,18.777,32.183,24.626,16.039,22.139,24.142,16.844,20.043,16.524,19.791,18.65,27.27,17.434,24.383,15.192,17.549,25.473,18.387,17.786,19.189,15.811,19.112,16.077,2.629,21.503,20.912,15.007,12.673,11.297,17.133,14.25,20.513,12.776,16.182,14.97,23.64,17.873,2.808,17.144,13.252,12.88,19.064,8.655,16.559,12.348,8.546,8.532,8.979,18.858,16.85,20.335,17.84,19.119,15.576,7.961,-0.574,4.917,11.509,7.252,6.824,2.22,9.612,11.029,3.707,6.847,12.834,8.686,3.52,11.974,10.287,8.915,5.841,13.028,10.23,-0.375,4.148,13.768,11.716,7.072,5.161,12.605,4.067,2.003,8.477,7.794,1.473,12.538,15.098,12.438,0.549,7.937,5.08,6.816,0.734,8.709,4.719,2.628,4.16,15.378,4.37,13.439,12.08,3.038,0.973,0.024,0.128,2.64,10.163,3.632,9.06,-1.903,7.829,5.694,1.662,-3.448,-0.022,4.9,0.811,-1.689,2.094],[20.318,21.768,19.113,33.455,26.273,15.16,26.05,23.228,22.623,16.544,16.067,17.965,19.106,17.152,19.65,22.036,20.911,17.243,15.613,13.374,9.869,15.987,13.522,3.404,14.011,18.667,17.215,8.747,16.576,19.119,6.941,1.191,6.164,8.161,10.032,13.793,4.919,11.389,4.014,6.629,10.717,10.839,4.906,7.842,10.362,14.058,-0.135,13.698,1.287,4.116,7.682,7.605,-0.219,8.88,5.023,2.004,-1.669,2.962,-0.915,2.977,1.286,13.815,11.991,2.09,22.405,15.984,24.181,32.477,21.413,16.119,19.259,23.13,18.613,32.542,24.571,16.1,22.26,23.658,16.649,19.85,16.527,20.404,18.871,26.903,17.446,24.439,14.886,18.12,25.455,18.399,17.321,19.604,15.822,19.896,16.128,3.171,21.476,20.871,14.838,12.695,11.588,17.108,14.508,19.912,12.156,16.294,15.311,23.136,17.77,2.546,17.345,13.101,12.932,18.768,9.072,15.994,12.26,8.578,8.039,8.712,18.504,16.983,20.369,18.006,19.047,15.681,7.705,-0.437,5.108,11.643,7.365,6.905,2.216,9.756,10.611,3.476,6.502,13.098,9.065,3.567,11.909,10.225,8.552,5.713,12.818,10.539,-0.571,4.059,13.668,11.267,6.677,4.926,12.527,4.083,1.917,8.952,7.558,1.284,12.658,14.938,12.103,0.687,7.29,4.877,6.953,0.97,8.543,4.595,2.538,4.272,15.344,4.359,13.96,12.328,3.34,1.322,-0.221,-0.108,2.524,10.205,3.909,8.882,-1.768,8.31,6.137,1.594,-2.764,-0.23,4.628,1.23,-1.696,2.287],[20.192,21.919,19.005,33.662,26.504,15.33,26.124,23.275,22.721,16.645,15.858,18.197,18.803,17.227,19.764,21.996,20.825,17.096,15.616,13.156,10.049,15.93,13.501,3.223,14.084,18.651,17.299,8.561,16.862,19.133,6.771,1.184,6.147,8.108,10.164,13.773,4.834,11.382,3.706,6.616,10.352,10.977,4.928,7.47,10.46,14.074,-0.226,13.743,1.209,4.08,7.764,7.703,-0.266,8.667,5.172,2.283,-1.604,3.153,-0.961,3.072,1.472,13.82,11.987,2.137,22.506,15.572,24.043,32.714,21.292,16.838,18.318,23.538,18.954,32.327,24.738,15.628,22.414,24.486,16.628,19.756,16.73,19.952,18.253,26.977,17.655,24.64,15.183,18.381,25.061,18.352,17.205,19.691,15.754,19.999,15.812,3.474,21.583,20.996,14.558,12.946,11.831,17.172,14.729,19.958,11.964,15.888,15.646,22.792,17.919,2.561,17.433,12.981,12.382,18.872,8.579,15.099,11.998,8.353,7.75,9.085,18.69,17.453,20.363,17.988,18.695,15.547,7.471,-0.372,5.43,11.631,6.761,6.818,1.958,9.811,10.21,3.717,6.323,12.894,9.443,3.728,11.823,10.452,8.467,5.254,12.979,10.901,-0.181,3.845,13.982,10.929,7.002,4.851,12.483,4.28,2.223,8.607,7.257,0.977,13.173,14.732,11.747,0.324,7.052,4.601,7.632,0.542,8.913,4.842,2.31,4.395,15.169,4.534,13.857,12.905,3.87,1.203,-0.488,-0.197,2.199,10.17,3.48,8.636,-2.015,8.364,6.273,1.652,-2.841,0.181,4.715,1.418,-1.01,2.68],[20.18,22.386,18.88,33.641,26.595,15.448,26.161,23.442,22.862,16.658,15.693,18.289,18.494,17.363,19.771,21.765,20.896,17.165,15.457,13.19,10.281,15.909,13.47,3.078,14.166,18.604,17.422,8.184,17.012,19.057,6.518,1.075,6.127,8.007,10.255,13.804,4.79,11.436,3.408,6.866,10.158,10.76,4.868,7.24,10.49,14.194,-0.366,13.781,1.255,4.18,7.976,7.672,-0.352,8.575,5.2,2.533,-1.516,3.242,-1.097,3.171,1.583,13.861,11.904,2.033,22.444,15.515,23.855,32.788,21.201,17.005,17.568,23.262,18.906,32.145,25.277,15.517,22.703,24.823,16.237,19.402,17.116,19.891,17.809,27.614,17.613,24.849,15.897,18.109,24.927,18.206,16.994,19.589,15.583,19.638,15.891,2.939,21.854,20.695,14.532,13.775,11.886,16.936,14.624,20.381,12.216,15.511,15.846,23.293,18.358,2.812,17.279,12.972,12.066,18.964,7.802,14.463,11.931,8.055,7.998,9.442,19.158,17.819,20.525,17.749,18.783,15.71,7.917,-0.435,5.179,11.864,6.563,7.011,2.376,9.662,10.534,3.44,5.872,13.149,9.882,3.466,12.038,10.789,8.423,4.903,13.132,11.149,-0.284,3.629,14.205,10.73,7.072,5.147,12.596,4.242,2.473,8.779,6.901,0.801,12.455,15.151,11.678,0.031,7.38,4.461,7.604,0.022,8.865,5.016,2.923,4.442,15.454,4.511,13.445,12.854,4.191,0.856,-0.484,0.115,2.548,10.148,3.869,8.307,-2.101,8.161,6.413,1.79,-3.181,0.397,5.269,0.854,-1.037,2.979],[20.161,22.84,18.717,33.476,26.68,15.606,26.223,23.573,22.929,16.637,15.508,18.171,18.218,17.414,19.771,21.534,21.079,17.446,15.269,13.367,10.514,15.874,13.439,3.055,14.384,18.641,17.619,7.716,16.995,18.996,6.313,1.011,6.093,7.88,10.463,13.903,4.767,11.674,3.18,7.08,10.172,10.501,4.731,7.257,10.479,14.18,-0.528,13.854,1.386,4.359,8.18,7.669,-0.417,8.526,5.267,2.747,-1.517,3.143,-1.174,3.174,1.777,13.907,11.835,1.838,22.58,15.941,24.285,32.878,21.478,16.796,17.399,23.152,18.46,32.265,25.231,15.462,23.496,24.414,16.552,19.448,17.18,20.11,18.25,28.145,17.153,25.095,15.55,17.908,24.971,17.733,16.954,19.935,15.929,19.28,15.914,2.241,21.828,21.175,14.707,14.163,12.276,17.121,14.121,20.036,12.25,15.445,15.621,23.103,18.339,2.303,17.174,12.829,12.455,19.176,7.915,14.364,12.085,7.993,7.465,9.401,19.345,17.821,20.396,17.805,19.045,15.467,7.664,-0.529,5.308,12.257,6.43,6.689,2.145,9.629,10.593,2.608,5.563,13.425,9.697,3.511,11.929,10.537,8.387,4.647,13.032,10.491,-0.469,3.347,14.021,10.61,7.115,5.236,12.777,4.048,2.168,8.691,7.329,0.936,12.486,15.38,11.617,0.148,7.913,5.26,7.036,0.075,8.539,4.556,3.212,4.161,15.674,4.387,13.825,12.487,4.15,0.667,-0.358,0.087,3.258,9.995,3.757,8.352,-2.139,8.102,6.093,1.663,-2.703,0.233,4.91,0.79,-1.418,2.577],[20.037,23.139,18.587,33.376,26.805,15.589,26.266,23.589,22.938,16.623,15.476,18.092,18.03,17.398,19.809,21.319,21.357,17.856,15.009,13.448,10.79,15.837,13.391,3.114,14.666,18.557,17.83,7.18,16.966,18.905,6.221,0.875,5.947,7.832,10.785,14.071,4.721,11.808,2.941,7.085,10.186,10.345,4.519,7.233,10.345,13.927,-0.602,14.014,1.475,4.562,8.198,7.613,-0.512,8.585,5.32,2.865,-1.522,2.902,-1.095,3.004,1.89,13.908,11.861,1.732,22.678,15.756,24.47,32.273,21.955,16.428,17.703,23.907,18.492,32.697,24.808,15.439,24.271,24.394,16.557,19.898,17.176,20.446,18.278,28.248,16.969,25.465,15.174,18.228,25.239,18.312,17.027,19.764,16.216,18.998,15.798,2.446,21.485,21.381,14.631,13.926,12.424,17.755,13.52,20.365,12.384,15.83,15.495,22.781,18.093,1.864,17.127,13.307,12.752,19.526,7.78,14.534,12.504,7.827,6.994,9.184,19.582,17.285,20.4,17.979,19.041,15.741,7.731,-0.714,5.208,12.485,6.17,6.263,1.941,9.376,10.421,2.935,5.217,13.118,9.877,3.895,11.509,10.378,8.897,4.633,13.184,10.131,-0.158,3.718,14.043,10.692,7.152,5.342,12.998,3.843,2.016,8.743,7.401,0.803,13.345,15.113,11.703,-0.209,7.461,5.1,6.73,0.808,8.367,4.401,3.08,4.603,15.684,4.417,14.151,12.72,4.212,0.441,-0.456,0.145,3.299,9.999,3.748,8.533,-2.145,8.527,5.916,1.773,-2.291,0.472,4.679,0.927,-1.607,2.428],[20.021,23.287,18.558,33.469,26.947,15.413,26.289,23.607,22.882,16.709,15.608,18.142,17.919,17.429,19.917,21.13,21.596,18.219,14.643,13.227,10.962,15.832,13.421,3.313,14.915,18.42,17.884,6.67,17.024,18.926,6.164,0.584,5.694,7.858,11.239,14.231,4.691,11.82,2.826,6.921,10.163,10.316,4.373,7.07,10.236,13.824,-0.639,14.106,1.585,4.486,8.172,7.409,-0.521,8.657,5.369,2.885,-1.432,2.806,-0.743,2.894,1.877,13.916,12.036,1.773,23.285,15.613,24.116,31.891,22.008,16.532,18.019,23.965,18.448,32.798,24.806,15.626,24.462,24.699,16.322,19.515,16.809,20.342,17.676,28.419,17.325,25.36,15.785,18.142,25.782,18.364,16.881,19.85,15.965,19.217,15.676,2.932,21.002,21.068,14.911,13.824,12.332,18.301,13.643,20.529,12.531,16.541,15.652,22.525,17.655,1.883,17.203,13.897,12.569,19.978,7.153,14.648,12.269,7.734,7.151,9.865,19.687,17.377,20.245,18.246,18.158,15.78,7.492,-1.024,4.796,12.399,6.557,6.691,1.978,9.473,10.36,3.271,5.219,13.002,10.431,3.447,11.473,10.636,8.837,4.456,13.126,10.61,-0.239,4.342,13.555,10.439,7.142,5.16,13.22,3.183,2.482,8.704,7.182,-0.102,13.059,15.211,11.775,0.01,7.091,4.823,6.873,0.855,8.475,4.522,3.211,4.594,15.08,4.078,14.368,12.566,4.306,0.842,-1.025,0.036,2.767,10.216,4.08,8.578,-1.943,8.475,5.773,1.758,-2.777,0.697,4.939,0.858,-1.708,2.556],[20.009,23.434,18.528,33.568,27.015,15.296,26.404,23.593,22.767,16.858,15.806,18.326,17.824,17.356,20.015,21.025,21.583,18.365,14.304,12.778,11.067,15.901,13.465,3.511,15.18,18.274,17.91,6.42,17.143,18.802,6.283,0.288,5.404,7.932,11.6,14.267,4.802,11.847,2.638,6.755,10.103,10.456,4.135,6.957,10.233,13.795,-0.66,14.157,1.711,4.333,8.296,7.153,-0.411,8.612,5.426,2.883,-1.486,2.858,-0.523,2.775,1.948,13.801,12.191,1.96,23.861,15.884,24.14,32.29,21.345,17.11,17.415,23.438,18.432,33.072,25.157,15.506,24.087,24.617,16.484,19.127,16.862,20.563,17.886,28.2,17.236,25.219,15.396,18.184,25.51,18.046,16.908,19.739,15.941,19.32,15.441,3.365,20.401,21.463,14.868,14.123,12.578,18.226,13.824,20.745,12.416,17.079,15.715,22.293,17.346,2.257,17.155,13.936,11.985,20.224,6.963,14.77,11.996,7.978,6.513,10.463,19.669,17.897,19.969,18.186,18.395,15.945,6.959,-1.075,4.871,12.47,6.67,7.083,1.761,9.548,10.528,3.037,5.239,13.608,11.105,2.888,11.404,10.335,8.266,4.061,12.851,11.216,-0.113,4.363,13.88,10.453,6.905,4.765,13.18,3.157,2.784,8.379,7.083,0.087,12.181,15.648,11.722,0.455,7.152,4.675,6.799,0.888,8.365,4.581,3.172,4.327,15.411,4.029,14.324,12.747,3.687,0.93,-0.194,0.368,2.55,10.334,3.726,8.609,-2.203,7.997,5.858,1.516,-2.941,0.272,5.115,1.142,-1.094,3.089],[19.887,23.511,18.7,33.726,26.732,15.282,26.433,23.521,22.681,17.045,15.993,18.554,17.759,17.438,19.965,20.851,21.504,18.236,14.164,12.305,11.185,16.063,13.485,3.675,15.346,18.065,18.016,6.291,17.199,18.603,6.52,0.123,5.295,8.012,11.718,14.392,5.013,11.834,2.335,6.792,10.072,10.623,3.917,6.899,10.192,13.704,-0.38,14.262,1.812,4.178,8.371,6.932,-0.27,8.439,5.377,2.688,-1.602,3.17,-0.421,2.691,2.015,13.747,12.248,2.137,24.462,16.066,24.036,31.924,21.163,16.593,16.629,23.108,18.936,33.306,25.303,15.708,24.237,24.142,16.71,19.333,16.946,20.803,18.34,27.998,16.989,25.18,14.64,18.353,25.091,18.538,17.19,19.958,16.003,19.074,15.119,3.602,20.097,21.522,14.713,14.762,12.689,18.161,13.113,20.165,11.834,17.032,15.767,22.325,17.303,2.585,16.824,13.886,11.416,20.063,7.128,14.81,11.948,8.166,5.938,11.05,19.709,17.913,19.951,17.685,18.835,15.905,6.545,-1.185,4.399,12.963,6.192,6.673,1.509,9.814,10.615,2.465,5.33,13.794,11.498,2.919,11.966,10.349,8.474,3.878,13.256,11.456,0.192,3.909,13.823,10.684,6.616,4.951,13.488,3.014,2.646,8.369,7.358,0.764,12.53,15.811,11.59,-0.137,7.316,4.513,7.22,0.352,8.206,4.423,2.941,4.475,15.432,4.054,14.118,13.098,3.691,0.92,0.39,0.527,3.161,10.436,3.854,8.571,-2.015,8.381,5.726,1.318,-2.762,0.569,5.064,1.119,-0.848,2.552],[19.93,23.578,18.949,33.674,26.324,15.266,26.209,23.294,22.691,17.321,16.178,18.72,17.732,17.576,19.748,20.674,21.459,18.189,14.084,11.888,11.4,16.267,13.443,3.904,15.382,17.897,17.965,6.098,17.139,18.423,6.549,0.048,5.298,8.095,11.797,14.537,5.165,11.848,2.165,7.031,10.205,10.762,3.87,6.954,10.192,13.725,-0.172,14.354,1.789,4.134,8.506,6.703,-0.107,8.257,5.3,2.467,-1.622,3.425,-0.485,2.756,1.892,13.892,12.158,2.096,24.709,16.229,24.153,31.956,21.445,16.543,16.29,22.857,18.697,33.761,24.827,15.824,24.78,24.414,16.586,19.599,16.952,20.609,18.343,27.938,17.611,25.026,14.798,18.813,25.415,18.835,17.316,20.253,16.179,18.919,15.405,3.56,19.964,20.939,14.715,15.116,12.921,18.015,13.127,20.037,11.271,16.635,15.864,22.369,17.376,2.678,16.554,13.693,11.277,19.749,7.023,14.736,12.307,8.358,6.369,11.002,19.842,17.61,19.73,17.956,18.365,16.094,7.012,-1.291,4.433,12.526,6.568,6.648,1.347,9.492,10.738,2.362,5.483,13.957,10.698,3.223,12.226,10.473,8.762,3.94,13.36,11.232,0.131,3.763,13.771,10.258,7.266,5.345,13.508,2.689,2.973,8.799,7.227,0.344,12.462,15.645,11.643,-0.23,7.396,4.662,7.684,0.361,7.913,4.363,3.419,4.541,15.317,4.024,13.733,12.679,3.655,0.64,0.543,0.758,3.321,10.346,3.447,8.165,-1.879,8.657,5.324,1.276,-2.924,0.594,4.367,1.417,-1.25,2.937],[20.167,23.735,19.129,33.549,25.969,15.275,25.928,23.084,22.816,17.631,16.27,18.909,17.737,17.713,19.425,20.58,21.359,18.228,13.994,11.47,11.75,16.403,13.443,4.167,15.367,17.865,17.862,5.889,17.04,18.194,6.521,-0.078,5.426,8.231,11.675,14.717,5.272,11.923,2.116,7.294,10.382,10.772,3.927,7.032,10.223,13.717,-0.241,14.285,1.704,4.098,8.72,6.508,0.115,8.137,5.249,2.343,-1.71,3.546,-0.617,2.801,1.811,14.157,12.058,2.022,24.472,16.513,24.327,31.716,21.897,17.083,16.747,22.811,18.658,34.142,24.628,15.854,24.895,24.098,16.474,19.606,16.609,20.158,18.155,27.609,17.9,24.549,15.168,19.084,25.306,18.547,17.246,20.559,16.709,18.977,15.329,3.645,19.722,21.025,14.993,14.853,12.799,18.445,13.466,20.071,11.13,16.435,15.734,22.435,16.986,2.863,16.605,13.851,11.382,20.041,7.123,14.677,12.265,8.012,6.379,10.281,19.496,17.675,19.525,18.178,18.018,16.269,7.293,-1.517,4.772,12.08,7.15,6.567,1.423,9.33,10.53,2.844,5.643,14.089,10.327,3.03,12.324,10.648,8.641,3.64,13.283,11.418,0.069,3.888,13.905,10.302,7.893,5.603,13.41,2.766,2.824,8.273,7.009,0.672,12.275,15.594,12.003,-0.162,6.701,4.809,8.102,0.711,7.424,4.998,3.222,4.203,15.945,4.22,13.679,12.427,3.56,0.424,0.092,0.602,2.873,10.187,3.377,7.594,-1.726,8.201,4.908,1.756,-2.602,0.745,4.729,1.465,-1.931,3.076],[20.4,23.781,19.201,33.428,25.843,15.236,25.856,22.898,22.984,17.736,16.238,19.124,17.843,17.949,19.167,20.536,21.249,18.512,13.906,11.205,11.979,16.437,13.493,4.31,15.383,17.883,17.828,5.83,16.908,18.107,6.548,-0.282,5.615,8.298,11.31,14.887,5.35,11.954,2.162,7.488,10.562,10.809,4.032,6.952,10.163,13.619,-0.335,14.139,1.557,4.045,8.945,6.285,0.135,7.829,5.296,2.406,-1.869,3.639,-0.892,2.845,1.798,14.364,12.015,1.943,24.666,16.676,24.507,31.796,21.846,17.076,17.29,23.086,19.161,34.302,24.746,15.992,24.79,23.38,16.458,19.909,16.641,19.695,18.296,27.129,17.856,24.213,15.111,19.412,24.59,19.267,17.329,20.618,16.661,18.734,15.079,4.024,19.883,21.492,15.064,14.552,13.137,18.507,13.064,20.082,10.768,16.465,15.404,22.311,16.936,3.242,16.463,14.052,11.605,20.427,6.902,14.697,12.155,7.728,5.951,10.086,19.625,17.728,19.661,17.743,17.842,16.28,6.85,-1.398,4.707,12.433,7.397,6.695,1.433,9.781,10.576,2.471,5.779,14.182,10.953,2.669,12.083,10.659,8.617,3.673,13.447,11.777,-0.138,4.282,13.364,11.214,7.958,5.814,13.151,3.325,2.582,8.264,7.264,0.207,12.448,15.623,11.844,-0.23,6.456,4.771,7.933,0.889,7.462,5.374,2.833,4.227,15.863,4.378,13.89,12.823,3.871,1.048,0.155,0.151,2.55,10.359,3.2,7.486,-0.855,8.339,4.574,1.563,-3.036,0.36,5.067,1.026,-2.089,2.996],[20.599,23.812,19.1,33.414,25.82,15.258,25.827,22.636,23.082,17.803,16.23,19.389,17.969,18.123,18.979,20.646,21.3,18.649,13.803,11.166,12.058,16.413,13.499,4.388,15.456,17.854,17.84,6.006,16.644,18.148,6.709,-0.321,5.829,8.269,10.954,14.923,5.395,12.022,1.968,7.583,10.688,10.843,4.169,6.882,10.187,13.439,-0.351,14.067,1.438,3.998,9.147,5.973,0.073,7.488,5.356,2.449,-2.133,3.742,-1.101,2.844,1.727,14.271,12.107,1.952,24.679,16.718,24.673,31.506,21.837,17.028,18.194,22.945,19.1,34.233,25.205,15.772,24.517,23.641,16.561,20.211,16.804,19.579,18.301,27.335,18.042,24.273,14.7,19.536,24.283,19.001,17.575,20.583,16.542,18.43,15.067,4.126,20.053,20.913,14.919,14.998,13.329,18.458,13.062,19.988,10.43,16.75,15.172,22.398,17.385,3.638,16.215,13.997,11.343,20.486,6.619,14.834,12.28,7.907,6.034,10.687,19.411,17.627,19.667,17.772,17.766,16.499,6.609,-1.474,4.481,12.254,7.798,7.008,1.329,9.784,10.874,2.211,5.77,14.411,10.905,2.936,12.012,10.488,8.216,3.728,13.309,11.812,-0.24,4.99,13.602,11.517,7.83,5.851,13.018,3.197,2.413,8.77,7.355,0.079,12.204,15.378,12.001,-0.174,6.175,4.459,7.788,0.793,7.7,4.997,2.809,4.48,15.781,4.12,14.436,12.555,4.007,1.192,-0.059,0.015,2.716,10.184,3.505,7.46,-0.216,8.983,4.82,1.286,-3.351,0.123,5.004,1.133,-1.399,3.15],[20.517,23.805,18.906,33.357,25.906,15.378,25.773,22.538,23.165,17.84,16.222,19.478,18.133,18.116,18.85,20.82,21.342,18.384,13.688,11.25,11.987,16.393,13.47,4.479,15.626,17.802,17.766,6.259,16.297,18.104,6.948,-0.171,5.928,8.16,10.621,14.902,5.399,12.092,1.663,7.48,10.802,10.836,4.109,6.734,10.295,13.327,-0.189,14.138,1.568,4.043,9.36,5.762,-0.013,7.338,5.393,2.431,-2.299,3.794,-1.11,2.828,1.657,14.193,12.197,2.085,24.445,16.691,24.577,31.57,21.587,17.747,18.07,22.436,19.222,34.277,24.971,16.007,24.674,23.813,16.576,19.751,16.667,20.007,17.623,27.22,18.488,24.325,14.928,19.971,24.699,18.487,17.935,21.042,16.933,18.539,14.772,4.243,20.494,20.756,14.982,14.984,13.455,18.865,13.301,19.894,11.007,17.013,15.02,22.386,17.289,3.889,16.343,14.089,10.647,19.914,7.167,15.18,12.498,8.052,6.265,11.093,19.481,17.218,19.679,17.556,18.069,16.453,7.227,-1.513,4.685,11.785,7.794,6.721,1.328,9.499,11.431,2.222,5.824,14.235,10.391,3.581,12.043,10.772,8.283,3.316,13.393,11.832,-0.185,5.459,13.423,10.72,7.909,5.838,13.341,2.749,2.618,8.384,7.159,0.817,12.246,15.207,12.322,-0.126,6.268,4.714,7.826,0.942,7.601,4.59,2.845,4.407,15.437,3.78,14.563,12.113,3.717,0.575,-0.613,0.158,3.299,10.368,3.199,7.332,0.169,8.83,5.282,1.459,-2.986,0.751,4.908,1.267,-1.35,3.301],[20.206,23.865,18.909,33.373,25.921,15.574,25.672,22.662,23.065,17.775,16.258,19.466,18.345,18.197,18.901,20.932,21.387,18.132,13.649,11.383,11.848,16.453,13.411,4.672,15.823,17.624,17.633,6.502,15.78,17.997,7.146,0.081,6.064,7.947,10.406,14.856,5.427,12.326,1.641,7.347,10.75,10.813,3.981,6.494,10.331,13.237,0.004,14.253,1.952,4.12,9.456,5.733,-0.054,7.31,5.387,2.497,-2.296,3.776,-1.05,2.722,1.679,14.175,12.161,2.042,24.488,16.834,24.513,31.525,21.627,17.882,17.013,22.571,18.994,33.417,24.582,16.156,24.548,23.273,16.585,19.569,17.022,19.957,17.418,27.315,18.235,24.38,14.745,20.278,25.038,19.193,18.131,20.85,16.712,18.593,14.307,4.737,20.978,21.251,15.014,14.869,13.121,18.175,13.309,20.084,11.839,17.151,14.468,22.409,16.81,3.614,16.36,14.505,10.67,19.956,7.176,15.617,12.19,8.17,6.218,11.371,19.414,16.866,19.539,17.586,18.104,16.509,7.872,-1.438,5.157,11.213,8.043,6.166,1.353,9.243,11.166,1.907,5.754,14.395,9.634,3.045,12.115,11.18,8.005,3.315,14.01,11.537,0.017,5.355,13.207,10.758,7.747,5.688,13.637,2.822,2.681,8.501,6.75,0.259,11.926,15.488,12.469,-0.052,6.58,5.105,8.65,0.828,7.592,4.993,3.174,4.152,15.62,4.238,14.423,12.585,3.689,0.399,-1.121,0.458,3.23,10.48,3.301,7.293,0.272,8.545,4.975,1.378,-3.474,0.974,4.97,1.942,-1.979,3.39],[19.911,23.978,18.954,33.33,25.859,15.631,25.588,22.708,22.831,17.769,16.396,19.382,18.529,18.275,19.036,20.971,21.451,18.021,13.622,11.619,11.716,16.522,13.194,4.884,15.975,17.403,17.447,6.592,15.207,18.016,7.237,0.356,6.293,7.596,10.089,14.901,5.428,12.577,1.765,7.212,10.562,10.766,3.806,6.228,10.374,13.078,0.007,14.484,2.164,4.127,9.533,5.837,-0.073,7.337,5.343,2.669,-2.305,3.823,-1.124,2.62,1.98,14.225,12.116,2.062,24.907,16.741,24.482,31.315,21.59,17.342,17.474,22.89,18.434,33.525,24.75,16.156,24.301,23.765,16.777,19.658,16.982,19.578,17.741,27.324,17.921,24.228,15.072,20.043,25.1,19.365,17.967,20.868,16.58,18.932,14.256,4.523,21.236,21.053,14.944,14.895,13.088,17.864,13.185,20.336,12.16,17.699,13.701,22.707,16.96,3.368,16.195,15.065,11.372,19.911,7.009,16.078,12.186,8.428,6.55,11.362,19.335,16.282,19.161,17.57,17.451,16.56,7.71,-1.166,5.435,11.276,8.317,6.273,1.451,9.105,11.292,1.814,5.917,14.382,9.94,2.786,12.227,10.985,7.669,3.465,14.074,11.406,0.45,4.651,13.223,11.34,7.27,5.466,13.263,3.061,2.911,8.899,6.746,-0.22,12.127,15.83,12.035,0.397,6.02,4.979,9.541,0.632,7.508,5.223,3.108,4.278,15.825,4.379,14.116,12.563,3.972,0.668,-0.884,0.337,2.94,10.256,3.642,7.46,0.28,8.662,4.465,1.855,-3.522,0.658,5.326,1.918,-2.237,3.097],[19.665,24.01,18.935,33.331,25.771,15.586,25.636,22.874,22.676,17.79,16.667,19.352,18.796,18.175,19.171,21.064,21.422,17.954,13.609,11.807,11.636,16.737,12.948,4.905,16.12,17.316,17.419,6.621,14.897,17.939,7.259,0.734,6.55,7.248,9.764,14.793,5.401,12.54,1.869,6.936,10.417,10.757,3.713,6.126,10.533,13.089,-0.133,14.761,2.164,4.018,9.834,5.963,-0.051,7.277,5.361,2.928,-2.333,3.8,-1.361,2.724,2.295,14.216,11.943,2.257,24.718,16.56,24.395,31.546,21.367,17.324,18.297,22.569,18.851,33.949,25.038,16.473,24.893,23.74,16.76,19.715,16.761,19.593,17.667,26.801,18.103,24.068,15.142,19.644,24.784,19.281,17.603,20.942,16.87,18.598,14.323,4.168,21.253,21.072,14.684,15.075,13.126,18.16,12.753,19.961,11.463,17.992,13.525,22.797,17.095,3.663,16.558,15.03,11.157,19.621,6.866,16.332,11.824,8.605,6.613,11.05,19.154,15.563,19.23,17.247,17.769,16.558,7.62,-0.814,5.242,11.214,8.339,6.2,1.681,9.02,11.482,1.907,5.45,14.492,9.994,2.712,12.252,10.912,7.357,3.641,14.049,11.363,0.611,4.232,12.656,11.578,7.145,5.317,13.413,2.601,3.615,8.677,6.757,0.353,12.168,15.992,11.382,0.616,5.779,4.907,10.0,0.697,7.309,4.984,3.355,4.56,15.722,4.458,14.087,12.359,4.121,1.112,-0.486,-0.129,3.402,10.1,3.35,7.154,0.174,8.847,4.387,1.871,-3.039,0.61,5.066,1.195,-2.265,3.499],[19.701,23.924,18.914,33.387,25.601,15.482,25.792,22.933,22.659,17.808,16.937,19.328,18.942,18.167,19.08,21.176,21.378,17.951,13.529,11.635,11.63,16.989,12.726,4.86,16.147,17.45,17.47,6.594,14.993,17.946,7.303,1.134,6.704,7.083,9.457,14.624,5.344,12.334,1.997,6.702,10.371,10.714,3.612,6.133,10.628,13.155,-0.252,14.891,2.065,3.834,10.263,5.961,0.034,7.141,5.439,3.164,-2.362,3.732,-1.569,2.965,2.446,14.109,11.71,2.331,24.606,16.697,24.165,31.626,21.228,17.599,18.739,22.779,18.783,33.79,24.862,16.423,25.034,23.903,16.956,19.689,16.882,19.857,17.318,26.976,18.607,24.122,14.584,19.501,24.652,18.581,18.069,20.985,17.07,19.049,13.69,4.627,20.788,21.028,14.385,15.332,12.906,18.149,13.105,20.026,11.104,17.723,13.762,22.971,17.043,3.773,16.152,14.664,10.663,19.61,6.556,16.485,11.44,8.603,6.616,10.458,19.075,15.962,19.3,17.224,18.254,16.328,7.932,-0.386,5.452,10.986,8.039,5.715,2.018,8.675,11.423,2.172,5.142,14.506,9.696,2.551,11.888,11.084,7.22,3.712,13.997,11.76,0.956,4.223,12.961,11.309,7.153,4.876,14.26,2.579,3.726,8.875,6.408,0.572,12.106,15.802,11.489,0.064,6.067,4.955,9.941,0.841,7.517,4.757,3.568,4.28,15.496,4.397,14.634,12.253,3.938,1.135,-0.406,-0.573,3.967,9.914,3.239,7.087,0.145,9.078,4.436,1.862,-3.626,0.954,4.935,1.387,-1.695,3.497],[19.85,23.808,18.877,33.336,25.509,15.292,25.858,22.898,22.752,17.711,17.102,19.206,19.201,18.439,18.908,21.206,21.471,18.032,13.238,11.226,11.532,17.225,12.606,5.035,15.974,17.73,17.304,6.518,15.138,17.884,7.304,1.458,6.819,7.002,9.271,14.518,5.31,12.191,2.136,6.593,10.495,10.755,3.566,6.055,10.677,13.321,-0.3,14.955,1.995,3.663,10.629,5.885,0.134,6.948,5.452,3.379,-2.377,3.667,-1.574,3.109,2.495,14.099,11.552,2.211,24.634,16.409,24.192,31.396,21.161,17.524,18.19,22.806,18.967,33.602,25.086,16.604,24.628,24.399,17.106,19.856,16.378,19.925,17.167,26.839,19.191,23.816,14.884,19.763,25.164,18.833,18.757,20.801,17.088,18.926,13.881,4.433,20.493,21.047,14.018,15.401,12.835,18.099,12.922,20.084,11.33,18.137,14.243,22.849,17.182,3.579,16.197,14.606,11.06,19.681,6.822,15.832,11.413,8.711,6.179,10.286,19.048,16.671,19.483,17.274,17.771,16.11,7.915,0.026,6.031,10.35,7.992,5.504,2.011,8.252,11.236,2.493,5.139,14.117,9.205,2.161,11.809,11.195,7.284,3.808,13.508,11.416,0.447,4.354,13.49,10.988,6.969,4.778,14.08,2.909,3.531,8.956,6.439,0.109,12.314,15.793,11.885,-0.371,6.561,4.813,10.026,0.837,7.669,4.765,3.706,4.634,15.123,4.769,14.9,11.782,3.587,0.673,-0.431,-0.419,3.866,9.813,2.885,7.441,0.534,9.711,4.949,2.289,-3.351,1.122,5.021,1.796,-1.863,3.289],[20.11,23.779,18.963,33.276,25.343,15.199,25.801,22.895,22.703,17.579,17.196,19.046,19.505,18.654,18.721,21.156,21.592,18.093,12.856,10.945,11.426,17.383,12.544,5.172,15.81,18.063,16.992,6.509,15.285,17.77,7.403,1.554,7.074,6.957,9.151,14.484,5.296,12.173,2.15,6.642,10.658,10.798,3.527,5.932,10.623,13.587,-0.424,14.975,1.903,3.568,10.818,5.909,0.243,6.927,5.512,3.456,-2.284,3.617,-1.389,3.221,2.441,14.209,11.453,2.027,24.569,16.568,24.457,31.6,21.516,17.516,18.066,22.644,19.189,33.648,25.506,16.947,24.315,24.132,17.267,19.866,16.112,19.498,17.29,26.604,19.469,23.637,14.202,19.886,25.259,19.165,18.616,20.227,17.337,18.843,13.988,4.269,20.04,21.115,13.911,14.698,12.883,17.796,12.19,20.264,10.886,18.445,14.036,22.677,17.766,4.248,16.045,14.608,11.118,19.922,6.563,15.774,11.489,8.884,6.135,9.872,18.824,16.676,19.992,17.104,17.67,16.156,7.975,0.068,5.86,10.164,7.92,5.703,2.098,8.404,10.803,2.507,5.278,13.85,9.192,2.276,12.1,11.272,6.982,3.945,13.337,11.08,0.114,4.845,13.082,11.173,6.694,5.096,13.609,3.058,2.763,9.149,6.491,0.089,12.286,16.015,12.164,0.572,6.387,4.528,10.272,0.821,7.686,4.709,3.917,4.754,15.533,4.746,14.634,11.555,3.39,0.439,-0.675,-0.304,4.374,9.577,2.802,7.253,1.253,9.692,4.976,2.435,-3.48,1.232,4.786,1.446,-2.364,3.628],[20.411,23.774,19.133,33.333,25.225,15.044,25.755,22.913,22.554,17.477,17.285,18.824,19.704,18.675,18.553,21.037,21.659,18.1,12.379,10.748,11.285,17.655,12.397,5.34,15.648,18.439,16.824,6.525,15.316,17.551,7.504,1.581,7.321,6.968,9.029,14.645,5.29,12.206,2.003,6.69,10.773,10.78,3.542,5.807,10.581,13.685,-0.361,14.979,1.758,3.616,10.814,6.023,0.434,6.998,5.562,3.511,-2.279,3.643,-1.331,3.313,2.419,14.275,11.301,1.957,24.377,16.64,24.334,31.58,21.716,17.686,18.802,22.682,19.225,34.024,25.14,16.649,24.445,24.157,17.622,19.831,16.434,19.011,17.582,26.613,19.526,23.639,14.101,19.387,24.809,19.045,18.453,20.167,17.689,18.633,13.601,4.577,19.858,21.168,13.926,14.079,12.787,17.802,11.811,20.161,10.3,18.44,13.779,22.563,18.234,4.405,16.398,14.662,10.737,20.028,6.448,16.074,11.619,8.856,6.774,9.971,18.578,16.337,20.145,17.179,17.916,16.107,8.465,-0.167,5.878,10.448,8.318,5.672,2.049,8.53,10.898,2.205,5.249,13.783,9.754,2.738,12.313,11.026,6.693,3.826,13.75,11.298,0.002,5.183,13.598,11.485,7.113,4.91,13.707,2.401,1.965,8.806,6.267,-0.024,12.659,16.356,12.116,0.555,5.686,4.851,10.621,0.901,7.701,4.725,3.207,4.702,15.864,4.962,14.495,12.057,3.163,0.637,-0.661,-0.181,4.478,9.435,2.84,6.908,0.959,9.344,4.696,2.181,-3.712,1.518,5.169,1.128,-2.064,2.908],[20.418,23.68,19.326,33.637,25.239,14.889,25.617,23.057,22.381,17.328,17.287,18.621,19.825,18.665,18.439,20.857,21.682,18.121,12.023,10.552,11.262,18.023,12.376,5.375,15.43,18.682,16.94,6.517,15.198,17.354,7.576,1.448,7.512,7.095,9.162,14.776,5.324,12.374,1.845,6.605,10.804,10.745,3.589,5.636,10.615,13.795,-0.349,15.037,1.618,3.749,10.738,6.199,0.556,7.022,5.588,3.564,-2.391,3.564,-1.414,3.38,2.26,14.202,11.209,1.959,24.59,16.482,24.121,31.751,21.263,17.465,19.457,22.713,19.873,33.79,24.94,16.549,24.447,24.501,17.73,20.439,15.961,18.918,17.598,26.461,19.448,24.051,14.399,18.862,25.012,18.716,18.655,20.339,17.289,18.545,12.927,4.584,20.409,21.286,13.872,13.862,12.183,18.132,11.978,20.058,9.991,18.489,13.783,22.56,18.409,4.121,16.238,15.094,10.363,19.943,6.765,16.706,11.761,8.535,6.758,10.033,18.581,16.183,20.516,17.19,17.978,16.258,8.297,-0.043,6.399,10.085,8.785,5.626,2.222,8.493,11.421,2.191,4.983,14.601,9.559,2.603,12.057,10.525,6.67,3.422,13.616,11.626,-0.21,5.21,13.217,11.699,7.33,5.017,14.239,2.465,1.832,8.803,6.242,-0.066,12.426,16.106,12.237,0.293,5.429,5.132,10.666,1.18,7.635,4.824,3.734,4.585,15.767,4.92,14.557,12.19,3.375,0.577,-0.434,-0.145,3.875,9.446,2.982,7.052,0.672,9.31,4.752,2.367,-3.017,1.119,5.532,1.303,-1.846,3.471],[20.316,23.594,19.464,33.87,25.307,14.727,25.436,23.376,22.208,17.161,17.215,18.562,19.984,18.545,18.34,20.747,21.669,18.142,11.837,10.307,11.17,18.469,12.543,5.175,15.313,18.799,17.171,6.404,14.96,17.284,7.528,1.331,7.68,7.364,9.428,14.855,5.39,12.549,1.864,6.471,10.883,10.72,3.642,5.489,10.686,13.743,-0.552,15.152,1.616,3.83,10.657,6.361,0.59,6.945,5.693,3.54,-2.477,3.592,-1.47,3.439,2.136,14.061,11.297,2.079,24.626,16.035,23.719,32.35,20.678,17.04,19.615,22.85,19.34,33.504,25.368,17.157,24.359,24.517,17.695,20.465,15.461,19.212,18.078,26.682,19.215,24.272,14.3,18.621,24.728,18.408,18.922,20.186,17.702,18.712,12.634,4.752,20.712,21.141,13.887,13.602,12.475,17.847,11.302,20.267,10.776,18.719,14.397,22.48,18.525,4.305,15.571,14.884,10.53,19.778,6.976,16.865,11.734,8.555,6.399,10.053,18.723,16.305,20.675,17.379,17.694,16.294,7.847,-0.194,6.7,10.117,8.718,5.821,1.959,8.404,11.608,1.991,4.668,14.906,9.03,2.12,11.846,10.943,6.866,3.553,13.789,11.426,-0.248,5.497,13.247,11.749,7.033,5.019,14.802,3.141,2.04,8.793,5.861,0.066,12.605,15.968,12.085,0.304,6.193,4.94,10.29,1.59,8.002,4.241,3.528,4.513,15.44,4.631,14.708,11.686,3.64,0.467,-0.187,-0.284,4.407,9.311,3.139,7.53,0.876,9.45,5.116,2.329,-3.167,0.663,5.099,1.115,-1.794,3.204],[20.104,23.515,19.468,33.94,25.372,14.549,25.262,23.646,22.006,16.923,17.118,18.542,20.231,18.432,18.246,20.74,21.682,18.081,11.787,10.395,11.093,18.806,12.812,5.099,15.173,18.866,17.381,6.27,14.857,17.23,7.291,1.273,7.772,7.415,9.507,14.847,5.572,12.704,2.031,6.357,10.965,10.617,3.728,5.447,10.763,13.602,-0.707,15.274,1.693,3.751,10.564,6.572,0.765,6.9,5.709,3.562,-2.409,3.499,-1.338,3.333,2.005,14.007,11.265,2.141,24.545,16.115,23.435,32.172,20.556,16.822,19.506,23.238,18.631,34.196,25.231,17.703,24.288,24.877,17.806,19.705,15.616,19.211,17.924,26.789,19.086,23.869,13.887,18.984,24.357,18.303,19.044,20.183,18.214,18.853,12.865,4.555,20.415,21.233,14.246,13.496,12.66,17.566,11.307,19.991,11.404,19.48,14.363,22.417,18.815,4.005,16.155,14.351,10.343,19.906,6.456,17.256,11.888,8.772,6.202,9.725,19.189,16.108,20.65,17.631,17.309,16.263,8.274,-0.486,6.465,10.715,8.008,6.09,1.381,8.88,11.348,2.051,4.383,14.185,9.299,2.248,11.867,11.561,6.934,3.787,14.295,10.914,-0.073,5.807,13.767,11.64,6.957,4.573,14.776,3.309,2.793,8.932,6.113,-0.029,12.383,16.511,12.312,0.063,6.554,4.983,9.876,1.244,8.357,4.432,3.041,5.17,15.105,4.98,14.873,11.504,3.516,0.921,-0.499,-0.53,4.347,9.686,3.034,7.398,0.444,9.321,5.675,2.399,-3.347,0.629,4.694,1.359,-2.574,2.858],[19.827,23.435,19.293,33.922,25.31,14.475,25.048,23.759,21.733,16.681,17.039,18.515,20.342,18.464,18.19,20.752,21.698,18.024,12.001,10.719,11.031,19.013,13.106,5.044,14.972,19.082,17.599,6.139,14.935,17.216,7.151,1.187,7.834,7.302,9.503,14.79,5.83,12.802,2.118,6.287,11.065,10.333,3.851,5.586,10.83,13.757,-0.698,15.32,1.827,3.685,10.379,6.853,0.899,6.963,5.656,3.577,-2.383,3.259,-1.181,3.166,1.807,14.064,11.23,2.174,24.622,15.924,23.444,32.243,20.778,16.983,19.719,23.608,18.613,34.753,24.883,17.913,24.083,25.047,17.53,19.242,15.551,18.999,17.873,26.623,18.699,23.68,13.574,18.954,24.647,18.191,19.072,20.044,17.346,19.133,13.085,4.412,20.297,21.415,14.576,13.654,12.487,17.686,11.688,20.202,11.503,19.925,13.746,22.6,18.957,3.672,15.733,14.286,10.21,19.898,6.299,17.511,12.088,8.721,6.112,9.718,19.203,15.667,20.792,17.841,17.409,16.373,8.668,-0.35,6.312,10.319,7.478,6.157,1.432,9.04,11.758,2.723,4.758,13.895,9.691,2.643,11.536,11.176,6.641,3.605,14.15,10.616,-0.2,6.074,13.293,11.512,6.907,4.768,14.566,2.87,2.704,9.059,6.144,-0.048,12.561,16.586,12.635,0.247,5.882,4.925,9.999,1.395,8.525,4.319,2.858,5.256,15.224,4.587,15.151,11.946,3.222,0.854,-0.593,-0.28,4.048,9.338,2.883,7.009,0.23,9.286,5.987,2.569,-3.42,0.71,4.844,1.337,-2.172,3.56],[19.675,23.402,19.053,33.924,25.118,14.392,24.953,23.872,21.601,16.473,17.072,18.428,20.396,18.302,18.273,20.816,21.771,17.954,12.198,11.181,11.094,19.146,13.245,4.862,14.983,19.316,17.757,5.947,14.984,17.366,7.054,1.357,7.811,7.184,9.48,14.787,6.116,12.819,2.076,6.303,11.198,9.943,3.97,5.698,10.82,13.806,-0.58,15.306,1.868,3.757,10.221,7.154,0.92,7.021,5.589,3.534,-2.329,3.109,-1.151,2.945,1.672,14.158,11.193,2.075,24.336,15.667,23.375,32.199,20.617,17.378,19.487,23.26,18.453,34.594,25.091,17.211,24.093,24.798,17.963,19.376,15.315,18.304,17.746,26.405,18.041,23.83,13.781,18.564,24.459,18.077,18.931,20.17,17.001,19.337,13.525,4.305,20.244,21.476,14.672,13.293,12.377,17.836,11.897,20.081,11.087,20.173,13.435,22.498,19.355,3.99,15.787,14.392,10.386,19.684,6.722,17.517,12.152,8.601,6.349,9.206,19.161,15.941,21.209,18.322,17.393,16.252,8.47,-0.493,6.634,10.224,7.747,5.816,1.54,8.578,11.547,2.757,5.412,14.263,9.504,2.825,11.495,11.423,6.579,3.577,14.272,10.368,0.12,6.173,13.677,11.478,6.969,4.856,14.61,2.993,2.314,8.968,5.919,0.068,12.926,15.987,12.609,0.395,5.922,5.059,9.632,2.062,8.823,4.107,3.084,4.965,15.34,4.684,15.484,12.158,3.176,0.749,-0.313,-0.029,4.328,9.462,2.794,6.791,0.414,9.086,5.88,2.278,-3.604,0.472,4.959,0.882,-2.231,2.807],[19.689,23.298,18.722,33.831,24.914,14.347,25.055,23.953,21.666,16.474,17.238,18.385,20.269,18.065,18.371,20.894,21.841,17.902,12.381,11.598,11.09,19.256,13.134,4.871,15.064,19.638,17.874,5.861,14.998,17.731,7.058,1.524,7.571,7.137,9.337,14.842,6.438,12.853,1.962,6.358,11.234,9.695,4.131,5.644,10.813,13.736,-0.43,15.157,1.876,3.959,9.956,7.434,0.972,6.996,5.546,3.527,-2.318,2.885,-1.167,2.767,1.536,14.243,11.244,1.816,24.217,15.692,23.201,31.963,20.251,16.796,19.659,22.941,18.718,34.067,25.173,16.308,24.203,24.968,18.018,19.549,14.84,17.784,17.736,26.285,17.453,23.527,13.938,18.245,24.035,18.134,18.672,20.118,17.154,18.789,13.581,4.001,20.87,21.377,14.5,13.338,12.142,17.629,11.942,20.337,11.26,20.135,14.032,22.485,19.415,3.785,16.558,14.343,11.387,19.676,6.27,17.576,12.028,8.282,6.613,9.671,19.403,16.484,21.532,18.443,17.463,16.177,8.226,-0.133,7.102,10.745,7.815,5.519,1.999,8.295,11.572,2.454,5.675,14.391,9.325,2.668,11.111,11.633,7.094,3.575,14.354,10.224,0.053,5.677,13.722,11.837,6.996,4.535,14.506,3.435,2.182,9.052,6.261,-0.233,12.337,16.184,12.418,0.533,6.323,5.063,9.414,2.386,8.921,4.072,2.984,4.375,15.347,4.425,15.423,12.011,3.452,0.319,-0.447,-0.247,3.838,9.315,3.0,7.501,0.352,9.377,5.961,1.895,-3.372,0.271,5.187,1.337,-2.502,2.262],[19.874,23.09,18.376,33.621,24.857,14.339,25.142,24.077,21.705,16.616,17.309,18.293,20.118,17.857,18.226,20.93,21.882,17.958,12.64,12.007,11.13,19.399,12.909,4.844,15.049,19.855,18.012,5.837,15.102,18.056,7.043,1.627,7.266,7.15,9.374,14.851,6.499,12.95,1.921,6.345,11.161,9.706,4.284,5.586,10.782,13.66,-0.362,15.021,1.812,4.049,9.773,7.701,1.063,7.148,5.443,3.465,-2.409,2.688,-1.233,2.584,1.463,14.207,11.274,1.83,24.202,16.148,23.301,32.018,20.362,16.344,19.641,23.167,19.198,33.376,25.236,16.664,23.949,25.041,18.078,19.318,14.784,17.787,17.353,26.367,17.525,23.461,14.063,18.489,24.515,18.227,18.75,20.155,17.002,18.851,12.9,4.089,21.401,21.346,14.215,13.56,12.319,17.129,12.099,20.246,11.705,19.332,14.299,22.579,19.375,3.855,16.428,14.535,12.262,19.812,5.881,17.603,11.868,8.22,6.483,9.707,19.304,16.081,21.545,18.643,18.473,16.302,8.264,0.034,6.963,10.318,7.496,5.874,2.337,8.599,11.71,2.429,6.092,14.526,8.767,3.022,11.102,11.368,7.124,3.389,14.201,10.072,-0.057,5.41,13.431,11.955,6.949,4.718,13.855,3.383,1.773,8.895,5.98,-0.109,12.473,16.054,12.516,0.363,6.183,4.875,9.124,2.321,8.982,3.478,2.694,4.062,15.426,3.805,15.105,11.952,3.162,0.412,-0.224,-0.29,4.383,9.501,3.089,7.579,0.363,9.012,6.405,2.292,-3.681,0.342,5.532,1.142,-2.156,2.74],[20.087,22.847,18.169,33.459,24.939,14.522,25.291,24.271,21.804,16.788,17.371,18.199,20.027,17.745,17.954,20.93,21.932,17.917,12.719,12.507,11.147,19.426,12.713,4.829,14.983,19.891,18.221,5.754,15.103,18.227,6.892,1.646,6.993,7.208,9.406,14.835,6.398,12.993,1.96,6.303,11.083,9.819,4.351,5.412,10.573,13.819,-0.365,14.855,1.66,4.07,9.5,7.988,1.151,7.432,5.249,3.402,-2.512,2.517,-1.246,2.444,1.578,14.094,11.305,1.998,23.669,16.036,23.281,31.723,20.587,16.588,19.013,23.177,19.444,33.39,25.599,17.645,23.7,25.002,18.068,19.16,14.983,18.163,16.674,26.349,17.273,23.658,14.16,18.542,24.284,18.351,18.51,19.885,16.666,19.348,13.629,4.191,21.359,21.584,13.895,13.369,12.351,17.41,12.104,20.266,11.836,19.04,14.066,22.596,19.962,3.793,16.566,14.599,12.05,19.76,6.226,17.954,11.967,8.412,6.336,9.379,19.362,16.237,21.749,19.037,18.404,16.204,8.205,-0.109,6.276,10.587,7.587,6.803,2.513,8.904,11.723,2.227,6.075,14.587,9.191,3.725,11.594,11.176,6.889,3.453,14.395,10.1,-0.105,5.182,13.272,11.233,6.621,4.723,13.352,3.097,1.654,8.911,5.739,-0.046,12.57,15.959,12.741,0.702,6.227,4.771,8.911,2.333,9.129,3.856,2.344,4.184,15.662,4.268,14.753,12.272,3.056,0.829,-0.252,-0.253,4.64,9.621,2.837,7.103,0.423,8.924,6.731,2.31,-3.998,0.381,5.741,0.884,-2.533,2.544],[20.144,22.617,17.974,33.343,25.068,14.828,25.417,24.407,21.863,16.914,17.56,18.053,19.843,17.685,17.799,20.986,21.949,17.868,12.777,12.785,11.014,19.398,12.577,4.841,14.85,20.082,18.523,5.78,15.098,18.269,6.831,1.623,6.864,7.413,9.365,14.72,6.299,13.063,1.861,6.271,10.984,9.684,4.381,5.233,10.402,14.016,-0.364,14.63,1.641,4.108,9.222,8.156,1.255,7.72,5.073,3.365,-2.715,2.42,-1.229,2.427,1.735,14.271,11.38,1.948,23.866,16.01,23.429,31.544,20.848,16.783,18.938,23.469,19.251,34.156,25.157,17.342,23.556,25.345,18.407,19.82,15.698,18.52,16.944,26.158,16.86,23.281,13.776,18.203,24.233,18.333,18.859,19.62,16.432,18.872,14.258,4.093,20.981,21.438,13.771,13.076,12.42,17.91,12.376,21.009,12.065,19.614,14.092,22.661,19.842,3.653,16.695,14.258,11.684,19.566,6.029,17.852,11.536,8.29,6.317,9.642,19.679,16.567,21.696,19.094,18.384,16.107,7.65,0.04,5.413,10.975,7.481,6.769,2.316,9.204,11.766,1.934,6.143,14.237,9.555,3.959,11.492,10.766,6.687,3.557,14.567,9.824,-0.105,4.761,14.103,10.907,6.85,4.574,13.365,3.05,1.749,8.533,5.673,-0.037,12.965,15.722,12.444,0.705,6.583,5.081,8.632,1.905,9.438,3.842,2.724,4.257,15.79,4.124,14.668,12.327,3.244,0.741,-0.204,-0.433,4.51,9.436,2.929,7.089,1.1,9.112,7.358,2.251,-3.644,0.173,5.338,1.556,-2.774,2.442],[20.149,22.567,17.851,33.351,25.062,15.063,25.317,24.515,22.013,17.018,17.787,17.844,19.767,17.619,17.635,21.022,21.882,17.875,12.965,12.918,10.95,19.322,12.516,4.81,14.552,20.357,18.911,5.868,15.236,18.464,6.799,1.635,6.764,7.584,9.356,14.508,6.262,13.128,1.601,6.333,10.842,9.317,4.432,5.091,10.228,14.256,-0.267,14.368,1.76,4.218,9.113,8.147,1.332,8.038,4.982,3.453,-2.911,2.426,-1.258,2.526,1.94,14.445,11.374,1.742,23.563,16.076,23.026,31.504,21.013,16.561,19.163,23.513,19.149,33.97,25.127,16.491,23.432,25.183,18.546,20.246,16.257,19.284,17.357,26.359,16.596,23.387,14.647,18.119,24.452,18.433,18.79,19.689,16.341,17.972,14.221,3.869,20.662,21.608,13.775,12.965,12.482,17.793,12.412,20.262,11.955,19.977,14.245,22.861,19.706,3.942,16.899,14.129,11.66,19.644,6.233,17.65,11.145,7.844,6.539,9.486,19.945,16.23,21.947,19.05,18.339,15.805,7.785,-0.092,5.322,10.315,7.538,6.437,1.942,9.332,12.081,1.997,6.737,13.837,9.049,3.372,11.197,10.806,6.701,3.228,14.649,9.395,-0.082,4.397,13.823,11.151,6.996,4.801,13.38,3.433,1.831,8.382,5.605,0.065,13.065,15.767,12.505,0.075,6.739,5.368,8.248,1.501,9.702,3.156,3.159,3.66,15.583,3.892,15.409,12.161,3.357,0.674,-0.054,-0.408,4.133,9.596,3.337,7.535,2.022,8.626,8.072,2.365,-4.222,0.559,5.004,1.239,-2.795,2.376],[20.246,22.529,17.792,33.331,25.064,15.327,25.286,24.598,22.082,17.103,17.781,17.719,19.794,17.414,17.594,21.063,21.72,17.92,13.282,12.982,10.759,19.135,12.474,4.78,14.225,20.522,19.213,5.896,15.363,18.736,6.715,1.459,6.667,7.687,9.33,14.295,6.303,13.083,1.385,6.473,10.825,9.138,4.464,5.013,10.19,14.297,-0.269,14.145,1.793,4.347,9.021,8.08,1.508,8.307,4.873,3.609,-3.02,2.417,-1.279,2.633,2.129,14.443,11.368,1.586,23.576,16.108,23.628,31.511,20.979,16.077,19.596,23.491,19.46,33.592,25.085,17.475,23.062,25.411,18.453,19.834,16.264,19.373,17.067,26.466,16.505,23.501,15.07,18.01,24.188,18.783,18.344,19.32,16.373,17.382,13.454,3.966,20.419,21.326,13.914,12.617,12.322,17.667,12.354,20.302,11.695,20.127,14.828,22.786,20.209,3.907,17.004,13.939,12.128,19.742,6.7,17.498,11.573,7.687,6.634,9.364,20.533,15.832,22.27,19.793,18.451,15.518,7.85,0.022,5.493,10.642,7.687,6.26,2.224,9.108,12.472,2.044,7.118,13.518,8.801,3.24,10.921,11.102,6.362,2.974,14.827,9.128,-0.031,4.574,13.696,10.882,6.75,4.768,13.272,3.209,2.097,8.416,5.799,0.21,12.896,15.903,12.307,0.338,6.962,5.191,8.3,1.16,9.339,3.289,3.589,3.7,15.443,4.322,15.748,12.208,2.696,0.337,-0.092,-0.359,3.968,9.434,3.257,8.14,1.477,8.694,8.514,2.696,-4.381,0.935,4.619,0.677,-3.041,2.265],[20.412,22.421,17.586,33.214,24.924,15.602,25.283,24.734,22.05,17.148,17.701,17.531,19.89,17.112,17.552,21.184,21.528,17.961,13.448,13.081,10.547,18.896,12.555,4.723,13.928,20.654,19.519,5.807,15.385,18.961,6.682,1.287,6.594,7.621,9.321,14.151,6.419,13.016,1.407,6.482,10.715,9.265,4.366,5.123,10.34,14.153,-0.41,14.023,1.761,4.322,8.996,8.038,1.653,8.588,4.916,3.677,-2.911,2.558,-1.227,2.746,2.194,14.324,11.413,1.563,23.769,16.354,23.652,31.361,21.157,15.966,19.642,23.814,19.276,33.637,24.838,18.203,22.987,25.637,18.693,19.567,16.194,19.413,16.835,26.298,16.141,23.271,14.753,17.935,24.024,18.876,18.129,19.121,16.025,17.311,13.658,4.55,19.969,20.862,13.881,12.175,11.934,17.584,12.648,20.612,11.841,20.201,15.043,22.742,20.524,3.361,17.207,13.51,13.043,19.841,6.824,17.312,11.806,8.233,6.28,9.23,20.408,16.562,22.354,20.261,18.772,15.205,7.339,-0.183,4.963,10.999,7.187,6.48,2.602,9.399,12.103,1.549,7.31,13.555,9.16,3.74,11.029,10.538,6.425,3.192,14.839,8.644,0.163,4.645,14.006,11.035,7.084,4.688,12.963,3.037,2.028,8.401,5.767,0.089,12.922,15.25,12.246,0.683,7.15,5.245,8.193,0.718,8.722,3.724,3.52,4.126,15.616,4.413,15.377,12.315,2.554,0.503,0.092,-0.305,4.083,9.601,3.105,8.41,1.202,8.738,9.2,2.795,-3.954,0.797,4.368,0.97,-2.571,2.604],[20.573,22.401,17.371,33.047,24.754,15.659,25.184,24.94,22.047,17.12,17.76,17.321,20.038,16.773,17.496,21.253,21.368,18.006,13.425,13.387,10.442,18.688,12.81,4.671,13.648,20.753,19.773,5.753,15.453,19.096,6.736,1.088,6.304,7.604,9.344,14.2,6.625,12.848,1.473,6.373,10.588,9.314,4.314,5.24,10.47,14.04,-0.491,13.874,1.708,4.318,8.977,7.938,1.697,8.827,5.161,3.735,-2.579,2.943,-1.13,2.752,2.131,14.296,11.571,1.709,23.156,16.382,23.256,31.303,21.152,15.467,19.468,23.742,19.441,33.17,24.987,17.445,23.216,25.915,18.666,19.74,16.53,18.967,17.1,26.093,15.796,23.143,15.308,17.482,24.258,18.822,18.794,19.017,15.856,17.773,14.409,4.209,20.633,20.718,13.628,12.224,11.911,17.897,12.829,20.236,11.75,19.619,14.679,22.815,20.6,3.304,17.574,13.167,13.596,19.844,6.214,17.049,11.246,8.379,6.395,8.874,20.31,16.816,22.379,20.209,19.012,14.965,7.562,-0.386,4.857,10.626,6.878,6.712,2.094,9.373,11.564,1.333,7.156,13.658,9.422,3.591,11.253,10.664,6.843,3.361,14.575,8.679,0.125,4.792,13.69,10.867,6.869,4.989,12.501,3.016,1.59,8.794,5.781,0.029,13.021,15.285,12.137,0.187,7.616,5.17,8.077,0.378,8.881,3.735,3.228,4.279,15.779,4.408,14.741,12.236,2.641,0.773,0.187,-0.511,3.919,9.727,3.357,8.255,1.934,8.728,9.354,2.897,-4.292,0.754,4.7,0.725,-2.382,2.714],[20.723,22.378,17.263,32.948,24.759,15.702,25.244,25.088,22.078,17.136,17.64,17.109,20.223,16.404,17.503,21.312,21.21,18.033,13.37,13.722,10.358,18.487,12.961,4.466,13.461,20.794,19.93,5.954,15.504,19.17,6.713,0.715,6.023,7.696,9.364,14.33,6.845,12.55,1.298,6.426,10.457,9.29,4.281,5.292,10.614,13.955,-0.455,13.744,1.696,4.439,8.939,7.876,1.738,8.977,5.497,3.754,-2.463,3.26,-1.06,2.687,1.957,14.304,11.739,1.791,23.222,16.082,23.754,31.136,21.116,15.057,19.515,23.768,19.801,33.286,24.818,17.087,23.176,25.883,18.811,19.378,16.2,18.843,17.239,25.999,15.975,23.362,15.613,17.11,24.213,18.682,18.851,18.762,15.324,18.227,14.469,3.777,21.405,21.107,13.939,12.09,11.762,18.037,12.872,20.205,12.132,18.934,14.601,23.127,20.764,3.554,17.419,12.954,13.977,19.826,5.63,16.987,11.386,8.265,6.664,9.046,20.55,16.219,22.594,20.451,18.746,15.559,7.228,-0.789,4.682,10.799,6.982,6.672,1.641,9.567,11.59,1.791,7.168,13.857,8.699,3.251,11.143,11.479,6.886,3.084,14.174,8.905,-0.096,5.184,13.921,10.811,6.308,4.695,12.718,3.144,1.576,8.808,5.689,0.057,12.57,15.322,11.942,-0.544,7.86,4.755,7.689,0.046,8.902,4.157,3.249,4.304,15.672,3.836,14.923,12.32,2.76,0.532,-0.119,-0.939,4.291,9.828,3.617,8.212,1.988,9.014,8.92,2.882,-3.842,0.578,5.391,1.132,-2.485,3.176],[20.704,22.319,17.251,32.899,24.888,15.707,25.267,25.106,22.221,17.154,17.385,16.952,20.287,15.983,17.603,21.449,21.121,17.95,13.34,14.067,10.351,18.305,13.111,4.281,13.399,20.971,20.066,6.15,15.417,19.05,6.459,0.338,5.832,7.878,9.293,14.508,7.08,12.288,1.2,6.515,10.43,9.19,4.141,5.386,10.783,13.925,-0.456,13.756,1.744,4.341,8.829,7.728,1.65,9.063,5.836,3.885,-2.43,3.432,-1.066,2.542,1.845,14.327,11.868,1.792,23.577,15.943,23.833,31.148,21.342,15.12,19.812,23.896,19.821,33.669,25.255,17.319,23.03,25.88,18.676,19.3,16.017,18.976,17.503,26.475,16.167,23.565,15.02,16.807,24.229,18.605,18.879,18.778,14.708,18.384,14.227,3.986,21.298,21.39,14.62,12.06,11.874,18.004,12.726,19.893,12.582,18.258,14.949,23.202,20.313,2.92,17.483,12.749,14.179,19.829,6.447,17.078,11.744,7.666,6.65,9.283,20.809,16.124,22.613,20.64,18.528,15.801,6.721,-0.945,4.197,10.957,7.466,6.519,1.219,9.468,11.371,1.731,7.151,13.674,8.83,3.361,11.011,11.203,6.789,2.924,14.136,8.901,-0.132,5.23,13.848,10.903,7.056,4.717,12.892,3.485,2.295,8.912,6.183,0.327,12.485,15.412,12.033,-0.141,7.782,5.261,7.958,0.284,9.019,4.586,3.034,4.353,15.418,4.199,15.47,12.448,2.821,0.259,-0.222,-1.595,4.047,10.083,3.396,8.385,1.695,8.437,8.52,2.682,-3.748,0.391,6.276,1.337,-2.235,2.811],[20.561,22.282,17.349,32.947,25.214,15.535,25.159,25.12,22.455,17.197,17.185,16.939,20.285,15.694,17.733,21.443,21.135,17.898,13.284,14.406,10.487,18.141,13.272,4.127,13.386,21.052,20.137,6.356,15.284,18.771,6.142,0.139,5.8,7.992,9.264,14.646,7.198,12.213,1.29,6.82,10.607,9.101,4.069,5.536,10.849,13.977,-0.379,13.842,1.782,4.142,8.724,7.56,1.663,8.993,6.095,4.029,-2.353,3.4,-1.217,2.459,1.785,14.402,11.986,1.747,23.275,16.13,23.934,31.158,21.583,14.489,20.223,24.238,19.477,33.145,25.32,17.007,22.84,25.94,18.127,19.545,16.238,19.034,17.436,26.597,15.691,23.6,15.083,16.568,24.538,18.767,18.706,18.738,14.826,18.412,14.328,4.176,21.344,20.983,14.939,11.793,11.951,17.515,12.686,19.883,13.016,18.18,15.021,23.238,20.359,2.647,17.277,12.7,14.054,19.732,7.4,17.11,11.93,7.162,6.99,9.056,20.9,16.559,22.464,20.826,18.205,15.431,6.944,-1.305,4.364,10.452,7.383,6.654,0.865,9.568,10.922,1.531,7.427,13.775,9.776,3.349,10.989,11.189,7.017,3.0,14.024,8.616,0.276,5.409,13.388,11.004,7.0,5.044,12.755,3.345,2.908,8.978,6.158,-0.014,12.982,15.361,12.195,-0.034,7.376,4.842,8.115,-0.052,8.606,4.196,3.005,4.491,15.153,4.13,15.473,12.644,3.166,0.454,0.181,-2.094,4.051,10.083,2.694,8.91,1.408,8.43,7.616,2.152,-4.008,0.158,6.54,0.961,-2.173,3.072],[20.402,22.303,17.358,33.04,25.446,15.274,25.191,25.311,22.683,17.374,16.948,16.935,20.208,15.659,17.814,21.367,21.133,17.829,13.229,14.721,10.581,18.09,13.311,4.058,13.225,20.93,20.251,6.631,15.257,18.312,5.821,-0.028,5.84,8.097,9.459,14.691,7.291,12.231,1.462,7.154,10.782,9.126,4.016,5.554,10.932,14.041,-0.383,13.923,1.9,3.879,8.732,7.31,1.62,8.755,6.154,4.056,-2.348,3.395,-1.449,2.307,1.777,14.376,11.998,1.749,22.672,16.439,24.298,31.358,21.644,14.121,20.077,24.095,19.247,32.898,25.004,16.636,22.923,25.927,18.05,19.336,16.566,19.344,16.783,26.726,15.857,23.868,15.116,16.544,24.277,19.109,18.597,18.736,14.794,18.462,13.947,3.967,21.356,20.899,14.897,11.675,12.089,17.649,12.858,20.343,13.062,18.554,14.864,23.129,20.589,2.757,16.768,12.953,14.329,19.654,7.306,16.764,12.052,6.656,6.889,9.343,20.693,16.391,22.396,20.697,17.694,15.386,7.263,-1.509,4.756,10.96,7.171,6.707,0.693,9.528,10.778,1.577,7.475,14.177,9.24,3.238,10.873,11.554,6.964,3.132,13.78,8.401,0.41,5.486,13.995,11.174,7.232,5.37,13.041,3.14,2.586,9.141,6.036,0.111,12.88,15.479,12.294,-0.141,7.035,4.279,7.585,-0.258,8.755,4.378,3.03,4.807,15.427,3.262,15.402,12.787,4.446,0.974,-0.215,-2.411,4.028,10.221,3.003,9.317,1.947,8.874,7.232,2.292,-3.91,0.209,6.49,1.017,-2.286,2.934],[20.178,22.305,17.261,33.197,25.506,15.234,25.23,25.474,22.754,17.666,16.759,16.872,20.067,15.795,17.907,21.29,21.197,17.811,13.242,14.854,10.619,18.16,13.256,4.137,13.113,20.774,20.277,6.737,15.306,17.857,5.49,-0.172,5.888,8.115,9.572,14.833,7.358,12.14,1.731,7.31,10.808,9.197,3.937,5.672,11.132,14.002,-0.486,14.045,1.981,3.669,8.739,7.127,1.568,8.528,6.096,4.095,-2.361,3.538,-1.732,2.023,1.892,14.369,12.044,1.908,22.282,16.658,24.44,31.422,21.729,14.812,20.183,24.528,19.427,33.53,25.049,16.567,23.27,26.19,18.204,18.821,15.896,19.273,16.198,26.816,15.834,23.847,14.324,16.829,24.125,19.247,18.204,18.665,14.914,18.742,13.611,3.478,20.814,20.774,14.808,11.784,12.255,18.061,12.853,20.641,13.412,18.58,14.989,23.16,20.134,2.798,16.259,12.576,15.051,19.517,7.261,16.456,11.968,5.857,6.778,9.639,20.666,15.856,22.432,20.688,17.629,15.74,7.502,-1.297,4.58,11.034,7.087,6.569,0.531,9.829,11.032,1.716,7.425,13.931,9.21,3.309,11.137,11.498,7.051,3.613,13.954,8.721,0.211,5.594,14.52,11.109,7.764,5.591,13.019,2.955,2.283,9.363,6.453,0.348,12.788,15.624,12.489,-0.566,6.742,4.288,7.634,-0.146,8.639,4.675,3.021,5.091,15.832,3.35,15.039,12.823,4.965,1.425,-0.621,-2.903,3.665,10.295,3.211,9.226,2.385,8.474,6.839,2.482,-3.766,0.282,5.873,1.266,-1.97,2.724],[19.923,22.277,17.121,33.423,25.537,15.169,25.17,25.674,22.801,17.934,16.728,16.842,19.989,16.057,17.999,21.209,21.292,17.845,13.149,14.969,10.697,18.253,13.183,4.294,13.172,20.599,20.152,6.75,15.326,17.697,5.176,-0.25,5.985,8.105,9.505,15.023,7.437,12.066,2.079,7.302,10.691,9.41,3.859,5.996,11.317,13.855,-0.658,14.114,1.957,3.603,8.764,6.988,1.662,8.283,5.972,4.093,-2.281,3.618,-2.055,1.806,1.993,14.551,12.103,2.276,22.225,16.904,24.254,31.546,21.835,14.789,19.921,24.706,19.091,33.826,25.078,16.646,23.34,26.36,18.058,18.675,15.756,18.948,16.678,26.757,15.522,23.831,14.34,16.512,24.099,19.253,18.433,18.691,15.262,19.123,13.972,3.544,20.152,20.855,14.442,11.802,12.125,18.232,12.58,20.358,13.337,18.069,15.065,22.936,19.967,2.622,15.958,11.981,15.125,19.446,7.016,16.536,11.743,5.225,7.224,9.701,20.843,16.124,22.457,20.834,17.659,16.056,7.06,-1.666,4.624,10.61,6.955,6.585,0.518,9.434,11.215,1.887,7.748,14.033,9.215,2.904,11.208,11.469,7.387,3.951,13.927,8.759,0.307,5.543,14.761,10.984,7.803,5.695,13.299,2.804,2.037,9.491,6.621,-0.042,12.945,15.68,12.429,-0.841,6.761,4.185,7.604,-0.155,8.388,4.491,3.373,5.07,16.15,3.379,14.453,12.827,4.491,1.361,-0.626,-3.499,4.173,10.196,2.483,9.073,2.177,8.267,6.317,2.072,-3.921,0.695,5.413,1.137,-1.782,3.613],[19.874,22.207,17.121,33.661,25.545,15.098,25.141,25.824,22.909,18.096,16.878,16.881,19.984,16.066,18.057,21.1,21.31,17.834,12.915,15.012,10.794,18.244,13.047,4.423,13.177,20.491,19.884,6.887,15.451,17.704,4.951,-0.326,6.012,8.065,9.308,15.179,7.486,12.052,2.242,7.31,10.554,9.542,3.768,6.264,11.288,13.873,-0.969,14.19,1.927,3.495,8.754,6.727,1.768,8.172,5.83,4.119,-2.205,3.619,-2.336,1.57,2.119,14.732,12.141,2.515,22.434,17.079,24.102,31.879,21.584,14.687,19.445,24.664,18.64,33.845,25.022,16.323,23.086,26.59,17.802,18.851,16.292,19.099,16.528,26.741,15.711,23.8,14.74,16.318,24.034,19.697,18.601,18.72,15.375,19.317,13.718,4.489,19.795,21.518,14.475,12.03,12.077,18.184,12.253,20.235,13.402,17.816,14.996,22.647,20.225,2.738,16.134,12.467,14.824,19.584,7.289,16.734,11.828,4.819,7.11,9.34,20.876,16.83,22.056,20.814,17.522,15.953,6.821,-1.551,4.605,10.69,6.667,6.431,0.611,8.999,10.984,2.445,8.148,14.294,8.773,2.571,11.34,11.69,7.328,4.017,13.918,9.009,0.173,5.643,14.744,10.986,7.947,5.641,13.46,2.775,1.46,9.856,6.492,0.121,13.056,15.462,12.005,-0.448,6.416,4.163,8.218,0.051,8.345,5.023,3.639,5.116,16.514,2.944,14.756,12.488,3.865,1.62,-0.85,-3.814,4.725,10.359,3.078,8.685,1.606,8.44,6.202,1.875,-3.719,0.827,5.507,1.628,-2.236,3.313],[20.11,22.153,17.301,33.864,25.677,15.194,25.044,25.792,22.897,18.178,16.958,16.924,19.955,15.873,18.191,21.017,21.402,17.732,12.639,14.906,10.812,18.141,12.966,4.679,13.214,20.552,19.57,7.157,15.637,17.729,4.774,-0.33,5.988,7.988,9.039,15.25,7.593,12.179,2.264,7.396,10.435,9.63,3.52,6.353,11.222,14.012,-0.894,14.34,1.733,3.511,8.858,6.38,1.707,8.145,5.897,4.183,-2.267,3.596,-2.475,1.353,2.133,14.93,12.114,2.533,22.455,17.191,24.538,32.198,21.702,15.035,19.498,25.145,18.818,33.883,25.196,16.241,22.64,26.838,17.923,19.009,16.227,19.273,16.412,26.792,15.903,23.963,14.117,16.84,24.375,19.776,18.832,18.757,14.947,19.227,13.867,4.694,19.652,21.579,14.6,11.634,12.126,17.616,12.581,20.191,13.443,18.279,15.225,22.524,20.252,2.96,16.899,12.928,14.588,19.472,7.849,16.565,12.063,4.495,7.204,9.156,20.276,16.9,21.872,20.374,17.124,15.697,7.096,-1.284,4.505,10.726,6.504,6.109,0.486,9.111,10.535,2.768,7.769,14.644,9.063,2.446,11.295,11.428,7.362,3.938,13.552,9.036,-0.059,5.744,14.218,10.775,7.784,5.512,13.115,3.225,2.0,9.667,7.281,-0.01,13.465,15.595,12.082,-0.943,6.307,4.368,8.388,-0.012,8.011,4.851,3.458,5.333,16.639,2.339,15.608,12.708,3.794,1.491,-1.156,-3.891,4.702,10.205,2.639,8.469,1.635,8.227,6.183,1.827,-3.749,0.749,5.276,1.406,-1.91,2.832],[20.396,22.095,17.498,34.032,25.783,15.132,24.94,25.897,22.951,18.157,16.938,17.073,20.121,15.868,18.448,20.944,21.525,17.558,12.517,14.737,10.781,18.1,12.971,5.017,13.402,20.624,19.396,7.443,15.839,17.823,4.644,-0.327,6.015,7.904,8.818,15.205,7.666,12.22,2.41,7.564,10.284,9.674,3.228,6.328,11.097,14.189,-0.846,14.361,1.45,3.504,9.012,6.09,1.558,8.123,6.107,4.273,-2.322,3.566,-2.6,1.111,1.989,14.949,12.016,2.326,22.507,17.188,24.214,32.307,22.073,14.573,19.668,24.665,19.388,33.768,25.333,16.678,22.24,26.267,18.058,19.139,16.365,19.453,16.766,27.063,16.135,24.063,14.257,16.849,24.739,19.632,18.491,18.867,15.105,19.179,13.848,4.375,19.765,21.07,14.823,11.596,12.174,17.616,12.126,20.536,13.212,18.013,15.217,22.668,20.101,3.367,16.956,12.953,14.59,19.328,7.942,16.333,12.071,4.193,7.435,9.653,19.988,16.447,22.377,19.815,16.743,15.921,7.01,-1.548,4.704,10.504,6.203,6.25,0.777,9.374,10.575,2.458,7.69,14.524,8.887,2.253,11.444,11.523,7.191,4.04,13.437,9.16,-0.293,5.937,13.699,10.673,7.843,5.619,13.36,2.995,2.465,9.592,7.413,0.337,13.115,16.057,11.973,-0.747,6.547,4.218,7.884,-0.233,7.573,4.425,3.341,5.488,16.334,2.484,15.567,12.936,4.421,1.043,-1.16,-3.851,4.278,10.161,3.117,8.3,1.914,8.528,6.095,1.338,-3.904,0.385,5.419,1.277,-1.964,3.092],[20.565,22.055,17.704,33.936,25.95,15.063,25.037,25.926,22.993,18.077,16.963,17.234,20.309,16.087,18.818,20.831,21.522,17.622,12.512,14.673,10.749,18.037,13.059,5.28,13.517,20.675,19.411,7.715,15.797,17.822,4.465,-0.181,6.06,7.962,8.683,15.018,7.75,12.238,2.683,7.6,10.093,9.652,2.942,6.18,10.995,14.168,-0.871,14.395,1.169,3.543,9.036,5.92,1.528,8.145,6.363,4.337,-2.329,3.448,-2.784,0.848,1.841,14.479,12.032,2.094,22.773,17.017,24.156,32.381,21.622,14.829,19.894,24.723,19.646,33.777,25.202,16.405,22.158,26.72,18.14,19.33,16.176,19.848,17.308,26.968,16.265,24.089,14.529,16.585,24.567,19.326,18.74,19.106,15.337,19.3,13.306,4.563,20.071,21.177,14.707,12.066,12.249,17.778,12.059,20.965,12.917,18.001,15.241,22.598,19.966,4.037,16.792,13.156,14.934,19.423,7.783,16.44,12.211,4.177,6.915,10.086,19.743,16.717,22.432,20.101,16.809,15.929,7.435,-1.579,4.655,9.926,6.36,6.542,0.757,9.328,10.774,2.446,8.195,14.25,8.747,2.021,11.442,11.909,7.096,4.521,13.785,9.801,-0.272,5.991,13.965,10.424,7.914,5.88,13.503,2.141,1.903,9.569,6.648,0.245,12.991,15.4,11.596,-0.405,6.347,3.623,8.08,-0.396,7.555,4.966,3.208,5.446,16.086,2.601,15.127,12.36,4.941,1.107,-1.42,-3.479,4.01,10.221,2.95,8.405,1.959,8.457,5.553,1.018,-3.731,0.269,5.796,1.465,-2.461,2.765],[20.484,22.207,17.974,33.638,26.072,14.945,25.164,26.075,22.912,17.919,16.977,17.185,20.499,16.362,19.168,20.647,21.436,17.848,12.44,14.664,10.767,18.066,13.247,5.549,13.722,20.747,19.376,7.757,15.64,17.815,4.417,0.042,6.203,8.086,8.61,14.787,7.984,12.297,2.94,7.447,9.905,9.625,2.656,5.949,11.036,14.0,-0.744,14.334,0.903,3.443,8.995,5.787,1.577,8.028,6.542,4.363,-2.301,3.359,-2.945,0.675,1.775,14.132,12.071,2.178,23.144,16.682,24.409,32.037,21.64,15.516,19.918,24.759,19.511,34.238,25.344,16.04,22.126,27.164,18.568,19.585,16.343,20.143,16.77,26.82,16.685,24.225,14.192,17.048,24.443,19.129,19.109,18.976,15.731,19.664,13.825,4.683,19.732,20.856,14.383,12.302,12.136,17.986,12.283,20.676,12.926,18.186,15.119,22.381,19.493,4.112,16.245,12.873,14.667,19.396,8.178,16.578,12.329,4.339,7.471,9.683,20.213,16.797,22.476,20.259,17.026,15.865,7.411,-1.095,4.874,9.907,6.102,6.425,0.748,9.401,11.058,2.634,8.323,13.886,8.636,2.344,11.215,11.342,7.052,4.583,13.963,10.131,-0.411,6.043,14.55,10.202,7.757,5.498,13.55,1.703,1.522,9.458,6.248,0.317,13.088,15.394,11.351,-0.811,6.196,3.982,8.42,-0.092,7.313,4.802,3.009,5.412,15.972,2.461,14.399,12.242,5.453,0.996,-1.261,-4.037,4.099,10.192,2.837,8.49,1.841,8.617,5.497,0.553,-3.775,0.092,5.856,1.144,-2.201,2.551],[20.183,22.448,18.062,33.48,26.068,14.796,25.356,26.271,22.863,17.669,16.995,17.067,20.724,16.81,19.459,20.422,21.239,18.041,12.397,14.498,10.842,18.059,13.437,5.667,13.935,20.774,19.21,7.84,15.525,17.735,4.38,0.295,6.477,8.115,8.584,14.486,8.263,12.439,3.138,7.151,9.718,9.539,2.545,5.762,11.039,13.91,-0.547,14.306,0.645,3.342,9.024,5.645,1.74,7.888,6.551,4.372,-2.211,3.286,-3.006,0.582,1.737,14.004,11.991,2.269,23.055,16.795,24.222,31.717,21.962,15.427,19.616,24.831,19.253,33.455,25.217,16.473,22.466,26.725,18.383,19.727,16.354,20.091,16.968,27.093,16.833,24.315,14.049,17.34,24.316,18.991,19.703,18.768,15.862,19.833,13.755,5.042,19.457,21.264,14.476,12.371,12.064,18.001,11.82,19.666,13.148,18.081,14.971,21.88,19.585,4.242,16.318,13.144,14.056,19.904,8.331,16.411,12.153,4.807,7.486,9.272,20.035,16.604,22.413,20.399,17.474,15.543,7.26,-0.449,5.01,10.333,6.133,6.478,0.718,9.396,10.862,2.732,8.337,14.081,8.532,1.921,11.104,11.219,6.735,4.383,13.858,9.834,-1.093,6.592,14.392,10.035,7.527,5.304,13.343,1.808,1.446,9.563,6.435,0.671,12.87,15.879,11.52,-0.212,6.021,4.575,8.26,0.127,7.129,4.176,2.95,5.556,15.645,2.068,14.147,12.84,5.475,1.053,-1.293,-4.205,4.505,10.225,3.271,8.517,2.101,8.854,5.933,0.504,-3.479,-0.012,6.421,1.297,-1.794,2.45],[19.893,22.52,18.013,33.45,26.081,14.679,25.539,26.294,22.914,17.439,17.022,17.001,21.005,17.229,19.643,20.222,20.907,18.216,12.328,14.118,10.857,17.954,13.575,5.576,14.061,20.804,18.993,7.94,15.594,17.808,4.481,0.671,6.647,8.051,8.577,14.215,8.439,12.575,3.158,6.963,9.654,9.368,2.32,5.626,10.889,14.021,-0.104,14.443,0.416,3.44,9.123,5.69,1.925,7.834,6.461,4.39,-2.005,3.213,-3.037,0.502,1.727,13.958,11.875,2.226,22.771,16.421,23.853,31.838,22.161,16.088,19.95,25.619,18.741,33.169,25.315,16.475,23.368,26.621,18.246,19.292,15.888,20.092,17.718,27.253,16.537,24.377,14.227,17.264,24.63,18.438,19.74,18.73,16.046,19.559,13.765,5.309,19.149,21.259,15.023,12.466,12.231,17.868,11.231,19.268,12.833,17.583,14.695,21.59,19.891,3.981,16.495,13.851,13.897,20.074,8.384,16.334,12.161,4.797,7.189,9.836,19.463,16.573,22.442,19.827,17.319,14.955,7.819,-0.612,5.079,10.192,6.028,6.72,1.329,9.209,10.929,2.541,8.498,13.925,8.58,1.558,11.042,11.895,6.884,4.642,13.819,9.53,-1.279,6.688,13.738,10.025,7.174,5.18,13.268,2.71,1.024,9.196,6.374,0.758,12.787,15.747,11.244,0.358,6.014,4.472,8.244,0.12,7.304,4.357,2.814,5.716,15.5,2.161,14.645,12.818,5.191,0.907,-1.27,-3.838,4.692,10.139,3.235,8.238,2.509,8.33,5.346,0.615,-3.217,0.092,7.408,1.468,-2.155,2.654],[19.669,22.498,18.063,33.52,26.146,14.584,25.575,26.4,22.996,17.207,17.039,16.985,21.204,17.536,19.625,20.005,20.655,18.295,12.298,13.709,10.907,17.688,13.711,5.279,14.276,20.758,18.65,8.021,15.7,17.881,4.612,1.133,6.662,7.951,8.478,13.869,8.441,12.776,2.928,6.856,9.622,9.38,2.174,5.6,10.705,14.069,0.461,14.616,0.132,3.628,9.189,5.815,2.071,7.799,6.549,4.448,-1.974,3.346,-3.097,0.48,1.721,14.04,11.756,2.138,22.738,15.822,24.139,31.881,22.374,16.504,20.388,25.52,18.351,33.724,25.873,16.124,24.168,26.766,18.246,18.772,15.866,20.292,17.146,27.445,16.579,24.468,14.118,17.214,25.285,18.384,20.217,18.776,16.557,19.762,13.273,4.82,18.81,20.456,15.076,12.568,12.3,18.077,11.331,19.091,12.057,17.516,15.164,21.657,20.627,3.626,16.869,13.717,13.711,19.945,8.387,16.504,12.351,4.915,7.257,10.651,19.354,16.717,22.492,19.205,17.114,15.148,7.528,-0.357,5.615,9.963,6.326,6.358,1.771,9.28,11.203,2.582,8.277,13.455,8.84,1.053,11.123,11.548,6.965,4.637,14.077,9.145,-1.357,6.77,13.778,10.199,7.174,5.199,13.607,2.64,1.479,9.153,6.371,0.74,12.849,15.818,10.98,0.702,5.977,4.048,8.521,0.211,7.396,4.133,2.991,5.439,15.344,2.246,14.9,12.271,4.922,0.59,-1.285,-3.193,4.309,9.983,3.143,7.881,2.661,8.535,5.174,0.083,-3.141,0.006,7.49,1.561,-1.693,2.209],[19.492,22.506,18.178,33.522,26.22,14.533,25.534,26.568,23.261,17.084,16.946,17.073,21.488,17.776,19.562,19.842,20.47,18.365,12.25,13.395,11.122,17.483,13.811,5.114,14.386,20.733,18.289,8.139,15.793,17.924,4.851,1.385,6.686,7.773,8.36,13.528,8.477,13.02,2.624,6.894,9.582,9.397,2.162,5.558,10.6,14.057,0.821,14.83,-0.148,3.752,9.329,5.884,2.203,7.747,6.656,4.537,-2.097,3.408,-2.978,0.413,1.684,14.114,11.574,2.045,23.0,15.602,24.708,31.693,21.98,16.358,20.041,25.39,18.388,33.415,26.227,16.421,23.963,26.971,18.244,18.463,16.065,20.21,17.066,27.531,16.812,24.522,14.192,17.072,25.759,18.045,20.907,18.886,16.857,19.593,13.596,4.707,18.482,20.121,15.038,13.106,12.459,18.288,11.901,19.109,11.781,17.505,14.902,21.403,20.862,3.52,16.733,13.411,13.46,20.138,8.168,16.162,12.48,5.197,7.335,10.121,18.996,16.969,22.383,19.256,16.964,14.735,7.794,0.375,5.915,10.005,6.486,6.266,1.728,9.206,11.344,2.427,8.113,13.462,8.368,0.758,11.145,10.924,7.17,4.29,14.33,9.219,-1.451,6.625,14.035,10.118,7.166,5.072,13.718,1.417,1.404,9.103,5.946,1.64,12.995,16.011,11.232,1.089,6.029,4.035,8.796,0.426,7.162,4.25,3.037,4.969,15.324,2.155,14.976,11.937,4.39,0.603,-1.691,-3.821,3.79,9.917,3.134,7.693,2.42,9.247,5.647,-0.183,-3.275,0.111,7.525,1.683,-1.528,2.002],[19.38,22.392,18.279,33.325,26.215,14.608,25.512,26.762,23.482,16.964,16.911,17.197,21.72,17.83,19.519,19.718,20.395,18.549,12.385,13.106,11.27,17.321,13.962,5.368,14.389,20.647,18.144,8.275,15.798,17.794,5.05,1.288,6.896,7.575,8.26,13.351,8.435,13.146,2.494,6.895,9.535,9.444,2.069,5.572,10.476,14.013,0.988,15.002,-0.31,3.773,9.649,5.888,2.271,7.735,6.665,4.621,-2.209,3.293,-3.012,0.339,1.63,14.039,11.431,1.933,23.164,15.521,24.862,31.72,22.087,16.559,20.026,25.447,18.589,33.369,26.082,16.429,23.1,27.321,18.201,18.441,15.718,20.029,17.735,27.342,16.913,24.543,14.344,17.198,25.62,18.191,21.244,19.003,16.848,19.198,13.882,4.662,18.497,19.973,15.052,12.943,12.328,18.064,11.913,19.029,12.219,17.838,14.684,20.982,20.419,4.118,16.546,13.83,13.121,20.341,7.736,15.774,12.407,5.391,7.487,9.718,19.278,17.106,22.485,18.828,17.029,14.444,7.991,-0.12,5.445,9.803,6.796,6.497,1.994,9.251,11.609,2.165,8.673,13.195,8.331,1.137,11.096,10.747,7.03,4.277,14.495,9.826,-1.672,6.769,13.859,9.807,7.35,5.109,13.759,1.314,0.975,8.976,5.938,1.925,13.149,16.348,11.024,1.65,6.102,4.646,8.521,0.384,7.564,4.654,2.94,5.003,15.292,2.034,15.094,11.666,3.893,0.844,-1.689,-4.168,3.771,9.681,3.452,7.911,2.597,8.88,5.597,0.069,-3.39,0.149,7.886,1.407,-1.72,2.447],[19.333,22.178,18.36,33.26,26.097,14.765,25.537,26.903,23.581,16.833,16.994,17.246,21.799,17.762,19.406,19.569,20.398,18.762,12.658,12.716,11.224,17.194,14.13,5.543,14.447,20.453,18.177,8.355,15.888,17.653,5.183,1.291,7.074,7.634,8.242,13.247,8.398,13.187,2.489,6.817,9.505,9.595,1.993,5.761,10.298,13.922,1.087,15.121,-0.339,4.001,9.775,5.901,2.297,7.73,6.716,4.698,-2.233,3.171,-3.173,0.339,1.591,13.909,11.245,1.886,22.728,15.491,24.904,31.58,22.381,16.51,20.321,25.892,18.271,33.634,25.748,16.161,22.514,27.721,18.204,18.915,15.374,20.134,17.721,27.305,16.838,24.337,13.688,17.741,24.755,17.897,21.267,18.953,16.775,19.194,13.528,4.862,18.578,19.635,15.066,12.633,12.601,18.109,12.163,19.019,12.102,18.111,15.082,21.127,19.79,4.388,16.176,14.073,13.101,20.63,7.732,15.394,12.521,5.665,7.68,9.803,19.065,16.615,22.287,18.751,16.684,14.79,7.744,-0.082,5.31,9.195,6.662,6.031,1.735,9.132,11.56,2.272,8.407,12.961,9.202,1.338,11.13,10.926,6.578,4.226,14.538,10.443,-1.667,6.885,13.931,9.751,7.201,5.293,14.023,1.808,0.901,8.833,6.429,1.886,13.133,16.526,11.065,1.39,6.23,4.806,9.079,0.586,7.216,4.615,3.005,5.205,15.366,1.95,14.935,11.692,3.97,0.391,-1.337,-3.847,3.704,9.412,3.467,8.085,2.619,9.037,5.503,-0.039,-3.318,0.034,8.104,1.284,-1.738,2.492],[19.299,21.911,18.332,33.525,25.849,14.777,25.506,27.085,23.564,16.681,17.031,17.177,21.801,17.674,19.314,19.46,20.443,18.935,12.836,12.314,11.036,17.101,14.25,5.498,14.571,20.225,18.241,8.416,16.07,17.413,5.127,1.358,7.099,7.768,8.26,13.274,8.477,13.156,2.501,6.727,9.533,9.73,2.022,5.963,10.194,13.826,0.961,15.216,-0.25,4.214,9.882,5.884,2.29,7.828,6.857,4.79,-2.043,3.202,-3.226,0.393,1.647,13.921,11.138,1.76,22.645,15.294,24.609,31.768,22.984,16.279,20.444,26.112,18.437,33.25,25.294,16.376,22.708,27.331,18.444,19.297,15.203,20.232,17.386,27.125,16.798,24.191,13.986,17.805,24.412,17.61,21.074,18.8,16.766,19.107,14.092,4.714,18.382,19.894,15.033,12.918,12.704,18.462,12.291,19.023,11.552,18.011,14.713,21.206,19.603,4.35,16.123,14.05,12.781,20.767,8.093,15.397,12.608,5.7,7.693,10.336,18.822,16.834,21.92,19.072,16.767,14.775,7.795,0.368,5.791,8.737,6.793,6.127,2.028,9.047,11.474,2.558,7.955,12.744,8.965,1.656,11.25,10.984,6.904,3.691,14.373,10.293,-1.986,6.592,14.133,10.287,7.195,4.851,14.098,1.649,1.012,8.556,6.632,2.374,12.617,16.671,11.003,1.214,5.922,5.191,9.5,0.614,7.371,4.324,2.585,5.297,15.287,1.794,14.624,11.767,4.33,0.047,-1.615,-3.498,3.381,9.436,3.637,7.798,2.596,9.008,5.542,-0.005,-3.337,-0.19,8.17,1.602,-2.203,2.221],[19.313,21.791,18.318,33.789,25.745,14.682,25.474,27.166,23.524,16.477,17.11,17.032,21.838,17.635,19.278,19.35,20.569,19.048,13.101,11.836,10.814,17.123,14.346,5.335,14.637,20.201,18.243,8.487,16.135,17.286,5.0,1.558,7.08,7.859,8.174,13.201,8.538,13.056,2.548,6.546,9.795,9.712,2.184,6.065,10.149,13.681,0.857,15.343,-0.14,4.407,10.054,5.916,2.253,7.794,7.015,4.82,-2.025,3.22,-3.301,0.447,1.656,14.052,11.19,1.602,22.287,15.368,24.36,32.34,23.004,16.338,20.162,26.424,18.536,33.294,25.151,16.331,23.157,27.086,18.044,19.349,15.574,20.246,17.432,26.933,17.153,23.981,14.224,17.283,24.109,17.727,20.99,18.688,16.672,18.941,14.44,4.536,18.346,19.972,15.24,13.233,12.326,18.394,12.295,19.2,11.343,17.334,14.703,21.033,19.142,4.352,15.748,14.178,12.482,20.917,8.354,15.177,12.676,5.317,7.249,10.087,18.624,17.554,21.718,19.331,16.821,14.79,8.24,0.266,6.006,8.968,6.655,6.546,2.593,9.319,11.482,2.072,8.593,12.552,8.544,0.85,11.413,11.025,7.695,2.799,14.33,9.722,-1.443,6.852,13.753,9.941,7.015,4.805,14.027,1.715,1.332,8.762,6.414,2.257,12.07,16.545,11.234,1.033,6.138,5.443,9.127,0.87,7.431,4.571,2.042,5.368,15.289,2.191,15.018,11.453,4.854,-0.028,-1.425,-3.598,3.392,9.234,3.568,8.063,2.195,9.195,5.326,0.16,-3.339,-0.135,8.072,1.559,-2.097,2.648],[19.486,21.827,18.482,33.869,25.866,14.663,25.382,27.142,23.519,16.356,17.089,16.945,21.838,17.629,19.299,19.326,20.704,19.055,13.416,11.473,10.595,17.125,14.447,5.231,14.682,20.224,18.082,8.562,16.183,17.268,4.85,1.901,7.175,7.887,8.137,13.116,8.666,13.01,2.543,6.361,10.024,9.582,2.247,6.069,10.157,13.345,0.744,15.445,0.093,4.542,10.207,5.877,2.197,7.742,7.184,4.787,-2.317,3.281,-3.322,0.518,1.597,14.247,11.188,1.554,22.11,14.968,24.569,32.471,22.386,16.302,20.2,26.6,18.622,33.573,25.197,16.065,23.265,27.545,17.57,18.701,15.798,20.133,17.517,27.046,17.1,24.125,13.999,17.074,23.988,17.448,21.287,18.686,16.928,19.115,14.398,4.548,18.446,20.016,15.387,13.174,11.998,18.049,12.703,19.395,11.275,16.795,14.903,20.936,19.145,4.06,15.604,13.801,11.77,20.813,8.523,15.516,13.058,4.926,7.16,9.37,19.078,17.412,21.851,18.768,16.56,14.505,8.305,0.531,5.555,9.446,6.655,6.9,2.346,9.684,11.397,1.488,8.524,11.813,8.621,0.683,11.385,11.12,7.734,2.423,14.463,9.787,-1.419,7.056,13.635,9.9,6.636,4.861,14.091,2.244,1.463,9.025,6.354,1.778,12.254,16.479,11.513,1.069,5.916,5.434,8.932,1.52,7.436,4.602,1.308,5.288,15.536,2.307,15.37,11.526,5.52,0.085,-1.542,-4.033,3.695,9.291,3.862,8.031,1.91,9.784,5.61,-0.016,-3.419,0.125,7.529,0.969,-2.144,2.858],[19.68,21.89,18.534,33.889,25.987,14.633,25.261,27.232,23.562,16.197,16.904,16.935,21.862,17.609,19.426,19.294,20.906,18.824,13.649,11.268,10.375,17.133,14.526,5.177,14.641,20.209,17.899,8.646,16.184,17.178,4.756,2.128,7.167,7.911,8.224,12.967,8.725,13.032,2.503,6.217,10.094,9.549,2.293,5.997,10.249,12.995,0.609,15.58,0.193,4.561,10.342,5.887,2.119,7.648,7.301,4.787,-2.617,3.426,-3.276,0.558,1.494,14.477,11.129,1.554,22.549,14.8,24.459,32.189,22.35,16.248,20.396,26.312,18.61,33.452,25.182,16.135,23.03,27.67,17.625,18.597,15.565,20.015,17.999,27.186,17.065,24.774,14.937,17.721,23.992,17.411,21.441,18.392,16.527,19.273,14.578,4.436,18.682,20.275,15.47,13.225,11.834,18.147,12.773,19.294,11.142,16.881,15.082,21.006,19.731,4.061,16.045,13.775,11.218,20.644,8.334,15.502,13.199,4.912,7.607,9.615,19.262,16.987,21.843,17.971,16.421,14.364,7.95,0.927,5.417,9.723,6.448,6.818,2.731,9.543,11.483,1.248,8.0,11.55,9.051,1.262,11.098,11.478,7.759,2.753,14.31,10.052,-1.515,6.97,13.026,10.337,6.806,4.513,13.952,2.167,1.506,9.031,5.915,1.289,12.563,16.701,11.485,1.192,5.921,5.612,9.462,2.37,7.465,4.447,0.311,5.672,15.537,2.103,15.188,11.587,5.973,0.046,-1.513,-4.138,3.733,9.587,4.503,7.819,2.048,9.33,5.823,-0.015,-3.127,0.302,6.935,1.073,-2.771,2.8],[19.827,21.988,18.395,33.702,26.216,14.706,25.198,27.337,23.586,16.14,16.682,16.992,21.961,17.461,19.625,19.284,21.085,18.483,13.88,11.173,10.183,17.144,14.43,5.22,14.619,20.134,17.813,8.705,16.178,17.131,4.651,2.262,6.985,7.869,8.508,12.894,8.567,13.1,2.366,6.053,10.096,9.666,2.356,5.905,10.46,12.731,0.437,15.69,0.232,4.708,10.403,6.1,2.12,7.438,7.453,4.791,-2.909,3.502,-3.057,0.586,1.297,14.57,11.16,1.552,22.664,14.809,24.649,32.225,22.843,16.426,20.398,26.214,18.548,33.787,25.14,16.253,22.779,27.592,18.032,19.188,15.043,20.471,17.591,27.485,17.047,24.571,14.772,17.973,23.758,17.07,21.249,18.183,16.237,19.05,14.689,4.827,18.47,20.677,15.383,13.063,11.865,17.928,13.212,19.485,10.857,16.896,14.906,20.988,20.018,4.266,15.614,14.252,10.824,20.327,8.419,15.478,12.93,5.259,7.649,9.706,18.727,17.134,21.957,18.002,16.494,14.283,7.563,1.166,5.481,9.628,6.115,6.54,3.355,9.236,11.22,1.449,8.265,11.864,9.31,2.083,11.072,11.449,7.436,3.171,14.17,10.185,-1.046,7.171,13.121,10.316,7.136,4.491,13.974,1.934,1.211,9.301,6.106,1.216,11.723,16.802,11.371,1.642,5.616,5.812,9.616,2.427,7.119,4.601,0.293,5.826,15.167,1.894,14.974,11.362,6.286,-0.219,-1.302,-3.827,3.566,9.146,4.171,8.215,2.248,9.309,5.483,0.527,-3.092,0.146,6.947,1.604,-2.645,2.89],[20.11,22.016,18.241,33.508,26.405,14.768,25.246,27.284,23.677,16.098,16.557,17.041,21.968,17.282,19.872,19.219,21.249,18.199,14.062,11.128,10.093,17.031,14.185,5.455,14.663,20.143,17.772,8.817,16.094,17.104,4.572,2.462,6.77,7.842,8.838,12.981,8.547,13.062,2.191,5.965,9.907,9.854,2.488,5.873,10.613,12.522,0.362,15.753,0.405,4.94,10.332,6.238,2.209,7.291,7.609,4.821,-3.009,3.452,-2.848,0.638,1.155,14.35,11.086,1.541,22.528,14.784,24.944,31.944,23.018,16.151,20.384,26.678,18.508,33.488,24.975,16.161,22.937,27.523,17.872,19.261,15.103,20.902,17.348,27.638,16.86,24.718,14.068,17.646,23.849,17.206,21.445,18.469,16.599,19.001,15.047,4.884,18.146,20.65,14.894,13.279,11.696,17.497,12.998,19.594,10.589,17.175,14.726,20.815,19.734,4.129,15.365,13.948,10.291,20.005,8.626,15.368,12.589,5.721,7.76,9.446,18.75,17.115,21.901,18.104,16.507,14.255,7.378,1.109,5.167,9.796,5.782,6.428,2.987,9.19,11.261,1.904,8.624,11.689,9.532,1.753,11.525,11.912,7.273,2.583,14.314,10.285,-1.162,6.643,13.243,10.546,6.972,4.392,13.913,2.205,1.452,9.297,6.603,1.285,11.678,16.576,11.192,1.298,5.534,5.814,9.372,1.588,7.678,4.591,0.697,6.026,15.161,2.311,15.153,11.604,6.298,0.031,-1.004,-3.138,3.314,9.74,3.8,8.065,2.691,9.59,5.469,0.375,-4.164,-0.225,7.242,1.24,-2.34,3.063],[20.398,22.096,18.192,33.308,26.566,14.617,25.285,27.178,23.925,16.024,16.588,17.107,21.922,17.154,20.137,19.061,21.177,18.063,14.14,10.985,10.001,16.865,13.872,5.76,14.596,20.117,17.783,8.961,15.976,17.052,4.656,2.463,6.584,7.883,9.2,13.095,8.471,12.941,2.011,5.899,9.835,10.054,2.589,5.927,10.821,12.491,0.297,15.698,0.532,5.075,10.202,6.235,2.333,7.338,7.752,4.854,-2.941,3.318,-2.648,0.696,1.232,14.066,11.149,1.592,22.876,14.783,24.571,31.639,23.07,15.601,20.481,26.396,19.017,32.892,24.896,16.042,22.651,27.506,17.635,19.56,15.555,21.21,17.371,27.529,16.842,24.831,14.74,17.277,24.451,17.62,21.224,18.857,16.514,19.458,14.906,4.789,17.935,20.793,14.599,13.332,11.587,17.188,12.655,19.612,10.774,16.887,14.471,20.796,19.238,4.772,15.457,13.468,10.427,19.83,8.887,15.436,12.319,5.741,7.717,10.004,18.831,16.864,21.898,18.125,16.896,14.252,7.588,0.92,4.839,10.223,5.786,6.581,2.779,9.456,11.367,2.151,8.582,11.53,9.592,1.552,11.658,11.753,7.645,2.402,14.233,10.352,-1.019,6.737,12.621,10.309,6.702,4.248,14.297,2.054,1.623,9.137,5.964,1.202,11.902,16.203,11.231,0.616,5.583,5.472,9.073,0.976,7.561,4.575,0.938,6.029,15.372,2.392,14.933,11.894,5.946,0.424,-0.964,-2.882,3.26,9.673,4.204,7.171,2.889,9.217,5.946,0.275,-4.362,-0.303,7.436,0.585,-2.829,2.865],[20.633,22.283,18.256,33.142,26.635,14.556,25.317,27.092,24.16,15.939,16.786,17.127,21.862,17.031,20.368,19.024,21.11,17.94,14.093,10.948,9.979,16.748,13.498,5.952,14.336,20.019,17.839,8.956,15.802,17.05,4.873,2.305,6.512,7.975,9.541,13.249,8.415,12.771,1.87,5.761,9.898,10.018,2.538,5.926,10.854,12.59,0.008,15.63,0.611,4.955,9.998,6.082,2.45,7.327,7.808,4.89,-2.894,3.207,-2.511,0.689,1.448,13.973,11.249,1.615,22.582,15.064,24.682,31.935,22.996,15.802,20.476,25.838,20.13,32.834,25.656,15.979,21.98,27.441,17.535,19.334,15.37,20.715,17.349,27.856,17.058,25.014,15.142,17.275,24.214,16.985,21.292,18.819,16.291,20.247,14.483,5.262,17.978,20.778,14.308,13.193,11.531,17.342,12.831,19.544,10.623,16.789,14.414,20.736,18.704,4.697,15.412,13.511,10.746,19.781,8.897,14.983,12.436,6.172,7.83,9.933,19.278,16.668,21.474,18.49,16.568,14.024,7.555,0.984,4.87,10.555,5.571,6.956,3.025,9.655,11.129,2.125,8.186,11.851,9.689,2.065,11.484,11.509,7.702,3.18,14.174,10.647,-0.892,6.774,12.743,10.127,6.693,4.09,14.024,2.309,1.806,9.756,5.7,1.249,12.085,16.599,11.276,0.707,5.863,5.915,8.657,0.87,7.288,4.364,1.204,6.095,15.354,2.252,14.715,11.707,5.47,0.075,-1.116,-3.078,3.328,9.78,5.237,6.731,2.766,9.391,6.188,0.59,-3.515,-0.321,7.712,0.914,-2.948,2.905],[20.863,22.247,18.505,33.21,26.717,14.643,25.403,27.023,24.247,15.785,16.966,17.1,21.963,16.979,20.584,19.139,21.026,17.936,13.961,11.068,10.024,16.625,13.142,5.998,14.151,19.744,17.935,8.867,15.551,17.141,5.159,2.172,6.598,8.137,9.708,13.339,8.249,12.708,1.852,5.679,9.94,9.798,2.493,5.864,10.799,12.664,-0.281,15.597,0.851,4.913,9.895,5.915,2.56,7.305,7.898,4.877,-2.759,3.264,-2.416,0.61,1.687,14.06,11.327,1.476,22.662,14.737,25.327,31.776,23.141,15.765,20.292,26.11,20.678,32.691,25.597,16.36,22.007,27.447,17.637,19.177,14.802,20.519,17.472,27.606,17.101,25.477,14.753,17.364,24.519,17.052,21.56,18.729,16.073,19.773,14.535,5.328,18.352,20.598,13.905,12.708,11.578,17.353,12.819,19.393,10.144,17.189,14.205,20.678,18.628,4.62,15.426,13.507,10.946,19.756,8.298,14.856,12.332,6.91,7.985,9.23,19.083,16.204,21.474,18.741,16.877,14.503,7.177,0.893,5.062,11.138,5.025,7.003,2.96,9.681,10.96,1.682,8.257,11.802,10.046,2.182,11.44,11.647,7.336,3.564,13.931,10.277,-0.737,6.459,12.479,10.341,6.629,4.159,13.893,2.323,1.849,9.624,5.844,0.494,12.329,16.439,11.112,0.774,5.743,5.428,8.604,1.129,7.424,3.985,1.766,6.069,15.211,2.261,15.065,11.426,5.276,-0.004,-0.928,-3.248,3.715,9.446,5.601,6.854,2.607,9.362,5.883,0.504,-3.612,-0.027,7.926,1.318,-2.893,2.415],[21.005,22.002,18.692,33.262,26.66,14.714,25.526,27.141,24.22,15.676,17.103,17.134,22.154,16.917,20.746,19.257,21.009,17.903,13.715,11.158,9.979,16.614,12.785,5.926,14.061,19.457,18.029,8.608,15.353,17.462,5.371,2.127,6.644,8.235,9.799,13.265,8.002,12.768,1.781,5.803,9.902,9.562,2.463,5.713,10.816,12.55,-0.507,15.654,1.071,4.933,9.957,5.897,2.642,7.261,7.99,4.815,-2.581,3.34,-2.307,0.71,1.918,14.222,11.231,1.296,23.03,14.466,25.282,31.726,23.621,15.446,20.607,25.82,20.993,32.973,25.361,16.714,22.709,27.668,18.106,19.493,14.222,20.607,17.838,27.619,17.34,26.0,14.572,17.67,24.664,17.049,21.601,18.453,16.124,19.691,14.896,5.149,18.126,20.777,14.016,12.511,11.718,17.259,12.868,19.474,10.948,17.267,13.955,20.708,18.344,4.534,15.65,13.288,10.593,19.807,8.571,14.831,11.426,7.289,7.65,9.683,19.082,16.179,21.16,18.44,17.06,14.648,7.567,0.542,4.962,11.537,4.647,6.749,2.396,9.704,11.127,2.182,8.301,11.951,10.063,1.816,11.186,11.853,6.939,3.429,14.021,9.757,-0.431,6.176,12.404,10.571,6.293,4.194,13.918,1.621,1.835,9.3,6.162,-0.015,11.541,16.133,11.268,0.526,5.631,5.34,9.114,1.71,6.781,4.393,1.563,6.212,15.586,2.519,14.891,11.17,5.238,-0.108,-0.918,-3.076,4.061,9.629,5.204,7.243,2.664,8.812,5.844,0.561,-3.951,0.265,7.974,0.523,-2.927,2.187],[21.167,21.836,18.659,33.119,26.613,14.649,25.525,27.198,24.132,15.688,17.223,17.168,22.297,16.932,20.914,19.263,21.228,17.719,13.536,11.217,9.941,16.644,12.446,5.864,13.991,19.141,18.17,8.224,15.461,17.606,5.525,1.953,6.663,8.223,9.863,13.185,7.984,12.926,1.81,6.045,9.84,9.475,2.337,5.509,10.867,12.395,-0.642,15.646,1.077,4.921,10.067,5.821,2.755,7.229,8.022,4.723,-2.459,3.425,-2.185,0.951,2.006,14.369,11.103,0.901,22.613,14.869,24.877,31.556,23.795,15.682,21.312,26.293,20.948,33.623,26.056,16.839,23.237,28.368,18.279,20.034,14.116,20.979,17.724,27.724,17.741,25.441,14.559,17.684,24.28,16.738,21.25,18.633,16.489,20.49,14.823,4.879,18.153,21.137,13.69,12.913,11.742,16.903,12.682,19.556,11.179,16.889,13.84,20.915,18.288,4.595,16.14,13.12,10.087,19.561,8.878,14.843,11.251,7.057,7.733,9.831,18.916,16.283,20.994,18.62,16.857,14.149,7.605,0.968,5.193,11.46,4.897,6.754,2.209,9.567,11.256,1.992,8.036,11.819,9.91,1.702,11.26,11.892,7.127,3.161,14.311,9.366,-0.282,6.422,12.522,10.489,6.378,4.253,13.895,1.653,2.14,9.634,5.971,-0.085,11.19,16.439,11.192,0.029,5.474,5.947,9.044,1.855,6.742,4.69,1.272,6.357,15.538,2.779,14.325,11.238,4.923,-0.372,-0.727,-2.645,4.326,9.378,4.567,8.09,2.994,8.697,6.072,0.652,-3.301,0.711,7.738,0.101,-2.614,2.441],[21.385,21.783,18.543,32.889,26.537,14.483,25.446,27.346,24.086,15.746,17.291,17.207,22.443,17.231,21.092,19.312,21.469,17.463,13.461,11.196,10.004,16.583,12.362,5.829,14.0,19.003,18.353,8.03,15.718,17.599,5.627,1.788,6.704,8.17,9.779,13.084,8.174,13.118,1.807,6.164,9.739,9.558,2.225,5.368,11.089,12.309,-0.742,15.577,0.98,4.923,10.067,5.773,2.922,7.363,7.889,4.643,-2.218,3.448,-2.02,1.029,1.994,14.29,11.112,0.489,22.531,14.805,24.79,31.22,23.83,15.992,21.191,26.141,20.525,33.109,25.801,16.713,23.179,28.164,17.867,19.994,14.448,21.923,17.202,27.363,17.699,24.807,14.439,17.058,23.986,17.144,21.255,18.65,16.304,20.603,14.579,4.773,18.576,20.874,13.279,12.617,11.641,17.019,12.529,19.953,10.592,17.087,14.262,20.778,18.103,4.58,16.18,13.277,9.837,19.329,7.965,14.728,11.397,7.106,7.136,9.48,19.309,16.346,20.735,18.668,16.926,14.195,7.882,0.699,5.186,11.293,5.531,6.749,2.571,9.62,11.469,1.896,8.209,11.674,10.536,2.091,11.33,11.517,7.014,3.503,14.395,9.589,-0.456,6.352,11.872,10.501,6.774,4.571,13.858,1.88,2.363,9.726,5.78,-0.013,11.744,16.51,11.03,-0.22,5.484,5.594,8.879,1.55,7.159,4.871,1.569,6.764,15.347,2.767,14.324,11.154,4.217,-0.634,-0.435,-2.454,4.888,9.347,4.095,7.87,3.486,9.012,5.941,0.966,-3.253,0.933,7.737,0.34,-2.407,2.949],[21.493,21.834,18.407,32.702,26.344,14.376,25.305,27.396,24.086,15.85,17.24,17.083,22.454,17.524,21.275,19.402,21.519,17.349,13.365,11.054,10.014,16.475,12.345,5.571,13.995,18.94,18.626,7.807,15.802,17.577,5.638,1.71,6.707,8.027,9.647,12.955,8.425,13.305,1.827,6.184,9.768,9.759,2.275,5.285,11.4,12.208,-0.849,15.513,0.926,4.817,9.977,5.819,3.047,7.484,7.771,4.628,-2.003,3.514,-1.882,0.993,2.043,14.028,11.225,0.371,22.896,14.767,24.763,31.428,23.186,16.031,20.928,26.093,20.425,32.079,25.578,16.436,22.678,27.616,17.957,20.158,14.63,22.319,17.66,27.042,17.35,24.731,14.264,17.584,24.334,17.174,22.105,18.595,16.692,20.441,14.823,4.989,18.109,20.996,13.642,12.468,11.605,16.99,12.586,20.041,10.572,17.349,14.972,20.754,17.916,3.919,16.027,13.638,10.367,19.264,7.84,14.687,11.401,7.097,6.945,9.419,19.63,16.364,20.785,18.43,16.965,14.379,7.937,0.545,5.163,10.851,6.324,6.937,2.674,9.651,11.667,1.705,8.732,11.699,10.832,2.019,11.382,11.479,6.621,3.525,14.56,9.941,-0.241,6.672,12.237,10.597,6.965,4.665,13.937,1.324,1.992,10.135,5.728,-0.054,12.641,15.984,11.078,0.114,5.856,5.271,9.065,1.234,7.124,4.351,1.98,6.394,15.483,2.735,14.704,11.778,3.323,-0.133,-0.356,-2.494,5.513,9.442,4.168,7.011,3.455,8.861,5.697,0.606,-3.586,0.842,7.766,0.165,-2.324,3.674],[21.583,21.918,18.44,32.538,26.087,14.388,25.233,27.159,23.995,15.961,17.168,16.995,22.503,17.662,21.477,19.34,21.554,17.391,13.303,10.995,9.891,16.376,12.449,5.201,14.072,18.955,18.759,7.578,15.727,17.55,5.662,1.652,6.757,7.873,9.584,12.917,8.726,13.508,1.792,6.194,9.852,9.824,2.321,5.184,11.673,12.293,-0.956,15.405,0.851,4.596,9.907,5.855,3.04,7.426,7.719,4.584,-1.944,3.648,-1.765,0.919,2.218,13.959,11.47,0.558,23.036,14.766,24.577,30.947,23.021,16.103,20.847,26.454,20.716,32.201,25.948,16.365,22.806,27.949,17.787,20.278,14.412,22.018,17.554,27.282,17.11,24.494,14.368,17.665,24.38,17.377,22.122,18.444,17.301,20.836,14.562,4.755,17.976,21.408,13.799,12.474,11.505,16.633,12.488,19.858,10.499,17.218,14.723,20.711,17.914,3.644,16.178,13.752,10.919,19.292,7.673,14.516,11.482,6.708,7.357,9.645,19.81,16.59,20.641,19.478,17.075,14.291,7.829,0.5,5.302,10.669,6.97,6.706,2.736,9.415,11.744,1.67,8.765,11.78,10.594,1.873,11.418,11.727,6.643,3.439,14.895,10.489,-0.114,7.148,12.535,10.933,6.912,4.453,13.68,1.183,1.873,10.457,6.027,0.142,12.576,16.092,11.033,-0.067,6.091,5.801,8.775,1.346,7.273,4.428,2.177,5.943,15.246,2.617,14.665,11.494,2.885,-0.488,-0.567,-2.734,5.69,9.64,4.079,7.393,3.274,8.774,5.596,0.107,-3.442,0.767,7.828,-0.543,-1.963,3.233],[21.77,22.085,18.459,32.296,25.871,14.409,25.29,27.082,23.78,16.025,17.171,16.916,22.604,17.744,21.663,19.187,21.591,17.522,13.212,11.066,9.816,16.454,12.626,4.876,14.214,19.023,18.846,7.485,15.567,17.576,5.771,1.427,6.936,7.76,9.509,12.966,8.962,13.645,1.696,6.175,9.847,9.695,2.284,5.328,11.696,12.658,-1.055,15.347,0.781,4.559,9.845,5.935,3.026,7.457,7.735,4.373,-1.968,3.718,-1.753,0.787,2.386,14.015,11.525,0.7,22.921,14.838,24.864,30.973,23.547,16.221,21.0,25.853,21.264,32.557,25.39,16.554,23.308,27.876,17.637,20.153,14.345,21.403,17.612,27.241,17.135,24.215,14.377,17.041,24.561,17.45,22.0,18.719,17.181,21.262,14.118,4.175,18.371,21.46,13.657,12.799,11.441,16.923,12.794,19.931,10.294,17.173,14.399,20.666,17.955,3.672,15.996,13.809,11.009,19.386,7.293,14.542,11.232,6.538,6.681,9.342,19.671,16.345,20.744,20.059,16.929,14.497,7.855,0.476,5.175,11.041,7.012,6.286,2.405,9.172,12.042,2.165,8.621,11.785,10.114,1.767,11.418,11.932,6.74,3.129,14.859,9.92,-0.547,7.275,12.146,10.933,6.53,4.572,13.713,1.891,2.043,9.942,5.937,-0.029,11.686,16.274,10.886,-0.406,5.707,5.443,8.507,1.677,7.475,4.327,2.376,6.011,15.722,2.299,14.802,11.535,3.217,-0.321,-0.555,-2.9,5.939,9.74,3.703,7.261,2.958,9.0,5.605,0.541,-3.263,1.121,7.799,-0.231,-1.509,2.462],[21.94,22.303,18.437,32.098,25.819,14.39,25.372,27.083,23.719,15.969,17.283,17.042,22.663,17.655,21.824,19.192,21.536,17.592,13.228,11.162,9.807,16.734,12.767,4.619,14.46,19.157,18.928,7.336,15.424,17.525,5.854,1.088,7.004,7.675,9.384,12.898,8.887,13.672,1.639,6.181,9.742,9.525,2.314,5.528,11.417,12.88,-1.1,15.405,0.755,4.512,9.81,5.969,3.047,7.418,7.802,4.165,-2.018,3.563,-1.891,0.659,2.543,14.195,11.399,0.954,23.075,14.801,25.0,30.741,23.405,16.457,21.15,25.699,21.479,32.404,25.56,16.671,23.375,27.393,18.066,20.337,14.165,21.338,17.677,26.808,17.003,24.087,14.307,16.847,24.214,17.024,22.383,18.536,16.636,20.796,14.489,3.847,18.304,21.326,13.582,12.923,11.545,17.305,12.18,20.14,10.257,17.292,14.184,20.378,18.092,3.487,16.061,14.011,10.238,19.492,7.918,15.02,11.531,6.68,6.778,9.322,19.607,16.047,20.887,19.439,16.894,14.579,7.933,0.242,5.512,11.085,6.936,6.248,2.28,9.148,11.93,1.909,9.115,12.148,9.639,1.685,11.252,12.163,7.152,3.141,14.887,9.394,-0.49,7.195,12.641,10.196,6.854,4.532,14.015,1.957,1.832,9.996,5.886,-0.685,11.626,16.144,11.251,-0.272,5.63,5.474,8.79,1.488,7.416,4.341,2.486,6.205,15.791,2.403,14.526,12.045,3.784,-0.12,-0.389,-2.673,5.79,9.516,4.014,7.593,2.908,8.87,5.738,0.893,-3.521,1.616,7.661,0.331,-1.601,2.309],[21.907,22.564,18.435,31.947,25.825,14.355,25.372,26.98,23.715,15.791,17.464,17.195,22.685,17.466,21.95,19.192,21.462,17.503,13.282,11.098,9.82,17.084,12.989,4.438,14.636,19.332,19.012,7.241,15.32,17.528,5.755,0.967,7.059,7.704,9.309,12.857,8.677,13.607,1.576,6.28,9.663,9.375,2.376,5.638,11.208,12.999,-1.104,15.487,0.799,4.487,9.864,5.925,3.116,7.404,7.874,4.009,-2.1,3.29,-2.052,0.637,2.732,14.211,11.206,1.309,23.416,14.598,24.856,30.379,23.448,16.163,21.031,26.076,21.47,32.267,26.403,16.931,23.326,27.771,18.605,20.809,13.947,21.86,17.705,26.917,16.787,24.292,14.042,17.773,24.343,17.116,21.971,18.787,16.704,20.595,14.396,3.854,18.286,20.768,13.765,13.089,11.533,16.963,11.788,20.153,10.787,17.568,13.988,20.247,18.456,2.867,15.863,14.188,9.942,19.429,7.738,15.198,11.7,6.764,6.985,9.472,19.877,16.367,21.098,18.86,17.135,14.242,7.704,-0.274,5.899,11.0,7.055,6.509,1.935,9.304,11.909,1.374,8.959,11.895,9.408,1.709,10.966,12.496,7.362,3.391,15.005,9.913,-0.391,6.738,12.645,10.324,7.008,4.484,13.92,1.517,1.868,10.043,6.023,-0.368,12.087,16.354,10.874,-0.364,5.615,5.566,9.379,1.366,7.479,4.51,2.583,6.308,15.723,2.327,14.391,11.848,3.926,0.623,-0.383,-2.45,5.41,9.547,3.664,7.404,3.034,8.567,5.572,0.351,-3.675,1.97,7.386,0.175,-1.822,2.318],[21.833,22.83,18.515,31.794,25.861,14.282,25.486,27.026,23.733,15.602,17.69,17.463,22.456,17.409,22.078,19.124,21.371,17.343,13.207,11.058,9.886,17.375,13.196,4.25,14.478,19.53,19.009,7.107,15.375,17.598,5.545,0.951,7.214,7.812,9.249,12.732,8.4,13.578,1.57,6.386,9.693,9.321,2.306,5.783,11.33,12.957,-1.126,15.604,0.876,4.471,10.04,5.804,3.263,7.342,7.74,3.96,-2.105,3.017,-2.104,0.604,2.984,14.075,11.084,1.53,23.596,14.335,24.318,30.454,23.831,16.043,21.137,25.897,20.509,31.599,25.851,16.967,23.772,28.054,18.738,20.857,14.552,21.966,17.736,27.068,17.05,24.081,13.966,17.822,24.552,16.955,21.64,19.084,16.725,21.133,14.208,3.753,18.454,20.489,14.14,12.97,11.658,16.565,12.35,20.046,11.309,17.763,13.891,20.529,18.915,2.852,15.975,14.029,9.767,19.221,6.948,15.724,11.682,6.485,6.707,9.341,19.714,16.134,21.158,19.315,17.003,14.349,7.851,0.14,5.774,10.813,6.8,6.504,2.278,9.355,11.923,1.332,8.331,11.546,9.333,2.007,11.029,12.061,7.02,3.455,14.781,9.699,-0.607,6.718,13.009,10.931,6.739,4.588,13.817,1.858,2.089,9.808,6.186,0.116,12.874,16.205,10.542,-0.6,5.642,5.079,9.49,1.499,7.312,4.457,2.789,6.718,15.209,2.207,14.802,11.474,3.613,0.88,-0.427,-2.682,4.858,9.221,3.263,6.958,3.753,8.919,5.228,0.197,-3.525,2.088,7.672,0.503,-2.015,2.525],[21.771,23.13,18.469,31.797,25.799,14.363,25.569,27.174,23.732,15.436,17.847,17.627,22.251,17.453,22.179,19.233,21.262,17.168,13.096,11.057,9.862,17.652,13.372,4.068,14.256,19.738,18.927,6.75,15.485,17.574,5.287,1.055,7.369,7.723,9.021,12.66,8.18,13.436,1.668,6.557,9.725,9.334,2.158,5.89,11.591,12.979,-1.138,15.672,0.887,4.411,10.187,5.592,3.405,7.242,7.64,3.928,-2.12,2.932,-2.047,0.539,3.234,13.875,11.119,1.596,23.727,14.081,24.123,30.275,23.752,16.36,20.816,26.166,20.632,31.661,25.48,16.831,24.042,27.649,18.567,20.353,14.617,21.76,17.688,27.006,16.989,24.105,14.33,17.562,24.721,16.688,21.831,19.373,16.596,21.403,14.553,3.234,18.402,21.045,14.197,12.731,11.429,16.812,12.464,19.947,11.652,17.759,14.049,20.642,18.925,2.9,16.128,13.754,9.879,19.026,7.434,16.19,11.654,6.576,6.995,9.216,19.909,15.952,21.553,19.504,16.916,14.252,8.058,0.219,5.592,10.534,6.154,6.297,2.441,9.272,12.034,1.913,8.586,11.299,9.719,2.246,11.138,12.032,6.68,3.397,14.901,9.188,-0.438,6.431,13.261,10.51,6.79,4.558,13.82,2.325,1.87,10.022,6.611,-0.378,12.777,16.057,10.872,-0.972,5.778,5.078,9.644,1.775,7.062,3.889,3.18,6.601,15.164,2.412,15.146,11.03,3.023,0.25,-0.572,-3.224,4.365,9.347,3.518,6.9,4.232,9.541,5.087,0.658,-3.137,2.367,7.629,0.695,-1.761,2.715],[21.659,23.456,18.249,31.924,25.902,14.556,25.54,27.201,23.754,15.331,17.785,17.672,22.194,17.469,22.228,19.358,21.27,17.119,12.974,11.207,9.663,17.939,13.466,3.858,14.296,19.888,18.836,6.623,15.631,17.435,5.172,1.101,7.443,7.599,8.913,12.571,8.101,13.29,1.725,6.585,9.619,9.381,2.044,5.854,11.789,13.079,-1.305,15.548,0.884,4.315,10.276,5.413,3.6,7.215,7.685,3.852,-2.07,2.91,-2.02,0.589,3.412,13.849,11.336,1.54,23.818,14.451,24.254,30.186,23.443,16.112,20.505,26.532,21.138,32.483,26.265,16.968,23.988,27.621,18.63,20.495,14.183,21.771,17.429,26.697,16.719,24.18,14.771,17.756,24.952,16.984,21.769,19.429,16.941,21.173,13.831,2.606,18.775,21.589,14.175,12.751,11.33,16.711,12.318,19.509,11.321,18.107,14.185,20.128,18.859,2.881,15.708,13.769,9.863,18.971,7.397,16.378,11.646,6.593,6.234,9.012,19.706,16.203,21.672,19.49,16.96,14.137,8.033,-0.182,5.712,10.423,5.447,6.22,1.758,8.978,11.947,2.102,8.225,11.81,9.575,2.366,11.068,12.604,7.143,3.376,15.027,9.555,-0.275,6.638,12.725,10.16,6.971,5.184,14.007,2.201,1.605,10.603,6.922,-0.546,12.64,16.209,11.025,-0.294,5.835,5.658,9.44,1.896,6.774,3.893,3.751,6.412,15.322,2.362,14.297,10.866,2.35,0.123,-0.49,-3.093,3.994,9.761,3.902,6.982,3.86,9.113,5.085,0.702,-3.369,2.87,7.15,0.812,-2.01,2.672],[21.722,23.701,17.954,32.156,26.12,14.684,25.694,27.202,23.818,15.431,17.565,17.686,22.136,17.471,22.243,19.44,21.379,17.147,12.792,11.357,9.52,18.249,13.392,3.692,14.481,19.918,18.739,6.602,15.651,17.177,5.256,0.873,7.443,7.501,8.866,12.659,8.177,13.273,1.632,6.662,9.419,9.45,1.973,5.893,12.012,13.107,-1.293,15.4,0.92,4.377,10.201,5.225,3.66,7.265,7.784,3.648,-2.101,2.932,-2.024,0.623,3.598,13.861,11.548,1.571,24.06,14.271,24.554,30.421,23.13,16.207,20.61,25.971,21.115,32.407,26.225,17.235,24.305,27.647,18.643,20.249,14.717,21.666,17.076,27.121,16.622,24.261,14.707,17.687,24.83,16.741,21.622,19.241,16.98,21.214,14.002,2.316,18.96,21.127,14.222,12.964,11.399,16.386,12.293,19.644,10.752,18.369,14.385,19.718,19.113,2.822,15.672,13.902,10.35,19.119,6.753,16.359,11.748,6.806,6.226,8.692,19.564,16.396,21.709,19.335,16.983,14.422,8.068,-0.473,5.792,10.38,5.221,6.143,2.027,8.893,11.728,1.474,8.097,11.798,9.308,1.973,11.255,12.581,6.725,3.417,14.789,9.789,-0.545,6.744,12.503,10.392,7.186,4.996,13.781,2.188,1.928,10.508,7.097,-0.709,12.716,15.99,10.531,-0.482,5.619,5.438,9.251,2.117,6.954,4.096,4.257,6.428,15.578,2.416,13.697,11.395,1.937,0.392,-0.363,-2.787,4.123,9.849,3.944,6.66,3.188,8.9,4.866,0.359,-3.687,2.63,7.153,0.374,-2.466,2.318],[21.789,23.842,17.883,32.38,26.32,14.86,25.946,27.152,23.844,15.441,17.361,17.603,22.006,17.607,22.148,19.458,21.354,17.162,12.675,11.496,9.516,18.495,13.306,3.551,14.546,19.996,18.578,6.54,15.434,16.972,5.41,0.622,7.31,7.351,8.847,12.859,8.251,13.154,1.413,6.781,9.254,9.6,1.955,5.935,12.16,13.083,-1.262,15.261,0.972,4.468,10.189,5.076,3.538,7.147,7.96,3.414,-2.344,2.958,-2.039,0.624,3.831,13.847,11.634,1.718,24.201,13.961,24.972,31.093,23.067,16.432,20.568,25.753,20.968,31.718,25.939,17.083,24.652,27.819,18.402,20.195,14.596,21.755,17.043,27.771,16.85,24.751,14.507,17.617,25.221,16.868,21.734,19.444,16.514,21.738,14.134,2.336,19.333,20.488,14.232,13.057,11.199,16.677,11.95,20.259,10.66,18.789,14.164,20.048,18.984,2.536,15.777,13.924,10.62,19.004,6.746,16.677,11.658,6.931,6.237,9.0,19.744,16.4,21.758,19.146,16.508,14.571,8.226,-0.238,5.615,10.397,5.773,6.459,2.005,9.105,11.577,1.187,8.479,11.776,9.411,1.161,11.419,12.356,6.837,3.256,14.56,9.089,-0.302,6.516,12.96,10.315,7.031,4.951,13.613,1.882,2.418,10.402,7.157,-0.354,12.661,15.702,10.069,-0.66,5.731,5.44,9.308,1.963,6.617,4.123,4.219,6.424,15.738,2.456,13.732,12.329,1.875,0.814,-0.462,-2.689,4.06,9.857,3.598,6.749,3.126,9.364,4.468,0.176,-3.704,2.249,7.398,0.574,-2.372,1.917],[21.832,23.885,17.99,32.492,26.492,15.027,26.122,27.266,23.938,15.356,17.273,17.721,21.886,17.692,22.121,19.57,21.285,17.169,12.538,11.328,9.523,18.701,13.299,3.422,14.471,20.038,18.363,6.489,15.368,17.022,5.625,0.507,7.238,7.272,8.963,12.938,8.14,12.779,1.245,6.928,9.123,9.544,1.881,6.137,12.232,13.122,-1.155,15.158,0.929,4.5,10.436,4.869,3.242,7.052,8.135,3.18,-2.564,2.889,-2.013,0.625,4.036,13.894,11.615,1.908,24.238,14.377,24.742,31.341,23.056,16.528,20.236,26.11,21.053,31.737,26.331,16.906,24.284,28.04,18.3,20.58,14.467,21.388,17.093,27.822,16.702,25.017,14.454,17.723,25.48,16.706,21.543,18.565,16.982,21.26,13.682,2.508,19.535,21.026,14.157,12.875,11.309,16.697,12.147,19.772,11.019,19.337,14.077,20.607,18.95,2.223,15.809,13.947,10.339,18.857,6.723,16.91,11.621,7.046,5.842,9.343,19.653,15.987,21.775,19.24,16.175,14.528,7.914,-0.052,5.255,10.512,6.074,6.395,1.549,9.086,11.409,1.258,8.428,11.96,9.367,1.125,11.346,12.553,7.428,2.99,14.508,9.551,-0.127,6.455,12.933,10.32,7.148,5.048,13.452,1.292,2.543,10.803,6.958,-0.124,12.669,15.766,10.129,-0.918,5.812,5.651,9.201,1.788,6.262,4.117,4.003,6.462,15.607,2.408,14.27,12.264,1.974,0.696,-0.325,-2.994,3.925,9.909,3.83,6.542,3.664,9.273,4.214,0.407,-3.754,2.21,7.671,0.975,-1.855,1.868],[21.883,23.911,17.956,32.493,26.711,15.044,26.135,27.635,24.0,15.321,17.25,17.822,21.784,17.741,22.027,19.744,21.2,17.113,12.387,10.883,9.625,18.826,13.362,3.277,14.401,20.093,18.275,6.326,15.553,17.23,5.85,0.454,7.222,7.26,9.068,12.907,7.966,12.537,1.195,7.039,9.124,9.41,1.706,6.514,12.448,13.163,-1.033,15.212,0.887,4.521,10.525,4.584,3.138,6.987,8.185,2.991,-2.334,2.72,-2.021,0.614,4.143,14.026,11.513,1.919,24.187,14.435,24.813,31.256,23.038,16.441,20.062,26.194,20.914,31.71,26.222,16.628,23.685,28.075,18.193,20.617,15.423,21.33,17.13,27.646,16.376,24.858,14.471,18.321,25.499,16.686,21.564,17.662,17.263,20.712,13.901,2.77,19.513,21.356,14.326,13.18,11.373,16.681,12.535,19.383,11.125,19.668,14.019,20.943,18.924,2.585,15.836,13.422,9.508,19.082,6.702,17.268,11.669,6.818,5.885,8.924,19.351,16.081,21.656,19.192,16.642,14.594,7.88,-0.893,5.555,10.333,6.251,6.052,1.699,8.795,11.211,1.204,8.223,12.123,9.823,1.853,10.916,12.485,8.17,2.797,14.13,10.178,-0.29,6.319,12.79,10.085,6.974,5.348,13.563,1.249,2.048,10.769,6.68,-0.622,13.006,15.569,10.418,-0.651,5.419,5.564,9.564,1.39,6.327,4.231,3.857,6.921,15.516,2.099,14.064,11.573,2.033,0.428,-0.307,-2.832,3.534,9.653,4.201,6.357,3.411,9.331,4.525,0.797,-3.832,2.599,7.609,1.225,-2.138,1.519],[21.754,23.819,17.9,32.447,26.849,14.936,26.019,27.86,23.991,15.413,17.298,17.91,21.64,17.872,21.771,19.858,21.21,17.18,12.484,10.4,9.76,18.983,13.455,3.259,14.375,20.158,18.23,6.09,15.669,17.327,5.902,0.478,7.247,7.255,9.151,12.883,7.958,12.383,1.038,6.999,9.263,9.468,1.517,6.905,12.61,13.195,-0.967,15.287,1.004,4.512,10.513,4.421,3.05,6.778,8.236,2.878,-2.002,2.63,-2.07,0.438,4.329,14.108,11.389,1.697,24.885,14.068,24.868,31.099,23.233,16.573,20.091,26.53,20.669,31.829,26.292,16.584,23.428,28.352,17.966,20.409,15.82,21.737,17.229,27.523,16.671,25.056,13.939,18.277,25.707,17.135,21.731,17.242,16.838,20.883,13.675,2.642,19.249,20.916,14.352,13.273,11.502,16.569,11.817,19.82,10.616,19.756,13.989,20.94,18.857,2.209,15.733,13.174,9.305,18.993,6.834,17.342,11.918,7.131,5.655,8.824,19.104,16.509,21.642,19.337,17.324,14.639,7.466,-0.773,5.726,10.053,6.81,5.75,1.5,8.575,10.662,1.23,7.643,11.938,10.542,2.399,11.106,12.648,8.713,2.767,13.658,9.412,-0.319,6.492,13.386,9.709,6.957,5.619,14.174,1.82,2.038,11.179,6.924,-0.859,13.357,15.704,10.741,0.058,5.274,5.163,9.578,1.182,6.197,4.129,3.901,6.998,15.522,2.199,13.476,11.234,1.493,0.231,-0.451,-2.634,3.007,9.898,4.395,6.659,3.199,9.328,4.131,0.72,-3.566,2.962,7.427,1.177,-1.799,1.249],[21.469,23.794,18.145,32.48,26.813,14.639,26.038,27.879,23.953,15.58,17.321,17.88,21.661,17.896,21.573,19.883,21.409,17.304,12.56,10.117,9.858,19.013,13.616,3.271,14.391,20.176,18.144,5.922,15.664,17.368,6.015,0.492,7.009,7.217,9.305,12.892,8.14,12.097,0.836,6.904,9.398,9.531,1.418,7.229,12.786,13.315,-0.908,15.401,1.247,4.391,10.517,4.318,2.813,6.68,8.224,2.707,-1.794,2.697,-2.187,0.325,4.481,14.18,11.371,1.378,25.193,14.409,24.799,30.934,23.125,16.942,19.984,26.602,20.538,32.193,26.175,16.822,23.256,28.589,18.082,20.433,15.633,21.189,16.991,28.173,16.906,25.264,14.104,18.04,25.292,17.11,21.259,16.993,16.966,21.633,13.48,2.355,18.937,20.88,14.289,12.827,11.678,16.381,12.144,19.902,9.727,20.065,13.817,20.761,18.9,1.923,15.724,13.842,9.241,19.187,6.442,17.299,11.793,7.413,5.575,9.226,19.43,16.402,21.772,18.896,17.022,14.504,7.843,-0.297,5.075,10.057,6.943,5.773,1.584,8.618,10.567,1.158,7.35,11.87,10.6,2.414,11.429,12.624,9.141,2.539,13.628,9.405,-0.254,6.657,13.25,10.215,6.712,6.354,13.91,1.687,2.367,11.842,6.649,-0.329,13.678,16.083,10.787,-0.453,5.215,5.391,9.303,1.096,6.149,4.116,4.37,6.977,15.435,2.118,13.173,11.708,1.011,0.254,-0.525,-2.979,2.884,9.692,4.307,6.479,3.415,9.335,3.731,-0.074,-2.908,3.472,7.851,0.303,-0.9,1.288],[21.227,23.779,18.559,32.585,26.873,14.427,26.032,27.82,24.004,15.741,17.264,17.705,21.667,17.91,21.446,19.856,21.525,17.445,12.637,10.071,9.947,18.902,13.613,3.205,14.423,20.052,18.117,5.769,15.354,17.436,6.187,0.383,6.686,7.061,9.436,12.962,8.318,11.929,0.707,6.828,9.576,9.591,1.389,7.416,13.027,13.486,-1.0,15.491,1.469,4.3,10.465,4.333,2.606,6.746,8.249,2.555,-1.507,2.734,-2.358,0.3,4.716,14.275,11.492,1.051,25.327,14.933,25.182,30.989,22.518,16.516,19.981,26.328,20.49,32.3,25.716,16.682,23.498,28.687,18.642,20.319,14.933,21.424,17.741,28.352,16.884,25.347,14.135,18.045,25.132,17.192,21.491,17.114,17.181,21.108,13.897,2.099,19.338,21.517,14.659,13.126,11.677,17.042,12.482,19.906,9.452,20.07,14.348,20.861,18.963,2.484,16.025,13.845,8.715,19.288,6.083,17.335,11.844,7.324,5.664,9.223,19.079,16.41,21.771,18.601,16.599,14.452,7.557,-0.433,4.963,10.316,6.78,5.845,1.955,8.719,10.882,0.595,7.749,11.674,10.744,2.171,11.161,12.499,9.197,2.47,13.435,10.001,0.032,6.889,13.488,10.753,6.289,6.939,13.715,1.242,2.417,11.742,6.612,0.033,13.285,16.2,10.876,-0.664,5.038,5.318,8.937,0.78,6.155,4.32,4.539,7.093,15.572,2.016,13.246,11.947,0.703,-0.111,-0.697,-3.366,2.998,9.587,3.609,6.155,3.104,9.393,3.511,-0.172,-2.725,3.05,7.785,-0.131,-1.346,1.487],[21.032,23.836,18.827,32.616,27.0,14.362,25.783,27.81,24.046,16.085,17.195,17.496,21.631,17.87,21.376,19.87,21.565,17.618,12.847,10.067,10.02,18.714,13.593,3.083,14.486,19.755,18.048,5.59,15.165,17.582,6.207,0.351,6.603,6.787,9.597,12.955,8.397,11.995,0.636,6.801,9.819,9.587,1.337,7.49,13.068,13.662,-1.17,15.621,1.505,4.204,10.373,4.381,2.461,6.707,8.358,2.384,-1.248,2.78,-2.649,0.356,4.901,14.386,11.67,0.78,24.742,15.045,24.84,31.154,22.464,16.416,20.008,26.257,20.234,32.45,25.894,16.555,24.042,28.637,18.571,19.813,14.669,21.422,18.376,28.426,17.277,25.453,13.491,17.923,25.384,17.576,21.614,17.337,17.123,20.43,13.709,2.552,19.437,21.357,14.602,13.198,11.48,17.144,12.59,19.846,9.844,20.057,14.639,20.908,18.939,2.829,16.439,13.339,9.026,19.49,6.205,17.141,12.029,7.579,5.249,8.99,19.151,15.728,21.597,18.808,16.795,14.642,6.641,-0.555,4.679,10.796,7.073,5.956,1.661,8.544,10.62,0.383,8.295,12.179,10.601,1.323,10.925,12.693,9.396,2.555,13.603,10.134,0.39,6.775,13.5,10.589,5.953,7.034,13.811,1.337,2.988,11.746,6.948,-0.574,13.203,16.027,11.135,-0.339,5.271,4.749,9.153,0.56,6.193,4.534,4.74,7.069,15.208,2.105,13.543,12.078,0.858,-0.459,-0.849,-3.224,3.293,9.896,3.183,6.301,2.735,9.287,3.951,0.728,-2.639,3.248,7.551,-0.048,-1.662,1.789],[20.856,23.938,18.864,32.583,27.132,14.287,25.477,27.995,24.053,16.39,17.104,17.333,21.6,17.705,21.269,19.927,21.471,17.457,12.941,10.173,10.091,18.495,13.712,3.183,14.415,19.524,18.111,5.418,15.088,17.89,6.264,0.386,6.463,6.528,9.833,13.07,8.214,12.24,0.606,6.774,9.931,9.468,1.298,7.616,12.915,13.762,-1.203,15.865,1.347,3.984,10.379,4.521,2.396,6.684,8.553,2.297,-1.13,2.847,-2.882,0.575,5.086,14.328,11.894,0.712,24.498,14.918,24.111,30.809,22.914,16.516,20.15,26.367,20.26,32.43,25.555,16.786,23.501,28.522,17.75,19.748,14.625,21.277,17.959,28.565,17.569,25.623,14.142,17.603,25.248,17.775,21.029,17.204,17.205,20.749,13.507,2.951,19.523,21.069,14.6,13.001,11.658,16.939,12.649,19.919,10.277,19.633,14.116,21.222,18.49,2.299,16.346,13.823,9.134,19.393,5.741,16.848,11.926,7.484,4.89,8.878,19.156,15.851,21.189,18.109,17.172,14.76,6.692,-0.612,5.032,11.07,7.351,5.644,1.503,8.232,10.616,0.668,8.532,12.112,10.185,0.664,10.997,12.882,9.441,2.223,13.887,9.97,0.177,6.737,13.522,10.877,5.966,6.762,14.145,1.25,3.052,11.936,7.138,-0.849,13.787,16.035,11.036,-0.409,5.053,4.96,9.377,0.596,6.161,4.497,4.702,7.046,15.325,2.017,13.666,12.318,0.992,-0.538,-1.127,-2.888,3.449,10.418,3.954,6.33,2.652,9.114,4.598,1.113,-2.304,3.331,7.822,-0.086,-1.155,2.145],[20.784,23.938,18.692,32.398,27.326,14.361,25.224,28.137,23.911,16.404,16.958,17.296,21.546,17.584,21.129,20.157,21.432,17.114,12.954,10.368,10.076,18.209,13.812,3.425,14.352,19.232,18.058,5.174,15.089,18.128,6.369,0.605,6.445,6.29,10.049,13.119,8.071,12.494,0.476,6.782,9.862,9.349,1.28,7.66,12.804,13.927,-1.414,16.084,1.169,3.877,10.38,4.757,2.432,6.665,8.825,2.355,-1.005,2.984,-2.905,0.701,5.131,14.097,12.141,0.74,24.798,14.984,24.708,30.583,23.762,15.99,20.09,26.983,20.202,32.788,24.82,17.16,23.773,29.107,17.57,19.992,15.008,21.174,17.426,28.646,17.419,25.671,14.026,17.401,25.068,17.624,20.938,16.717,17.029,21.194,14.08,3.008,19.606,20.681,14.983,12.714,11.782,16.718,12.084,19.946,10.238,19.258,13.398,21.517,18.049,2.099,16.604,13.958,9.117,19.017,5.711,16.549,12.034,7.379,4.948,9.07,19.026,16.357,20.94,18.563,17.515,14.752,6.957,-0.421,4.858,11.563,7.501,5.082,1.755,7.891,11.194,0.763,8.39,11.681,9.687,0.856,11.08,12.426,9.49,2.223,14.151,9.699,-0.511,6.688,14.055,11.085,6.437,6.026,14.815,0.735,2.407,11.817,7.256,-0.596,13.636,16.687,11.23,-0.809,5.14,4.748,9.161,0.585,6.568,4.452,4.956,7.704,15.581,2.111,13.632,12.706,0.87,-0.175,-1.251,-3.237,3.236,10.717,3.791,6.1,2.731,9.157,4.732,1.011,-2.217,3.585,8.328,-0.271,-0.775,1.826],[20.775,23.918,18.337,32.191,27.477,14.517,24.998,28.154,23.956,16.282,17.022,17.247,21.535,17.548,21.002,20.463,21.447,17.008,12.864,10.536,10.052,17.908,13.937,3.705,14.244,18.929,18.022,4.963,15.152,18.338,6.489,0.904,6.47,6.097,10.201,12.958,8.215,12.607,0.438,6.894,9.716,9.304,1.314,7.511,12.681,14.198,-1.778,16.293,0.92,3.799,10.216,5.109,2.411,6.675,9.183,2.454,-0.827,3.097,-2.908,0.678,5.232,13.813,12.41,0.735,25.68,15.264,25.114,30.35,23.925,16.23,19.763,26.798,19.697,32.553,25.232,16.931,23.5,28.827,18.096,19.531,15.62,21.32,17.435,28.611,17.044,25.864,13.568,17.844,24.626,17.94,21.551,16.881,16.87,21.172,14.3,2.818,19.402,20.526,14.862,12.548,11.726,16.264,12.727,20.403,10.132,18.89,13.411,21.155,18.044,2.702,16.989,13.732,8.829,18.874,5.514,16.221,12.175,7.529,5.318,9.352,19.198,16.127,20.766,18.522,17.846,14.475,7.158,-0.337,4.764,11.98,7.59,4.915,1.938,7.62,11.185,0.058,8.522,11.565,9.45,1.116,10.896,12.738,9.115,2.42,14.236,9.662,-0.641,6.994,14.042,10.462,6.526,5.204,14.557,0.974,1.933,11.741,7.482,-0.989,13.333,16.657,11.08,-0.884,5.338,4.679,9.01,0.984,6.79,4.601,5.075,7.709,15.249,2.372,13.697,12.725,0.94,0.072,-1.131,-3.564,3.331,10.706,3.615,6.037,3.08,9.06,4.468,0.973,-2.35,3.561,8.478,-0.336,-0.828,1.627],[20.609,23.867,17.923,32.011,27.606,14.626,24.957,27.998,24.091,16.239,17.305,17.216,21.61,17.714,20.958,20.655,21.527,16.921,12.901,10.44,10.119,17.543,14.024,3.943,14.031,18.829,17.962,4.965,15.196,18.726,6.624,1.094,6.392,5.944,10.281,12.756,8.626,12.635,0.263,6.882,9.475,9.285,1.432,7.219,12.585,14.419,-1.945,16.381,0.65,3.852,9.973,5.452,2.518,6.754,9.355,2.592,-0.716,3.226,-3.058,0.646,5.245,13.582,12.574,0.765,25.546,14.991,25.114,30.416,23.784,16.314,19.929,26.427,19.29,31.926,25.573,16.55,23.527,28.571,17.919,19.672,15.534,21.189,17.431,28.628,16.547,25.974,14.193,17.56,24.333,17.915,21.346,17.463,17.063,20.846,13.502,2.492,19.354,20.424,14.611,12.47,11.881,16.286,12.909,20.608,10.187,18.636,13.564,21.464,18.319,3.183,17.316,13.378,9.222,18.865,5.083,15.73,12.198,7.734,5.427,9.31,19.141,15.654,20.522,17.753,17.853,14.199,7.58,-0.024,5.092,12.018,7.439,4.864,1.603,7.595,10.939,0.35,8.786,11.699,9.683,1.4,10.741,12.577,8.835,2.014,14.176,9.91,-0.666,6.949,14.028,10.42,7.195,5.052,14.826,1.162,2.2,11.654,7.343,-1.335,13.68,16.178,10.534,-0.767,5.229,4.707,8.875,0.687,7.154,4.558,5.528,7.819,14.891,2.365,13.549,13.08,0.918,-0.05,-1.201,-3.383,3.787,11.064,3.477,6.178,3.364,8.817,4.627,0.635,-2.312,3.848,8.787,-0.393,-0.637,1.874],[20.341,23.743,17.751,32.013,27.585,14.84,25.042,27.787,24.258,16.123,17.485,17.121,21.677,17.901,20.946,20.707,21.628,16.639,12.951,10.217,10.246,17.193,13.967,3.954,13.785,18.826,17.748,5.078,14.956,19.099,6.645,1.18,6.407,5.888,10.383,12.637,8.932,12.662,0.095,6.854,9.447,9.32,1.632,6.959,12.52,14.555,-1.833,16.45,0.649,3.887,9.798,5.64,2.629,6.771,9.262,2.719,-0.597,3.321,-3.256,0.555,5.328,13.377,12.747,0.817,25.523,14.836,25.125,30.513,23.233,16.238,20.554,26.511,19.031,31.876,25.372,16.835,23.641,28.866,17.832,19.766,14.938,21.102,16.477,28.614,16.463,26.081,14.289,17.243,24.808,17.682,20.86,18.147,17.461,20.601,13.047,2.872,19.623,20.499,14.818,12.247,11.749,16.363,12.593,20.665,10.347,18.173,14.339,22.215,18.555,3.284,17.613,13.068,9.58,18.506,5.685,15.437,12.23,7.706,5.276,9.296,18.756,15.758,20.564,18.092,18.291,14.011,7.189,0.179,4.643,11.479,7.67,4.916,2.203,7.546,11.267,0.306,8.861,11.546,9.739,1.206,11.094,12.461,8.762,1.529,14.303,9.81,-0.595,7.178,14.193,10.78,7.271,4.966,15.021,1.008,1.971,11.588,6.861,-1.335,14.462,16.465,10.654,-1.048,5.112,4.615,8.78,0.877,7.236,4.995,5.983,7.926,15.007,2.192,13.212,13.618,1.239,-0.194,-1.445,-3.809,3.905,11.345,3.483,6.171,3.455,8.433,5.296,0.285,-2.238,3.87,8.504,-0.373,-0.744,1.995],[20.198,23.765,17.688,32.211,27.457,15.038,25.114,27.765,24.358,16.011,17.558,16.978,21.756,17.895,20.891,20.644,21.734,16.493,12.869,10.048,10.31,16.95,13.846,3.974,13.474,18.958,17.628,5.184,14.642,19.34,6.599,1.3,6.313,5.975,10.517,12.557,8.952,12.895,0.015,6.706,9.88,9.301,1.824,6.773,12.379,14.738,-1.841,16.63,0.813,3.795,9.661,5.617,2.703,6.586,9.042,2.816,-0.552,3.443,-3.501,0.346,5.523,13.282,12.893,0.852,25.282,14.807,25.07,30.405,23.404,16.457,20.416,26.585,18.854,32.341,25.896,16.98,23.406,28.717,18.228,19.439,14.97,21.334,16.568,28.51,16.502,25.803,14.204,17.428,25.261,17.381,20.861,18.424,17.459,20.71,13.019,3.547,19.886,20.542,14.91,12.071,11.721,15.975,12.672,21.013,10.074,18.129,14.222,22.017,17.923,2.743,18.018,13.133,9.669,18.314,5.398,15.347,12.129,7.766,5.706,9.743,18.522,15.409,20.732,17.99,19.093,13.895,7.011,0.067,4.614,11.098,7.677,5.106,2.13,7.64,11.533,0.357,9.163,11.461,8.842,1.024,10.995,12.324,8.549,1.921,14.416,9.694,-0.948,7.653,14.791,10.732,6.67,5.264,14.937,1.213,1.622,11.799,6.55,-1.262,15.214,16.892,11.083,-0.585,5.296,5.15,8.553,1.136,7.17,4.922,5.767,7.817,15.054,1.963,13.218,13.557,1.514,-0.211,-1.758,-4.314,4.068,11.355,3.838,6.05,3.666,8.576,5.221,0.462,-2.216,3.696,8.15,0.011,-0.438,2.119],[20.117,23.862,17.699,32.483,27.365,15.211,25.295,27.872,24.42,15.91,17.616,16.867,21.755,17.722,20.847,20.524,21.936,16.546,12.671,10.004,10.32,16.893,13.753,4.088,13.232,18.954,17.62,5.253,14.358,19.644,6.575,1.314,6.217,6.138,10.395,12.604,8.907,13.292,0.163,6.518,10.355,9.067,1.906,6.605,12.108,15.135,-1.878,16.913,0.849,3.703,9.566,5.524,2.793,6.44,8.966,2.88,-0.562,3.505,-3.771,0.226,5.608,13.248,12.888,0.893,25.608,14.492,25.367,30.647,23.952,16.324,20.062,26.634,19.236,32.455,25.373,16.823,23.172,28.689,18.375,19.211,15.303,21.375,17.21,28.481,16.336,25.596,14.304,17.465,25.2,17.468,21.465,17.894,17.051,20.821,12.814,4.008,19.731,20.622,14.83,11.918,12.199,15.679,13.157,21.252,9.389,18.076,13.798,21.389,17.895,2.714,17.85,12.917,9.73,18.33,5.418,15.118,12.048,7.906,5.405,9.864,18.761,14.687,20.766,18.279,19.526,13.946,7.317,0.224,4.64,11.299,7.196,4.82,2.371,7.798,11.721,0.013,9.557,10.996,8.619,1.636,10.638,12.333,8.444,1.99,14.8,9.626,-0.94,7.239,14.274,11.025,5.705,5.674,15.494,1.579,2.031,11.08,6.125,-1.55,15.734,16.739,11.479,-0.749,4.907,4.74,8.214,1.787,7.237,4.733,5.578,7.48,14.817,1.36,13.499,13.156,1.569,0.131,-1.881,-4.316,4.27,11.229,3.539,5.702,3.638,8.571,5.023,1.106,-2.208,3.822,8.186,0.037,-0.411,2.254],[20.019,23.96,17.769,32.496,27.296,15.329,25.354,27.966,24.609,15.77,17.665,16.76,21.751,17.48,20.867,20.27,22.188,16.513,12.461,10.025,10.444,16.903,13.723,4.303,13.182,18.822,17.704,5.182,14.129,19.919,6.495,1.388,6.254,6.129,10.137,12.625,8.876,13.621,0.286,6.27,10.576,8.748,1.961,6.463,11.816,15.494,-1.978,17.136,0.951,3.591,9.444,5.451,2.909,6.303,9.026,2.906,-0.596,3.509,-3.857,0.246,5.502,13.187,12.875,1.018,25.467,14.558,25.55,31.119,24.199,15.878,20.164,26.937,19.599,32.785,25.105,17.025,23.77,29.034,18.222,19.244,15.273,21.163,17.074,28.048,16.173,25.788,14.436,17.442,24.841,17.394,21.435,16.901,17.012,20.912,12.545,3.971,19.542,20.499,14.431,11.408,12.218,16.104,12.762,21.523,9.716,17.998,13.363,21.677,18.405,3.332,18.256,12.94,10.215,18.417,5.931,15.039,11.941,7.818,5.436,9.582,18.495,14.62,20.855,18.057,19.873,14.203,6.821,0.252,4.771,11.497,7.347,5.113,2.438,7.81,12.195,0.033,9.332,11.092,8.618,1.778,10.291,12.575,8.266,1.966,15.293,9.46,-0.266,7.121,14.654,11.512,5.687,5.925,15.914,1.609,2.233,10.435,6.403,-1.699,15.986,16.725,11.95,-0.939,4.807,4.113,8.401,1.895,7.238,4.936,5.801,7.54,14.705,0.841,13.377,13.297,1.481,0.189,-2.075,-4.335,4.256,11.221,2.662,5.902,3.819,8.197,4.963,1.798,-2.352,3.802,8.42,-0.264,-0.891,1.907],[19.922,24.014,17.732,32.539,27.204,15.435,25.262,28.073,24.83,15.666,17.77,16.759,21.767,17.202,20.915,20.024,22.309,16.434,12.273,10.11,10.533,16.966,13.762,4.575,13.25,18.77,17.706,5.113,13.947,20.207,6.424,1.438,6.258,6.157,9.852,12.629,8.833,13.854,0.318,6.129,10.643,8.516,1.926,6.47,11.685,15.805,-2.028,17.285,1.112,3.356,9.365,5.415,2.989,6.268,9.07,2.82,-0.737,3.402,-3.84,0.439,5.398,13.086,12.861,1.108,25.888,14.552,25.708,30.862,24.406,15.514,20.491,26.876,19.923,32.307,25.485,17.248,24.051,29.022,18.025,19.419,14.883,21.117,16.79,28.037,16.276,25.567,14.291,16.891,24.745,17.13,20.94,16.433,17.636,20.928,12.295,3.889,19.566,20.833,14.392,11.671,12.323,16.386,11.982,21.816,9.731,17.74,13.796,21.493,17.774,3.753,18.768,13.089,11.032,18.234,5.061,15.239,12.068,7.633,5.751,9.6,18.466,14.947,20.563,17.671,19.817,14.351,6.499,0.26,4.641,11.411,7.328,5.208,1.998,7.805,12.34,0.723,8.986,11.303,9.073,1.444,9.985,12.475,8.164,2.052,15.494,9.283,-0.263,7.406,15.403,10.917,6.245,5.728,15.415,1.835,2.218,11.005,6.414,-1.22,15.502,17.095,11.817,-0.998,4.652,4.434,8.509,1.966,7.179,4.824,6.053,7.687,14.757,0.936,12.701,13.843,1.389,0.305,-1.928,-4.187,4.33,11.65,2.934,6.23,3.871,8.055,5.185,1.727,-2.324,3.785,8.236,-0.321,-0.893,1.791],[19.846,24.223,17.608,32.55,27.119,15.452,25.07,28.162,25.003,15.569,18.004,16.741,21.723,17.113,20.953,19.786,22.423,16.392,11.995,10.258,10.58,16.919,13.852,4.862,13.352,18.591,17.642,5.124,13.82,20.553,6.362,1.337,6.144,6.194,9.687,12.517,8.816,13.822,0.329,6.138,10.398,8.433,1.814,6.491,11.8,16.13,-1.879,17.273,1.228,3.265,9.393,5.484,3.121,6.367,9.037,2.661,-0.878,3.211,-3.627,0.627,5.454,12.9,12.937,1.152,25.944,14.268,25.74,30.783,24.532,15.325,20.29,27.297,20.1,32.179,25.532,16.957,23.706,28.331,18.202,19.318,15.266,21.422,16.88,28.229,16.439,25.362,14.432,17.035,25.085,16.998,20.916,17.545,17.069,20.75,12.067,4.189,19.827,21.073,14.75,12.052,12.081,15.801,12.079,21.714,9.827,17.87,15.006,20.938,17.647,3.558,19.199,12.801,11.721,18.304,5.82,15.083,11.976,7.814,5.254,10.079,18.519,14.99,20.426,18.601,19.532,14.268,6.547,0.226,4.373,11.275,6.972,4.775,2.102,7.82,12.454,0.206,8.319,11.728,9.062,1.33,9.813,12.538,8.227,2.313,15.408,9.237,-0.63,7.482,15.145,11.262,6.314,5.682,15.57,1.943,2.063,11.173,6.412,-1.307,15.117,17.638,11.184,-1.002,4.951,4.641,8.295,1.505,7.069,4.424,6.157,7.798,14.387,1.383,12.298,13.911,1.48,0.417,-1.849,-4.381,4.36,11.519,3.087,5.517,3.48,8.258,5.226,1.541,-2.619,3.667,8.151,-0.115,-0.741,1.748],[19.779,24.406,17.595,32.674,26.989,15.448,24.805,28.207,25.171,15.47,18.18,16.954,21.574,17.164,20.998,19.631,22.501,16.375,11.751,10.429,10.577,16.736,13.995,4.991,13.298,18.642,17.789,5.191,13.974,20.852,6.304,1.206,5.996,6.256,9.501,12.371,8.85,13.641,0.24,6.308,10.043,8.416,1.74,6.48,12.111,16.154,-1.759,17.295,1.279,3.29,9.556,5.489,3.089,6.401,9.044,2.593,-1.04,3.005,-3.478,0.626,5.524,12.593,13.014,1.226,25.704,13.995,25.501,30.983,24.626,15.769,20.036,27.22,19.916,32.878,25.574,17.65,23.884,28.215,18.43,18.895,15.53,21.834,16.752,28.305,16.003,25.387,14.721,16.927,25.205,16.765,21.284,18.466,16.324,20.348,11.478,4.295,19.427,21.431,14.331,11.657,12.273,15.599,12.233,21.408,10.318,17.928,15.089,20.575,17.872,3.716,19.393,12.915,11.698,18.219,5.797,14.928,12.165,7.944,5.421,10.003,18.451,14.938,20.375,18.173,19.765,13.944,6.9,-0.174,4.386,11.178,6.739,4.834,1.837,7.807,12.353,-0.406,8.292,11.27,8.928,1.177,10.016,12.447,8.366,2.172,15.264,9.076,-0.538,7.361,15.425,11.229,5.695,5.639,15.745,1.39,1.929,10.713,6.247,-1.042,16.053,17.673,11.093,-0.746,5.154,4.524,8.353,1.468,7.026,4.391,6.173,7.54,14.169,1.744,12.4,14.031,1.458,0.401,-1.571,-3.839,4.332,11.46,3.061,5.687,3.357,8.407,5.412,1.569,-2.839,4.155,8.363,-0.127,-0.522,1.487],[19.669,24.496,17.564,32.976,26.893,15.545,24.703,28.207,25.215,15.241,18.329,17.176,21.496,17.228,21.056,19.466,22.415,16.414,11.59,10.659,10.647,16.671,14.098,4.936,13.13,18.818,17.818,5.27,14.264,20.844,6.245,1.088,5.951,6.234,9.381,12.213,8.96,13.563,0.08,6.521,9.807,8.376,1.625,6.437,12.223,16.157,-1.684,17.411,1.322,3.308,9.712,5.398,2.93,6.491,9.123,2.708,-1.153,3.023,-3.332,0.412,5.581,12.308,13.107,1.272,26.176,14.173,25.932,31.54,24.648,15.851,19.941,26.926,19.339,32.94,25.702,17.86,24.31,28.857,18.667,19.041,15.149,21.944,17.127,27.689,15.784,25.201,14.391,17.173,24.904,16.808,20.973,18.488,16.728,20.255,11.055,4.195,18.803,21.267,14.485,11.644,12.419,15.637,11.909,21.819,10.39,17.566,14.604,20.79,18.098,4.105,19.524,13.032,11.432,18.227,5.563,14.81,12.281,7.715,5.57,9.665,18.984,15.138,20.646,17.358,20.204,13.866,6.702,-0.167,4.289,10.893,6.866,5.438,1.853,7.875,11.73,0.285,8.597,10.928,8.425,1.163,9.983,12.708,8.153,1.865,15.082,9.1,-0.456,7.258,15.151,10.811,6.012,5.249,15.627,1.099,2.17,11.25,6.086,-1.115,16.766,17.195,10.698,-1.085,5.195,4.057,8.717,1.355,6.673,4.634,6.261,7.724,14.035,1.35,12.571,13.706,1.148,0.485,-1.386,-3.833,4.232,11.654,3.192,6.009,3.677,8.47,5.517,1.597,-3.037,4.064,8.369,0.02,-0.299,1.539],[19.613,24.65,17.569,33.182,26.786,15.514,24.902,28.234,25.181,15.019,18.447,17.344,21.489,17.349,21.109,19.317,22.209,16.486,11.439,10.802,10.729,16.775,14.205,4.878,13.101,18.998,17.635,5.253,14.642,20.684,6.26,1.042,5.898,6.36,9.296,12.131,8.925,13.536,0.11,6.7,9.573,8.276,1.522,6.442,12.064,16.195,-1.802,17.428,1.375,3.358,9.769,5.276,2.76,6.599,9.4,2.71,-1.161,3.26,-3.264,0.213,5.602,12.256,13.129,1.296,26.323,13.928,26.11,31.867,24.272,15.593,20.183,27.619,18.803,33.272,24.919,17.484,24.057,28.982,18.54,19.418,15.478,21.842,17.718,27.621,16.085,25.006,14.461,17.682,24.723,16.803,20.591,17.778,17.371,20.275,11.199,4.042,18.374,20.526,14.887,11.816,12.506,16.0,11.772,21.809,10.377,17.694,14.038,20.883,18.401,3.629,19.162,12.852,11.674,18.393,5.36,15.077,12.373,7.085,5.58,9.976,18.578,15.235,20.923,17.68,19.896,13.789,6.27,0.146,4.469,10.576,7.084,5.324,1.965,8.097,11.758,0.693,8.882,11.029,7.883,1.392,9.647,12.963,8.198,1.81,14.649,8.864,-0.228,7.245,15.559,10.579,6.559,4.979,15.84,0.924,2.418,11.317,6.599,-1.341,15.828,17.21,10.628,-1.032,4.874,4.206,8.679,1.371,6.894,4.608,6.197,8.279,13.884,1.029,12.584,14.016,1.128,0.267,-1.535,-4.205,4.147,11.645,2.76,6.198,3.909,8.553,4.576,0.529,-2.94,3.729,8.244,0.331,-0.941,1.792],[19.565,24.776,17.762,33.271,26.693,15.403,25.073,28.404,25.165,14.909,18.499,17.348,21.483,17.475,21.142,19.213,21.884,16.632,11.48,10.806,10.808,16.942,14.478,4.6,13.136,18.974,17.347,5.152,14.883,20.61,6.194,1.142,5.783,6.622,9.213,12.117,8.769,13.538,0.242,6.783,9.414,8.146,1.563,6.479,11.9,16.153,-1.944,17.286,1.367,3.407,9.669,5.172,2.628,6.696,9.741,2.637,-1.164,3.481,-3.421,0.132,5.534,12.369,13.127,1.2,26.301,13.512,25.955,31.581,23.817,15.828,20.143,27.154,19.412,33.516,25.357,17.549,23.442,28.992,18.406,18.984,15.718,21.488,17.285,27.575,16.089,25.061,14.329,17.696,25.167,16.4,20.873,17.922,17.887,20.421,11.577,4.109,18.447,20.149,14.502,11.96,12.479,16.288,11.842,21.477,10.609,18.11,14.183,20.746,18.51,3.34,19.208,13.207,12.018,18.554,5.789,15.193,12.758,7.324,5.404,10.032,18.241,15.804,20.964,18.087,19.648,13.952,6.154,0.01,4.456,10.137,7.137,5.166,1.652,7.921,11.793,0.25,8.644,11.239,7.557,1.1,9.702,12.044,8.083,2.064,14.873,8.539,-0.398,7.256,15.5,10.252,7.222,5.161,15.492,1.091,2.636,10.936,7.046,-1.391,16.191,17.484,10.682,-0.911,5.327,4.472,8.605,1.256,6.894,4.757,5.924,8.185,13.851,1.447,12.548,14.252,1.177,0.128,-1.757,-3.362,4.077,11.858,2.979,6.08,3.554,8.676,4.769,0.061,-2.823,3.898,8.957,0.471,-1.767,1.797],[19.578,24.695,17.926,33.332,26.674,15.302,25.296,28.444,25.097,14.848,18.575,17.279,21.376,17.653,21.232,19.149,21.476,16.811,11.75,10.762,10.797,17.098,14.722,4.322,13.267,18.761,17.09,5.119,15.08,20.675,6.084,1.187,5.682,6.907,9.025,12.23,8.707,13.55,0.242,6.95,9.378,8.128,1.697,6.405,11.768,16.1,-1.91,17.073,1.434,3.461,9.508,5.217,2.519,6.926,9.878,2.692,-1.336,3.57,-3.43,0.254,5.478,12.528,13.158,1.008,26.004,13.139,25.769,31.612,23.66,15.914,19.758,27.037,20.001,33.094,25.506,17.749,23.72,28.574,18.475,18.754,15.49,20.766,16.555,27.46,16.997,25.067,14.103,17.223,25.241,15.831,21.058,18.359,17.384,20.531,11.912,4.229,18.648,20.279,14.8,11.98,12.437,15.983,11.972,20.957,10.998,18.106,14.846,20.505,18.437,3.4,19.659,13.271,12.245,18.649,6.039,15.299,12.815,7.202,5.328,9.672,17.745,15.899,20.726,17.684,19.546,13.974,6.18,-0.184,3.917,10.003,6.822,5.549,1.956,8.064,12.023,-0.025,8.28,11.096,7.332,0.625,9.86,11.689,8.136,2.057,15.02,8.578,-0.356,7.113,15.181,10.462,7.447,5.259,15.51,1.348,2.154,11.025,6.599,-1.227,16.568,17.289,10.378,-0.922,5.655,4.199,8.443,1.053,6.549,4.758,5.631,8.178,14.17,1.546,12.155,14.488,0.968,0.48,-1.766,-3.407,4.004,11.734,3.051,5.955,3.276,8.391,5.174,1.048,-2.432,4.21,9.619,0.225,-2.051,2.369],[19.679,24.427,18.104,33.403,26.713,15.315,25.46,28.255,24.93,14.701,18.66,17.199,21.218,17.582,21.329,19.153,21.134,16.804,12.035,10.804,10.594,17.176,14.748,4.456,13.419,18.672,16.939,5.188,15.303,20.697,5.861,1.082,5.56,7.156,8.743,12.329,8.74,13.579,0.113,7.128,9.335,8.36,1.851,6.241,11.764,16.156,-1.759,16.916,1.449,3.562,9.322,5.374,2.464,7.198,9.833,2.834,-1.527,3.632,-3.418,0.445,5.417,12.476,13.135,0.866,25.905,13.097,25.563,31.927,23.379,16.599,19.619,27.202,20.453,32.845,25.295,17.485,24.608,28.873,18.683,19.085,15.262,20.47,16.691,27.864,17.553,25.06,14.067,16.744,25.196,15.891,20.792,18.541,17.074,20.553,11.668,4.253,18.496,20.021,15.406,12.007,12.357,16.094,12.464,20.798,10.961,17.999,15.097,20.379,17.563,2.991,19.663,12.941,12.36,18.694,5.483,15.479,12.904,7.125,5.353,10.038,18.342,15.972,20.327,16.96,19.411,13.984,6.007,0.172,4.214,10.108,6.303,6.113,1.925,8.788,12.029,-0.191,8.337,11.157,7.283,0.907,9.864,12.078,8.03,1.864,15.045,8.883,-0.336,7.308,15.816,10.273,6.992,5.735,15.338,1.225,2.421,11.346,6.159,-1.126,16.185,16.832,10.556,-0.515,5.804,4.468,7.954,0.654,6.15,4.784,5.801,8.421,14.306,1.495,12.158,14.264,1.077,0.507,-1.591,-4.255,3.294,11.75,2.878,6.315,3.191,8.37,5.025,1.662,-2.534,4.03,9.208,-0.532,-2.328,2.633],[19.904,24.255,18.3,33.478,26.791,15.438,25.452,28.068,24.706,14.65,18.689,17.146,21.091,17.507,21.346,19.154,20.872,16.777,12.143,10.98,10.375,17.088,14.743,4.729,13.466,18.547,16.969,5.144,15.468,20.574,5.632,0.945,5.671,7.302,8.53,12.395,8.854,13.632,0.1,7.157,9.221,8.608,2.027,6.063,11.973,16.315,-1.651,16.692,1.47,3.775,9.159,5.382,2.436,7.404,9.711,2.926,-1.692,3.726,-3.402,0.538,5.396,12.29,13.096,0.731,25.916,13.34,25.387,31.875,22.942,16.461,19.377,27.273,20.75,33.107,25.678,17.699,23.746,28.895,18.846,18.649,15.601,20.796,17.306,27.929,16.822,25.112,14.253,16.573,24.945,16.081,21.001,18.406,16.838,20.658,11.226,4.191,18.677,19.503,15.299,12.162,12.013,16.227,12.178,20.431,10.52,18.173,14.825,20.434,17.651,3.243,19.183,13.272,12.698,18.71,6.021,15.26,13.065,7.027,5.716,9.723,18.453,15.928,20.28,17.477,20.207,14.115,5.785,-0.084,4.294,10.155,6.302,6.217,2.189,8.699,11.978,-0.104,8.399,11.228,7.646,1.744,10.017,12.703,7.941,2.009,15.041,9.315,-0.401,7.381,15.552,9.959,6.934,6.254,15.346,1.199,2.542,11.206,6.226,-1.25,16.5,16.559,10.519,-1.094,5.691,4.16,7.851,0.7,6.995,4.916,6.046,8.392,14.002,1.398,12.44,14.125,1.076,0.174,-1.823,-4.385,2.789,11.736,3.126,7.087,3.146,8.803,5.016,1.821,-2.967,3.646,8.515,-0.887,-2.444,2.294],[20.086,24.041,18.248,33.481,26.796,15.538,25.33,28.015,24.483,14.768,18.695,17.039,21.002,17.403,21.38,19.142,20.631,16.857,12.152,11.118,10.19,16.938,14.697,4.905,13.477,18.574,17.121,5.213,15.499,20.459,5.469,0.856,5.791,7.373,8.517,12.453,8.99,13.682,0.251,7.162,9.152,8.67,2.244,6.025,12.351,16.395,-1.826,16.364,1.509,4.037,9.183,5.395,2.521,7.547,9.451,2.896,-1.826,3.732,-3.323,0.455,5.428,12.315,13.052,0.546,25.763,13.82,25.202,31.758,22.657,15.954,19.332,26.521,20.72,33.348,25.755,17.587,23.149,28.147,18.784,19.121,15.914,21.216,18.023,27.728,16.497,25.223,14.479,17.313,24.845,16.262,21.065,17.997,16.948,20.632,10.989,4.597,18.754,19.107,14.859,12.408,11.919,15.891,12.028,20.367,10.44,18.12,14.392,20.711,17.831,3.815,18.678,13.601,12.915,18.752,5.78,15.115,12.82,6.495,5.588,9.214,17.881,15.838,20.413,17.686,20.615,14.167,6.403,-0.273,4.25,10.223,6.619,6.097,1.643,8.782,12.121,0.194,8.405,11.304,7.423,2.105,10.043,12.507,7.545,2.002,14.962,9.504,-0.165,7.429,15.812,10.153,7.253,6.264,15.564,1.759,2.427,11.344,6.372,-0.909,16.686,16.42,10.416,-0.708,5.819,4.638,8.036,0.679,7.202,4.542,5.733,7.95,14.023,1.357,12.024,14.227,1.159,-0.53,-1.648,-4.079,3.249,11.57,3.347,7.276,3.032,8.468,5.251,1.908,-2.994,3.924,8.773,-0.374,-2.456,2.021],[20.255,23.813,18.152,33.406,26.798,15.526,25.134,27.905,24.189,15.069,18.662,16.939,21.002,17.338,21.549,19.151,20.496,16.878,12.121,11.14,10.131,16.936,14.599,5.114,13.536,18.707,17.13,5.278,15.404,20.362,5.4,0.79,5.95,7.339,8.736,12.544,8.956,13.668,0.49,7.267,9.246,8.656,2.519,5.881,12.516,16.421,-1.858,16.075,1.694,4.314,9.292,5.302,2.57,7.593,9.283,2.849,-1.852,3.661,-3.257,0.281,5.381,12.451,13.016,0.352,25.505,13.798,25.389,31.67,22.638,15.682,19.571,26.38,20.275,33.328,25.143,17.334,23.308,27.994,18.855,19.659,15.703,21.032,17.951,27.488,16.5,24.956,14.339,17.953,24.869,16.638,20.37,17.707,17.131,20.412,11.061,4.577,18.231,18.674,14.565,12.273,11.833,16.22,12.561,20.417,10.497,17.84,14.064,20.805,17.999,3.81,18.533,13.482,12.921,18.826,6.015,15.148,12.839,6.32,5.246,9.138,18.388,15.899,20.53,17.404,20.898,14.258,6.568,-0.472,4.505,10.068,6.376,6.423,1.494,9.074,12.082,0.118,8.741,11.345,7.163,2.043,10.193,12.902,7.495,2.3,15.145,8.989,-0.24,7.426,15.885,9.996,7.523,5.89,14.668,2.166,2.379,11.601,6.441,-1.038,16.516,16.677,10.676,-0.727,6.081,4.759,8.128,1.273,6.803,4.152,5.521,7.636,14.163,1.095,12.096,14.038,1.314,-1.142,-1.943,-2.427,3.546,11.509,3.634,6.812,3.496,8.286,5.498,1.625,-2.894,4.083,9.116,-0.075,-2.888,2.034],[20.333,23.604,18.063,33.292,26.735,15.331,24.974,27.794,24.03,15.321,18.575,16.941,20.989,17.439,21.667,19.218,20.322,16.964,12.171,11.099,10.061,17.06,14.548,5.24,13.586,18.869,17.201,5.362,15.221,20.405,5.323,0.694,6.076,7.445,9.137,12.609,8.858,13.629,0.626,7.352,9.382,8.627,2.745,5.7,12.423,16.384,-1.607,15.765,1.873,4.534,9.411,5.225,2.712,7.519,9.369,2.747,-1.901,3.526,-3.118,0.068,5.246,12.546,12.981,0.06,24.933,13.967,25.176,31.734,22.411,15.924,19.689,26.559,20.403,32.993,25.002,17.802,23.901,28.086,19.023,19.09,14.82,21.183,17.163,27.411,17.073,25.082,14.222,17.963,24.894,16.955,20.397,17.427,17.019,20.696,11.282,4.238,18.204,18.508,14.877,12.138,11.989,16.664,12.395,20.606,10.606,18.03,13.762,20.736,18.106,3.987,18.68,13.219,12.912,18.789,6.078,15.191,12.757,6.708,5.937,9.684,18.267,15.628,20.579,17.33,20.398,14.324,6.487,-0.637,4.468,9.686,6.265,6.19,1.386,8.681,12.153,0.219,8.975,11.42,7.49,2.584,10.251,13.109,7.32,2.429,15.206,8.813,0.052,7.272,15.407,10.109,7.676,5.862,14.267,1.783,2.826,11.545,6.259,-1.167,16.076,16.096,10.792,-0.98,6.338,5.2,8.268,1.153,5.881,4.412,5.599,8.066,14.264,0.842,12.594,14.108,1.421,-0.865,-2.05,-1.934,3.572,11.297,3.844,6.519,3.735,8.608,5.367,1.378,-2.992,3.492,8.439,0.091,-2.987,1.883],[20.236,23.411,17.994,33.154,26.638,15.032,25.035,27.794,24.068,15.328,18.546,17.044,21.018,17.599,21.865,19.512,20.149,17.044,12.222,10.998,10.068,17.164,14.489,5.196,13.589,18.87,17.301,5.576,15.032,20.487,5.343,0.595,6.065,7.52,9.587,12.608,8.851,13.67,0.627,7.333,9.428,8.639,2.955,5.611,12.384,16.238,-1.337,15.367,2.082,4.622,9.59,5.028,2.862,7.385,9.412,2.55,-2.008,3.381,-3.153,-0.044,5.126,12.577,12.97,-0.17,25.108,14.323,24.174,31.539,22.365,16.432,19.325,26.172,20.651,32.668,25.449,17.655,23.569,28.136,18.549,19.327,14.483,20.969,16.553,27.188,17.262,25.059,14.032,17.42,24.652,16.914,21.284,18.011,16.836,21.114,12.058,4.389,19.197,18.377,15.319,11.994,11.794,16.33,12.064,20.389,10.914,18.437,13.718,20.536,18.106,4.261,18.898,13.215,12.802,18.861,6.29,15.479,12.695,6.998,6.255,9.921,18.102,15.713,20.705,17.439,19.776,14.287,6.368,-0.661,4.308,9.97,5.732,6.05,1.47,8.735,12.063,1.065,8.698,11.452,8.16,2.647,9.92,12.72,7.27,2.431,14.954,9.137,0.319,7.111,15.292,10.624,7.82,6.018,14.463,1.407,2.956,11.123,5.827,-0.45,15.932,15.527,10.468,-0.44,5.987,5.724,8.214,1.239,6.299,4.422,5.459,8.044,14.255,1.127,12.888,13.969,1.047,-0.561,-1.801,-2.211,3.632,11.261,3.954,6.638,3.456,8.785,5.27,1.128,-2.869,3.856,8.58,-0.52,-2.74,1.792],[20.295,23.316,17.962,32.952,26.498,14.678,25.272,27.78,24.106,15.233,18.431,17.283,21.156,17.708,22.105,19.921,19.969,16.994,12.353,10.959,10.089,17.301,14.431,5.11,13.643,18.703,17.228,5.919,14.888,20.404,5.363,0.722,5.903,7.489,9.966,12.57,8.838,13.669,0.81,7.303,9.418,8.738,3.081,5.562,12.447,16.064,-1.156,14.929,2.27,4.654,9.664,4.969,2.988,7.211,9.253,2.343,-2.042,3.346,-3.317,0.02,5.114,12.587,13.008,-0.327,25.059,14.237,23.959,31.444,22.301,16.67,19.4,26.35,20.514,32.538,25.694,17.613,23.02,28.311,18.4,19.207,15.118,21.035,17.278,27.108,16.59,24.812,13.839,16.577,24.732,16.691,21.089,18.396,16.648,21.465,12.363,4.216,19.38,18.123,15.208,12.075,11.827,16.581,12.089,20.193,11.155,18.3,13.85,21.215,18.272,4.461,19.617,13.398,12.516,18.94,6.549,15.625,12.621,6.908,5.584,9.58,18.616,15.986,20.545,17.942,19.36,14.264,6.596,-0.688,4.44,10.545,5.541,6.575,1.556,8.971,11.9,1.069,8.367,11.38,9.269,2.841,10.083,12.953,7.158,2.595,14.848,9.331,0.352,7.279,15.529,10.577,7.592,5.766,14.354,1.718,2.771,11.228,5.869,-0.067,16.082,15.944,10.667,-0.281,5.51,5.064,8.26,1.043,6.696,4.01,5.442,7.689,14.001,1.063,13.14,13.972,0.801,-0.391,-1.599,-3.225,2.866,11.511,3.723,7.065,3.497,8.969,4.712,0.786,-3.218,3.945,8.849,-1.494,-3.088,1.654],[20.364,23.354,17.907,32.848,26.352,14.469,25.484,27.776,24.07,15.166,18.218,17.325,21.208,17.671,22.246,20.245,19.768,17.071,12.492,11.111,10.143,17.416,14.403,5.017,13.942,18.702,17.186,6.288,14.874,20.218,5.286,1.047,5.821,7.375,10.323,12.576,8.756,13.598,1.114,7.275,9.506,8.855,3.084,5.492,12.618,15.932,-1.291,14.629,2.319,4.539,9.565,4.874,2.92,7.129,9.066,2.159,-2.133,3.277,-3.343,-0.083,5.169,12.668,13.089,-0.394,24.921,14.009,24.238,31.159,22.437,16.664,19.597,27.065,20.799,32.691,25.589,17.759,22.819,27.98,18.542,19.207,14.866,21.347,17.993,27.359,16.13,24.553,14.143,16.39,25.071,16.829,20.952,18.574,16.49,21.7,12.362,4.286,19.308,17.98,14.399,12.248,11.587,16.66,12.233,20.389,11.173,18.287,14.405,21.622,18.097,3.69,19.819,13.717,12.417,18.905,6.195,15.549,12.527,6.702,5.793,9.24,18.22,15.554,20.486,16.986,19.071,14.269,6.549,-0.148,4.448,10.935,6.122,6.6,1.793,8.819,12.02,0.483,8.74,11.378,9.912,3.123,10.513,12.801,7.089,2.914,14.971,9.375,0.626,7.448,15.479,10.069,7.224,5.789,14.146,1.978,2.896,11.513,6.343,-0.31,16.192,15.745,10.924,-0.108,5.37,4.77,8.333,1.353,6.578,3.912,5.606,7.808,14.318,1.108,13.003,14.181,0.819,-0.783,-1.572,-4.22,2.266,11.422,4.067,7.213,3.564,8.612,4.993,0.769,-3.371,3.705,8.074,-1.294,-3.232,1.54],[20.357,23.547,17.925,32.898,26.351,14.62,25.584,27.83,24.119,15.079,18.014,17.225,21.171,17.552,22.212,20.505,19.71,17.168,12.469,11.407,10.066,17.41,14.309,4.765,14.199,18.629,17.021,6.456,15.049,19.912,5.292,1.511,5.9,7.177,10.636,12.568,8.767,13.543,1.4,7.307,9.51,8.91,3.009,5.544,12.762,15.902,-1.529,14.494,2.355,4.319,9.381,4.815,2.807,7.117,8.896,2.036,-2.184,3.212,-3.393,-0.165,5.24,12.849,13.09,-0.447,25.118,13.851,24.238,31.256,22.279,16.469,19.588,26.68,21.089,32.572,25.663,17.861,22.688,28.429,18.003,19.8,14.346,21.128,17.914,27.121,16.109,24.718,13.624,16.982,25.012,16.717,21.12,18.362,16.405,21.609,12.518,4.222,19.361,17.822,14.172,12.425,11.811,16.472,12.461,20.166,10.737,18.6,14.688,21.465,18.032,3.513,19.816,13.985,12.487,19.003,6.927,15.699,12.564,6.305,6.739,9.382,18.274,14.964,20.423,16.681,18.867,14.281,6.553,0.055,4.464,11.535,6.587,5.944,2.378,8.464,12.049,0.372,8.533,11.476,9.91,2.632,10.431,12.763,6.78,3.138,15.017,9.215,0.54,7.548,15.178,10.496,7.449,5.979,13.786,1.819,3.195,11.755,6.199,-0.626,16.45,14.999,10.627,-0.541,5.518,5.302,8.016,1.02,6.244,4.153,5.5,7.651,14.561,0.874,13.039,14.16,0.4,-0.787,-1.476,-4.145,2.974,11.444,3.857,6.988,3.116,8.744,5.313,1.081,-3.273,4.327,7.955,-0.654,-3.128,1.531],[20.509,23.693,18.099,32.838,26.435,14.782,25.649,27.908,24.112,14.884,17.823,17.126,21.112,17.55,21.914,20.679,19.682,16.957,12.366,11.615,9.956,17.391,14.146,4.565,14.216,18.416,17.001,6.723,15.295,19.595,5.48,1.847,6.077,7.051,10.852,12.608,8.845,13.521,1.502,7.408,9.431,8.923,2.869,5.506,12.805,15.989,-1.609,14.223,2.468,4.177,9.334,4.828,2.642,7.083,8.871,1.91,-2.179,3.344,-3.475,-0.085,5.311,12.99,12.957,-0.482,25.303,14.012,24.651,31.194,22.34,16.356,19.425,26.248,20.861,32.923,25.718,17.816,23.688,28.254,17.895,19.341,14.458,21.179,17.267,26.908,16.741,24.781,13.835,17.117,24.7,16.643,21.021,18.348,16.33,21.56,12.166,3.808,19.741,17.903,14.805,12.697,11.878,17.052,12.854,19.936,10.987,18.454,14.434,21.658,17.959,3.779,19.462,13.738,12.915,18.78,6.927,15.65,12.448,6.541,6.781,9.624,18.241,15.707,20.263,17.078,18.406,14.154,6.562,0.733,4.3,12.152,6.511,5.63,2.754,8.551,11.908,1.174,8.492,11.12,9.874,2.478,10.099,12.786,7.088,3.304,15.012,9.238,0.731,7.221,15.171,10.968,7.534,5.93,13.757,1.598,2.953,11.63,6.223,-0.496,16.534,15.293,10.192,-0.962,5.574,4.801,7.959,0.959,6.157,4.321,5.111,7.491,14.26,0.564,12.948,14.064,0.29,-0.132,-1.822,-3.501,3.2,11.249,3.352,6.985,2.812,8.666,4.552,1.405,-3.274,4.213,8.267,-0.937,-2.913,1.672],[20.534,23.878,18.226,32.773,26.452,14.93,25.654,27.838,24.091,14.896,17.69,17.068,21.075,17.511,21.673,20.841,19.659,16.702,12.289,11.805,9.936,17.309,14.008,4.452,14.181,18.256,17.196,6.92,15.583,19.348,5.688,1.989,6.045,7.065,11.017,12.526,8.844,13.488,1.618,7.458,9.403,8.912,2.743,5.471,12.717,16.178,-1.616,14.005,2.542,4.037,9.443,4.765,2.501,7.066,9.065,1.782,-2.127,3.473,-3.476,0.029,5.261,12.931,12.748,-0.555,25.442,13.712,25.009,30.982,22.283,16.692,19.484,26.676,20.979,32.696,25.655,17.763,24.336,28.095,18.045,19.635,14.735,20.736,17.172,27.403,17.073,24.837,14.068,16.943,24.901,16.263,20.807,18.099,16.091,21.319,12.27,3.868,20.042,17.785,14.693,12.409,11.628,17.017,12.358,20.179,11.268,18.391,14.249,21.864,17.516,3.617,18.62,13.872,13.03,18.544,6.867,15.624,12.152,7.236,6.57,9.477,17.723,16.618,19.902,17.38,18.313,14.236,6.88,1.329,4.873,12.262,6.313,6.082,2.526,8.716,11.783,2.078,8.767,11.241,10.01,2.819,10.268,12.738,7.115,3.296,14.68,9.388,0.675,7.133,15.337,10.685,7.432,6.114,13.723,1.229,3.32,11.394,6.209,-0.569,16.082,14.912,10.2,-0.514,5.405,4.913,8.39,0.83,6.416,4.482,4.911,7.899,14.27,0.742,12.895,13.924,0.28,0.462,-1.781,-3.278,2.779,11.03,3.567,6.772,2.98,8.405,4.737,1.616,-3.163,3.809,8.171,-1.587,-3.165,1.602],[20.619,24.076,18.207,32.709,26.505,14.934,25.664,27.837,24.041,14.967,17.654,17.047,21.213,17.273,21.54,21.018,19.637,16.593,12.184,11.954,9.955,17.199,13.845,4.524,14.2,18.127,17.214,7.029,15.876,19.201,5.797,1.992,6.07,7.176,11.157,12.379,8.788,13.368,1.867,7.412,9.448,8.962,2.675,5.578,12.546,16.328,-1.596,13.882,2.528,3.997,9.64,4.919,2.307,6.922,9.265,1.649,-2.088,3.389,-3.327,0.166,5.25,12.741,12.519,-0.723,25.824,13.977,24.733,30.858,22.629,17.056,19.714,26.692,20.965,32.301,25.493,17.592,23.71,28.215,17.844,20.0,15.086,20.626,17.591,27.474,16.556,24.776,13.997,16.631,25.165,16.035,21.064,17.944,15.622,21.169,12.725,3.873,20.118,17.903,14.345,12.339,11.718,16.358,12.093,20.526,11.335,18.327,14.22,21.72,17.444,3.834,17.916,14.217,12.964,18.36,6.928,15.403,11.998,7.177,6.428,9.187,18.58,17.123,19.903,17.613,18.358,14.13,6.828,0.464,4.813,12.362,6.397,6.661,2.683,8.713,11.782,2.021,8.925,11.442,9.838,2.724,10.586,12.919,7.127,3.638,14.696,9.413,0.722,7.59,15.468,10.317,7.467,6.01,13.251,1.042,3.59,11.429,5.98,-0.598,15.873,14.574,10.741,-0.115,5.168,4.572,8.84,0.617,6.5,4.346,4.683,7.925,14.225,0.964,13.206,13.709,-0.032,0.768,-1.594,-3.432,2.388,11.047,3.68,6.771,3.369,8.566,4.766,1.421,-3.014,4.039,8.376,-2.0,-3.34,1.594],[20.914,24.108,18.105,32.637,26.483,14.851,25.6,27.959,23.956,15.093,17.6,17.034,21.377,16.92,21.518,21.218,19.752,16.507,12.136,11.947,9.999,17.046,13.745,4.622,14.343,18.156,17.345,7.02,16.241,19.058,5.744,1.878,6.159,7.361,11.23,12.361,8.803,13.319,2.074,7.24,9.564,9.012,2.574,5.726,12.477,16.321,-1.489,13.645,2.507,4.034,9.856,5.326,2.214,6.591,9.239,1.526,-2.289,3.106,-3.135,0.218,5.341,12.695,12.327,-0.894,25.744,13.821,23.953,30.886,23.288,17.351,19.553,26.412,20.624,32.594,25.654,17.177,23.215,28.609,17.888,19.834,14.746,20.825,18.017,27.546,16.369,24.7,13.811,16.144,25.095,15.863,21.584,17.725,15.376,21.048,12.918,4.201,19.795,17.903,13.867,12.774,11.888,16.42,11.881,20.455,11.466,18.225,14.481,21.782,17.51,3.413,17.94,13.872,13.057,18.39,7.069,15.363,12.127,6.785,6.648,9.489,18.489,17.007,19.976,16.644,18.587,14.02,6.835,0.114,4.517,12.212,6.875,6.752,2.623,9.15,11.939,2.01,9.376,11.08,9.97,2.371,10.495,12.905,6.944,3.758,14.989,9.438,0.643,7.441,15.441,9.999,7.471,5.588,13.069,1.232,2.893,11.456,6.581,-0.777,16.325,15.111,11.054,-0.257,5.014,4.71,8.808,0.613,6.324,3.887,4.887,7.913,14.146,1.337,13.18,13.702,0.109,0.715,-1.43,-3.527,2.486,10.968,3.369,7.09,3.184,8.782,5.234,1.324,-2.96,4.203,8.407,-1.866,-2.752,1.54],[21.04,23.985,18.107,32.867,26.406,14.752,25.444,28.045,23.782,15.139,17.502,16.885,21.443,16.689,21.612,21.368,19.897,16.647,12.089,11.944,10.108,16.895,13.581,4.607,14.543,18.289,17.324,6.981,16.554,19.096,5.736,1.627,6.277,7.631,11.282,12.411,8.861,13.417,2.118,6.982,9.624,8.989,2.482,5.843,12.52,16.309,-1.48,13.474,2.348,4.1,9.846,5.762,2.242,6.458,8.996,1.445,-2.508,2.822,-3.046,0.273,5.501,12.711,12.251,-1.01,25.804,13.566,23.58,31.202,24.2,17.234,20.04,26.515,20.855,32.518,25.61,16.653,23.207,28.838,17.76,20.2,14.343,20.669,17.745,27.153,16.671,24.545,13.554,16.203,25.03,15.962,21.444,17.724,15.161,21.092,12.923,3.94,19.642,18.189,14.098,13.137,11.894,16.73,11.753,20.124,11.234,18.264,14.969,22.254,17.653,3.599,18.015,13.888,13.263,18.383,6.988,15.242,12.044,6.429,6.932,9.897,18.284,16.722,20.065,16.069,18.322,14.011,6.994,0.665,4.913,12.115,7.035,6.439,2.605,9.33,11.96,2.327,9.401,11.125,10.292,2.583,10.491,12.56,7.175,3.732,14.983,9.664,0.548,7.017,15.148,10.374,7.293,5.412,12.796,0.986,2.941,11.291,6.887,-0.489,16.66,14.66,10.705,-0.346,4.611,5.12,8.461,0.411,6.592,3.689,5.269,7.806,14.374,1.427,12.817,13.786,0.294,0.504,-1.621,-3.068,2.478,10.781,3.82,6.61,3.085,8.902,5.911,1.393,-3.768,4.052,8.017,-1.333,-2.65,1.165],[21.036,23.905,18.222,33.154,26.271,14.583,25.351,28.127,23.615,15.149,17.208,16.696,21.383,16.679,21.607,21.516,19.957,16.904,11.994,12.114,10.292,16.907,13.468,4.542,14.713,18.408,17.171,6.841,16.628,19.081,5.87,1.605,6.486,7.653,11.269,12.41,8.937,13.398,2.101,6.78,9.634,8.95,2.415,5.891,12.393,16.267,-1.512,13.228,2.235,4.334,9.625,6.198,2.267,6.409,8.761,1.478,-2.647,2.704,-3.177,0.346,5.578,12.779,12.196,-0.997,25.624,13.4,24.227,31.339,24.316,16.787,20.329,26.479,21.029,32.859,25.199,16.949,23.615,28.924,18.187,20.34,14.443,20.85,17.834,27.144,16.485,24.576,14.075,16.822,25.034,15.925,21.023,17.587,15.301,21.61,12.708,3.748,19.704,18.121,14.324,13.239,11.781,16.932,11.981,20.299,11.409,18.276,15.339,22.427,18.104,4.023,18.413,14.435,13.28,18.645,7.587,15.012,11.784,6.654,6.993,9.78,18.258,16.838,20.138,16.296,18.519,14.135,7.042,0.132,4.841,12.593,6.627,6.454,2.031,9.378,11.965,2.341,8.792,11.575,10.762,2.43,10.666,12.824,7.454,3.596,14.822,9.38,0.516,7.435,15.121,11.077,7.061,5.2,12.448,0.789,3.522,11.145,6.031,0.142,16.849,13.982,10.344,-0.69,4.679,4.777,8.622,0.548,7.746,3.72,5.335,7.616,14.617,1.295,12.667,13.53,-0.102,-0.026,-1.678,-2.468,2.301,10.658,4.057,6.344,2.963,8.673,5.699,1.636,-3.671,4.197,7.641,-1.515,-3.467,0.861],[20.979,23.953,18.406,33.326,26.087,14.708,25.316,28.278,23.599,15.148,17.143,16.685,21.177,16.815,21.559,21.67,19.969,17.121,11.953,12.426,10.353,17.099,13.396,4.576,14.752,18.609,17.026,6.743,16.551,19.117,6.02,1.592,6.567,7.566,11.288,12.303,9.025,13.242,2.157,6.551,9.74,8.842,2.324,5.718,12.181,16.259,-1.554,12.868,2.284,4.553,9.48,6.576,2.207,6.386,8.74,1.523,-2.672,2.806,-3.346,0.427,5.367,12.943,12.008,-1.028,25.843,13.487,24.481,31.517,23.553,16.622,19.378,26.572,21.306,33.553,25.21,17.41,23.842,28.702,17.47,19.971,14.525,20.438,18.274,27.458,16.798,24.566,13.586,17.3,24.855,16.059,20.9,17.616,15.432,21.774,12.032,3.735,20.078,18.087,14.379,13.441,11.988,17.217,11.718,20.304,11.755,17.995,15.187,22.127,18.031,3.669,18.246,14.413,13.498,18.839,7.094,15.324,11.853,7.307,6.638,9.69,18.026,17.469,20.453,16.855,18.673,13.994,7.175,-0.062,5.104,12.679,6.945,6.604,2.125,9.404,11.515,2.348,8.34,11.103,11.217,1.9,10.407,12.446,7.42,3.783,14.446,9.239,0.772,7.562,15.121,10.737,6.858,5.12,12.579,1.015,3.683,11.058,6.006,-0.263,16.785,13.742,10.775,-1.021,5.116,5.327,8.703,0.496,8.138,3.474,5.315,7.667,14.314,1.211,13.081,13.534,0.011,-0.334,-2.093,-2.368,2.433,10.526,3.964,6.387,3.258,8.271,5.587,1.891,-3.284,4.085,7.616,-1.876,-4.178,1.094],[20.922,24.129,18.63,33.506,25.914,14.938,25.368,28.446,23.701,15.286,17.155,16.778,20.867,16.909,21.593,21.869,19.871,17.255,11.853,12.793,10.304,17.229,13.31,4.649,14.75,18.768,16.858,6.524,16.483,19.178,6.277,1.441,6.564,7.669,11.215,12.129,8.962,12.942,2.216,6.338,10.0,8.73,2.309,5.536,11.99,16.192,-1.811,12.628,2.398,4.689,9.439,6.675,2.15,6.465,8.809,1.56,-2.513,2.845,-3.56,0.482,5.136,13.056,11.831,-1.179,25.962,13.683,24.043,31.771,22.104,16.528,19.066,26.802,21.242,33.387,25.29,17.617,23.803,28.593,17.863,19.606,14.395,20.712,17.876,26.958,17.202,24.974,13.85,17.618,24.608,15.912,21.238,17.898,15.381,21.12,11.525,4.321,20.601,18.026,14.036,13.513,12.217,17.457,11.605,20.295,11.93,18.229,15.572,21.837,17.832,3.364,17.975,14.087,13.56,18.941,6.707,15.603,12.022,7.589,7.001,9.989,18.114,17.641,20.548,17.487,18.66,13.54,7.14,0.372,5.016,12.484,7.065,6.535,2.857,9.246,11.206,2.57,8.767,10.638,11.545,1.448,10.069,12.258,7.103,3.865,14.187,9.514,0.635,7.147,15.235,10.305,6.848,4.983,12.576,0.833,3.383,10.899,6.045,-0.541,16.875,13.723,11.165,-0.713,4.975,5.504,8.376,0.586,7.449,3.804,5.189,7.343,14.252,1.285,13.552,13.363,0.275,-0.065,-2.439,-2.456,2.244,10.629,3.91,6.502,3.33,8.42,6.226,1.871,-3.109,3.59,8.204,-1.467,-3.917,1.331],[20.786,24.337,18.723,33.656,25.841,15.103,25.405,28.478,23.601,15.429,17.287,16.858,20.716,16.841,21.619,22.026,19.768,17.243,11.684,13.126,10.347,17.347,13.193,4.843,14.657,18.95,16.79,6.338,16.543,19.144,6.57,1.359,6.422,7.838,11.097,12.068,8.788,12.725,2.103,6.094,10.036,8.736,2.186,5.408,11.881,16.131,-1.965,12.587,2.356,4.753,9.388,6.57,2.196,6.59,8.906,1.558,-2.253,2.896,-3.737,0.497,4.998,13.065,11.743,-1.247,26.124,14.182,23.82,32.185,21.851,16.421,19.056,26.884,20.876,32.864,25.248,17.412,23.967,29.099,17.666,20.089,14.704,21.176,17.823,26.521,17.42,24.413,14.134,17.686,24.957,16.228,20.992,18.198,15.443,21.585,12.028,4.47,20.832,18.063,13.595,14.25,12.035,17.38,11.542,20.253,12.38,18.547,15.636,22.798,18.165,3.31,18.19,13.421,13.64,18.925,7.53,15.432,11.727,7.747,6.936,9.917,17.957,17.687,20.579,17.524,18.87,13.517,7.063,0.269,4.64,12.308,6.862,6.792,2.904,9.699,11.17,2.769,8.727,10.799,11.505,2.024,10.485,12.068,6.88,3.675,14.094,8.985,0.582,6.994,15.031,11.146,7.185,4.849,12.085,0.631,3.221,10.914,5.821,-0.816,16.545,13.693,11.085,-0.648,4.761,5.43,8.327,0.675,7.576,3.884,4.588,7.433,14.478,1.21,13.616,13.251,0.114,0.061,-2.688,-2.798,1.973,10.376,3.861,6.662,3.008,8.843,6.844,2.019,-2.727,3.421,8.161,-2.151,-3.408,1.557],[20.609,24.652,18.757,33.715,25.667,15.06,25.378,28.306,23.593,15.509,17.399,16.963,20.731,16.695,21.807,22.265,19.838,17.094,11.579,13.33,10.376,17.34,13.037,5.018,14.669,19.166,16.904,6.378,16.699,19.154,6.737,1.334,6.222,8.26,11.01,12.232,8.613,12.653,1.832,5.95,9.901,8.778,2.127,5.367,12.061,15.956,-2.003,12.632,2.246,4.782,9.279,6.507,2.263,6.709,8.933,1.365,-2.082,3.001,-3.897,0.519,4.949,13.039,11.707,-1.37,26.531,14.669,23.693,32.742,21.838,16.726,19.182,26.896,20.835,32.667,25.358,17.706,23.923,29.339,17.567,20.609,14.641,20.673,18.315,26.92,17.435,24.118,14.003,16.907,25.621,16.679,20.446,18.034,15.232,22.084,12.642,4.561,20.756,18.121,13.796,14.4,11.647,17.358,11.396,20.066,12.808,18.137,15.615,23.422,18.19,3.605,18.275,13.407,14.348,18.721,6.904,15.452,11.687,8.184,6.679,9.744,17.888,17.613,21.049,16.904,18.677,13.992,6.87,0.072,4.664,12.29,7.114,7.211,2.625,10.087,11.038,1.724,8.348,11.116,11.349,2.263,10.395,12.058,6.481,3.204,14.153,9.026,0.512,6.897,15.003,10.884,6.801,4.563,11.963,0.41,3.23,10.715,5.866,-0.937,16.348,13.569,11.188,-1.213,4.92,5.596,8.395,0.495,7.882,3.809,4.216,7.755,14.404,0.975,12.894,13.085,0.141,-0.311,-2.683,-2.795,2.267,10.235,3.846,7.004,3.038,9.048,6.193,2.026,-2.848,3.594,7.821,-2.031,-3.608,1.446],[20.688,25.024,18.84,33.864,25.533,14.879,25.336,28.192,23.635,15.572,17.46,16.973,20.714,16.577,22.043,22.515,19.905,16.936,11.609,13.556,10.419,17.038,12.878,5.152,14.759,19.372,17.139,6.369,16.861,19.255,6.718,1.322,6.183,8.614,10.958,12.587,8.327,12.667,1.42,5.902,9.938,8.708,2.066,5.353,12.205,15.714,-2.182,12.702,2.151,4.837,9.223,6.427,2.256,6.826,8.816,1.165,-2.217,3.079,-3.948,0.458,4.959,12.817,11.667,-1.533,26.819,15.053,23.76,32.288,22.366,17.02,19.563,26.431,20.628,33.062,25.462,18.214,24.316,28.491,18.477,20.378,14.042,20.853,18.558,26.758,17.241,24.222,13.851,16.929,25.625,16.724,20.978,17.967,14.805,22.014,12.773,4.719,20.87,18.078,14.057,14.011,11.223,17.341,11.308,20.369,12.746,17.937,15.548,23.37,18.602,4.038,18.136,14.042,14.738,18.211,7.201,15.262,12.009,8.018,6.468,9.562,18.035,17.603,21.052,16.707,18.382,14.218,6.509,0.24,4.382,12.264,7.208,7.755,1.698,10.246,11.038,1.268,8.545,11.192,11.262,1.921,10.203,12.683,6.735,3.121,13.98,9.457,0.664,6.757,15.136,10.595,6.502,4.311,11.961,0.285,3.547,11.31,6.098,-0.918,16.442,13.356,11.088,-1.285,5.132,5.092,8.423,0.783,7.51,3.916,4.403,7.651,14.273,1.021,12.585,13.252,-0.1,-0.268,-2.508,-3.272,2.402,10.268,4.032,6.798,3.306,8.532,5.843,1.969,-2.594,3.769,7.943,-2.253,-3.886,1.216],[20.861,25.245,18.992,33.929,25.416,14.659,25.284,27.988,23.761,15.761,17.69,16.967,20.767,16.456,22.184,22.712,19.905,16.764,11.785,13.692,10.41,16.816,12.719,5.437,14.853,19.384,17.358,6.316,16.932,19.385,6.417,1.296,6.093,8.894,11.004,12.859,8.145,12.774,1.08,5.886,9.998,8.639,1.841,5.391,12.315,15.585,-2.433,12.696,2.234,4.8,9.231,6.348,2.367,6.884,8.642,1.014,-2.434,3.105,-3.943,0.44,5.039,12.579,11.668,-1.651,27.058,15.057,23.384,32.285,22.82,16.714,19.569,26.272,20.654,33.715,25.132,18.066,24.794,28.68,18.403,20.112,13.871,21.63,18.313,26.495,17.378,24.784,13.599,17.872,25.148,15.994,21.146,18.185,15.059,22.43,11.911,4.514,21.148,18.165,13.644,13.573,11.601,17.315,11.373,20.525,12.98,17.874,15.709,23.356,18.746,4.257,18.353,14.081,14.478,18.347,7.523,14.952,12.185,7.838,6.709,9.775,18.176,17.93,21.237,17.047,18.17,14.108,6.5,-0.106,4.674,12.107,7.168,7.677,1.511,10.558,11.094,1.413,8.132,11.362,10.686,1.803,10.129,11.898,6.917,2.67,13.864,9.113,0.495,6.749,15.241,11.035,6.675,4.608,12.556,0.427,3.612,11.402,5.82,-1.236,15.842,13.267,11.359,-1.351,5.286,5.316,8.047,0.763,7.447,4.022,4.801,7.344,14.192,1.232,12.897,13.128,-0.238,-0.172,-2.296,-3.729,2.29,10.406,4.142,6.524,3.473,8.231,6.356,1.51,-2.892,3.46,7.853,-2.477,-3.912,1.792],[20.925,25.282,19.028,33.997,25.474,14.553,25.182,27.807,23.908,15.887,17.83,17.15,20.896,16.374,22.491,22.933,19.83,16.672,11.858,13.721,10.474,16.85,12.518,5.853,14.799,19.233,17.539,6.312,16.97,19.495,6.179,1.161,6.066,9.064,11.03,12.91,8.015,12.77,0.715,5.916,10.117,8.53,1.674,5.357,12.053,15.522,-2.662,12.758,2.437,4.757,9.282,6.528,2.449,6.818,8.455,0.85,-2.486,3.231,-3.86,0.602,5.128,12.534,11.716,-1.805,26.987,14.801,23.453,32.316,22.647,16.028,19.648,26.596,20.694,33.752,25.261,17.815,25.005,28.903,18.506,20.323,13.784,21.89,18.109,26.192,18.051,24.646,13.628,18.365,24.751,16.118,20.244,18.032,15.099,22.199,11.073,5.17,21.579,18.18,13.257,13.342,12.072,16.683,11.636,20.426,13.154,17.872,15.889,23.338,18.36,4.193,18.632,14.203,14.92,18.378,7.251,15.178,11.892,7.601,6.704,9.89,18.257,18.454,21.111,17.163,18.722,14.63,6.354,-0.259,4.413,11.948,6.86,7.748,2.18,10.759,11.407,1.245,7.746,11.593,10.116,1.899,9.991,12.162,6.889,2.333,14.191,8.788,0.648,6.404,15.44,10.909,7.124,4.817,12.216,0.156,2.947,10.581,5.562,-1.696,15.173,13.163,11.525,-1.584,5.191,5.297,8.045,0.895,7.882,4.0,5.201,6.877,14.08,0.906,13.001,13.094,-0.505,-0.46,-2.083,-3.741,1.6,10.412,4.039,6.684,3.629,8.532,6.617,1.189,-3.579,3.383,7.795,-1.554,-3.693,1.768],[20.922,25.238,18.951,33.958,25.574,14.708,24.996,27.846,24.026,15.862,17.836,17.401,20.925,16.33,22.746,23.087,19.675,16.502,11.682,13.846,10.651,17.073,12.302,6.139,14.615,19.057,17.685,6.269,17.02,19.686,6.076,1.123,5.997,9.123,10.918,12.963,7.845,12.891,0.414,5.936,10.189,8.376,1.594,5.244,11.594,15.534,-2.789,12.746,2.516,4.698,9.45,6.857,2.46,6.716,8.301,0.568,-2.411,3.383,-3.629,0.638,5.194,12.591,11.651,-1.884,27.196,14.455,23.818,32.628,22.559,16.018,19.509,26.54,20.866,33.019,25.613,18.128,24.69,28.353,18.626,20.26,13.74,21.44,17.798,26.162,17.908,24.334,13.455,18.545,25.15,16.91,20.039,18.186,15.135,22.6,11.639,6.331,22.257,17.79,13.624,13.151,12.295,16.716,11.685,19.789,12.636,18.121,16.139,23.712,18.024,4.328,18.385,14.188,14.818,18.266,7.391,15.233,11.557,7.383,6.71,9.717,18.183,18.68,20.726,16.885,19.054,14.762,6.302,-0.027,4.256,11.841,6.721,8.168,2.443,10.793,11.443,0.613,7.637,11.941,9.729,2.009,9.906,11.981,6.486,1.939,14.612,9.063,1.124,6.583,15.172,10.776,7.554,5.062,11.78,0.027,2.563,10.301,5.691,-2.359,14.883,13.503,11.236,-1.167,5.016,4.759,8.349,0.744,8.194,4.069,5.413,6.921,14.14,1.214,12.844,13.266,-0.824,-0.391,-1.898,-3.817,1.598,10.181,4.121,6.6,3.734,8.602,6.935,1.423,-3.051,3.725,7.662,-1.455,-3.696,1.878],[20.886,25.345,18.788,33.872,25.701,14.718,24.887,27.939,24.116,15.772,17.856,17.602,20.776,16.331,22.935,23.237,19.405,16.307,11.505,13.859,10.881,17.316,12.239,6.354,14.307,18.922,17.659,6.175,17.126,19.837,5.977,1.323,5.86,9.184,10.671,13.08,7.728,13.157,0.178,5.939,10.159,8.367,1.542,5.083,11.367,15.519,-2.866,12.707,2.415,4.688,9.704,7.083,2.364,6.592,8.251,0.374,-2.23,3.508,-3.282,0.575,5.25,12.702,11.469,-1.953,27.068,14.37,24.169,32.556,22.598,16.263,19.35,26.286,21.199,32.632,25.286,18.527,24.387,28.203,18.169,19.655,13.831,21.268,18.11,26.32,17.16,24.264,13.678,18.438,25.71,17.167,20.517,18.954,15.045,22.743,12.415,6.329,23.098,17.496,13.835,13.22,11.978,16.612,11.294,20.013,13.049,18.092,16.354,24.298,18.206,4.531,18.238,13.431,14.63,17.985,7.335,15.588,11.528,7.273,7.101,9.631,18.309,18.384,20.623,16.802,19.106,14.652,6.161,-0.013,4.524,12.038,6.823,8.089,2.087,10.806,11.675,0.355,7.97,11.759,9.813,2.398,9.65,11.027,6.041,1.537,14.43,9.324,1.335,6.861,14.94,10.656,7.476,5.076,12.236,-0.102,3.668,10.253,5.93,-1.954,15.116,13.863,11.751,-1.421,4.854,4.359,8.661,0.911,8.283,4.291,5.379,7.041,14.257,1.203,12.476,13.179,-1.196,-0.059,-1.403,-3.67,1.806,10.42,4.004,6.269,3.47,8.561,6.954,1.695,-2.943,3.519,7.518,-2.427,-3.679,2.146],[20.803,25.594,18.484,33.802,25.816,14.392,24.861,27.902,24.223,15.7,17.963,17.747,20.657,16.342,23.015,23.461,19.373,16.147,11.536,13.851,11.019,17.487,12.329,6.352,14.001,18.845,17.496,6.152,17.19,19.771,5.907,1.537,5.722,9.184,10.452,13.181,7.812,13.316,0.058,5.915,10.201,8.559,1.559,4.985,11.286,15.509,-2.929,12.759,2.464,4.624,9.91,7.039,2.305,6.377,8.223,0.315,-2.136,3.733,-2.793,0.436,5.202,12.791,11.345,-2.153,27.298,14.289,24.136,32.346,22.634,15.988,19.294,26.265,21.026,33.403,25.149,18.396,24.376,28.68,18.422,19.189,13.982,21.749,18.724,26.752,16.966,24.374,13.315,18.283,25.778,17.148,20.186,19.27,14.958,22.797,12.081,5.584,23.747,17.489,13.471,12.562,11.87,15.683,10.873,19.993,13.311,18.495,16.718,24.165,18.306,4.948,18.564,13.334,14.783,17.925,7.004,15.819,11.668,7.007,6.729,9.845,18.694,18.304,20.75,16.897,19.359,14.806,5.874,0.366,4.47,12.012,6.763,7.838,2.133,10.793,11.749,0.281,8.709,11.888,9.837,2.257,9.747,11.427,5.759,1.644,14.737,9.377,1.168,6.446,14.961,10.599,7.3,4.784,12.538,-0.047,4.071,10.221,5.855,-1.758,15.425,13.958,11.723,-2.09,4.875,4.677,8.882,0.831,8.368,4.097,5.541,6.794,14.258,0.88,12.389,13.056,-1.023,-0.554,-1.032,-3.453,1.746,10.399,3.736,6.408,3.468,8.938,7.144,1.792,-3.143,3.421,7.407,-2.807,-3.505,2.088],[20.591,25.788,18.292,33.802,25.94,14.068,25.034,27.888,24.272,15.526,18.168,17.836,20.375,16.273,23.215,23.668,19.424,15.924,11.566,14.004,11.018,17.472,12.42,6.21,13.753,18.918,17.393,6.014,17.275,19.709,5.804,1.726,5.577,9.028,10.225,13.332,8.086,13.358,0.122,5.891,10.187,8.866,1.697,4.894,11.353,15.586,-3.077,12.959,2.526,4.499,10.051,6.935,2.322,6.243,8.06,0.426,-2.245,3.798,-2.426,0.332,5.212,12.765,11.403,-2.498,27.674,14.411,23.851,32.326,22.523,15.553,19.354,26.724,20.813,33.935,25.125,18.102,25.062,28.353,18.92,19.287,13.226,21.493,18.148,26.789,16.656,24.413,13.193,18.507,25.234,16.992,20.387,19.123,15.207,22.857,11.727,5.408,23.812,17.624,13.523,12.185,12.396,15.844,11.43,19.588,12.588,19.102,16.36,24.074,18.455,4.98,18.119,13.652,14.695,17.783,7.356,16.355,11.955,7.138,6.495,9.689,18.482,18.718,20.366,17.026,19.217,15.178,6.012,0.915,4.223,11.716,6.852,7.856,2.332,10.66,12.174,0.379,8.543,12.25,9.854,1.826,10.219,12.144,6.319,1.846,15.144,9.426,0.999,6.704,15.2,10.8,6.829,4.485,12.036,-0.031,3.76,10.034,5.674,-1.972,15.665,14.065,11.309,-2.055,4.704,5.299,8.931,0.601,7.996,4.507,5.904,6.929,14.287,0.632,12.947,12.745,-0.813,-1.045,-0.676,-3.495,1.88,9.874,3.629,6.328,3.468,9.052,7.075,1.473,-3.081,3.428,7.125,-2.967,-3.374,2.522],[20.406,25.904,18.125,33.835,25.908,13.99,25.25,27.99,24.134,15.313,18.495,17.921,20.154,16.204,23.404,23.723,19.319,15.882,11.542,14.019,10.961,17.525,12.403,6.135,13.658,18.877,17.331,5.884,17.347,19.59,5.804,1.847,5.495,8.772,10.025,13.557,8.425,13.523,0.262,5.789,9.998,9.234,1.822,4.953,11.503,15.65,-3.175,13.061,2.424,4.51,10.04,6.938,2.294,6.156,7.876,0.635,-2.348,3.828,-2.238,0.257,5.362,12.756,11.499,-2.903,27.679,14.468,23.566,32.215,22.857,15.405,18.598,26.451,20.734,33.678,25.562,17.956,25.588,28.134,18.558,19.246,13.217,21.72,17.334,26.812,16.76,24.711,13.063,18.762,25.116,16.545,20.829,19.323,14.93,23.195,11.125,5.67,24.002,17.443,13.681,12.392,12.249,16.259,11.886,19.62,12.715,19.231,15.945,24.525,18.65,4.431,17.95,13.257,14.896,17.319,7.186,16.616,12.232,7.242,6.69,10.012,18.123,18.492,20.378,17.278,19.164,15.308,6.415,1.399,3.929,11.329,6.758,7.771,2.939,10.579,12.512,0.617,8.219,12.614,9.434,1.975,10.519,12.14,6.464,1.868,15.199,9.801,0.783,7.215,15.806,10.503,6.873,4.287,11.965,0.365,3.174,10.275,5.62,-1.881,15.806,14.037,11.343,-2.005,4.49,4.809,8.763,0.728,8.013,4.839,6.069,6.76,14.2,0.758,13.426,12.649,-0.292,-1.316,-0.848,-3.222,1.845,9.749,3.834,5.589,3.195,8.911,6.612,1.308,-3.454,3.579,6.899,-2.727,-3.514,2.346],[20.302,25.924,18.044,33.799,25.776,14.256,25.459,28.048,23.965,15.193,18.646,18.124,20.061,16.104,23.551,23.803,19.143,16.075,11.44,13.817,11.071,17.614,12.332,5.96,13.596,18.676,17.14,5.846,17.273,19.556,5.898,1.996,5.442,8.496,9.779,13.813,8.554,13.732,0.344,5.824,9.728,9.518,1.864,5.086,11.673,15.661,-3.074,12.968,2.205,4.648,9.767,7.046,2.192,5.882,7.782,0.941,-2.481,3.842,-2.167,0.301,5.555,12.873,11.551,-3.125,27.726,14.128,23.555,32.605,22.644,15.697,18.409,26.629,20.412,33.291,25.905,18.855,25.309,28.374,18.782,19.042,13.723,22.034,17.381,26.499,16.833,24.96,12.964,18.524,26.163,15.767,20.699,19.611,14.798,23.493,10.716,5.64,24.164,17.146,13.297,12.244,12.162,16.036,11.272,19.562,13.075,19.389,15.814,24.208,18.214,4.484,18.036,13.591,14.939,17.901,6.502,16.584,12.054,7.235,6.626,10.076,18.299,18.414,20.643,17.599,19.129,15.363,6.288,1.0,4.219,11.313,6.642,7.641,2.725,10.162,12.63,1.004,8.929,12.481,8.946,2.807,10.745,11.998,6.479,1.947,15.508,10.034,0.601,7.279,15.507,10.182,6.613,4.403,12.416,0.642,2.575,10.406,5.377,-1.822,16.313,13.685,11.41,-2.384,4.607,4.675,8.958,0.421,8.366,4.433,6.542,6.364,14.23,1.082,13.415,12.771,-0.359,-1.505,-0.753,-3.01,2.103,9.913,3.834,5.766,3.272,8.487,6.889,1.108,-3.843,3.811,7.188,-3.111,-3.323,2.577],[20.223,25.927,18.015,33.835,25.631,14.476,25.827,28.114,23.88,14.972,18.762,18.395,20.009,16.173,23.695,23.928,19.09,16.157,11.287,13.588,11.317,17.651,12.304,5.816,13.546,18.589,16.953,5.757,17.217,19.617,5.92,1.926,5.423,8.223,9.649,13.862,8.524,13.965,0.437,5.982,9.66,9.465,1.992,5.063,11.771,15.649,-2.842,12.782,1.93,4.784,9.42,7.253,2.048,5.772,7.828,1.176,-2.53,3.903,-2.125,0.369,5.744,13.157,11.521,-3.215,27.577,13.995,24.12,32.516,22.174,15.749,18.588,26.856,20.188,33.01,25.743,19.401,24.707,28.499,18.898,18.992,13.43,21.96,17.803,26.552,16.227,24.745,13.277,18.367,26.156,15.532,20.925,19.362,14.836,23.164,10.881,5.509,24.234,17.167,12.844,12.011,12.582,15.786,10.927,19.047,12.732,19.215,16.016,23.33,17.348,4.478,17.962,13.673,14.429,18.026,6.758,16.558,11.545,7.31,6.682,10.011,18.456,17.967,20.282,17.57,19.269,15.595,6.165,0.495,4.632,11.314,6.881,7.348,3.126,10.062,12.505,0.667,8.926,12.587,8.497,2.601,10.832,12.26,6.736,1.917,15.531,10.069,0.65,7.146,15.055,10.097,6.763,4.408,12.648,0.836,2.899,10.382,5.555,-1.39,16.275,14.046,11.119,-2.496,3.995,5.14,8.823,0.298,8.386,4.29,6.853,6.638,14.595,1.385,13.263,12.874,-0.288,-1.539,-0.334,-3.261,2.229,10.142,3.99,5.727,3.327,7.999,6.865,0.804,-3.446,4.094,7.342,-3.535,-3.374,2.677],[20.173,25.865,17.985,33.807,25.524,14.285,26.213,28.253,23.952,14.634,18.91,18.583,20.053,16.405,23.631,24.044,19.276,15.962,11.167,13.336,11.558,17.601,12.228,5.755,13.456,18.445,16.972,5.745,17.176,19.653,5.918,1.879,5.582,8.094,9.551,13.819,8.554,14.11,0.586,6.175,9.762,9.225,2.044,5.05,11.836,15.579,-2.603,12.721,1.71,4.921,9.118,7.478,1.885,5.717,8.036,1.378,-2.486,3.956,-2.147,0.378,5.957,13.355,11.493,-3.282,27.285,14.329,24.111,32.035,22.201,15.535,18.437,26.39,20.214,33.462,25.576,18.164,24.447,28.756,18.496,19.017,13.435,22.088,18.167,26.614,16.225,24.109,13.354,17.942,25.72,15.671,20.797,19.604,15.042,23.504,11.303,5.522,24.307,17.688,12.974,11.96,12.816,16.173,10.601,19.21,12.168,18.988,15.932,22.82,17.523,3.986,18.102,13.538,13.953,17.835,6.698,16.31,11.574,6.856,6.404,10.386,18.35,18.372,20.218,17.413,19.227,15.682,6.367,0.325,4.37,11.026,6.969,7.275,2.829,9.835,12.671,0.213,8.63,13.096,8.265,2.121,10.718,12.615,6.391,2.42,15.584,9.929,0.09,6.879,15.374,10.422,7.239,4.743,12.133,0.54,3.109,10.518,5.841,-1.339,15.772,13.842,10.625,-2.298,4.063,4.901,8.345,0.463,7.676,4.784,6.625,7.115,14.934,1.296,13.396,12.998,-0.21,-1.512,-0.492,-3.04,2.474,10.448,3.652,5.84,3.347,7.575,7.046,0.775,-3.556,4.356,6.717,-3.495,-3.161,2.485],[20.151,25.652,18.021,33.588,25.308,14.019,26.446,28.339,24.039,14.357,18.677,18.685,20.187,16.603,23.612,24.148,19.489,15.776,11.111,12.987,11.789,17.518,12.241,5.706,13.411,18.387,17.281,5.778,17.164,19.595,5.803,1.718,5.765,8.097,9.421,13.923,8.602,14.184,0.813,6.437,9.853,9.139,1.855,5.117,11.972,15.525,-2.572,12.803,1.44,4.844,8.861,7.528,1.814,5.722,8.171,1.523,-2.506,3.969,-2.166,0.22,6.219,13.174,11.501,-3.219,27.328,13.928,24.252,31.937,22.175,15.437,18.473,26.669,20.47,34.035,25.621,18.925,24.433,28.418,18.845,18.909,13.17,21.91,17.527,26.653,16.573,24.146,12.916,17.944,26.11,15.944,20.183,19.657,15.385,23.638,11.197,5.283,24.501,17.69,12.794,11.78,12.573,15.814,10.707,20.114,12.084,18.313,15.57,22.942,18.001,4.154,18.464,13.416,14.111,17.469,6.34,15.684,11.806,6.842,6.218,10.715,18.473,18.364,20.258,17.445,19.123,15.769,6.688,0.733,4.456,10.933,7.044,7.106,2.586,9.845,12.972,0.9,8.828,13.021,7.877,1.951,10.588,12.821,6.276,2.678,15.858,9.764,-0.115,7.105,15.487,10.42,7.082,5.072,11.585,0.902,2.721,10.537,5.872,-1.407,15.644,13.382,10.696,-1.512,4.095,5.212,7.947,0.225,8.014,4.746,6.389,7.62,14.557,0.941,13.595,13.081,0.155,-1.763,-0.344,-2.894,2.643,10.36,3.746,5.832,3.14,7.879,7.473,1.32,-3.845,4.349,6.767,-3.397,-2.945,2.688],[20.127,25.451,17.957,33.427,25.104,13.841,26.42,28.249,23.986,14.199,18.614,18.717,20.353,16.707,23.646,24.287,19.659,15.627,11.071,12.691,11.934,17.22,12.274,5.753,13.249,18.613,17.714,5.801,17.085,19.537,5.656,1.602,6.026,8.031,9.339,14.017,8.686,14.216,1.158,6.642,9.817,9.257,1.792,5.215,12.272,15.563,-2.654,12.951,1.181,4.723,8.876,7.539,1.767,5.739,8.306,1.615,-2.637,3.995,-2.091,0.03,6.438,12.835,11.493,-3.116,27.146,13.667,24.515,31.958,22.354,15.463,19.027,27.086,20.469,33.046,26.217,19.251,24.662,28.291,18.408,19.045,13.137,21.905,17.096,26.281,16.678,24.577,12.48,18.706,26.309,15.95,19.874,19.754,15.607,23.355,10.812,5.052,24.139,17.768,12.617,11.97,12.723,15.156,11.315,20.201,11.791,17.764,15.428,23.781,18.111,4.582,18.36,13.048,13.901,17.514,6.775,15.388,11.675,6.702,6.84,10.58,19.006,17.708,20.23,17.307,19.048,15.703,6.737,0.636,4.89,10.345,6.793,7.017,2.388,9.892,13.387,1.328,9.229,12.991,8.355,1.616,10.61,12.788,6.698,2.804,15.995,10.188,-0.289,7.644,14.861,10.554,7.169,5.021,12.064,1.001,2.042,10.737,5.881,-2.06,16.147,13.518,11.166,-1.306,4.006,5.177,7.654,-0.088,8.685,4.508,6.239,7.257,14.359,0.692,13.269,12.936,0.155,-1.284,-0.274,-3.104,2.659,10.246,3.587,5.693,2.89,7.969,7.024,1.268,-3.627,4.815,7.187,-3.457,-3.193,2.407],[20.096,25.389,17.874,33.131,24.912,13.745,26.295,28.159,23.955,14.161,18.771,18.806,20.535,16.741,23.576,24.486,19.687,15.601,11.067,12.44,12.045,16.907,12.319,5.874,13.076,18.729,18.032,6.158,16.973,19.504,5.551,1.549,6.261,7.911,9.31,13.91,8.866,14.177,1.273,6.597,9.761,9.418,1.877,5.354,12.479,15.613,-2.843,13.125,0.853,4.634,8.996,7.52,1.72,5.755,8.398,1.621,-2.767,3.864,-2.047,-0.061,6.606,12.709,11.592,-2.97,26.912,13.909,24.595,31.682,22.336,15.781,19.974,26.653,20.287,32.51,26.34,18.608,24.632,28.639,18.718,19.169,12.897,22.072,17.347,26.53,16.368,24.229,12.487,19.352,25.79,16.022,19.878,19.857,15.442,23.627,10.496,5.549,24.074,17.998,12.283,11.43,12.876,15.034,11.45,19.828,11.56,17.842,15.227,24.279,18.108,4.318,17.862,12.907,13.572,17.459,6.872,15.042,11.521,7.041,7.02,10.663,19.753,17.2,20.459,17.659,19.045,15.807,6.793,0.373,4.829,10.614,6.166,7.058,1.948,9.631,13.614,1.168,9.161,13.37,8.349,1.845,10.659,12.877,6.65,3.091,15.866,10.603,-0.862,7.463,14.998,10.69,7.6,5.179,13.017,0.694,1.802,11.288,6.146,-1.935,16.127,14.281,10.952,-1.469,4.016,4.626,8.36,0.073,8.606,4.802,6.31,7.062,14.457,0.81,12.706,12.781,0.015,-1.162,-0.293,-3.039,2.719,10.032,3.462,5.482,2.785,7.536,6.589,0.706,-4.065,4.9,7.654,-3.128,-3.35,2.307],[19.966,25.3,17.755,32.806,24.85,13.777,26.069,28.084,23.992,14.143,18.962,19.029,20.764,16.717,23.521,24.776,19.458,15.585,11.063,12.23,12.209,16.984,12.396,5.864,13.031,18.658,18.338,6.589,16.834,19.468,5.606,1.465,6.398,7.801,9.365,13.782,8.851,14.069,1.229,6.511,9.622,9.503,2.028,5.5,12.373,15.59,-2.9,13.416,0.592,4.477,8.994,7.418,1.687,5.764,8.524,1.602,-2.943,3.729,-1.945,-0.011,6.684,12.783,11.796,-2.848,27.046,14.464,24.324,31.133,22.173,15.513,19.898,26.429,20.198,33.162,25.757,19.1,24.325,28.367,18.91,18.958,13.054,22.179,17.726,26.152,15.983,23.818,12.464,19.082,26.152,15.791,20.539,19.598,15.487,23.63,10.575,5.607,24.399,18.181,11.966,11.195,12.915,15.187,10.813,20.203,11.48,17.921,15.08,24.098,17.885,4.16,17.818,13.338,13.251,17.391,6.939,15.133,11.092,7.311,6.727,10.96,19.682,17.541,20.611,18.3,19.1,15.504,7.321,0.106,5.094,10.791,5.733,6.559,2.114,9.449,13.535,1.159,9.131,13.676,7.916,2.061,10.775,12.685,6.925,3.098,15.871,10.359,-1.083,7.314,15.217,10.805,7.437,4.864,12.857,0.583,1.867,10.973,6.143,-1.538,15.767,14.701,10.904,-2.119,3.95,5.015,8.652,0.053,7.629,4.663,6.758,7.589,14.47,1.103,12.555,13.013,-0.102,-1.164,-0.236,-2.926,2.673,10.398,3.532,6.248,2.918,7.382,7.306,0.132,-4.306,4.883,7.411,-2.579,-3.695,2.595],[19.598,25.298,17.641,32.763,24.889,13.887,25.933,27.987,24.002,14.21,19.224,19.225,21.009,16.712,23.55,25.013,19.358,15.542,10.992,12.062,12.312,17.227,12.433,5.602,13.336,18.538,18.493,6.782,16.818,19.578,5.751,1.33,6.538,7.622,9.422,13.708,8.629,14.041,1.224,6.421,9.504,9.61,2.069,5.578,12.034,15.553,-2.858,13.782,0.621,4.402,8.749,7.229,1.645,5.826,8.658,1.562,-3.191,3.763,-1.921,0.087,6.726,12.923,11.925,-2.825,26.686,14.308,24.484,31.167,22.183,15.174,19.425,26.678,19.789,32.978,25.582,18.78,24.049,28.258,18.823,18.766,13.143,21.963,17.346,26.162,15.932,24.736,12.815,18.28,25.772,15.304,20.944,19.693,15.956,23.4,10.825,5.074,24.704,17.708,12.207,11.549,13.057,15.377,10.57,19.477,11.05,17.998,15.079,24.208,18.116,4.006,18.218,13.211,13.137,17.297,7.511,15.434,10.993,7.322,7.316,10.734,19.595,17.895,20.426,18.495,18.657,15.458,7.293,0.263,5.228,10.601,5.951,6.338,2.632,9.416,13.341,1.212,9.243,13.322,7.812,1.706,10.742,12.573,7.065,3.009,15.665,10.307,-0.802,7.588,14.791,10.469,6.874,4.584,12.685,0.861,1.941,10.472,6.208,-1.25,15.948,13.977,10.773,-2.587,4.019,5.089,8.302,0.099,7.415,4.434,7.135,7.983,14.508,1.035,12.823,13.474,0.143,-1.055,-0.158,-2.254,2.497,11.11,3.162,6.653,3.071,7.73,7.311,-0.16,-4.175,4.856,7.129,-2.837,-3.945,2.44],[19.188,25.269,17.496,32.804,25.145,14.008,25.98,27.966,24.242,14.376,19.333,19.255,21.172,16.896,23.494,25.149,19.127,15.429,11.012,11.807,12.255,17.338,12.492,5.208,13.601,18.567,18.487,6.976,16.878,19.746,5.78,1.33,6.553,7.516,9.51,13.596,8.39,13.94,1.295,6.302,9.51,9.74,1.955,5.595,11.79,15.578,-2.819,14.006,0.761,4.367,8.657,7.017,1.58,5.86,8.723,1.568,-3.36,3.789,-2.019,0.01,6.845,13.026,12.029,-3.02,26.523,13.818,24.771,31.211,22.261,15.539,19.914,26.69,19.734,32.973,25.672,18.764,23.574,28.353,19.088,18.153,13.067,21.815,17.061,26.763,16.13,24.721,12.856,18.945,26.024,14.569,21.118,20.193,15.939,23.49,10.42,4.76,24.591,17.279,12.543,12.114,13.179,15.403,10.74,19.611,11.016,18.26,15.178,25.152,18.352,3.772,18.536,13.151,13.169,17.301,7.313,15.574,11.228,7.219,7.598,10.797,19.587,17.837,20.225,18.087,18.555,15.429,7.08,0.496,4.961,10.456,6.758,6.308,2.063,9.176,13.674,0.975,9.249,12.855,7.742,1.181,10.716,12.355,6.769,3.087,15.767,11.094,-0.839,7.338,14.909,10.312,6.8,4.879,13.142,0.731,1.965,10.625,6.322,-1.271,16.212,13.658,10.579,-2.2,4.122,4.76,7.513,0.247,7.725,4.793,6.567,7.675,14.74,1.044,13.194,13.322,0.166,-1.304,-0.27,-2.14,2.467,11.132,2.963,6.424,2.94,7.668,6.223,0.21,-4.251,5.029,7.669,-2.757,-3.816,2.124],[18.843,25.153,17.364,32.787,25.442,13.975,26.198,28.038,24.574,14.526,19.311,19.228,21.342,17.157,23.384,25.288,18.905,15.338,11.143,11.645,12.233,17.294,12.544,4.878,13.727,18.817,18.408,7.162,16.973,19.834,5.78,1.325,6.301,7.458,9.501,13.444,8.107,13.957,1.292,6.239,9.654,10.013,1.739,5.549,11.758,15.697,-2.639,14.002,0.783,4.29,8.641,6.685,1.527,5.875,8.731,1.719,-3.346,3.721,-2.245,-0.154,6.852,13.121,12.08,-3.139,26.601,13.888,24.801,31.147,22.752,16.034,20.216,26.634,19.357,32.932,25.743,19.435,23.578,28.304,19.043,18.227,13.568,21.572,17.067,26.808,15.723,24.837,12.586,19.796,26.291,13.861,20.358,20.258,16.011,23.653,10.484,4.564,24.558,17.065,13.072,12.114,12.675,15.092,10.891,19.347,10.779,18.033,15.178,25.718,18.084,3.653,18.619,13.421,12.731,17.154,7.05,15.546,11.342,6.732,7.194,10.644,19.33,17.84,20.467,17.833,18.957,15.257,7.273,0.244,5.08,10.525,6.946,6.33,1.215,8.961,13.873,1.528,8.866,13.098,7.813,1.355,11.023,12.516,6.674,2.933,15.705,11.049,-0.781,6.872,15.749,10.712,7.078,4.61,13.386,1.018,2.271,10.542,6.602,-1.89,16.285,14.552,10.807,-1.696,4.135,5.281,7.894,-0.173,7.829,4.959,6.66,7.79,14.754,0.992,13.422,13.322,0.081,-1.497,-0.402,-2.655,2.839,10.589,3.037,6.223,2.788,7.532,6.018,0.976,-4.458,5.239,7.669,-3.174,-3.672,2.286],[18.637,25.098,17.174,32.736,25.665,13.895,26.384,28.033,24.759,14.554,19.422,19.247,21.38,17.451,23.356,25.442,18.747,15.343,11.245,11.499,12.158,17.069,12.722,4.749,13.657,18.954,18.27,7.232,17.084,19.721,5.75,1.064,6.105,7.381,9.381,13.407,7.842,14.197,1.242,6.258,9.942,10.347,1.635,5.595,11.849,15.969,-2.446,14.109,0.808,4.341,8.742,6.212,1.476,5.866,8.785,1.861,-3.151,3.709,-2.534,-0.168,6.867,13.179,11.994,-3.285,26.61,13.953,25.045,31.103,22.997,16.263,20.106,26.692,18.795,32.859,26.515,19.351,23.806,28.705,19.177,18.512,13.217,21.701,16.951,26.669,15.574,25.161,12.823,19.618,25.657,13.409,20.207,19.449,16.316,23.402,11.284,4.24,24.989,16.997,13.118,12.092,12.603,14.838,11.691,18.858,10.641,17.637,15.277,25.47,18.32,3.497,18.395,13.712,12.494,17.257,7.301,15.287,11.377,6.697,6.808,10.235,19.214,17.858,20.838,18.103,20.141,15.247,7.442,-0.228,5.073,10.38,6.716,6.003,1.81,9.049,13.314,1.845,8.193,13.298,8.068,1.655,11.877,12.808,6.769,2.828,16.043,10.88,-0.766,6.847,15.781,10.623,7.036,4.482,13.123,0.568,2.172,10.603,6.356,-1.98,16.523,14.682,10.493,-1.457,4.146,4.863,8.344,-0.366,7.598,4.59,6.946,8.04,14.659,0.87,13.505,13.112,0.502,-1.702,-0.773,-3.594,3.216,10.685,3.658,5.897,2.278,7.342,6.473,0.931,-4.541,4.982,7.324,-3.294,-3.422,2.12],[18.648,25.091,16.942,32.653,25.822,13.832,26.49,27.937,24.847,14.354,19.532,19.142,21.381,17.702,23.299,25.55,18.644,15.411,11.459,11.332,11.915,16.751,12.955,4.737,13.562,18.983,18.114,7.159,17.142,19.619,5.778,0.803,6.022,7.307,9.279,13.581,7.685,14.511,1.18,6.261,10.011,10.655,1.601,5.631,12.025,16.265,-2.325,14.268,0.895,4.488,8.942,5.816,1.454,5.742,8.904,2.081,-3.017,3.685,-2.93,-0.046,6.91,13.25,11.9,-3.488,26.773,14.494,25.338,30.93,22.971,16.741,20.008,26.561,18.889,33.016,26.159,18.88,23.97,28.842,19.532,18.331,13.231,21.836,17.058,26.899,15.42,25.301,12.838,18.691,25.569,12.99,20.713,19.251,16.544,23.396,11.474,4.698,24.969,16.818,12.834,11.655,12.82,15.073,11.785,18.941,10.763,17.038,15.393,25.018,18.499,3.194,18.289,14.002,12.678,17.191,7.321,15.063,11.339,7.016,6.856,10.398,19.172,18.014,20.714,18.316,20.687,15.402,7.514,-0.204,4.888,10.152,6.155,6.011,2.081,8.984,13.251,1.636,8.006,13.125,8.392,1.306,12.135,12.566,7.0,2.584,16.031,11.277,-0.79,6.689,15.614,11.13,6.779,4.561,13.443,0.058,1.978,11.062,5.911,-1.482,16.705,14.325,10.393,-1.109,3.936,4.82,8.496,-0.27,7.154,4.482,6.811,8.171,14.59,1.193,12.88,13.362,0.335,-1.836,-1.232,-4.243,2.924,10.622,3.82,5.888,2.205,7.576,5.79,0.729,-3.967,5.21,7.597,-3.101,-3.148,1.966],[18.787,24.998,16.755,32.622,25.886,13.914,26.537,27.953,24.738,14.002,19.624,18.805,21.38,17.931,23.18,25.528,18.583,15.441,11.676,11.271,11.768,16.45,13.099,4.784,13.57,18.997,18.028,7.027,17.119,19.588,5.887,0.607,5.948,7.218,9.283,13.752,7.633,14.672,1.068,6.154,9.93,10.852,1.489,5.559,12.189,16.489,-2.128,14.375,0.869,4.729,8.985,5.592,1.481,5.593,9.071,2.283,-2.901,3.612,-3.376,0.12,7.02,13.294,12.007,-3.516,26.691,15.072,25.268,30.797,22.878,16.992,19.696,26.599,19.116,32.996,25.321,19.219,23.687,28.305,19.494,18.386,13.423,21.364,16.61,27.306,15.59,25.656,12.787,18.981,25.892,12.547,21.024,19.581,16.656,23.571,11.173,4.614,24.828,16.862,13.1,11.762,12.195,15.216,11.098,18.888,10.545,16.933,15.507,24.949,18.417,3.171,18.66,13.951,12.919,17.297,7.347,14.691,11.62,7.464,6.712,10.064,18.9,18.447,20.623,17.712,20.193,15.719,7.468,-0.027,5.078,9.994,5.559,6.09,1.856,8.818,13.763,1.317,7.925,13.437,8.174,1.241,12.005,12.744,7.111,2.847,16.324,11.755,-0.841,6.461,15.778,10.601,6.74,4.487,13.343,0.369,2.272,11.137,6.168,-1.17,16.398,14.76,11.144,-1.281,3.977,5.411,8.625,0.066,6.91,4.841,6.604,7.97,14.631,1.562,13.012,13.669,0.404,-1.817,-1.728,-4.394,3.007,10.717,3.45,6.035,2.249,8.173,5.017,0.936,-4.077,5.452,7.96,-3.159,-3.183,2.243],[18.969,24.677,16.592,32.708,25.991,14.132,26.558,28.092,24.51,13.675,19.751,18.588,21.349,18.125,23.072,25.334,18.629,15.575,11.607,11.391,11.563,16.396,13.338,4.711,13.799,19.007,17.806,6.823,16.953,19.553,5.983,0.547,5.911,7.087,9.299,13.838,7.613,14.787,1.021,6.108,9.878,10.821,1.39,5.644,12.099,16.631,-1.924,14.426,0.737,4.96,8.936,5.538,1.471,5.507,9.151,2.424,-2.93,3.64,-3.673,0.306,7.108,13.333,12.2,-3.284,26.355,15.09,25.162,31.055,22.608,17.131,19.96,26.536,19.538,32.46,25.159,19.325,23.585,28.228,19.306,18.638,13.681,21.258,16.4,27.031,15.091,25.534,12.913,19.438,26.077,12.142,20.976,19.534,16.624,23.408,10.839,4.142,25.201,16.724,13.214,12.272,12.069,14.998,11.48,18.878,10.472,17.233,15.791,25.222,18.213,3.445,18.778,13.779,12.764,17.363,6.738,14.531,11.732,7.414,6.801,9.87,18.414,18.569,20.875,17.7,19.527,15.623,7.285,-0.452,5.067,10.086,5.314,6.239,1.374,8.906,13.844,1.024,7.971,14.052,7.941,1.218,12.114,12.869,7.126,2.79,16.51,11.763,-0.607,6.799,16.049,10.541,6.737,4.351,13.458,0.522,2.337,10.893,5.901,-0.838,16.449,14.791,11.205,-1.501,4.394,5.407,8.577,0.07,6.748,4.587,6.781,8.147,14.552,1.575,13.975,13.811,0.961,-1.682,-1.841,-4.849,2.975,11.458,3.841,6.0,2.584,7.658,5.398,1.04,-4.008,5.319,7.963,-3.299,-3.489,2.001],[19.256,24.453,16.401,32.729,26.024,14.239,26.757,28.179,24.38,13.425,19.736,18.64,21.408,18.272,22.893,25.237,18.776,15.642,11.474,11.569,11.48,16.658,13.661,4.645,14.004,19.118,17.525,6.519,16.82,19.534,5.988,0.477,5.846,7.05,9.285,13.793,7.589,14.735,1.079,6.11,9.856,10.637,1.34,5.662,11.833,16.636,-1.826,14.485,0.719,5.214,8.862,5.511,1.488,5.43,9.149,2.594,-3.019,3.556,-3.853,0.295,7.095,13.356,12.602,-3.0,26.181,14.724,25.086,31.234,22.495,17.239,19.797,26.829,19.774,32.706,25.464,19.195,23.296,29.043,19.162,18.849,13.603,21.225,16.029,26.973,15.19,25.328,13.168,19.377,26.023,11.953,20.551,19.732,17.162,23.27,10.494,4.341,24.733,17.034,13.256,12.214,12.003,15.116,11.573,19.47,10.8,17.122,16.001,24.924,18.11,3.468,18.13,14.07,12.87,17.493,6.316,14.89,11.952,7.645,6.542,9.999,18.236,18.348,20.756,18.211,19.207,15.601,7.251,-0.955,4.858,10.351,5.105,6.078,0.879,8.853,13.758,0.462,8.416,13.525,7.713,1.306,12.147,12.462,7.189,2.946,16.538,11.123,-0.957,7.002,16.348,10.863,6.448,4.324,13.302,0.082,2.038,10.582,5.952,-0.472,16.975,14.723,10.744,-1.137,4.117,5.136,8.566,-0.08,7.044,4.293,7.372,8.676,14.751,1.759,14.143,14.029,0.957,-1.142,-2.199,-4.869,3.462,11.272,4.037,5.863,2.641,7.545,5.554,0.885,-4.153,5.343,7.623,-3.025,-3.468,1.812],[19.592,24.375,16.27,32.833,25.951,14.251,26.949,28.23,24.52,13.222,19.551,18.901,21.352,18.363,22.605,25.161,19.0,15.739,11.407,11.667,11.499,16.926,13.842,4.7,14.104,19.322,17.321,6.145,16.825,19.432,5.989,0.321,5.753,7.076,9.269,13.652,7.666,14.676,1.137,6.115,9.857,10.33,1.287,5.604,11.626,16.674,-1.767,14.583,0.654,5.325,8.792,5.51,1.454,5.337,9.019,2.814,-3.149,3.403,-3.923,0.095,7.154,13.288,12.861,-2.609,25.995,14.467,25.272,30.968,22.678,17.423,19.719,27.055,19.708,33.015,26.255,18.932,23.064,29.252,19.646,19.019,14.098,21.325,15.588,27.383,15.232,25.28,13.087,19.115,26.077,11.711,20.871,19.791,17.141,23.357,10.635,4.413,24.336,17.305,13.493,12.256,12.039,15.65,11.416,19.812,11.059,17.376,15.656,24.59,18.556,3.162,18.372,14.429,13.337,17.457,6.711,15.142,12.456,7.742,5.676,9.997,17.49,18.405,20.944,17.904,19.019,15.553,7.113,-0.326,4.985,10.531,5.197,6.155,0.865,8.75,13.309,0.797,8.003,13.103,8.064,1.181,11.631,12.488,7.055,2.983,16.229,11.037,-1.052,6.864,16.255,10.422,6.487,4.278,13.558,-0.202,1.613,10.711,6.389,-0.842,17.006,14.602,10.761,-0.505,3.637,5.471,8.727,-0.15,7.007,4.498,7.329,8.276,14.708,1.51,13.583,14.202,0.893,-0.844,-2.374,-5.094,3.653,11.285,4.03,5.772,2.858,8.05,5.229,0.628,-4.655,5.259,7.561,-3.052,-3.029,1.782],[19.83,24.292,16.13,33.001,25.882,14.299,27.189,28.275,24.819,13.114,19.39,19.231,21.388,18.331,22.386,25.075,19.276,15.97,11.35,11.735,11.39,17.152,14.023,4.759,14.115,19.66,17.103,5.761,16.914,19.37,6.038,0.331,5.62,7.244,9.299,13.533,7.694,14.606,1.111,6.177,9.801,9.981,1.279,5.641,11.553,16.727,-1.767,14.733,0.442,5.356,8.85,5.364,1.46,5.33,8.82,2.919,-3.323,3.251,-4.017,-0.232,7.157,13.102,13.003,-2.235,25.977,14.073,25.637,31.299,22.996,17.405,19.815,26.636,19.9,33.218,26.527,19.527,22.928,28.575,19.372,19.531,13.99,21.228,16.13,27.071,15.344,25.441,12.748,19.117,25.907,11.616,21.169,19.082,16.976,22.76,10.997,4.255,24.84,17.421,13.415,12.323,12.477,15.819,11.433,20.039,10.827,17.782,15.414,24.727,19.285,3.121,18.349,14.505,13.52,17.769,6.088,15.291,12.446,7.909,6.141,10.066,17.029,17.998,21.105,16.966,18.45,15.366,7.161,-0.613,5.337,10.614,5.575,6.263,1.141,8.992,13.464,1.305,8.075,13.341,8.178,1.102,11.206,12.596,7.139,2.933,16.307,10.887,-1.033,6.83,16.202,9.486,6.731,4.299,13.898,-0.389,1.935,10.777,5.91,-1.178,16.675,14.622,11.326,-0.714,3.453,5.436,8.731,-0.263,6.922,4.276,6.832,7.666,13.931,1.309,12.969,14.058,1.314,-0.3,-2.452,-4.915,3.467,11.624,4.228,5.615,2.683,7.407,5.327,0.452,-4.45,5.404,7.697,-2.761,-3.075,1.96],[19.926,24.177,16.066,33.246,25.874,14.333,27.347,28.123,25.089,13.085,19.379,19.322,21.509,18.266,22.219,25.161,19.544,16.318,11.386,11.818,11.244,17.27,14.007,4.844,14.129,19.772,16.789,5.627,17.03,19.276,6.227,0.438,5.527,7.433,9.504,13.566,7.726,14.633,0.848,6.246,9.62,9.664,1.247,5.608,11.598,16.632,-1.956,14.907,0.622,5.353,8.837,5.3,1.468,5.335,8.73,2.961,-3.346,3.104,-4.195,-0.299,6.95,12.711,13.094,-1.965,25.847,13.827,25.741,31.596,23.295,16.983,19.975,26.894,19.531,32.871,26.431,19.572,22.801,28.453,19.674,19.863,14.175,20.81,16.346,27.036,15.175,25.705,12.92,19.601,26.164,11.765,20.975,19.401,17.151,23.138,10.706,4.551,24.576,17.767,13.544,12.293,11.937,15.766,11.177,20.249,10.775,18.103,15.241,24.592,19.302,3.383,18.268,14.068,13.361,18.183,6.373,15.818,12.359,7.825,6.194,9.684,16.886,17.827,21.444,16.936,17.964,15.235,6.806,-0.893,5.257,10.826,6.029,6.459,1.31,9.224,13.557,1.036,8.507,13.743,7.79,0.845,11.022,12.298,7.192,2.619,16.415,10.35,-0.91,7.081,16.271,8.663,6.875,4.451,13.663,-0.394,2.09,10.448,5.896,-0.952,16.85,15.017,11.144,-1.216,3.687,5.211,8.862,-0.195,6.627,4.064,6.51,8.136,13.563,1.204,12.989,14.239,1.261,-0.422,-2.526,-4.516,3.338,11.826,3.985,5.675,2.361,7.351,5.467,0.101,-4.442,5.337,7.459,-2.188,-3.803,1.531],[19.878,24.047,16.103,33.292,25.984,14.4,27.37,27.958,25.255,13.143,19.538,19.299,21.514,18.201,22.223,25.23,19.664,16.602,11.472,11.867,10.977,17.367,13.919,5.052,14.036,19.694,16.562,5.811,17.026,19.107,6.518,0.479,5.397,7.629,9.742,13.71,7.808,14.546,0.49,6.291,9.314,9.387,1.151,5.606,11.502,16.533,-2.175,15.099,1.025,5.292,8.805,5.299,1.489,5.395,8.827,2.95,-3.32,2.989,-4.334,-0.108,6.681,12.289,13.114,-1.92,25.624,13.678,25.52,31.713,23.518,16.83,20.017,27.036,19.741,32.982,26.439,19.344,22.725,28.548,19.572,19.154,13.956,20.698,16.14,27.082,15.104,25.757,13.671,20.124,26.678,11.678,20.866,19.95,17.486,23.447,10.537,4.433,24.893,18.023,13.593,12.327,11.724,16.198,10.787,20.847,11.437,18.2,15.152,24.542,19.003,3.803,18.62,13.884,13.456,18.31,6.516,15.709,12.455,8.373,5.392,9.808,16.417,17.619,21.014,17.571,18.185,15.531,6.625,-0.134,4.755,11.03,6.072,6.79,1.397,9.273,13.821,0.161,8.944,13.983,7.872,0.655,10.874,12.244,7.121,2.374,16.376,9.886,-0.626,7.27,15.869,8.27,6.933,4.537,14.084,-0.445,2.364,10.682,5.949,-1.061,16.899,15.144,10.399,-1.319,3.762,5.326,8.615,-0.354,6.902,3.568,6.519,8.497,13.775,1.616,12.948,14.376,1.067,-0.471,-2.601,-4.828,3.383,11.592,3.834,5.536,2.45,7.945,5.277,0.032,-4.736,4.867,7.183,-2.102,-3.803,1.135],[19.81,23.954,16.165,33.186,26.029,14.559,27.413,27.838,25.288,13.229,19.712,19.352,21.521,18.085,22.271,25.276,19.666,16.628,11.565,12.131,10.715,17.411,13.898,5.277,13.876,19.573,16.475,5.863,16.841,19.103,6.86,0.647,5.155,7.791,9.938,13.94,7.981,14.396,0.16,6.38,8.936,9.192,1.001,5.626,11.372,16.461,-2.191,15.283,1.393,5.372,8.89,5.211,1.495,5.508,9.025,2.897,-3.262,2.837,-4.434,0.085,6.552,12.069,13.095,-1.974,25.773,13.525,25.601,31.64,23.42,16.794,20.182,26.871,20.329,32.916,25.993,19.509,22.873,29.042,20.025,19.054,13.854,20.755,16.345,27.186,15.105,26.253,13.449,20.128,26.576,11.594,20.542,19.28,17.134,23.418,11.199,4.453,24.782,17.889,13.335,12.01,11.818,16.673,10.7,20.762,11.228,18.019,15.225,24.722,18.908,3.984,18.352,14.124,13.741,18.464,6.291,15.678,12.367,8.774,5.805,9.983,16.702,17.283,20.707,17.232,18.15,15.681,6.396,0.11,4.704,10.957,6.033,6.761,1.197,9.462,13.742,-0.748,8.878,13.802,8.231,1.057,10.255,12.532,6.861,1.829,16.229,10.005,-0.141,7.573,15.839,8.465,6.81,4.562,14.203,-0.742,2.369,10.559,6.344,-1.433,16.784,15.41,10.033,-1.232,4.052,4.934,8.256,-0.168,6.889,3.373,6.659,8.073,13.571,1.729,12.477,13.944,1.205,-0.094,-2.683,-5.377,3.225,11.357,4.282,5.103,2.868,7.808,5.308,0.14,-4.792,4.659,7.503,-2.568,-3.267,1.054],[19.91,24.043,16.334,33.156,26.163,14.68,27.367,27.917,25.248,13.222,19.92,19.259,21.575,17.894,22.29,25.187,19.476,16.515,11.723,12.382,10.538,17.407,13.867,5.333,13.757,19.478,16.479,5.752,16.533,19.092,7.119,0.857,4.812,7.849,10.134,14.102,8.223,14.359,-0.216,6.479,8.651,9.004,0.895,5.626,11.297,16.363,-2.006,15.405,1.512,5.532,8.892,5.107,1.617,5.57,9.1,2.891,-3.045,2.751,-4.665,0.176,6.618,11.841,13.033,-1.998,25.853,13.628,25.975,31.562,23.417,16.492,19.961,26.714,20.082,32.609,25.991,19.898,22.907,29.027,20.025,19.739,14.195,20.553,16.019,27.521,14.93,25.933,13.116,20.179,26.227,11.376,21.087,19.059,16.867,23.24,10.822,5.165,25.052,17.646,13.476,11.883,11.966,16.02,10.852,20.01,11.249,18.089,15.313,24.758,18.798,3.894,17.954,14.113,13.96,18.425,6.792,15.514,12.234,8.533,5.91,9.63,17.195,17.5,20.751,16.381,18.405,15.969,6.177,-0.397,4.95,10.989,6.466,6.889,1.462,9.66,13.204,-1.218,8.841,13.655,8.555,1.346,10.337,12.583,7.148,1.606,16.219,9.961,0.017,7.816,16.093,8.332,6.996,4.633,13.835,-0.707,2.924,10.541,6.361,-1.389,17.005,15.452,9.979,-0.944,3.888,5.248,8.441,-0.082,6.248,3.541,6.853,7.855,13.348,1.766,12.539,13.46,1.193,-0.505,-2.977,-4.999,3.048,11.52,4.085,5.689,2.633,7.752,5.467,0.253,-4.335,4.883,8.34,-3.021,-3.642,1.216],[20.163,24.215,16.54,33.178,26.267,14.749,27.241,28.168,25.184,13.108,20.099,19.119,21.519,17.739,22.236,25.103,19.193,16.452,11.781,12.521,10.442,17.303,13.767,5.32,13.719,19.38,16.473,5.673,16.269,19.03,7.138,1.083,4.567,7.92,10.342,14.171,8.483,14.481,-0.546,6.452,8.438,8.852,0.942,5.765,11.3,16.227,-1.824,15.403,1.53,5.661,8.826,4.996,1.814,5.636,9.24,2.949,-2.966,2.901,-4.848,0.1,6.809,11.749,12.817,-2.029,25.766,13.778,25.841,31.499,23.388,16.525,19.779,26.858,19.971,32.721,26.498,19.565,22.685,28.188,19.914,19.557,14.05,20.685,16.087,27.489,15.251,25.613,13.638,20.08,26.085,11.379,21.646,18.948,16.819,22.523,10.77,4.694,24.941,17.381,13.754,11.898,11.614,15.454,11.006,20.124,11.615,18.328,15.217,24.866,18.927,3.795,18.108,13.867,14.232,18.17,6.577,15.68,12.266,8.913,5.022,9.355,17.44,17.308,20.887,15.952,18.665,16.184,5.809,-0.14,4.518,11.512,7.007,7.152,1.839,9.701,13.179,-1.071,9.309,13.69,8.466,1.197,10.253,12.528,7.504,1.192,16.076,9.271,-0.035,7.824,16.042,8.148,7.431,4.739,13.982,-0.789,2.997,10.9,5.95,-1.302,16.861,15.412,9.985,-0.656,3.93,5.446,8.988,-0.109,6.294,3.643,6.792,8.108,13.175,1.756,12.675,14.036,1.25,-0.577,-3.004,-5.01,2.808,11.79,4.251,6.003,2.672,7.297,5.429,0.294,-4.38,4.951,8.135,-3.329,-2.989,1.289],[20.396,24.15,16.74,33.292,26.252,14.614,27.229,28.225,24.966,13.002,20.161,19.066,21.335,17.623,22.098,25.057,18.954,16.43,11.614,12.683,10.269,17.25,13.627,5.187,13.798,19.347,16.476,5.445,16.058,19.163,7.075,1.305,4.301,8.082,10.575,14.098,8.803,14.647,-0.805,6.341,8.276,8.603,0.921,5.949,11.438,16.058,-1.759,15.353,1.559,5.852,8.895,4.996,2.095,5.717,9.371,2.992,-2.904,3.039,-4.871,-0.055,6.985,11.805,12.616,-2.041,25.874,13.738,25.724,31.634,23.238,16.131,19.765,27.419,20.315,33.027,26.676,19.662,22.805,28.818,19.95,19.727,14.256,20.594,16.791,27.265,15.472,26.216,13.793,19.852,25.415,11.442,21.378,18.84,16.911,22.653,11.822,4.437,24.722,17.496,13.242,11.967,11.514,15.735,11.477,20.319,11.652,18.366,14.871,24.62,18.857,4.115,18.132,13.655,14.248,18.322,6.003,15.535,12.039,8.571,5.076,9.646,16.842,16.777,20.857,15.899,18.344,15.865,5.682,0.101,4.209,11.575,7.461,7.167,2.6,9.736,13.352,-0.342,9.597,13.7,8.824,1.218,9.856,12.618,7.701,1.013,16.304,9.379,-0.119,7.786,16.107,7.961,7.202,5.19,14.008,-0.738,2.713,10.503,5.732,-1.482,16.258,15.628,9.859,-0.711,4.253,4.986,8.62,0.331,6.569,4.036,6.874,9.079,13.031,1.312,12.697,14.278,1.638,-0.278,-3.063,-5.628,2.998,11.582,4.783,5.282,2.734,7.332,5.306,0.517,-4.471,5.23,7.698,-2.837,-2.474,1.527],[20.544,24.019,16.903,33.373,26.381,14.492,27.123,28.312,24.875,12.902,20.082,19.049,21.21,17.53,21.968,25.079,18.968,16.506,11.396,12.897,10.215,17.125,13.437,5.126,13.864,19.407,16.453,5.086,15.844,19.3,7.081,1.565,4.01,8.141,10.786,13.816,9.088,14.761,-0.847,6.257,8.297,8.424,0.82,6.116,11.529,15.915,-1.83,15.352,1.526,6.03,8.945,5.128,2.373,5.812,9.501,3.024,-2.596,3.083,-4.94,-0.206,7.189,11.799,12.434,-1.876,25.733,13.586,25.321,32.033,22.985,15.898,19.782,26.964,20.615,32.701,26.821,19.486,22.942,29.034,20.09,19.706,13.789,20.695,16.621,27.25,15.44,25.634,13.059,19.68,25.396,11.4,20.671,19.658,17.253,23.217,12.393,4.898,24.523,17.151,12.768,12.059,11.395,16.055,12.012,19.782,11.662,18.056,14.668,24.094,18.904,3.749,18.154,13.826,14.236,18.405,5.755,15.741,12.148,8.851,5.702,9.816,16.619,16.643,20.461,15.857,18.066,15.682,5.497,-0.01,4.05,11.55,7.207,7.281,2.456,9.882,13.837,0.143,9.832,13.522,9.257,1.467,9.743,12.632,7.874,0.125,16.518,9.316,-0.042,8.167,16.123,7.558,7.165,5.448,13.818,-0.814,2.576,10.727,6.049,-1.54,16.55,15.168,9.741,-0.648,4.302,5.12,8.31,0.525,6.338,4.232,6.748,9.039,13.022,0.858,12.847,13.831,1.866,-0.291,-3.141,-5.638,3.628,11.122,4.928,5.172,2.75,8.194,5.06,0.281,-4.085,5.679,7.943,-2.018,-3.126,1.479],[20.441,23.986,16.942,33.274,26.462,14.214,26.999,28.337,24.851,12.81,19.8,19.015,21.229,17.569,21.846,25.104,18.957,16.55,11.255,13.192,10.175,17.083,13.276,5.245,13.785,19.521,16.229,4.823,15.592,19.257,7.209,1.695,3.795,8.116,11.0,13.52,9.377,14.848,-0.999,6.309,8.419,8.304,0.804,6.284,11.677,15.921,-1.88,15.403,1.609,6.131,8.99,5.08,2.51,6.076,9.53,3.145,-2.331,3.214,-5.051,-0.4,7.407,11.808,12.243,-1.741,25.67,13.215,25.162,31.774,23.04,15.991,20.041,26.836,20.887,32.51,26.783,19.814,22.73,28.831,20.215,19.444,14.334,21.263,16.456,27.877,15.734,26.21,12.914,19.81,25.631,11.32,19.811,20.023,17.127,23.192,12.167,4.594,24.561,17.088,12.776,12.022,11.701,15.872,11.799,19.693,11.758,17.992,14.794,24.259,18.951,3.785,18.217,14.202,14.6,18.367,5.285,15.344,12.475,8.939,5.228,9.696,16.99,17.139,19.943,16.22,18.409,15.509,5.054,0.291,3.914,12.127,7.025,7.308,1.855,9.905,14.585,0.024,10.243,13.174,9.127,1.2,9.821,12.433,8.072,-0.209,16.71,8.73,-0.174,8.48,15.604,7.432,7.193,5.074,13.785,-1.026,2.614,11.154,6.19,-1.487,16.577,15.199,9.55,-0.58,4.465,5.586,8.381,0.627,6.557,4.316,6.658,8.228,13.011,0.603,12.722,13.36,1.484,-0.168,-3.219,-5.531,3.472,10.691,4.792,5.639,3.297,8.204,5.477,-0.262,-3.431,5.949,8.484,-1.806,-3.068,1.316],[20.198,23.99,16.975,33.135,26.672,14.039,27.004,28.33,24.821,12.747,19.756,18.947,21.308,17.576,21.811,25.131,18.923,16.479,11.21,13.483,10.147,17.083,13.318,5.303,13.721,19.684,15.96,4.637,15.469,19.198,7.313,1.6,3.631,8.068,11.143,13.337,9.63,14.873,-1.18,6.409,8.535,8.156,0.715,6.4,11.973,15.964,-1.796,15.595,1.762,6.184,8.968,4.985,2.608,6.476,9.487,3.092,-2.1,3.287,-5.18,-0.593,7.482,11.804,12.07,-1.676,25.652,12.802,25.571,31.513,23.189,16.022,20.593,27.322,20.551,33.023,26.28,19.277,22.54,28.919,19.88,19.173,13.79,21.953,16.533,27.989,15.679,26.315,12.935,19.572,25.254,11.179,20.067,19.095,17.1,22.482,11.58,4.729,24.975,17.362,13.126,11.852,11.542,15.62,10.783,20.047,12.123,17.803,15.244,25.001,18.667,4.597,18.184,13.85,15.045,18.339,5.088,15.33,11.718,8.792,4.167,9.662,16.628,17.34,19.395,16.464,18.232,15.05,4.833,0.639,3.976,12.505,7.114,7.334,2.119,9.819,14.328,-0.427,10.545,12.674,9.5,1.107,9.72,12.756,8.253,-0.085,16.806,8.525,-0.064,8.952,15.522,8.037,6.931,4.632,14.165,-0.977,2.804,10.74,6.068,-1.388,16.219,15.073,9.486,-0.744,4.742,5.644,8.729,1.012,6.556,4.298,7.025,8.444,12.765,0.414,12.783,13.33,1.341,-0.172,-3.626,-5.207,3.387,10.657,4.642,6.292,4.246,7.654,5.199,-0.195,-3.368,5.889,8.292,-1.864,-2.724,1.677],[20.057,24.044,17.061,33.15,26.948,13.909,26.922,28.462,24.831,12.75,19.867,18.622,21.513,17.389,21.922,25.255,18.888,16.374,11.04,13.803,10.016,17.023,13.338,5.274,13.738,19.799,15.752,4.425,15.558,19.165,7.373,1.577,3.62,8.011,11.237,13.174,9.886,14.676,-1.261,6.349,8.51,8.025,0.593,6.53,12.164,15.948,-1.682,15.75,1.843,6.178,8.724,4.787,2.917,6.79,9.507,2.906,-2.041,3.236,-5.297,-0.734,7.379,11.717,11.876,-1.682,25.583,12.701,25.454,31.656,23.066,15.868,20.79,27.246,20.119,33.222,26.579,19.54,22.63,29.023,20.019,19.133,13.577,22.253,16.66,27.714,15.63,25.854,13.308,19.568,25.259,11.229,20.171,18.247,16.594,21.855,11.258,5.294,25.465,17.557,13.006,11.949,11.654,15.355,11.38,20.396,12.309,17.808,15.753,25.046,18.643,3.846,18.032,13.359,15.043,18.106,5.467,15.287,11.667,9.168,3.949,9.725,15.82,17.136,19.201,16.09,18.008,15.135,4.948,0.191,3.58,12.389,7.67,7.341,2.372,9.832,13.815,-0.877,10.557,12.896,9.74,0.985,9.453,13.111,8.327,0.01,16.474,8.866,0.14,9.257,15.644,8.548,6.639,4.504,14.261,-0.746,3.092,11.389,6.371,-1.063,16.414,15.728,9.885,-0.694,5.1,5.338,9.306,1.515,6.035,4.624,7.354,8.99,12.661,0.126,13.048,13.473,1.422,0.173,-3.763,-5.237,3.199,11.442,5.411,6.544,4.147,8.285,4.712,-0.338,-3.266,5.576,8.019,-2.247,-2.321,1.863],[19.913,24.01,17.159,33.301,27.113,13.961,26.793,28.518,24.857,12.818,20.01,18.098,21.626,17.103,22.02,25.465,18.971,16.262,11.09,14.045,9.852,16.932,13.277,5.161,13.711,19.913,15.514,4.332,15.782,19.098,7.64,1.52,3.65,8.06,11.251,13.305,10.082,14.44,-1.299,6.067,8.395,8.047,0.514,6.603,12.299,15.964,-1.552,15.839,1.902,6.259,8.72,4.565,3.256,7.004,9.713,2.686,-2.14,3.226,-5.375,-0.883,7.209,11.67,12.079,-1.691,25.547,12.452,25.22,31.536,23.286,15.921,20.269,27.078,19.915,32.603,27.341,19.855,22.819,29.711,19.992,19.5,13.741,22.399,16.828,28.078,15.914,26.066,13.012,19.666,24.961,11.174,20.518,18.163,16.239,22.112,11.487,5.122,24.947,17.171,13.251,11.932,11.542,15.423,11.066,20.157,12.306,17.765,16.116,24.912,19.009,3.466,18.173,13.875,14.917,18.076,5.451,15.237,12.264,9.269,4.278,9.617,15.522,16.754,19.44,15.773,18.355,14.755,5.09,0.045,3.782,12.42,7.594,7.088,2.45,9.298,13.767,-0.728,10.63,12.781,9.449,1.421,8.953,12.938,8.259,-0.049,16.26,9.126,0.255,9.181,15.792,7.737,7.19,4.339,14.054,-1.033,3.104,11.602,6.414,-1.178,16.371,16.053,10.09,-0.516,5.417,4.929,9.189,1.677,5.951,4.589,7.452,8.538,12.415,0.146,13.039,13.595,1.728,0.064,-3.847,-5.92,2.959,10.851,5.587,6.168,4.405,8.078,5.17,-0.393,-3.559,5.376,8.676,-2.686,-1.992,1.74],[19.801,23.873,17.274,33.291,27.337,14.057,26.777,28.54,24.864,12.855,20.064,17.815,21.48,16.919,22.125,25.543,19.114,16.306,11.276,14.154,9.758,16.865,13.303,5.032,13.814,20.082,15.187,4.312,16.076,19.118,7.869,1.357,3.685,8.072,11.174,13.201,10.229,14.397,-1.335,5.785,8.191,8.13,0.473,6.593,12.238,16.052,-1.473,15.83,1.837,6.276,8.909,4.615,3.626,7.016,9.843,2.592,-2.215,3.29,-5.538,-1.066,7.063,11.597,12.333,-1.719,25.623,12.389,25.262,31.734,23.328,15.502,20.006,27.713,20.203,32.721,27.013,19.726,22.624,29.716,20.126,19.1,13.702,22.245,16.966,28.438,15.854,26.392,13.097,19.026,24.92,11.384,21.137,17.534,16.37,23.111,12.283,4.9,25.309,17.262,12.822,12.046,11.133,15.949,11.39,19.332,12.526,17.618,16.01,25.226,18.82,3.782,18.328,14.012,15.209,18.072,4.839,15.15,11.904,9.809,4.795,9.512,16.043,16.338,20.021,15.68,18.161,15.045,5.094,0.278,3.889,12.261,7.689,7.482,2.28,8.661,13.505,-0.459,10.769,12.744,9.486,1.003,9.609,13.121,8.123,0.107,16.117,8.569,0.294,8.918,15.778,7.488,7.016,4.147,14.321,-1.169,3.133,11.236,5.921,-1.607,16.308,15.753,9.699,-0.242,6.053,5.529,8.702,1.722,6.257,4.196,7.113,8.398,12.282,0.341,12.994,13.698,1.533,0.052,-3.985,-6.018,2.716,10.852,5.05,5.954,4.417,8.216,4.558,-0.472,-3.692,5.218,9.131,-2.779,-2.144,1.544],[19.739,23.725,17.307,33.177,27.44,14.107,26.798,28.75,24.92,12.829,19.963,17.837,21.403,16.767,22.355,25.527,19.197,16.55,11.564,14.256,9.635,16.82,13.207,5.048,14.016,20.241,14.956,4.37,16.304,19.161,8.086,1.249,3.802,8.018,11.119,12.76,10.269,14.519,-1.321,5.533,8.014,8.274,0.397,6.516,12.057,16.125,-1.566,15.78,1.772,6.266,9.093,4.665,3.781,7.066,9.892,2.595,-2.295,3.322,-5.778,-1.193,7.02,11.521,12.574,-1.73,25.342,12.9,25.162,31.826,23.107,15.326,19.981,27.211,19.952,33.207,27.241,19.873,22.581,29.364,20.389,18.696,13.989,21.886,17.025,28.654,15.939,26.774,13.332,18.364,24.961,11.514,20.72,18.168,16.347,23.315,12.561,4.617,25.623,17.459,13.033,12.213,11.292,15.777,12.073,19.665,12.636,17.887,15.441,25.209,18.823,3.775,18.412,14.085,15.453,18.465,4.183,15.093,11.671,9.808,4.366,9.67,16.0,16.685,20.399,15.32,18.035,14.611,5.299,-0.14,3.533,12.023,8.15,7.682,1.783,8.428,13.28,-0.588,10.495,12.338,9.291,0.354,9.969,12.576,8.219,-0.029,16.213,8.476,-0.091,8.899,15.717,8.008,6.237,3.759,14.295,-1.04,2.874,11.297,6.315,-1.502,16.54,15.212,9.239,-0.296,5.548,5.611,9.213,2.009,6.218,4.17,6.799,8.69,11.952,0.11,13.13,13.68,1.148,0.015,-4.135,-5.588,3.048,11.558,4.838,6.219,4.47,8.893,4.508,-0.8,-3.349,5.292,8.843,-2.632,-2.021,1.469],[19.644,23.683,17.339,33.049,27.404,14.249,26.825,28.86,25.0,12.852,19.826,17.91,21.302,16.682,22.499,25.452,19.27,16.857,11.925,14.38,9.601,16.862,13.155,5.128,14.204,20.314,14.778,4.302,16.397,19.149,8.255,1.096,3.92,7.984,11.063,12.264,10.202,14.651,-1.313,5.257,7.902,8.463,0.337,6.587,11.964,16.157,-1.754,15.693,1.583,6.172,9.396,4.526,3.729,7.134,9.781,2.571,-2.268,3.368,-5.871,-1.284,7.162,11.513,12.896,-1.744,25.238,12.998,25.061,31.247,23.27,15.287,20.165,27.338,19.505,33.118,27.499,19.842,22.316,29.506,20.062,19.044,13.539,21.771,17.275,28.249,16.13,26.915,13.379,18.558,24.944,11.852,20.108,18.736,16.055,23.223,12.584,4.533,25.073,17.574,12.553,12.418,11.363,15.592,12.085,20.479,12.763,17.976,15.232,25.021,18.704,3.913,18.038,14.344,15.695,18.49,4.52,15.264,11.97,9.436,4.375,9.584,15.38,17.671,20.543,14.814,18.633,14.207,5.398,-0.152,3.838,12.092,8.698,7.084,2.154,8.257,13.431,-0.692,9.959,11.899,9.226,0.265,9.949,12.809,8.398,-0.16,16.378,8.583,0.027,8.887,16.107,8.189,5.399,3.484,14.333,-1.418,2.928,10.95,6.269,-1.56,16.324,15.368,9.03,-0.761,5.609,5.239,9.956,2.085,5.768,4.317,7.014,9.034,11.802,-0.494,12.97,14.052,1.016,0.087,-4.644,-6.223,3.333,11.494,5.315,6.667,4.963,8.5,5.185,-0.519,-3.61,5.353,8.384,-2.173,-1.879,1.638],[19.553,23.73,17.486,32.94,27.208,14.445,26.905,29.061,25.05,12.94,19.724,18.034,21.15,16.703,22.491,25.284,19.296,16.883,12.191,14.436,9.626,17.005,13.093,5.182,14.252,20.167,14.531,4.291,16.532,19.234,8.325,0.929,4.149,7.82,11.05,11.959,10.004,14.768,-1.351,5.007,7.689,8.646,0.14,6.707,11.941,16.17,-1.87,15.667,1.348,6.038,9.663,4.386,3.624,7.136,9.606,2.534,-2.163,3.464,-5.995,-1.301,7.376,11.497,13.063,-1.65,25.252,12.414,25.233,31.334,23.26,15.493,20.04,27.725,19.438,32.641,26.934,19.435,22.241,29.782,19.699,19.139,13.63,22.115,17.358,28.419,16.054,26.862,13.582,18.647,25.106,12.036,20.242,18.478,15.774,23.166,12.573,4.879,24.912,17.804,12.393,12.448,11.502,15.824,12.585,20.624,13.265,17.723,15.432,25.317,19.08,3.719,17.992,14.641,15.784,18.697,5.015,15.163,11.611,9.659,4.187,9.342,15.07,18.145,20.394,14.573,18.418,13.674,5.603,0.019,3.992,12.337,9.178,6.778,2.361,8.678,13.413,-0.445,9.563,11.34,9.38,0.625,9.489,13.234,8.335,-0.212,16.388,9.081,0.117,8.934,16.479,7.964,5.166,3.185,14.682,-1.486,2.964,11.466,6.285,-1.51,16.351,15.984,9.379,-1.136,5.682,4.933,9.866,2.264,5.461,4.337,7.443,8.78,12.193,-0.958,13.081,14.225,0.869,0.162,-5.009,-6.235,3.122,11.406,5.237,6.531,5.242,8.902,4.974,-0.435,-3.452,5.583,8.375,-2.125,-2.134,1.892],[19.471,23.695,17.706,32.989,26.996,14.758,26.9,29.387,25.074,12.966,19.545,18.111,21.06,16.825,22.429,25.257,19.311,16.761,12.305,14.49,9.687,17.118,13.023,5.125,14.214,19.996,14.226,4.354,16.664,19.291,8.501,0.783,4.444,7.58,11.17,11.716,9.724,14.791,-1.333,4.827,7.475,8.702,0.087,6.859,12.089,16.282,-1.874,15.783,1.205,5.92,9.767,4.409,3.559,7.016,9.633,2.428,-2.024,3.579,-6.108,-1.225,7.494,11.61,13.058,-1.55,25.114,11.918,25.336,31.467,23.379,15.574,19.415,27.674,19.689,32.54,26.407,19.982,22.115,29.775,19.786,18.917,14.168,22.225,17.234,28.144,16.292,26.713,13.407,18.606,25.383,11.918,20.449,17.858,16.146,23.206,12.312,4.789,24.655,17.492,12.95,12.414,11.423,16.007,13.155,20.304,12.974,17.681,16.048,25.272,19.104,3.62,18.694,14.347,15.772,18.659,4.666,15.477,11.467,10.05,3.877,9.465,15.382,18.352,19.532,14.517,17.893,13.6,5.854,-0.618,4.102,12.108,9.029,7.094,1.953,9.118,14.015,-0.949,9.88,10.987,9.367,0.303,9.591,12.808,8.297,0.042,16.553,9.332,-0.313,8.526,16.152,7.439,5.715,3.059,14.401,-1.611,2.771,11.221,6.041,-1.324,16.732,16.231,9.199,-0.586,6.038,5.047,10.059,2.376,5.8,4.42,7.806,8.241,12.374,-1.003,12.884,14.103,0.833,0.319,-5.221,-5.772,2.648,11.605,4.632,5.968,5.137,9.304,4.78,-0.643,-3.086,5.631,8.783,-2.032,-2.481,1.814],[19.449,23.489,17.924,33.152,26.807,15.043,26.818,29.531,25.191,12.906,19.371,18.063,20.956,17.065,22.456,25.28,19.38,16.832,12.319,14.366,9.726,17.264,13.227,4.901,14.263,19.813,13.936,4.312,16.812,19.208,8.763,0.533,4.686,7.356,11.257,11.572,9.481,14.838,-1.246,4.782,7.26,8.714,0.089,6.913,12.159,16.524,-1.752,15.842,1.004,5.883,9.762,4.57,3.461,6.956,9.771,2.246,-1.919,3.584,-6.1,-1.056,7.498,11.742,13.033,-1.465,25.071,11.924,25.294,31.277,23.284,15.87,19.49,28.047,20.086,33.101,26.051,20.033,22.123,30.33,19.851,18.397,13.906,22.05,17.514,27.856,16.897,26.199,14.071,18.764,25.374,11.626,20.274,17.53,16.469,23.027,12.182,4.386,24.843,17.356,12.799,12.371,11.388,15.52,12.327,19.96,12.666,17.787,16.186,24.67,18.875,4.003,18.436,14.245,15.538,18.555,4.545,15.538,11.69,10.211,3.981,9.735,15.533,18.054,18.642,14.378,17.861,13.258,5.885,-0.781,4.683,12.123,8.556,7.21,2.024,9.117,14.922,-1.303,10.002,10.534,9.53,0.277,10.074,12.299,8.554,0.207,16.789,9.026,-0.657,7.825,15.808,7.836,6.097,3.099,14.395,-1.614,2.077,11.129,6.099,-1.483,16.819,16.361,8.675,-0.724,6.028,5.479,10.17,2.067,5.901,4.786,7.611,8.486,13.037,-0.857,12.724,14.383,0.876,0.383,-5.173,-6.476,2.643,11.609,4.34,5.601,4.908,8.618,5.17,-1.05,-2.819,5.703,8.799,-2.026,-1.962,2.05],[19.445,23.325,18.151,33.308,26.631,15.086,26.701,29.409,25.292,12.737,19.35,17.837,20.945,17.311,22.567,25.274,19.504,16.908,12.201,14.057,9.686,17.313,13.559,4.727,14.452,19.556,13.72,4.207,16.94,19.004,8.903,0.341,4.888,7.243,11.292,11.419,9.368,14.984,-1.176,4.898,7.314,8.761,0.061,6.869,12.164,16.765,-1.745,15.896,0.695,5.948,9.672,4.611,3.259,6.81,9.898,2.104,-1.778,3.598,-6.135,-0.9,7.49,11.918,12.953,-1.419,24.982,12.153,25.325,31.691,23.572,15.911,19.679,28.06,20.148,33.092,26.446,19.334,22.147,30.472,19.495,18.849,13.979,22.354,17.868,27.946,16.937,26.341,14.024,19.463,24.99,11.187,20.199,17.846,16.642,22.647,12.053,4.564,25.174,17.786,12.997,12.652,11.368,15.518,12.426,20.41,12.642,18.054,15.769,24.371,18.999,3.564,17.892,14.583,15.398,18.672,4.622,15.548,12.003,10.484,4.253,9.811,15.184,17.438,18.394,14.363,18.127,13.171,6.426,-0.701,4.236,12.381,9.233,6.296,1.688,9.051,15.257,-0.89,9.794,10.268,9.429,0.527,10.304,12.122,8.573,0.54,16.596,8.966,-1.067,8.077,16.383,8.167,5.918,3.068,14.429,-1.301,1.627,11.44,6.471,-1.35,16.681,16.304,7.631,-0.891,6.124,5.548,9.599,1.635,5.908,4.758,6.998,9.22,13.126,-0.688,12.769,14.227,0.632,0.55,-4.955,-5.945,2.798,11.707,4.778,5.658,4.514,8.468,5.313,-1.063,-2.812,5.902,8.391,-2.089,-1.595,1.979],[19.51,23.242,18.362,33.376,26.673,14.959,26.586,29.224,25.425,12.468,19.369,17.74,20.993,17.542,22.705,25.256,19.616,16.861,12.064,13.819,9.686,17.286,13.845,4.707,14.697,19.247,13.562,4.187,16.988,18.834,9.074,0.305,5.008,7.129,11.289,11.344,9.391,15.107,-0.908,5.084,7.453,8.906,0.109,6.785,12.223,16.974,-1.761,15.896,0.363,6.052,9.559,4.54,2.932,6.654,10.018,2.044,-1.592,3.594,-6.05,-0.881,7.514,12.002,12.905,-1.445,25.036,12.456,25.293,31.988,23.715,16.29,19.386,27.565,20.058,32.805,26.699,19.319,22.326,29.707,19.195,19.443,14.452,22.386,18.341,27.958,16.813,26.536,13.435,19.457,24.83,10.726,20.396,17.474,16.749,23.067,11.674,4.495,25.115,18.257,13.559,13.057,11.193,16.32,12.552,21.306,12.369,18.202,15.482,24.457,18.517,3.229,18.41,14.949,15.206,18.645,4.84,15.575,12.297,10.227,3.616,9.54,14.751,17.312,18.544,14.592,18.094,12.856,6.336,-0.678,4.302,12.275,10.07,6.022,1.316,8.682,14.932,-0.76,9.753,10.291,9.591,-0.137,10.214,12.535,8.378,0.511,16.75,8.651,-1.345,8.085,16.829,8.033,5.518,3.238,14.804,-1.344,1.483,11.568,6.369,-1.43,16.992,15.959,6.956,-0.91,5.631,5.387,9.464,1.269,5.965,4.345,6.739,9.127,12.942,-0.451,13.178,14.023,0.266,0.407,-5.135,-5.634,2.806,11.782,5.15,5.574,4.069,8.733,4.782,-0.461,-2.704,6.219,8.596,-2.048,-1.917,1.943],[19.626,23.343,18.533,33.383,26.985,14.91,26.507,28.889,25.506,12.229,19.4,17.653,20.964,17.749,22.845,25.302,19.834,16.828,11.863,13.68,9.661,17.213,14.019,4.769,14.916,18.896,13.556,4.17,17.032,18.951,9.316,0.337,5.032,6.951,11.301,11.369,9.404,15.139,-0.611,5.23,7.543,8.882,0.049,6.624,12.366,17.227,-1.712,15.798,0.093,6.161,9.492,4.412,2.609,6.508,10.006,2.032,-1.586,3.555,-5.936,-0.892,7.586,12.02,13.036,-1.544,24.904,12.456,25.499,31.899,23.782,16.185,19.672,27.707,20.093,32.734,26.049,19.678,22.263,29.428,19.34,19.017,14.361,22.301,18.223,27.925,17.277,26.137,13.538,19.282,24.966,10.375,19.975,17.707,17.043,23.706,11.42,4.407,24.554,18.279,13.422,13.284,11.301,16.042,12.348,21.247,11.994,18.35,15.536,24.341,17.662,3.058,18.195,15.221,14.937,18.792,4.9,15.395,12.61,9.758,3.682,9.384,13.996,17.902,19.07,15.077,17.836,12.55,5.981,-0.8,4.82,11.95,10.291,6.336,1.759,8.687,14.41,-0.523,9.567,10.212,9.401,-0.098,10.154,12.92,8.403,0.782,16.845,8.644,-1.273,7.973,16.022,7.934,5.687,3.578,14.507,-1.696,1.654,11.423,5.985,-0.99,17.604,15.948,6.323,-1.245,5.625,5.86,9.796,0.981,5.772,4.535,7.122,8.804,12.269,-0.371,13.729,14.189,0.589,0.18,-5.305,-5.791,2.476,11.636,5.094,5.531,3.88,8.722,4.429,-0.829,-2.592,5.81,8.938,-2.131,-1.635,2.012],[19.673,23.426,18.635,33.281,27.205,15.017,26.48,28.587,25.443,12.04,19.513,17.798,20.908,17.731,23.025,25.262,19.908,16.781,11.542,13.603,9.642,17.163,13.96,4.738,15.127,18.525,13.658,4.086,17.117,19.195,9.364,0.474,5.081,6.91,11.157,11.457,9.354,15.1,-0.278,5.347,7.467,8.701,-0.108,6.433,12.484,17.411,-1.635,15.627,0.086,6.36,9.489,4.304,2.371,6.428,9.896,2.105,-1.764,3.603,-5.946,-0.903,7.515,12.049,13.225,-1.529,24.971,11.95,25.761,31.533,23.764,16.105,19.645,27.306,20.0,32.967,25.908,20.044,22.089,29.486,19.451,19.091,14.321,22.515,17.804,28.269,17.442,26.605,13.638,18.718,24.91,10.479,20.261,17.531,17.583,23.612,11.775,4.679,24.295,18.276,13.12,13.348,11.495,15.587,12.571,20.931,12.06,18.019,15.876,24.751,17.399,3.125,18.326,15.229,14.842,18.607,4.866,15.331,12.467,10.565,3.977,9.367,13.609,18.199,18.927,15.454,18.018,12.543,6.075,-0.713,4.373,12.33,10.537,6.528,1.983,8.389,13.837,-0.229,9.251,9.895,9.327,0.165,9.708,12.97,8.083,1.097,16.564,8.995,-1.293,8.26,15.953,8.373,6.122,3.721,14.307,-1.404,1.663,11.668,5.96,-0.933,17.331,16.092,6.093,-0.725,5.678,5.885,10.109,0.86,5.244,4.819,7.74,8.81,11.77,-0.915,13.852,14.598,0.448,0.223,-5.243,-5.359,2.502,11.763,5.066,5.395,3.954,8.477,4.893,-0.577,-2.639,5.785,8.6,-2.841,-1.716,2.029],[19.671,23.505,18.534,33.152,27.322,15.207,26.412,28.394,25.276,11.804,19.622,17.933,20.853,17.697,23.221,25.226,19.809,16.704,11.303,13.524,9.629,17.104,13.707,4.74,15.178,18.167,13.866,4.022,17.324,19.429,9.475,0.627,5.077,6.988,11.104,11.502,9.269,14.999,0.007,5.374,7.294,8.602,-0.212,6.385,12.565,17.393,-1.504,15.464,0.287,6.558,9.551,4.317,2.241,6.434,9.78,2.234,-1.911,3.695,-5.975,-0.856,7.499,12.093,13.339,-1.546,24.407,11.342,25.63,31.542,23.521,16.31,19.134,27.409,20.317,32.932,26.077,19.932,21.863,29.507,19.525,19.165,14.561,22.503,17.909,28.219,17.116,27.197,13.812,18.72,24.842,10.424,20.544,17.843,17.028,23.43,11.212,4.375,24.304,17.974,13.132,13.283,11.423,15.908,12.272,20.814,12.168,18.087,15.968,25.052,17.771,3.769,19.147,15.398,14.916,18.41,4.696,15.393,12.422,10.981,3.966,9.387,13.207,18.068,17.933,15.415,18.787,12.656,6.328,-0.441,4.073,12.281,10.249,6.968,2.335,8.522,13.793,-0.355,9.503,9.881,9.354,-0.092,8.91,12.93,8.064,1.298,16.535,8.432,-1.303,8.208,17.264,8.305,5.359,3.699,14.554,-0.772,1.757,11.567,6.099,-1.087,17.187,15.976,6.152,-0.583,5.202,5.646,10.042,1.018,5.619,4.902,7.673,8.988,11.767,-1.495,13.993,14.968,0.575,0.21,-5.016,-5.425,3.044,12.289,5.518,5.258,3.946,8.399,4.787,-0.04,-2.978,5.571,8.286,-2.481,-2.0,2.436],[19.771,23.506,18.26,33.085,27.358,15.364,26.325,28.296,25.098,11.412,19.733,18.056,20.711,17.629,23.348,25.313,19.712,16.706,11.091,13.444,9.575,17.165,13.626,4.782,15.022,17.779,14.099,4.025,17.576,19.722,9.572,0.706,5.033,7.065,11.166,11.423,9.152,14.984,0.086,5.229,7.111,8.413,-0.105,6.537,12.6,17.357,-1.407,15.351,0.471,6.64,9.701,4.413,2.219,6.367,9.773,2.491,-1.89,3.844,-6.045,-0.719,7.489,12.15,13.49,-1.56,24.683,10.942,25.208,31.437,23.346,16.336,19.321,27.18,20.404,32.839,25.555,19.51,21.771,29.394,19.443,19.266,14.53,22.935,17.807,28.383,16.97,27.109,14.05,19.243,24.931,10.015,19.996,18.157,16.42,23.965,10.907,4.518,24.339,17.923,12.677,13.297,11.306,15.805,11.392,20.757,11.947,18.23,15.9,24.42,17.92,4.29,18.785,15.115,14.594,18.526,4.549,15.359,12.229,10.656,3.728,9.413,13.152,17.793,16.949,15.036,19.73,12.96,6.319,-0.388,4.498,12.372,10.312,7.554,2.36,8.815,13.771,-0.368,10.026,10.751,9.469,-0.204,9.139,12.796,8.434,1.295,16.531,8.165,-0.894,7.979,17.953,8.02,5.515,3.46,14.82,-0.976,2.033,11.476,6.181,-0.573,17.436,15.781,5.908,-0.694,5.248,6.018,9.626,0.769,5.99,4.779,7.063,8.836,12.568,-1.223,13.9,14.515,0.753,0.218,-5.059,-5.504,3.073,12.234,5.656,5.365,3.676,8.554,4.549,-0.536,-3.215,5.875,8.478,-1.828,-1.941,2.199],[19.947,23.426,18.048,33.06,27.258,15.343,26.301,28.23,24.972,10.966,19.7,18.286,20.559,17.446,23.517,25.451,19.671,16.754,10.986,13.25,9.571,17.362,13.588,4.968,14.735,17.332,14.159,4.015,17.709,19.949,9.617,0.553,5.247,7.263,11.373,11.346,9.063,15.008,-0.03,5.03,6.96,8.19,0.111,6.637,12.627,17.363,-1.318,15.237,0.565,6.659,9.893,4.507,2.119,6.388,9.748,2.679,-1.939,3.887,-6.092,-0.513,7.409,12.311,13.418,-1.374,25.14,10.862,25.656,31.477,23.236,16.369,19.546,26.784,20.159,32.399,25.542,19.798,22.284,29.147,19.199,19.692,14.489,23.174,18.311,28.59,16.471,26.851,14.026,19.629,25.05,9.31,19.5,17.862,16.895,24.581,11.213,4.596,24.8,18.075,12.919,12.984,11.225,15.819,11.603,21.052,11.824,18.345,16.101,24.151,17.347,3.58,18.671,14.457,14.524,18.538,4.693,15.481,12.06,10.392,3.621,9.196,13.856,17.873,16.787,15.016,19.87,12.962,5.948,-0.38,4.495,12.236,10.219,7.156,2.207,8.442,13.854,-0.239,10.027,11.7,9.606,0.393,9.43,12.65,8.479,1.313,16.534,8.052,-0.681,7.769,17.951,8.01,6.202,3.45,14.841,-1.115,2.281,11.264,6.03,-0.343,17.589,15.859,5.311,-0.593,5.882,6.053,9.043,0.53,5.867,4.982,6.496,8.676,12.91,-1.194,13.756,14.671,1.368,0.46,-5.375,-5.826,2.929,12.07,5.343,5.47,3.465,8.911,4.506,-0.518,-2.965,6.065,8.593,-1.491,-2.067,2.373],[20.169,23.432,17.957,33.011,27.118,15.208,26.315,28.203,24.932,10.643,19.591,18.508,20.442,17.354,23.745,25.643,19.747,16.96,11.267,13.08,9.615,17.545,13.57,5.029,14.423,16.974,14.027,3.964,17.793,20.125,9.503,0.365,5.376,7.376,11.528,11.373,9.039,15.042,-0.204,4.876,6.824,7.997,0.461,6.461,12.652,17.475,-1.211,15.163,0.671,6.595,9.901,4.594,2.019,6.597,9.607,2.875,-2.121,3.844,-6.143,-0.295,7.237,12.402,13.228,-1.029,25.242,10.367,25.595,31.47,23.178,15.867,18.977,26.992,20.177,32.454,25.787,19.625,22.982,28.711,19.047,19.445,14.644,23.145,17.787,28.084,16.585,27.029,13.56,20.247,24.867,8.985,19.873,17.511,16.682,24.428,11.521,4.902,25.203,18.094,13.327,12.484,11.235,15.925,12.188,21.252,11.841,18.383,16.242,24.456,16.825,3.467,19.078,14.593,14.43,18.496,4.768,15.731,12.1,10.797,3.994,9.175,14.441,17.936,17.55,15.221,19.516,12.706,6.313,-0.822,4.441,12.521,10.078,7.099,1.948,8.302,13.916,-0.284,9.45,12.182,9.775,0.565,9.515,12.68,8.253,1.354,16.541,8.406,-0.823,7.516,17.239,7.682,6.223,3.432,14.104,-1.049,2.171,11.713,5.644,-0.654,17.54,15.856,5.191,-0.753,5.476,6.146,9.017,0.768,5.717,5.202,6.333,8.794,12.65,-1.366,14.117,14.749,1.702,0.743,-5.337,-5.423,3.006,11.931,5.122,5.825,3.218,9.181,5.212,-0.177,-3.15,5.939,8.306,-1.863,-2.056,2.625],[20.298,23.582,17.982,32.948,27.079,15.136,26.369,28.143,24.957,10.378,19.459,18.776,20.368,17.201,23.877,25.862,19.776,17.179,11.561,12.971,9.687,17.557,13.634,5.136,14.389,16.782,13.915,4.068,17.812,20.241,9.316,0.121,5.356,7.535,11.597,11.42,8.982,15.077,-0.375,4.724,6.576,8.093,0.803,6.3,12.81,17.536,-1.129,15.057,0.813,6.583,9.623,4.778,2.078,6.848,9.504,3.02,-2.426,3.79,-6.092,-0.098,7.02,12.42,13.042,-0.817,25.437,9.714,25.372,31.31,23.098,15.854,18.684,26.954,20.837,32.705,25.36,19.597,23.004,29.277,18.697,19.277,14.558,22.999,17.135,28.396,16.533,26.714,13.763,20.488,24.975,9.102,20.292,17.719,16.12,24.247,11.645,4.748,25.154,18.148,13.177,12.515,11.543,16.043,11.942,20.869,11.465,18.725,16.406,25.062,17.237,3.401,19.262,14.587,14.505,18.912,4.58,15.913,11.912,10.947,3.574,9.418,13.797,17.69,17.995,14.764,19.532,12.352,6.298,-0.933,4.517,12.48,9.494,7.061,1.94,7.96,14.006,-0.131,8.966,12.739,9.863,0.693,9.398,12.913,8.055,1.007,16.773,8.202,-0.873,7.608,16.724,7.601,6.253,3.113,13.866,-0.392,2.036,11.74,5.566,-0.963,17.817,15.814,5.524,-0.856,5.505,6.079,9.511,0.387,5.924,4.883,6.768,8.554,12.175,-1.593,14.266,14.679,2.078,0.776,-5.481,-5.636,3.197,11.845,5.197,5.652,3.035,8.593,5.536,-0.511,-3.196,5.249,8.392,-1.948,-1.569,2.309],[20.447,23.871,17.918,32.91,27.164,15.331,26.245,28.297,24.889,10.178,19.33,19.016,20.401,16.959,23.709,25.922,19.723,17.306,11.571,12.869,9.79,17.563,13.635,5.193,14.439,16.657,13.881,4.181,17.734,20.408,8.974,-0.03,5.238,7.675,11.5,11.495,8.899,15.128,-0.569,4.78,6.304,8.372,1.041,6.307,13.064,17.499,-1.164,14.932,0.878,6.64,9.384,4.917,2.122,6.849,9.427,3.143,-2.592,3.741,-6.044,0.059,6.908,12.327,12.88,-0.815,25.395,9.242,25.431,31.289,23.185,16.35,18.87,26.873,20.729,32.448,25.418,19.428,22.639,29.393,18.244,19.287,14.337,23.177,17.473,28.221,16.418,26.573,13.986,20.717,25.196,9.003,20.142,18.34,16.103,24.628,11.441,4.863,25.012,18.09,12.888,12.627,11.439,16.391,12.214,20.832,11.373,18.85,16.644,25.799,17.444,3.619,19.697,14.698,14.213,19.085,4.64,15.818,12.169,10.598,4.07,9.531,12.909,17.533,17.859,14.248,19.315,12.031,6.245,-1.119,4.335,12.737,9.394,7.214,1.58,7.787,13.9,0.174,9.073,12.945,9.871,0.853,9.673,13.108,8.217,1.016,16.735,7.901,-0.565,7.517,17.051,7.375,5.918,3.122,13.995,-0.484,2.55,11.383,5.58,-0.791,17.538,15.61,6.661,-0.371,6.168,6.109,9.727,0.315,6.227,4.574,7.071,8.167,12.371,-1.403,13.968,14.559,2.286,1.049,-5.867,-5.315,3.156,11.573,5.467,5.804,3.097,8.218,5.15,-0.643,-3.911,4.917,8.573,-1.327,-2.316,2.193],[20.522,24.145,17.859,32.924,27.232,15.612,26.16,28.568,24.849,10.024,19.05,19.244,20.519,16.994,23.456,25.831,19.61,17.324,11.519,12.747,9.732,17.717,13.53,5.254,14.392,16.484,13.901,4.267,17.677,20.652,8.662,-0.073,4.97,7.778,11.344,11.508,8.852,15.067,-0.518,5.051,6.215,8.461,1.002,6.379,13.152,17.448,-1.128,14.857,0.961,6.819,9.363,4.891,2.081,6.785,9.207,3.263,-2.727,3.734,-6.081,0.245,6.995,12.226,12.967,-0.878,25.291,9.145,25.468,31.624,22.993,15.537,19.043,27.132,20.314,32.392,25.449,19.166,22.735,29.039,18.709,19.699,14.826,23.2,18.01,28.328,16.02,27.44,14.167,20.584,24.907,8.878,19.892,18.417,16.034,24.387,11.454,4.76,24.917,18.08,12.531,12.525,11.527,16.477,11.791,21.14,11.273,18.485,16.771,25.698,17.133,3.978,19.282,14.6,14.089,19.145,5.088,15.79,12.453,10.176,4.305,9.345,13.465,17.104,17.627,14.372,19.599,12.065,6.422,-1.386,4.222,12.594,8.974,7.755,1.527,7.535,14.237,-0.226,9.588,12.968,9.673,0.799,10.016,13.117,8.185,0.893,16.504,8.669,-0.218,7.184,17.292,7.177,5.921,3.339,14.056,-0.654,2.616,11.696,5.782,-0.679,17.804,15.167,7.326,-0.698,5.909,6.212,9.655,0.636,5.701,4.898,6.792,8.341,13.016,-0.988,13.677,14.144,2.345,0.78,-5.374,-5.584,3.139,11.381,5.669,5.553,3.252,8.982,5.315,-0.251,-3.951,5.161,7.977,-1.213,-3.171,2.156],[20.43,24.276,17.871,32.949,27.383,15.854,26.167,28.596,24.86,9.96,18.738,19.3,20.603,17.043,23.227,25.749,19.484,17.243,11.464,12.679,9.588,17.824,13.443,5.374,14.116,16.392,14.103,4.343,17.654,20.762,8.475,-0.068,4.716,7.857,11.139,11.45,8.915,14.944,-0.425,5.338,6.117,8.429,0.836,6.475,13.046,17.418,-1.084,14.878,1.066,7.07,9.486,4.835,1.985,6.735,9.073,3.321,-2.839,3.76,-6.157,0.399,7.065,12.366,13.016,-1.03,25.569,9.462,25.631,31.635,23.083,15.598,19.344,27.071,20.456,32.35,25.192,18.932,22.807,29.583,19.28,19.94,15.123,23.099,17.454,28.666,16.237,27.752,14.517,20.574,24.93,8.799,20.003,18.728,16.52,23.6,11.608,4.523,25.018,18.055,12.181,12.332,11.464,16.322,11.612,20.762,11.245,18.948,17.757,24.918,16.913,4.243,19.242,14.771,14.113,18.725,4.475,16.06,12.291,10.078,3.652,9.375,14.112,16.083,16.732,15.011,20.384,12.495,5.83,-1.15,3.86,12.308,8.61,8.045,1.291,7.642,14.394,-0.269,9.493,12.809,9.571,1.153,9.851,13.168,8.263,1.085,16.521,8.782,-0.388,7.6,17.107,7.135,6.285,3.662,13.99,-0.511,2.649,12.028,5.95,-0.481,18.074,14.729,7.114,-0.687,5.83,6.179,9.566,0.855,5.378,4.951,6.626,8.253,12.775,-0.85,13.838,14.339,2.804,0.566,-4.933,-5.925,3.357,11.501,5.661,5.746,3.429,8.623,5.671,0.887,-3.54,5.439,7.778,-1.028,-3.063,2.242],[20.294,24.184,17.822,32.908,27.603,16.025,26.143,28.436,24.906,9.983,18.615,19.278,20.694,17.254,23.029,25.617,19.334,17.12,11.443,12.628,9.517,17.912,13.35,5.539,13.953,16.272,14.455,4.232,17.547,20.844,8.413,-0.095,4.464,8.038,11.025,11.456,9.11,14.878,-0.389,5.543,5.92,8.218,0.843,6.629,12.92,17.355,-1.046,14.848,1.263,7.099,9.548,4.87,1.934,6.621,9.259,3.395,-2.756,3.803,-6.175,0.69,7.024,12.722,12.98,-1.081,25.809,9.945,25.365,31.487,23.001,16.012,19.353,27.264,20.586,32.376,25.365,18.586,22.844,29.84,18.732,19.272,15.19,22.914,17.112,28.212,16.782,27.34,14.588,21.049,25.131,8.885,19.996,18.379,16.6,23.237,11.326,5.046,25.299,18.115,12.202,12.175,11.308,15.735,11.754,20.508,11.372,19.245,18.67,24.97,17.055,4.156,19.64,13.702,14.342,18.537,4.742,16.275,11.972,9.799,3.72,9.329,14.131,16.096,16.251,15.372,19.882,12.424,5.156,-0.837,4.15,12.11,9.186,7.937,1.634,8.129,13.942,-0.212,9.282,12.409,9.384,1.023,9.803,13.279,8.569,1.298,16.404,8.053,-0.409,7.739,16.775,7.128,6.762,3.885,14.197,-0.571,2.349,11.463,6.102,-0.737,17.442,15.253,6.664,-0.441,5.848,6.529,9.644,0.346,6.001,4.649,6.656,8.191,12.606,-0.702,14.104,14.672,3.719,0.499,-5.341,-5.834,3.478,11.634,5.63,5.705,3.437,8.336,5.183,1.197,-3.963,5.334,8.23,-1.559,-2.599,2.161],[20.177,23.986,17.766,32.947,27.69,16.044,26.264,28.142,24.888,9.909,18.622,19.242,20.787,17.477,22.927,25.623,19.176,16.874,11.472,12.644,9.553,17.957,13.366,5.626,13.929,16.144,14.784,4.109,17.491,20.838,8.449,0.002,4.29,8.34,10.965,11.425,9.325,14.765,-0.421,5.651,5.811,7.911,0.925,6.705,12.957,17.162,-1.047,14.805,1.386,6.897,9.461,4.967,1.846,6.592,9.448,3.615,-2.568,3.799,-6.184,1.065,6.857,12.961,13.049,-1.156,25.62,10.368,25.136,31.461,23.111,16.025,19.289,27.036,20.249,32.277,25.535,18.395,22.799,29.561,17.828,18.945,15.031,22.421,17.152,28.656,16.105,26.559,14.746,20.828,25.026,9.043,20.146,18.545,16.445,23.61,11.382,5.255,25.097,18.168,12.288,12.207,11.349,15.73,12.084,20.665,11.533,18.684,18.996,24.806,16.997,4.115,19.893,13.466,14.141,18.661,5.019,16.088,12.105,10.149,3.746,9.464,13.986,16.857,16.636,15.03,19.287,12.707,5.141,-1.116,3.731,12.507,9.085,7.959,1.39,8.788,13.286,-0.212,9.73,11.899,9.452,1.416,9.686,12.91,8.507,1.357,16.331,7.731,-0.185,7.473,17.083,6.739,6.879,4.029,13.988,-0.347,2.701,11.533,6.037,-0.805,17.56,16.37,6.386,-0.74,5.521,6.323,9.663,0.14,6.163,4.64,6.806,8.233,13.025,-0.318,14.595,14.313,3.681,0.726,-5.637,-5.368,3.42,11.786,5.571,5.442,2.825,8.363,5.515,0.776,-3.84,5.051,8.404,-1.96,-2.313,2.142],[20.064,23.778,17.614,33.087,27.668,16.034,26.419,27.911,24.729,9.826,18.65,19.187,20.887,17.466,22.869,25.625,19.127,16.735,11.628,12.719,9.775,17.849,13.432,5.632,13.918,16.046,14.841,4.041,17.589,20.691,8.407,0.05,4.111,8.78,10.939,11.328,9.49,14.569,-0.399,5.681,5.898,7.64,1.072,6.69,13.141,17.078,-1.239,14.897,1.425,6.61,9.309,5.106,1.724,6.693,9.435,3.876,-2.417,3.81,-5.963,1.328,6.719,12.91,13.147,-1.234,25.387,10.652,25.443,31.7,22.928,16.353,19.358,26.498,19.822,32.141,25.558,18.568,22.513,29.285,17.611,19.618,15.048,22.77,17.304,29.086,15.876,26.466,14.759,20.919,25.388,8.206,20.594,18.546,16.257,23.656,11.99,5.084,24.751,17.831,11.994,12.161,11.481,15.716,11.724,20.388,11.23,18.583,19.164,24.704,16.65,4.036,19.733,14.341,14.249,18.398,4.633,16.038,12.674,10.092,3.656,9.768,14.384,17.467,17.363,15.037,19.505,12.983,5.57,-1.141,3.389,12.389,8.432,8.024,1.369,9.303,13.076,-0.281,10.273,11.05,9.774,1.318,9.344,13.36,8.454,1.202,15.914,7.545,0.045,7.703,16.702,5.987,6.8,4.096,14.276,-0.121,2.936,12.189,5.94,-0.72,17.77,16.591,5.795,-0.449,5.384,5.686,9.879,0.035,6.317,4.728,6.493,8.531,12.964,-0.043,14.708,14.438,2.75,0.503,-5.479,-5.265,3.637,11.681,5.807,5.529,2.764,8.33,5.911,0.369,-3.878,4.936,8.231,-1.767,-2.278,2.084],[20.142,23.623,17.527,33.235,27.736,16.012,26.516,27.857,24.501,9.718,18.684,19.162,21.062,17.296,22.916,25.349,19.146,16.795,11.819,12.846,10.032,17.787,13.385,5.541,13.99,16.036,14.728,3.985,17.749,20.481,8.135,0.093,4.006,9.187,11.035,11.182,9.554,14.467,-0.377,5.603,5.953,7.531,1.188,6.705,13.302,17.097,-1.499,15.101,1.294,6.404,9.232,5.238,1.626,6.791,9.428,3.979,-2.494,3.891,-5.538,1.317,6.659,12.652,13.197,-1.341,25.148,10.85,25.409,31.835,22.858,16.339,19.783,26.782,20.198,32.486,25.64,18.696,22.179,29.33,18.273,19.184,15.145,23.024,17.128,28.837,16.066,26.701,14.572,20.945,25.694,8.468,20.371,18.584,16.29,22.971,11.647,4.925,24.853,17.748,12.005,12.186,11.836,15.388,12.012,19.943,11.445,18.812,19.442,24.921,16.286,4.484,19.149,13.943,13.455,18.377,4.749,15.971,12.258,9.709,4.005,9.882,14.369,18.166,17.633,15.287,20.047,12.561,5.286,-0.83,3.907,12.599,8.842,8.237,1.629,9.62,12.976,-0.241,10.041,10.22,9.8,1.189,8.913,13.799,8.608,1.262,15.986,7.429,-0.151,7.735,16.602,5.812,6.871,4.043,14.529,-0.06,2.652,12.096,6.05,-1.057,17.424,16.07,5.326,-0.524,5.889,5.238,10.257,0.111,6.153,4.878,6.532,8.397,12.881,-0.174,14.276,14.781,2.575,0.522,-5.383,-5.798,3.921,11.786,5.544,6.017,3.182,8.369,6.138,0.73,-3.792,4.913,8.375,-1.952,-1.934,2.143],[20.308,23.564,17.473,33.403,27.912,15.857,26.691,28.022,24.403,9.737,18.849,19.167,21.236,17.158,23.016,24.909,19.034,17.01,11.881,12.925,10.194,17.926,13.139,5.567,13.971,16.203,14.595,4.181,18.037,20.324,7.913,0.254,4.037,9.539,11.159,11.004,9.507,14.553,-0.485,5.444,5.982,7.516,1.27,6.784,13.301,17.084,-1.843,15.269,1.008,6.249,9.25,5.269,1.603,7.063,9.439,3.871,-2.657,3.993,-5.247,1.221,6.659,12.48,13.348,-1.489,25.048,10.652,25.006,31.791,22.502,15.516,19.921,26.634,20.518,32.813,25.365,18.463,22.287,29.052,18.745,18.988,15.11,22.255,16.693,28.409,15.986,26.889,14.388,20.591,25.767,8.968,20.499,18.401,16.645,22.88,11.62,4.431,24.88,17.999,12.39,12.307,12.159,15.449,12.737,20.398,11.882,18.742,19.562,24.676,15.916,4.69,19.099,13.609,12.885,18.41,4.868,16.13,11.833,8.833,3.713,9.918,14.063,17.773,17.009,15.196,19.631,12.061,5.025,-0.922,3.997,12.423,8.87,8.775,1.325,9.275,13.072,-0.344,9.813,9.757,9.378,1.529,8.891,13.232,8.599,1.318,16.016,7.405,-0.665,7.737,17.026,5.878,7.024,3.922,14.538,-0.022,2.135,12.285,6.275,-1.022,17.629,15.42,4.891,-1.013,5.867,5.662,10.052,0.133,6.034,5.175,6.73,8.019,12.684,-0.141,13.987,14.607,3.408,0.309,-4.293,-4.941,4.209,12.055,4.982,5.871,3.183,8.238,6.369,0.995,-3.536,4.886,8.683,-2.009,-2.418,2.384],[20.294,23.667,17.427,33.463,28.009,15.625,26.803,28.143,24.314,9.947,19.065,19.127,21.348,17.057,23.042,24.529,18.96,17.168,11.952,12.962,10.112,18.124,12.997,5.665,13.799,16.471,14.597,4.445,18.404,20.283,7.695,0.338,4.18,9.799,11.051,10.807,9.422,14.611,-0.626,5.392,5.968,7.561,1.298,6.831,13.245,17.097,-2.15,15.267,0.747,6.253,9.301,5.272,1.54,7.313,9.383,3.793,-2.853,4.098,-4.907,1.309,6.68,12.477,13.648,-1.67,25.04,9.911,24.813,31.83,22.603,15.432,20.038,26.539,20.564,33.037,25.959,18.456,22.223,28.7,18.793,19.597,14.701,22.146,16.197,28.734,16.143,26.801,14.365,20.35,25.724,8.558,20.293,17.994,16.791,23.318,12.031,4.925,24.318,18.12,12.072,12.244,11.931,15.919,12.247,20.447,12.333,19.178,18.944,24.134,15.4,4.552,19.298,13.585,12.799,18.619,5.073,16.444,11.761,8.067,3.886,10.045,13.888,17.387,16.485,15.031,19.145,11.624,5.161,-0.519,3.55,11.949,9.153,8.971,1.582,8.709,14.002,-0.706,9.647,9.866,9.357,1.546,8.898,13.262,8.701,1.211,16.198,7.578,-0.852,7.575,16.526,6.305,6.788,3.974,14.803,-0.17,2.067,12.08,6.333,-1.531,17.501,15.708,4.398,-1.221,6.269,5.755,9.108,0.039,5.491,5.091,6.836,8.197,12.358,-0.058,14.216,14.871,3.481,0.155,-3.52,-4.64,3.556,12.048,4.694,6.335,2.961,8.054,6.217,0.367,-4.104,4.838,8.84,-1.92,-3.019,2.421],[20.223,23.83,17.199,33.492,27.931,15.359,26.868,28.092,24.262,10.105,19.2,19.046,21.381,16.984,23.071,24.244,19.002,17.035,11.987,13.083,9.85,18.282,13.003,5.865,13.67,16.574,14.683,4.623,18.741,20.313,7.502,0.361,4.329,9.808,10.931,10.529,9.323,14.865,-0.733,5.56,5.89,7.663,1.164,6.912,13.177,17.051,-2.204,15.269,0.64,6.301,9.255,5.08,1.553,7.555,9.388,3.673,-3.137,4.122,-4.586,1.388,6.622,12.669,13.9,-1.774,25.053,9.364,25.237,32.001,22.509,15.912,19.999,26.804,20.481,32.666,26.149,18.724,22.111,29.121,18.782,19.525,14.304,22.588,15.978,29.278,16.301,27.007,14.226,20.407,25.659,8.716,20.631,17.867,16.01,23.645,12.173,5.384,23.691,17.671,11.718,11.954,11.59,15.829,12.17,19.927,12.096,19.062,18.626,23.797,15.179,4.203,19.432,13.447,12.977,18.781,5.299,16.466,11.938,7.537,4.293,9.697,14.062,17.726,17.243,15.439,19.114,11.966,5.628,-0.195,3.811,11.07,9.277,9.116,1.872,8.751,14.427,-0.85,9.329,10.159,9.093,0.894,9.037,13.337,8.782,0.976,16.726,7.744,-0.672,7.589,16.163,6.59,6.584,3.891,15.048,-0.292,2.044,11.928,6.042,-1.723,17.829,16.179,4.182,-1.112,6.359,5.647,8.564,-0.219,5.674,4.997,6.922,7.879,12.265,0.293,14.257,14.984,3.142,0.017,-4.068,-4.918,3.486,12.592,5.099,6.759,2.595,8.239,5.879,0.249,-4.407,4.831,8.911,-2.219,-2.801,2.522],[20.2,23.931,16.788,33.57,27.852,15.12,26.952,28.094,24.294,10.259,19.335,18.985,21.659,16.87,23.259,24.048,19.004,16.744,11.973,13.244,9.547,18.343,12.996,5.987,13.69,16.656,14.794,4.787,19.013,20.319,7.334,0.381,4.577,9.805,10.727,10.301,9.195,15.26,-0.807,5.739,5.87,7.849,0.885,6.918,13.036,17.069,-1.954,15.336,0.543,6.256,9.092,4.808,1.603,7.72,9.465,3.562,-3.358,4.129,-4.418,1.302,6.481,12.911,14.007,-1.874,25.31,9.38,25.161,32.213,22.617,15.668,20.312,26.57,20.027,32.539,25.778,18.617,22.378,28.913,18.755,19.069,14.434,22.7,15.627,29.342,15.609,27.079,13.683,20.561,26.072,8.969,20.886,18.052,15.9,23.193,11.808,5.593,23.475,17.376,12.14,12.152,11.458,15.287,12.752,19.759,11.91,18.81,19.429,23.874,15.11,4.353,19.067,13.528,13.1,18.295,5.346,16.537,11.864,7.247,4.026,9.326,14.337,18.488,17.902,15.723,19.814,11.902,5.776,-0.674,4.292,11.211,9.089,8.363,1.617,9.167,14.451,-0.682,9.182,10.456,9.293,0.309,9.046,13.267,8.71,0.998,16.866,7.445,-0.581,7.559,17.066,6.737,6.66,3.833,14.826,-0.256,2.133,11.947,6.283,-1.596,17.595,16.073,4.184,-0.857,6.303,5.627,8.46,-0.235,5.474,5.168,7.116,8.097,12.501,0.052,14.247,15.363,3.09,-0.094,-5.251,-5.057,3.941,13.08,5.409,6.691,2.133,8.845,5.299,0.678,-4.388,4.619,8.729,-2.434,-2.661,2.398],[20.075,23.923,16.448,33.714,27.858,15.04,26.982,28.092,24.337,10.445,19.396,19.032,21.92,16.708,23.463,23.947,18.951,16.545,12.032,13.282,9.28,18.316,12.982,5.955,13.815,16.764,14.921,4.867,19.375,20.279,7.206,0.334,4.834,9.688,10.564,10.147,9.075,15.525,-0.76,5.817,5.959,7.937,0.659,6.851,12.791,17.258,-1.677,15.281,0.412,6.079,9.066,4.584,1.572,7.652,9.654,3.509,-3.437,4.241,-4.413,1.256,6.29,13.115,14.099,-1.996,25.518,9.583,24.824,32.029,22.539,15.315,20.701,26.584,19.963,33.306,26.041,18.912,22.659,28.906,18.895,19.156,14.52,22.636,15.303,28.732,15.289,27.145,13.516,20.656,26.14,9.021,20.925,17.912,16.305,23.227,11.434,5.404,23.581,17.487,12.262,12.12,11.073,15.147,12.678,19.809,12.141,18.599,20.116,23.761,15.361,4.522,18.984,13.708,12.721,17.706,5.485,16.618,11.572,6.985,4.266,9.167,14.396,18.65,17.93,15.416,19.586,11.673,5.742,-0.538,4.767,11.725,9.085,8.066,1.681,10.42,14.374,-0.623,9.112,10.74,9.403,0.772,9.411,13.558,8.76,0.809,17.029,7.706,-0.959,7.275,17.169,6.893,6.873,4.13,14.851,-0.456,1.983,12.037,6.591,-1.186,17.626,15.778,4.687,-0.777,6.424,5.894,8.12,-0.171,5.24,5.298,6.923,8.368,13.162,-0.176,14.082,15.242,2.817,-0.454,-4.957,-5.174,3.517,12.645,5.286,6.732,2.409,8.3,4.483,0.514,-4.765,4.517,8.703,-2.335,-3.008,2.564],[19.907,23.731,16.424,33.803,27.925,15.1,27.024,28.109,24.397,10.634,19.391,19.163,21.98,16.636,23.539,23.941,18.9,16.527,12.075,13.152,9.135,18.302,12.916,5.878,13.736,16.897,14.893,4.894,19.763,20.078,7.14,0.397,5.063,9.707,10.414,10.053,8.998,15.586,-0.637,5.85,6.132,8.093,0.756,6.822,12.512,17.519,-1.468,14.996,0.28,5.923,9.047,4.463,1.552,7.387,9.966,3.378,-3.382,4.372,-4.363,1.198,6.074,13.268,14.09,-2.181,25.332,9.907,25.114,32.103,22.511,15.149,20.832,26.466,20.169,33.557,26.195,18.985,22.194,29.19,19.343,19.153,14.126,22.948,15.168,28.114,15.306,26.864,14.073,20.538,25.772,9.296,20.984,17.922,16.195,23.948,11.533,4.958,23.814,17.398,11.972,11.947,10.96,15.462,12.616,19.625,11.859,18.432,20.421,23.438,15.362,4.819,19.496,14.204,12.087,17.835,5.452,16.579,11.672,6.717,4.485,8.964,14.762,18.523,17.614,15.444,19.156,11.437,5.991,0.268,4.884,12.014,8.921,8.055,1.539,10.673,14.261,-0.655,8.757,11.05,9.003,0.931,9.298,13.601,8.723,1.061,17.297,8.048,-1.21,7.22,16.472,6.756,7.099,4.175,15.224,-0.948,1.637,11.77,6.215,-0.959,18.04,15.63,5.212,-0.841,6.257,5.838,8.29,-0.202,5.28,5.366,6.377,8.489,13.933,-0.094,13.868,15.026,2.657,-0.271,-4.392,-5.449,3.386,12.461,4.771,6.567,2.808,8.184,4.623,0.711,-5.003,4.302,9.375,-2.478,-3.422,2.878],[19.797,23.409,16.317,33.716,27.843,15.195,26.962,28.133,24.502,10.86,19.44,19.22,21.959,16.698,23.617,24.073,18.866,16.755,12.08,12.988,9.156,18.289,12.794,5.921,13.7,16.938,14.733,4.831,20.042,19.933,7.038,0.623,5.305,9.847,10.244,10.032,8.882,15.527,-0.42,5.859,6.332,8.257,0.963,6.815,12.328,17.689,-1.401,14.684,0.199,5.756,9.016,4.415,1.631,7.196,10.316,3.269,-3.262,4.494,-4.141,1.099,5.801,13.406,13.978,-2.289,24.569,9.913,25.544,32.0,22.799,15.407,20.697,26.57,20.172,33.213,25.757,18.66,21.827,28.858,19.154,18.546,13.88,22.876,15.403,28.481,14.98,26.564,14.205,21.03,26.035,9.575,20.92,18.585,15.606,23.533,11.443,5.45,23.794,17.445,11.752,11.84,10.968,15.476,13.1,19.889,12.061,18.536,20.477,23.449,15.751,4.485,18.806,14.004,11.878,18.375,5.44,16.393,11.809,6.964,4.105,8.977,14.851,18.563,17.384,15.67,18.753,11.255,6.066,0.74,4.776,11.386,8.86,8.277,1.218,10.198,14.078,-0.32,9.086,11.098,8.582,0.75,9.265,12.974,8.453,1.183,16.984,7.931,-1.33,7.584,16.822,6.638,7.166,4.015,15.194,-0.563,1.41,11.451,6.219,-1.016,18.413,15.308,5.729,-0.804,5.873,5.644,8.591,-0.13,5.308,5.702,5.934,8.64,14.63,-0.266,13.542,15.258,2.809,-0.663,-4.677,-5.401,3.593,12.942,4.402,6.081,2.755,7.977,5.251,0.707,-4.559,3.951,9.746,-2.671,-3.44,2.815],[19.594,23.075,16.109,33.653,27.642,15.175,26.86,27.965,24.673,10.96,19.416,19.353,21.886,16.814,23.5,24.198,18.897,17.018,12.133,13.032,9.214,18.216,12.72,5.863,13.622,16.986,14.576,4.6,20.19,19.782,6.988,0.952,5.492,9.76,9.972,10.045,8.873,15.274,-0.163,6.01,6.569,8.277,1.043,6.811,12.203,17.783,-1.502,14.423,0.146,5.6,9.031,4.378,1.631,7.177,10.549,3.305,-3.096,4.698,-3.923,1.07,5.554,13.502,14.025,-2.449,24.277,10.243,25.385,31.772,22.841,15.565,20.498,27.087,19.806,33.15,25.892,19.039,21.386,28.908,18.814,18.518,14.442,22.672,15.207,28.894,14.993,26.764,13.881,21.099,25.964,10.008,21.036,18.585,15.847,23.326,11.511,5.861,23.346,17.53,11.651,11.814,11.09,15.719,12.445,19.988,12.559,18.74,20.284,23.764,15.984,4.329,18.67,14.155,12.075,18.701,5.304,16.457,11.578,6.811,4.274,9.04,14.325,18.89,17.243,15.387,18.923,11.359,6.254,0.758,4.536,10.744,8.815,8.45,0.681,9.816,14.42,0.074,9.479,11.015,8.429,0.681,9.834,12.249,8.77,1.504,16.826,8.67,-1.312,7.618,17.587,6.891,6.307,4.142,14.432,0.062,1.761,11.822,6.6,-1.035,18.465,15.661,5.826,-0.56,5.897,5.244,8.679,-0.038,5.228,5.561,5.985,9.295,15.035,-0.488,13.413,15.185,2.56,-0.558,-4.756,-4.857,3.813,12.924,4.231,6.311,2.652,7.676,5.421,0.387,-4.343,3.692,9.352,-2.391,-3.264,3.037],[19.379,22.81,16.09,33.62,27.362,15.106,26.793,27.771,24.833,10.999,19.391,19.482,21.83,16.863,23.24,24.122,19.066,17.314,12.077,13.148,9.388,18.05,12.796,5.752,13.577,17.011,14.383,4.321,20.361,19.814,6.975,1.266,5.712,9.596,9.745,10.115,8.923,14.971,0.166,6.175,6.83,8.49,1.112,7.019,12.206,17.787,-1.619,14.354,0.2,5.386,9.074,4.245,1.592,7.36,10.537,3.425,-3.008,4.894,-3.762,0.972,5.465,13.574,14.088,-2.406,23.974,10.53,25.107,31.99,23.26,15.594,20.617,26.537,19.546,33.105,26.089,18.926,21.033,28.773,19.042,18.745,14.716,22.745,14.565,28.912,15.27,27.069,13.938,21.013,25.357,10.478,20.852,18.289,16.141,23.647,11.728,5.553,23.797,17.38,12.059,11.767,11.262,15.937,12.398,19.623,12.407,18.972,19.428,23.639,16.143,4.192,19.112,13.83,12.332,18.856,5.16,16.25,11.437,6.261,3.764,9.01,13.931,19.332,17.306,14.95,18.723,11.621,6.334,0.293,4.907,10.524,8.793,8.52,0.256,8.786,14.26,0.318,9.185,10.717,7.952,0.475,10.101,12.184,8.8,1.518,16.868,8.573,-0.98,7.562,18.236,7.288,6.228,4.652,13.679,-0.066,1.711,11.444,6.292,-0.886,18.028,15.456,6.153,-0.702,6.186,5.292,8.243,-0.234,5.332,5.29,5.971,9.749,14.893,-0.087,13.163,15.353,2.613,-0.797,-3.639,-4.876,3.566,13.159,4.031,6.501,2.78,7.828,5.144,0.284,-4.631,3.595,9.372,-2.878,-2.762,3.09],[19.385,22.577,16.205,33.533,27.137,15.094,26.698,27.519,24.872,11.108,19.372,19.556,21.837,16.822,23.034,23.996,19.12,17.471,11.96,12.979,9.517,17.783,13.169,5.554,13.636,17.031,14.167,4.046,20.464,19.786,6.902,1.351,5.956,9.408,9.431,10.184,8.941,14.625,0.497,6.374,7.17,8.805,1.083,7.094,12.187,17.73,-1.578,14.399,0.366,5.191,9.009,4.081,1.644,7.589,10.438,3.53,-3.049,4.833,-3.689,0.821,5.442,13.607,14.263,-2.361,23.692,10.407,25.707,31.955,23.002,15.361,20.706,26.537,19.799,33.233,26.021,18.939,20.954,28.615,19.207,18.456,14.209,22.636,15.063,28.357,15.067,26.951,14.034,20.837,25.661,10.717,20.931,18.314,15.938,23.662,11.616,5.263,23.947,17.784,12.258,11.897,11.329,16.288,13.029,19.773,12.153,18.513,18.894,23.463,15.953,4.309,19.918,13.6,12.618,19.047,4.496,15.923,11.96,6.594,3.493,8.967,14.224,19.818,17.793,15.083,19.255,11.74,7.1,0.217,5.28,10.818,8.724,7.959,0.114,8.677,13.973,0.468,9.08,10.243,7.927,0.723,10.267,12.689,8.931,1.814,16.335,8.871,-1.136,7.444,18.586,7.466,6.432,4.563,13.373,-0.121,1.695,11.595,6.775,-0.484,18.0,15.336,6.748,-1.193,6.408,5.009,7.744,-0.248,4.991,5.894,5.904,9.038,14.674,-0.112,12.56,15.503,3.41,-0.536,-2.585,-4.926,3.718,13.415,4.023,6.298,2.502,8.315,4.509,-0.048,-4.678,3.608,9.695,-2.972,-2.487,3.158],[19.497,22.43,16.3,33.521,26.899,15.071,26.718,27.392,24.883,11.286,19.333,19.617,21.865,16.63,22.883,23.942,19.14,17.465,11.982,12.777,9.408,17.514,13.598,5.409,13.614,17.019,14.244,3.895,20.5,19.889,6.935,1.173,6.266,9.091,9.257,10.171,8.896,14.29,0.689,6.374,7.454,9.115,1.108,7.106,12.229,17.785,-1.392,14.408,0.425,5.105,9.014,3.833,1.688,7.613,10.426,3.74,-3.062,4.69,-3.622,0.795,5.349,13.534,14.505,-2.189,23.995,9.993,25.722,31.763,23.091,15.134,20.466,26.581,19.992,33.163,25.997,18.95,20.757,28.128,19.191,18.531,14.46,22.776,15.412,27.975,15.246,26.364,14.0,20.727,25.71,10.89,21.016,18.461,16.094,23.239,11.76,4.882,23.661,17.908,12.755,11.75,11.263,16.331,12.599,20.197,11.793,17.553,19.213,23.244,15.746,4.097,19.088,14.096,12.106,19.225,4.445,15.781,12.267,6.666,3.55,9.106,14.903,19.889,18.053,15.196,19.46,11.943,7.314,1.098,4.992,10.715,8.649,7.911,0.154,9.408,13.274,0.687,8.927,10.034,7.884,0.986,10.861,12.722,8.961,1.799,15.97,9.186,-1.293,7.448,18.543,7.656,6.818,4.583,13.611,-0.068,1.939,12.244,7.063,-0.48,18.22,15.634,7.602,-0.891,6.328,4.393,7.562,-0.131,5.004,6.106,6.093,8.784,14.508,-0.512,12.446,15.554,3.311,-0.39,-2.681,-4.898,4.594,12.963,4.076,6.538,2.123,8.249,4.186,-0.1,-4.428,3.562,9.718,-2.915,-3.081,3.022],[19.549,22.449,16.327,33.494,26.587,15.123,26.753,27.451,25.031,11.463,19.221,19.665,21.803,16.476,22.805,23.869,19.189,17.465,12.037,12.576,9.248,17.316,13.975,5.308,13.664,16.971,14.534,3.965,20.599,19.973,6.94,1.023,6.574,8.758,9.221,10.112,8.835,13.962,0.791,6.209,7.701,9.479,1.233,7.085,12.32,17.947,-1.182,14.409,0.244,5.065,9.002,3.566,1.597,7.454,10.533,4.002,-3.052,4.49,-3.52,0.818,5.23,13.432,14.531,-1.966,23.927,10.065,25.509,31.739,23.17,15.28,20.571,26.396,19.718,33.274,25.808,19.01,20.924,28.737,19.079,18.758,14.895,22.76,14.988,27.764,15.348,26.384,13.954,20.985,25.636,11.441,20.931,18.633,15.643,22.744,11.58,4.786,23.735,17.813,13.267,11.743,11.034,16.148,13.146,20.273,11.589,17.322,19.542,23.019,15.414,3.875,18.791,13.708,11.291,19.203,4.709,15.531,12.621,6.351,3.54,9.011,15.432,19.414,18.07,15.253,19.313,11.945,7.265,1.911,4.851,10.43,8.845,7.992,-0.415,9.809,12.615,0.809,8.556,10.037,7.57,0.667,11.306,12.864,8.893,1.445,15.711,8.694,-1.082,7.45,18.276,7.676,7.334,4.495,14.395,0.143,1.821,11.77,6.599,-0.276,18.279,15.853,8.359,-0.447,6.383,3.9,8.438,-0.202,4.855,5.609,5.968,9.063,14.71,-0.211,12.607,15.511,2.898,-0.497,-3.567,-5.194,4.326,13.244,4.178,6.538,2.871,8.058,4.268,-0.08,-4.366,3.588,9.779,-2.951,-2.998,3.052],[19.478,22.506,16.121,33.518,26.317,15.256,26.651,27.724,25.228,11.728,19.088,19.705,21.848,16.356,22.711,23.819,19.143,17.557,12.066,12.222,9.169,17.246,14.307,5.192,13.679,16.84,14.775,4.137,20.435,20.122,6.985,1.136,6.879,8.598,9.228,10.011,8.665,13.737,0.895,6.118,7.954,9.584,1.286,6.894,12.218,18.064,-1.06,14.511,-0.026,4.932,9.167,3.387,1.612,7.275,10.741,4.131,-3.017,4.27,-3.52,0.798,5.092,13.499,14.517,-1.88,23.983,10.426,25.979,31.824,23.438,15.433,21.132,27.051,19.566,33.394,25.682,19.13,21.107,28.651,18.774,18.839,15.083,22.597,14.943,27.616,15.051,26.692,13.871,21.287,25.681,12.215,20.545,18.58,15.268,23.069,11.234,5.012,23.426,17.774,13.477,11.768,11.02,16.502,13.024,20.283,11.697,17.85,20.17,23.328,15.296,3.838,19.255,13.435,11.276,19.232,4.744,15.409,12.867,6.534,3.839,8.615,15.71,19.349,17.886,15.777,18.983,11.673,7.602,1.483,5.506,10.135,8.787,7.327,-0.585,9.484,12.13,0.791,9.065,10.055,7.525,0.655,11.166,12.708,8.691,1.984,15.095,9.328,-1.297,7.623,18.369,7.5,6.669,4.229,14.946,0.541,1.683,11.559,6.296,-0.305,17.841,15.655,8.537,-0.466,6.39,3.797,8.23,-0.113,4.69,5.024,5.585,9.149,14.985,-0.162,12.643,15.708,3.05,-0.107,-3.765,-5.176,3.629,13.487,3.979,5.871,2.815,8.427,4.179,-0.104,-4.399,3.398,10.172,-3.117,-2.546,2.407],[19.338,22.542,15.875,33.637,26.199,15.31,26.474,28.109,25.522,12.177,19.044,19.664,22.002,16.335,22.569,23.807,19.092,17.704,11.891,11.942,9.255,17.282,14.495,5.158,13.725,16.742,15.007,4.173,20.261,20.304,7.048,1.343,7.078,8.396,9.188,9.84,8.571,13.439,1.065,6.103,8.105,9.627,1.284,6.625,12.013,18.16,-1.092,14.622,-0.201,4.809,9.405,3.373,1.657,7.285,10.842,4.098,-2.929,3.891,-3.562,0.767,4.931,13.587,14.541,-2.003,24.146,10.677,26.312,31.946,23.78,15.226,20.929,27.11,19.648,33.305,25.652,18.848,21.086,28.699,18.305,18.657,15.375,22.774,14.79,27.63,14.961,26.544,14.223,21.453,25.742,12.822,20.852,18.81,15.684,23.12,11.491,5.103,23.488,17.762,13.782,11.873,10.944,16.744,12.592,19.935,11.325,18.252,19.81,23.44,15.225,3.743,19.882,14.148,11.163,19.55,5.02,15.421,13.111,6.803,3.485,8.278,15.781,18.922,17.59,15.812,18.581,11.377,8.122,0.83,5.965,10.446,8.802,6.767,0.09,9.022,11.911,0.599,8.817,10.237,7.647,0.492,11.299,12.077,8.367,2.098,14.384,9.708,-1.837,7.722,18.859,7.718,6.201,4.348,14.863,0.217,1.275,11.595,6.476,-0.066,18.115,15.83,8.334,-0.38,6.179,4.186,8.47,-0.095,4.661,4.769,5.402,9.092,15.091,-0.448,12.679,15.43,3.43,-0.153,-3.209,-4.968,3.703,13.248,3.376,6.076,2.466,8.459,3.709,-0.315,-4.378,3.362,10.728,-2.503,-2.783,2.172],[19.229,22.562,15.793,33.703,26.239,15.357,26.284,28.369,25.759,12.708,19.138,19.71,22.102,16.466,22.469,23.888,19.058,17.859,11.679,11.691,9.35,17.391,14.553,5.197,14.007,16.68,15.174,4.115,20.146,20.373,7.179,1.534,7.171,8.104,9.204,9.721,8.585,13.105,1.149,6.213,8.094,9.898,1.137,6.453,11.772,18.275,-1.04,14.746,-0.337,4.806,9.628,3.524,1.612,7.438,10.751,4.058,-2.935,3.491,-3.505,0.695,4.764,13.603,14.477,-2.276,24.097,11.227,26.396,32.08,23.953,15.013,20.567,27.321,19.624,33.332,25.912,18.565,20.84,29.097,17.982,17.988,15.118,22.447,14.256,27.536,14.93,26.644,14.401,21.274,25.499,12.861,21.451,18.693,15.879,22.828,11.003,4.779,23.487,17.621,14.003,12.12,10.998,16.671,12.68,19.819,10.866,17.957,19.075,23.271,15.172,4.156,20.138,14.11,11.198,19.64,4.607,15.542,13.043,6.446,3.348,8.452,15.923,18.685,17.102,15.512,18.854,11.157,8.089,0.272,5.76,10.38,8.969,6.917,0.602,8.11,11.44,0.945,8.239,10.384,7.581,0.416,11.484,12.373,7.897,2.135,13.869,9.186,-1.743,7.434,19.606,7.886,6.902,4.26,14.504,-0.375,1.151,11.218,6.694,0.192,18.48,16.004,8.386,-0.826,6.285,4.712,8.756,-0.191,4.79,4.574,5.397,8.988,15.021,-0.378,12.653,15.768,3.192,-0.45,-3.544,-5.036,4.324,13.354,3.323,6.551,2.315,8.63,3.698,-0.207,-4.397,3.396,10.739,-2.01,-2.749,1.991],[19.141,22.437,15.718,33.675,26.291,15.273,26.134,28.624,25.852,13.102,19.294,19.809,22.131,16.486,22.335,23.964,19.025,18.022,11.473,11.298,9.397,17.574,14.453,5.347,14.328,16.804,15.232,4.09,19.863,20.491,7.196,1.743,7.252,7.715,9.114,9.666,8.519,12.735,1.205,6.33,8.115,10.117,0.947,6.322,11.671,18.496,-0.905,14.85,-0.348,5.035,9.865,3.694,1.542,7.609,10.645,4.118,-2.993,3.12,-3.47,0.73,4.609,13.623,14.514,-2.406,23.793,11.51,26.55,31.907,24.185,15.07,20.828,27.475,19.242,33.849,25.062,19.059,21.058,29.072,18.408,18.149,14.911,22.195,14.206,27.325,15.24,27.02,14.114,21.344,25.024,12.789,21.506,18.463,15.927,23.369,10.469,4.539,23.424,17.745,13.766,12.492,11.12,16.681,12.321,19.732,10.906,17.547,18.636,23.151,15.145,4.197,19.784,14.222,11.433,19.496,3.868,15.816,13.003,6.389,3.622,9.064,16.139,19.151,16.829,15.806,19.04,11.299,7.892,0.414,5.486,10.005,8.986,7.085,0.611,7.237,11.005,1.484,8.962,10.081,7.421,0.489,11.574,11.808,8.08,2.154,13.757,9.656,-1.744,7.283,19.568,7.582,7.234,4.497,14.493,-0.474,1.178,11.594,6.327,-0.057,18.627,16.182,8.39,-1.258,6.509,5.282,8.763,-0.301,4.994,4.05,5.45,8.901,14.551,-0.508,12.253,15.802,2.771,-0.649,-3.786,-5.045,3.867,13.217,3.337,6.462,2.355,9.036,4.578,0.018,-4.415,3.131,10.176,-2.802,-2.871,1.382],[19.093,22.29,15.666,33.702,26.283,15.07,25.956,28.787,25.905,13.149,19.575,19.987,22.172,16.422,22.154,24.056,19.038,18.026,11.19,11.014,9.553,17.694,14.232,5.47,14.549,17.126,15.245,4.054,19.674,20.342,6.985,1.867,7.171,7.391,8.977,9.661,8.484,12.505,1.291,6.304,8.166,10.339,1.116,6.294,11.782,18.742,-0.86,14.928,-0.292,5.38,10.102,3.875,1.485,7.622,10.698,4.06,-3.08,2.769,-3.457,0.787,4.602,13.604,14.487,-2.48,23.732,11.434,26.577,31.866,24.096,15.703,21.283,27.622,19.297,33.927,24.736,19.427,20.621,29.204,18.949,18.493,15.038,22.666,14.096,27.425,15.516,26.922,13.515,21.429,25.209,13.095,20.864,18.637,15.122,23.222,10.66,4.878,23.567,17.454,13.672,12.976,11.445,16.853,12.396,19.695,10.43,17.805,18.263,22.997,15.666,4.122,19.407,14.329,10.979,19.353,4.558,15.968,12.726,6.237,3.542,9.084,16.334,19.209,16.663,16.056,19.82,11.347,8.024,1.605,5.481,9.919,8.632,6.305,0.592,6.705,10.944,0.812,8.78,9.723,7.233,0.411,11.569,12.022,8.076,2.189,13.633,10.286,-2.054,7.384,19.424,7.859,6.562,4.595,15.166,-0.175,1.236,11.585,6.263,0.018,18.548,16.278,8.34,-1.131,6.468,5.21,8.96,-0.193,5.28,3.342,4.992,9.181,13.937,-0.34,11.951,15.226,3.199,-0.752,-3.55,-4.908,3.223,13.084,3.713,6.653,2.189,9.178,4.416,-0.141,-4.287,3.068,9.827,-3.467,-3.129,1.1],[19.093,22.091,15.658,33.764,26.169,14.801,25.826,28.807,25.906,13.114,19.978,20.271,22.113,16.23,22.029,24.046,19.017,17.848,11.003,10.838,9.872,17.745,14.035,5.56,14.7,17.432,15.251,4.119,19.661,20.202,6.775,1.961,7.049,7.092,8.955,9.617,8.484,12.531,1.45,6.183,8.33,10.61,1.386,6.378,11.96,18.776,-0.85,15.0,-0.186,5.419,10.315,3.979,1.416,7.501,10.834,4.004,-3.246,2.492,-3.38,0.878,4.628,13.538,14.327,-2.545,23.518,11.743,26.603,31.988,24.095,15.666,21.236,27.563,19.522,33.644,24.834,19.218,20.374,29.451,19.637,18.504,14.796,22.119,13.93,27.574,15.241,26.6,13.227,21.868,25.491,13.064,20.761,18.827,15.71,22.362,10.443,5.026,24.011,17.33,13.734,13.048,11.583,16.426,12.264,20.153,10.311,18.283,18.181,23.144,16.05,4.248,19.477,14.22,10.103,19.559,4.357,15.946,12.319,6.098,3.241,8.733,16.272,18.734,16.783,15.944,19.515,11.492,7.782,2.623,5.562,9.688,8.608,5.99,0.363,7.182,11.039,0.297,8.282,9.51,7.315,0.481,12.007,12.105,7.734,2.145,13.728,9.672,-1.638,7.435,19.662,7.803,6.335,4.446,15.644,0.277,1.206,11.639,6.547,0.427,18.899,16.153,8.435,-0.822,6.324,5.097,8.925,-0.36,5.491,3.326,4.623,9.418,13.781,0.003,12.437,14.974,3.168,-0.994,-3.452,-4.989,3.081,13.191,3.683,6.507,2.632,9.332,3.875,-0.345,-4.14,3.001,10.151,-3.496,-2.807,0.805],[19.222,21.983,15.55,33.786,26.106,14.534,25.751,28.751,25.875,13.228,20.497,20.546,21.973,16.294,21.801,23.935,18.921,17.568,10.916,10.698,10.024,17.78,13.969,5.563,14.651,17.505,15.204,4.116,19.578,20.174,6.808,2.031,6.897,6.906,8.951,9.615,8.486,12.715,1.672,6.246,8.577,10.769,1.521,6.367,12.072,18.709,-0.899,15.123,0.067,5.115,10.391,3.834,1.414,7.4,10.844,4.042,-3.342,2.329,-3.398,1.014,4.513,13.583,14.186,-2.53,23.147,11.818,26.484,31.962,24.028,14.842,20.877,27.482,19.142,34.116,25.34,19.593,20.418,28.976,19.948,18.373,14.123,21.658,14.248,27.145,15.169,25.977,13.055,22.176,25.071,12.855,21.025,19.202,15.619,22.523,10.292,4.701,23.8,17.575,13.217,12.789,11.697,16.592,11.652,20.181,10.851,18.213,18.531,23.257,16.127,4.293,19.325,14.578,9.442,19.241,3.865,15.942,12.535,6.026,3.376,8.805,16.068,18.587,17.33,16.137,18.954,11.286,7.974,2.669,5.502,10.038,8.593,5.938,0.351,8.173,11.252,0.629,8.754,9.201,7.52,0.834,12.125,11.87,7.993,2.297,13.77,10.226,-1.272,7.404,19.323,7.972,6.403,4.342,15.148,0.317,1.552,11.803,6.749,0.137,18.709,16.134,8.895,-0.309,6.572,5.244,9.477,-0.24,5.565,3.377,5.231,9.028,14.376,-0.287,12.566,15.491,2.823,-0.785,-3.262,-4.958,3.218,13.009,3.526,6.163,2.76,9.306,4.099,0.069,-4.194,2.887,10.665,-3.541,-3.341,0.981],[19.329,22.174,15.505,33.889,26.004,14.308,25.773,28.547,25.783,13.36,20.993,20.659,21.844,16.446,21.631,23.749,18.865,17.343,10.862,10.716,9.998,17.788,13.928,5.406,14.47,17.305,15.197,3.942,19.518,20.16,6.97,2.014,6.844,7.006,9.001,9.689,8.652,12.895,1.837,6.402,8.802,10.834,1.479,6.316,12.171,18.477,-1.03,15.152,0.37,4.959,10.402,3.719,1.468,7.388,10.543,3.952,-3.462,2.239,-3.449,1.077,4.484,13.782,14.201,-2.561,22.969,11.773,26.347,32.067,24.176,15.041,20.907,27.681,19.378,34.257,25.095,20.435,20.345,29.101,20.12,18.052,14.016,21.557,14.106,27.345,15.096,26.175,13.386,22.482,25.284,12.858,20.637,19.729,16.025,22.478,10.205,4.228,23.117,17.283,13.331,12.765,11.942,16.128,11.872,19.286,10.755,17.945,18.698,23.128,16.195,4.511,19.529,14.721,9.186,19.136,4.293,16.026,12.538,6.06,3.412,9.326,16.082,18.23,17.462,16.061,18.846,11.398,8.039,2.8,5.45,10.46,8.53,5.409,0.147,7.664,11.397,1.664,8.546,8.833,7.47,0.895,12.363,12.649,8.088,2.682,13.755,11.012,-1.14,7.398,19.089,8.144,6.835,4.659,14.537,0.068,2.201,11.583,5.935,-0.264,18.247,16.012,9.521,0.074,6.321,5.086,9.334,-0.153,5.227,3.464,5.488,8.656,14.939,-0.391,12.598,15.626,3.152,-0.659,-3.141,-5.09,3.486,12.849,3.08,6.199,2.548,9.203,4.06,0.47,-4.114,2.858,10.946,-3.034,-3.524,0.9],[19.414,22.388,15.519,33.917,25.963,14.218,25.804,28.33,25.804,13.41,21.383,20.747,21.784,16.698,21.465,23.484,18.542,17.107,10.879,10.816,10.116,17.791,13.925,5.282,14.298,17.077,15.211,3.818,19.385,20.289,7.139,1.908,6.983,7.012,9.029,9.773,8.8,13.156,2.092,6.435,9.003,11.011,1.37,6.199,12.399,18.135,-1.13,15.047,0.571,4.966,10.371,3.744,1.488,7.352,10.332,3.879,-3.568,2.201,-3.539,1.255,4.488,14.016,14.182,-2.637,22.791,11.857,26.62,32.211,24.124,15.501,21.018,27.427,19.686,34.178,24.933,21.063,20.451,29.344,20.271,18.186,14.456,21.702,13.802,27.686,15.094,26.299,13.321,22.516,25.361,13.254,20.455,19.886,16.187,22.272,10.115,3.841,23.419,16.797,13.813,12.85,11.834,15.749,12.432,19.119,10.526,17.599,18.383,23.229,15.759,4.567,19.397,14.049,9.405,18.847,4.163,16.017,12.258,5.999,3.111,9.733,16.229,18.601,17.075,15.736,19.322,11.62,7.764,2.404,5.337,10.445,8.808,5.151,0.09,7.764,11.488,1.824,8.909,9.162,7.41,0.93,11.945,12.273,7.959,2.391,14.053,10.361,-0.653,7.514,19.067,8.425,6.95,4.616,14.666,-0.261,2.151,11.715,5.925,-0.432,18.585,15.755,9.532,-0.245,6.353,5.611,8.912,-0.446,4.882,3.381,5.165,8.469,15.472,0.149,12.848,15.407,3.585,-0.847,-3.664,-5.067,2.934,12.729,3.145,6.108,2.111,9.39,3.877,0.219,-4.329,3.119,10.115,-2.418,-2.948,0.514],[19.643,22.344,15.504,33.827,25.967,14.216,25.756,28.291,26.057,13.441,21.608,20.728,21.74,16.901,21.289,23.434,18.194,16.921,11.034,10.909,10.291,17.783,13.959,5.239,14.135,16.915,15.203,3.74,19.201,20.556,7.333,1.73,7.102,6.866,9.01,9.961,8.937,13.459,2.231,6.191,9.239,10.983,1.254,6.064,12.537,17.878,-1.22,14.852,0.587,5.284,10.403,3.774,1.257,7.268,10.263,3.878,-3.537,2.037,-3.689,1.5,4.496,14.244,14.068,-2.605,23.281,11.829,26.397,31.966,24.268,15.772,20.717,27.34,19.616,34.281,25.15,20.933,20.539,28.967,20.416,18.452,14.192,21.573,14.074,27.567,14.758,26.25,12.807,22.546,25.413,13.503,20.457,19.873,16.17,22.059,10.164,3.801,23.715,16.496,13.336,12.525,12.092,15.933,12.106,19.275,10.805,17.805,17.659,23.168,15.608,4.55,19.359,14.104,9.654,18.615,4.194,16.016,12.645,6.454,3.011,9.318,16.246,18.987,16.376,16.129,19.828,11.605,7.957,1.836,5.51,10.135,9.082,5.462,-0.105,8.248,11.588,1.373,9.24,10.161,7.38,0.994,12.229,12.707,7.725,2.507,14.393,10.374,-0.835,7.562,18.629,8.27,6.579,4.39,15.207,-0.228,2.087,12.219,6.569,-0.292,18.192,15.828,9.016,-0.864,6.699,6.081,9.08,-0.471,4.75,3.187,5.076,8.87,15.665,0.383,12.918,15.204,3.434,-0.736,-3.691,-5.366,2.802,12.729,3.492,5.936,1.911,9.485,3.875,0.294,-4.742,2.625,9.37,-2.801,-3.239,0.353],[19.922,22.263,15.43,33.723,25.906,13.867,25.735,28.466,26.204,13.435,21.661,20.673,21.537,16.945,21.137,23.543,18.164,16.895,11.16,11.082,10.346,17.867,13.883,5.248,13.957,16.854,15.299,3.74,18.962,20.8,7.505,1.457,7.195,6.861,8.971,10.276,9.1,13.682,2.187,5.821,9.273,10.85,1.211,5.926,12.7,17.648,-1.293,14.783,0.463,5.555,10.493,3.722,0.993,7.279,10.283,3.879,-3.498,1.761,-3.877,1.659,4.516,14.415,13.963,-2.502,23.588,11.746,26.837,31.914,24.483,16.02,20.636,27.747,19.678,34.131,25.354,20.46,20.544,29.036,20.647,18.863,14.042,21.214,14.133,27.459,14.852,26.343,13.011,22.429,25.546,13.333,20.314,19.866,16.235,21.698,10.082,4.149,23.623,16.502,13.482,12.379,12.203,15.972,12.148,19.046,10.919,18.354,17.27,22.758,15.881,4.363,19.286,14.301,9.478,18.679,4.318,16.001,12.379,6.632,3.017,9.225,16.562,18.895,15.954,16.222,20.54,11.881,8.515,1.049,5.862,10.354,9.219,5.199,0.246,8.071,12.087,1.945,9.08,10.326,7.43,0.683,12.533,13.055,7.638,2.761,14.46,10.831,-1.191,7.703,18.227,8.483,6.106,4.06,15.307,-0.141,2.159,11.999,6.186,0.106,17.478,15.59,9.826,-1.273,6.384,6.376,9.497,-0.613,5.063,2.802,4.65,8.84,15.525,0.098,13.349,15.244,3.184,-0.706,-3.34,-5.243,2.99,12.964,4.222,5.918,1.809,9.331,3.959,0.997,-4.92,2.733,9.576,-3.153,-3.68,0.512],[20.059,22.284,15.316,33.598,25.803,13.565,25.857,28.743,26.205,13.451,21.618,20.648,21.264,16.991,21.037,23.632,18.18,16.965,11.15,11.209,10.433,18.101,13.809,5.186,13.742,16.86,15.51,3.852,18.759,20.951,7.635,1.176,7.333,6.974,9.017,10.5,9.253,13.838,2.201,5.505,9.271,10.849,1.265,5.745,12.836,17.34,-1.32,14.945,0.349,5.669,10.593,3.725,0.849,7.333,10.277,3.876,-3.595,1.546,-3.922,1.752,4.523,14.649,13.996,-2.483,23.205,11.914,27.096,31.784,24.742,15.815,20.32,27.642,20.216,33.85,25.235,20.214,20.651,29.597,20.822,19.221,13.748,20.803,13.768,27.111,14.999,26.681,12.942,22.466,25.313,12.995,20.123,19.555,16.232,21.829,10.428,4.506,23.215,16.616,13.507,12.657,12.191,15.891,12.347,19.012,10.817,18.639,17.191,22.598,15.699,4.292,19.502,14.006,9.764,18.662,3.925,16.296,12.206,6.401,3.282,9.544,16.442,18.319,16.241,16.188,20.782,12.117,8.467,-0.347,5.84,10.697,9.077,5.105,0.686,7.481,12.342,1.676,8.909,9.836,7.793,0.912,12.271,12.362,7.624,2.372,14.781,10.549,-0.746,8.242,18.197,8.852,6.211,3.872,14.763,-0.318,2.057,12.319,5.115,0.02,17.074,15.41,10.085,-1.339,6.072,6.417,9.234,-0.614,5.387,2.91,4.55,8.626,15.907,0.146,13.455,15.186,3.437,-0.63,-3.6,-4.915,2.795,12.756,4.33,6.378,1.648,9.518,3.653,1.354,-4.79,3.16,9.949,-3.002,-3.313,0.069],[20.16,22.347,15.2,33.47,25.762,13.484,26.059,28.95,26.11,13.477,21.559,20.552,20.917,17.043,20.932,23.566,18.113,17.0,11.096,11.223,10.668,18.441,13.817,5.004,13.467,16.89,15.609,3.974,18.456,20.992,7.733,0.876,7.372,7.027,9.303,10.521,9.389,13.913,2.063,5.311,9.238,10.88,1.325,5.486,12.88,17.07,-1.33,15.082,0.436,5.645,10.697,3.766,0.852,7.498,10.187,3.891,-3.721,1.407,-3.872,1.826,4.516,14.87,14.004,-2.583,23.046,12.061,26.689,31.586,24.522,15.41,19.678,28.139,20.467,33.792,24.976,20.142,20.507,29.797,20.725,19.307,13.581,20.515,13.581,27.008,14.864,26.757,12.371,22.344,25.67,13.217,19.908,19.575,16.418,22.125,10.306,4.386,23.261,16.506,13.497,12.501,12.435,16.02,12.25,19.267,10.992,18.836,17.61,23.142,15.659,4.039,19.6,14.077,10.086,18.846,4.122,16.586,12.361,6.356,3.568,9.687,16.737,18.195,16.486,16.373,20.041,12.126,8.542,-0.882,5.713,10.588,9.185,5.38,0.88,8.03,12.105,1.466,8.984,9.553,7.953,0.865,12.286,13.237,7.294,2.439,14.798,10.436,-0.632,8.506,18.206,8.849,6.215,3.8,14.744,-0.0,2.085,12.59,5.331,-0.244,17.063,16.098,9.34,-1.077,6.76,6.412,9.274,-0.739,5.498,2.815,5.039,8.566,16.383,0.49,13.577,15.267,3.631,-0.787,-3.685,-5.044,2.749,12.413,4.091,6.373,1.319,9.787,3.75,0.857,-4.762,2.619,9.753,-2.488,-2.791,-0.058],[20.199,22.389,15.278,33.381,25.798,13.496,26.269,29.075,25.889,13.486,21.519,20.441,20.537,17.102,20.819,23.437,18.076,17.204,10.962,11.116,10.925,18.774,13.906,4.747,13.157,16.982,15.614,4.113,18.262,20.868,7.818,0.747,7.401,7.1,9.569,10.443,9.46,13.957,1.859,5.243,9.073,10.914,1.327,5.359,12.965,17.008,-1.403,15.157,0.69,5.5,10.892,3.969,0.864,7.756,9.968,3.925,-3.754,1.338,-3.917,1.788,4.555,15.03,13.909,-2.559,23.015,12.046,26.384,31.447,24.34,15.343,19.591,28.125,19.656,33.899,25.237,20.421,20.551,29.877,20.506,19.436,13.737,20.312,14.005,26.947,14.605,26.604,12.653,22.139,25.593,13.524,19.461,19.379,16.774,21.377,10.422,3.993,23.753,16.258,13.726,12.067,12.683,15.947,12.186,18.874,10.85,19.211,17.216,23.087,16.161,3.435,19.934,13.922,10.487,19.004,4.478,17.266,12.158,6.788,3.499,9.847,16.67,17.831,16.149,16.276,19.577,12.182,8.6,-0.809,5.761,11.131,9.53,5.746,0.697,8.68,12.195,1.689,9.516,9.719,7.909,0.806,12.475,13.462,6.865,2.728,14.877,10.747,-0.806,8.162,17.843,8.68,5.986,3.869,15.35,-0.034,2.414,12.564,5.776,-0.316,17.336,15.786,9.492,-0.453,7.217,6.634,9.736,-1.014,5.314,2.576,4.97,8.666,16.379,0.468,13.818,15.131,3.2,-0.844,-3.479,-5.598,3.068,12.684,3.924,6.039,1.423,10.161,3.43,0.742,-5.044,2.83,9.165,-2.218,-3.576,-0.206],[20.079,22.379,15.38,33.28,25.769,13.556,26.387,29.112,25.632,13.574,21.552,20.339,20.298,17.238,20.538,23.413,17.915,17.328,10.878,11.108,11.094,19.123,13.95,4.413,12.833,17.081,15.66,4.218,18.188,20.706,8.033,0.742,7.675,7.205,9.742,10.474,9.481,14.0,1.846,5.401,8.939,11.008,1.209,5.351,13.013,17.046,-1.416,15.267,0.944,5.397,11.217,4.158,0.883,7.928,9.722,3.935,-3.893,1.325,-4.115,1.568,4.733,15.07,13.802,-2.447,23.243,11.953,26.256,31.478,24.076,15.747,19.336,27.759,19.49,33.853,25.727,20.802,20.797,29.896,20.327,18.869,13.697,20.117,13.893,27.022,14.534,26.708,12.785,21.986,25.283,13.638,19.25,18.988,16.964,21.363,10.378,3.509,22.992,16.259,13.698,12.33,12.798,16.213,11.519,18.917,9.981,18.945,16.867,23.055,16.193,3.305,19.644,13.403,10.558,19.173,4.635,17.658,12.286,7.309,3.723,9.93,16.333,17.515,16.311,16.401,19.866,12.025,8.299,-0.841,5.913,11.237,9.844,5.877,0.081,8.672,12.199,1.649,9.423,9.839,8.149,1.042,12.686,13.188,6.459,2.406,14.812,11.262,-0.225,7.917,17.97,7.905,5.815,3.775,15.17,-0.418,2.709,12.38,6.048,-0.318,17.773,15.825,9.984,-0.218,7.07,6.371,9.836,-0.662,5.258,2.378,4.43,8.892,16.435,0.036,13.818,14.832,3.083,-0.632,-3.654,-5.072,3.288,12.554,3.872,6.63,1.773,10.196,3.54,1.08,-5.302,2.971,8.289,-2.579,-3.851,-0.153],[19.828,22.352,15.283,33.195,25.788,13.471,26.418,29.173,25.407,13.718,21.698,20.26,20.156,17.379,20.283,23.409,17.953,17.29,10.773,11.123,11.063,19.339,13.975,4.09,12.895,17.259,15.844,4.349,18.162,20.444,8.19,0.621,7.911,7.403,9.645,10.589,9.347,13.91,1.957,5.709,8.871,11.225,0.983,5.408,12.925,17.161,-1.294,15.37,1.041,5.47,11.429,4.198,0.988,7.905,9.515,3.877,-4.06,1.269,-4.402,1.237,4.817,15.044,13.669,-2.385,23.834,12.007,26.153,31.291,23.894,15.847,19.253,28.015,19.86,33.517,25.291,20.969,20.842,29.81,20.343,18.597,13.285,19.545,13.718,27.073,14.344,26.624,12.297,21.943,25.837,13.482,19.142,19.232,16.805,21.717,10.375,3.394,22.592,16.249,13.636,12.385,12.917,16.284,11.613,19.323,9.565,19.301,17.184,22.733,16.142,3.257,19.062,13.621,10.557,19.022,4.95,17.755,12.525,7.238,3.976,10.168,16.782,18.225,16.473,16.357,19.877,12.327,9.034,-0.578,6.304,10.664,10.005,5.808,-0.597,7.891,12.185,1.411,9.361,9.974,7.993,0.804,12.579,13.832,6.887,1.917,15.234,10.973,0.347,8.062,18.271,8.505,6.293,3.848,15.008,-0.352,2.818,12.005,6.097,-0.104,17.655,16.146,9.48,-0.205,7.117,6.093,10.152,-0.456,5.843,2.282,4.737,8.228,16.194,-0.535,13.594,14.773,3.757,-0.539,-3.44,-4.594,2.99,12.086,3.768,6.846,1.105,10.401,4.412,1.018,-5.515,3.214,8.524,-2.938,-3.352,-0.437],[19.639,22.459,15.101,33.038,25.843,13.255,26.506,29.263,25.229,13.796,21.887,20.402,20.027,17.312,20.236,23.346,18.167,17.276,10.628,11.063,11.007,19.476,13.989,3.953,13.127,17.423,16.134,4.541,18.275,20.13,8.216,0.331,8.228,7.437,9.399,10.711,9.225,13.946,2.014,5.954,8.794,11.353,0.78,5.61,12.829,17.205,-1.145,15.449,1.034,5.527,11.417,4.41,0.991,7.868,9.293,3.852,-4.073,1.14,-4.644,0.993,4.948,15.024,13.506,-2.337,23.847,12.555,26.096,31.222,24.117,15.833,19.156,28.001,19.19,33.514,25.328,21.012,20.815,30.037,20.663,19.029,13.166,19.057,13.829,27.047,14.378,26.717,12.236,21.873,25.596,13.347,19.085,19.753,16.943,21.548,10.527,3.234,22.873,16.345,13.64,12.553,12.811,15.978,12.208,18.97,10.271,19.568,17.145,22.795,16.44,3.081,18.746,13.879,10.921,19.025,4.633,17.745,12.316,7.231,3.823,10.018,16.893,18.142,16.473,17.012,19.524,12.498,9.012,-0.152,6.579,10.589,9.693,5.854,-1.027,8.563,12.266,1.415,8.686,10.523,7.731,0.583,12.847,13.373,7.167,1.812,15.119,10.997,-0.142,8.251,18.314,8.983,6.715,4.397,15.244,-0.673,2.714,11.954,6.248,-0.078,17.336,16.434,9.417,0.008,7.313,6.022,10.127,-0.774,6.01,2.36,5.287,7.636,15.832,-0.709,13.778,14.783,3.779,-0.537,-4.039,-4.929,2.449,11.966,4.055,6.32,0.559,10.435,4.806,0.736,-5.577,2.986,9.421,-3.025,-3.37,-0.59],[19.666,22.691,15.132,32.866,25.834,13.09,26.54,29.288,25.303,13.893,22.019,20.809,20.01,17.074,20.218,23.303,18.12,17.334,10.653,11.107,10.988,19.482,13.848,3.985,13.253,17.605,16.425,4.503,18.344,19.87,8.13,0.12,8.449,7.428,9.268,10.888,9.202,14.002,1.947,6.027,8.86,11.417,0.663,5.889,12.777,17.177,-1.128,15.623,0.856,5.465,11.354,4.693,0.814,8.086,9.256,3.767,-4.082,0.994,-4.869,0.843,5.135,14.956,13.426,-2.349,23.563,12.564,26.107,31.014,23.939,15.852,18.751,27.915,19.085,33.581,25.879,21.115,20.927,29.788,20.849,18.534,13.605,18.771,13.616,26.988,14.395,26.982,12.269,21.91,25.444,13.342,19.192,19.369,16.728,21.039,10.02,3.01,23.241,16.489,13.914,12.371,12.672,16.114,11.75,19.186,11.344,19.57,17.023,23.35,16.467,3.134,19.044,13.833,10.402,19.193,4.44,17.907,12.048,6.875,3.867,9.991,17.035,17.579,16.673,17.18,18.941,12.631,8.927,-0.604,6.657,10.797,9.611,5.967,-1.36,8.999,12.35,1.583,8.567,10.34,7.743,0.679,13.053,12.436,7.3,2.365,15.041,11.029,-0.438,8.213,18.313,8.313,6.892,4.414,15.372,-0.987,2.479,11.987,6.234,0.004,17.387,16.264,9.616,0.021,7.251,6.466,10.21,-0.648,5.907,2.281,5.45,8.159,16.083,-0.622,13.658,14.576,3.354,-0.465,-4.387,-6.185,2.472,11.868,3.898,6.614,0.741,10.04,4.777,0.59,-5.472,3.377,8.984,-2.647,-3.689,-0.624],[19.733,22.975,15.175,32.796,25.859,13.146,26.637,29.242,25.532,13.933,22.091,21.174,20.028,16.728,20.05,23.418,17.956,17.367,10.717,11.231,10.956,19.378,13.658,4.04,13.229,17.738,16.609,4.34,18.336,19.847,7.875,-0.053,8.359,7.379,9.249,11.102,9.304,13.951,1.943,6.015,8.976,11.499,0.668,5.971,12.715,17.189,-1.16,15.854,0.688,5.371,11.402,4.801,0.656,8.189,9.252,3.613,-4.159,0.854,-5.216,0.825,5.304,14.878,13.306,-2.469,23.538,12.27,26.476,30.907,23.925,15.249,18.766,27.668,19.741,33.367,25.761,21.097,21.237,29.496,20.899,18.37,13.466,19.289,13.733,26.891,14.289,27.115,12.37,22.176,25.761,13.819,19.121,19.65,16.454,21.23,10.069,2.949,23.054,16.267,13.688,12.688,12.828,16.477,11.611,19.26,11.074,19.58,17.216,23.132,16.605,3.296,18.573,14.056,9.814,19.173,5.286,17.944,11.928,6.84,3.906,10.245,17.265,17.805,16.86,16.775,18.902,12.921,9.327,-1.155,7.007,10.456,9.612,5.931,-1.372,8.911,12.199,1.113,9.059,10.157,7.648,0.499,12.979,13.025,7.574,2.537,15.245,10.888,-0.626,8.014,17.899,8.772,6.517,4.102,15.461,-0.782,1.932,11.442,6.51,-0.039,17.129,16.418,9.499,0.095,7.335,6.663,10.247,-0.976,6.423,2.322,5.634,7.938,16.222,-0.71,13.683,14.692,2.747,-0.61,-3.839,-6.342,2.829,12.261,3.656,6.799,1.261,10.251,5.085,0.309,-4.948,3.453,8.308,-2.734,-3.556,-0.325],[19.877,23.164,14.92,32.779,25.898,13.432,26.814,29.18,25.765,13.986,22.144,21.493,19.947,16.365,19.935,23.551,17.818,17.464,10.761,11.196,11.01,19.252,13.484,4.016,13.279,17.838,16.691,4.391,18.473,19.929,7.706,-0.21,8.239,7.253,9.19,11.217,9.493,13.884,1.958,5.877,9.151,11.545,0.737,5.954,12.761,17.126,-1.108,16.085,0.471,5.344,11.563,5.055,0.623,7.923,9.024,3.441,-4.135,0.934,-5.413,0.88,5.372,14.837,13.294,-2.613,23.634,12.136,26.504,31.04,24.305,14.586,18.958,27.646,20.105,32.973,25.473,21.366,21.31,29.676,20.772,18.614,13.061,19.371,13.762,26.981,14.381,26.953,12.269,22.483,25.844,13.921,19.069,20.184,16.348,21.276,10.722,3.24,22.91,16.158,13.249,12.786,12.783,16.057,11.759,18.52,11.088,18.861,17.066,23.412,16.62,3.359,18.769,13.495,9.672,19.024,4.348,18.045,12.031,7.277,3.436,10.146,16.981,18.384,16.882,17.108,19.471,13.002,9.585,-1.555,6.906,10.334,9.419,5.654,-0.679,8.573,12.158,1.451,9.359,10.939,7.57,0.448,12.835,13.552,7.788,2.133,15.095,11.17,-1.179,8.073,17.789,8.334,6.184,4.187,15.853,-0.892,2.045,11.214,6.329,-0.337,16.976,16.93,9.874,0.227,7.399,5.987,10.345,-1.211,6.65,1.969,5.276,7.901,16.123,-0.635,14.023,14.512,2.602,-0.82,-3.947,-6.287,2.766,12.055,3.638,6.597,1.307,10.519,5.217,0.388,-4.304,3.581,8.496,-3.377,-3.793,-0.759],[19.951,23.176,14.677,32.734,25.891,13.668,26.929,29.086,25.908,13.987,22.294,21.771,19.869,16.073,19.831,23.705,17.598,17.559,10.87,11.188,11.119,19.029,13.393,3.976,13.238,17.931,16.754,4.239,18.697,19.968,7.703,-0.283,8.198,7.019,9.161,11.296,9.562,13.765,1.949,5.635,9.324,11.612,0.893,5.986,12.77,17.118,-1.036,16.333,0.24,5.217,11.596,5.237,0.699,7.648,8.881,3.323,-4.041,0.981,-5.467,0.945,5.329,14.831,13.373,-2.868,23.873,12.467,26.346,30.92,24.609,14.446,19.007,28.304,19.877,32.807,25.825,21.545,21.336,29.671,20.827,18.458,13.494,18.902,12.846,27.369,14.459,26.576,12.741,22.861,25.862,13.64,18.999,20.412,16.407,21.231,10.6,3.14,23.161,16.112,12.874,12.586,12.948,15.946,11.925,18.7,11.316,19.076,17.097,23.835,16.554,3.331,19.152,13.852,9.593,19.121,4.652,18.053,11.738,6.69,3.935,10.217,17.164,18.448,17.093,17.396,19.1,12.954,9.042,-1.965,6.528,10.389,9.467,5.469,-0.19,8.291,12.194,1.582,9.261,11.881,7.566,0.886,12.755,13.136,7.574,2.264,14.963,11.113,-0.988,8.192,18.052,8.471,6.626,3.835,16.124,-0.704,1.831,11.778,5.692,-0.1,17.173,16.841,9.976,0.379,6.761,6.349,10.708,-0.825,6.903,1.93,5.416,7.641,15.883,-0.457,14.237,14.154,2.73,-0.965,-4.527,-6.647,2.306,11.573,3.638,6.493,0.964,10.155,5.42,0.717,-4.193,3.532,8.401,-3.329,-3.731,-0.71],[19.842,23.167,14.569,32.503,25.8,13.838,27.063,28.895,25.917,14.004,22.555,21.951,19.838,16.026,19.692,23.904,17.639,17.639,10.996,11.122,11.289,18.883,13.362,3.861,13.048,18.055,16.829,4.084,18.711,19.957,7.764,-0.375,8.153,6.921,9.148,11.411,9.374,13.711,1.931,5.394,9.603,11.681,1.138,5.936,12.548,17.287,-0.905,16.503,0.129,5.218,11.427,5.352,0.865,7.467,8.869,3.271,-3.915,1.152,-5.567,1.083,5.238,14.86,13.327,-3.049,24.128,12.385,26.683,30.646,24.983,14.373,19.105,28.074,19.9,32.921,26.102,21.639,21.337,29.873,21.229,18.162,14.202,18.191,13.072,27.298,13.956,26.293,12.57,22.75,26.051,13.779,18.753,20.76,15.898,21.016,10.46,2.78,23.208,16.077,13.392,12.691,13.078,16.485,11.98,18.79,11.348,19.661,17.075,23.628,16.685,3.529,18.751,14.04,10.011,19.293,5.312,17.541,11.563,6.571,3.852,10.666,17.256,18.52,17.122,17.215,18.948,12.864,8.433,-2.18,6.516,10.467,9.163,5.176,0.228,7.857,12.102,1.285,8.863,12.17,7.535,0.984,12.76,13.119,7.754,2.613,15.102,10.976,-0.876,8.425,18.069,9.111,6.467,3.619,15.823,-0.525,1.497,12.074,5.719,0.214,17.587,16.964,9.663,0.276,6.475,6.517,10.767,-0.719,6.939,1.391,5.955,7.211,16.121,-0.438,14.031,14.584,2.675,-1.232,-4.403,-7.081,2.197,11.968,3.674,5.958,1.392,9.98,5.288,0.472,-4.585,3.221,8.482,-3.006,-3.805,-0.8],[19.653,23.183,14.554,32.25,25.608,13.957,27.137,28.607,26.011,14.209,22.793,21.963,19.855,16.04,19.523,23.846,17.802,17.845,11.041,11.028,11.37,18.865,13.511,3.65,12.955,18.195,16.757,3.898,18.549,19.893,7.766,-0.459,8.194,6.853,9.075,11.527,9.181,13.787,2.008,5.453,9.815,11.721,1.016,5.979,12.183,17.503,-0.831,16.539,0.068,5.366,11.176,5.507,1.011,7.387,8.861,3.268,-3.821,1.124,-5.665,1.227,5.276,14.979,13.401,-3.07,23.556,12.523,26.415,30.394,24.567,14.225,19.164,27.627,19.781,33.105,25.852,21.985,21.278,29.447,21.523,18.242,14.223,18.148,13.548,26.816,13.477,26.492,12.974,22.817,26.193,13.752,18.633,21.217,15.892,20.991,10.366,3.005,23.328,16.206,13.523,12.323,13.234,16.543,11.715,18.604,11.284,19.423,17.076,23.638,17.101,3.398,18.883,13.525,9.832,19.448,4.575,17.776,11.686,6.637,3.317,10.923,17.304,18.377,17.088,17.512,19.211,13.068,8.615,-2.122,6.701,10.475,9.263,5.312,0.435,8.065,11.97,1.445,8.419,11.928,7.635,0.825,12.838,13.015,7.809,2.478,14.874,11.285,-1.126,8.519,18.196,8.982,5.836,3.627,15.513,-0.689,1.76,12.186,5.84,0.179,17.973,16.886,10.684,0.343,6.766,5.95,10.422,-0.643,6.936,1.877,5.342,7.886,16.19,-0.388,13.965,14.601,2.583,-1.197,-4.276,-6.749,2.603,11.994,3.855,6.022,1.565,9.804,4.624,0.689,-4.788,3.489,8.77,-3.433,-3.752,-0.374],[19.474,23.075,14.538,32.227,25.431,14.149,27.011,28.191,25.936,14.576,22.923,21.837,19.951,15.99,19.53,23.622,17.852,18.074,10.987,10.96,11.393,18.981,13.696,3.392,12.896,18.41,16.605,3.6,18.453,19.855,7.561,-0.417,8.31,6.839,9.002,11.576,9.101,13.71,2.186,5.614,10.023,11.787,0.694,6.073,11.992,17.654,-0.82,16.444,0.138,5.304,11.051,5.514,1.102,7.439,9.079,3.332,-3.662,1.146,-5.72,1.353,5.347,15.227,13.534,-3.036,22.718,13.02,26.541,30.346,24.509,14.251,18.988,27.59,19.597,32.687,26.027,22.446,21.26,29.191,21.94,18.033,13.544,18.266,12.883,26.57,14.092,26.572,13.185,23.454,26.297,13.91,19.177,20.96,16.313,20.786,10.509,2.998,23.462,16.514,13.445,12.326,13.158,16.509,11.474,19.08,10.573,19.215,17.117,23.551,17.255,2.917,18.935,13.516,9.644,19.693,4.129,18.347,11.954,6.964,2.705,11.271,17.27,17.715,17.343,17.612,19.062,13.387,9.482,-1.976,6.754,10.4,9.358,5.237,0.139,8.23,12.037,1.409,8.675,11.64,7.563,0.637,12.727,12.873,7.497,2.523,14.94,11.722,-1.305,7.732,18.381,8.985,5.884,3.865,15.284,-1.043,1.674,11.984,5.954,-0.045,17.704,16.94,10.204,0.299,6.799,6.224,10.033,-0.423,7.319,2.468,5.123,7.969,16.185,-0.265,13.74,14.562,2.689,-1.124,-4.239,-6.547,2.381,11.773,3.833,6.145,1.238,9.889,4.752,1.17,-4.765,3.548,8.051,-3.839,-3.456,-0.438],[19.312,22.817,14.386,32.296,25.376,14.276,26.926,27.872,25.793,14.902,23.002,21.639,20.136,16.039,19.663,23.471,17.953,18.2,10.908,10.913,11.469,19.155,13.795,3.12,12.893,18.597,16.562,3.3,18.449,19.737,7.318,-0.374,8.454,6.693,8.989,11.595,9.006,13.527,2.278,5.627,10.145,11.777,0.59,6.039,12.092,17.671,-0.859,16.292,0.229,5.14,11.153,5.579,1.239,7.336,9.204,3.414,-3.482,1.198,-5.666,1.456,5.233,15.379,13.679,-2.965,22.665,13.63,26.687,30.556,25.015,14.343,19.022,27.529,19.76,32.255,26.132,22.743,21.135,28.759,22.126,17.709,13.606,18.541,12.827,26.481,14.171,26.388,12.978,23.156,26.21,14.416,19.708,20.648,15.94,20.688,10.406,2.405,22.933,16.821,13.806,12.735,13.301,16.833,11.63,19.111,10.082,19.041,16.688,23.163,17.4,2.36,18.894,13.711,9.408,19.8,4.445,18.464,12.133,6.467,2.536,10.881,17.081,18.286,17.582,17.412,18.634,13.377,9.545,-2.036,6.692,10.255,8.96,5.248,0.398,8.432,11.901,1.648,9.001,11.362,7.339,0.13,13.344,12.763,7.542,2.527,14.973,11.852,-1.312,7.321,18.052,9.26,6.62,3.828,15.18,-0.863,1.498,11.596,6.087,0.222,17.571,16.965,9.821,0.314,6.324,6.514,9.93,-0.529,7.375,2.534,5.917,7.522,16.316,-0.324,14.126,14.702,2.885,-1.064,-4.169,-6.826,1.862,12.296,3.662,5.952,1.634,10.161,5.143,1.26,-4.51,3.322,8.743,-3.486,-3.592,-0.256],[19.177,22.748,14.264,32.353,25.551,14.437,26.936,27.681,25.846,15.103,23.053,21.438,20.409,16.06,19.756,23.27,18.144,18.304,10.864,10.824,11.515,19.288,13.938,2.757,12.993,18.575,16.599,3.148,18.407,19.628,7.028,-0.271,8.499,6.584,8.98,11.592,8.915,13.314,2.296,5.605,10.231,11.761,0.613,6.027,12.196,17.505,-0.715,16.117,0.105,5.045,11.346,5.788,1.365,7.137,9.333,3.448,-3.395,1.242,-5.674,1.453,5.063,15.546,13.846,-2.942,22.853,13.657,26.451,30.754,24.586,14.514,19.407,27.285,19.457,32.252,25.858,23.052,20.939,28.818,21.97,17.917,13.814,18.906,13.01,26.224,13.482,26.108,12.887,22.463,26.485,15.115,19.697,20.479,15.878,20.783,10.009,2.109,22.566,16.687,13.991,12.453,13.143,17.069,11.831,18.546,10.307,19.009,16.994,23.442,17.716,1.908,18.804,13.192,9.271,19.809,3.795,18.242,12.137,5.921,2.784,10.238,17.161,18.536,17.371,17.434,18.525,12.847,8.999,-2.084,7.192,10.014,8.62,5.319,0.937,7.938,11.45,1.537,8.667,11.57,7.456,0.742,13.576,12.712,7.835,2.233,14.372,11.624,-1.275,7.598,18.167,9.297,6.28,3.774,15.424,-0.981,1.735,11.393,5.729,0.173,18.296,17.114,10.905,0.415,5.923,6.151,10.771,-0.338,7.614,2.531,5.934,7.799,16.291,-0.249,14.532,14.851,3.159,-1.142,-4.045,-6.641,1.856,12.081,3.821,5.95,1.998,9.899,5.242,1.137,-4.107,3.342,9.24,-3.072,-3.447,-0.473],[19.036,22.945,14.248,32.434,25.769,14.539,26.976,27.705,25.985,15.222,23.041,21.262,20.686,16.166,19.738,23.137,18.214,18.432,10.818,10.749,11.446,19.292,14.003,2.344,12.933,18.483,16.535,3.036,18.417,19.605,6.824,-0.088,8.528,6.502,8.82,11.463,8.805,12.95,2.229,5.578,10.497,11.713,0.633,6.06,12.102,17.445,-0.494,16.005,-0.131,5.084,11.652,6.007,1.483,6.914,9.481,3.492,-3.427,1.207,-5.711,1.416,4.894,15.596,13.984,-2.934,22.804,13.473,26.522,30.922,24.509,14.544,19.802,26.761,18.88,32.253,25.71,23.428,21.059,28.921,21.574,17.903,14.551,19.309,12.822,26.541,13.442,26.375,13.133,22.584,26.373,15.465,20.02,20.386,15.973,21.285,10.428,1.957,22.577,16.743,14.457,12.263,12.998,16.694,12.161,19.12,10.923,19.339,17.225,23.088,17.475,1.468,18.282,13.239,9.051,20.11,3.832,17.832,12.312,6.013,2.8,10.161,17.42,17.87,17.33,17.735,18.824,12.548,8.983,-1.649,6.745,10.135,8.484,4.761,1.072,8.015,11.458,1.249,8.169,12.388,7.355,0.647,13.482,12.993,7.658,2.574,14.378,11.492,-0.937,7.682,18.15,9.131,5.509,3.837,15.386,-1.087,1.657,11.547,5.603,0.539,18.451,17.08,11.342,0.351,6.124,5.798,11.192,-0.135,7.468,2.71,5.414,8.316,16.554,-0.139,14.415,14.624,3.068,-1.018,-4.546,-7.037,2.135,12.154,3.721,5.72,1.756,9.982,5.496,0.947,-3.726,2.918,9.11,-3.259,-3.165,-0.367],[18.916,23.059,14.243,32.56,25.973,14.678,26.972,27.803,26.017,15.198,22.958,21.184,20.833,16.378,19.851,23.11,18.327,18.418,10.868,10.581,11.355,19.163,14.069,1.939,12.821,18.539,16.425,3.075,18.416,19.56,6.885,0.131,8.39,6.608,8.686,11.333,8.644,12.773,2.05,5.488,10.779,11.635,0.512,5.979,11.932,17.439,-0.453,15.855,-0.204,5.046,11.879,6.045,1.547,6.812,9.595,3.61,-3.405,1.267,-5.836,1.512,4.599,15.4,14.023,-2.764,23.185,13.66,26.613,31.112,25.146,14.788,19.967,27.493,18.755,32.336,25.774,23.458,21.309,28.471,21.345,17.707,14.938,19.434,12.806,27.322,14.341,26.75,13.361,22.278,26.26,15.526,20.121,20.357,16.154,20.68,10.615,1.597,22.672,17.027,14.641,12.272,13.207,17.161,11.817,19.578,11.338,19.24,16.87,22.788,17.497,1.193,18.067,13.193,9.333,20.176,4.225,17.474,12.18,6.056,2.619,10.336,17.341,18.301,17.519,17.562,19.17,12.285,9.531,-1.454,6.824,9.94,8.421,4.778,1.198,7.711,11.32,1.762,8.046,12.629,7.483,0.003,13.434,11.983,7.571,2.678,14.269,11.61,-1.04,7.455,18.168,9.805,5.782,3.91,15.531,-0.775,1.397,11.424,5.925,0.578,18.172,17.072,11.278,0.683,5.927,6.357,10.816,-0.268,7.786,2.495,5.106,8.16,16.317,-0.173,14.34,14.853,2.78,-0.9,-4.626,-7.321,2.334,12.816,3.834,5.403,1.978,10.48,5.962,0.845,-3.712,2.838,8.858,-3.403,-3.574,-0.227],[18.881,23.149,14.351,32.649,26.233,14.898,26.932,27.833,26.161,15.19,22.906,21.137,20.711,16.618,19.972,22.993,18.57,18.417,10.98,10.459,11.421,18.859,14.126,1.622,12.756,18.556,16.23,3.311,18.4,19.563,7.012,0.319,8.328,6.826,8.692,11.171,8.483,12.726,2.071,5.502,11.141,11.562,0.401,5.871,11.643,17.381,-0.542,15.738,-0.211,5.072,11.814,6.159,1.584,6.753,9.63,3.73,-3.463,1.303,-5.929,1.695,4.433,15.155,14.076,-2.553,23.241,13.905,26.269,31.697,25.029,15.101,19.972,27.994,19.097,32.846,25.84,23.249,21.382,28.98,21.453,18.243,14.327,19.811,12.724,27.296,14.475,27.168,13.547,21.895,26.081,14.977,19.842,19.929,16.179,20.296,10.305,1.53,22.837,17.089,13.887,12.388,13.063,17.364,11.308,19.357,11.444,18.439,16.738,23.27,17.723,1.008,18.395,12.813,9.201,20.099,4.156,17.259,12.408,6.149,2.57,10.481,16.948,18.614,17.445,17.181,19.061,12.173,9.429,-1.364,6.949,9.741,8.478,5.16,1.542,7.572,11.038,1.159,7.979,12.271,7.42,0.203,13.248,11.889,7.634,1.948,13.909,11.558,-1.667,6.88,18.131,10.099,6.198,3.654,15.833,-0.632,1.361,10.824,5.916,-0.212,18.33,16.622,11.171,0.356,5.971,6.474,10.326,-0.217,7.993,2.633,4.777,8.277,15.811,-0.035,14.824,15.098,3.218,-0.709,-4.718,-6.886,2.469,12.752,4.035,5.564,2.032,11.049,5.513,1.64,-4.029,2.688,8.689,-3.098,-3.216,-0.09],[19.02,23.317,14.449,32.776,26.472,15.073,26.881,27.995,26.306,15.077,22.911,21.061,20.549,16.838,20.099,22.919,18.682,18.342,10.955,10.397,11.565,18.355,14.116,1.369,12.679,18.475,15.955,3.56,18.404,19.7,7.219,0.484,8.352,6.965,8.79,10.943,8.275,12.586,1.937,5.546,11.517,11.467,0.359,5.734,11.249,17.282,-0.795,15.66,-0.185,5.119,11.586,6.226,1.696,6.889,9.602,3.851,-3.538,1.411,-5.914,1.889,4.257,15.067,14.098,-2.281,23.178,13.686,26.313,31.793,24.869,15.203,19.486,27.058,19.416,33.086,25.705,22.74,21.357,28.937,21.318,17.93,14.391,20.119,12.889,27.197,13.993,27.379,13.696,21.559,26.17,14.766,20.183,19.553,16.39,21.205,10.442,2.067,23.204,17.339,13.869,12.507,13.165,16.833,11.949,19.534,11.547,17.974,16.746,22.839,17.582,0.748,18.679,12.946,8.81,19.854,4.464,17.559,12.355,6.171,2.568,10.175,16.804,18.348,17.407,17.266,18.891,12.161,9.046,-1.094,6.581,10.109,8.737,5.121,1.528,8.29,10.934,1.111,8.187,12.08,7.151,0.27,13.065,12.531,7.48,2.416,13.997,11.382,-1.783,6.636,17.878,9.969,6.143,3.779,15.619,-1.205,1.34,10.299,6.003,0.252,18.163,16.554,11.365,-0.056,6.032,5.941,10.446,-0.13,8.025,2.736,5.119,8.202,15.413,0.034,14.819,15.115,3.492,-0.396,-4.433,-6.595,2.637,12.733,4.17,5.745,1.671,10.412,5.28,2.463,-4.424,2.425,8.74,-2.845,-3.156,-0.379],[19.178,23.347,14.455,32.811,26.664,15.257,26.879,28.033,26.247,14.916,22.886,20.958,20.542,16.837,20.393,22.959,18.705,18.011,11.001,10.483,11.612,17.869,14.123,1.225,12.783,18.344,15.893,3.761,18.39,19.857,7.455,0.536,8.322,6.973,8.839,10.897,8.193,12.45,1.809,5.602,11.68,11.405,0.325,5.679,10.89,17.156,-0.927,15.542,-0.196,5.058,11.243,6.265,1.814,7.175,9.582,3.982,-3.593,1.599,-5.814,2.096,4.147,15.083,14.086,-2.019,23.464,13.496,26.898,31.646,24.953,15.309,19.026,27.641,19.16,32.428,25.344,22.174,21.63,29.038,21.315,17.987,14.902,19.993,12.928,27.357,13.799,27.122,13.699,21.506,26.554,14.789,20.322,19.562,16.748,21.389,10.348,1.689,23.043,17.39,14.891,11.978,13.14,16.952,12.412,19.849,11.064,18.293,16.815,22.953,17.092,0.434,18.43,12.676,8.711,19.781,4.931,17.25,12.202,6.099,2.867,10.195,16.922,18.343,17.408,16.748,19.063,11.846,8.738,-1.105,6.739,10.33,8.695,5.503,2.105,8.27,10.821,1.343,8.418,11.556,7.76,0.071,12.495,12.088,7.444,2.736,13.71,11.177,-1.082,6.383,17.733,9.855,5.776,3.696,15.206,-1.143,1.529,10.553,5.693,0.088,17.638,16.963,12.312,-0.345,6.321,6.065,10.892,0.217,8.069,2.513,5.075,8.069,15.644,0.276,14.306,14.974,3.117,-0.154,-4.371,-6.908,2.602,12.811,3.916,5.828,2.066,9.546,5.528,2.003,-4.941,2.317,8.954,-2.596,-3.156,-0.106],[19.328,23.394,14.372,32.656,26.723,15.402,26.933,28.121,26.22,14.796,22.723,20.86,20.644,16.741,20.643,23.089,18.782,17.924,11.079,10.678,11.465,17.444,14.336,1.032,12.871,18.124,15.989,4.051,18.396,19.853,7.596,0.456,8.312,6.745,8.917,10.924,8.246,12.26,1.737,5.485,11.615,11.265,0.467,5.719,10.688,17.01,-0.992,15.311,-0.113,5.081,10.931,6.386,2.019,7.405,9.682,3.975,-3.695,1.749,-5.784,2.135,4.132,15.104,14.02,-1.729,23.497,13.387,26.483,31.601,25.327,14.928,19.201,28.323,19.242,32.166,25.26,21.684,21.607,29.13,21.649,18.671,15.181,20.37,12.922,27.502,14.066,27.503,13.635,21.649,26.594,14.82,20.201,19.542,16.426,21.156,10.769,1.119,22.681,17.261,14.575,11.922,13.181,16.683,11.765,19.919,10.723,17.915,17.018,22.921,17.227,0.236,18.459,13.108,8.829,19.61,4.732,16.971,12.464,6.127,2.935,10.26,17.209,18.23,17.343,16.383,19.261,12.431,8.601,-0.848,6.667,10.288,8.447,5.302,2.124,8.16,10.581,1.359,8.244,11.546,7.786,-0.338,12.355,11.491,7.569,2.06,13.452,11.243,-0.883,6.576,18.031,10.346,5.65,3.71,14.974,-0.85,1.677,10.662,5.679,-0.21,17.499,16.377,12.617,0.074,6.509,6.223,10.567,0.654,8.214,2.83,4.743,8.148,16.036,0.688,13.995,14.878,3.245,0.163,-4.515,-7.152,3.062,12.594,4.106,6.036,2.01,9.263,5.857,1.463,-5.273,2.573,9.468,-2.288,-3.242,-0.023],[19.541,23.343,14.314,32.498,26.805,15.428,26.979,28.38,26.298,14.717,22.524,20.768,20.784,16.55,20.768,23.147,18.863,17.916,11.039,10.884,11.306,17.063,14.512,0.768,12.903,18.117,16.083,4.145,18.457,19.84,7.523,0.32,8.237,6.457,9.038,11.024,8.341,12.088,1.693,5.403,11.525,11.12,0.547,5.851,10.719,16.954,-1.048,15.01,-0.021,5.297,10.885,6.519,2.213,7.461,9.858,3.939,-3.799,1.757,-5.868,2.011,4.225,15.074,13.82,-1.518,23.072,13.291,26.027,31.129,25.045,14.952,20.087,27.792,19.821,32.517,25.513,21.19,21.401,29.143,21.547,19.023,15.153,20.776,13.092,27.691,14.019,27.649,14.05,21.751,26.438,14.756,20.264,19.421,16.093,21.941,10.916,1.558,23.037,17.739,13.796,12.328,12.953,16.808,11.866,20.072,10.547,17.315,16.954,22.635,17.263,0.123,18.606,13.05,9.371,19.466,5.099,16.775,13.096,6.657,3.619,9.955,17.216,18.1,17.04,16.887,19.134,12.619,9.18,-0.562,6.442,10.374,8.669,4.927,2.029,7.804,10.659,0.938,7.994,11.552,7.473,-0.008,12.429,11.651,7.661,2.298,13.646,11.204,-1.303,6.78,17.945,10.295,5.68,3.534,14.946,-0.912,1.742,9.715,5.642,-0.213,17.488,16.18,12.278,-0.309,6.609,6.437,9.629,0.687,8.324,3.496,4.597,8.145,16.102,0.365,13.756,14.79,3.371,0.311,-4.84,-6.871,3.198,12.771,4.321,6.159,1.86,9.816,6.045,1.522,-5.433,2.586,9.62,-2.258,-2.988,0.268],[19.798,23.045,14.367,32.449,27.033,15.464,26.893,28.532,26.212,14.551,22.261,20.669,20.977,16.409,21.025,23.207,19.056,17.84,11.02,11.029,11.206,16.709,14.596,0.543,12.932,18.199,16.088,4.229,18.524,19.901,7.459,0.296,8.148,6.176,9.171,10.982,8.348,12.117,1.713,5.412,11.412,11.012,0.433,5.992,10.852,16.931,-1.249,14.889,0.085,5.615,11.115,6.649,2.217,7.367,9.925,3.861,-3.818,1.963,-6.054,1.805,4.299,14.981,13.621,-1.478,23.247,13.418,27.011,30.959,24.612,15.202,20.657,27.881,19.77,32.716,25.729,21.097,21.491,29.342,21.142,18.637,15.257,20.862,12.919,27.706,13.785,27.273,14.073,21.614,25.995,14.528,20.426,19.68,15.898,21.463,10.222,1.313,23.703,17.992,14.451,12.019,12.822,16.945,11.969,20.147,10.424,17.423,16.835,22.936,17.38,0.105,18.516,12.683,10.204,19.523,5.206,16.265,13.079,6.412,3.901,10.019,17.132,18.263,16.947,17.262,19.092,12.243,9.506,-0.698,6.599,10.3,8.749,4.43,1.985,7.395,10.635,1.171,8.353,11.876,7.995,0.384,12.889,11.491,7.869,2.553,13.371,10.957,-1.229,6.664,17.975,9.817,6.117,3.5,14.589,-1.002,1.541,9.689,5.636,0.015,17.507,16.13,11.914,-0.647,6.524,6.886,9.692,0.782,8.476,3.266,4.931,8.371,15.76,0.115,13.699,14.989,3.492,0.383,-4.969,-6.67,2.965,12.429,4.427,6.144,2.551,10.211,5.828,2.091,-5.542,2.885,9.45,-2.195,-2.69,0.421],[19.862,22.897,14.418,32.456,27.168,15.598,26.657,28.581,26.156,14.342,21.961,20.644,21.074,16.511,21.236,23.43,19.22,17.721,10.938,11.035,11.144,16.353,14.749,0.358,12.855,18.11,16.063,4.312,18.548,19.967,7.318,0.384,8.251,5.881,9.365,10.969,8.335,12.187,1.791,5.448,11.302,11.032,0.368,6.099,10.898,16.991,-1.387,14.812,0.242,5.998,11.291,6.677,2.299,7.307,9.957,3.822,-3.801,2.167,-6.372,1.856,4.415,14.888,13.54,-1.432,23.294,13.223,26.575,31.237,24.731,15.208,20.098,28.307,19.942,32.816,25.557,21.227,21.063,29.323,20.719,18.401,15.125,20.822,13.15,28.244,13.728,27.765,13.842,21.441,25.67,14.204,20.493,20.016,15.605,21.838,10.411,1.202,23.217,17.927,14.796,12.375,13.045,16.702,11.949,20.476,10.449,17.535,17.023,23.09,17.587,-0.017,18.513,12.974,11.33,19.296,5.396,16.235,12.92,6.209,3.761,10.234,17.075,18.205,17.044,16.98,19.748,12.012,9.41,-0.808,6.582,10.607,8.803,4.291,1.741,6.712,10.45,1.485,8.151,12.057,8.024,-0.086,12.679,11.93,7.872,2.381,13.488,10.834,-1.112,6.562,17.876,9.666,5.964,3.555,14.225,-0.884,2.009,10.618,6.017,-0.476,17.169,15.977,11.598,-0.668,6.278,6.93,10.416,0.65,8.445,3.108,5.371,8.272,15.386,0.044,13.728,14.668,3.16,0.252,-4.98,-7.023,2.923,11.978,4.989,6.16,2.347,9.836,5.642,1.857,-5.61,2.994,9.305,-2.207,-2.831,0.418],[19.803,22.874,14.535,32.516,27.325,15.643,26.531,28.459,26.102,14.156,21.71,20.747,20.889,16.632,21.34,23.669,19.31,17.525,10.939,11.1,11.163,16.061,14.763,0.231,12.945,17.884,16.039,4.364,18.718,20.084,7.153,0.5,8.449,5.602,9.511,11.075,8.274,12.333,1.832,5.459,11.202,10.987,0.329,6.161,11.078,16.986,-1.505,14.722,0.38,6.397,11.289,6.536,2.411,7.365,9.845,3.785,-3.806,2.263,-6.664,1.995,4.552,14.754,13.547,-1.357,22.811,12.838,26.022,31.152,24.786,15.001,19.358,28.119,19.904,32.774,25.134,20.954,20.955,29.381,20.305,18.604,15.68,21.239,13.185,28.398,13.677,28.024,13.927,21.248,25.865,13.936,20.751,19.441,16.074,22.634,10.346,1.552,23.441,18.136,14.915,12.346,12.875,16.415,11.884,20.3,9.968,17.351,17.217,23.318,16.85,-0.213,18.73,12.77,12.203,19.051,5.245,16.525,12.95,6.394,3.679,10.102,17.272,18.272,17.306,16.434,19.326,12.018,8.559,-1.221,6.745,11.169,8.446,4.052,1.501,6.33,10.742,0.997,8.468,12.405,8.342,-0.135,12.676,12.457,7.952,2.586,13.309,11.013,-0.567,6.632,18.057,9.562,5.305,3.678,14.378,-0.854,2.052,10.668,6.046,-0.737,16.847,15.881,11.658,-0.838,6.56,7.083,10.43,0.841,8.414,3.542,5.648,8.172,15.306,0.272,13.86,14.326,2.778,0.503,-5.274,-7.7,3.449,12.375,4.966,6.036,2.152,9.874,5.9,1.539,-5.587,3.153,9.338,-2.011,-3.041,0.457],[19.763,22.765,14.532,32.549,27.543,15.757,26.601,28.294,25.957,14.076,21.391,20.69,20.667,16.648,21.585,23.99,19.344,17.374,10.996,11.294,11.196,15.97,14.67,0.118,13.15,17.626,15.951,4.344,18.978,20.103,7.106,0.309,8.404,5.411,9.767,11.259,8.269,12.377,1.742,5.336,11.03,10.92,0.322,6.232,11.187,16.927,-1.653,14.704,0.514,6.586,11.31,6.44,2.536,7.544,9.684,3.721,-3.906,2.4,-6.887,1.897,4.752,14.656,13.515,-1.222,22.63,12.728,26.627,30.885,24.305,15.089,19.216,27.681,19.716,32.629,25.129,20.692,21.135,29.007,20.558,18.868,15.852,21.265,13.185,27.773,14.31,28.271,14.043,21.379,26.567,13.585,20.374,19.085,16.496,22.146,10.308,1.51,23.992,17.984,14.503,11.957,12.703,16.279,11.775,20.51,9.894,16.613,17.395,23.428,16.022,-0.061,19.011,13.172,11.923,18.654,5.121,16.905,13.002,6.01,3.568,9.926,17.295,18.715,17.358,16.013,19.124,12.114,8.876,-0.883,6.619,11.24,8.486,3.574,1.679,6.238,10.83,0.767,8.684,12.443,8.333,0.308,12.469,12.561,8.112,2.624,13.797,11.114,-0.773,6.659,18.114,9.686,5.345,3.452,14.855,-1.156,2.136,10.906,5.701,-0.436,17.208,16.084,11.856,-0.694,6.665,7.452,10.359,1.344,7.993,3.77,5.729,8.242,15.321,0.176,13.729,14.768,3.711,0.645,-5.457,-7.749,3.274,11.944,5.232,6.288,2.604,10.014,6.221,1.712,-5.71,3.325,9.069,-1.674,-2.877,0.873],[19.837,22.634,14.569,32.522,27.649,15.831,26.927,28.309,25.742,13.94,21.022,20.571,20.44,16.571,21.751,24.303,19.26,17.343,11.101,11.57,11.259,16.199,14.511,0.02,13.386,17.526,15.759,4.36,19.156,20.14,7.092,0.125,8.237,5.21,9.973,11.454,8.272,12.54,1.542,5.077,10.846,10.851,0.376,6.262,11.199,17.006,-1.622,14.834,0.554,6.591,11.369,6.397,2.779,7.78,9.47,3.871,-4.066,2.571,-7.019,1.747,4.917,14.623,13.468,-0.972,22.594,12.527,26.512,30.729,24.12,14.938,19.814,27.24,20.292,32.747,25.328,20.496,20.805,28.698,21.079,18.397,15.691,21.073,12.95,27.39,14.731,28.545,14.366,21.656,26.165,13.84,20.128,19.053,15.857,22.505,10.818,1.085,24.446,18.13,14.154,12.668,12.792,16.353,11.993,20.731,9.745,16.058,17.609,23.459,16.422,0.112,18.74,13.356,11.124,18.831,5.13,16.496,12.67,6.364,3.428,9.834,17.263,19.088,16.586,15.888,19.618,12.032,9.518,-1.038,6.559,11.305,8.473,3.784,1.755,6.289,10.824,1.076,8.648,11.97,8.54,0.297,12.321,12.462,8.01,2.282,13.84,11.43,-1.068,6.66,17.907,9.317,5.715,3.241,14.429,-1.201,2.093,10.625,5.912,-0.679,17.099,15.701,11.662,-1.157,6.686,7.586,10.243,1.943,8.126,3.964,5.614,8.013,15.211,0.026,13.637,14.511,3.568,0.766,-5.292,-7.923,2.914,12.146,5.528,6.582,2.038,10.225,5.821,1.639,-5.753,3.233,8.794,-1.983,-2.771,1.18],[19.999,22.452,14.63,32.49,27.661,15.902,27.109,28.439,25.315,13.742,20.701,20.417,20.301,16.206,21.86,24.469,19.147,17.43,11.369,11.632,11.278,16.446,14.269,-0.129,13.775,17.51,15.584,4.397,19.318,20.153,6.988,0.047,8.252,5.075,10.042,11.574,8.276,12.759,1.236,4.897,10.671,10.886,0.426,6.34,11.084,17.046,-1.637,14.943,0.511,6.727,11.443,6.368,2.881,7.991,9.145,4.023,-4.152,2.638,-7.0,1.485,5.12,14.623,13.39,-0.859,22.457,12.713,26.078,30.647,23.64,14.868,20.417,27.541,19.806,32.844,25.905,20.581,20.681,29.155,20.278,18.499,15.492,21.341,13.357,28.063,14.223,28.175,14.234,21.849,26.29,13.961,19.914,19.157,15.533,22.936,10.653,0.816,24.568,18.324,14.087,13.14,13.129,16.459,11.426,20.366,10.364,16.328,17.744,23.902,16.749,0.214,18.873,13.16,11.069,18.89,5.045,16.59,12.675,6.592,3.689,10.211,17.074,18.875,16.573,16.012,19.922,12.342,9.32,-1.208,6.492,11.567,8.715,3.889,1.529,6.729,11.098,1.259,8.979,11.187,8.85,0.318,12.531,12.713,8.202,1.899,13.611,11.076,-0.802,6.643,18.112,8.884,5.04,3.2,14.23,-0.633,2.165,10.544,6.071,-0.621,17.085,15.822,11.073,-1.066,7.115,7.255,10.079,1.692,8.246,4.307,5.536,7.776,15.386,-0.229,13.489,14.5,3.053,1.013,-5.665,-7.789,3.407,12.093,5.588,6.695,2.358,10.558,5.623,1.481,-5.804,3.321,8.998,-1.655,-2.968,1.299],[19.931,22.324,14.724,32.455,27.67,15.952,27.135,28.585,24.973,13.606,20.397,20.182,20.264,15.816,22.107,24.561,19.046,17.595,11.347,11.742,11.22,16.632,14.191,-0.322,14.166,17.582,15.6,4.401,19.423,20.325,6.918,0.126,8.351,5.017,10.1,11.569,8.425,12.721,1.054,4.72,10.44,10.98,0.567,6.603,11.06,17.023,-1.736,14.982,0.657,7.053,11.542,6.313,2.788,8.21,8.884,4.09,-4.173,2.612,-6.841,1.149,5.285,14.698,13.23,-0.872,22.271,12.509,25.418,30.698,23.214,14.722,20.022,27.642,19.657,32.624,25.867,20.505,20.637,29.438,19.542,19.023,15.53,21.441,13.98,28.607,13.491,27.667,14.389,21.703,26.427,13.173,20.083,19.291,15.596,22.696,10.951,1.036,24.115,17.801,13.903,13.278,12.979,16.236,12.356,20.398,10.459,16.773,18.231,23.496,16.313,0.415,18.977,14.08,10.818,18.92,5.171,16.708,12.458,6.107,4.362,10.34,16.91,18.51,16.772,16.554,19.603,12.715,9.104,-1.606,6.8,11.662,8.638,4.128,1.054,6.789,10.847,0.374,8.571,11.062,8.859,0.472,12.817,12.812,8.493,1.924,13.767,10.666,-0.74,6.882,18.14,9.01,4.764,3.237,14.593,-0.84,2.321,10.641,6.031,-0.595,17.72,16.299,10.638,-0.926,7.187,7.672,10.478,1.206,8.12,4.21,6.119,7.218,15.341,-0.637,13.363,14.682,3.353,0.96,-5.77,-7.591,3.497,11.71,5.353,7.029,2.826,10.335,5.859,1.182,-5.937,3.86,8.589,-1.285,-3.1,1.368],[19.753,22.309,14.847,32.391,27.655,15.948,27.05,28.739,24.771,13.396,20.13,19.941,20.138,15.654,22.334,24.499,18.957,17.631,11.474,11.8,11.097,16.759,14.18,-0.405,14.556,17.502,15.72,4.531,19.452,20.545,6.971,0.225,8.498,5.01,10.219,11.536,8.518,12.518,1.073,4.575,10.193,11.144,0.638,6.953,11.194,17.196,-1.88,15.096,0.845,7.381,11.661,6.262,2.698,8.32,8.631,4.02,-4.09,2.632,-6.629,0.959,5.358,14.885,13.133,-0.932,22.174,12.11,25.193,30.673,22.996,14.132,18.83,27.65,20.122,32.225,25.837,20.645,20.453,28.859,19.864,18.776,15.752,21.307,14.014,28.563,13.735,27.806,14.298,20.851,25.951,12.66,20.047,18.699,15.455,23.249,10.853,0.954,24.457,17.926,14.209,13.891,12.857,16.233,12.202,20.348,10.76,17.137,18.11,23.624,16.439,0.315,19.301,13.638,10.813,19.085,5.179,16.645,12.371,6.3,4.394,10.148,17.061,18.769,16.664,16.623,19.9,12.569,9.632,-1.584,6.831,11.187,8.278,3.86,0.843,6.59,11.119,0.406,8.538,11.302,8.989,0.746,12.92,12.755,8.709,1.726,13.825,11.026,-0.628,6.702,16.951,8.654,4.834,2.813,14.601,-1.023,2.389,10.361,6.071,-1.016,17.339,16.205,10.593,-1.102,7.225,7.98,11.074,1.033,8.127,3.974,6.589,7.196,15.043,-0.649,13.245,14.018,3.478,0.737,-5.395,-7.51,3.855,11.572,5.675,7.033,2.365,10.264,6.011,0.531,-5.915,3.781,8.203,-1.592,-3.829,1.122],[19.653,22.322,15.009,32.337,27.569,15.945,26.908,28.735,24.623,13.168,20.092,19.602,19.836,15.72,22.579,24.478,18.999,17.491,11.741,11.776,11.103,16.756,14.24,-0.394,14.762,17.356,15.602,4.771,19.409,20.745,7.057,0.305,8.657,4.991,10.391,11.448,8.388,12.336,1.061,4.41,9.952,11.372,0.608,7.079,11.277,17.205,-1.946,15.201,0.912,7.495,11.761,6.298,2.625,8.24,8.486,3.99,-3.871,2.689,-6.474,0.886,5.479,14.966,13.01,-1.129,22.133,11.908,25.698,30.8,23.074,14.088,18.404,28.117,19.707,31.935,25.831,20.942,20.638,29.022,20.771,18.076,15.497,21.336,13.66,28.765,14.454,27.773,14.213,19.849,25.896,12.183,19.522,18.021,15.444,23.274,11.638,0.909,24.48,18.195,14.427,13.684,12.873,16.625,11.719,20.341,11.158,17.606,17.617,23.762,16.36,-0.234,19.478,14.056,10.583,18.915,5.013,16.853,12.378,6.314,3.946,9.87,17.05,19.504,16.86,16.407,19.754,12.199,9.614,-1.336,6.929,11.404,8.602,3.42,0.86,6.197,10.855,1.09,8.62,11.811,9.154,1.055,13.098,12.462,8.921,2.059,13.659,11.266,-0.214,6.691,16.144,8.779,5.203,3.027,14.413,-0.723,2.565,10.547,6.429,-1.062,17.201,16.04,10.537,-1.026,7.506,7.923,10.711,1.622,8.06,4.075,6.172,6.816,15.263,-0.578,13.229,13.76,3.05,0.795,-5.228,-6.775,3.623,11.355,6.079,6.884,1.645,10.47,6.102,0.124,-5.861,3.706,8.067,-1.651,-3.662,1.061],[19.456,22.298,15.072,32.346,27.446,15.914,26.778,28.726,24.595,12.914,20.305,19.161,19.616,15.912,22.869,24.58,19.039,17.455,12.013,11.697,11.133,16.743,14.353,-0.322,14.83,17.334,15.384,4.866,19.431,20.746,7.261,0.396,8.75,4.947,10.643,11.256,8.157,12.195,1.033,4.362,9.821,11.576,0.794,7.103,11.267,17.228,-1.866,15.092,0.966,7.331,11.598,6.388,2.658,8.227,8.316,3.933,-3.661,2.739,-6.344,0.744,5.552,15.004,12.813,-1.281,22.206,12.044,25.657,30.894,23.011,14.232,18.744,28.005,19.848,31.985,25.584,20.987,20.477,29.837,21.288,18.114,15.304,20.93,13.678,28.462,15.339,27.468,14.555,19.316,26.263,11.599,18.944,18.164,15.835,23.391,11.425,1.012,23.983,18.086,14.295,13.502,12.956,16.412,12.721,20.681,11.054,17.936,17.62,23.399,16.11,-0.632,19.45,14.37,10.096,18.868,5.856,17.239,12.538,6.388,3.989,10.002,16.786,19.601,16.55,16.043,19.955,11.919,9.512,-1.431,7.266,12.21,8.737,3.319,1.321,5.953,10.494,0.348,8.673,12.386,9.609,0.847,13.325,12.513,8.901,2.558,13.394,11.376,-0.291,6.472,16.099,8.795,5.163,3.007,14.453,-0.705,2.648,10.736,6.634,-0.606,16.664,15.975,9.858,-1.426,7.305,8.169,10.418,2.197,8.273,4.43,5.886,6.679,15.224,-0.974,13.189,14.062,3.03,0.482,-5.279,-6.463,2.921,11.083,6.326,6.949,1.294,10.455,6.066,0.558,-5.457,3.906,8.064,-1.636,-2.528,1.407],[19.396,22.164,15.146,32.396,27.297,15.937,26.769,28.779,24.559,12.625,20.624,18.913,19.437,16.07,22.986,24.551,18.894,17.569,12.289,11.463,10.946,16.698,14.362,-0.26,14.832,17.343,15.285,4.947,19.529,20.591,7.586,0.42,8.748,4.967,10.951,11.261,8.069,12.179,0.932,4.435,9.72,11.659,0.926,7.111,11.268,17.104,-1.724,14.877,0.899,7.2,11.359,6.572,2.806,8.256,8.173,3.747,-3.339,2.77,-6.19,0.635,5.597,14.911,12.856,-1.337,22.206,12.223,25.429,31.393,22.98,14.762,19.305,27.852,19.785,32.092,25.413,20.886,20.2,29.377,21.593,18.405,15.323,21.588,13.679,27.831,14.883,27.578,14.457,19.588,26.108,11.633,19.899,18.007,15.665,23.124,11.695,0.998,24.814,18.018,13.935,13.775,12.784,16.123,12.571,20.074,10.885,17.736,18.048,23.698,15.874,-0.386,19.291,14.164,10.283,18.702,5.538,17.494,12.734,6.812,4.114,10.032,16.474,19.242,16.472,16.485,20.088,11.591,9.796,-1.128,7.515,12.444,8.992,3.181,1.902,5.697,10.54,0.338,8.452,12.337,9.606,0.999,13.472,12.824,8.994,2.394,12.889,11.561,-0.546,6.224,17.224,8.684,4.815,2.876,14.197,-0.681,2.481,10.18,6.646,-0.519,17.173,16.164,10.061,-1.155,7.157,7.685,10.548,1.859,8.482,4.541,5.991,6.706,15.392,-1.044,13.102,13.642,2.877,0.381,-6.004,-7.139,2.795,11.104,6.03,7.025,1.875,10.111,5.803,0.526,-5.069,3.848,7.817,-1.587,-2.054,1.856],[19.531,22.051,15.161,32.58,27.125,16.044,26.742,28.703,24.6,12.383,20.933,18.813,19.562,16.104,22.983,24.604,18.687,17.671,12.394,11.207,10.75,16.677,14.205,-0.167,14.781,17.243,15.341,4.93,19.671,20.441,7.821,0.457,8.669,4.948,11.061,11.446,8.106,12.197,0.843,4.521,9.599,11.701,0.956,7.205,11.286,17.115,-1.529,14.665,0.853,6.977,11.35,6.606,2.994,8.201,8.051,3.453,-2.996,2.841,-6.263,0.542,5.614,14.798,12.936,-1.356,21.987,11.557,25.106,31.568,23.208,14.588,18.92,27.745,19.472,32.099,25.645,21.019,20.274,29.338,21.802,18.399,15.537,22.487,13.94,27.502,14.137,27.645,14.354,19.947,25.809,12.419,20.273,18.163,15.361,23.359,12.334,0.911,24.84,17.871,13.596,13.582,12.355,16.433,12.575,19.089,10.212,17.253,18.248,23.603,16.007,0.215,18.925,14.456,10.535,19.155,5.543,16.976,12.557,7.489,4.435,9.542,16.285,18.839,16.597,16.678,19.864,11.652,10.026,-0.563,7.408,12.461,9.321,3.457,1.996,5.59,10.617,0.795,8.426,12.497,9.874,0.996,13.579,12.783,8.958,1.6,13.305,11.384,-0.722,6.402,17.268,9.053,5.07,3.286,13.969,-0.575,2.128,10.171,6.411,-1.181,17.478,15.638,10.194,-0.531,7.346,7.376,10.279,1.329,8.466,4.459,6.481,6.768,15.812,-0.69,13.017,13.499,2.672,0.226,-5.392,-7.229,3.389,11.157,5.583,6.97,2.645,10.251,6.238,-0.31,-4.719,3.944,7.555,-2.034,-2.09,1.459],[19.677,21.91,15.049,32.759,26.976,16.158,26.685,28.545,24.725,12.255,21.18,18.916,19.827,16.059,22.935,24.665,18.344,17.802,12.401,10.962,10.653,16.421,13.963,-0.031,14.777,17.068,15.438,4.893,19.777,20.321,7.955,0.545,8.539,4.914,10.941,11.576,8.152,12.294,0.716,4.659,9.561,11.776,1.004,7.346,11.538,17.134,-1.438,14.47,0.682,6.63,11.462,6.687,3.125,8.07,7.912,3.283,-2.733,2.911,-6.369,0.467,5.791,14.833,12.859,-1.58,22.128,11.128,25.083,31.381,23.681,14.347,18.638,27.565,20.206,32.135,25.809,21.342,20.156,29.571,22.201,18.516,15.369,23.227,14.127,27.737,13.819,27.398,14.885,20.01,25.619,12.759,19.461,18.247,16.074,23.938,11.973,1.124,24.271,17.668,13.429,13.849,12.293,16.628,12.832,19.637,9.685,17.907,18.584,23.633,16.309,0.321,18.915,14.466,10.613,19.375,5.806,16.412,12.432,7.215,4.388,9.397,16.289,19.213,16.286,16.26,19.697,12.298,9.626,-0.396,6.978,12.447,9.326,3.276,2.18,5.963,10.747,0.867,8.533,12.769,9.873,1.155,13.478,12.817,9.086,1.415,13.599,11.294,-0.784,6.335,16.852,8.672,5.201,3.506,14.325,-0.531,2.225,10.636,6.267,-1.073,17.016,15.047,9.268,-0.311,7.11,7.638,10.127,1.414,8.415,4.274,6.601,7.053,15.257,-0.836,13.18,13.724,2.542,0.351,-5.385,-6.427,3.269,11.062,5.382,6.876,3.383,10.509,7.216,-0.475,-4.558,4.13,7.983,-2.115,-2.288,1.199],[19.899,21.854,14.922,32.698,26.969,16.095,26.638,28.435,24.869,12.236,21.466,19.046,19.986,16.215,22.98,24.681,18.2,17.849,12.36,10.821,10.644,16.215,13.85,0.087,14.903,16.957,15.384,4.932,19.979,20.348,7.892,0.73,8.38,4.824,10.774,11.667,8.147,12.414,0.596,4.786,9.429,11.809,1.114,7.442,11.829,16.902,-1.343,14.465,0.604,6.306,11.526,7.11,3.267,7.877,7.948,3.219,-2.675,2.912,-6.396,0.432,6.102,14.809,12.728,-1.797,21.898,11.11,25.326,31.052,23.416,14.593,19.063,27.378,20.585,32.575,25.614,21.228,19.906,29.329,22.547,18.434,15.173,23.615,13.888,27.221,14.18,27.475,14.905,20.274,25.374,12.484,18.987,17.945,15.92,23.422,11.706,1.613,24.414,17.598,13.6,14.096,12.276,16.619,12.561,19.893,9.429,17.907,18.587,23.635,15.778,-0.115,19.299,13.829,10.572,19.186,5.404,16.618,12.251,6.926,4.304,9.69,16.636,19.307,16.377,16.235,19.513,12.768,9.317,-0.783,6.703,11.992,9.432,3.315,2.332,5.931,10.915,0.359,8.341,12.394,9.441,1.39,13.371,13.5,9.27,2.121,13.517,11.634,-0.885,6.32,17.025,8.477,5.278,3.474,13.591,-0.611,2.105,10.841,6.732,-0.287,16.783,15.383,9.039,-0.628,6.894,7.392,10.721,1.685,8.847,4.295,6.359,6.809,14.501,-1.193,12.996,13.819,2.629,-0.132,-5.805,-6.413,2.809,11.041,5.39,6.856,3.831,10.294,6.973,-0.065,-4.484,4.269,7.842,-2.129,-2.362,1.624],[20.06,21.837,14.819,32.523,26.957,15.824,26.582,28.45,24.855,12.303,21.681,19.062,19.924,16.397,23.132,24.655,18.324,17.831,12.312,10.751,10.775,16.503,13.876,0.119,14.914,16.894,15.286,4.967,20.075,20.442,7.732,0.904,8.277,4.814,10.504,11.793,8.113,12.49,0.586,4.913,9.321,11.854,1.279,7.54,11.833,16.714,-1.208,14.478,0.696,6.127,11.587,7.513,3.398,7.682,7.982,3.106,-2.743,2.991,-6.381,0.424,6.273,14.535,12.587,-1.953,21.823,11.452,25.265,30.783,23.321,14.812,19.614,27.045,19.791,32.896,25.727,21.112,20.111,29.38,22.83,19.135,15.247,23.277,13.25,26.809,14.591,27.586,14.12,20.508,25.486,11.596,19.704,18.06,15.653,22.801,11.567,1.429,24.848,17.62,13.351,14.156,12.391,16.462,12.563,19.798,9.741,17.172,18.555,23.411,15.123,0.073,18.912,14.35,10.471,19.018,5.905,16.566,12.247,7.387,4.289,9.606,16.11,19.518,16.701,16.555,19.974,13.026,8.972,-0.796,6.518,11.857,9.022,2.923,1.941,5.546,10.796,0.196,8.101,12.643,8.936,1.079,13.098,13.578,9.377,2.2,13.685,11.48,-0.735,6.486,16.481,8.955,5.161,3.601,13.507,-0.26,2.005,11.101,7.137,-0.202,16.683,15.754,8.998,-0.977,6.607,6.581,10.901,1.771,9.086,4.774,6.963,6.668,14.536,-1.047,12.857,14.009,2.552,-0.023,-5.828,-6.935,3.229,11.015,5.081,6.545,3.945,10.045,6.601,-0.132,-4.463,4.492,7.553,-2.636,-2.581,1.91],[20.209,21.814,14.656,32.387,26.697,15.486,26.704,28.483,24.785,12.29,21.74,19.045,19.923,16.427,23.229,24.661,18.592,17.776,12.226,10.822,10.985,16.857,13.916,0.0,14.932,16.852,15.268,5.027,19.952,20.461,7.682,1.021,8.129,4.797,10.146,12.007,8.029,12.592,0.524,5.098,9.335,11.786,1.444,7.707,11.589,16.549,-1.103,14.558,0.799,5.982,11.624,7.688,3.341,7.47,8.003,3.086,-2.912,3.264,-6.358,0.401,6.402,14.253,12.527,-2.016,22.259,11.261,25.25,30.596,23.534,15.023,19.064,27.32,19.669,33.002,26.027,21.378,20.137,28.922,22.911,19.465,15.031,22.84,13.105,26.91,14.832,27.477,14.049,20.361,25.475,10.941,20.089,18.771,15.874,23.143,11.631,0.95,24.575,17.203,13.001,13.71,12.615,16.389,12.364,19.153,9.872,17.597,18.287,23.948,15.281,1.044,18.75,14.307,9.917,19.155,6.315,17.29,12.433,7.151,4.368,9.719,15.781,20.05,16.371,16.4,20.399,13.3,8.833,-0.624,6.554,11.373,8.807,3.16,2.195,5.396,10.759,0.766,7.719,12.898,9.065,1.299,12.772,13.138,9.332,2.037,13.394,11.646,-0.807,6.285,16.177,8.926,5.225,3.831,13.94,-0.2,2.397,11.42,7.035,-0.656,16.954,15.733,8.871,-0.212,6.441,6.393,10.844,1.719,9.146,4.981,7.243,6.534,14.895,-0.859,12.379,13.819,2.213,-0.198,-5.763,-6.98,3.251,11.161,5.137,6.399,4.309,10.292,7.042,-0.634,-4.788,4.587,7.527,-2.554,-2.617,2.086],[20.378,21.894,14.612,32.331,26.338,15.309,26.909,28.323,24.894,12.054,21.715,19.103,19.937,16.41,23.365,24.792,18.62,17.705,12.055,10.769,11.211,17.197,13.881,0.013,14.809,16.882,15.271,5.074,19.812,20.463,7.639,1.175,8.027,4.822,9.764,12.22,7.842,12.607,0.437,5.258,9.374,11.58,1.578,7.703,11.352,16.485,-1.018,14.678,0.856,5.912,11.673,7.725,3.248,7.399,7.98,3.12,-3.245,3.559,-6.347,0.304,6.518,14.076,12.501,-2.059,22.117,11.732,25.413,30.53,23.499,14.984,18.75,27.32,20.732,33.23,26.163,21.635,19.942,29.449,22.64,19.043,14.555,22.313,13.461,26.983,14.465,27.193,14.019,20.036,25.834,10.482,19.616,18.89,16.104,23.833,12.027,0.616,24.231,17.746,13.261,13.971,12.578,16.699,12.015,19.355,10.078,18.358,17.956,23.843,15.865,1.009,19.212,14.239,9.876,19.449,5.871,18.14,12.602,6.829,4.596,9.963,16.239,19.864,15.95,16.53,19.671,13.362,8.652,-0.53,6.457,11.362,9.262,3.217,2.622,5.777,10.951,1.139,7.891,12.825,8.863,1.903,12.745,12.83,9.432,1.839,13.316,11.676,-0.43,6.096,16.279,8.707,5.737,3.643,14.093,-0.335,2.487,11.399,6.974,-0.722,16.962,16.002,8.263,-0.132,6.357,6.765,10.788,1.833,9.232,5.085,6.857,6.714,14.93,-1.107,12.513,13.841,2.369,-0.382,-5.872,-6.797,2.838,10.979,4.995,6.281,4.452,10.482,7.801,-0.519,-5.089,4.586,7.781,-2.03,-2.385,2.17],[20.539,21.954,14.764,32.351,26.195,15.275,27.085,28.153,25.006,11.751,21.65,19.238,19.721,16.431,23.617,24.818,18.586,17.791,11.936,10.525,11.3,17.597,13.903,0.101,14.622,17.035,15.505,5.057,19.611,20.411,7.703,1.279,8.043,4.861,9.612,12.262,7.685,12.517,0.381,5.345,9.336,11.344,1.7,7.439,11.205,16.649,-0.973,14.822,0.836,5.813,11.793,7.729,3.194,7.406,8.068,3.144,-3.594,3.788,-6.437,0.273,6.596,14.059,12.397,-2.148,21.982,11.932,25.87,30.501,23.85,14.648,19.22,27.36,21.37,33.205,26.194,21.872,20.244,29.668,22.372,18.791,14.525,21.912,13.317,26.372,14.249,27.106,13.927,19.321,25.693,9.941,19.624,18.47,16.098,23.933,11.564,0.669,24.793,17.937,13.441,14.261,12.957,16.572,12.537,19.89,9.967,18.937,18.133,23.477,16.082,0.509,19.348,14.315,10.615,19.254,5.533,17.993,12.536,6.841,4.58,9.897,16.425,19.162,15.573,16.744,19.606,13.074,8.607,-0.154,6.169,10.929,9.169,3.699,2.719,6.155,11.033,0.979,8.08,13.512,8.038,1.745,12.861,12.916,9.144,1.728,13.81,11.673,-0.08,6.127,16.091,8.803,5.863,3.702,14.099,0.022,2.444,11.289,6.853,-0.524,16.731,15.92,7.974,-0.578,6.151,7.031,11.137,2.346,9.413,4.989,6.982,6.655,14.725,-1.345,12.24,13.792,2.522,-0.287,-5.749,-6.177,3.252,10.775,5.229,6.566,4.62,10.25,7.79,-0.011,-5.451,4.864,7.772,-2.333,-2.94,2.222],[20.711,22.093,14.839,32.31,26.275,15.304,27.006,28.065,25.193,11.504,21.608,19.278,19.64,16.388,23.859,24.772,18.613,17.835,11.864,10.287,11.323,17.909,13.935,0.134,14.475,17.104,15.874,4.88,19.415,20.418,7.725,1.293,8.192,4.967,9.465,12.238,7.739,12.4,0.473,5.446,9.287,11.245,1.644,7.124,11.223,16.769,-1.078,15.017,0.829,5.764,11.934,7.683,3.276,7.384,8.219,3.211,-4.025,3.949,-6.508,0.361,6.742,13.986,12.378,-2.304,22.305,11.462,25.676,30.534,23.99,14.562,18.694,27.453,21.043,32.988,26.189,22.353,20.252,28.794,22.407,19.389,14.768,22.197,13.34,26.185,14.492,26.992,13.925,19.556,25.751,9.639,19.968,18.226,16.6,24.013,10.711,1.101,24.867,17.42,12.916,13.452,12.985,16.533,11.61,19.346,9.549,19.137,18.219,23.68,16.251,0.612,18.882,13.707,11.191,19.376,6.166,17.587,12.398,7.237,4.715,9.926,16.711,18.63,15.974,17.109,19.977,13.183,9.067,-0.141,6.396,10.335,9.294,3.782,2.69,6.147,11.237,0.328,7.592,13.623,8.333,1.315,12.677,12.844,8.885,1.833,14.011,11.438,-0.76,5.848,16.497,8.553,5.688,4.125,14.015,0.145,2.275,11.781,6.258,-0.245,17.413,16.05,8.035,-0.316,6.183,7.083,11.468,2.555,9.49,5.457,7.113,6.626,14.614,-1.21,12.052,13.784,2.532,-0.536,-5.696,-6.096,3.77,10.83,4.62,6.604,4.866,10.256,7.565,-0.188,-5.824,4.828,8.107,-3.197,-3.057,2.391],[20.915,22.309,14.775,32.156,26.381,15.363,26.885,27.929,25.357,11.373,21.721,19.231,19.875,16.563,24.039,24.796,18.61,17.805,11.556,10.267,11.418,18.012,13.686,0.253,14.076,17.148,16.069,4.71,19.346,20.388,7.613,1.266,8.461,4.964,9.247,12.266,7.801,12.356,0.625,5.477,9.195,11.071,1.461,6.876,11.488,16.893,-1.197,15.239,0.714,5.679,11.969,7.751,3.432,7.309,8.465,3.346,-4.278,4.148,-6.639,0.408,6.778,13.99,12.355,-2.673,22.383,11.178,25.6,30.477,23.854,14.823,18.372,27.31,20.28,33.075,26.02,22.732,20.438,29.303,22.25,19.961,14.828,22.422,13.203,26.598,14.782,27.369,13.873,20.164,25.623,9.741,19.957,18.243,16.524,24.178,10.989,1.363,24.416,17.085,12.562,13.389,12.798,16.824,11.698,19.144,9.716,18.757,17.574,23.879,15.982,0.249,18.918,13.408,10.657,19.618,5.798,18.049,12.747,6.982,4.249,10.071,16.996,18.971,16.566,17.186,19.914,13.131,9.415,-0.335,6.89,10.274,8.982,3.739,2.686,6.331,10.944,0.629,7.633,13.038,8.186,1.246,12.912,12.643,8.594,2.291,13.965,11.395,-0.888,6.283,16.819,8.266,5.546,3.934,14.26,-0.228,2.124,12.284,6.24,-0.489,17.583,16.299,8.1,-0.129,6.601,7.063,11.417,2.619,9.436,5.601,7.022,6.993,14.11,-1.015,12.227,13.833,2.623,-0.751,-5.492,-6.699,3.544,10.905,4.602,6.024,5.206,10.51,7.623,-0.42,-6.245,4.974,8.456,-2.808,-3.73,2.745],[20.921,22.452,14.72,32.02,26.47,15.379,26.824,27.887,25.397,11.338,21.854,19.287,20.043,16.921,23.993,24.915,18.586,17.759,11.287,10.357,11.5,18.037,13.488,0.367,13.665,17.277,15.945,4.476,19.243,20.257,7.493,1.156,8.749,4.914,8.984,12.223,8.03,12.411,0.83,5.238,9.12,11.127,1.299,6.817,11.694,16.998,-1.158,15.364,0.661,5.597,11.893,7.803,3.665,7.259,8.591,3.476,-4.47,4.284,-6.867,0.377,6.637,14.038,12.51,-2.832,22.33,10.7,26.134,30.482,23.958,15.298,19.279,27.01,20.287,33.116,26.359,22.896,20.682,29.008,22.299,20.781,14.754,22.913,13.075,27.251,14.664,27.521,13.839,19.994,25.514,9.781,20.121,18.24,16.156,24.374,10.936,1.707,24.329,17.588,12.493,12.919,13.197,16.661,11.954,19.738,9.978,18.868,17.512,23.698,15.623,0.574,19.178,13.727,10.589,19.292,5.42,18.301,12.798,6.725,3.735,10.119,16.763,19.596,16.599,17.227,19.744,13.145,9.3,-0.537,7.13,10.499,9.252,3.647,2.262,6.373,10.679,1.54,7.709,13.372,7.694,1.318,12.354,12.704,8.496,2.168,13.341,10.648,-0.947,6.394,16.811,8.124,5.565,3.581,14.911,-0.403,1.891,12.873,6.392,-0.814,17.023,16.183,7.95,0.008,6.158,7.01,11.304,2.542,9.369,6.0,6.831,7.526,14.367,-0.975,12.337,13.966,2.799,-1.354,-6.11,-7.106,3.61,11.059,5.162,6.057,5.145,10.334,8.158,-0.185,-6.283,4.746,8.432,-2.65,-4.38,3.077],[20.917,22.366,14.658,32.062,26.623,15.259,26.826,27.753,25.431,11.178,21.993,19.281,20.224,17.145,23.987,25.045,18.655,17.658,11.157,10.444,11.497,18.105,13.568,0.508,13.311,17.348,15.766,4.245,19.229,20.145,7.345,0.907,8.944,4.905,8.797,12.275,8.21,12.579,0.939,4.871,9.048,11.051,1.297,7.01,11.82,17.012,-1.039,15.419,0.581,5.623,11.735,7.829,3.927,7.182,8.535,3.604,-4.608,4.573,-7.087,0.437,6.412,14.115,12.826,-2.908,22.548,10.453,26.076,30.386,24.025,15.423,19.385,26.98,20.231,32.705,26.446,22.996,20.533,28.88,22.461,21.619,14.654,22.39,13.139,27.221,14.565,26.945,14.228,19.485,25.35,9.819,20.099,18.893,16.941,23.86,10.048,1.846,24.962,18.02,12.76,12.342,13.281,16.31,11.517,19.368,9.842,19.004,17.838,23.952,15.945,1.33,19.096,13.525,11.574,19.003,5.395,17.996,12.118,7.509,3.756,10.559,16.831,19.008,16.655,16.734,19.314,12.973,8.949,-0.678,7.204,10.204,8.973,3.625,2.265,6.354,10.688,1.504,7.913,13.716,7.669,0.796,12.526,13.003,8.625,2.134,13.255,11.252,-0.815,6.673,16.379,8.093,5.701,3.681,14.852,-0.336,2.06,12.967,6.016,-0.222,17.328,16.43,7.809,-0.708,5.957,7.019,11.336,2.738,9.456,6.056,6.594,7.353,14.803,-1.162,12.189,14.229,3.274,-1.005,-6.204,-7.776,3.874,11.66,4.895,6.272,5.136,10.061,7.936,0.046,-6.443,4.457,8.396,-2.949,-4.16,3.096],[21.045,22.228,14.701,32.252,26.642,15.204,26.876,27.61,25.468,11.025,22.141,19.405,20.284,17.245,23.9,25.088,18.891,17.484,10.989,10.641,11.496,18.181,13.595,0.635,12.948,17.379,15.67,4.26,19.171,20.003,7.254,0.718,9.031,4.976,8.641,12.462,8.327,12.821,0.928,4.683,8.973,10.915,1.118,7.173,11.991,16.922,-0.946,15.494,0.622,5.635,11.645,7.775,4.141,6.962,8.509,3.801,-4.758,4.835,-7.232,0.57,6.372,14.169,13.178,-2.862,22.454,10.509,25.839,30.548,23.941,15.505,19.126,27.053,19.851,32.348,26.034,23.539,20.355,28.657,22.594,21.668,14.374,22.367,13.169,27.134,14.209,26.874,13.904,19.399,25.538,9.452,20.148,18.384,17.439,23.935,10.073,2.036,24.873,17.518,13.271,12.59,12.972,16.231,11.306,18.869,9.704,18.684,18.164,24.189,16.511,1.274,18.794,12.723,11.628,19.086,5.17,18.013,11.903,7.114,3.925,10.148,16.912,18.011,16.01,16.377,19.543,12.947,9.244,-0.98,7.302,10.167,8.693,3.54,2.004,5.941,11.1,0.806,8.047,13.518,7.379,1.021,12.563,13.131,8.908,2.264,13.872,11.287,-1.099,6.704,16.386,8.17,5.698,3.367,14.257,-0.526,1.966,12.795,6.158,-0.032,17.677,16.333,7.791,-0.338,6.406,7.058,11.05,3.366,9.6,5.951,6.695,7.085,14.86,-0.864,12.397,14.562,3.346,-1.089,-5.921,-7.771,4.051,11.531,5.123,5.79,5.208,10.061,7.275,-0.187,-6.704,4.512,8.66,-3.358,-3.777,3.315],[21.145,22.073,14.757,32.527,26.514,15.074,26.952,27.573,25.546,10.963,22.368,19.6,20.237,17.187,23.894,24.968,18.984,17.273,11.001,10.784,11.382,18.242,13.563,0.739,12.642,17.349,15.835,4.308,19.001,19.892,7.16,0.549,9.091,5.101,8.556,12.64,8.404,12.931,0.769,4.769,8.976,10.714,0.702,7.152,12.032,16.827,-0.887,15.528,0.599,5.659,11.704,7.647,4.289,6.855,8.621,3.944,-4.942,5.028,-7.281,0.749,6.502,14.249,13.291,-2.857,22.146,11.168,26.134,30.918,23.867,15.304,18.759,26.786,20.086,32.335,25.66,23.705,20.238,28.574,22.499,21.544,14.468,22.123,13.354,27.057,14.166,27.454,13.52,19.842,25.974,9.128,20.401,18.53,17.336,24.172,10.391,2.29,24.24,17.47,12.748,12.285,12.722,16.231,11.485,19.865,9.956,18.753,17.959,23.798,16.616,1.018,18.593,12.886,11.608,19.044,5.715,18.256,12.371,6.401,4.049,9.832,17.092,18.17,15.978,16.164,19.389,12.618,9.678,-0.977,7.338,9.744,8.909,3.421,1.465,5.824,11.758,0.605,8.145,13.663,7.061,1.185,12.392,13.537,8.799,1.931,14.605,10.94,-1.052,6.816,16.481,8.117,5.329,3.2,14.438,-1.133,1.746,12.727,6.403,-0.416,17.33,15.904,7.638,0.366,5.756,7.175,10.713,3.158,9.288,5.845,6.898,7.272,14.325,-0.503,12.414,14.6,2.999,-1.02,-5.601,-7.847,4.558,11.622,5.221,5.611,5.697,10.351,6.954,-0.152,-6.612,4.722,8.555,-3.449,-4.105,3.505],[21.242,21.879,14.769,32.828,26.371,14.901,27.031,27.515,25.627,11.094,22.502,19.946,20.19,17.056,23.855,24.742,19.018,17.17,11.184,10.934,11.212,18.341,13.479,0.991,12.366,17.342,16.116,4.313,18.754,19.657,7.058,0.389,9.037,5.287,8.533,12.712,8.573,13.177,0.396,4.897,8.919,10.52,0.519,7.13,12.023,16.741,-0.995,15.459,0.486,5.654,11.815,7.615,4.398,6.855,8.769,4.013,-4.988,5.032,-7.328,0.924,6.575,14.195,13.182,-2.806,22.109,11.67,26.356,31.234,24.016,15.442,18.743,27.001,20.426,32.675,26.025,24.19,20.143,29.05,22.375,20.682,14.675,22.54,13.5,27.057,14.379,27.003,13.398,20.362,26.155,9.292,20.295,19.109,16.715,23.972,10.469,2.248,24.719,17.923,12.103,12.241,12.863,16.147,11.29,20.604,10.458,18.983,17.457,23.603,16.125,0.636,18.365,12.805,11.829,18.862,5.684,18.347,12.811,6.374,3.951,9.782,17.528,18.411,16.363,15.773,19.179,11.945,10.148,-1.366,7.304,9.537,8.875,3.452,1.509,5.987,11.477,0.851,7.695,13.406,7.179,0.264,12.171,13.755,8.693,1.987,14.632,10.69,-1.268,7.33,16.216,8.127,5.002,3.164,15.017,-1.294,1.585,12.487,6.457,-0.452,16.921,16.377,7.717,0.035,5.544,7.404,10.589,3.182,9.422,6.089,7.039,7.646,14.821,-0.721,12.414,14.055,3.049,-1.108,-5.853,-8.072,4.527,11.905,5.006,5.96,5.684,10.793,7.347,0.231,-6.915,4.632,8.046,-2.646,-4.444,3.365],[21.204,21.891,14.825,33.105,26.198,14.888,27.212,27.578,25.543,11.354,22.706,20.264,20.166,17.053,23.888,24.564,19.171,17.26,11.346,11.137,11.049,18.466,13.416,1.313,12.201,17.215,16.212,4.346,18.563,19.44,7.11,0.143,8.979,5.504,8.457,12.478,8.791,13.348,0.181,4.76,8.838,10.384,0.435,7.293,12.015,16.538,-1.4,15.514,0.347,5.643,11.838,7.81,4.488,7.006,8.847,4.057,-5.023,4.827,-7.32,0.915,6.458,14.206,13.023,-2.586,21.94,11.62,26.025,31.354,24.235,15.567,19.112,26.879,20.136,33.271,26.856,24.332,20.141,28.431,22.521,20.104,14.122,22.446,13.298,27.339,14.301,26.735,13.4,20.611,25.8,9.483,19.857,19.467,16.172,23.77,10.141,2.06,24.605,18.21,12.563,11.893,12.909,16.181,10.859,20.278,10.754,18.745,17.262,23.809,16.203,0.969,18.558,13.2,11.748,18.894,5.072,18.3,12.256,6.771,3.728,10.407,17.435,17.716,16.649,16.178,18.762,12.225,9.528,-1.521,7.359,9.933,8.842,3.732,1.709,6.436,11.564,0.33,7.813,13.764,7.242,-0.044,12.174,13.377,8.893,1.64,14.253,10.501,-1.33,7.564,15.876,8.243,5.005,3.875,14.653,-0.948,1.725,12.21,5.887,-0.624,17.102,16.697,7.989,-0.248,5.807,7.434,10.589,3.139,9.651,6.028,6.898,7.732,14.855,-0.484,12.466,13.981,3.055,-0.821,-6.326,-7.947,4.019,11.362,5.492,6.232,5.648,10.692,7.407,0.091,-6.683,4.527,8.132,-2.685,-4.541,3.228],[20.934,22.024,14.896,33.345,26.095,14.809,27.497,27.554,25.31,11.592,23.012,20.465,20.153,17.055,23.874,24.511,19.387,17.371,11.382,11.232,10.993,18.64,13.416,1.751,12.172,17.112,16.264,4.266,18.337,19.363,7.277,0.013,8.852,5.781,8.396,12.346,9.015,13.39,0.04,4.579,8.819,10.368,0.447,7.418,11.91,16.347,-1.846,15.646,0.279,5.776,11.67,7.864,4.572,7.296,8.711,4.08,-4.883,4.472,-7.337,0.749,6.264,14.219,12.949,-2.406,21.584,11.279,25.756,31.49,23.704,15.667,19.697,26.896,20.11,33.884,27.389,24.314,20.394,28.525,22.644,20.254,14.032,22.448,13.699,26.83,14.095,26.614,13.7,20.553,25.748,9.946,19.836,19.737,16.668,24.071,10.149,1.75,23.721,17.906,13.008,11.637,12.797,16.17,11.403,19.866,10.721,18.427,17.152,23.613,16.258,0.988,18.145,12.734,12.187,19.17,5.371,17.988,11.675,7.079,4.169,10.54,17.463,17.596,16.273,16.562,18.68,12.313,8.729,-1.698,7.481,9.691,8.935,3.933,0.943,6.563,11.719,-0.078,8.587,13.555,6.952,0.43,11.834,12.348,8.915,1.147,14.608,10.301,-1.451,7.448,15.734,8.19,5.12,3.784,14.353,-1.069,1.474,12.974,6.138,-1.339,17.147,16.42,8.068,-0.566,6.48,7.373,10.923,3.179,9.502,6.159,6.443,7.149,14.483,-0.395,12.344,14.23,3.041,-0.557,-5.938,-7.801,3.912,11.278,5.655,6.0,5.852,10.255,8.003,-0.189,-6.825,4.489,8.627,-3.334,-4.358,3.235],[20.601,22.055,14.888,33.506,26.084,14.811,27.712,27.499,25.154,11.738,23.188,20.617,20.275,17.199,24.019,24.403,19.489,17.215,11.424,11.464,10.983,18.763,13.405,2.203,12.151,17.02,16.365,4.25,18.225,19.236,7.358,-0.171,8.796,5.864,8.39,12.307,9.081,13.504,-0.082,4.417,8.908,10.34,0.518,7.506,11.925,16.205,-2.044,15.71,0.137,6.034,11.428,7.813,4.578,7.511,8.479,4.147,-4.812,4.101,-7.314,0.52,6.143,14.145,13.059,-2.49,21.771,11.307,25.549,31.742,23.532,15.317,19.928,26.912,19.826,33.842,27.292,24.892,20.52,28.933,22.6,20.447,14.071,22.151,13.478,25.99,14.178,26.671,13.311,20.38,26.24,10.154,20.12,19.383,17.121,23.921,10.392,1.393,24.098,17.859,13.056,11.985,12.869,16.424,12.177,20.099,10.895,18.718,17.202,23.539,16.227,1.53,17.791,12.621,12.004,18.815,5.491,17.852,11.813,7.255,4.31,10.051,17.944,17.621,15.955,16.493,19.025,12.117,8.858,-2.041,7.345,9.276,8.966,4.158,0.053,6.605,12.076,-0.143,8.627,13.21,6.634,0.512,11.656,12.382,9.149,0.769,15.0,10.343,-1.527,7.482,15.878,7.828,4.984,2.893,14.933,-1.095,1.418,13.033,6.386,-1.761,17.014,16.003,7.869,-0.59,6.635,7.477,10.908,3.524,9.528,5.839,6.364,7.46,14.509,-0.964,12.454,14.01,3.246,-0.72,-5.851,-8.079,4.046,11.225,5.389,6.044,6.066,9.841,7.747,-0.215,-6.345,4.391,8.837,-3.039,-3.625,2.958],[20.346,21.986,14.695,33.552,25.946,14.851,27.716,27.515,25.053,11.773,23.304,20.613,20.452,17.203,24.035,24.363,19.58,16.877,11.514,11.667,10.958,18.721,13.405,2.501,12.151,16.958,16.497,4.354,18.347,19.169,7.304,-0.4,8.857,5.845,8.426,12.175,9.001,13.725,-0.204,4.177,8.951,10.371,0.518,7.517,12.16,16.129,-1.94,15.689,0.173,6.205,11.393,7.678,4.561,7.464,8.594,4.25,-4.632,3.768,-7.326,0.461,6.171,14.048,13.069,-2.574,21.89,12.199,25.261,31.775,24.034,15.375,19.631,26.795,19.355,33.75,26.927,24.953,20.142,28.528,22.597,20.502,14.101,22.88,13.424,26.708,14.136,26.886,13.448,20.449,26.483,9.995,20.634,19.47,17.481,23.57,10.488,1.544,24.24,17.889,12.919,12.25,12.616,16.074,12.334,19.991,10.758,19.043,17.033,23.461,16.0,1.91,17.845,12.96,12.343,18.661,4.967,18.292,12.648,7.037,4.091,10.0,18.232,17.357,15.857,16.02,18.693,11.615,9.517,-2.216,7.188,8.979,9.222,4.219,0.06,6.133,12.125,0.231,8.143,13.665,6.757,0.501,12.036,13.053,9.303,0.815,14.851,10.645,-1.626,7.679,16.044,8.176,4.646,2.812,15.352,-1.185,1.432,12.497,6.547,-1.337,16.894,16.241,7.827,-0.589,6.357,7.706,10.309,3.394,9.531,5.432,6.482,7.806,14.817,-0.92,12.237,13.98,2.676,-0.692,-5.735,-8.127,4.1,11.352,5.826,6.315,6.195,10.125,6.961,-0.212,-6.484,4.201,8.033,-3.002,-3.523,2.704],[20.139,21.811,14.43,33.57,25.839,14.959,27.621,27.472,24.799,11.884,23.402,20.539,20.579,17.17,24.045,24.378,19.777,16.659,11.595,11.753,10.867,18.679,13.468,2.653,12.282,16.903,16.482,4.376,18.24,19.156,7.214,-0.415,8.835,5.726,8.464,12.015,8.844,13.865,-0.227,3.942,9.033,10.639,0.473,7.466,12.419,16.212,-1.708,15.867,0.32,6.314,11.536,7.372,4.715,7.26,8.701,4.169,-4.488,3.675,-7.348,0.593,6.169,14.041,13.067,-2.571,21.83,12.308,25.367,32.025,23.7,15.456,19.038,27.058,19.609,33.427,26.828,25.061,20.077,28.868,22.528,20.356,14.065,22.442,13.318,26.478,13.693,26.087,13.885,20.53,26.158,10.172,21.094,19.696,17.199,23.608,10.634,2.353,24.641,17.918,12.461,12.405,12.675,15.682,11.671,19.852,11.287,18.946,17.18,23.372,15.798,1.935,18.054,12.822,12.498,18.379,5.441,18.215,12.561,6.642,3.911,10.128,18.25,17.325,15.702,15.568,18.442,11.25,9.907,-2.212,7.244,9.053,9.099,4.091,0.401,6.299,12.162,0.113,7.931,13.394,7.199,0.159,12.403,13.473,9.208,1.32,15.006,10.7,-1.489,7.945,15.719,8.59,4.47,2.95,14.663,-1.031,1.21,12.699,6.693,-1.326,16.898,16.354,7.562,-0.407,5.949,8.02,10.292,3.533,9.045,4.847,6.964,7.643,14.603,-0.544,12.158,14.351,2.928,-0.778,-5.526,-7.994,4.372,11.553,6.032,6.274,6.081,10.591,6.911,-0.33,-6.161,4.461,8.209,-3.167,-3.942,2.14],[20.074,21.622,14.218,33.646,25.717,15.064,27.65,27.519,24.554,11.976,23.495,20.497,20.647,17.172,23.913,24.499,20.056,16.645,11.626,11.717,10.799,18.634,13.361,2.706,12.374,16.806,16.272,4.378,17.939,19.201,7.264,-0.212,8.802,5.643,8.506,11.756,8.754,13.852,-0.134,3.772,9.099,10.993,0.338,7.455,12.575,16.345,-1.537,15.924,0.396,6.386,11.724,7.093,4.962,7.04,8.568,4.069,-4.438,3.62,-7.383,0.558,6.179,14.124,13.197,-2.666,21.559,12.371,25.263,32.015,23.236,15.933,19.043,26.854,19.473,33.21,27.347,24.991,20.027,28.699,22.343,19.645,14.297,22.109,13.482,25.563,13.511,26.471,13.847,20.402,26.01,11.053,20.917,19.673,16.356,24.392,10.667,2.849,24.136,18.355,12.478,12.108,12.477,15.361,11.235,20.486,11.481,18.672,17.022,23.794,15.707,1.9,18.281,13.524,12.32,18.198,5.476,17.808,12.044,6.75,4.046,9.967,17.992,17.508,16.08,15.728,18.841,12.358,9.763,-1.9,7.211,9.595,8.81,3.803,0.884,6.263,12.358,0.152,8.146,12.932,7.384,0.072,12.706,13.782,8.67,1.58,15.472,11.065,-1.347,7.331,15.889,8.371,4.365,2.636,14.892,-0.98,1.519,13.182,6.769,-1.305,17.209,16.051,7.617,0.127,5.932,8.067,10.595,3.324,8.77,5.015,6.866,7.798,14.368,-0.724,12.31,14.349,3.295,-0.825,-5.675,-8.17,4.379,11.522,5.957,5.939,5.912,10.604,7.196,-0.316,-5.944,4.222,8.46,-2.766,-3.957,2.113],[19.911,21.532,14.218,33.583,25.601,15.167,27.795,27.569,24.452,12.263,23.573,20.392,20.657,17.263,23.962,24.74,20.184,16.747,11.423,11.574,10.712,18.607,13.227,2.691,12.363,16.594,16.017,4.404,17.76,19.403,7.312,0.118,8.875,5.647,8.67,11.672,8.673,13.919,0.051,3.753,9.148,11.365,0.107,7.392,12.728,16.483,-1.469,15.758,0.389,6.423,11.828,6.975,4.971,6.95,8.4,4.132,-4.577,3.555,-7.435,0.339,6.129,14.285,13.348,-2.675,21.362,11.675,24.942,31.95,23.079,15.843,19.531,26.417,19.287,33.794,27.762,25.014,19.822,28.389,22.062,18.827,14.69,22.145,13.17,26.213,13.362,26.13,13.829,20.529,26.217,11.591,20.212,20.226,16.659,24.236,10.556,2.893,23.874,18.432,12.719,12.125,12.328,15.448,11.765,21.016,11.417,18.789,16.79,23.758,15.494,1.749,18.275,13.149,12.425,18.032,4.837,17.888,11.712,7.248,4.303,9.863,17.789,17.556,16.398,16.135,18.661,12.168,9.747,-1.756,7.644,10.025,9.153,3.978,1.004,5.861,12.444,0.001,8.1,12.813,7.676,0.564,13.184,13.752,8.56,1.449,14.879,11.209,-1.388,7.189,16.675,8.094,4.506,2.365,15.321,-1.611,1.7,13.08,6.658,-1.143,17.324,16.103,8.157,0.132,5.917,7.871,10.897,3.402,8.613,5.238,6.581,7.253,14.52,-0.979,12.484,14.193,2.828,-0.855,-5.867,-8.385,3.724,11.71,6.498,5.75,6.087,10.404,6.488,-0.707,-5.875,4.138,7.839,-3.176,-3.336,2.382],[19.522,21.478,14.252,33.447,25.63,15.295,27.867,27.512,24.459,12.579,23.586,20.39,20.584,17.424,24.25,24.727,19.978,16.869,11.29,11.41,10.585,18.704,13.198,2.59,12.261,16.469,15.809,4.374,17.787,19.452,7.426,0.482,9.239,5.716,8.906,11.673,8.533,13.91,0.104,3.754,9.311,11.768,0.014,7.231,12.671,16.658,-1.529,15.553,0.388,6.539,11.763,6.736,4.866,6.972,8.178,4.014,-4.668,3.563,-7.445,0.095,6.13,14.52,13.442,-2.793,21.589,12.513,24.838,31.601,23.455,15.726,19.816,26.189,19.035,34.111,27.616,25.078,19.794,28.421,22.196,18.841,14.49,22.517,12.85,26.517,13.616,26.447,14.089,20.012,26.605,11.361,19.856,20.164,17.407,23.869,9.97,2.9,25.095,18.309,13.393,12.17,12.352,15.609,12.033,20.641,11.278,18.821,16.602,23.718,15.012,1.79,18.117,13.089,12.268,18.375,5.04,17.829,11.769,7.163,4.148,10.093,17.371,17.06,16.034,15.951,18.761,11.111,9.806,-1.322,7.937,10.326,9.089,4.44,0.704,5.33,12.198,0.482,7.861,13.062,7.939,0.035,13.426,14.194,8.861,1.549,14.587,11.41,-1.137,7.18,16.62,8.151,4.608,2.26,14.933,-1.733,1.555,13.496,6.748,-1.041,17.207,16.621,8.492,-0.125,5.771,7.619,11.112,3.554,8.333,5.41,6.541,7.146,14.914,-0.84,12.562,14.058,3.178,-0.873,-6.036,-8.46,3.36,11.508,6.35,5.949,6.219,10.214,6.454,-0.848,-6.261,4.329,7.422,-3.227,-3.842,2.818],[19.09,21.458,14.203,33.327,25.799,15.379,27.874,27.357,24.551,12.77,23.648,20.338,20.532,17.588,24.405,24.698,19.646,17.049,11.333,11.257,10.515,18.783,13.326,2.44,12.209,16.623,15.549,4.357,17.877,19.309,7.541,0.747,9.634,5.791,9.028,11.632,8.401,13.741,0.074,3.792,9.542,12.09,0.213,7.139,12.628,16.657,-1.62,15.453,0.485,6.658,11.545,6.557,4.721,7.05,8.054,3.875,-4.788,3.837,-7.465,0.018,6.178,14.717,13.245,-2.94,21.624,12.839,24.58,31.578,23.735,15.789,19.727,26.36,18.791,34.089,27.392,24.989,19.692,28.778,22.246,19.124,14.459,22.766,13.021,26.009,13.483,26.25,14.131,19.697,26.485,11.157,20.084,20.031,17.728,24.206,10.906,2.998,24.788,18.359,13.108,12.282,12.275,15.881,11.494,19.608,10.745,18.431,16.675,23.582,15.33,1.957,18.232,13.587,11.954,18.793,5.119,18.333,11.665,6.943,4.258,9.555,17.136,16.966,15.932,15.548,18.661,11.133,10.418,-1.042,7.939,9.908,9.204,4.52,0.897,5.127,11.949,0.579,7.777,13.171,8.088,-0.124,13.739,13.866,8.937,1.773,14.877,11.473,-1.131,6.892,15.925,8.551,4.229,2.387,14.761,-1.389,1.754,13.552,6.406,-1.322,17.638,16.02,8.411,-0.092,5.814,7.957,11.057,3.382,8.277,5.642,6.27,7.181,15.03,-1.021,13.017,14.449,3.129,-1.017,-5.565,-8.243,3.58,11.443,5.986,6.072,6.162,9.947,7.011,-1.029,-6.48,4.443,7.781,-3.151,-4.196,2.826],[18.698,21.442,14.086,33.244,25.764,15.368,27.774,27.302,24.643,12.763,23.802,20.285,20.511,17.74,24.39,24.659,19.475,17.235,11.532,11.155,10.419,18.938,13.418,2.325,12.341,17.044,15.323,4.42,17.957,19.266,7.635,0.947,9.948,5.849,9.141,11.491,8.214,13.578,0.012,3.783,9.812,12.292,0.426,7.088,12.503,16.5,-1.703,15.451,0.601,6.703,11.254,6.741,4.551,7.106,7.988,3.768,-4.91,4.252,-7.4,0.049,6.193,14.836,12.973,-3.034,21.338,12.326,24.554,31.514,23.742,16.084,19.539,26.206,18.799,34.243,27.738,24.935,19.692,28.637,22.262,18.806,14.165,22.696,13.096,26.141,13.029,26.454,13.984,20.089,26.091,11.371,20.642,19.832,17.691,24.551,10.826,2.869,24.264,17.751,12.599,12.294,12.2,16.277,11.345,19.868,10.252,18.732,17.115,23.281,15.766,1.806,18.222,13.032,11.395,18.732,5.188,18.376,12.07,7.234,4.231,9.421,16.762,17.176,16.467,15.144,18.471,11.66,11.155,-0.586,8.171,9.834,9.376,4.48,0.834,5.22,12.053,0.105,7.75,13.003,7.897,0.772,14.048,13.971,8.603,1.711,14.878,11.544,-1.237,6.612,16.088,9.154,4.605,2.608,14.757,-1.127,1.562,12.489,5.627,-1.53,17.264,15.348,8.312,-0.25,5.97,8.298,10.727,3.168,8.101,5.969,6.489,7.408,15.064,-1.365,12.982,14.314,2.49,-1.329,-5.626,-8.198,3.817,11.428,6.153,6.079,6.099,9.744,6.724,-0.81,-6.865,4.271,8.35,-3.554,-4.065,3.042],[18.383,21.54,13.869,33.213,25.65,15.213,27.594,27.239,24.567,12.577,23.974,20.339,20.482,17.879,24.381,24.614,19.463,17.464,11.604,11.094,10.383,19.118,13.383,2.299,12.6,17.252,15.136,4.471,18.007,19.38,7.696,1.146,10.198,5.903,9.223,11.415,7.991,13.327,-0.176,3.933,10.061,12.396,0.557,6.955,12.389,16.336,-1.925,15.396,0.65,6.704,11.056,6.967,4.585,7.076,8.079,3.599,-5.028,4.719,-7.406,0.005,6.111,14.833,12.865,-3.159,21.373,11.998,24.967,31.604,23.967,16.115,19.682,26.079,18.6,34.169,27.696,24.914,19.902,28.563,22.848,18.324,14.501,22.482,12.96,26.554,13.313,26.3,13.801,20.399,26.015,11.985,20.685,19.573,17.73,24.333,10.368,1.803,24.4,17.646,12.985,11.65,11.995,16.379,12.235,20.126,10.204,18.972,17.267,23.602,16.342,1.659,18.218,12.513,11.057,18.551,5.337,18.259,12.444,7.309,4.437,9.375,16.924,17.672,16.765,14.973,18.535,11.364,11.198,-0.384,8.628,10.535,9.426,4.757,0.495,5.329,11.709,-0.22,7.825,12.835,8.364,0.83,14.239,14.13,8.263,1.511,14.475,11.756,-1.025,6.55,16.237,9.385,5.439,2.65,14.755,-1.224,1.805,12.353,5.332,-1.068,16.962,16.2,8.711,-0.536,6.115,8.3,10.487,3.057,8.746,6.01,6.838,7.115,15.4,-1.311,12.893,13.664,2.349,-1.291,-5.792,-8.594,3.922,10.954,5.858,5.887,5.85,9.424,6.36,-0.412,-6.727,4.307,7.526,-3.362,-4.441,3.341],[18.157,21.85,13.754,33.207,25.558,15.158,27.431,27.21,24.441,12.429,24.084,20.389,20.492,17.877,24.232,24.684,19.413,17.722,11.499,10.987,10.41,19.214,13.503,2.192,12.803,17.209,15.093,4.467,18.107,19.532,7.648,1.205,10.344,5.865,9.301,11.411,7.887,12.865,-0.389,4.167,10.217,12.432,0.496,6.771,12.509,16.237,-2.166,15.357,0.771,6.762,10.939,7.081,4.65,6.952,8.08,3.437,-5.122,5.077,-7.517,0.024,6.07,14.936,12.717,-3.127,21.608,12.137,25.036,31.51,24.069,16.436,19.862,26.353,18.029,34.081,27.18,25.037,20.297,28.749,23.387,17.98,14.604,22.683,12.568,26.726,13.435,26.089,13.658,20.499,26.12,11.916,20.32,20.351,17.939,24.119,11.15,1.237,24.311,18.193,13.076,12.278,12.093,16.222,12.616,20.006,10.586,18.704,16.658,23.914,16.35,1.982,18.118,12.826,11.518,19.171,5.629,18.724,11.886,7.006,4.107,9.079,16.781,17.934,16.358,15.124,18.914,10.988,11.189,-0.003,8.474,10.789,9.361,5.493,0.563,5.849,11.119,0.001,7.985,12.963,8.396,0.714,14.215,14.019,8.361,1.435,13.978,11.793,-0.953,6.218,15.841,9.117,5.477,3.08,14.764,-1.097,2.002,12.944,5.727,-1.615,17.383,16.292,9.203,-0.588,5.847,8.115,10.817,3.177,8.653,6.229,6.479,6.79,15.265,-1.196,13.269,13.721,2.633,-1.298,-5.82,-8.599,3.982,10.91,5.681,5.759,5.984,9.26,6.595,-0.847,-7.075,4.285,7.401,-3.387,-4.415,3.661],[17.884,22.104,13.758,33.204,25.522,15.137,27.316,27.383,24.424,12.485,24.17,20.479,20.557,17.869,23.952,24.838,19.408,17.922,11.431,10.911,10.465,19.334,13.536,2.047,13.03,17.2,15.128,4.322,18.195,19.667,7.543,1.277,10.304,5.769,9.428,11.503,7.822,12.404,-0.503,4.33,10.222,12.405,0.396,6.782,12.781,16.229,-2.248,15.32,0.735,6.81,11.003,7.082,4.626,6.791,7.975,3.425,-5.286,5.251,-7.66,0.076,6.033,15.13,12.659,-3.01,21.812,12.192,24.204,31.496,24.213,16.475,19.889,26.503,18.266,34.192,26.961,25.046,20.333,28.8,23.416,17.855,14.314,22.697,12.278,26.292,13.489,26.299,14.037,20.597,25.791,11.515,19.939,20.975,17.727,23.994,11.135,1.699,24.9,18.184,13.292,12.725,11.945,16.553,11.983,19.685,10.703,18.708,16.474,23.541,16.011,2.059,18.317,13.307,11.893,19.113,5.16,18.705,11.969,7.08,4.12,9.08,16.68,17.955,16.501,15.6,19.068,11.327,10.983,0.22,8.55,10.25,9.11,5.643,0.29,6.702,10.509,-0.216,7.984,12.56,8.472,0.625,14.274,13.256,8.603,1.19,13.212,11.813,-0.921,6.22,15.79,8.8,5.06,3.343,14.726,-1.119,1.959,13.544,6.005,-2.256,17.503,15.935,9.542,-0.509,5.681,8.373,10.844,3.271,8.771,5.818,6.016,7.419,15.005,-1.116,13.326,14.007,2.182,-1.262,-5.858,-8.451,3.875,10.772,5.999,5.779,6.215,9.271,6.618,-0.731,-7.012,4.151,8.017,-3.302,-4.462,4.009],[17.595,22.159,13.803,33.242,25.529,15.19,27.289,27.676,24.396,12.618,24.244,20.686,20.609,17.785,23.707,24.855,19.344,17.989,11.455,10.944,10.547,19.369,13.621,1.948,13.194,17.392,15.248,4.101,18.327,19.772,7.491,1.332,10.117,5.76,9.532,11.61,7.703,12.068,-0.687,4.323,10.092,12.298,0.362,6.962,12.955,16.308,-2.174,15.316,0.697,6.857,11.124,7.072,4.576,6.661,8.116,3.345,-5.353,5.207,-7.715,0.105,6.021,15.236,12.569,-2.92,22.099,12.793,24.092,31.554,24.459,16.511,19.744,26.613,18.526,33.996,27.179,25.157,20.426,28.995,22.886,17.585,14.128,22.318,12.647,25.761,13.809,26.351,13.992,20.505,25.808,11.543,20.259,20.715,17.623,23.847,10.669,1.373,24.349,17.905,13.14,13.043,11.95,16.735,11.096,19.743,10.295,19.045,16.778,23.852,15.725,2.037,18.659,12.821,11.496,19.088,4.977,18.735,12.315,7.363,4.194,9.011,16.501,17.927,16.932,15.888,18.876,11.905,10.738,0.287,8.194,10.57,9.304,5.821,-0.123,6.402,10.304,-0.579,7.484,12.691,8.215,0.824,14.043,13.396,8.803,1.028,13.109,11.762,-1.128,6.147,15.614,8.509,5.116,3.421,13.992,-1.264,1.854,13.547,6.315,-1.702,17.105,15.893,9.914,-0.778,5.519,8.281,10.753,3.308,8.733,5.818,6.388,7.149,15.255,-1.22,13.444,13.799,2.096,-1.031,-5.974,-8.415,3.898,10.826,5.831,5.597,6.059,9.504,6.975,-0.419,-7.309,4.095,7.81,-2.954,-4.801,3.701],[17.424,22.15,13.958,33.115,25.596,15.224,27.533,27.861,24.336,12.794,24.317,20.817,20.7,17.598,23.528,24.609,19.102,17.935,11.449,10.852,10.688,19.366,13.875,1.886,13.207,17.68,15.338,3.895,18.524,19.767,7.549,1.259,9.741,5.84,9.503,11.831,7.465,11.923,-0.882,4.191,9.909,12.091,0.412,7.262,13.227,16.219,-2.041,15.299,0.636,6.788,11.229,7.16,4.605,6.568,8.305,3.174,-5.299,4.931,-7.631,0.032,6.219,15.344,12.24,-2.822,22.015,13.291,24.535,31.823,24.813,16.046,19.623,26.799,17.537,33.836,27.392,25.083,20.652,29.168,22.647,17.478,14.647,21.672,13.07,26.329,13.703,26.232,13.798,20.67,25.99,11.503,20.58,20.315,17.912,23.728,10.846,1.427,24.315,17.808,13.233,12.997,12.053,16.357,11.193,19.581,10.281,18.809,17.264,24.006,16.056,1.975,18.527,12.743,11.428,19.153,4.945,18.769,12.195,7.391,3.819,8.973,16.861,18.099,17.101,15.723,18.895,11.473,10.708,0.858,7.997,10.996,9.326,5.411,-0.242,5.479,10.247,-0.236,7.233,13.394,8.548,0.273,13.787,13.282,8.948,0.786,13.24,11.637,-1.053,5.845,16.097,8.525,5.201,3.188,14.301,-0.98,2.054,12.819,6.195,-1.813,17.396,16.183,9.768,-0.405,5.504,8.268,10.666,3.12,8.595,6.01,7.031,7.074,15.321,-1.204,13.706,13.692,2.47,-1.06,-5.909,-8.748,3.872,10.988,5.787,5.473,5.65,9.813,7.039,-0.526,-7.05,4.349,7.934,-3.22,-4.715,3.354],[17.182,22.221,14.116,33.054,25.819,15.275,27.848,27.903,24.348,13.036,24.404,20.784,20.838,17.382,23.406,24.431,18.745,17.84,11.451,10.647,10.819,19.436,14.055,2.015,13.203,17.954,15.384,3.696,18.843,19.606,7.565,1.216,9.371,5.759,9.527,12.07,7.253,11.901,-0.974,3.873,9.783,11.871,0.497,7.444,13.37,16.19,-2.105,15.431,0.532,6.824,11.235,7.219,4.66,6.7,8.352,3.111,-5.255,4.601,-7.5,-0.023,6.477,15.462,12.162,-2.893,21.673,13.173,25.002,31.734,24.494,15.742,19.736,26.624,17.867,33.68,27.719,25.176,20.632,29.164,22.595,17.621,14.849,21.781,12.763,26.611,13.544,26.211,13.782,21.157,26.295,11.36,20.588,19.984,18.221,23.344,11.244,1.663,24.476,17.511,13.845,12.747,12.282,16.508,12.253,20.026,10.07,18.413,17.275,23.605,16.665,1.527,18.39,12.709,11.593,19.297,4.634,18.731,12.522,6.906,4.115,9.398,16.644,18.174,17.359,15.46,19.188,11.748,10.09,0.974,7.425,10.676,9.145,5.007,-0.452,6.073,10.191,-0.52,7.252,13.192,8.862,0.663,13.694,13.676,8.902,0.712,13.024,11.508,-0.834,5.614,15.808,8.56,5.135,2.826,14.584,-1.174,2.042,12.968,6.058,-2.131,17.578,16.41,9.545,-0.354,5.926,8.172,10.4,2.982,8.98,5.727,7.197,7.547,15.646,-1.176,13.727,13.531,2.2,-0.973,-5.978,-8.734,3.272,10.326,6.03,5.305,5.547,9.763,6.826,-0.899,-7.114,4.741,7.925,-3.341,-4.303,2.962],[17.025,22.319,14.109,33.145,25.963,15.264,28.124,27.881,24.411,13.242,24.504,20.661,21.015,17.286,23.388,24.359,18.567,17.817,11.687,10.496,10.872,19.448,14.213,2.11,13.084,18.141,15.318,3.587,19.105,19.404,7.54,1.169,9.01,5.72,9.546,12.249,7.19,11.894,-1.006,3.562,9.812,11.587,0.503,7.425,13.391,16.281,-2.306,15.652,0.528,6.889,11.124,7.262,4.75,6.896,8.268,2.968,-5.157,4.203,-7.312,0.018,6.646,15.527,12.344,-2.892,21.862,12.765,24.912,31.459,23.931,15.564,20.064,26.529,17.829,33.685,27.809,24.768,20.645,29.069,22.868,17.022,14.518,21.671,12.57,26.406,13.931,26.405,13.869,21.452,26.519,12.1,20.387,19.562,18.497,23.276,11.047,1.75,23.909,17.369,14.039,13.014,12.717,16.602,11.864,19.167,9.872,18.554,17.462,23.559,16.992,1.315,18.257,12.662,11.224,19.234,4.606,18.961,12.712,6.788,3.928,10.094,16.584,18.574,17.241,15.527,19.066,11.957,9.273,0.935,7.179,10.715,8.879,4.93,-0.642,6.55,10.046,-0.728,7.304,12.977,8.268,1.326,13.412,14.152,9.068,0.6,12.784,11.392,-1.115,5.477,15.188,8.844,4.905,2.409,14.521,-1.215,2.032,13.589,6.199,-1.737,17.304,16.319,9.349,-0.837,5.916,8.091,10.557,3.038,8.985,5.404,7.255,7.037,15.814,-1.201,13.706,13.699,1.711,-1.105,-5.619,-8.213,3.099,10.387,6.259,5.815,5.738,9.488,7.004,-0.635,-6.813,4.717,8.287,-3.297,-4.072,2.766],[16.849,22.464,14.18,33.299,25.903,15.089,27.91,27.772,24.382,13.44,24.477,20.498,21.265,17.229,23.286,24.293,18.539,17.89,11.889,10.47,10.988,19.485,14.294,2.033,12.916,18.177,15.226,3.644,19.251,19.279,7.557,1.088,8.957,5.73,9.385,12.374,7.319,11.866,-1.037,3.539,10.11,11.234,0.419,7.362,13.359,16.308,-2.387,15.75,0.595,6.745,10.983,7.28,4.857,7.037,8.246,2.633,-4.952,3.832,-7.024,0.214,6.673,15.501,12.486,-2.863,22.142,12.741,25.026,31.519,23.884,15.868,20.241,26.946,17.081,33.658,27.789,24.75,20.87,29.081,22.697,16.918,14.185,21.625,12.728,26.448,13.952,26.411,14.037,21.395,26.491,12.918,20.21,19.261,18.789,23.497,10.872,1.65,24.008,17.315,13.791,12.629,12.739,16.401,11.763,18.677,10.226,18.625,17.734,23.827,16.961,1.818,17.79,13.357,11.095,18.796,4.56,18.928,12.667,6.82,3.608,9.789,16.516,18.885,17.462,15.848,18.927,11.43,9.208,1.094,7.124,10.749,9.104,4.885,-0.681,5.967,10.093,-0.564,7.403,13.702,8.362,0.201,12.912,14.286,9.033,0.645,12.937,11.03,-1.149,5.593,15.929,9.024,4.353,2.099,14.788,-1.203,1.809,13.202,6.511,-2.245,17.698,16.379,9.255,-0.855,5.938,8.217,11.108,3.471,8.94,5.284,7.244,6.904,15.765,-1.182,13.667,13.782,1.693,-1.011,-5.434,-7.906,3.415,10.704,5.847,5.801,6.035,9.375,7.43,-0.23,-6.732,4.914,8.293,-3.09,-3.944,2.283],[16.578,22.656,14.434,33.483,25.803,14.945,27.421,27.757,24.42,13.67,24.332,20.444,21.515,17.354,23.113,24.32,18.532,17.856,11.947,10.633,11.049,19.539,14.242,1.937,12.883,18.157,15.247,3.752,19.223,19.211,7.646,1.106,9.132,5.7,9.195,12.588,7.522,11.912,-1.134,3.697,10.535,10.881,0.018,7.376,13.28,16.486,-2.288,15.772,0.595,6.488,10.925,7.311,4.932,7.012,8.318,2.398,-4.799,3.66,-6.854,0.387,6.614,15.446,12.501,-2.829,22.089,13.169,25.145,31.739,23.826,16.204,20.41,26.748,17.447,33.57,27.475,24.833,21.146,29.044,22.573,16.518,14.08,21.608,13.029,26.145,13.747,26.215,13.656,20.849,25.951,12.702,20.386,19.175,18.484,23.27,11.328,1.081,24.412,17.164,13.915,11.709,12.352,16.553,12.318,19.718,10.47,18.359,17.692,23.904,16.947,1.819,18.018,13.033,10.868,19.337,4.614,18.708,12.556,7.37,3.756,9.31,16.42,18.605,17.418,15.575,18.891,11.361,9.488,1.323,7.266,10.21,9.425,4.576,-0.634,5.236,10.182,-0.641,7.586,13.344,8.182,0.042,12.301,14.122,9.003,0.519,12.825,11.159,-0.883,5.973,16.606,9.329,4.768,2.719,14.58,-1.61,2.017,12.602,6.383,-2.301,17.653,16.498,9.904,-0.885,6.424,7.664,10.737,3.676,8.816,4.822,7.058,7.667,15.748,-1.091,13.651,13.628,1.754,-0.943,-5.277,-7.788,2.84,10.732,5.933,5.46,6.346,9.58,7.142,-0.113,-6.492,4.741,7.587,-3.296,-3.785,1.935],[16.371,22.765,14.709,33.674,25.714,14.901,27.127,27.842,24.595,13.896,24.094,20.485,21.74,17.508,22.858,24.464,18.579,17.721,11.963,10.785,10.996,19.466,14.118,1.763,12.642,18.104,15.295,3.809,18.984,19.194,7.783,1.206,9.23,5.645,8.995,12.721,7.729,11.865,-1.253,4.006,10.921,10.648,-0.323,7.39,13.139,16.688,-1.935,15.697,0.656,6.253,10.86,7.238,5.022,6.917,8.349,2.313,-4.705,3.458,-6.805,0.327,6.399,15.453,12.525,-2.802,22.428,13.804,25.078,31.99,23.359,16.096,20.543,26.34,17.467,33.441,26.608,24.783,21.054,28.993,22.828,16.12,14.739,20.943,13.477,26.169,14.177,26.36,13.552,20.32,25.754,12.277,20.737,19.688,18.505,23.203,11.238,0.65,24.319,17.546,14.016,12.225,12.48,16.502,12.187,19.383,10.586,18.484,17.376,23.95,17.007,1.585,18.097,12.962,11.22,19.295,5.071,18.751,12.777,7.622,3.781,9.615,16.363,18.433,16.966,15.572,18.897,11.838,9.618,1.815,7.439,10.218,9.406,4.212,-0.555,4.902,10.375,-0.859,7.557,13.599,7.966,-0.015,12.148,13.606,9.118,0.223,13.394,11.246,-0.889,5.967,16.359,9.455,5.144,2.668,14.526,-1.769,2.146,13.472,6.416,-1.962,17.774,16.397,10.282,-0.355,6.152,7.44,10.029,3.517,9.071,5.027,7.219,7.292,15.707,-0.88,13.713,13.85,1.709,-0.961,-5.33,-7.691,2.432,10.848,5.89,5.41,6.134,9.369,7.001,-0.328,-6.19,4.619,7.849,-3.373,-3.836,2.128],[16.212,22.713,14.845,33.77,25.624,15.017,26.903,27.849,24.752,14.146,23.824,20.586,21.969,17.595,22.522,24.652,18.505,17.605,11.821,10.975,10.971,19.396,14.088,1.595,12.413,18.065,15.29,3.852,18.789,19.226,7.949,1.285,9.203,5.586,8.903,12.819,7.857,11.996,-1.42,4.31,11.02,10.522,-0.455,7.399,13.055,16.788,-1.509,15.592,0.704,6.121,10.793,7.192,4.999,6.809,8.359,2.352,-4.628,3.333,-6.804,0.22,6.2,15.602,12.607,-2.847,22.753,14.069,25.41,32.122,23.163,16.038,20.658,26.928,16.872,33.55,26.791,24.326,20.834,29.087,23.123,16.731,14.919,21.206,13.381,26.043,14.21,26.624,13.952,19.975,25.771,12.667,20.832,20.315,18.631,23.027,10.627,0.359,24.444,17.528,13.911,11.925,12.795,16.494,11.753,19.48,10.528,18.505,17.231,23.985,16.71,1.533,17.886,13.484,11.624,18.849,5.003,19.182,12.482,7.337,3.261,9.938,16.376,18.507,17.301,15.925,18.893,12.441,9.536,2.414,7.244,10.199,9.674,3.906,-0.47,4.954,10.564,-1.1,7.692,14.018,7.745,-0.337,12.223,13.229,9.007,0.281,13.441,10.618,-0.858,6.126,16.096,10.012,4.911,2.758,14.658,-1.812,2.08,13.446,6.43,-1.232,17.81,16.129,9.99,-0.165,5.532,7.598,10.229,3.481,8.903,4.937,6.952,7.102,15.853,-0.818,13.772,13.778,1.545,-0.936,-5.365,-7.831,2.838,11.19,5.886,5.835,5.574,9.413,7.065,-0.808,-5.878,4.385,8.064,-3.16,-3.961,2.11],[16.146,22.514,14.66,33.741,25.489,15.246,26.828,27.79,24.877,14.355,23.549,20.746,22.086,17.667,22.241,24.838,18.428,17.471,11.533,11.173,11.001,19.485,14.158,1.437,12.286,18.037,15.318,3.804,18.892,19.278,8.218,1.349,8.876,5.443,8.875,12.896,7.875,12.328,-1.536,4.569,11.029,10.468,-0.547,7.24,12.892,16.806,-1.033,15.585,0.689,6.168,10.839,7.188,4.856,6.689,8.322,2.522,-4.58,3.298,-6.793,0.097,6.016,15.87,12.632,-2.83,22.448,14.192,25.201,32.199,23.294,16.415,21.043,27.148,17.115,33.321,27.111,24.312,20.92,29.389,23.288,16.627,14.473,21.179,13.328,25.738,13.669,26.348,13.87,20.17,25.47,13.733,21.293,19.984,19.131,22.47,10.785,0.576,24.449,17.266,13.698,11.34,12.709,16.488,11.714,19.303,10.867,18.327,17.344,23.975,16.893,1.055,17.995,13.13,11.718,19.018,4.748,18.922,12.547,7.306,3.506,9.731,16.753,18.367,17.866,15.753,18.781,12.306,9.465,2.579,7.212,9.936,9.583,3.82,-0.166,5.492,10.655,-1.267,7.879,13.79,7.577,0.163,12.2,13.532,9.017,0.22,13.123,10.32,-0.814,6.219,16.29,9.953,4.881,3.124,14.541,-1.968,1.959,12.609,6.51,-0.88,17.611,15.889,9.887,-0.374,5.779,7.66,10.517,3.331,8.878,4.81,6.663,7.623,16.197,-1.119,14.044,13.93,1.605,-0.895,-5.57,-7.951,2.979,11.199,6.297,5.703,5.649,9.496,7.002,-0.512,-5.439,4.147,8.348,-3.348,-4.07,1.901],[16.233,22.374,14.466,33.713,25.285,15.317,27.031,27.818,24.799,14.673,23.355,20.764,22.073,17.839,22.009,24.794,18.378,17.415,11.365,11.3,11.061,19.503,14.105,1.272,11.947,18.144,15.518,3.674,19.047,19.294,8.337,1.462,8.446,5.387,8.774,12.776,7.695,12.594,-1.474,4.676,11.104,10.439,-0.515,7.004,12.748,16.78,-0.679,15.599,0.641,6.408,10.943,7.227,4.915,6.637,8.398,2.814,-4.554,3.239,-6.828,0.043,5.967,16.103,12.588,-2.894,21.989,13.968,24.937,32.107,23.25,16.987,21.503,26.682,16.997,33.418,26.714,24.333,20.762,28.976,23.038,16.412,14.717,20.335,13.595,25.856,14.017,26.33,13.702,20.713,25.431,13.405,21.945,19.601,19.423,22.683,10.925,0.616,24.989,17.137,14.279,11.587,12.504,16.196,11.793,18.871,11.195,18.556,17.693,24.06,17.115,0.425,18.049,12.571,12.002,18.925,4.805,18.508,12.779,7.25,3.839,9.741,16.389,18.249,17.479,15.907,18.907,12.268,8.633,2.628,6.545,9.868,9.892,3.9,-0.002,5.341,10.745,-1.36,7.56,13.711,7.601,-0.179,12.019,13.818,8.64,-0.055,13.281,10.899,-1.135,5.978,16.361,10.2,5.004,3.981,14.634,-1.704,1.921,12.905,6.475,-1.321,17.899,16.162,9.966,0.404,6.11,8.08,10.197,3.595,8.88,4.788,6.799,7.291,16.399,-1.369,14.464,13.857,1.969,-1.073,-5.409,-7.997,2.562,11.142,5.954,5.176,5.692,9.283,6.951,-0.472,-5.267,4.121,8.489,-3.342,-3.881,2.062],[16.431,22.342,14.533,33.743,25.271,15.224,27.131,27.788,24.603,14.827,23.346,20.656,21.999,18.082,21.904,24.606,18.219,17.41,11.396,11.442,11.078,19.404,14.052,1.14,11.62,18.14,15.709,3.588,19.162,19.317,8.127,1.593,7.981,5.438,8.641,12.619,7.481,12.685,-1.39,4.788,11.318,10.461,-0.418,6.752,12.87,16.717,-0.572,15.61,0.54,6.708,10.898,7.3,4.967,6.664,8.5,2.959,-4.517,3.14,-6.862,0.165,6.087,16.216,12.496,-3.092,22.095,14.393,25.181,32.115,23.401,17.001,21.663,26.366,16.836,33.606,27.248,24.121,20.707,28.903,22.099,16.477,14.972,20.724,13.254,25.866,14.409,25.939,13.912,20.935,25.685,13.248,22.323,19.716,19.569,22.395,10.68,-0.131,24.777,17.116,14.387,11.374,12.727,16.146,11.171,19.382,11.321,18.748,17.913,23.729,17.079,0.439,18.214,12.191,11.6,19.041,4.838,18.928,12.228,7.513,3.288,9.832,16.408,18.47,17.579,16.224,18.795,12.814,8.185,2.765,5.98,9.638,9.772,3.893,-0.154,5.081,11.036,-0.775,7.516,13.085,7.588,-0.173,11.584,14.204,8.376,0.244,13.757,11.22,-1.069,5.691,16.743,10.238,5.434,4.462,14.661,-1.38,1.99,13.539,6.515,-0.932,17.976,16.436,10.102,0.569,5.854,8.274,10.188,3.578,8.569,4.668,6.913,7.151,16.644,-1.165,14.469,13.77,2.119,-1.214,-5.333,-7.77,2.68,10.908,6.279,5.488,5.787,9.485,6.7,-0.654,-5.635,4.253,8.139,-3.495,-3.751,1.714],[16.729,22.331,14.698,33.798,25.347,15.021,27.023,27.712,24.477,14.893,23.395,20.59,21.934,18.324,21.949,24.443,18.335,17.577,11.448,11.498,11.113,19.245,13.961,0.946,11.43,18.013,15.7,3.626,19.283,19.349,7.699,1.689,7.808,5.549,8.452,12.625,7.585,12.719,-1.1,4.955,11.424,10.436,-0.134,6.623,13.191,16.788,-0.587,15.633,0.477,6.99,10.841,7.26,4.943,6.689,8.494,2.732,-4.604,2.843,-6.807,0.379,6.207,16.264,12.321,-3.219,22.427,14.699,25.269,32.025,23.983,16.804,21.509,26.953,17.515,33.82,27.113,23.766,20.606,29.28,21.618,17.081,14.471,20.463,13.558,25.732,13.696,26.2,13.486,20.324,25.533,13.555,22.764,19.689,19.629,22.02,10.509,-0.685,23.993,17.382,14.109,10.902,12.78,16.155,11.18,19.252,11.252,18.195,18.012,23.71,16.614,0.581,18.144,12.189,12.128,18.919,4.62,18.738,12.379,7.756,3.006,9.629,16.841,18.682,17.949,16.205,18.849,12.128,8.33,2.531,6.022,9.669,9.42,4.123,-0.166,5.289,11.4,-0.843,7.507,13.168,7.242,-0.206,11.677,14.119,8.423,0.666,14.195,10.807,-0.979,5.899,16.285,10.527,5.952,4.553,14.543,-1.56,1.986,13.855,6.263,-0.774,17.542,16.03,10.589,0.397,5.431,8.496,10.013,3.456,8.378,4.282,6.685,7.617,16.328,-0.478,14.621,13.669,1.905,-1.327,-5.184,-7.863,3.154,10.491,6.825,5.736,5.552,9.718,6.885,-0.473,-5.865,4.343,7.755,-3.879,-3.998,1.363],[17.072,22.254,14.651,33.855,25.402,14.708,26.696,27.708,24.506,14.848,23.378,20.536,21.956,18.503,21.95,24.365,18.645,17.807,11.345,11.611,11.124,18.872,13.773,0.724,11.354,17.883,15.573,3.716,19.354,19.353,7.605,1.711,8.073,5.783,8.318,12.797,7.886,12.84,-0.78,5.205,11.54,10.388,0.097,6.601,13.395,16.751,-0.659,15.564,0.374,7.164,10.688,7.077,4.907,6.596,8.421,2.537,-4.812,2.49,-6.689,0.582,6.266,16.28,12.152,-3.258,22.419,14.556,25.078,32.12,24.506,16.852,21.548,27.621,17.983,33.727,26.902,23.619,20.538,29.073,21.705,17.894,14.079,20.508,13.871,25.439,13.172,26.563,13.153,20.115,25.476,13.704,23.468,19.906,19.714,22.691,10.477,-0.791,24.203,17.003,13.801,10.579,12.648,16.425,11.906,19.339,11.138,18.071,18.355,23.963,16.331,0.82,18.11,11.971,12.323,19.133,4.475,18.773,12.65,7.07,3.544,9.868,16.635,18.88,17.882,15.942,19.045,11.921,8.276,2.417,6.33,9.313,9.46,4.285,-0.028,5.035,11.526,-1.014,7.288,13.411,7.103,0.366,12.104,13.942,8.3,0.948,14.389,10.671,-1.264,6.358,16.078,10.627,6.13,4.217,14.422,-1.318,1.677,14.008,6.088,-0.829,17.894,16.252,10.241,-0.062,5.856,8.954,9.5,3.381,8.639,3.892,6.373,7.435,16.308,-0.903,14.66,13.53,1.803,-1.494,-5.181,-7.918,2.328,10.654,6.819,5.252,5.415,9.258,6.972,-0.166,-6.498,4.43,7.825,-3.772,-4.224,1.095],[17.513,22.191,14.382,33.875,25.336,14.527,26.5,27.818,24.726,14.651,23.379,20.549,22.118,18.703,22.048,24.424,18.74,18.065,11.002,11.829,11.05,18.677,13.675,0.663,11.216,17.919,15.458,3.738,19.357,19.372,7.775,1.701,8.378,5.871,8.243,13.032,8.193,12.95,-0.633,5.422,11.578,10.476,0.326,6.644,13.427,16.603,-0.835,15.54,0.197,7.212,10.179,6.917,4.83,6.534,8.424,2.359,-5.107,2.12,-6.58,0.656,6.244,16.185,12.161,-3.236,21.901,14.874,24.694,32.282,24.356,17.196,21.807,27.366,17.264,33.679,26.637,23.543,20.505,29.209,21.673,17.877,14.112,20.797,13.841,25.774,13.368,26.632,13.162,19.971,24.96,13.222,23.857,20.435,19.913,22.785,10.651,-0.727,24.307,17.223,13.353,11.152,12.739,16.925,11.094,19.011,11.156,18.424,19.084,23.34,16.608,0.282,18.201,12.21,11.507,19.482,5.0,18.203,12.079,6.982,3.44,9.975,16.961,19.087,17.247,15.714,18.955,12.408,8.722,2.737,6.574,9.254,9.381,4.351,0.085,5.376,11.395,-0.046,7.611,13.418,7.283,0.533,12.21,13.88,8.075,0.985,14.078,10.344,-1.619,6.562,16.779,11.019,6.131,3.802,14.03,-0.849,1.28,13.845,5.728,-0.617,17.412,16.454,10.094,-0.258,5.752,8.955,9.779,3.387,8.646,3.692,6.739,7.375,16.812,-0.857,14.597,13.517,1.888,-1.41,-5.321,-7.711,1.974,10.682,6.902,5.222,5.464,8.737,7.164,0.166,-6.693,4.347,7.904,-3.518,-4.341,0.714],[17.811,22.023,14.171,33.802,25.24,14.641,26.405,27.99,24.863,14.511,23.316,20.675,22.331,18.99,22.199,24.405,18.685,18.307,10.56,11.868,10.844,18.701,13.573,0.618,11.282,17.967,15.367,3.777,19.379,19.434,7.969,1.818,8.603,5.853,8.24,13.319,8.45,12.975,-0.479,5.41,11.553,10.547,0.677,6.7,13.191,16.508,-1.065,15.422,0.017,7.171,9.798,6.907,4.774,6.497,8.572,2.176,-5.417,1.885,-6.59,0.819,6.141,16.012,12.076,-3.214,21.766,14.845,25.448,32.214,24.163,17.781,22.224,26.678,17.25,33.463,26.152,24.099,20.42,28.98,21.503,18.177,13.884,20.638,13.262,25.395,13.252,26.85,13.217,19.942,24.796,13.186,24.14,20.718,20.289,22.4,9.903,-0.069,24.522,17.16,13.627,10.973,12.677,16.902,10.68,19.481,11.74,18.247,19.73,23.545,17.004,-0.32,18.293,11.895,12.181,19.897,5.021,17.824,12.293,7.38,3.438,10.183,16.876,18.99,17.159,16.033,18.793,12.156,9.146,2.555,6.99,9.215,9.555,4.343,0.374,5.755,11.367,0.228,8.177,13.941,7.635,0.019,12.125,14.156,8.246,1.175,13.619,10.796,-1.743,6.731,16.315,10.947,5.943,4.325,14.254,-0.923,0.882,13.483,5.519,-0.96,17.416,16.256,10.179,-0.013,5.513,8.803,9.334,3.529,8.643,3.631,7.09,7.235,16.614,-0.869,14.385,13.531,1.904,-1.373,-5.101,-7.801,2.278,10.501,6.618,5.23,5.824,8.284,6.896,0.247,-6.457,4.332,7.81,-3.925,-4.414,0.581],[18.105,22.022,13.993,33.567,25.189,14.687,26.4,28.011,25.029,14.561,23.24,20.886,22.624,19.402,22.226,24.391,18.674,18.144,10.188,11.941,10.737,18.671,13.548,0.719,11.345,17.898,15.264,3.897,19.472,19.476,8.169,1.972,8.804,5.86,8.278,13.628,8.648,12.864,-0.271,5.298,11.445,10.584,0.919,6.78,12.836,16.36,-1.151,15.356,-0.247,7.057,9.538,6.966,4.786,6.455,8.701,2.19,-5.485,1.874,-6.761,0.911,6.042,15.806,12.006,-3.225,21.817,13.974,25.54,31.893,23.951,18.031,22.335,26.436,17.95,33.428,26.2,23.958,20.292,29.128,21.885,18.394,14.089,20.489,13.13,25.206,12.864,26.292,13.161,20.248,25.54,13.124,24.439,20.206,20.977,22.924,9.572,0.075,23.74,17.135,13.832,10.365,12.116,17.027,10.691,19.604,11.767,18.166,19.677,24.22,16.402,-0.647,18.057,12.174,12.698,19.894,4.851,18.495,12.532,7.471,3.442,10.199,16.69,18.754,17.792,15.927,19.247,12.115,9.393,2.567,6.975,9.302,9.849,4.117,0.457,5.845,11.112,-0.161,8.184,14.106,7.417,0.373,12.155,13.954,8.358,1.321,13.875,11.197,-1.936,7.099,15.732,10.62,5.75,4.596,14.283,-0.412,1.126,13.474,5.524,-0.832,17.774,16.494,10.175,-0.192,5.774,8.706,8.52,3.577,8.757,3.443,6.487,7.548,15.854,-0.402,14.131,13.098,1.71,-1.389,-5.029,-7.847,1.702,10.953,6.178,4.967,6.067,8.258,6.39,-0.01,-7.254,4.247,7.931,-3.805,-4.579,0.604],[18.384,22.181,13.747,33.325,25.166,14.544,26.651,27.935,25.209,14.344,23.176,20.967,22.918,19.76,22.332,24.38,18.763,17.634,10.139,12.071,10.626,18.666,13.674,0.817,11.221,17.851,15.171,3.916,19.731,19.566,8.181,2.057,8.86,5.908,8.314,13.763,8.709,12.757,-0.11,5.185,11.354,10.72,1.069,6.686,12.724,16.119,-1.051,15.435,-0.357,6.862,9.254,6.934,4.831,6.41,8.9,2.261,-5.239,1.855,-7.013,0.867,5.924,15.563,12.112,-3.298,22.103,14.302,25.205,31.567,23.968,18.033,22.465,27.098,18.765,33.247,26.403,23.711,20.507,29.186,21.512,18.983,14.28,20.991,13.331,25.472,12.588,26.22,13.096,20.219,25.933,12.958,24.692,20.43,21.065,23.142,9.622,-0.217,23.516,17.164,13.639,10.578,12.303,16.767,9.979,19.078,11.139,18.28,18.853,23.399,16.538,-0.401,18.026,12.355,12.01,19.339,5.152,18.265,12.231,7.603,3.713,9.721,16.569,18.734,17.656,15.208,19.474,12.403,9.542,2.926,7.062,9.738,10.002,4.129,0.324,5.814,11.237,-0.004,7.835,14.06,7.308,0.752,12.538,13.515,8.115,1.581,14.23,10.695,-2.007,7.381,15.781,10.03,5.339,4.102,14.504,-0.05,1.143,12.714,5.753,-0.338,17.014,16.378,10.6,0.018,5.74,8.611,8.302,3.844,8.693,3.586,6.252,7.628,15.54,-0.1,14.085,13.187,1.859,-1.444,-5.31,-8.086,2.149,10.824,6.576,5.248,5.852,8.485,6.82,-0.174,-7.087,4.272,7.9,-3.444,-5.047,0.693],[18.715,22.415,13.661,33.293,25.147,14.402,27.061,27.891,25.383,14.069,23.054,20.905,23.259,19.873,22.539,24.235,18.768,17.34,10.24,11.945,10.592,18.549,13.779,0.802,11.125,17.869,15.107,4.078,19.894,19.744,8.041,2.073,8.871,5.865,8.376,13.794,8.576,12.774,-0.005,5.011,11.258,10.914,1.182,6.469,12.711,15.843,-0.952,15.508,-0.163,6.77,9.199,6.972,4.911,6.392,8.991,2.41,-4.979,1.974,-7.339,0.815,5.865,15.379,12.153,-3.46,22.258,14.31,25.377,31.575,24.701,18.266,22.495,27.779,18.366,33.315,26.635,23.412,20.725,29.29,21.257,19.293,14.113,21.228,13.046,25.121,12.898,26.708,13.11,20.219,25.721,12.922,24.223,21.179,20.933,23.264,9.42,-0.073,24.409,17.228,13.4,10.391,12.163,16.028,9.874,18.891,11.369,18.28,18.585,23.27,16.672,0.186,18.231,11.724,12.262,18.983,4.915,17.98,12.211,7.407,3.64,9.445,16.254,19.148,17.01,15.363,19.308,12.814,9.534,2.87,7.004,9.361,9.624,4.451,0.265,5.447,11.512,0.533,7.832,14.293,7.294,0.591,12.691,12.981,8.058,1.626,14.342,10.532,-1.919,7.562,15.696,9.815,5.646,3.595,14.168,-0.174,0.669,12.866,5.694,-0.662,16.492,15.579,10.145,-0.145,5.53,8.617,8.192,3.603,8.511,3.632,6.477,7.899,15.521,-0.088,13.793,13.612,1.959,-1.739,-5.674,-8.157,2.269,11.068,6.474,5.021,5.733,7.99,6.523,-0.065,-6.685,4.021,8.093,-3.542,-4.582,0.814],[18.899,22.638,13.731,33.519,25.065,14.318,27.387,27.922,25.59,13.797,23.133,20.917,23.511,19.927,22.783,24.207,18.616,17.212,10.271,11.706,10.627,18.313,13.664,0.911,10.964,17.855,15.107,4.21,19.99,19.911,7.83,1.948,8.771,5.822,8.381,13.954,8.466,12.872,0.166,4.924,11.032,11.109,1.118,6.262,12.565,15.701,-1.033,15.504,0.058,6.835,9.177,6.897,4.876,6.281,9.145,2.607,-4.776,2.21,-7.593,0.847,5.718,15.212,12.127,-3.637,22.632,13.54,25.576,31.921,24.903,18.487,22.671,27.349,17.728,33.348,27.311,23.202,20.858,29.121,21.43,19.41,13.764,20.978,12.783,25.328,12.9,26.315,12.835,20.422,26.143,12.795,23.563,20.85,21.18,23.14,10.141,-0.128,24.625,17.181,13.369,10.278,12.204,15.975,10.717,19.054,11.586,18.633,18.492,23.647,16.57,-0.155,18.689,11.638,12.281,18.503,4.815,18.286,12.423,6.974,4.072,9.196,16.331,19.118,17.149,15.731,19.861,12.642,9.479,2.613,6.997,9.065,9.384,4.36,0.287,5.266,11.331,0.773,7.985,14.041,7.175,0.786,12.862,12.892,7.919,1.432,14.139,10.997,-1.778,7.044,15.272,10.239,6.188,3.587,13.852,-0.613,0.371,13.029,5.539,-0.706,16.552,15.943,9.658,-0.365,5.544,8.462,8.71,3.757,8.685,3.872,6.574,8.118,15.499,-0.342,13.573,13.284,1.998,-1.789,-6.25,-8.749,2.186,10.857,6.02,5.025,6.303,7.697,6.632,-0.135,-6.435,3.879,7.982,-3.95,-3.97,1.076],[18.917,22.777,13.705,33.858,24.852,14.146,27.73,27.843,25.741,13.413,23.372,20.937,23.633,19.982,22.783,24.296,18.397,17.257,10.425,11.507,10.693,18.232,13.387,0.91,10.84,17.886,15.186,4.246,19.983,20.052,7.666,1.743,8.628,5.815,8.368,14.042,8.332,12.897,0.417,4.873,10.883,11.289,1.016,6.155,12.278,15.67,-1.194,15.623,0.131,6.925,9.173,6.853,4.911,6.203,9.232,2.751,-4.653,2.572,-7.819,0.833,5.606,15.231,11.907,-3.626,22.801,13.872,25.509,32.085,24.834,18.737,22.799,26.559,18.052,33.942,27.748,23.211,21.026,29.196,21.621,19.205,13.911,21.229,12.906,25.521,12.565,26.125,12.616,20.4,26.317,12.287,23.647,20.503,21.286,23.151,10.591,0.364,24.163,16.745,13.279,10.052,12.3,15.926,11.205,19.142,11.401,18.201,19.241,23.604,16.457,-0.656,18.599,11.75,11.947,18.536,5.433,18.069,12.024,7.037,3.958,9.553,16.605,18.861,17.391,15.277,20.247,12.514,9.468,2.408,6.783,9.283,8.917,4.321,0.414,5.287,11.111,0.796,8.171,13.989,7.612,0.816,13.121,13.093,7.628,1.865,13.86,11.229,-1.717,6.609,15.146,9.799,5.835,3.67,14.061,-0.575,1.037,13.209,5.395,-0.629,16.627,16.342,9.88,-0.273,5.48,8.674,9.43,3.736,8.625,4.178,6.035,7.798,15.07,-0.425,13.495,13.24,2.466,-1.771,-5.994,-8.823,2.813,10.27,5.78,4.845,6.654,7.772,6.6,0.17,-6.364,3.766,8.288,-4.226,-4.035,1.281],[18.815,22.781,13.671,34.13,24.745,14.031,27.968,27.631,25.755,13.082,23.501,20.825,23.689,20.062,22.625,24.361,18.276,17.365,10.663,11.443,10.739,18.262,13.172,0.815,10.844,17.949,15.213,4.334,19.956,19.979,7.574,1.593,8.732,5.803,8.55,14.152,8.138,12.902,0.534,4.81,10.771,11.467,1.095,6.078,12.029,15.647,-1.361,15.796,0.104,6.911,9.281,6.909,4.96,6.16,9.101,2.956,-4.664,3.006,-7.908,0.918,5.542,15.306,11.617,-3.573,22.515,13.75,25.526,32.298,25.098,18.739,22.805,26.994,19.17,34.425,27.576,23.518,20.999,28.822,21.757,19.112,13.384,21.13,12.94,24.941,12.618,26.075,12.52,20.568,26.522,11.946,24.21,20.97,21.387,23.324,10.506,0.477,23.85,16.599,12.601,9.824,12.421,16.122,10.702,18.632,11.147,17.516,19.852,23.573,16.379,-0.874,18.519,11.581,11.705,18.913,5.151,17.789,11.806,6.947,3.83,10.123,16.621,18.57,17.295,15.398,20.168,12.491,8.863,1.679,6.71,9.146,9.2,4.421,0.816,5.239,11.089,0.664,8.023,14.084,7.784,0.539,13.14,13.162,7.842,2.347,13.638,11.304,-1.258,6.36,15.387,9.238,5.642,3.605,14.505,-0.371,1.811,12.583,5.369,-0.395,16.866,16.308,9.93,-0.221,5.553,8.752,9.439,4.004,8.714,4.618,5.892,7.612,14.739,-0.152,13.837,12.966,2.2,-1.765,-6.124,-8.408,2.995,10.673,5.965,4.966,6.661,7.675,6.381,0.004,-6.339,3.822,8.812,-3.918,-4.458,1.654],[18.8,22.577,13.832,34.275,24.705,14.093,27.87,27.513,25.851,12.849,23.541,20.649,23.756,20.226,22.509,24.246,18.169,17.381,10.711,11.421,10.814,18.286,12.962,0.66,10.851,17.893,15.186,4.561,19.977,19.798,7.54,1.436,9.045,5.809,8.845,14.196,7.988,12.79,0.526,4.674,10.595,11.593,1.129,6.12,11.69,15.52,-1.427,16.085,0.193,6.823,9.382,6.971,5.002,6.181,9.126,3.099,-4.688,3.466,-8.044,1.12,5.463,15.356,11.413,-3.606,22.286,12.622,25.461,32.514,24.901,18.629,22.728,27.357,19.19,34.527,27.749,23.354,20.721,28.948,21.886,19.274,13.12,20.696,13.022,25.201,12.757,25.535,12.727,20.353,26.575,11.979,24.736,21.15,21.501,22.811,10.062,-0.133,24.031,16.754,12.825,10.483,12.587,16.312,9.983,18.496,11.53,17.179,19.734,23.618,16.331,-0.625,18.578,11.36,12.044,19.0,5.573,17.96,12.344,6.824,3.893,9.918,16.603,18.678,17.395,15.861,19.976,12.95,9.534,1.238,6.995,9.48,9.061,4.209,1.215,5.282,11.178,0.675,7.425,14.663,7.612,1.032,13.036,13.338,8.0,2.029,13.986,11.309,-1.071,6.58,15.498,9.254,5.745,3.632,14.707,-0.652,1.777,12.534,5.395,-0.837,17.03,15.93,9.833,-0.571,5.399,8.49,9.35,4.02,8.713,4.372,6.292,7.762,15.539,0.154,13.786,12.522,2.071,-1.915,-6.182,-8.132,3.18,10.526,5.849,5.465,6.484,7.768,6.266,0.149,-6.588,3.661,8.109,-3.469,-4.601,2.108],[18.921,22.281,14.154,34.4,24.648,14.228,27.826,27.795,25.984,12.705,23.439,20.432,23.874,20.394,22.412,23.985,18.121,17.218,10.482,11.479,10.867,18.331,12.922,0.476,10.822,17.65,15.239,4.816,20.127,19.826,7.571,1.343,9.244,5.764,9.054,14.323,8.037,12.697,0.456,4.516,10.466,11.558,1.073,6.303,11.514,15.3,-1.583,16.239,0.234,6.722,9.552,6.927,5.035,6.235,9.037,3.097,-4.725,3.754,-8.032,1.305,5.408,15.515,11.303,-3.697,22.42,12.703,25.694,32.602,24.9,18.711,22.694,27.045,18.286,34.515,27.182,23.178,20.375,29.085,21.657,19.627,13.881,20.767,13.161,25.53,13.118,25.777,12.918,19.711,26.681,11.88,24.749,20.639,21.752,22.383,10.093,-0.706,23.997,16.58,12.757,10.296,12.537,16.427,10.369,18.816,11.526,17.318,19.328,23.422,16.253,-0.685,18.469,11.469,12.327,18.63,5.621,18.226,12.012,6.637,4.51,9.41,16.509,18.726,17.262,15.478,20.128,12.689,10.293,1.039,7.367,9.596,9.068,4.217,1.411,5.395,11.096,1.279,7.15,14.963,8.041,0.675,13.347,12.928,7.861,1.971,13.863,11.334,-1.505,6.749,15.24,9.212,5.108,3.196,14.766,-0.755,1.742,12.054,6.124,-1.008,16.866,16.218,9.747,-0.525,5.427,8.336,9.542,3.879,8.768,4.852,6.046,8.073,15.781,0.234,13.666,12.349,2.744,-1.812,-6.21,-8.822,3.453,10.459,5.525,6.08,6.543,8.072,6.626,0.375,-6.679,3.576,7.758,-3.697,-4.031,2.37],[18.976,22.141,14.306,34.34,24.776,14.327,27.94,27.936,26.009,12.645,23.293,20.089,23.995,20.435,22.387,23.809,18.194,17.04,10.302,11.636,10.839,18.461,13.001,0.201,10.876,17.342,15.236,5.013,20.174,20.04,7.674,1.381,9.312,5.795,9.159,14.437,8.177,12.553,0.608,4.217,10.417,11.654,0.987,6.665,11.305,15.092,-1.723,16.212,0.065,6.639,9.741,6.925,5.045,6.281,8.907,3.189,-4.613,3.837,-7.927,1.382,5.297,15.631,11.361,-3.673,22.472,13.831,25.899,32.61,25.327,19.048,22.613,27.817,18.111,34.503,26.681,23.534,20.312,29.218,21.445,19.661,13.744,20.788,13.179,24.985,13.057,25.995,12.772,20.23,26.929,11.532,24.036,20.047,21.777,22.817,10.771,-0.198,23.608,16.724,12.398,10.153,12.41,15.875,11.02,18.4,11.462,18.135,19.586,22.915,15.774,-1.124,18.618,11.22,11.61,18.72,5.179,17.965,11.779,6.975,4.916,9.442,16.403,18.878,16.729,15.761,20.658,12.569,10.266,0.908,7.525,9.631,9.185,4.227,1.088,5.335,11.139,0.621,7.62,14.745,8.194,0.458,13.446,12.617,8.411,2.301,13.696,11.241,-1.445,6.48,15.076,9.15,5.55,3.121,14.542,-0.399,1.521,11.568,5.578,-0.64,16.287,16.039,9.566,-0.822,5.923,8.316,9.4,4.305,8.687,5.062,5.88,7.889,15.481,0.262,13.901,12.394,2.589,-1.852,-6.268,-9.29,3.206,10.298,5.565,6.567,6.54,8.306,6.255,0.221,-6.414,3.453,7.835,-4.069,-4.303,2.291],[18.884,22.016,14.171,34.202,24.88,14.227,28.012,27.997,26.008,12.569,23.355,19.853,23.958,20.391,22.565,23.663,18.263,16.837,10.465,11.704,10.723,18.576,13.028,-0.095,10.894,17.015,15.283,5.245,20.132,20.292,7.773,1.444,9.26,5.86,9.244,14.594,8.228,12.352,0.872,3.956,10.494,11.91,0.867,6.926,10.99,14.834,-1.685,16.079,-0.088,6.68,9.824,6.89,5.093,6.359,8.851,3.346,-4.436,3.67,-7.981,1.245,5.146,15.601,11.46,-3.657,21.934,13.738,25.812,32.411,25.131,19.13,22.546,27.897,18.87,34.363,27.251,23.705,20.22,29.128,21.602,18.915,13.396,20.901,13.451,25.2,13.171,25.842,12.925,20.264,27.136,11.871,23.754,20.268,21.937,23.073,10.218,-0.341,23.469,16.776,13.02,10.914,12.444,15.564,10.701,18.512,11.898,18.633,19.636,22.877,15.389,-1.506,18.922,11.419,12.124,18.4,5.435,17.921,12.077,6.943,4.505,9.822,16.726,18.606,16.598,15.928,21.193,12.786,9.938,1.184,7.35,9.696,9.309,4.545,0.647,5.083,10.984,0.541,8.431,14.913,8.19,0.509,13.424,12.561,8.435,2.488,13.683,11.405,-1.678,6.471,14.94,9.089,5.529,2.991,14.597,-0.72,1.543,11.95,5.515,-0.816,16.434,16.127,9.942,-1.162,5.882,8.32,9.582,4.459,8.332,5.334,5.899,7.477,15.507,0.873,13.971,12.476,2.267,-1.875,-6.321,-8.891,3.489,10.009,5.507,6.867,6.728,8.141,6.181,0.265,-6.123,3.306,7.937,-3.788,-4.073,2.462],[18.653,21.757,14.127,34.132,24.852,14.089,27.989,28.052,26.027,12.577,23.595,19.972,23.814,20.367,22.883,23.586,18.311,16.602,10.778,11.811,10.772,18.641,13.103,-0.4,10.958,16.857,15.415,5.387,20.011,20.449,7.748,1.528,9.297,5.889,9.17,14.747,8.336,12.223,0.994,3.747,10.685,12.005,0.768,6.949,10.852,14.713,-1.684,15.976,-0.019,6.871,9.894,6.801,5.176,6.4,8.738,3.407,-4.338,3.477,-8.143,1.158,5.043,15.517,11.587,-3.526,21.606,12.717,25.685,32.375,25.033,19.027,22.421,27.411,19.031,34.372,27.705,23.773,19.911,29.195,21.729,19.229,13.58,21.219,13.379,25.631,13.059,25.922,12.83,19.812,26.89,11.944,23.788,20.346,21.93,22.648,10.347,-0.754,23.445,16.856,12.699,10.829,12.544,15.613,10.587,18.816,11.758,18.099,19.527,23.272,15.633,-1.588,19.159,11.881,12.493,18.336,5.798,17.966,12.004,6.771,4.884,9.824,16.657,18.427,16.62,15.794,21.32,13.003,9.463,1.738,7.597,9.77,8.881,4.566,0.031,5.098,10.524,1.486,8.412,15.394,7.855,0.43,13.477,12.233,8.325,2.65,13.606,11.682,-1.851,6.493,14.581,9.423,4.763,2.684,14.59,-0.869,1.135,11.854,6.088,-0.556,16.383,16.537,10.019,-0.819,5.628,8.422,10.025,4.298,8.493,5.144,5.851,7.527,15.66,0.18,13.697,12.712,2.898,-1.705,-6.478,-8.91,3.086,10.644,5.512,7.005,6.996,8.127,5.973,0.16,-6.224,3.258,7.822,-3.167,-4.247,2.523],[18.524,21.426,14.17,34.103,24.907,14.089,27.959,28.078,26.101,12.339,23.809,20.191,23.509,20.438,23.034,23.514,18.39,16.549,11.07,11.903,11.02,18.613,13.185,-0.679,11.119,16.892,15.5,5.464,19.923,20.455,7.699,1.559,9.369,5.92,9.02,14.939,8.393,12.137,1.066,3.581,10.874,11.969,0.796,6.936,10.72,14.584,-1.698,16.047,0.011,6.933,10.086,6.705,5.241,6.36,8.68,3.366,-4.506,3.253,-8.207,1.082,5.0,15.453,11.984,-3.194,21.626,13.292,25.636,32.297,25.353,18.885,22.698,27.56,18.431,34.304,27.338,23.736,19.682,28.967,22.027,19.312,13.621,21.598,12.846,25.409,13.211,25.228,12.421,19.987,26.579,12.136,24.114,20.487,21.585,22.824,11.198,-0.959,23.797,16.942,12.451,10.324,12.468,15.543,10.757,18.697,11.565,17.584,19.388,22.933,15.995,-1.767,19.143,11.915,11.662,18.403,5.993,17.686,12.114,6.669,5.164,9.673,16.786,18.519,16.293,15.688,20.853,13.339,9.939,1.841,7.492,9.544,8.871,4.337,0.391,5.562,10.661,1.561,8.019,15.491,7.741,0.245,13.128,12.148,8.638,2.623,13.462,11.828,-1.682,6.667,14.514,9.736,4.845,2.449,14.57,-0.579,1.169,10.986,6.29,-0.552,16.297,15.456,9.704,-0.787,5.876,8.874,9.805,4.306,8.557,4.733,5.849,7.72,15.548,-0.213,13.614,12.682,2.934,-1.515,-6.435,-9.264,3.105,10.222,6.314,7.018,6.917,8.667,6.141,-0.074,-6.497,3.103,7.44,-3.176,-3.947,1.722],[18.482,21.286,14.13,34.0,24.944,14.182,27.944,28.086,26.243,12.146,23.954,20.324,23.194,20.445,22.943,23.465,18.468,16.588,11.257,11.759,11.287,18.458,13.264,-0.894,11.247,16.904,15.601,5.561,19.859,20.328,7.736,1.586,9.363,6.019,8.835,15.316,8.295,12.132,1.024,3.489,10.83,11.836,0.923,6.859,10.365,14.508,-1.688,16.064,0.001,7.049,10.289,6.746,5.284,6.247,8.613,3.278,-4.782,2.967,-8.132,0.924,5.038,15.41,12.195,-2.997,20.964,13.693,25.898,32.214,25.545,18.801,22.149,27.716,17.954,34.379,26.96,23.783,19.661,28.951,22.305,19.0,13.514,21.276,13.098,25.327,13.112,25.978,13.019,20.177,26.581,11.411,24.371,20.839,21.822,23.514,11.481,-0.868,23.415,16.947,12.907,10.919,12.708,15.634,11.542,18.878,11.494,17.654,19.363,22.238,15.739,-2.14,18.666,11.522,12.622,18.21,5.703,17.488,12.034,6.588,5.083,9.989,16.772,18.357,16.65,15.708,20.361,13.525,10.398,2.289,7.481,9.429,8.894,4.292,0.638,5.966,10.836,1.047,8.165,15.388,7.967,0.203,13.571,11.998,8.521,2.785,13.717,11.507,-1.487,6.784,14.563,9.717,4.811,2.437,14.807,-0.366,1.613,11.14,6.714,-0.595,15.959,15.564,9.991,-1.106,6.056,8.834,9.564,4.123,8.583,4.312,5.547,7.431,15.6,0.062,13.643,13.267,2.225,-1.186,-6.449,-9.419,3.541,10.539,6.576,7.219,6.919,9.345,6.045,0.156,-6.666,3.126,7.695,-3.033,-3.958,1.511],[18.459,21.231,13.903,33.882,25.18,14.426,27.917,28.083,26.353,12.041,23.989,20.333,22.895,20.482,22.759,23.41,18.472,16.736,11.458,11.692,11.538,18.293,13.279,-1.025,11.33,16.895,15.653,5.592,19.692,20.142,7.825,1.663,9.349,6.145,8.684,15.713,8.249,12.23,0.817,3.659,10.581,11.704,0.97,6.754,10.107,14.507,-1.752,16.094,0.005,7.218,10.469,6.831,5.308,6.231,8.54,3.113,-4.855,2.773,-8.004,0.741,5.049,15.463,12.56,-2.965,21.077,13.297,26.203,32.055,25.925,18.801,21.717,27.524,17.893,34.313,26.894,24.206,19.444,29.422,22.119,18.981,13.473,20.931,13.406,25.356,13.008,25.957,13.345,20.283,27.231,11.401,24.089,20.374,22.019,22.971,11.151,-1.076,23.084,17.185,12.971,11.428,13.26,15.929,11.864,19.151,11.355,18.096,19.048,22.716,15.178,-2.083,18.635,11.656,12.594,18.301,5.596,17.382,12.038,6.903,5.333,10.33,16.936,18.203,16.526,16.287,20.365,14.124,10.131,2.491,7.515,9.423,8.572,4.456,0.683,5.826,10.721,1.024,8.078,15.616,7.818,0.438,13.526,11.351,8.53,2.664,13.744,11.355,-1.187,6.404,14.632,9.056,4.825,2.682,14.478,-0.489,1.694,11.197,7.061,-0.669,16.019,16.342,10.15,-1.421,5.586,8.767,10.012,4.402,8.599,4.286,5.428,7.309,15.718,0.303,13.702,13.138,2.361,-1.13,-6.335,-9.108,2.748,10.732,6.196,7.255,6.747,9.765,6.501,-0.067,-6.609,3.265,7.651,-2.999,-4.812,1.366],[18.451,21.211,13.718,33.872,25.463,14.694,27.942,27.993,26.438,11.932,23.911,20.158,22.646,20.49,22.495,23.421,18.462,17.063,11.625,11.744,11.732,18.194,13.233,-1.042,11.482,16.801,15.792,5.54,19.433,20.117,7.863,1.815,9.378,6.118,8.641,15.999,8.015,12.378,0.707,4.024,10.37,11.504,0.901,6.812,10.037,14.578,-1.897,16.125,0.095,7.199,10.761,6.968,5.328,6.162,8.507,2.891,-4.879,2.586,-7.915,0.673,5.053,15.443,12.695,-3.092,21.428,13.058,26.104,32.086,26.048,18.935,21.76,27.452,18.462,33.596,27.196,24.875,19.47,29.222,22.209,19.293,13.981,21.172,12.645,25.703,12.715,26.042,13.107,20.28,27.269,11.716,23.603,20.708,21.905,22.121,10.649,-1.027,23.338,17.032,12.99,10.925,13.398,15.608,11.969,19.028,11.578,18.132,18.726,23.041,15.582,-2.176,18.582,12.374,11.92,18.615,6.026,17.83,12.115,7.046,5.174,10.64,17.201,18.26,16.137,16.168,20.358,14.862,9.944,2.037,7.532,9.443,9.04,4.749,0.495,5.751,10.577,1.024,7.916,15.837,7.736,0.615,13.307,11.015,8.429,2.288,13.556,11.367,-1.404,6.324,15.071,9.073,5.103,2.853,14.771,-0.69,1.59,11.056,6.799,-0.906,15.958,15.942,9.772,-1.08,5.39,8.963,10.156,4.612,8.575,4.315,5.739,7.442,15.732,-0.292,13.497,13.32,2.296,-1.495,-6.069,-8.701,2.6,10.747,6.528,7.547,6.726,9.548,6.29,-0.423,-6.774,3.215,7.355,-3.047,-4.537,1.399],[18.587,21.261,13.591,33.847,25.648,14.857,27.934,27.714,26.433,11.87,23.944,20.204,22.393,20.534,22.284,23.556,18.418,17.168,11.714,11.877,11.829,18.179,13.228,-0.877,11.615,16.754,16.036,5.432,19.218,20.279,7.843,1.877,9.41,6.052,8.604,16.111,7.813,12.447,0.723,4.459,10.343,11.311,0.827,6.814,10.069,14.72,-1.951,16.162,0.086,7.086,10.915,7.1,5.424,6.042,8.386,2.76,-4.99,2.479,-7.9,0.632,5.083,15.215,12.587,-3.29,21.181,12.915,26.392,32.207,25.612,18.929,21.629,27.531,18.691,33.537,26.997,24.815,19.698,28.887,22.066,19.425,14.556,20.788,12.577,25.623,12.9,26.508,13.402,19.893,26.667,11.284,22.751,20.209,21.82,22.544,10.8,-1.066,23.849,17.066,12.845,11.497,13.333,15.948,11.893,18.845,11.291,17.971,18.597,22.556,15.859,-2.578,18.694,11.82,12.335,18.614,6.01,18.198,11.964,7.219,5.33,10.658,17.061,17.962,15.901,16.018,20.691,15.382,10.046,1.919,7.58,9.48,8.984,4.759,0.452,5.831,10.809,0.956,7.915,16.322,8.063,0.414,12.475,11.54,8.562,2.368,13.613,11.975,-1.589,5.972,15.371,9.277,5.36,3.201,14.554,-0.702,1.636,10.89,6.667,-1.128,15.978,16.281,9.303,-0.669,5.645,8.882,10.746,4.708,8.838,4.156,5.731,7.633,15.595,-0.26,13.422,13.601,1.578,-1.496,-5.946,-8.742,2.556,11.029,6.485,7.6,6.961,9.387,6.22,-0.557,-6.954,3.105,7.481,-3.253,-4.117,1.255],[18.828,21.278,13.608,33.779,25.704,15.048,27.749,27.478,26.396,11.802,24.01,20.284,22.153,20.5,22.13,23.71,18.309,17.007,11.747,11.94,11.879,18.204,13.259,-0.716,11.67,16.658,16.299,5.393,19.099,20.535,7.799,1.824,9.265,6.079,8.643,16.295,7.775,12.337,0.727,4.877,10.378,11.21,0.71,6.889,10.251,14.892,-1.945,16.263,-0.059,6.976,10.962,7.11,5.592,6.03,8.167,2.621,-5.066,2.426,-8.057,0.506,5.196,14.98,12.57,-3.354,20.991,12.817,26.627,32.017,25.315,19.012,21.519,27.304,18.369,34.071,27.19,24.264,19.564,28.749,22.224,19.448,14.474,20.691,13.389,25.671,12.841,26.565,13.606,19.759,26.438,11.369,21.667,20.983,22.225,22.768,11.268,-1.203,23.68,17.092,13.048,11.807,13.152,16.384,11.488,18.775,11.824,18.011,18.685,22.914,16.033,-2.255,19.073,12.062,13.087,18.909,5.801,18.077,12.22,7.158,5.182,10.382,16.91,17.576,15.927,16.081,20.81,14.859,9.857,1.83,7.486,9.496,8.68,4.346,1.056,5.916,11.059,1.079,7.493,16.262,7.615,0.426,12.736,11.928,8.478,2.54,13.88,11.982,-1.402,6.071,15.186,9.328,5.656,4.052,14.755,-0.341,1.5,10.819,6.232,-0.669,16.348,16.269,9.399,-0.773,5.552,8.629,11.307,4.525,8.916,3.956,5.388,7.405,15.248,-0.311,13.23,13.114,2.014,-1.586,-6.16,-8.752,2.293,10.826,6.141,7.448,7.138,9.303,6.494,-0.294,-7.12,3.304,7.584,-3.602,-4.513,0.961],[19.115,21.319,13.773,33.887,25.693,15.1,27.654,27.404,26.419,11.77,24.054,20.421,21.941,20.635,21.948,23.823,18.164,16.877,11.795,12.161,11.83,18.309,13.396,-0.653,11.698,16.592,16.374,5.401,19.085,20.654,7.685,1.621,9.035,6.11,8.719,16.318,7.858,12.243,0.829,5.182,10.444,11.356,0.809,6.892,10.541,15.042,-1.757,16.423,-0.277,6.885,11.04,7.006,5.67,6.119,7.89,2.491,-5.149,2.316,-8.276,0.447,5.32,14.757,12.484,-3.334,20.952,12.957,25.985,32.076,25.651,18.913,21.131,26.854,18.207,33.848,26.775,23.981,19.575,28.583,22.197,19.254,14.094,20.652,12.727,25.941,12.799,26.594,13.83,20.159,26.234,11.61,20.833,20.669,21.975,22.588,10.991,-1.299,23.02,16.997,13.065,11.118,13.109,15.626,11.508,19.036,11.67,18.532,18.891,23.289,15.584,-1.754,19.186,12.161,12.898,18.636,6.034,17.856,12.306,6.961,4.62,10.132,17.387,17.487,15.867,16.365,21.228,14.546,9.57,2.126,7.207,9.476,8.804,4.421,1.964,6.079,11.064,0.767,7.398,16.582,7.323,0.348,13.154,12.055,8.59,2.514,14.052,11.377,-1.706,6.29,15.251,9.103,5.979,4.879,14.955,-0.672,1.305,10.524,6.127,-0.635,16.571,16.043,9.867,-1.123,5.343,8.738,11.288,4.651,8.832,4.009,6.061,7.032,15.087,-0.936,12.991,12.892,2.077,-1.541,-6.499,-8.882,2.547,11.051,6.338,6.844,7.199,9.316,6.69,-0.526,-6.94,3.567,7.549,-3.688,-4.862,1.037],[19.234,21.321,13.621,33.961,25.594,14.918,27.452,27.372,26.436,11.826,24.082,20.549,21.61,20.702,21.803,23.825,18.211,16.733,11.866,12.34,11.667,18.551,13.456,-0.715,11.567,16.52,16.332,5.479,19.171,20.712,7.558,1.749,8.852,6.159,8.763,16.238,8.026,12.188,0.86,5.4,10.471,11.586,0.928,6.808,10.638,15.167,-1.605,16.597,-0.621,7.049,11.088,6.915,5.646,6.217,7.714,2.465,-5.102,2.235,-8.472,0.252,5.607,14.633,12.352,-3.263,21.599,13.247,25.803,32.388,26.041,19.161,21.242,26.767,18.754,33.784,26.614,24.232,19.82,28.627,22.306,20.013,14.556,20.501,13.006,25.25,13.062,26.348,13.595,20.231,26.077,11.023,20.212,20.657,21.866,21.958,10.681,-0.935,23.446,16.947,12.705,11.176,13.147,15.587,11.604,18.965,11.756,18.756,18.427,23.487,15.671,-1.714,18.865,11.944,12.205,17.889,5.92,17.973,12.214,6.719,4.715,10.313,17.139,18.009,15.708,16.944,21.658,14.577,9.725,2.193,7.137,9.525,8.7,4.746,1.3,5.925,10.804,1.089,7.988,16.262,7.483,0.584,12.97,12.446,8.724,2.45,13.428,11.356,-2.177,6.381,15.628,9.146,5.973,5.65,14.981,-0.35,0.98,11.016,6.652,-0.652,16.58,16.457,9.669,-0.932,4.758,8.938,10.667,4.767,8.684,4.054,6.51,7.101,15.012,-0.874,12.975,12.612,1.231,-1.64,-6.635,-9.342,2.143,10.654,6.612,6.104,7.252,9.606,6.351,-0.606,-6.844,3.73,7.529,-2.703,-4.68,1.26],[19.369,21.465,13.458,34.077,25.311,14.77,27.25,27.245,26.411,11.822,24.311,20.596,21.246,20.697,21.645,23.88,18.35,16.798,11.927,12.351,11.594,18.709,13.237,-0.853,11.337,16.476,16.28,5.575,19.284,20.954,7.505,2.073,8.786,6.182,8.72,16.126,8.159,11.937,0.844,5.607,10.316,11.677,1.108,6.846,10.739,15.357,-1.581,16.61,-0.758,7.405,11.067,6.779,5.619,6.2,7.679,2.315,-4.966,2.205,-8.606,0.02,5.815,14.635,12.012,-3.1,21.504,13.463,26.578,32.224,25.625,19.258,21.259,27.047,18.756,34.29,26.806,24.999,19.532,28.633,22.518,19.78,14.603,20.367,13.247,25.325,12.424,26.06,13.155,20.17,25.83,11.43,19.778,21.14,22.35,22.079,10.992,-1.185,23.752,17.018,12.845,11.493,13.251,15.655,11.923,18.717,12.105,18.607,17.738,23.32,15.906,-2.49,19.237,12.324,12.45,18.092,5.625,18.608,12.252,6.864,5.185,10.335,16.732,18.403,15.839,17.311,21.587,14.663,9.694,2.342,7.0,9.623,8.742,4.834,1.13,6.07,10.312,1.435,8.115,15.947,7.798,0.418,13.216,12.198,8.658,2.467,13.33,11.9,-2.33,6.417,15.673,9.328,6.184,6.249,15.108,-0.217,0.48,11.233,6.588,-0.483,16.625,16.367,9.189,-0.744,4.529,8.996,9.997,4.568,8.549,3.759,6.085,7.186,14.917,-0.942,12.978,13.027,1.47,-1.276,-6.807,-9.43,2.029,10.5,6.647,5.863,6.986,10.138,6.383,-0.926,-6.842,3.942,7.187,-2.961,-4.429,1.017],[19.44,21.468,13.343,34.238,25.045,14.743,27.098,27.068,26.385,11.876,24.656,20.625,20.934,20.737,21.677,23.965,18.294,16.965,12.024,12.363,11.762,18.672,13.082,-1.073,11.176,16.472,16.219,5.707,19.178,21.246,7.537,2.405,8.701,6.155,8.774,16.015,8.058,11.723,0.954,5.878,10.138,11.727,1.31,6.809,10.821,15.45,-1.579,16.507,-0.736,7.681,11.008,6.709,5.545,6.14,7.623,2.198,-4.975,2.162,-8.58,-0.135,5.811,14.653,11.929,-2.991,21.442,13.463,26.905,32.471,25.134,19.243,20.786,27.202,18.875,34.669,26.775,25.602,19.62,28.281,22.742,20.156,13.952,20.273,12.696,25.804,12.508,26.065,13.441,20.122,25.673,11.962,19.483,20.836,22.236,22.613,11.256,-1.247,23.55,16.987,12.655,10.539,13.075,15.665,11.776,19.254,12.058,18.698,18.127,22.913,16.23,-2.832,19.85,12.164,12.234,18.703,5.712,19.152,11.794,7.192,4.585,10.243,16.863,18.755,15.867,17.011,21.998,14.641,9.532,2.479,6.948,9.365,8.738,4.712,1.294,6.418,10.146,0.973,7.824,15.96,8.074,0.57,13.304,12.202,8.425,2.612,13.062,11.984,-2.244,6.356,15.662,9.191,6.288,6.334,15.124,0.137,0.697,11.315,6.357,-0.607,16.998,16.106,8.966,-0.745,4.929,9.243,10.158,4.507,8.487,3.684,6.316,6.963,14.86,-1.601,12.856,12.897,1.914,-1.045,-6.728,-9.205,2.264,10.163,7.058,5.434,6.933,10.485,6.781,-1.011,-6.796,4.065,6.599,-3.701,-4.099,0.686],[19.66,21.409,13.339,34.375,25.153,14.772,27.002,26.983,26.339,11.98,24.827,20.59,20.575,20.724,22.008,23.973,18.204,17.067,12.003,12.331,11.953,18.699,12.99,-1.295,10.963,16.504,16.088,5.684,19.148,21.58,7.517,2.492,8.607,6.197,8.863,15.972,7.723,11.659,1.055,6.005,10.077,11.633,1.469,6.681,10.931,15.452,-1.594,16.441,-0.608,7.854,11.011,6.811,5.544,6.121,7.435,2.311,-5.085,2.165,-8.297,-0.31,5.813,14.62,11.978,-3.174,21.729,13.514,26.912,32.649,25.982,19.094,20.431,26.769,18.736,34.715,26.528,25.339,19.619,28.257,23.001,20.032,14.078,20.343,12.442,25.228,12.392,26.336,13.869,19.942,25.435,11.701,19.489,20.611,21.916,22.255,11.473,-1.279,23.378,17.109,12.586,9.764,13.291,16.191,11.383,19.129,11.962,18.887,18.648,23.096,15.961,-2.226,19.927,11.443,11.831,18.653,5.678,18.926,11.815,7.11,4.661,10.39,17.213,17.953,15.966,16.127,22.282,14.329,9.514,3.292,6.861,9.368,9.076,4.815,1.527,6.138,10.267,1.214,7.469,15.805,8.533,0.904,13.029,12.808,8.35,2.765,13.116,11.795,-2.04,6.046,15.452,8.731,6.707,6.417,14.939,0.933,0.958,11.036,6.473,-0.439,16.919,15.977,9.378,-0.788,5.12,9.497,10.41,4.63,8.625,3.601,6.638,6.754,14.79,-1.82,12.922,12.434,1.264,-1.247,-6.487,-8.985,2.041,10.027,7.269,4.607,6.777,10.199,6.306,-0.441,-6.752,4.085,7.154,-3.535,-4.269,0.717],[19.975,21.441,13.429,34.429,25.374,14.964,26.91,27.008,26.371,12.099,24.939,20.414,20.187,20.526,22.306,23.852,18.15,17.093,11.857,12.204,12.018,18.78,12.848,-1.345,10.673,16.556,15.915,5.426,19.19,21.826,7.38,2.489,8.563,6.29,9.0,15.872,7.317,11.653,1.148,6.033,10.126,11.452,1.761,6.616,11.171,15.298,-1.52,16.402,-0.374,8.046,11.02,6.84,5.645,6.002,7.434,2.445,-5.267,2.12,-7.941,-0.386,5.785,14.574,11.9,-3.36,21.601,13.705,26.069,32.66,26.306,18.938,20.486,26.299,18.796,34.492,26.407,24.566,19.616,28.578,23.124,20.234,14.303,20.939,13.328,25.389,12.326,26.544,13.458,19.977,25.476,11.519,19.533,20.856,22.165,22.827,11.247,-1.433,23.479,16.929,12.99,9.912,13.55,16.323,11.635,18.47,12.034,19.345,18.712,23.614,15.502,-2.194,20.224,10.745,12.406,18.427,6.202,18.386,12.424,6.656,5.628,10.522,17.007,17.52,15.932,15.899,22.125,14.343,9.446,3.819,6.771,9.996,8.789,4.815,1.641,6.027,10.203,1.481,7.222,15.872,8.18,0.774,13.322,12.795,8.523,2.873,13.158,11.609,-2.061,5.705,15.615,8.798,6.79,6.19,14.762,0.56,0.902,11.134,6.61,-0.419,16.642,16.206,9.398,-1.009,5.564,9.443,10.305,4.319,8.676,3.89,6.285,6.82,14.661,-1.791,12.877,12.488,1.145,-1.539,-6.117,-8.857,2.259,10.387,7.089,4.378,6.61,9.523,6.3,-1.127,-7.176,3.965,7.311,-3.198,-4.678,1.021],[20.28,21.497,13.587,34.417,25.465,15.082,26.851,27.136,26.245,12.311,24.984,20.3,19.745,20.401,22.528,23.913,18.156,17.037,11.666,12.141,11.854,18.91,12.832,-1.256,10.43,16.593,15.845,5.384,19.168,21.895,7.209,2.506,8.497,6.348,9.187,15.77,7.111,11.523,1.135,5.994,10.276,11.44,1.902,6.724,11.218,15.215,-1.373,16.386,-0.244,8.147,10.835,6.945,5.769,5.9,7.713,2.514,-5.419,2.268,-7.754,-0.53,5.541,14.433,11.804,-3.464,21.506,13.692,25.353,32.821,25.972,18.966,20.673,26.462,19.68,34.457,26.117,24.754,19.616,28.245,23.221,20.281,14.395,20.98,13.291,25.962,12.419,26.834,13.607,19.956,25.625,11.665,19.998,20.475,21.923,23.156,10.663,-1.369,23.696,16.766,12.451,10.535,13.303,16.134,11.543,18.414,11.766,18.975,18.767,22.725,15.732,-2.519,20.367,10.755,12.947,18.731,5.986,17.985,12.322,6.297,5.439,10.309,16.78,17.97,16.034,16.262,22.82,14.319,9.335,3.786,6.683,9.786,8.446,4.622,1.804,6.472,10.014,1.485,7.083,16.052,8.058,1.04,13.024,12.707,8.467,2.679,13.073,11.412,-1.544,5.363,15.381,9.443,6.883,6.138,14.902,0.786,1.21,11.821,6.107,-0.601,16.727,16.309,9.135,-1.409,5.514,9.51,10.597,4.505,8.595,4.123,6.122,7.346,14.725,-1.751,12.87,12.728,1.709,-1.96,-5.837,-8.522,2.107,10.178,7.487,4.365,6.675,9.179,6.474,-1.22,-7.32,3.627,6.662,-2.955,-5.275,1.264],[20.495,21.498,13.52,34.363,25.361,14.976,26.73,27.195,25.984,12.459,25.08,20.376,19.51,20.381,22.604,23.897,18.261,17.012,11.453,12.207,11.457,18.885,12.87,-1.018,10.356,16.618,15.875,5.488,19.197,21.96,7.119,2.494,8.386,6.463,9.187,15.712,7.209,11.45,0.91,6.035,10.523,11.425,1.976,6.749,11.052,15.285,-1.461,16.386,0.01,8.28,10.64,7.114,5.851,5.756,7.975,2.382,-5.304,2.657,-7.894,-0.586,5.153,14.355,11.853,-3.578,21.898,13.605,25.8,32.792,25.59,18.736,19.932,26.948,19.833,34.308,26.214,25.25,19.684,28.415,23.583,20.267,14.126,20.8,12.872,25.6,12.071,26.919,13.763,20.023,25.458,11.959,20.451,20.593,21.595,22.719,11.388,-1.217,24.185,17.227,12.879,10.73,12.777,15.943,11.077,18.736,11.466,19.275,18.371,22.83,15.89,-2.387,20.518,11.15,12.729,18.494,5.617,18.0,12.381,7.055,4.727,9.882,16.899,17.64,16.326,16.094,23.252,14.14,9.382,3.402,6.556,9.549,8.456,4.819,1.595,6.484,9.823,1.411,7.539,15.834,8.141,1.19,12.925,12.405,8.696,2.511,12.633,11.757,-1.511,5.443,15.342,9.541,6.794,6.236,14.981,1.133,1.576,11.634,6.261,-0.295,16.774,16.209,9.315,-0.699,4.96,9.787,10.549,4.821,8.828,4.171,5.858,7.55,14.675,-2.011,12.775,12.746,1.56,-1.935,-6.029,-8.554,1.878,10.478,7.617,4.358,6.696,9.069,6.387,-1.047,-7.128,3.348,7.053,-2.83,-4.843,1.163],[20.609,21.508,13.215,34.232,25.216,14.846,26.565,27.252,25.755,12.485,25.279,20.497,19.378,20.258,22.554,23.825,18.419,17.019,11.358,12.388,11.036,18.876,12.98,-0.676,10.447,16.731,15.83,5.457,19.055,22.079,7.34,2.449,8.308,6.639,9.092,15.571,7.502,11.415,0.769,6.093,10.681,11.402,2.06,6.81,10.902,15.298,-1.654,16.345,0.34,8.328,10.458,7.21,5.846,5.551,8.096,2.156,-5.007,2.868,-8.183,-0.566,5.03,14.437,12.103,-3.567,22.28,13.597,26.259,32.391,25.549,18.425,19.671,26.944,19.594,34.044,26.293,25.015,19.659,28.586,23.549,20.96,13.905,21.045,13.051,25.75,12.024,26.421,13.674,20.238,25.054,12.72,20.747,20.649,21.77,22.693,11.823,-0.956,23.723,17.007,13.166,10.048,12.424,15.984,10.98,18.736,12.023,19.228,18.503,23.276,15.931,-2.28,20.935,11.308,12.047,18.755,6.175,18.255,12.477,6.468,4.629,9.498,16.721,17.775,15.635,15.942,23.201,13.91,9.225,2.709,6.529,9.531,8.647,5.329,1.417,6.197,9.803,0.857,7.619,15.797,8.406,1.623,13.255,12.439,8.601,2.589,12.9,11.573,-1.453,5.689,15.576,9.276,6.771,6.505,14.884,0.729,1.488,10.926,6.41,-0.606,16.871,16.158,9.8,-0.64,4.928,9.945,10.224,4.531,9.081,4.529,5.397,7.296,14.702,-2.253,12.856,12.688,0.796,-1.833,-6.355,-9.274,2.344,10.8,7.621,4.748,6.849,9.037,6.619,-0.956,-6.843,3.188,7.635,-3.292,-4.073,1.559],[20.754,21.672,13.08,33.975,25.101,14.896,26.437,27.333,25.702,12.581,25.262,20.613,19.344,20.168,22.592,23.69,18.447,17.074,11.383,12.691,10.684,18.895,13.145,-0.489,10.566,16.722,15.589,5.398,18.933,22.112,7.439,2.476,8.303,6.728,9.002,15.243,7.699,11.534,0.739,6.103,10.695,11.361,2.008,6.788,10.909,15.302,-1.902,16.296,0.633,8.31,10.294,7.322,5.787,5.486,8.116,1.999,-4.679,3.029,-8.527,-0.697,5.026,14.681,12.438,-3.494,21.905,13.703,25.402,32.291,25.497,18.608,19.699,26.748,19.6,34.448,26.201,24.802,19.732,28.822,23.894,20.681,14.128,21.106,12.651,25.645,12.241,26.328,13.344,20.165,24.916,12.811,20.572,20.503,21.625,22.914,10.999,-0.41,23.925,17.055,12.841,9.57,12.184,16.084,11.679,18.897,12.097,18.884,18.97,22.343,15.98,-1.976,21.344,11.123,12.369,18.999,6.06,18.612,11.905,6.422,4.71,9.371,16.96,17.487,16.031,15.549,23.512,14.155,9.114,2.111,6.45,9.386,8.722,5.518,1.557,6.993,10.181,1.21,7.282,15.733,8.604,2.024,12.953,12.494,8.5,2.327,13.262,11.117,-1.076,6.156,15.451,9.536,6.922,6.41,14.829,0.689,1.495,10.692,6.37,-0.725,16.555,16.504,9.716,-1.142,4.681,9.745,9.77,4.46,9.169,4.729,5.933,7.538,14.482,-2.23,12.965,12.727,1.026,-1.637,-6.745,-9.449,2.36,10.7,7.259,5.234,6.691,8.694,6.553,-1.11,-6.548,3.186,7.427,-3.727,-4.364,2.133],[20.829,21.681,13.187,33.84,24.946,15.072,26.408,27.472,25.612,12.611,25.117,20.588,19.482,20.108,22.753,23.554,18.509,17.068,11.401,12.887,10.488,18.872,13.237,-0.452,10.513,16.786,15.273,5.246,18.9,22.227,7.41,2.515,8.243,6.905,8.868,15.032,7.623,11.827,0.767,5.992,10.712,11.13,2.018,6.644,10.977,15.226,-1.957,16.369,0.832,8.306,10.06,7.453,5.723,5.466,8.159,1.939,-4.493,3.228,-8.853,-0.802,5.073,14.875,12.567,-3.412,21.571,13.53,25.024,32.078,25.648,18.557,19.325,26.849,20.188,33.979,25.711,25.041,19.726,28.526,23.817,20.269,14.595,21.043,12.531,25.431,12.278,26.585,13.659,20.692,25.025,12.305,19.817,20.679,21.411,23.13,10.559,-0.502,23.998,17.28,12.967,10.181,12.21,15.899,11.988,18.985,12.334,18.958,19.142,22.308,15.71,-1.81,20.994,10.831,13.335,18.667,5.616,19.091,11.954,7.203,4.61,9.319,16.616,17.465,16.482,15.349,23.632,13.958,9.143,2.462,6.438,9.824,8.878,5.278,1.874,7.24,10.54,1.647,7.355,14.825,8.506,1.56,12.817,12.517,8.41,2.077,13.23,11.217,-0.789,6.214,15.236,9.814,6.924,5.928,14.884,0.875,2.106,11.403,6.632,-0.811,16.751,16.577,9.39,-1.234,4.809,9.675,9.805,4.326,9.239,4.731,5.982,7.474,14.703,-2.133,13.416,13.149,0.814,-1.595,-7.039,-9.376,2.341,10.888,7.192,5.509,6.374,8.476,6.823,-1.176,-6.282,3.385,6.988,-4.398,-4.505,1.84],[20.835,21.561,13.447,33.682,24.884,15.332,26.374,27.648,25.394,12.425,24.919,20.544,19.526,20.03,22.876,23.443,18.677,16.984,11.407,13.055,10.544,18.898,13.316,-0.432,10.346,16.991,14.975,4.963,18.897,22.286,7.59,2.579,8.158,7.081,8.771,14.811,7.535,12.058,0.79,5.842,10.841,10.894,2.118,6.572,11.183,15.069,-1.909,16.437,0.952,8.25,9.868,7.534,5.661,5.434,8.243,1.918,-4.367,3.181,-8.987,-0.674,5.233,15.007,12.531,-3.464,21.911,13.392,25.177,32.036,25.421,18.135,20.027,26.901,20.803,33.65,25.232,25.097,19.623,28.426,24.019,20.39,14.558,21.263,12.808,25.357,12.306,26.286,13.916,21.027,25.286,11.879,18.937,20.25,21.49,23.047,10.622,-0.6,23.608,17.35,13.275,10.513,11.983,15.55,11.527,19.399,12.153,19.07,19.29,23.316,15.601,-2.137,20.936,10.885,13.918,18.456,5.615,19.394,12.157,6.854,4.144,9.196,16.242,18.105,16.381,15.283,23.154,13.425,8.982,3.451,6.326,10.125,8.293,5.273,1.671,6.923,10.506,1.204,7.305,15.407,8.263,1.442,12.453,12.214,8.308,2.42,13.414,11.163,-0.521,5.871,15.304,9.581,6.68,5.393,15.189,0.822,2.318,12.159,6.952,-0.731,16.82,16.584,9.683,-1.236,5.547,9.897,10.2,4.339,9.401,4.416,5.31,7.379,14.928,-2.041,13.406,13.271,0.638,-1.627,-7.222,-9.7,2.445,10.763,7.806,5.613,6.517,8.188,7.103,-1.5,-6.312,3.468,7.115,-4.679,-3.684,1.756],[20.825,21.716,13.757,33.52,24.849,15.455,26.315,27.742,25.169,12.182,24.792,20.538,19.521,19.977,22.922,23.425,18.938,16.969,11.454,13.165,10.594,18.989,13.445,-0.487,10.235,17.012,14.781,4.71,18.931,22.162,7.711,2.654,8.105,7.103,8.736,14.645,7.486,12.177,0.748,5.69,10.874,10.664,2.23,6.606,11.37,14.975,-1.879,16.542,0.988,8.289,9.79,7.519,5.709,5.447,8.403,1.952,-4.215,3.007,-8.987,-0.547,5.316,15.103,12.447,-3.546,22.158,13.306,25.204,32.214,24.612,18.342,19.756,26.833,20.566,33.197,25.067,24.657,19.8,29.37,24.024,20.796,14.454,21.465,13.311,25.301,12.19,26.002,14.109,20.646,25.264,12.167,18.789,20.318,21.117,22.689,10.673,-0.183,23.353,17.404,12.893,10.139,11.884,15.506,11.026,19.441,12.098,19.095,18.929,23.095,15.945,-1.742,20.911,11.212,14.051,18.551,5.687,19.563,12.26,6.875,3.734,9.094,16.293,18.03,16.281,15.386,23.238,12.886,8.743,4.245,6.205,10.26,8.909,5.43,1.845,6.994,10.404,1.041,7.513,15.297,8.283,2.005,12.034,12.545,8.205,2.348,13.389,11.07,-0.686,5.624,15.453,9.758,6.059,4.848,14.949,0.85,2.286,11.739,6.595,-0.767,16.344,16.865,9.717,-0.868,6.15,9.898,9.873,4.307,9.453,4.542,5.345,7.825,14.686,-1.935,13.354,12.621,1.041,-1.773,-7.162,-9.729,2.127,10.712,7.886,5.618,6.667,7.927,6.812,-1.365,-5.973,3.648,7.302,-4.368,-3.391,1.89],[20.825,22.033,14.043,33.5,24.806,15.413,26.154,27.831,24.891,12.085,24.665,20.503,19.468,19.993,22.952,23.369,19.084,17.058,11.427,13.21,10.52,19.149,13.527,-0.281,10.161,17.03,14.737,4.558,18.944,21.935,8.004,2.868,7.974,7.081,8.856,14.423,7.483,12.118,0.565,5.403,10.871,10.465,2.415,6.609,11.382,14.988,-1.847,16.554,0.968,8.302,9.576,7.361,5.885,5.537,8.483,1.99,-4.051,2.893,-8.963,-0.511,5.411,15.026,12.407,-3.57,22.17,13.225,25.2,32.281,24.924,18.197,19.253,27.669,19.91,32.539,25.494,24.556,20.174,29.052,23.606,20.697,14.638,21.471,13.538,25.434,12.498,25.961,14.147,20.366,24.863,11.701,19.253,20.634,21.168,22.716,10.757,-0.199,23.784,18.096,12.903,10.252,12.091,15.881,11.712,19.277,12.367,19.016,18.576,22.263,16.203,-2.03,21.264,11.435,14.312,18.684,5.607,19.564,12.156,7.051,4.024,9.345,16.447,17.602,16.221,15.281,23.599,12.648,8.598,3.964,6.187,9.717,9.264,5.347,2.118,7.164,10.489,1.431,7.628,14.821,8.651,1.949,12.224,13.037,8.352,1.95,13.275,10.83,-0.67,5.731,15.59,9.742,6.463,4.643,15.23,0.847,2.058,11.698,6.175,-0.741,16.253,16.669,9.747,-1.137,5.831,9.885,9.329,4.07,9.148,4.601,6.077,7.935,14.652,-1.933,13.443,12.146,0.933,-1.709,-7.086,-9.025,2.097,10.824,7.507,5.747,6.371,7.906,6.588,-0.738,-5.914,3.625,7.389,-4.308,-3.735,1.735],[20.645,22.274,14.32,33.6,24.789,15.379,26.086,27.952,24.779,11.914,24.647,20.392,19.424,19.974,22.9,23.306,19.102,17.041,11.535,13.363,10.495,19.322,13.608,-0.036,10.105,17.238,14.745,4.493,18.793,21.857,8.343,3.123,7.725,6.921,9.073,14.143,7.568,12.028,0.456,5.18,10.712,10.436,2.429,6.629,11.367,15.321,-1.862,16.461,0.918,8.244,9.325,7.161,5.923,5.639,8.511,2.08,-4.143,2.84,-8.786,-0.57,5.489,14.892,12.463,-3.523,22.238,13.163,24.716,32.289,24.978,18.236,19.481,27.698,20.157,32.959,25.598,24.733,20.444,28.983,22.992,20.265,14.761,21.603,13.787,25.494,13.165,26.028,13.917,20.564,24.875,11.63,19.725,20.384,21.22,23.272,11.081,-0.013,24.07,17.773,13.173,9.924,12.196,16.193,12.118,19.536,12.226,19.323,18.78,22.143,16.243,-1.555,21.423,11.566,14.29,18.713,5.258,19.491,12.225,7.056,3.934,9.5,16.24,17.946,16.642,14.82,23.287,12.531,8.738,3.293,5.833,9.178,9.063,5.489,1.847,6.647,10.446,1.357,7.41,14.581,8.488,1.832,12.074,12.767,8.484,1.727,13.209,10.706,-0.895,5.813,15.043,9.678,6.815,4.272,15.579,0.91,2.066,11.65,6.113,-0.697,16.817,16.535,9.455,-1.07,5.105,9.897,8.815,4.335,8.937,4.551,6.577,7.446,14.544,-1.937,13.338,12.105,1.052,-1.61,-7.133,-8.718,2.474,11.118,7.479,5.933,6.326,8.008,6.465,-0.833,-5.976,3.848,7.343,-4.501,-3.272,1.659],[20.22,22.331,14.563,33.88,24.834,15.251,26.1,28.014,24.752,11.757,24.786,20.288,19.373,19.89,22.898,23.383,19.051,17.021,11.694,13.492,10.569,19.557,13.734,0.011,10.03,17.486,14.607,4.261,18.73,21.901,8.407,3.118,7.496,6.75,9.228,13.915,7.705,11.969,0.433,5.09,10.333,10.366,2.176,6.815,11.457,15.687,-1.836,16.414,0.771,8.237,9.121,7.004,5.888,5.622,8.523,2.235,-4.247,3.065,-8.554,-0.529,5.524,14.914,12.573,-3.45,22.723,12.771,24.56,32.392,24.34,18.163,20.307,27.139,20.026,33.506,24.97,25.08,20.521,29.488,23.209,20.131,14.614,21.172,13.626,25.223,13.641,26.297,13.737,20.53,24.901,11.361,20.012,20.134,20.922,22.862,11.919,0.186,23.544,17.589,13.098,9.836,12.292,16.054,11.841,19.431,12.284,19.461,18.67,22.582,16.815,-1.353,21.324,11.265,14.549,18.427,5.54,19.397,12.56,7.745,3.803,9.493,16.359,18.281,16.503,14.812,23.072,12.371,8.426,3.746,5.613,9.284,9.318,5.373,2.394,6.268,10.24,0.713,7.7,14.407,8.209,1.643,12.076,12.846,8.356,2.177,13.283,10.251,-0.865,5.966,15.346,9.655,6.761,4.061,14.916,0.95,2.079,11.769,5.786,-0.889,17.128,16.345,9.035,-0.873,4.738,9.938,8.346,4.487,8.839,4.309,6.204,7.381,14.702,-2.183,13.19,12.272,1.22,-1.659,-6.718,-9.049,2.472,11.261,7.81,6.402,6.556,8.114,6.258,-0.84,-6.02,3.763,7.624,-4.565,-3.014,1.687],[19.867,22.357,14.59,34.161,24.922,15.095,25.956,27.982,24.622,11.682,24.951,20.261,19.487,19.733,22.899,23.534,18.83,16.97,11.798,13.543,10.732,19.719,13.85,-0.044,9.84,17.656,14.509,4.105,18.846,22.002,8.35,3.117,7.265,6.719,9.316,13.784,7.923,11.914,0.25,5.043,10.064,10.251,1.851,6.882,11.777,16.011,-1.772,16.322,0.645,8.223,9.058,6.89,5.921,5.601,8.667,2.329,-4.173,3.236,-8.38,-0.432,5.475,14.925,12.503,-3.455,22.828,12.339,25.052,32.612,24.763,18.132,20.401,27.716,19.137,33.662,24.692,24.681,20.511,29.46,23.667,19.82,14.212,21.26,14.249,25.439,13.563,26.278,13.908,20.256,25.053,11.117,19.595,20.31,21.18,22.947,12.203,-0.056,22.894,17.579,13.119,10.369,11.973,15.708,12.231,19.652,12.588,19.459,18.115,23.22,17.373,-1.6,20.909,10.932,14.942,18.553,5.198,19.286,12.506,7.308,3.453,9.204,16.27,18.031,16.519,14.621,23.204,12.231,8.005,4.548,5.578,9.815,9.859,5.088,2.184,6.369,10.296,0.684,8.122,14.195,8.837,1.117,11.907,13.515,8.528,2.002,13.114,10.239,-0.856,6.08,16.113,9.139,6.563,3.989,14.835,0.538,2.091,11.893,6.121,-0.873,17.055,16.647,8.855,-1.282,4.866,10.073,8.264,4.208,8.779,4.824,5.536,7.916,15.275,-1.944,13.021,12.156,1.311,-1.719,-6.567,-9.112,2.552,10.943,7.728,6.98,6.946,7.899,6.252,-0.855,-6.055,3.746,7.202,-4.482,-3.149,1.826],[19.523,22.47,14.528,34.278,25.056,15.052,25.664,27.996,24.677,11.602,25.019,20.32,19.71,19.693,22.984,23.654,18.618,17.019,11.95,13.625,10.621,19.645,13.788,-0.22,9.662,17.708,14.491,4.045,18.884,22.084,8.098,3.126,7.059,6.729,9.631,13.691,8.103,11.797,-0.014,4.994,9.962,10.177,1.475,6.905,12.245,16.399,-1.825,16.268,0.593,8.297,9.072,6.814,5.996,5.724,8.874,2.399,-4.119,3.317,-8.314,-0.204,5.255,14.891,12.26,-3.43,22.995,12.742,24.913,32.913,25.181,17.975,19.136,28.207,19.1,33.851,24.614,24.908,20.615,29.364,23.862,19.387,14.37,21.488,14.2,25.845,13.363,25.58,13.708,20.452,24.857,11.343,19.29,20.404,20.994,22.931,11.803,-0.238,23.681,17.282,13.566,10.117,12.214,15.795,12.131,19.033,12.684,19.584,18.043,23.03,17.186,-1.597,20.885,11.002,15.267,18.577,4.751,19.042,12.406,7.36,3.294,9.308,15.873,17.644,16.909,14.76,23.413,11.974,8.012,4.557,5.135,9.589,9.656,5.153,2.053,6.837,10.372,0.779,8.383,13.995,8.834,0.916,11.869,13.719,8.681,1.407,13.189,10.767,-1.052,6.439,16.108,9.193,5.981,4.219,15.034,0.17,2.029,12.021,6.693,-0.99,17.624,16.915,8.538,-0.713,5.031,9.631,8.574,4.189,8.678,5.006,5.671,8.191,15.464,-1.741,13.113,12.141,1.527,-1.587,-6.461,-9.019,2.617,10.73,7.208,7.149,7.132,7.638,6.347,-0.795,-5.918,3.652,7.262,-4.358,-3.231,2.137],[19.236,22.527,14.417,34.227,25.164,15.139,25.316,28.082,24.926,11.612,25.068,20.37,19.802,19.634,23.083,23.871,18.421,17.151,12.069,13.778,10.444,19.483,13.706,-0.172,9.505,17.662,14.507,3.869,18.746,22.154,7.874,3.049,7.014,6.858,9.978,13.647,8.214,11.718,-0.2,5.026,9.986,10.287,1.13,6.988,12.537,16.765,-1.924,16.211,0.545,8.208,9.036,6.762,6.042,5.951,8.968,2.548,-4.127,3.388,-8.3,0.083,5.029,14.883,12.121,-3.43,22.861,12.754,24.494,32.988,24.927,18.054,18.81,27.802,19.615,33.519,24.681,25.34,20.655,29.205,23.846,18.999,14.465,21.409,13.823,25.87,13.47,24.994,13.536,20.246,24.408,11.327,19.205,20.683,20.822,23.022,11.123,-0.327,24.446,17.118,13.084,9.508,12.241,16.008,11.685,18.473,12.68,19.249,17.82,23.25,17.275,-1.91,20.779,11.07,15.134,18.769,5.106,19.137,12.406,7.212,3.797,9.465,15.971,18.001,16.983,15.241,23.762,11.82,7.796,4.389,5.035,9.221,9.083,5.282,2.359,6.608,10.362,0.105,8.777,14.307,9.5,0.861,11.681,14.104,8.829,1.325,13.251,10.14,-1.152,6.423,16.106,9.294,5.359,4.061,14.895,0.047,1.601,12.559,7.005,-0.958,18.245,16.968,8.635,-0.934,5.427,9.424,8.53,4.545,8.491,4.859,5.769,7.919,15.034,-1.36,13.093,12.191,1.622,-1.556,-6.399,-8.65,2.671,10.779,7.112,7.014,7.338,7.439,6.117,-0.373,-5.862,3.177,7.982,-3.576,-2.912,2.08],[18.958,22.431,14.362,34.106,25.214,15.136,25.158,28.017,25.245,11.631,25.136,20.31,19.848,19.539,23.068,24.182,18.306,17.3,11.978,13.867,10.226,19.35,13.493,-0.058,9.275,17.656,14.623,3.819,18.442,22.213,7.707,2.986,6.986,6.99,10.276,13.673,8.313,11.787,-0.37,5.032,10.009,10.227,0.855,7.245,12.685,17.083,-1.864,16.056,0.476,8.082,8.869,6.672,6.085,6.324,8.949,2.741,-4.15,3.338,-8.253,0.328,4.924,14.905,12.17,-3.419,22.344,12.4,24.583,32.569,24.836,17.978,19.602,27.356,19.622,33.782,24.268,25.109,20.385,29.129,23.847,19.332,14.213,21.287,14.442,26.1,13.415,25.203,13.995,20.11,24.757,11.214,19.444,20.61,21.043,23.489,10.896,0.213,23.976,16.932,12.793,9.288,12.007,16.009,12.186,18.904,12.596,19.242,17.66,23.764,17.532,-1.44,20.973,10.913,15.133,18.606,4.843,19.186,12.836,6.562,3.422,9.378,16.253,18.38,16.378,15.101,23.788,12.236,7.694,3.794,5.177,9.878,9.338,5.832,1.972,6.271,10.203,-0.061,8.724,14.698,9.894,0.432,12.038,14.514,8.763,1.182,13.181,10.057,-1.174,6.493,16.798,8.881,5.623,3.926,14.471,-0.37,1.841,12.454,6.847,-1.349,18.284,17.2,9.014,-1.285,5.774,9.285,8.256,4.711,8.57,4.928,5.779,7.577,14.678,-1.351,13.092,11.984,1.718,-1.6,-6.466,-8.831,2.913,10.863,7.401,6.383,7.553,7.491,5.987,0.101,-5.876,3.231,8.17,-3.219,-2.981,1.857],[18.83,22.234,14.55,34.105,25.247,15.132,25.275,27.748,25.377,11.574,25.119,20.199,19.92,19.489,23.073,24.15,18.37,17.411,11.848,13.976,10.132,19.358,13.316,0.061,9.138,17.663,14.744,3.765,18.264,22.244,7.589,2.862,6.957,7.018,10.54,13.806,8.325,11.983,-0.373,5.032,9.902,10.257,0.57,7.436,12.671,17.441,-1.793,15.831,0.414,7.992,8.702,6.512,6.351,6.579,8.937,2.941,-4.147,3.292,-8.263,0.522,5.299,14.872,12.301,-3.307,22.538,12.445,25.135,32.526,24.916,18.127,20.625,27.527,18.809,33.68,23.654,25.379,20.266,29.337,23.717,18.662,14.328,21.328,14.155,26.229,13.364,25.993,13.902,20.025,24.806,10.857,19.755,20.032,20.628,23.081,11.09,0.28,23.734,17.142,12.694,9.179,11.725,15.864,12.163,18.692,12.739,18.986,17.072,23.314,17.316,-1.557,20.973,10.049,15.103,18.658,4.451,18.698,12.092,6.89,2.773,9.024,16.184,17.843,16.33,14.898,23.606,12.446,8.214,3.778,5.161,10.011,9.304,5.435,1.813,6.443,10.209,0.173,8.592,14.421,9.493,0.28,12.034,14.354,9.132,1.264,12.685,10.247,-1.108,6.57,16.643,8.545,6.129,3.831,14.591,-0.567,1.912,12.707,7.44,-1.121,18.321,17.124,8.942,-0.784,6.064,9.269,7.933,4.587,8.359,4.652,5.854,7.776,14.93,-1.11,13.062,12.131,2.19,-1.409,-6.659,-9.021,2.839,10.797,7.504,6.333,7.531,7.649,6.066,0.042,-6.047,3.449,7.771,-3.827,-3.289,1.804],[18.675,22.192,14.738,34.258,25.363,15.064,25.333,27.659,25.331,11.379,25.056,20.095,20.12,19.363,23.067,23.841,18.452,17.36,11.69,14.007,10.248,19.355,13.221,0.028,9.138,17.51,14.695,3.555,18.158,22.197,7.667,2.781,6.977,6.767,10.495,13.857,8.111,12.137,-0.211,4.978,9.625,10.396,0.379,7.543,12.674,17.754,-1.653,15.652,0.394,7.965,8.636,6.284,6.732,6.663,8.987,3.204,-4.162,3.226,-8.445,0.689,5.705,14.784,12.38,-3.167,22.635,12.443,25.204,32.864,25.364,17.579,20.587,27.771,18.863,33.434,23.774,25.507,20.333,28.759,23.436,18.274,14.351,21.244,14.369,25.536,13.563,26.532,13.468,20.315,25.034,11.18,19.696,19.904,20.68,23.014,12.083,-0.002,23.86,17.179,12.805,8.888,11.845,16.122,11.633,18.838,12.907,18.894,17.037,23.124,17.514,-1.714,20.681,9.353,15.49,19.038,4.381,18.341,11.65,6.938,3.081,8.999,15.909,17.746,16.686,15.441,23.731,12.326,8.081,4.022,5.111,9.956,9.3,4.999,2.213,6.822,10.406,0.017,8.782,14.155,9.707,-0.034,11.976,14.028,8.905,1.268,13.152,10.307,-1.301,6.364,16.657,8.794,6.28,3.893,14.993,-0.287,1.668,12.846,8.189,-0.792,18.153,16.86,8.437,-0.692,5.422,9.241,7.752,4.774,7.995,4.928,6.491,8.294,15.418,-0.743,12.96,12.655,2.444,-1.375,-6.516,-8.981,2.963,11.073,7.29,6.499,7.427,7.72,6.186,-0.181,-6.012,3.773,7.684,-4.3,-3.624,1.989],[18.524,22.24,14.703,34.368,25.453,14.852,25.419,27.65,25.394,11.247,24.994,20.068,20.318,19.185,23.032,23.68,18.463,17.39,11.529,14.041,10.409,19.29,13.168,-0.096,9.166,17.379,14.68,3.379,18.158,22.095,7.881,2.833,6.877,6.532,10.354,13.831,8.0,12.284,-0.169,4.898,9.353,10.514,0.31,7.606,12.686,18.009,-1.524,15.69,0.261,8.114,8.734,6.139,6.894,6.593,9.162,3.359,-3.996,3.182,-8.55,0.822,5.92,14.693,12.426,-3.057,22.727,12.204,24.711,32.544,25.694,17.505,20.161,27.855,19.054,34.368,23.831,24.852,20.256,28.767,23.184,18.168,14.149,21.368,14.602,25.732,13.554,26.391,13.595,20.543,24.789,10.894,19.777,19.657,20.512,23.425,12.787,-0.297,24.046,17.281,12.591,9.432,12.141,16.235,11.732,19.274,12.803,19.206,16.888,23.024,17.675,-1.716,20.477,9.632,15.581,19.097,4.322,18.058,12.432,7.177,3.721,9.276,16.192,17.262,16.441,15.331,23.488,12.491,7.888,3.886,5.106,9.739,9.162,5.203,2.012,6.137,10.729,-0.071,8.822,13.797,9.81,0.115,12.098,13.865,8.111,1.226,13.671,10.46,-1.418,6.235,16.982,8.816,6.034,3.666,14.553,-0.548,1.324,12.719,8.868,-0.798,17.92,16.334,7.906,-0.241,5.146,9.299,8.06,5.305,8.004,4.869,6.741,8.258,15.414,-0.391,12.744,12.531,2.776,-1.432,-6.708,-8.948,3.176,11.201,7.302,6.062,7.529,7.546,5.932,-0.133,-5.828,4.204,7.882,-4.315,-3.302,1.899],[18.363,22.252,14.667,34.485,25.467,14.792,25.429,27.694,25.521,11.059,24.811,20.061,20.483,19.041,23.107,23.812,18.526,17.444,11.565,14.074,10.604,19.189,13.181,-0.254,9.299,17.349,14.806,3.439,18.155,21.887,8.009,2.844,6.762,6.552,10.323,13.824,8.256,12.325,-0.341,4.653,9.191,10.624,0.323,7.501,12.647,18.141,-1.441,15.809,0.043,8.357,8.933,6.035,6.975,6.495,9.292,3.292,-3.837,3.215,-8.414,0.972,6.027,14.515,12.34,-2.994,22.886,12.242,25.064,32.668,25.411,17.197,19.814,27.331,19.234,34.27,24.097,25.013,20.302,29.027,23.002,18.302,14.023,21.393,14.475,26.349,13.212,26.184,13.474,19.769,24.938,10.097,19.892,20.2,19.967,22.949,12.651,-0.11,23.316,17.145,11.986,9.176,12.413,16.465,11.37,18.893,12.611,19.069,16.596,23.041,17.554,-1.869,20.756,9.915,15.423,19.147,4.292,18.331,12.921,7.635,3.09,9.678,16.296,17.41,15.822,14.77,23.264,12.564,8.088,2.879,4.862,9.699,9.621,5.055,2.056,5.696,11.193,0.056,8.374,13.786,9.431,0.019,12.184,13.957,7.903,1.215,13.947,10.615,-1.516,6.546,17.029,8.538,5.973,3.526,14.67,-0.687,1.489,12.708,9.241,-0.508,18.023,15.766,7.76,-0.332,5.836,9.325,8.182,5.344,7.945,4.444,6.607,8.033,15.047,-0.578,12.744,12.276,2.665,-1.112,-6.972,-9.41,2.991,10.767,7.677,6.008,7.27,7.735,5.833,0.388,-5.511,4.214,8.334,-3.897,-3.001,1.769],[18.211,22.29,14.722,34.478,25.495,14.869,25.432,27.772,25.696,10.695,24.58,20.056,20.497,18.939,23.027,24.008,18.541,17.484,11.666,14.088,10.843,19.016,13.247,-0.294,9.401,17.355,14.891,3.539,18.013,21.629,8.114,2.704,6.837,6.612,10.276,13.801,8.615,12.411,-0.449,4.252,9.056,10.725,0.416,7.431,12.618,18.136,-1.436,15.931,-0.12,8.563,9.102,5.916,7.012,6.549,9.296,3.143,-3.813,3.285,-8.41,1.038,6.007,14.253,12.072,-2.968,22.521,11.856,25.884,33.112,25.259,17.177,20.106,26.572,18.557,34.05,23.885,25.359,20.501,29.24,22.758,18.156,13.999,21.209,14.693,26.125,13.31,26.382,13.396,19.903,25.06,10.262,20.242,19.906,19.788,23.183,11.881,0.063,23.036,17.15,12.456,9.0,12.415,16.309,11.647,18.78,12.806,18.555,17.049,23.27,17.344,-2.066,20.607,10.224,15.327,19.309,4.291,18.841,12.081,7.268,2.524,9.801,16.495,18.11,15.981,14.947,23.427,12.33,7.732,2.482,4.946,9.706,9.946,5.121,1.545,6.141,10.897,-0.003,8.891,14.424,9.658,-0.026,12.253,13.931,8.253,1.027,13.755,10.681,-1.553,6.889,16.988,8.276,5.917,3.373,14.816,-0.687,1.612,13.153,8.613,-0.779,18.349,15.761,8.243,-0.437,5.792,9.632,8.156,5.197,7.769,4.828,6.537,8.079,14.552,-0.721,12.423,12.113,2.282,-1.133,-6.499,-8.87,3.371,11.073,8.069,5.924,7.091,8.188,6.05,0.632,-5.467,4.172,8.301,-2.743,-2.813,1.779],[18.005,22.375,14.827,34.412,25.538,14.912,25.342,27.691,25.971,10.441,24.346,20.069,20.483,19.0,22.911,24.139,18.504,17.399,11.702,14.063,10.908,18.819,13.392,-0.255,9.469,17.425,15.108,3.471,17.896,21.385,8.112,2.352,6.997,6.734,10.236,13.817,8.904,12.49,-0.445,4.081,9.131,10.782,0.41,7.533,12.67,18.048,-1.482,15.947,-0.147,8.772,9.173,5.86,7.001,6.614,9.255,3.063,-3.955,3.363,-8.295,0.933,5.879,13.943,11.895,-2.877,21.994,11.501,25.482,32.693,25.399,17.07,20.305,26.689,18.111,34.24,23.717,25.123,20.482,29.305,22.829,17.894,14.339,21.29,14.968,26.13,13.669,26.376,13.763,20.85,24.985,10.46,20.332,19.437,19.468,23.326,11.262,-0.331,23.818,17.323,12.689,9.613,12.667,16.145,12.075,19.021,13.093,18.184,17.613,23.734,17.03,-1.956,20.483,10.524,15.776,19.261,4.017,19.081,11.959,7.145,3.15,9.967,16.543,17.915,16.506,15.356,23.072,12.286,7.935,2.911,5.215,9.9,9.866,5.577,1.417,6.354,10.73,-0.132,9.549,14.274,9.564,0.232,12.144,14.319,9.236,1.053,13.562,11.184,-1.619,7.077,17.058,8.187,5.773,2.925,15.027,-0.658,1.346,12.92,7.657,-0.825,18.243,16.402,7.949,-0.653,5.64,10.123,8.507,5.594,7.578,5.021,6.422,8.619,14.046,-0.447,12.1,11.577,2.596,-1.138,-6.46,-8.583,2.885,10.869,8.127,5.609,7.372,8.283,5.731,0.296,-5.527,4.053,7.723,-2.468,-2.931,2.153],[17.713,22.404,14.961,34.306,25.529,15.011,25.33,27.468,26.253,10.528,24.171,20.252,20.474,18.941,22.94,24.342,18.464,17.27,11.802,14.089,11.132,18.68,13.532,-0.37,9.679,17.493,15.421,3.368,17.949,21.304,8.03,2.076,7.192,6.89,10.245,13.796,8.907,12.6,-0.389,4.183,9.178,10.881,0.306,7.711,12.803,17.918,-1.57,16.029,-0.082,8.909,9.255,5.667,7.052,6.504,9.246,3.035,-4.146,3.37,-8.25,0.778,5.694,13.729,11.8,-2.773,22.318,11.384,25.856,32.608,25.524,17.115,20.177,27.296,18.659,34.152,23.502,24.431,20.498,29.011,22.6,17.724,14.454,21.23,14.332,26.424,13.829,26.323,13.567,20.819,25.144,10.171,20.029,20.167,19.862,22.98,11.541,-0.49,24.097,17.12,12.751,9.647,12.714,16.029,11.463,19.024,12.969,18.231,17.009,23.622,17.458,-2.057,20.016,10.639,15.59,19.032,4.183,18.956,12.672,7.294,3.238,9.77,16.442,17.093,16.352,15.841,22.306,12.719,8.372,3.333,5.413,10.105,9.791,5.3,1.55,6.284,10.856,0.072,9.645,13.814,9.175,-0.126,12.517,14.389,9.387,0.888,13.497,11.018,-1.754,7.107,16.873,8.397,5.826,3.005,14.984,-0.869,1.167,13.142,7.613,-0.801,18.002,16.603,7.891,-0.417,5.666,10.641,8.703,5.54,7.519,5.117,6.598,8.628,13.917,-0.473,11.911,11.544,2.568,-0.914,-6.583,-8.68,2.796,10.492,8.229,5.358,7.78,7.997,5.36,-0.256,-5.469,3.87,7.816,-3.282,-3.589,2.227],[17.505,22.436,14.894,34.236,25.552,15.026,25.401,27.204,26.575,10.692,23.928,20.576,20.394,18.988,22.933,24.423,18.439,17.135,11.851,14.017,11.405,18.602,13.696,-0.581,9.966,17.541,15.68,3.408,17.807,21.128,7.99,1.899,7.365,6.802,10.296,13.712,8.608,12.798,-0.444,4.42,9.087,11.07,0.115,7.816,12.903,17.802,-1.587,16.138,-0.095,9.038,9.335,5.519,7.086,6.152,9.291,3.042,-4.254,3.385,-8.276,0.6,5.625,13.73,11.635,-2.725,22.966,11.73,26.281,32.703,25.838,17.294,20.214,27.761,18.379,34.051,23.873,24.487,20.483,28.528,22.365,17.371,14.3,21.388,14.228,25.981,13.758,26.427,13.58,20.312,24.992,10.198,19.655,20.261,20.219,23.215,12.026,-0.366,23.742,17.177,12.732,9.337,12.882,16.248,11.558,19.404,12.623,18.239,16.764,23.573,17.27,-2.383,19.529,11.2,15.205,18.949,4.08,18.72,12.538,7.308,2.752,9.956,17.002,17.14,16.155,16.052,22.346,12.499,8.564,3.392,5.66,10.062,9.822,5.124,1.655,6.424,11.28,-0.053,8.897,14.129,9.133,-0.254,12.564,14.484,9.396,1.165,14.275,11.272,-1.55,6.81,16.615,8.401,5.944,3.098,14.998,-0.879,1.34,13.384,7.761,-0.846,17.873,16.757,7.914,-0.419,5.846,10.812,8.47,5.674,7.378,5.013,6.594,8.204,14.296,-0.963,11.953,12.088,2.246,-1.001,-6.725,-8.371,3.397,10.933,8.463,5.266,8.128,8.195,5.166,0.09,-5.848,3.675,8.1,-3.635,-3.941,1.934],[17.316,22.502,14.652,34.233,25.523,15.076,25.595,27.151,26.906,10.765,23.801,20.837,20.264,19.158,23.052,24.211,18.628,17.16,11.792,13.874,11.586,18.587,13.733,-0.71,10.274,17.592,15.837,3.533,17.651,20.909,8.079,1.789,7.466,6.483,10.355,13.617,8.186,13.143,-0.592,4.595,9.062,11.183,-0.075,7.776,12.97,17.595,-1.556,16.249,-0.201,9.18,9.386,5.463,7.117,5.835,9.365,3.1,-4.411,3.353,-8.267,0.453,5.627,13.872,11.596,-2.781,23.256,12.056,26.123,32.344,26.204,17.379,20.616,26.97,17.782,34.323,24.256,24.27,20.772,28.488,21.95,17.39,13.961,21.441,14.96,26.211,13.232,26.498,13.853,20.354,24.763,10.704,19.862,19.84,20.293,22.948,11.933,-0.436,23.926,17.141,12.727,9.923,13.333,16.103,12.018,19.351,12.468,18.183,16.419,23.551,17.086,-2.553,19.509,11.612,15.211,18.917,4.107,18.495,12.408,7.215,2.766,10.524,17.044,16.649,16.128,16.239,22.548,12.277,8.435,3.145,5.676,10.243,9.632,5.068,1.034,6.105,11.707,-0.588,7.969,14.385,9.347,-0.412,12.516,14.546,8.905,1.142,14.671,11.377,-1.59,6.697,16.772,8.183,6.387,3.33,14.951,-0.921,1.312,13.184,8.785,-0.823,17.85,17.057,7.981,-0.691,5.41,10.997,8.412,6.114,7.162,5.042,6.29,8.37,14.499,-1.236,12.103,12.288,2.021,-0.797,-6.576,-8.349,3.29,10.953,8.988,4.256,8.806,8.39,5.325,0.269,-5.912,3.627,8.137,-3.179,-3.46,2.064],[17.205,22.665,14.479,34.225,25.542,15.1,25.836,27.284,27.161,10.869,23.655,20.943,20.225,19.196,23.136,23.985,18.897,17.251,11.796,13.875,11.75,18.683,13.476,-0.839,10.558,17.645,15.904,3.623,17.41,20.79,8.057,1.673,7.418,6.054,10.48,13.681,7.97,13.463,-0.803,4.646,9.249,11.155,-0.22,7.798,12.935,17.332,-1.512,16.349,-0.447,9.444,9.417,5.501,7.327,5.492,9.406,2.954,-4.608,3.376,-8.094,0.365,5.598,13.986,11.674,-2.726,23.453,11.648,26.377,32.38,26.428,17.462,21.254,26.133,17.262,34.168,24.146,24.369,20.774,28.849,21.895,17.376,14.159,21.229,14.544,26.27,13.135,26.464,13.71,20.592,25.249,10.388,19.974,20.763,20.249,23.179,11.477,-0.328,23.233,17.359,12.936,10.459,13.364,15.888,11.453,19.162,12.735,17.882,16.376,23.431,17.417,-2.726,19.747,11.934,15.342,18.955,4.436,18.26,12.406,7.439,3.299,10.743,16.975,16.484,16.0,16.117,22.341,12.444,8.304,2.22,5.541,10.155,9.851,4.819,0.86,5.613,11.965,-0.627,7.574,14.101,9.556,-0.491,12.735,14.558,8.48,0.579,14.555,11.367,-1.76,6.473,16.515,8.304,6.306,3.963,15.218,-1.603,1.206,13.523,9.43,-0.751,18.031,16.857,8.137,-0.69,4.812,10.904,9.094,6.38,7.248,5.026,5.934,8.81,14.496,-1.07,12.332,12.128,2.155,-0.816,-6.278,-8.45,3.274,10.665,8.667,3.928,8.967,8.09,5.575,-0.448,-5.9,3.665,7.908,-2.943,-3.228,2.178],[17.13,22.806,14.374,34.117,25.703,15.081,25.907,27.416,27.345,10.824,23.577,21.116,20.36,19.212,23.063,23.785,19.018,17.277,11.787,13.892,11.737,18.827,13.319,-0.965,10.78,17.68,15.927,3.745,17.103,20.623,8.024,1.511,7.384,5.72,10.658,13.78,7.982,13.651,-0.944,4.67,9.503,11.069,-0.391,7.902,12.926,17.007,-1.444,16.466,-0.787,9.444,9.503,5.659,7.587,5.157,9.388,2.742,-4.784,3.449,-7.767,0.279,5.473,14.125,11.805,-2.678,23.02,11.719,27.243,32.549,26.287,17.33,21.506,26.368,17.092,34.132,24.162,24.425,20.866,28.839,21.766,17.413,14.402,21.711,14.096,26.169,13.371,26.37,13.555,21.115,25.976,10.281,20.071,20.138,20.042,23.406,11.461,-0.649,23.114,17.695,12.474,10.209,13.474,16.099,11.405,19.658,13.024,17.785,16.638,23.306,17.544,-2.843,19.918,12.316,15.429,19.184,4.21,18.018,11.952,7.325,3.751,10.643,17.416,17.148,16.367,15.687,22.368,12.543,8.516,1.5,5.685,10.459,9.95,4.452,0.924,4.808,11.922,-0.782,7.786,14.135,9.61,-0.654,12.607,14.15,8.329,0.469,14.761,11.436,-1.96,6.269,16.336,8.444,6.449,4.024,15.418,-1.717,0.928,13.818,9.352,-0.427,18.24,16.486,8.551,-1.019,4.551,11.359,9.092,6.451,7.433,5.09,6.393,8.854,14.615,-0.987,12.397,11.517,1.8,-0.788,-6.121,-8.103,2.994,10.38,8.69,4.04,8.923,7.815,5.797,-0.653,-6.176,3.699,7.956,-3.454,-3.435,2.035],[17.092,22.779,14.367,33.895,25.869,15.14,25.946,27.465,27.545,10.684,23.632,21.177,20.568,19.041,23.097,23.606,19.245,17.384,11.67,13.822,11.594,19.002,13.34,-1.122,10.952,17.802,16.013,3.81,16.958,20.473,7.958,1.304,7.546,5.382,10.898,13.86,8.114,13.64,-0.935,4.732,9.694,11.017,-0.547,7.872,12.845,16.636,-1.424,16.505,-1.098,9.337,9.48,5.833,7.799,5.032,9.364,2.527,-4.94,3.495,-7.422,0.251,5.43,14.352,11.84,-2.677,22.795,12.081,27.344,32.056,26.29,17.329,21.159,27.12,17.431,34.241,24.245,23.887,20.992,28.781,21.845,17.352,14.466,21.686,14.552,26.273,13.197,26.984,13.69,21.194,25.702,10.666,19.928,20.421,20.177,22.881,11.619,-0.858,23.198,17.587,12.077,10.343,13.254,16.016,12.219,19.66,12.674,18.138,16.698,23.227,17.149,-2.965,19.399,12.303,15.629,19.016,4.489,17.746,12.203,7.237,3.197,10.438,17.687,17.09,16.968,16.053,22.213,12.301,8.604,1.984,5.739,11.099,9.378,4.212,0.962,4.812,11.959,-0.811,8.285,14.445,9.603,-0.866,12.65,14.236,9.023,0.544,14.859,10.999,-2.364,6.318,16.196,8.789,6.582,3.734,15.418,-1.626,0.528,13.49,9.073,-0.095,18.255,16.847,8.623,-1.101,4.011,11.039,8.379,6.245,7.715,5.167,6.391,8.621,14.938,-1.344,12.52,11.483,1.546,-0.93,-5.763,-7.64,2.406,10.882,9.097,4.155,8.649,8.245,5.501,0.154,-6.386,3.588,7.771,-3.652,-4.091,2.366],[17.16,22.714,14.538,33.649,26.075,15.198,25.92,27.47,27.708,10.68,23.702,21.199,20.571,18.909,23.094,23.44,19.461,17.517,11.726,13.723,11.366,19.069,13.456,-1.335,11.089,17.913,16.155,3.72,16.958,20.272,7.767,1.239,7.742,5.207,11.151,13.903,8.272,13.431,-0.791,4.81,9.835,11.034,-0.658,7.808,12.695,16.328,-1.424,16.515,-1.167,9.238,9.347,5.902,7.894,5.008,9.259,2.344,-5.029,3.512,-7.089,0.389,5.44,14.687,11.893,-2.763,22.553,11.595,27.066,31.771,26.306,17.066,21.003,27.447,17.74,33.769,24.595,23.965,21.001,28.729,21.916,17.27,14.532,21.518,14.764,26.151,13.087,26.961,13.849,20.491,24.872,10.164,20.087,21.044,19.926,23.408,11.588,-0.802,23.018,17.863,12.762,10.901,13.05,16.163,11.577,19.831,12.22,18.2,16.419,23.447,16.75,-3.205,19.727,12.203,15.131,19.024,4.736,18.036,12.306,7.012,3.254,10.17,17.657,16.693,17.402,16.667,21.358,12.342,8.559,2.154,5.909,10.553,9.477,3.494,0.631,5.159,12.162,-0.948,8.569,14.218,9.829,-1.269,12.617,14.12,9.294,0.891,14.702,11.029,-2.697,6.396,15.809,9.296,6.349,3.708,14.995,-1.512,0.091,13.451,8.922,-0.657,17.983,17.189,8.399,-0.868,4.305,10.875,8.451,6.512,7.675,5.165,6.048,8.791,15.011,-1.135,13.005,12.434,1.72,-0.936,-5.355,-8.023,2.889,11.041,8.938,4.22,8.544,8.863,5.52,-0.176,-6.744,3.629,7.717,-3.298,-4.441,2.455],[17.341,22.682,14.702,33.355,26.122,15.268,25.929,27.401,27.762,10.601,23.749,21.221,20.434,18.877,23.234,23.37,19.605,17.586,11.767,13.503,11.172,19.038,13.678,-1.616,11.171,17.962,16.304,3.581,16.897,20.048,7.57,1.096,7.804,5.126,11.164,13.758,8.481,13.238,-0.583,4.84,9.934,11.051,-0.768,7.765,12.613,16.016,-1.451,16.352,-1.179,9.123,9.343,6.031,7.897,4.98,9.263,2.323,-5.043,3.5,-7.001,0.473,5.377,15.105,12.077,-2.827,22.398,11.359,27.235,31.606,26.668,17.156,21.086,27.063,17.781,33.606,24.706,24.331,20.854,28.902,22.384,17.231,14.884,21.999,15.182,26.818,13.379,26.659,13.928,20.514,24.947,10.233,20.712,20.256,19.579,23.374,12.074,-0.851,23.285,18.186,13.101,10.409,12.754,16.415,11.509,19.939,12.281,17.748,16.886,23.102,16.59,-3.426,19.407,11.996,14.671,19.186,4.315,18.376,12.081,7.045,3.406,9.843,17.412,16.494,17.436,17.027,21.278,13.097,8.717,1.968,5.897,10.483,9.449,3.343,0.697,5.169,11.75,-0.934,8.426,14.043,10.31,-1.361,12.697,13.823,8.846,0.991,14.786,11.376,-2.611,6.901,15.56,9.063,5.654,3.679,15.175,-1.537,0.454,13.471,8.566,-1.084,17.723,17.233,8.911,-0.464,4.867,10.704,8.871,7.048,7.735,5.202,6.107,8.955,15.569,-0.682,13.342,12.74,1.702,-1.001,-5.151,-7.721,3.082,10.75,8.95,4.433,8.512,8.983,5.536,-0.487,-6.651,3.553,7.521,-2.766,-3.921,2.192],[17.552,22.514,14.787,33.189,26.097,15.461,26.15,27.3,27.841,10.574,23.802,21.138,20.412,18.837,23.548,23.403,19.657,17.602,11.823,13.328,11.033,19.071,13.766,-1.812,11.165,17.946,16.459,3.447,16.812,19.929,7.468,0.859,7.831,5.056,11.171,13.616,8.684,13.159,-0.508,4.588,10.014,11.073,-0.85,7.6,12.513,15.759,-1.323,16.024,-1.09,9.087,9.407,6.092,7.877,4.845,9.41,2.437,-4.892,3.598,-6.919,0.453,5.237,15.589,12.331,-2.77,22.743,11.677,27.239,31.386,27.016,16.972,20.971,26.493,17.604,33.601,24.637,24.367,20.681,28.774,22.736,17.194,15.116,22.254,15.358,26.718,13.7,26.947,13.833,20.632,25.677,10.515,20.633,20.461,19.879,23.219,11.428,-1.24,22.626,18.46,13.074,9.795,12.59,16.195,12.275,19.853,12.161,17.903,16.414,22.727,16.802,-3.592,18.667,11.98,14.067,19.278,4.451,18.345,12.256,6.941,3.238,9.811,17.111,16.485,16.923,16.634,21.611,13.17,8.73,2.069,6.028,11.18,9.162,3.809,0.389,4.943,11.483,-0.081,8.176,14.363,10.158,-0.963,12.699,13.848,8.358,0.635,14.508,11.416,-2.042,7.572,15.464,8.661,5.733,3.546,15.282,-1.957,0.621,12.927,8.878,-0.66,17.291,17.199,9.132,-0.785,4.383,10.642,8.846,6.874,7.906,4.873,6.364,9.291,16.195,-1.019,13.778,12.467,1.798,-0.858,-5.231,-7.592,2.84,10.979,8.916,4.466,8.503,8.9,5.634,-0.02,-6.239,3.494,7.529,-3.185,-3.383,2.129],[17.739,22.324,14.943,33.211,26.109,15.679,26.439,27.152,27.986,10.687,23.825,21.117,20.391,18.882,23.739,23.399,19.685,17.508,11.83,13.205,10.962,19.329,13.663,-1.888,11.112,17.826,16.386,3.294,16.64,19.826,7.384,0.749,7.885,5.139,11.284,13.66,8.718,13.219,-0.443,4.304,10.07,11.112,-0.864,7.463,12.218,15.676,-1.041,15.647,-0.922,8.99,9.371,6.103,7.824,4.639,9.609,2.545,-4.649,3.663,-6.822,0.414,5.12,16.005,12.676,-2.676,22.932,11.858,27.086,31.317,26.774,17.09,20.794,26.251,17.488,33.228,24.874,24.332,20.6,28.493,22.947,17.068,15.433,22.153,15.128,26.14,13.543,26.73,14.176,20.426,25.679,10.592,20.323,20.499,19.766,23.978,11.331,-1.042,22.846,18.196,12.974,10.352,12.442,16.131,12.174,20.079,11.821,18.318,16.529,22.903,16.993,-3.779,18.688,12.357,13.674,19.104,4.54,18.34,12.264,6.43,3.519,9.892,17.65,16.602,16.943,16.451,21.375,12.32,8.702,1.677,6.031,10.542,9.158,3.711,-0.407,4.237,11.573,-0.357,8.46,14.136,10.007,-1.292,12.883,13.492,8.257,1.235,14.32,11.089,-2.093,7.803,15.713,8.675,5.941,3.089,15.164,-2.332,0.79,12.833,9.036,-0.499,16.964,17.033,9.056,-1.33,3.714,10.807,8.583,6.353,7.865,5.105,5.77,9.41,16.698,-1.075,14.111,12.496,1.523,-0.914,-5.094,-7.967,3.134,11.484,8.441,4.021,8.637,9.007,5.745,0.177,-5.493,3.419,7.808,-3.739,-3.705,2.328],[17.86,22.281,15.174,33.256,25.936,15.936,26.585,26.861,27.921,10.927,23.889,21.076,20.325,18.948,23.786,23.478,19.762,17.441,11.746,13.148,10.875,19.674,13.406,-1.999,10.996,17.747,16.178,3.268,16.567,19.648,7.126,0.739,7.975,5.077,11.28,13.697,8.63,13.418,-0.417,3.961,10.15,11.113,-0.948,7.378,11.917,15.747,-0.781,15.297,-0.713,8.908,9.37,6.166,7.724,4.473,9.682,2.574,-4.51,3.725,-6.815,0.501,4.964,16.197,13.096,-2.602,22.159,11.969,27.687,31.582,26.595,17.313,20.959,27.179,17.881,33.517,25.521,24.294,20.42,28.288,23.087,16.969,15.583,22.361,14.744,26.424,13.613,26.598,14.271,21.281,25.445,10.413,20.363,20.145,19.852,24.3,12.027,-0.68,23.722,18.143,12.604,11.046,12.572,15.978,11.771,19.921,11.777,18.696,16.553,22.755,16.729,-3.745,18.972,12.546,13.259,18.977,4.527,18.822,12.229,6.513,3.296,10.098,17.826,15.994,17.034,16.727,21.108,12.059,8.773,0.847,6.011,10.51,9.022,3.992,-0.373,4.066,11.82,-0.724,8.825,13.93,10.12,-1.3,12.885,12.702,8.003,1.057,14.809,10.999,-2.167,7.424,15.943,9.428,5.684,2.97,14.904,-2.189,0.753,12.547,8.794,-0.721,16.958,16.578,9.022,-1.395,3.921,10.354,8.306,6.413,7.981,5.402,5.589,9.448,17.021,-1.043,14.407,12.738,1.469,-0.931,-5.008,-7.491,3.399,11.498,8.047,3.665,8.743,8.29,5.645,-0.121,-5.672,3.014,8.019,-3.58,-3.097,2.646],[17.967,22.117,15.351,33.285,25.802,16.106,26.543,26.751,27.718,11.178,23.978,21.06,20.398,18.995,23.799,23.719,19.842,17.349,11.639,13.104,10.87,19.988,13.163,-2.031,10.908,17.722,15.98,3.279,16.554,19.492,6.719,0.675,8.099,5.043,11.303,13.713,8.502,13.735,-0.687,3.702,10.385,11.071,-1.066,7.31,11.701,15.841,-0.617,14.96,-0.458,8.775,9.26,6.279,7.633,4.468,9.656,2.605,-4.423,3.873,-6.829,0.697,4.799,16.098,13.338,-2.557,21.794,12.416,27.121,31.614,26.451,17.224,21.163,27.314,18.298,33.571,25.806,24.357,20.444,28.123,23.478,16.9,15.884,22.665,15.043,26.321,14.129,26.151,14.462,21.195,25.335,10.671,20.313,20.713,20.072,23.35,12.022,-1.225,23.414,18.585,12.13,10.957,12.731,16.218,12.133,19.859,11.915,18.672,16.415,22.81,16.323,-3.551,19.525,12.48,13.356,19.034,4.697,19.035,11.893,6.567,3.343,10.101,17.326,15.38,17.189,16.572,20.574,12.408,8.94,0.153,6.254,10.839,8.294,4.108,0.091,4.122,12.051,-0.495,8.737,14.19,10.441,-0.771,12.877,12.603,8.104,0.69,14.874,10.884,-1.86,6.924,16.108,9.866,5.234,2.485,14.507,-1.952,0.751,12.544,8.708,-0.184,17.212,16.358,9.024,-1.142,3.676,9.96,8.295,6.428,8.096,5.472,5.672,9.596,16.802,-0.742,14.353,13.282,2.065,-0.64,-5.027,-7.172,3.083,11.86,8.201,3.663,9.187,8.217,5.7,-0.115,-5.457,2.897,7.761,-3.315,-2.647,2.739],[17.996,21.922,15.559,33.165,25.633,16.272,26.502,26.886,27.517,11.357,24.101,21.236,20.599,19.104,23.591,23.779,19.877,17.338,11.631,13.135,10.954,20.12,13.009,-1.95,10.865,17.65,15.806,3.256,16.491,19.416,6.304,0.516,8.224,5.141,11.511,13.934,8.358,14.031,-0.972,3.478,10.624,11.036,-1.05,7.297,11.687,15.909,-0.5,14.729,-0.263,8.611,9.133,6.429,7.622,4.411,9.521,2.717,-4.287,4.0,-6.866,0.95,4.88,15.769,13.442,-2.474,21.96,12.209,26.61,31.263,26.359,17.433,20.924,26.143,18.185,33.494,25.388,24.294,20.262,28.014,23.844,17.288,16.001,22.157,15.467,26.384,14.356,25.894,14.696,20.175,25.754,11.191,20.384,20.273,20.089,23.385,11.104,-1.461,23.47,18.761,12.458,10.508,12.721,16.148,12.508,20.208,11.693,19.104,16.446,23.126,16.126,-3.632,19.116,12.326,13.558,18.871,4.458,19.025,11.54,5.709,3.512,9.647,16.845,15.275,17.328,16.204,20.773,12.379,9.118,0.2,6.46,10.902,8.138,3.526,-0.106,4.524,12.322,-0.968,8.692,14.279,10.417,-0.973,12.707,12.66,8.29,0.753,14.898,10.693,-1.536,6.505,15.905,10.233,4.683,2.391,14.694,-2.205,1.338,12.483,8.696,-0.183,17.443,16.201,9.611,-0.287,3.843,9.622,8.962,6.236,8.236,5.547,5.471,10.321,16.324,-0.516,14.158,13.241,2.33,-0.701,-5.157,-7.692,2.761,11.725,8.335,4.319,9.077,7.777,5.915,0.399,-5.07,3.103,7.69,-3.351,-2.534,2.641],[18.048,21.946,15.79,32.848,25.444,16.431,26.543,26.915,27.426,11.452,24.104,21.111,20.763,19.277,23.263,23.754,19.807,17.368,11.642,13.253,10.865,20.205,12.981,-1.791,10.849,17.551,15.66,3.291,16.362,19.475,6.068,0.206,8.403,5.183,11.744,14.076,8.109,14.281,-1.24,3.299,10.879,10.97,-1.067,7.4,11.787,15.873,-0.413,14.659,-0.138,8.447,9.123,6.543,7.601,4.456,9.392,2.85,-4.229,3.991,-7.067,1.284,5.069,15.398,13.407,-2.411,22.052,12.53,27.023,31.231,26.347,17.42,20.959,25.853,17.799,33.413,25.038,24.558,20.05,28.239,24.388,17.609,16.238,21.976,15.563,26.464,14.218,25.98,14.783,21.003,26.024,11.423,20.817,20.868,20.069,23.995,11.12,-0.872,23.712,18.474,12.615,10.315,12.528,16.047,12.221,20.223,11.671,19.186,16.143,22.806,16.646,-3.49,18.229,12.256,13.175,19.132,4.75,19.045,11.673,5.379,3.114,9.892,17.12,15.456,16.467,15.884,20.884,12.553,8.979,0.932,6.536,11.204,7.745,3.47,-0.548,5.329,12.447,-1.363,9.018,14.251,10.3,-1.615,12.757,13.032,8.304,0.46,15.065,10.971,-1.186,6.287,15.125,10.032,4.646,2.267,14.78,-2.195,1.423,12.137,8.606,-0.419,17.415,16.293,9.908,0.219,4.241,9.501,8.869,6.0,8.218,5.426,5.976,10.589,15.556,-0.327,13.621,12.974,2.081,-0.769,-5.201,-7.669,3.005,11.775,7.865,3.942,9.034,7.415,5.922,0.637,-4.731,3.213,7.586,-3.531,-2.696,2.677],[18.028,22.012,15.917,32.622,25.435,16.523,26.582,26.903,27.407,11.579,24.074,21.124,20.962,19.367,23.325,23.833,19.61,17.512,11.619,13.328,10.648,20.328,13.073,-1.632,10.852,17.51,15.712,3.327,16.292,19.556,5.95,-0.107,8.472,5.269,11.914,14.132,8.01,14.397,-1.441,3.262,10.983,10.952,-1.156,7.515,11.927,15.717,-0.292,14.655,-0.124,8.308,9.041,6.566,7.598,4.622,9.254,2.902,-4.296,3.886,-7.375,1.513,5.264,14.945,13.229,-2.541,22.204,12.892,26.974,31.228,26.132,17.545,21.242,25.515,18.164,32.898,24.883,24.997,20.368,27.959,24.976,17.983,16.593,21.947,15.356,25.874,14.482,26.057,14.781,21.665,26.327,11.499,21.359,20.049,20.307,23.105,11.844,-0.99,23.863,18.352,12.087,10.274,12.541,16.2,12.208,19.934,11.893,19.246,16.14,22.78,16.726,-3.274,17.999,12.621,12.857,19.123,4.46,19.164,11.824,5.649,3.59,9.828,17.379,15.337,16.052,15.686,20.968,12.803,9.312,1.382,6.698,11.66,7.826,3.377,-0.495,5.537,12.62,-1.309,8.394,14.09,10.502,-2.025,12.686,13.538,8.089,0.284,15.253,10.853,-0.955,6.19,14.478,9.932,4.753,1.624,14.821,-2.333,1.398,11.933,9.026,-0.343,17.177,16.081,9.825,-0.264,3.844,9.212,9.234,6.098,8.433,5.455,6.114,10.528,14.621,0.136,13.104,13.256,2.365,-0.815,-5.71,-7.314,3.52,11.807,7.471,3.673,8.869,8.067,6.029,0.447,-4.335,3.437,7.641,-3.631,-2.665,2.518],[18.01,22.113,15.897,32.471,25.446,16.606,26.718,26.946,27.195,11.716,24.066,21.217,21.27,19.264,23.368,23.879,19.456,17.534,11.777,13.363,10.525,20.483,13.137,-1.558,10.925,17.571,15.777,3.347,16.305,19.759,5.978,-0.211,8.554,5.34,12.1,14.223,8.014,14.379,-1.358,3.163,10.671,10.866,-1.322,7.646,12.052,15.506,-0.183,14.574,-0.176,8.237,9.044,6.554,7.641,4.675,9.222,2.971,-4.29,3.764,-7.664,1.541,5.406,14.571,13.091,-2.786,22.173,12.564,26.938,30.942,25.913,17.602,21.445,25.523,18.517,33.332,25.105,24.582,20.389,27.954,25.563,18.255,16.346,21.771,14.873,26.349,15.134,26.098,14.829,20.915,26.166,11.398,21.43,20.733,20.2,23.012,11.993,-0.855,23.603,18.129,12.558,10.288,12.292,16.593,11.799,19.802,11.844,19.196,16.246,23.382,16.493,-3.354,18.245,12.663,13.077,19.371,4.503,19.585,11.735,5.831,3.423,9.296,17.335,15.307,16.698,16.228,20.557,12.606,9.615,0.975,6.882,11.647,7.733,3.598,-0.326,5.347,12.609,-1.414,8.297,14.491,10.583,-1.833,12.736,13.595,7.899,0.24,15.208,10.59,-0.888,6.239,14.747,9.939,4.432,1.582,14.854,-2.738,1.439,12.147,8.942,-0.161,16.458,16.003,9.265,-1.068,3.793,8.663,8.611,6.214,8.278,5.345,6.119,10.28,14.493,0.039,13.137,12.809,2.523,-0.889,-5.998,-7.643,3.536,11.459,7.525,4.591,9.195,9.234,6.235,0.973,-4.179,3.53,7.471,-3.777,-2.574,2.428],[17.985,22.278,15.832,32.405,25.542,16.539,26.79,27.023,26.833,11.762,24.074,21.419,21.538,19.112,23.375,23.894,19.29,17.56,12.027,13.365,10.384,20.616,13.286,-1.585,10.959,17.784,15.824,3.4,16.371,19.802,6.113,-0.082,8.459,5.379,12.273,14.242,8.035,14.25,-1.154,2.979,10.178,10.854,-1.506,7.768,12.078,15.379,-0.136,14.531,-0.318,8.244,9.186,6.545,7.708,4.72,9.123,3.039,-4.096,3.737,-7.832,1.572,5.462,14.528,12.942,-3.013,22.211,12.917,26.811,31.0,25.967,17.355,21.583,25.511,18.382,33.04,25.646,23.97,20.506,28.254,25.774,18.676,15.973,21.798,14.467,26.619,15.158,25.865,15.04,20.416,26.062,11.115,21.137,20.465,20.006,23.793,12.074,-1.049,23.363,18.355,12.835,10.582,12.103,16.802,11.476,19.72,11.693,19.267,15.921,23.163,16.257,-3.451,18.243,12.652,13.491,19.348,4.391,19.921,11.726,5.676,3.373,9.455,17.071,15.709,17.313,16.064,20.9,12.91,9.373,0.4,6.644,11.277,7.916,3.55,-0.494,5.363,12.506,-1.709,8.796,14.554,11.101,-1.527,12.616,12.992,8.202,0.68,15.22,10.652,-0.781,6.241,14.343,9.828,4.239,1.54,14.389,-2.422,1.463,13.116,9.173,-0.207,15.994,16.219,8.858,-0.859,4.107,7.748,8.545,6.374,8.256,5.354,6.748,10.497,14.302,0.004,12.976,12.864,2.19,-1.113,-6.335,-8.047,2.842,11.205,8.036,4.698,9.215,9.265,5.976,1.066,-4.657,3.745,7.525,-3.882,-2.594,2.208],[17.924,22.481,15.636,32.341,25.616,16.431,26.804,27.1,26.536,11.732,24.047,21.461,21.687,18.949,23.383,23.912,19.209,17.562,12.187,13.367,10.364,20.794,13.369,-1.73,10.989,18.095,15.671,3.509,16.494,19.805,6.354,0.187,8.135,5.409,12.379,14.314,7.967,14.08,-1.06,2.713,9.84,10.851,-1.599,8.015,12.144,15.121,-0.118,14.467,-0.449,8.29,9.415,6.465,7.735,4.864,8.968,2.988,-3.889,3.981,-8.062,1.613,5.526,14.542,12.855,-3.196,22.468,12.877,26.068,31.019,25.715,17.267,21.541,25.318,18.035,32.6,26.254,24.08,20.763,28.045,25.489,19.243,16.239,21.944,14.738,26.232,14.478,26.068,14.728,21.301,26.074,11.313,21.267,20.804,19.926,23.289,11.954,-0.975,23.564,18.024,12.746,10.703,12.313,17.382,12.209,19.294,11.812,19.459,16.083,22.941,16.428,-3.509,18.144,12.459,13.627,19.435,4.616,19.905,11.795,5.968,3.405,9.684,17.215,15.629,17.688,15.519,21.262,12.867,8.847,0.131,6.319,11.418,8.157,3.863,-0.65,5.296,12.459,-0.812,8.861,14.206,11.213,-1.972,12.534,12.793,8.536,0.6,15.261,10.786,-1.227,6.436,14.515,8.654,4.226,1.219,14.305,-2.483,1.404,13.557,9.372,-0.494,16.17,16.251,9.205,-0.597,4.447,7.549,8.99,6.329,8.265,5.07,6.604,10.219,14.233,0.263,12.836,13.123,2.744,-1.441,-6.411,-8.054,3.235,11.098,8.379,4.285,8.887,8.751,6.011,0.6,-4.701,3.774,7.569,-3.923,-2.092,2.208],[17.976,22.589,15.409,32.284,25.548,16.463,26.756,27.082,26.045,11.638,24.106,21.507,21.7,18.928,23.269,23.907,19.134,17.661,12.139,13.421,10.566,20.881,13.241,-1.862,10.971,18.445,15.486,3.708,16.586,19.882,6.661,0.368,8.025,5.534,12.359,14.33,7.893,13.931,-0.999,2.452,9.586,10.767,-1.802,8.174,12.263,14.963,-0.083,14.365,-0.589,8.38,9.622,6.395,7.763,5.098,8.804,3.047,-3.573,4.223,-8.212,1.663,5.628,14.428,12.839,-3.372,23.176,12.755,26.639,30.705,25.715,17.23,21.847,25.381,18.129,33.126,25.788,24.621,20.855,28.129,24.959,19.161,16.308,21.585,14.416,26.672,14.224,25.723,14.667,21.694,25.96,11.264,21.522,20.512,20.02,23.138,12.233,-1.059,23.291,17.815,12.671,10.605,12.178,17.504,12.748,19.478,11.904,20.002,16.384,23.225,17.005,-3.656,18.371,12.325,13.523,19.416,4.746,19.862,11.841,6.489,3.532,9.795,17.0,15.447,17.767,15.393,21.168,12.494,8.567,0.901,6.072,11.941,8.447,3.76,0.035,5.033,12.684,-0.641,8.359,14.499,10.635,-1.643,12.438,13.112,8.449,0.684,14.981,11.0,-1.44,6.04,14.303,8.611,3.899,1.05,14.384,-3.024,1.116,13.031,9.636,-0.576,16.273,16.124,8.777,-0.548,4.72,8.542,9.162,5.949,8.178,5.755,6.256,9.444,14.566,0.254,12.927,12.859,2.557,-1.445,-6.509,-8.069,3.936,11.064,8.041,4.407,8.358,8.297,6.041,0.902,-4.652,3.727,7.252,-4.273,-2.027,2.798],[18.12,22.771,15.184,32.419,25.464,16.473,26.447,27.084,25.781,11.517,24.286,21.581,21.694,18.943,23.203,23.92,19.088,17.757,12.169,13.394,10.709,20.882,13.07,-1.845,10.769,18.745,15.451,3.87,16.516,19.957,6.974,0.618,8.092,5.487,12.269,14.298,7.78,13.801,-0.924,2.236,9.38,10.696,-2.133,8.247,12.256,14.921,-0.068,14.323,-0.763,8.437,9.624,6.412,7.616,5.268,8.697,3.252,-3.263,4.536,-8.212,1.638,5.613,14.355,12.867,-3.454,23.123,12.625,26.326,31.06,24.826,17.461,21.77,25.508,18.68,32.567,24.974,25.049,21.102,27.912,24.686,18.76,16.186,21.72,14.024,26.659,14.475,25.71,14.8,21.509,26.313,11.071,21.395,20.487,20.216,23.251,12.188,-1.199,23.331,18.197,12.745,10.958,12.423,17.15,11.971,19.482,11.714,19.877,16.438,23.327,17.599,-3.673,18.489,12.089,13.111,19.642,4.748,20.309,11.489,6.721,3.927,9.513,16.872,15.505,17.791,15.482,21.349,12.625,9.148,1.603,6.232,12.571,8.807,3.824,-0.081,5.527,13.151,-1.557,8.516,14.855,10.559,-2.053,12.389,13.562,8.343,0.92,14.523,10.851,-1.146,5.949,13.973,9.358,3.531,0.845,14.13,-2.811,0.97,12.9,9.691,-0.058,15.886,15.751,8.34,-0.489,5.105,8.757,8.943,5.791,8.102,6.09,6.745,8.421,14.784,0.181,12.528,12.656,2.227,-1.669,-6.639,-8.379,3.514,11.515,8.428,4.908,8.18,8.471,6.149,1.177,-4.381,3.898,7.447,-4.346,-2.342,3.039],[18.27,22.987,15.031,32.673,25.375,16.401,26.267,27.038,25.63,11.378,24.447,21.542,21.622,19.045,23.359,24.003,19.037,17.854,12.165,13.157,10.823,20.986,12.898,-1.772,10.503,18.981,15.511,4.011,16.374,20.037,7.203,0.888,8.162,5.449,12.377,14.362,7.777,13.743,-0.951,2.122,9.291,10.601,-2.649,8.288,12.209,14.983,-0.045,14.331,-0.899,8.493,9.624,6.55,7.449,5.505,8.604,3.321,-3.03,4.714,-8.186,1.577,5.682,14.288,12.823,-3.463,22.577,12.318,25.691,31.063,24.443,17.429,21.408,25.648,19.145,32.693,24.493,25.174,21.552,28.426,24.964,18.656,15.77,22.123,14.426,26.292,14.179,26.016,15.012,22.095,26.108,10.86,21.409,20.987,20.104,23.259,12.182,-1.067,23.405,17.941,12.443,11.286,12.165,16.814,11.954,19.11,11.584,19.462,15.699,23.326,18.076,-3.624,18.841,11.704,13.103,19.442,4.62,20.278,11.347,6.733,3.562,9.512,16.922,15.753,18.126,15.548,21.396,12.794,9.331,0.871,6.593,12.594,8.972,3.682,-0.202,5.753,13.324,-1.654,8.491,14.379,10.72,-2.377,12.304,13.368,8.893,0.782,14.686,10.702,-0.982,6.309,13.755,9.047,3.57,0.505,14.317,-3.182,0.571,13.227,9.79,0.006,15.601,15.899,8.277,-0.556,5.049,8.116,8.645,5.597,8.215,6.075,6.781,7.191,14.889,-0.053,12.7,12.347,2.555,-1.648,-6.597,-8.443,3.797,11.567,7.989,5.142,8.141,8.171,6.072,1.148,-4.256,3.929,7.893,-4.263,-1.973,3.125],[18.259,23.088,15.053,32.716,25.287,16.255,26.205,27.108,25.432,11.225,24.566,21.485,21.436,19.116,23.585,24.122,18.937,17.877,12.124,13.152,10.878,21.134,12.725,-1.747,10.374,19.223,15.57,4.021,16.294,20.074,7.22,0.965,8.163,5.485,12.56,14.366,7.897,13.722,-1.129,2.099,9.163,10.519,-3.214,8.437,12.286,15.007,-0.029,14.47,-0.987,8.387,9.597,6.627,7.18,5.801,8.339,3.37,-2.727,4.693,-8.231,1.502,5.748,14.351,12.71,-3.365,22.882,12.161,25.217,31.279,25.049,17.47,21.748,25.738,19.089,33.198,24.705,25.211,21.607,28.736,25.161,19.276,15.832,22.351,14.107,26.229,13.745,25.62,14.765,22.696,25.78,10.636,21.123,20.305,20.415,23.523,12.307,-1.242,23.538,18.278,12.056,11.068,12.579,16.348,12.817,19.305,11.435,19.845,15.592,23.583,18.227,-3.683,19.196,11.678,13.156,19.227,4.948,20.317,11.493,6.853,3.707,9.545,17.036,15.007,18.272,15.856,21.569,12.859,8.862,0.927,6.189,12.25,9.125,3.756,0.28,5.311,13.345,-1.312,7.94,14.239,10.933,-2.867,12.288,13.319,9.466,0.758,14.732,10.548,-1.427,6.308,13.915,8.548,3.352,0.6,14.458,-3.828,0.483,13.504,9.567,-0.643,15.712,16.09,8.356,-0.402,4.68,8.433,9.01,5.464,8.432,6.091,6.471,7.014,14.914,-0.141,12.519,11.947,3.092,-1.453,-6.387,-8.205,4.289,11.268,7.829,5.111,8.283,8.24,6.305,1.138,-4.124,3.843,7.987,-4.523,-1.71,3.231],[18.226,23.2,15.129,32.656,25.14,16.178,26.167,27.213,25.192,11.077,24.735,21.453,21.208,19.096,23.843,24.318,19.006,17.775,12.219,13.349,10.876,21.356,12.625,-1.928,10.318,19.393,15.546,4.051,16.185,20.142,7.223,1.07,7.94,5.454,12.676,14.189,7.892,13.833,-1.178,2.04,9.007,10.506,-3.743,8.6,12.51,15.06,-0.036,14.634,-1.11,8.28,9.614,6.56,6.916,5.933,8.199,3.462,-2.449,4.614,-8.18,1.46,5.742,14.486,12.566,-3.28,23.266,12.249,25.484,31.115,25.581,17.767,21.659,25.87,18.751,32.313,25.17,25.376,21.321,28.514,25.313,19.127,16.196,22.373,13.911,26.442,14.192,25.591,14.383,21.956,25.841,10.772,20.694,20.861,20.52,23.835,12.1,-1.35,23.484,17.905,11.974,10.723,12.708,15.99,12.774,19.535,11.595,20.188,16.229,23.858,18.002,-3.721,18.918,11.93,13.403,19.012,4.926,20.607,11.759,6.836,3.593,10.072,17.066,14.97,18.486,16.029,21.695,13.049,8.545,1.858,6.153,12.268,8.741,3.788,-0.071,5.514,13.061,-1.396,8.51,14.653,11.078,-3.542,12.124,13.544,9.115,0.589,14.205,10.66,-1.528,6.142,13.973,8.542,3.546,0.858,14.159,-3.616,0.329,13.413,9.923,-1.218,15.694,16.488,8.492,-0.482,5.098,8.482,9.244,5.223,8.217,6.209,6.667,7.494,14.458,-0.041,12.919,12.199,2.916,-1.524,-6.474,-8.382,3.872,11.007,8.155,5.341,7.837,8.724,6.473,1.077,-3.996,3.905,7.48,-4.274,-1.577,3.065],[18.252,23.312,15.329,32.495,25.155,16.234,26.205,27.299,25.208,10.914,25.001,21.534,20.945,19.172,23.891,24.443,19.058,17.605,12.354,13.447,10.898,21.634,12.664,-2.155,10.352,19.38,15.502,4.049,16.239,20.216,7.182,1.137,7.712,5.463,12.788,14.005,7.948,13.959,-1.134,2.06,9.011,10.453,-4.203,8.623,12.777,15.088,-0.144,14.789,-1.244,8.309,9.639,6.379,6.76,5.999,8.267,3.468,-2.373,4.564,-8.15,1.422,5.893,14.626,12.448,-3.253,23.721,12.173,25.093,30.748,24.653,17.505,20.936,25.687,18.773,32.687,25.111,25.464,21.568,28.089,25.768,17.879,15.87,22.681,14.029,26.412,14.765,25.626,14.636,21.044,25.599,10.868,20.884,20.413,20.251,24.409,12.29,-1.435,23.569,17.706,11.938,10.212,12.652,16.007,12.148,19.534,11.801,20.229,15.767,23.929,17.73,-4.059,18.565,12.104,13.685,18.594,4.352,21.221,11.74,6.827,3.334,10.234,16.985,15.69,18.863,16.022,21.704,13.068,8.512,2.115,5.883,12.2,8.901,3.535,-0.026,5.866,12.588,-1.419,8.807,14.253,11.02,-3.87,11.946,13.683,9.13,0.734,14.509,10.833,-1.539,6.24,13.909,8.535,3.546,0.863,14.244,-3.555,0.013,13.515,10.167,-1.318,16.15,16.523,8.378,-0.722,5.629,7.891,9.365,4.843,7.888,6.157,6.961,7.214,14.508,-0.2,12.987,12.635,2.3,-1.397,-6.387,-7.955,4.147,10.902,7.4,5.382,6.818,9.172,6.284,0.906,-3.657,4.064,7.249,-4.098,-1.084,3.018],[18.144,23.562,15.63,32.492,25.298,16.334,26.097,27.176,25.212,10.8,25.256,21.42,20.659,19.134,23.933,24.51,18.998,17.42,12.417,13.455,10.994,21.912,12.747,-2.31,10.43,19.254,15.507,3.836,16.318,20.218,7.198,1.012,7.577,5.412,12.809,13.896,8.124,14.052,-1.069,2.039,9.128,10.371,-4.478,8.641,13.11,15.122,-0.215,14.833,-1.349,8.17,9.72,6.143,6.497,6.1,8.198,3.498,-2.314,4.522,-8.043,1.275,6.123,14.701,12.382,-3.201,23.577,11.455,25.155,30.918,23.992,17.346,20.822,25.447,19.565,33.09,24.577,25.617,21.816,28.526,26.567,17.161,15.571,22.517,14.668,26.358,14.92,25.523,15.135,21.645,25.687,10.172,20.566,20.818,20.13,23.534,12.691,-1.216,23.63,18.522,11.768,9.877,12.758,15.716,11.925,19.494,11.836,20.609,15.509,23.88,17.656,-4.123,18.792,12.254,13.753,18.672,4.391,21.205,11.601,7.059,3.999,9.71,16.912,15.322,19.007,15.933,21.715,12.867,8.621,1.688,5.672,12.277,8.904,3.885,0.57,5.866,12.275,-1.393,8.423,14.492,11.215,-4.328,12.214,13.523,8.998,0.804,15.114,10.457,-1.399,6.624,14.155,8.651,3.33,1.055,14.091,-3.896,-0.232,13.702,10.036,-1.269,16.528,16.684,8.112,-1.365,5.706,8.474,8.927,4.695,7.785,5.956,7.12,7.261,15.026,-0.388,13.069,12.622,2.756,-1.295,-6.757,-7.949,3.946,10.881,7.281,5.237,6.32,8.799,6.166,1.011,-3.472,4.363,7.282,-3.975,-1.049,3.424],[18.074,23.751,15.968,32.697,25.454,16.478,25.921,27.087,25.09,10.471,25.451,21.464,20.466,19.003,23.881,24.508,19.11,17.275,12.439,13.47,10.948,22.085,12.724,-2.288,10.523,19.188,15.511,3.734,16.101,20.125,7.295,0.924,7.515,5.451,12.785,13.853,8.322,14.036,-1.053,1.878,9.26,10.417,-4.501,8.685,13.378,15.227,-0.358,14.813,-1.443,8.128,9.662,5.916,6.207,6.142,8.064,3.652,-2.108,4.416,-8.037,1.175,6.294,14.783,12.354,-3.133,23.333,11.78,25.456,31.287,23.833,17.426,20.819,25.744,19.298,32.607,24.329,25.642,22.066,28.529,26.515,17.36,15.619,22.318,14.956,26.473,14.624,25.849,15.28,22.388,25.699,10.18,20.143,20.313,20.402,23.797,12.942,-1.214,23.5,18.145,11.965,9.918,12.512,15.756,12.374,19.114,11.644,20.917,16.461,24.457,17.615,-3.995,19.181,11.863,13.947,18.548,4.288,20.859,11.636,7.029,3.644,9.761,16.741,15.368,18.514,15.727,21.903,12.965,8.673,0.593,5.799,12.556,9.202,3.991,0.554,5.204,12.724,-1.665,8.412,14.432,11.219,-4.97,11.878,13.87,8.755,0.722,15.36,10.609,-1.324,6.467,14.348,9.089,3.628,1.358,14.125,-4.081,-0.442,13.688,10.102,-0.988,16.709,16.564,8.295,-1.702,5.51,8.492,9.042,4.584,7.684,6.112,7.168,7.851,15.416,-0.518,12.917,12.293,2.771,-1.341,-6.823,-7.946,3.841,10.814,7.508,5.459,6.579,8.541,5.827,1.042,-3.472,4.504,6.75,-3.889,-0.756,3.084],[18.066,23.806,16.113,32.899,25.669,16.547,25.843,27.188,24.805,10.253,25.614,21.595,20.364,18.814,23.814,24.662,19.274,17.175,12.572,13.525,10.843,22.075,12.647,-2.238,10.598,19.12,15.419,3.693,16.062,19.95,7.477,0.832,7.551,5.509,12.86,13.949,8.41,13.985,-1.166,1.845,9.516,10.425,-4.357,8.65,13.573,15.498,-0.49,14.739,-1.568,8.149,9.597,5.596,6.056,6.112,7.952,3.787,-1.833,4.234,-8.028,1.135,6.318,14.845,12.356,-3.132,23.655,11.679,25.301,31.157,23.502,17.373,20.746,25.699,19.019,33.168,24.189,25.928,22.036,28.625,25.726,17.715,15.952,22.51,15.19,26.807,15.245,25.933,15.002,21.894,25.69,10.016,20.335,20.296,20.22,24.353,12.736,-1.347,23.717,17.941,11.845,10.066,12.535,15.945,12.907,19.689,11.89,21.049,15.998,24.421,17.626,-4.098,19.131,11.432,14.15,18.383,4.131,20.884,11.698,7.131,2.954,9.991,16.405,14.888,18.492,15.69,21.666,12.52,8.091,1.23,5.619,12.615,9.226,4.048,-0.367,4.84,13.018,-1.78,8.891,13.631,10.995,-5.473,12.244,14.409,9.344,0.775,15.52,10.654,-1.611,6.68,14.089,9.325,3.372,0.948,13.834,-4.401,-0.454,13.586,10.223,-1.059,16.576,16.533,8.579,-1.599,5.239,8.01,9.035,4.117,7.263,5.984,7.26,7.833,15.332,-0.576,12.912,11.771,2.635,-1.174,-6.793,-7.673,4.081,10.606,7.589,5.599,6.777,8.343,5.918,0.857,-2.994,4.466,6.34,-3.422,-0.385,2.94],[18.126,23.731,16.209,33.114,25.842,16.466,25.953,27.273,24.493,10.245,25.715,21.529,20.362,18.634,23.893,24.94,19.526,17.166,12.788,13.544,10.723,21.979,12.547,-2.302,10.612,19.204,15.289,3.625,16.095,19.678,7.642,0.731,7.47,5.537,12.945,13.921,8.469,13.889,-1.333,1.825,9.805,10.525,-4.285,8.669,13.68,15.772,-0.439,14.561,-1.688,8.091,9.519,5.223,6.012,5.995,7.787,4.036,-1.753,4.117,-8.031,1.076,6.29,14.87,12.184,-2.954,23.877,11.176,25.124,31.495,23.606,16.891,20.566,25.707,19.376,33.609,24.539,26.279,21.985,28.812,26.607,17.903,16.326,22.147,15.301,26.76,15.53,25.706,14.84,21.128,25.641,9.599,20.141,20.526,19.856,23.844,12.695,-1.488,23.804,18.66,11.556,10.267,12.618,15.622,12.931,20.015,12.027,20.719,15.607,24.182,17.834,-4.101,18.769,11.65,13.886,18.408,3.669,21.238,11.503,7.382,3.378,9.984,16.797,15.387,18.251,15.708,21.331,12.393,8.228,1.258,5.561,12.894,9.567,4.196,-0.343,5.091,13.3,-2.235,8.932,14.3,11.237,-5.229,12.159,14.353,9.325,0.496,15.4,10.653,-1.859,6.694,14.492,9.061,3.01,0.815,13.637,-3.988,-0.442,13.783,9.872,-1.609,16.45,16.391,9.118,-1.418,5.387,7.939,8.423,4.237,6.968,5.658,7.199,7.437,15.243,-0.662,13.083,11.892,2.982,-1.159,-6.842,-7.499,3.723,10.494,7.098,5.131,6.897,8.505,5.553,1.064,-2.344,4.466,6.445,-3.533,-0.231,3.07],[18.326,23.632,16.287,33.375,25.869,16.402,26.161,27.404,24.425,10.119,26.032,21.283,20.311,18.562,23.844,24.91,19.849,17.162,12.975,13.516,10.656,21.927,12.493,-2.347,10.605,19.332,15.294,3.529,16.196,19.477,7.877,0.658,7.333,5.659,13.072,13.828,8.437,13.801,-1.632,1.793,10.001,10.621,-4.314,8.603,13.652,15.99,-0.382,14.432,-1.732,8.056,9.432,4.986,6.039,5.746,7.627,4.133,-1.927,4.108,-8.0,1.201,6.325,14.974,12.006,-2.703,23.208,11.122,25.196,31.939,23.685,16.737,20.068,25.855,19.402,33.324,25.128,26.384,21.938,28.712,27.161,18.143,15.87,22.462,14.999,26.468,15.051,25.81,15.262,20.591,25.426,10.21,20.596,20.621,19.34,23.943,13.195,-1.47,24.036,18.419,11.527,10.218,12.423,15.488,12.566,19.986,12.196,20.468,16.081,24.603,18.539,-4.161,18.236,12.196,13.933,18.489,3.502,21.123,11.361,7.469,3.534,9.706,17.136,15.543,18.161,15.195,21.06,12.705,8.557,0.496,5.576,12.924,9.568,3.92,-0.333,5.337,13.618,-2.286,9.009,14.081,11.229,-4.344,12.149,14.435,8.79,0.158,15.272,10.784,-1.661,6.828,14.554,9.236,3.086,1.028,13.49,-4.271,-0.635,14.026,9.876,-1.472,16.045,16.18,9.364,-1.093,5.509,7.816,8.754,4.221,6.676,5.65,7.121,6.722,15.141,-0.445,13.087,12.217,3.003,-0.928,-7.297,-7.866,4.28,10.356,7.132,4.827,6.613,8.82,5.066,1.005,-2.721,4.566,6.766,-3.853,-0.345,2.656],[18.551,23.529,16.068,33.512,25.774,16.335,26.222,27.536,24.563,9.984,26.409,21.011,20.269,18.455,23.848,24.804,20.052,17.207,13.133,13.563,10.635,21.871,12.42,-2.314,10.657,19.392,15.332,3.332,16.407,19.269,8.133,0.581,7.595,5.687,13.077,13.75,8.455,13.776,-1.917,1.737,10.196,10.639,-4.423,8.482,13.575,16.079,-0.409,14.285,-1.681,8.182,9.399,4.957,6.003,5.513,7.316,4.134,-2.169,4.029,-7.999,1.377,6.422,15.063,12.057,-2.451,23.151,11.047,24.897,32.021,22.893,16.822,20.428,25.895,19.413,33.691,24.851,26.623,21.846,29.047,26.348,18.619,15.542,22.521,15.28,26.777,15.016,26.08,15.065,20.22,25.68,10.077,20.369,20.229,19.596,23.944,13.692,-1.27,23.697,18.769,11.165,10.037,12.391,15.595,12.551,20.307,12.099,20.824,16.402,24.398,18.521,-4.111,17.907,12.306,13.801,18.262,3.606,20.908,11.718,7.741,3.2,9.686,17.152,15.017,17.906,14.92,20.775,12.427,8.089,0.654,5.67,12.96,9.799,4.005,-0.736,5.58,14.302,-2.116,9.096,13.667,11.078,-3.619,12.516,14.773,8.839,-0.082,15.095,10.575,-1.663,6.654,14.597,9.708,3.171,1.529,13.358,-4.448,-0.52,14.345,10.039,-1.117,16.464,16.078,8.943,-1.364,4.93,7.351,8.745,4.175,6.567,5.9,7.341,7.014,15.449,-0.318,13.152,12.029,3.096,-0.836,-7.347,-7.896,4.182,10.164,7.87,4.797,5.997,8.597,4.646,0.885,-2.553,4.595,6.769,-3.602,-0.423,2.823],[18.733,23.465,15.866,33.598,25.676,16.219,26.054,27.548,24.619,9.763,26.533,20.823,20.27,18.421,23.95,24.677,20.164,17.216,13.268,13.587,10.63,21.874,12.412,-2.222,10.698,19.218,15.367,3.085,16.503,19.118,8.359,0.517,7.886,5.678,13.014,13.609,8.633,13.858,-2.029,1.67,10.274,10.684,-4.441,8.551,13.574,16.153,-0.497,14.112,-1.618,8.433,9.356,5.09,5.877,5.34,6.978,3.991,-2.207,3.968,-7.975,1.462,6.516,15.196,12.049,-2.192,23.601,11.109,25.198,31.812,23.173,16.571,20.415,26.286,19.503,33.975,24.497,26.981,21.755,29.383,26.508,19.186,16.154,22.305,14.924,26.626,14.823,25.966,14.938,20.174,26.083,9.725,20.622,19.453,19.797,24.112,13.24,-1.176,23.502,18.769,11.094,10.246,12.44,15.757,13.026,20.345,11.796,20.987,16.578,23.988,17.989,-4.0,18.099,11.999,13.963,18.137,3.387,20.928,11.702,8.164,2.885,9.857,16.985,15.392,17.987,14.746,20.58,12.064,8.468,1.115,6.073,12.981,9.966,4.128,-0.528,5.42,15.048,-2.968,9.279,13.989,11.073,-3.833,12.317,14.637,9.097,-0.283,14.608,10.527,-1.566,6.879,14.703,9.369,3.077,1.454,13.191,-4.775,-0.043,14.714,10.048,-1.082,17.166,15.783,9.375,-1.761,4.765,7.259,8.278,4.243,6.853,5.697,7.38,7.719,16.056,-0.229,13.349,12.053,2.87,-0.728,-7.449,-7.762,3.791,10.414,7.459,4.413,5.653,8.052,4.123,1.272,-2.348,4.74,6.434,-3.092,-0.417,2.992],[18.89,23.517,15.728,33.597,25.697,16.33,25.861,27.597,24.753,9.592,26.54,20.809,20.337,18.294,24.051,24.51,20.152,17.235,13.185,13.636,10.718,21.997,12.377,-2.006,10.804,18.939,15.346,2.827,16.487,19.091,8.569,0.465,8.08,5.758,13.064,13.449,8.726,13.863,-2.266,1.599,10.349,10.768,-4.569,8.706,13.756,16.216,-0.628,13.946,-1.5,8.387,9.141,5.139,5.708,5.211,6.89,3.837,-2.049,3.9,-7.982,1.515,6.587,15.347,11.998,-1.988,23.115,10.986,25.304,31.847,23.539,16.565,20.586,26.373,19.399,33.987,24.12,26.981,21.783,29.361,27.273,19.681,15.995,22.78,14.538,26.374,14.557,25.408,15.06,19.922,25.698,9.71,20.796,19.904,19.282,24.411,13.064,-1.059,23.689,18.567,11.739,10.734,12.5,15.454,13.771,20.778,12.181,20.539,16.657,24.167,17.698,-3.811,17.989,11.679,13.681,18.146,3.513,21.081,11.692,7.876,2.734,9.893,17.075,15.694,18.157,15.19,20.587,11.963,8.835,0.707,6.339,12.81,10.441,4.242,-0.415,5.006,15.325,-3.234,9.617,13.763,11.324,-3.555,12.344,14.516,9.428,-0.421,14.393,10.787,-1.366,7.178,14.749,9.415,2.758,0.738,13.07,-4.928,-0.533,14.927,9.99,-1.157,16.876,15.844,9.534,-1.679,4.628,7.753,8.507,4.003,6.941,5.475,7.359,7.122,16.05,-0.249,13.524,11.78,3.003,-0.132,-7.979,-7.821,3.983,10.193,7.261,4.349,5.436,7.994,4.238,1.473,-2.12,4.839,6.193,-3.135,-0.475,2.752],[19.004,23.531,15.555,33.589,25.759,16.468,25.633,27.693,24.772,9.68,26.601,20.957,20.441,18.108,24.234,24.533,20.369,17.186,13.023,13.607,10.89,22.059,12.429,-1.842,10.98,18.918,15.476,2.665,16.541,19.101,8.726,0.324,8.156,5.824,13.152,13.175,8.703,13.761,-2.506,1.294,10.483,10.9,-4.827,8.768,14.109,16.009,-0.749,13.862,-1.319,8.155,9.103,5.093,5.615,5.138,7.067,3.836,-1.875,3.851,-8.091,1.54,6.553,15.389,11.786,-1.886,23.05,10.398,25.442,32.155,23.953,16.422,20.539,26.212,19.582,33.502,24.149,26.717,21.841,29.143,27.435,19.865,15.913,22.767,14.805,26.651,14.788,25.574,14.83,19.803,25.378,9.359,20.333,19.844,19.028,23.923,13.38,-0.627,23.697,18.879,11.432,10.722,12.613,15.596,13.727,20.882,12.346,20.87,16.365,24.134,17.899,-3.542,17.654,12.393,13.626,18.14,3.43,21.001,11.631,7.99,2.584,9.941,17.2,15.598,17.568,15.185,20.643,12.159,9.227,0.485,6.303,12.852,10.454,4.261,-0.669,5.285,15.181,-2.781,9.884,13.676,11.445,-3.903,12.782,14.815,9.375,-0.766,14.317,10.857,-1.259,7.098,14.951,9.975,2.597,0.952,13.121,-4.48,-0.037,15.14,10.071,-1.705,16.911,15.59,9.032,-1.505,4.553,7.711,8.244,4.147,6.703,5.758,7.394,6.046,15.709,-0.121,13.54,11.339,3.279,-0.128,-8.236,-8.053,3.707,10.04,7.719,3.961,4.886,7.819,4.593,1.109,-2.149,4.735,6.15,-3.155,-0.272,2.925],[19.147,23.474,15.45,33.57,25.84,16.427,25.561,27.743,24.709,9.626,26.697,20.976,20.532,17.878,24.393,24.645,20.78,17.115,13.007,13.621,11.095,22.046,12.474,-1.745,11.287,18.874,15.631,2.453,16.717,19.093,8.757,0.241,8.185,5.778,13.18,12.895,8.726,13.703,-2.608,1.181,10.46,11.019,-5.12,8.786,14.471,15.864,-0.932,13.867,-1.2,7.939,9.135,5.092,5.52,5.028,7.159,3.899,-1.715,3.933,-8.131,1.482,6.42,15.327,11.511,-1.96,23.536,10.702,25.754,31.904,23.86,16.073,20.149,26.064,20.075,33.294,24.207,27.198,21.517,29.158,27.258,19.565,16.024,22.815,14.4,26.746,14.51,26.294,15.052,19.758,25.465,9.747,20.792,19.908,19.054,24.262,13.11,-0.55,23.634,19.072,11.258,10.332,12.761,15.543,12.724,21.021,11.925,21.502,15.894,24.112,18.447,-3.533,17.795,12.282,14.062,18.206,2.449,21.024,11.767,8.822,2.352,9.897,17.444,15.693,17.527,15.169,20.74,11.783,9.005,0.505,6.437,12.875,10.619,4.112,-0.831,5.632,15.037,-2.82,9.872,13.195,11.304,-3.911,12.526,15.062,9.618,-0.849,14.243,10.757,-1.187,6.913,14.392,9.954,2.653,0.752,12.876,-4.627,0.104,15.484,10.112,-2.401,16.689,15.624,9.829,-1.354,4.734,7.907,8.118,4.578,6.678,5.691,7.188,6.405,16.188,0.244,13.393,10.942,2.957,-0.609,-8.51,-8.06,3.423,10.128,7.722,4.068,4.998,7.83,4.977,0.793,-2.11,4.695,6.652,-3.142,0.022,3.054],[19.28,23.39,15.266,33.344,26.008,16.441,25.708,27.685,24.68,9.583,26.89,20.808,20.619,17.613,24.619,24.752,21.047,17.025,12.965,13.864,11.245,22.151,12.521,-1.811,11.533,18.81,15.779,2.092,16.842,19.158,8.929,0.308,8.24,5.633,12.989,12.59,8.835,13.689,-2.645,1.339,10.436,10.989,-5.279,8.87,14.764,15.805,-1.188,13.944,-1.274,7.893,9.122,5.207,5.612,5.05,7.103,3.887,-1.484,4.115,-8.14,1.444,6.266,15.368,11.386,-2.194,23.496,10.918,25.257,31.561,23.666,15.891,20.634,26.243,20.129,33.923,23.966,26.95,21.553,29.281,27.026,19.506,15.697,23.168,14.414,26.595,14.155,26.519,15.242,19.592,25.571,9.521,21.232,20.14,18.722,24.818,13.411,-0.757,23.894,19.326,11.349,10.287,13.05,15.489,12.404,21.297,12.23,20.975,15.939,24.203,17.795,-3.483,17.95,12.017,14.032,17.858,1.618,21.286,11.551,8.587,2.176,10.27,17.494,15.834,17.589,15.359,20.663,11.156,8.718,0.346,6.405,12.83,10.576,3.837,-0.703,5.417,14.845,-3.256,9.421,13.129,11.271,-3.961,12.582,15.3,9.621,-0.735,14.452,11.144,-1.168,7.073,14.293,9.475,2.565,0.813,12.983,-5.662,-0.575,15.585,9.881,-2.564,16.089,15.465,9.781,-1.112,4.496,7.63,8.44,4.343,6.816,5.761,7.066,7.358,16.358,-0.311,13.672,10.761,2.938,-0.601,-8.246,-7.996,4.237,9.747,7.147,4.194,4.702,7.976,4.838,1.005,-1.367,4.65,6.637,-3.469,0.333,2.997],[19.287,23.399,15.122,33.151,26.093,16.403,25.82,27.659,24.684,9.645,26.978,20.645,20.775,17.295,24.802,24.887,21.178,16.914,12.984,14.101,11.422,22.268,12.465,-1.88,11.632,18.594,15.852,1.675,16.841,19.201,9.011,0.414,8.258,5.474,12.76,12.334,8.899,13.669,-2.723,1.341,10.278,10.958,-5.398,8.951,14.927,15.756,-1.306,13.971,-1.45,7.954,9.159,5.285,5.759,5.138,7.094,3.92,-1.12,4.322,-8.071,1.41,6.199,15.567,11.34,-2.308,22.765,10.358,24.988,31.67,23.127,15.803,20.854,26.489,20.027,33.702,24.396,27.213,21.764,29.325,27.059,20.157,15.77,23.537,14.551,26.924,14.137,26.26,15.363,19.517,25.875,9.694,20.979,19.571,18.488,24.684,12.99,-0.786,23.738,19.633,11.437,10.591,13.257,15.196,12.739,21.135,12.383,20.8,16.891,24.302,17.443,-3.584,17.644,12.687,14.432,17.144,1.539,21.248,11.298,8.165,2.15,10.797,17.683,16.118,17.713,15.315,20.324,11.216,8.675,0.737,6.497,12.376,10.605,3.839,-0.317,5.177,14.365,-3.262,9.746,12.905,11.054,-4.307,12.549,15.381,9.679,-1.014,14.842,11.079,-1.528,7.049,14.382,9.869,2.763,1.169,12.854,-6.051,-0.036,16.033,10.001,-2.859,16.339,15.611,9.105,-1.46,4.523,6.853,8.434,4.068,6.954,6.202,7.27,6.89,16.357,-0.367,13.687,11.569,3.104,-0.646,-7.895,-8.407,3.973,9.456,6.632,3.882,5.197,7.563,4.804,1.313,-1.518,4.501,6.074,-3.633,0.598,3.348],[19.294,23.382,15.106,33.116,26.028,16.385,25.987,27.792,24.608,9.691,27.013,20.516,20.812,16.904,24.861,24.933,21.225,16.706,13.096,14.278,11.753,22.291,12.399,-1.898,11.616,18.42,15.862,1.424,16.92,19.158,8.932,0.619,8.287,5.307,12.403,12.119,9.05,13.648,-2.961,1.263,10.127,10.898,-5.479,9.053,15.024,15.742,-1.373,13.955,-1.6,7.886,9.133,5.255,5.945,5.09,7.095,4.039,-0.951,4.54,-7.999,1.573,6.315,15.687,11.446,-2.284,23.059,10.87,25.555,31.6,23.311,15.256,20.488,26.386,19.704,33.012,24.704,27.793,21.603,29.511,27.269,20.118,15.709,23.749,14.136,27.047,13.958,26.314,15.183,19.29,25.684,9.615,21.18,19.412,18.235,24.706,12.79,-0.568,23.471,19.604,11.499,11.381,13.401,14.996,12.349,21.074,12.597,21.479,17.652,24.543,17.687,-3.551,17.459,12.928,14.389,16.713,2.092,21.036,11.442,8.464,1.503,10.512,17.814,15.724,17.405,15.291,20.035,11.234,8.878,0.687,6.424,12.137,10.143,3.513,-0.35,5.188,14.736,-2.64,9.809,12.576,10.643,-3.898,12.378,15.609,10.2,-1.339,14.623,10.759,-1.366,7.1,14.177,9.768,2.717,0.82,12.847,-5.755,-0.611,16.442,10.504,-2.935,16.663,15.496,9.268,-2.066,4.625,7.014,8.506,4.306,6.916,6.351,7.182,6.578,16.196,0.275,13.811,11.682,2.767,-0.712,-8.132,-8.239,3.4,9.743,6.837,3.94,5.703,7.717,4.541,0.952,-1.54,4.664,6.432,-3.343,0.681,4.031],[19.382,23.335,15.079,33.073,25.988,16.393,26.107,27.97,24.702,9.773,27.113,20.405,20.793,16.487,24.973,24.939,21.213,16.499,13.13,14.286,12.062,22.317,12.316,-1.925,11.623,18.344,15.865,1.399,17.048,19.049,8.778,0.777,8.294,5.117,11.943,11.958,9.176,13.7,-3.234,1.037,10.089,10.727,-5.359,9.324,15.147,15.781,-1.454,13.864,-1.73,7.85,9.167,5.117,6.127,5.006,7.24,4.242,-0.99,4.683,-7.979,1.717,6.608,15.671,11.549,-2.194,23.378,10.52,25.472,31.571,23.865,14.653,20.632,26.401,20.008,33.322,24.93,27.424,21.512,29.478,27.56,18.893,15.552,23.503,14.482,27.07,13.592,26.24,15.032,18.887,25.672,9.475,20.991,19.652,17.646,24.899,13.19,-0.58,23.906,19.455,11.12,11.433,13.779,15.243,12.719,21.449,12.526,21.802,17.565,24.309,17.678,-3.544,17.576,12.433,14.162,16.388,1.965,20.989,11.385,8.391,1.793,10.858,17.533,16.193,17.194,15.754,20.145,10.694,9.161,0.533,6.59,11.717,9.91,3.549,-0.523,4.867,15.25,-2.914,9.698,12.919,10.259,-4.179,12.392,15.181,10.277,-1.631,13.972,11.36,-1.29,7.27,14.577,9.237,2.522,0.697,13.119,-5.821,-0.44,16.559,10.41,-3.205,16.32,15.636,9.388,-1.777,4.759,7.29,8.686,4.582,6.811,6.617,7.095,6.608,16.075,0.173,13.883,10.976,3.476,-0.482,-8.462,-8.055,3.747,10.085,6.601,3.664,5.616,7.879,4.332,0.973,-1.198,4.884,7.084,-3.051,0.472,4.213],[19.494,23.197,15.052,33.088,26.031,16.436,26.207,28.012,25.079,9.618,27.164,20.242,20.867,15.948,25.078,25.107,21.129,16.396,13.196,14.148,12.355,22.389,12.171,-1.913,11.679,18.447,15.904,1.504,17.211,18.952,8.677,0.716,8.36,5.112,11.663,11.795,9.271,13.679,-3.574,0.863,10.028,10.686,-5.351,9.528,15.208,15.779,-1.537,13.978,-1.659,7.619,9.194,4.916,6.178,4.96,7.436,4.521,-1.017,4.877,-7.968,1.699,6.916,15.596,11.505,-2.002,22.764,10.582,25.024,31.392,23.949,14.58,20.462,26.493,20.141,33.247,24.866,26.923,21.423,29.471,27.652,18.644,15.452,23.668,14.59,27.005,13.483,26.334,15.174,18.487,26.179,9.929,21.212,20.501,17.3,25.142,12.969,-0.627,24.05,19.357,11.266,10.604,13.972,15.247,13.242,21.435,12.427,21.274,16.847,24.226,17.507,-3.457,17.629,12.508,14.214,16.281,1.378,21.29,11.0,8.344,2.199,11.348,17.832,16.589,17.461,15.882,20.403,11.052,9.211,0.932,6.485,11.657,9.525,3.677,-0.575,4.824,15.198,-3.622,9.961,12.6,9.936,-3.818,12.055,14.811,10.565,-1.856,14.495,11.461,-1.818,7.417,14.515,9.642,2.178,0.881,13.001,-5.352,-0.641,15.903,10.403,-3.241,16.005,15.799,9.337,-1.291,4.432,6.693,8.805,4.53,6.649,6.597,7.408,6.666,15.905,-0.057,13.698,10.821,3.524,-0.385,-8.487,-8.209,4.868,9.933,6.236,3.623,5.782,7.527,4.519,1.579,-1.555,5.148,6.88,-3.281,0.347,3.661],[19.521,22.976,14.89,32.998,26.16,16.447,26.37,27.854,25.418,9.466,27.098,20.184,20.939,15.538,25.25,25.338,21.055,16.401,13.317,14.06,12.525,22.371,11.989,-1.812,11.665,18.647,16.206,1.56,17.275,18.987,8.703,0.572,8.372,5.291,11.684,11.629,9.514,13.679,-3.925,0.839,10.11,10.679,-5.544,9.548,15.196,15.591,-1.597,14.201,-1.473,7.111,9.137,4.729,6.166,4.936,7.335,4.693,-1.047,4.995,-7.968,1.72,7.161,15.433,11.452,-1.879,22.62,10.47,25.597,31.541,24.029,14.183,20.643,26.659,20.301,33.011,24.934,27.716,21.209,29.489,27.143,19.343,15.412,23.713,14.38,27.302,13.628,26.466,15.679,18.324,26.081,9.584,21.258,20.699,16.951,24.739,12.587,-0.44,24.103,19.268,11.503,10.403,14.09,15.38,13.208,21.332,12.396,21.223,16.618,24.701,17.666,-3.161,17.329,12.603,13.988,16.24,0.963,21.342,10.923,8.276,1.996,11.203,17.89,16.029,17.5,15.624,20.416,10.847,8.696,1.096,6.524,11.701,9.623,3.476,-0.202,5.074,14.426,-4.286,10.462,12.763,9.918,-4.115,12.219,15.228,10.679,-2.033,15.042,11.106,-1.316,7.695,13.929,10.047,2.288,0.691,12.848,-4.784,-0.52,15.172,10.78,-3.487,16.638,15.776,9.326,-1.505,4.001,6.355,8.731,4.49,6.44,6.784,7.784,7.48,15.961,0.096,13.648,10.892,3.723,-0.536,-8.895,-7.906,4.486,9.965,6.053,3.753,5.852,7.587,4.957,1.506,-1.684,5.305,6.743,-3.309,0.615,3.779],[19.553,23.066,14.795,32.833,26.367,16.423,26.513,27.667,25.57,9.381,27.024,20.238,20.992,15.27,25.283,25.526,21.113,16.517,13.393,13.98,12.595,22.278,11.873,-1.528,11.503,18.552,16.565,1.533,17.251,19.1,8.88,0.469,8.271,5.532,11.7,11.532,9.856,13.664,-4.221,0.908,10.31,10.677,-5.69,9.591,15.217,15.45,-1.778,14.351,-1.155,6.743,9.003,4.614,6.134,4.932,7.192,4.815,-1.003,5.007,-7.996,1.743,7.237,15.179,11.413,-1.799,22.979,10.101,26.223,31.304,24.622,13.58,20.628,26.422,20.607,33.222,25.35,27.724,21.296,29.479,26.53,20.121,15.31,23.688,14.013,27.445,13.368,26.453,15.967,18.599,26.036,9.398,20.965,20.074,16.715,25.247,12.74,-0.553,24.347,19.323,11.1,10.832,14.237,15.683,12.931,21.306,12.132,21.646,16.743,24.753,17.457,-3.122,17.325,12.738,13.915,15.721,0.688,20.872,10.911,8.125,1.918,11.332,18.217,15.912,17.47,15.984,20.26,10.366,8.302,0.921,6.386,11.725,10.268,4.025,-0.168,5.12,14.413,-4.864,10.246,12.726,9.995,-5.045,12.171,15.743,10.564,-2.45,14.774,11.362,-1.169,7.96,13.985,9.997,2.401,0.456,13.087,-4.634,-0.224,14.533,10.732,-3.691,16.653,15.884,9.755,-1.72,4.383,5.797,8.759,4.435,6.264,6.839,8.371,7.491,15.551,0.484,13.267,11.001,3.653,-0.233,-9.044,-8.135,4.468,9.797,6.022,3.539,5.734,7.336,5.019,0.723,-1.432,5.529,6.152,-3.083,0.506,4.479],[19.686,23.348,14.705,32.803,26.536,16.382,26.717,27.604,25.429,9.349,26.894,20.233,21.09,15.036,25.307,25.627,21.224,16.634,13.371,13.821,12.808,22.21,11.738,-1.304,11.338,18.254,16.773,1.391,17.217,19.245,9.223,0.506,8.069,5.7,11.627,11.463,10.017,13.559,-4.501,0.924,10.464,10.734,-5.592,9.762,15.336,15.527,-1.964,14.274,-0.77,6.549,8.834,4.471,6.116,4.914,7.024,4.924,-0.857,5.016,-8.057,1.694,7.19,14.908,11.33,-1.619,23.154,10.278,26.344,31.176,25.005,13.639,20.761,26.343,20.348,32.89,25.602,27.173,21.646,29.16,26.528,20.223,15.054,23.561,14.107,27.068,13.393,26.533,15.615,18.813,25.933,9.74,21.209,19.521,16.283,25.438,13.23,-0.494,24.318,19.451,10.52,10.934,14.237,15.808,12.52,21.389,12.112,21.37,17.181,24.866,17.337,-3.044,17.484,12.692,14.36,15.417,0.612,20.618,10.942,8.467,2.288,11.973,18.647,16.189,17.29,16.522,20.353,10.413,8.701,0.357,6.251,11.642,10.595,4.565,-0.224,4.835,15.086,-5.035,10.36,12.192,9.876,-5.195,12.215,15.127,10.218,-2.848,14.363,11.38,-1.272,8.247,14.176,9.989,2.668,0.492,13.056,-4.837,-0.644,13.955,11.172,-3.719,16.01,15.823,9.712,-1.723,4.218,6.016,8.799,4.75,6.136,6.847,8.082,6.638,14.998,0.173,13.152,10.632,3.942,0.055,-8.472,-8.407,4.458,9.726,6.434,3.486,5.743,7.136,4.732,0.948,-1.521,5.727,6.37,-2.979,0.66,4.018],[19.801,23.548,14.695,32.841,26.57,16.139,26.818,27.588,25.043,9.425,26.724,20.185,21.274,14.813,25.344,25.765,21.252,16.669,13.373,13.843,13.162,22.012,11.48,-1.26,11.224,18.026,16.915,1.272,17.239,19.357,9.579,0.641,8.03,5.666,11.533,11.329,10.056,13.543,-4.737,0.9,10.375,10.803,-5.448,9.934,15.352,15.609,-2.021,14.127,-0.667,6.445,8.783,4.267,6.224,4.782,6.839,4.95,-0.711,4.98,-8.157,1.693,7.027,14.819,11.101,-1.403,23.039,10.031,26.66,31.513,24.369,13.594,20.749,26.505,20.748,32.989,25.711,27.323,21.907,29.29,26.803,19.778,15.206,23.535,14.254,28.009,13.48,26.413,15.708,18.689,26.341,9.946,21.581,19.469,16.293,25.106,12.705,0.004,24.546,19.484,10.681,10.337,14.75,15.453,12.59,21.492,12.178,21.121,17.512,25.033,17.562,-2.869,17.779,12.49,13.804,15.769,0.615,20.7,11.327,9.175,2.109,12.23,18.554,16.057,17.267,16.565,20.86,10.469,8.896,0.377,6.195,11.388,10.314,4.46,-0.299,4.905,15.169,-5.015,10.87,12.55,9.824,-5.177,12.324,15.004,10.705,-3.789,13.911,11.269,-1.048,8.237,14.054,9.946,2.564,0.749,12.736,-4.465,-0.003,13.95,11.579,-3.854,15.83,15.77,9.418,-1.405,3.93,6.231,8.313,4.624,5.979,6.669,7.979,6.659,15.114,0.077,13.041,10.533,4.406,0.073,-8.166,-8.45,4.969,9.723,6.987,3.591,5.336,7.258,4.528,1.606,-1.063,5.389,7.074,-2.539,0.854,3.543],[19.822,23.603,14.905,32.948,26.648,16.008,26.759,27.685,24.666,9.47,26.763,20.152,21.384,14.739,25.131,25.867,21.139,16.596,13.368,13.903,13.603,21.752,11.433,-1.26,11.046,17.997,16.951,1.241,17.349,19.534,9.781,0.752,8.159,5.565,11.372,11.304,10.095,13.544,-5.018,0.914,10.069,10.898,-5.369,10.137,15.275,15.553,-1.907,13.967,-0.659,6.375,8.755,4.177,6.174,4.702,6.879,5.136,-0.482,5.102,-8.176,1.94,6.869,14.88,10.802,-1.169,22.877,9.953,26.132,31.533,23.45,13.256,21.011,26.967,21.169,32.921,25.435,27.106,22.209,29.529,26.806,19.775,15.151,23.748,14.445,27.751,13.236,26.311,15.584,18.538,26.349,9.55,21.194,19.685,16.207,25.335,12.775,0.179,24.68,19.382,10.803,10.073,14.8,15.263,12.835,21.542,12.134,21.042,17.215,24.923,17.835,-2.841,17.929,12.221,13.491,15.861,0.344,20.569,11.184,8.911,1.647,12.049,18.594,16.22,17.163,16.274,20.82,10.325,8.872,1.253,6.335,11.492,10.71,3.927,-0.226,5.16,14.696,-4.657,11.034,12.723,9.645,-4.967,12.565,15.571,11.513,-4.496,14.264,11.491,-1.226,8.305,14.21,10.228,2.667,0.734,12.576,-4.194,0.247,14.178,11.064,-3.814,16.04,15.521,9.388,-1.477,3.939,5.505,8.358,4.684,5.791,6.835,7.896,6.804,15.083,0.513,13.102,10.847,3.833,0.223,-9.276,-8.097,5.242,9.126,7.486,3.247,5.591,7.106,4.334,1.42,-0.585,5.28,6.53,-2.429,0.779,3.906],[19.885,23.569,15.076,33.042,26.69,16.14,26.549,27.866,24.365,9.341,26.94,20.095,21.416,14.752,25.083,25.672,20.927,16.474,13.307,13.948,13.915,21.508,11.665,-1.175,10.854,18.161,16.884,1.109,17.536,19.712,9.837,0.871,8.303,5.441,11.247,11.333,10.178,13.548,-5.321,0.998,9.891,11.125,-5.225,10.22,15.263,15.565,-1.818,13.712,-0.63,6.307,8.737,4.162,6.101,4.625,6.918,5.286,-0.281,5.324,-8.23,2.14,6.843,14.899,10.507,-1.002,23.185,10.248,25.566,31.209,23.662,13.133,21.43,27.239,20.77,33.196,25.138,27.418,21.796,29.546,26.841,20.033,15.559,23.388,14.799,27.128,13.573,26.809,14.977,18.255,26.168,9.181,20.995,20.377,15.889,25.076,12.899,-0.308,24.47,19.187,10.672,10.061,14.864,15.339,12.711,21.293,12.094,20.923,16.449,25.244,17.498,-2.854,17.864,11.99,14.016,15.629,0.213,19.9,10.463,8.787,1.959,12.449,18.566,16.413,17.202,16.226,20.693,10.159,8.752,1.22,6.44,11.536,11.117,3.873,0.234,5.134,14.784,-4.513,10.857,12.179,9.416,-4.654,12.75,15.246,11.597,-4.973,14.608,11.792,-1.095,8.345,14.123,9.771,2.351,0.813,12.495,-4.424,-0.445,14.748,10.755,-3.658,15.883,15.293,9.238,-1.348,3.831,5.127,8.647,4.671,5.522,7.139,8.188,7.199,14.875,0.521,13.025,10.517,4.149,0.587,-8.647,-8.212,4.7,9.031,6.881,3.03,5.712,6.938,4.87,1.413,-0.818,5.529,5.82,-2.488,1.099,4.514],[19.903,23.412,15.2,32.992,26.726,16.169,26.278,27.99,24.227,9.082,27.118,20.179,21.428,14.716,24.97,25.536,20.766,16.379,13.208,14.108,14.141,21.135,11.864,-1.148,10.686,18.402,16.807,0.951,17.611,19.776,9.778,1.013,8.335,5.337,11.198,11.473,10.217,13.707,-5.564,1.029,9.813,11.379,-5.14,10.172,15.363,15.547,-1.713,13.465,-0.798,6.21,8.61,4.22,5.899,4.465,6.892,5.36,-0.113,5.477,-8.282,2.134,6.974,14.742,10.244,-0.957,23.498,9.9,25.271,31.559,23.713,13.358,20.953,27.272,20.983,33.778,25.278,28.025,21.667,29.831,27.383,20.344,15.447,23.73,14.802,27.998,13.862,26.822,15.52,18.394,26.154,9.425,21.659,20.44,15.976,25.341,12.415,-0.181,24.295,18.998,10.758,9.943,15.349,15.412,12.407,21.671,12.392,20.788,16.58,24.998,17.283,-2.823,18.081,11.943,13.955,15.373,-0.075,19.627,10.793,9.223,1.992,12.872,18.467,16.427,17.627,16.39,20.912,10.304,9.218,0.738,6.501,11.2,11.148,4.184,0.167,4.529,14.991,-4.874,10.102,11.978,9.392,-3.793,12.636,14.795,11.448,-5.718,14.483,12.22,-1.53,8.68,13.901,9.799,2.141,0.887,12.336,-4.692,0.045,15.009,11.409,-3.396,16.2,15.29,9.286,-1.456,3.762,5.213,8.718,5.037,5.576,7.271,8.153,6.689,15.272,0.707,12.841,10.283,4.638,0.535,-8.355,-7.811,5.084,8.835,6.289,2.946,5.947,6.872,5.259,1.715,-0.611,5.513,6.337,-2.273,1.221,4.36],[19.89,23.355,15.315,33.053,26.993,16.018,26.165,28.191,24.137,8.866,27.31,20.369,21.466,14.785,25.001,25.523,20.975,16.333,13.04,14.21,14.297,20.723,11.915,-1.247,10.551,18.711,16.848,0.732,17.703,19.832,9.695,1.102,8.353,5.298,11.096,11.571,10.255,13.816,-5.808,1.14,9.872,11.57,-5.019,10.349,15.432,15.473,-1.585,13.4,-1.129,6.202,8.465,4.331,5.655,4.282,6.784,5.572,0.096,5.462,-8.18,2.133,7.223,14.661,10.017,-0.937,23.45,9.092,25.536,32.174,23.675,13.754,20.929,27.176,21.392,33.226,25.264,27.707,21.525,29.687,27.803,20.553,15.305,23.594,14.894,28.218,13.707,26.693,15.692,18.632,25.526,9.311,20.81,20.134,16.244,24.832,12.295,0.046,24.39,19.087,10.94,10.227,15.564,15.177,12.013,21.378,12.551,20.042,17.046,24.464,17.231,-2.867,18.279,11.841,13.8,15.462,0.198,19.392,11.251,9.304,0.866,12.831,18.656,16.44,17.87,16.373,20.883,10.379,9.451,0.471,6.542,10.703,11.154,3.988,0.025,4.594,15.086,-5.252,10.385,12.251,9.866,-3.287,13.077,15.418,11.111,-6.448,14.273,12.29,-1.496,8.412,14.022,10.008,2.28,0.756,12.196,-4.92,0.304,15.394,11.587,-3.417,16.585,15.075,8.857,-1.446,3.852,5.417,8.101,5.287,5.63,7.175,7.784,5.94,14.941,0.591,12.83,10.104,4.268,0.606,-9.083,-7.95,5.481,8.669,5.583,2.658,5.966,6.819,5.163,1.864,-0.012,5.387,6.447,-1.981,1.513,4.154],[19.889,23.499,15.323,33.214,27.357,15.95,26.013,28.472,24.09,8.599,27.463,20.415,21.385,14.837,24.916,25.479,21.11,16.34,12.892,14.196,14.27,20.336,11.94,-1.341,10.451,18.766,17.008,0.395,17.869,19.938,9.485,1.155,8.293,5.307,11.035,11.585,10.31,13.886,-5.936,1.256,9.898,11.617,-4.949,10.432,15.48,15.554,-1.539,13.455,-1.241,6.334,8.326,4.39,5.476,4.118,6.679,5.644,0.399,5.382,-7.996,2.133,7.327,14.723,9.793,-0.851,23.388,9.266,25.625,31.555,24.345,13.529,20.787,26.955,21.287,33.509,25.053,27.802,21.61,30.028,27.356,20.492,15.137,23.405,14.689,27.816,14.057,26.949,15.063,19.137,25.899,8.671,21.318,20.167,16.339,25.07,12.098,-0.556,24.108,19.417,10.678,9.859,15.565,14.953,11.673,21.618,12.591,19.263,16.976,24.885,17.77,-3.048,17.985,12.007,13.721,15.82,0.371,19.109,11.303,9.304,0.848,12.82,18.755,16.645,17.66,16.245,20.722,10.192,9.2,0.202,6.556,10.644,11.15,3.843,0.205,5.344,14.79,-5.654,11.097,12.045,9.514,-3.704,13.178,15.808,11.186,-6.706,14.597,12.065,-2.045,8.425,14.352,10.038,2.848,0.773,12.135,-4.785,-0.609,16.286,11.407,-3.202,16.097,15.006,9.184,-1.27,3.744,5.442,8.171,5.424,5.814,7.001,7.637,6.543,14.651,0.512,12.967,9.608,4.256,0.849,-8.439,-8.063,5.655,8.467,5.351,2.602,5.32,6.703,5.082,1.541,0.072,5.885,6.141,-2.123,1.798,4.184],[19.86,23.761,15.23,33.307,27.632,15.971,25.988,28.534,24.102,8.372,27.659,20.455,21.279,14.779,24.853,25.499,21.194,16.391,12.655,14.131,14.157,19.956,12.058,-1.401,10.405,18.663,17.103,0.14,17.909,20.015,9.35,1.062,8.193,5.545,10.954,11.438,10.358,13.947,-5.925,1.333,9.862,11.535,-5.013,10.296,15.572,15.713,-1.44,13.523,-1.438,6.49,8.242,4.368,5.41,3.974,6.681,5.594,0.456,5.277,-7.775,2.149,7.303,14.83,9.512,-0.676,23.316,9.682,25.408,31.575,24.606,13.359,20.747,27.6,21.243,33.725,24.662,28.352,22.157,30.321,28.271,20.365,15.229,23.493,14.699,28.273,13.653,27.208,14.969,18.991,25.85,8.726,21.635,20.261,16.08,25.116,12.045,-0.68,24.271,19.354,10.47,9.222,15.314,14.762,11.994,21.833,12.293,19.563,16.964,25.134,17.911,-3.07,18.091,11.769,14.095,16.169,-0.288,18.656,11.299,9.116,1.345,12.659,18.728,16.946,17.649,16.438,20.901,10.218,8.941,-0.037,6.315,11.1,10.886,4.146,0.12,4.615,15.286,-5.887,11.32,12.054,9.052,-4.248,12.941,15.166,11.458,-6.445,15.038,12.299,-2.069,8.828,14.322,10.017,3.145,1.011,12.142,-4.283,-0.275,16.887,11.274,-3.225,15.53,15.194,9.623,-1.016,3.585,6.082,8.35,5.826,5.894,7.09,8.076,6.381,14.979,0.508,12.933,9.64,4.721,0.913,-8.012,-7.945,5.218,8.265,5.952,2.543,4.769,6.425,4.809,1.533,-0.311,5.694,6.337,-1.996,1.611,3.971],[19.81,23.994,15.105,33.462,27.855,16.017,26.142,28.444,24.039,8.452,28.075,20.431,21.189,14.753,24.923,25.673,21.227,16.437,12.411,14.132,14.061,19.778,12.144,-1.3,10.323,18.638,17.092,0.024,17.825,20.15,9.52,0.838,8.007,5.716,10.82,11.242,10.462,14.163,-5.83,1.502,9.923,11.476,-5.139,10.201,15.504,15.632,-1.361,13.615,-1.571,6.727,8.132,4.156,5.489,3.921,6.703,5.62,0.167,5.196,-7.575,2.221,7.206,14.98,9.287,-0.51,23.599,8.965,24.898,31.799,24.914,13.099,21.155,27.945,21.384,33.329,24.947,28.425,22.238,30.297,28.371,20.272,15.399,23.33,14.777,28.362,13.181,27.396,15.558,18.576,25.378,8.842,20.726,20.656,15.749,24.589,12.272,-0.331,24.327,19.419,10.729,9.259,15.003,15.033,11.838,21.661,12.502,19.635,16.872,24.807,17.712,-2.799,18.319,11.657,14.053,16.058,-0.667,18.528,11.498,8.739,0.827,12.428,18.641,16.752,18.002,16.77,20.854,9.771,8.977,-0.287,6.139,11.114,10.973,5.013,0.058,4.602,15.382,-6.1,10.655,12.346,9.093,-3.634,12.746,15.088,11.315,-6.284,14.485,12.354,-2.208,8.709,14.3,9.831,3.447,1.016,12.275,-4.344,-0.472,17.353,10.786,-3.092,16.072,15.177,8.794,-1.046,3.45,5.923,8.083,6.451,5.704,6.825,8.196,6.416,14.958,0.479,13.279,9.735,4.355,1.025,-8.184,-7.542,4.879,8.37,6.655,2.284,4.35,6.559,4.522,2.17,-0.318,5.415,5.92,-1.553,1.609,3.706],[19.857,24.123,15.0,33.605,27.929,16.237,26.336,28.304,23.898,8.516,28.43,20.333,21.095,14.655,24.832,25.653,21.103,16.437,12.241,14.226,13.97,19.779,12.26,-1.063,10.274,18.706,16.995,-0.079,17.676,20.34,9.903,0.574,7.753,6.01,10.803,10.979,10.304,14.184,-5.659,1.664,9.916,11.363,-5.244,10.028,15.428,15.506,-1.329,13.689,-1.592,6.978,8.045,3.909,5.63,3.868,6.61,5.549,0.007,5.16,-7.436,2.292,7.026,15.15,9.3,-0.318,24.224,8.596,24.782,32.006,24.873,12.935,20.619,27.202,21.077,33.099,25.514,28.681,22.275,30.15,27.719,19.74,15.135,23.538,14.49,28.599,13.682,27.745,15.575,18.749,25.77,9.13,21.043,20.966,15.731,24.863,11.887,-0.003,24.423,19.468,11.272,9.607,15.239,15.418,10.971,21.728,12.848,19.495,16.588,25.025,17.631,-2.636,18.522,11.883,13.574,15.38,-0.597,18.857,11.417,9.09,0.623,12.797,18.66,16.67,17.948,16.619,20.635,10.167,8.802,-0.988,6.079,10.506,11.101,5.609,0.042,5.069,15.295,-6.008,10.573,12.063,8.999,-3.905,12.924,15.264,11.21,-6.243,14.434,12.256,-2.256,8.538,14.228,10.227,3.335,1.273,12.293,-4.746,-0.27,16.991,10.922,-3.073,16.297,15.186,8.97,-1.211,3.439,5.847,7.949,6.483,5.253,6.48,8.148,7.033,14.962,0.778,13.52,9.226,4.15,1.176,-7.897,-7.178,5.65,8.283,6.614,2.019,4.21,6.247,4.323,2.248,-0.187,5.359,5.532,-1.419,1.448,3.757],[19.719,24.17,15.267,33.803,27.9,16.404,26.369,27.995,23.883,8.536,28.546,20.14,21.07,14.597,24.723,25.425,21.096,16.388,11.909,14.212,13.991,19.701,12.449,-0.811,10.364,18.819,16.771,-0.128,17.546,20.356,10.132,0.269,7.703,6.427,10.791,10.671,10.092,14.267,-5.364,1.785,10.083,11.362,-5.457,9.877,15.325,15.519,-1.373,13.563,-1.449,7.085,8.047,3.775,5.682,3.704,6.44,5.55,0.029,5.186,-7.26,2.323,6.887,15.183,9.373,-0.155,24.688,9.32,24.232,32.074,24.096,12.941,20.928,27.344,21.171,33.723,25.654,28.711,22.403,29.763,28.214,19.833,15.439,23.135,14.57,28.822,13.769,27.866,15.115,18.999,26.188,8.767,21.209,21.148,15.872,24.87,11.834,0.096,23.916,19.214,11.046,9.772,15.44,15.444,10.976,21.479,12.611,19.812,16.292,25.431,18.085,-2.583,18.516,12.111,13.904,15.321,-0.575,20.008,11.559,9.878,0.891,12.469,18.503,16.556,17.765,16.556,21.018,9.761,8.716,-1.453,5.828,10.17,11.131,5.855,0.099,4.979,14.532,-5.784,10.216,11.813,9.517,-4.193,12.951,15.542,10.903,-6.244,14.29,11.78,-2.139,8.262,14.209,10.081,3.362,1.231,12.331,-4.426,-0.164,16.949,11.09,-3.192,16.021,15.265,9.264,-0.744,3.332,6.399,7.704,5.976,4.956,7.09,7.809,7.188,15.217,0.549,13.312,9.636,4.717,1.457,-7.594,-7.786,5.248,8.063,6.509,1.911,4.5,6.253,4.169,2.039,-0.119,5.469,6.169,-0.992,1.458,3.739],[19.573,24.246,15.462,34.245,27.943,16.279,26.285,27.859,23.871,8.569,28.51,19.961,21.182,14.647,24.6,25.15,21.093,16.412,11.682,14.125,13.961,19.659,12.5,-0.651,10.58,19.044,16.529,-0.05,17.412,20.17,10.109,0.081,7.851,6.524,11.007,10.397,9.936,14.2,-5.029,1.962,10.342,11.45,-5.447,9.753,15.368,15.641,-1.41,13.334,-1.306,7.159,8.032,3.739,5.576,3.545,6.393,5.578,0.161,5.3,-7.223,2.231,6.701,15.01,9.463,0.056,24.543,9.569,24.487,32.44,23.806,13.092,20.696,26.831,20.93,34.616,25.379,28.587,22.269,29.471,28.261,20.364,15.485,23.176,14.846,28.0,13.831,26.927,15.295,18.68,25.921,8.705,21.189,21.471,15.987,24.735,11.45,0.07,23.766,19.307,10.956,9.426,14.969,15.018,11.084,21.887,12.514,19.428,16.492,24.765,18.247,-2.313,18.305,12.061,14.002,16.365,-0.544,20.725,12.08,10.241,0.846,12.39,18.266,16.37,17.877,16.267,20.725,9.293,8.123,-1.341,5.984,10.627,11.109,6.198,0.324,5.237,14.578,-5.688,9.81,11.541,9.817,-4.702,12.98,15.334,10.717,-6.103,15.025,11.762,-2.126,8.435,14.448,10.095,3.295,1.16,12.164,-4.036,-0.23,17.055,10.79,-3.226,16.098,14.999,9.117,-0.702,3.122,7.107,7.96,5.431,5.178,6.879,7.839,7.267,15.019,0.665,13.339,10.179,4.115,1.599,-7.321,-7.796,4.941,8.259,6.378,1.738,4.85,6.387,4.63,1.814,-0.057,5.558,5.486,-1.143,1.827,4.118],[19.485,24.167,15.347,34.671,27.804,16.072,26.094,27.808,23.864,8.572,28.348,19.957,21.23,14.766,24.557,24.925,21.168,16.634,11.61,14.158,13.74,19.645,12.569,-0.607,10.751,19.324,16.312,0.065,17.254,20.046,9.959,0.108,7.831,6.56,11.258,10.206,9.89,14.102,-4.792,2.1,10.558,11.646,-5.328,9.636,15.489,15.782,-1.485,13.138,-1.303,7.298,8.025,3.937,5.378,3.463,6.282,5.394,0.373,5.287,-7.399,2.059,6.596,14.858,9.61,0.115,24.832,8.901,25.211,32.952,24.166,13.205,20.793,26.449,20.874,34.571,25.561,28.713,22.318,29.435,28.008,19.874,15.326,23.425,14.764,28.113,13.985,26.998,15.463,18.369,25.802,9.073,21.027,21.242,16.047,24.312,10.712,0.425,23.707,19.446,10.98,9.439,14.562,14.895,10.606,22.0,12.798,19.586,17.068,23.962,18.176,-2.206,18.165,12.061,13.654,16.292,-0.357,20.718,12.362,10.03,0.687,12.591,18.066,16.536,18.095,16.189,20.327,9.621,8.407,-1.625,6.008,11.651,11.592,6.296,-0.075,5.063,14.937,-5.606,10.031,11.25,10.319,-5.022,13.104,15.118,10.995,-5.685,15.164,12.432,-2.097,8.165,14.62,10.257,3.676,1.379,11.831,-3.609,0.022,17.39,10.399,-3.207,16.371,14.712,9.696,-0.731,2.993,7.097,8.222,5.553,5.206,6.83,7.611,7.092,14.605,0.602,13.206,9.583,4.292,1.781,-7.465,-7.145,5.103,8.434,6.671,1.658,5.196,6.166,4.632,1.731,0.178,5.325,4.954,-1.222,1.866,3.901],[19.386,24.102,15.273,34.87,27.807,16.006,25.986,27.714,24.037,8.524,28.175,20.031,21.067,14.771,24.528,24.77,21.301,16.898,11.332,14.306,13.492,19.698,12.71,-0.619,11.011,19.445,16.23,0.139,17.178,20.076,9.812,0.078,7.794,6.644,11.423,10.073,9.944,14.033,-4.668,2.333,10.665,11.939,-5.188,9.636,15.638,15.911,-1.515,13.051,-1.457,7.489,8.066,4.109,5.299,3.428,5.971,5.213,0.431,5.068,-7.651,1.951,6.543,14.878,9.486,-0.074,25.155,8.71,25.379,33.05,24.217,13.894,20.909,26.779,21.046,34.882,25.25,28.061,22.267,29.408,28.42,19.359,14.973,23.096,15.009,28.321,13.869,27.096,14.96,18.649,25.431,9.136,21.312,21.23,16.227,24.484,11.101,0.74,23.493,19.454,11.032,9.946,14.409,15.717,10.751,21.787,13.147,19.956,17.671,24.227,18.362,-2.27,18.325,12.093,13.509,15.821,-0.642,20.47,12.329,9.423,0.9,11.737,17.927,16.663,18.607,15.949,20.634,9.507,8.862,-1.297,6.027,11.361,11.64,6.354,-0.361,5.09,14.909,-4.984,10.034,11.353,10.171,-4.836,13.35,15.277,11.01,-4.988,15.472,12.781,-2.131,8.06,14.881,10.574,3.883,1.478,11.732,-3.557,-0.101,17.26,10.416,-3.277,16.217,14.692,9.568,-0.745,2.812,6.424,7.877,5.825,5.334,6.807,7.384,7.521,14.973,0.252,13.024,9.4,4.357,1.543,-8.124,-7.966,5.293,7.941,7.003,1.861,5.049,6.246,4.717,1.591,0.268,4.924,5.247,-0.888,2.086,3.504],[19.333,24.254,15.402,34.902,27.98,15.955,26.012,27.637,24.209,8.511,28.047,20.164,20.858,14.807,24.402,24.785,21.329,17.074,11.102,14.452,13.173,19.812,12.909,-0.673,11.184,19.416,16.208,0.201,17.266,20.256,9.719,-0.122,7.823,6.832,11.324,9.925,9.894,14.089,-4.574,2.607,10.518,12.222,-5.094,9.637,15.727,16.059,-1.471,13.009,-1.625,7.607,8.079,4.1,5.373,3.479,5.682,5.133,0.339,4.914,-7.976,1.789,6.439,15.086,9.249,-0.274,25.048,9.095,25.345,33.106,24.454,14.754,20.357,27.089,20.965,35.343,24.753,27.638,22.392,29.488,28.429,19.715,14.938,23.083,14.903,28.481,14.076,27.359,14.61,18.768,25.497,8.759,21.171,21.351,16.244,24.506,11.414,0.683,23.606,19.468,11.426,10.652,14.686,16.436,10.82,21.983,13.068,18.974,17.993,24.224,18.411,-2.341,18.429,12.599,13.854,16.0,-0.835,20.729,12.393,8.644,1.45,11.725,17.867,16.423,18.405,16.037,20.682,9.468,8.784,-0.798,5.919,11.126,11.431,6.558,-0.233,5.327,14.219,-4.361,10.128,11.553,9.841,-4.369,13.646,15.687,10.848,-4.537,15.499,12.407,-2.001,8.179,14.818,10.64,3.473,1.476,12.036,-3.551,-0.072,17.271,10.546,-3.3,16.147,14.774,9.073,-0.88,2.658,6.364,7.699,5.637,5.604,6.18,7.554,7.357,15.434,0.29,13.311,9.259,3.668,1.282,-8.686,-8.313,4.88,7.617,7.341,1.876,4.56,6.498,5.125,1.62,-0.04,4.791,5.008,-1.683,1.978,3.47],[19.249,24.477,15.575,34.945,28.147,15.866,26.207,27.665,24.226,8.611,27.868,20.266,20.599,14.949,24.208,24.902,21.273,17.159,11.032,14.467,12.986,19.82,13.197,-0.687,11.317,19.294,16.248,0.276,17.496,20.238,9.501,-0.486,7.778,7.098,11.175,9.719,9.749,14.078,-4.453,2.623,10.247,12.304,-5.039,9.533,15.848,16.144,-1.343,13.131,-1.563,7.785,8.154,4.052,5.411,3.458,5.48,4.927,0.154,4.847,-8.248,1.604,6.409,15.306,9.142,-0.372,25.248,9.287,25.678,33.071,24.546,15.117,20.745,26.97,20.924,35.198,25.317,28.283,22.651,29.47,27.809,19.737,14.723,23.099,14.881,28.398,14.537,27.751,14.932,18.845,25.851,8.41,20.786,21.617,16.582,23.767,10.983,0.209,23.625,19.587,11.648,10.758,14.439,16.369,10.44,22.151,12.975,19.51,18.059,24.452,18.212,-2.408,18.381,12.874,14.454,16.539,-0.132,20.986,12.738,8.973,1.253,11.805,17.964,16.157,18.029,16.215,20.54,9.435,8.721,-0.864,6.045,11.128,10.691,6.367,-0.137,5.763,14.598,-4.49,10.008,10.939,9.53,-3.706,13.807,16.011,10.758,-4.706,15.288,12.547,-1.725,8.011,14.806,10.217,4.041,1.773,12.012,-4.326,-0.067,17.537,10.283,-3.126,16.495,14.738,9.353,-1.09,3.031,7.211,8.111,5.635,5.338,6.489,7.549,6.664,15.644,-0.063,13.499,9.519,4.104,1.278,-9.128,-7.888,4.304,7.646,7.331,1.799,4.446,6.291,4.901,1.451,-0.078,4.966,4.411,-1.854,1.61,3.445],[19.354,24.561,15.604,35.12,28.225,15.873,26.522,27.746,24.28,8.728,27.667,20.409,20.442,15.01,23.906,25.06,21.115,17.174,11.017,14.451,13.054,19.945,13.454,-0.726,11.416,19.178,16.34,0.338,17.814,20.2,9.147,-0.726,7.863,7.169,10.997,9.426,9.515,14.038,-4.391,2.61,10.012,12.169,-5.1,9.314,15.974,16.166,-1.099,13.28,-1.278,8.103,8.276,4.023,5.326,3.467,5.393,4.756,-0.023,4.843,-8.406,1.472,6.495,15.513,9.095,-0.314,25.548,8.851,25.921,33.216,24.025,15.027,20.181,26.562,20.773,35.179,25.811,28.082,22.702,29.486,27.133,19.643,14.584,22.675,15.223,28.09,14.324,27.324,14.907,18.605,26.034,9.187,20.777,21.489,16.769,23.981,10.944,0.158,23.524,19.361,11.985,10.496,14.217,15.779,9.964,21.838,12.942,19.897,18.027,25.066,18.264,-2.527,18.405,12.777,14.256,16.521,0.141,21.03,12.84,9.053,0.872,11.531,17.911,16.552,18.036,16.238,20.647,8.889,8.896,-1.657,6.114,11.433,10.74,6.563,-0.747,6.257,15.402,-4.7,9.954,10.908,9.785,-3.587,13.386,15.989,10.393,-5.098,14.667,12.68,-1.741,7.815,14.84,9.602,3.726,1.545,12.11,-4.811,0.316,17.725,10.234,-3.067,17.185,14.789,9.69,-0.624,3.082,7.757,8.35,5.459,5.408,6.655,7.151,6.559,15.307,-0.131,13.704,10.003,3.468,1.275,-8.705,-8.225,4.67,8.153,7.303,1.712,5.043,6.428,4.543,1.309,-0.054,4.933,4.412,-1.239,1.321,3.419],[19.531,24.583,15.325,35.321,28.017,15.912,26.816,27.709,24.412,8.883,27.38,20.326,20.411,14.893,23.7,25.242,20.756,17.092,11.03,14.515,13.217,20.226,13.511,-0.743,11.565,19.195,16.402,0.188,18.119,20.328,8.952,-0.894,8.118,7.08,10.951,9.142,9.256,13.983,-4.489,2.59,9.885,11.886,-5.25,9.037,15.979,16.291,-0.862,13.377,-1.104,8.475,8.347,4.14,5.255,3.604,5.403,4.646,-0.12,4.882,-8.496,1.314,6.522,15.5,9.287,-0.144,25.388,8.966,25.802,33.543,23.661,15.137,20.47,26.659,20.963,35.31,25.984,26.979,22.805,29.405,27.717,20.228,14.815,22.582,14.904,28.607,14.197,27.928,14.773,18.832,25.793,9.295,20.459,21.657,16.521,24.158,10.74,-0.099,23.88,18.98,11.947,10.3,14.411,15.828,10.054,21.574,13.369,19.895,17.909,24.519,18.105,-2.658,18.395,12.496,13.81,16.414,-0.461,20.679,13.061,8.358,1.383,11.595,18.098,17.203,18.207,16.262,20.615,9.104,8.627,-2.022,6.466,11.031,10.574,7.172,-0.75,6.148,14.866,-4.43,9.786,10.92,10.201,-3.597,12.808,15.871,9.971,-5.068,14.71,13.066,-1.565,7.351,15.266,9.763,3.494,1.305,12.32,-4.702,0.578,17.709,10.032,-2.667,17.527,14.77,9.405,-0.07,2.965,7.7,8.364,5.051,5.738,6.103,7.562,6.808,15.265,-0.366,13.925,9.349,3.269,1.728,-8.241,-8.805,4.531,7.579,7.66,1.874,4.984,6.543,4.419,1.584,-0.287,5.157,4.891,-1.064,1.322,3.363],[19.691,24.51,14.946,35.411,27.938,15.915,27.012,27.653,24.482,9.037,27.073,20.246,20.479,14.746,23.636,25.367,20.365,17.098,10.975,14.683,13.414,20.59,13.479,-0.629,11.622,19.311,16.461,0.132,18.225,20.316,8.786,-0.959,8.375,6.992,10.901,9.147,9.084,13.747,-4.657,2.633,9.922,11.667,-5.303,8.751,15.943,16.536,-0.721,13.324,-1.021,8.836,8.423,4.425,5.22,3.605,5.457,4.401,-0.179,4.894,-8.529,1.2,6.619,15.292,9.349,-0.003,25.451,9.082,25.864,33.646,23.868,15.132,20.838,27.111,21.123,35.358,25.997,26.685,22.696,29.41,27.842,20.411,14.941,22.438,14.761,28.086,14.02,27.259,14.786,19.006,26.016,8.847,20.64,21.786,16.343,23.749,10.879,0.096,24.157,18.734,11.797,10.951,14.583,15.991,11.127,21.305,13.519,19.742,18.062,24.548,18.031,-2.46,18.376,12.083,14.202,16.407,-0.417,19.74,13.124,7.967,1.441,11.703,18.116,17.096,18.356,16.127,20.948,8.966,8.541,-1.885,6.537,11.351,10.318,7.499,-0.593,6.059,14.527,-4.5,9.337,10.605,10.314,-3.984,12.717,15.87,9.734,-4.781,15.189,12.176,-1.199,7.334,15.53,9.847,3.594,1.45,12.139,-4.406,0.075,17.538,9.759,-2.51,17.589,15.14,9.002,0.078,3.197,7.77,8.445,5.053,6.211,6.077,7.814,6.948,15.48,-0.52,13.4,9.035,3.535,1.932,-8.848,-8.61,4.758,7.76,7.671,2.026,5.053,6.556,4.235,1.215,-0.153,4.982,4.741,-0.93,1.396,3.197],[19.681,24.422,14.626,35.374,27.882,15.755,27.074,27.577,24.527,9.149,26.793,20.13,20.669,14.61,23.606,25.47,20.248,17.165,11.116,14.89,13.544,20.767,13.447,-0.348,11.544,19.441,16.484,0.299,18.214,20.203,8.613,-0.928,8.483,6.904,11.006,9.278,8.984,13.445,-4.799,2.65,10.008,11.519,-5.309,8.558,15.987,16.8,-0.684,13.196,-1.007,8.998,8.479,4.682,5.275,3.581,5.521,4.235,0.014,4.736,-8.607,1.225,6.697,14.919,9.481,-0.154,25.26,9.401,26.082,33.472,24.451,14.828,20.048,26.928,20.934,35.602,25.815,26.969,22.492,29.534,26.929,19.98,14.793,22.151,14.416,28.424,14.02,27.416,14.579,19.568,26.746,9.472,20.443,21.84,16.404,23.701,10.869,0.592,24.413,18.542,11.927,11.488,14.532,16.139,11.07,21.144,13.268,20.244,18.25,24.957,18.585,-2.2,18.47,12.402,14.454,16.612,-0.122,19.794,13.295,8.011,0.987,12.047,17.944,16.857,18.228,15.959,20.949,9.174,9.276,-1.604,6.707,11.568,10.491,7.578,-0.627,6.191,14.608,-4.738,9.082,10.881,9.528,-4.582,12.846,16.365,9.541,-4.986,14.45,11.041,-1.385,7.362,15.42,9.377,3.869,1.587,12.262,-3.961,0.138,17.669,9.78,-2.61,17.607,14.921,9.098,-0.357,2.962,8.29,8.597,5.367,6.475,6.345,7.319,6.505,15.51,-0.295,13.157,9.239,3.13,1.689,-9.165,-8.368,4.376,8.121,8.127,1.984,5.189,6.611,4.757,0.889,-0.252,4.992,4.326,-0.906,1.361,3.107],[19.556,24.328,14.469,35.23,27.956,15.42,27.098,27.438,24.719,9.563,26.728,20.009,20.67,14.551,23.64,25.538,20.312,17.27,11.317,14.831,13.493,20.917,13.603,-0.114,11.494,19.545,16.476,0.364,18.368,20.106,8.522,-1.002,8.571,6.9,11.083,9.434,8.918,13.249,-4.964,2.738,10.059,11.316,-5.203,8.565,16.168,17.057,-0.859,13.07,-1.042,9.077,8.512,4.83,5.525,3.629,5.589,4.164,0.088,4.505,-8.718,1.355,6.663,14.737,9.687,-0.465,24.868,9.449,26.048,33.465,24.32,14.191,20.403,26.668,20.989,35.393,26.471,26.867,22.508,29.031,26.59,19.584,14.608,22.174,14.311,28.27,13.556,27.539,14.029,19.988,26.315,9.767,20.537,21.717,16.181,23.772,11.266,0.827,24.316,18.508,11.895,11.259,14.82,16.209,10.226,21.369,13.549,20.558,18.551,24.782,18.819,-2.006,18.222,12.758,14.391,16.53,0.134,20.089,13.1,8.311,1.32,12.077,18.237,17.186,18.136,15.816,20.837,9.198,9.444,-1.209,6.67,11.331,10.294,7.142,-0.536,6.166,14.551,-4.533,9.09,10.994,9.434,-5.402,12.856,16.437,9.711,-5.647,13.923,11.103,-1.487,7.07,15.681,9.41,3.979,1.401,12.195,-3.608,0.338,17.636,9.648,-2.62,17.208,14.904,9.041,-0.469,2.896,8.703,8.452,5.712,6.089,5.905,7.357,6.686,15.011,-0.26,12.82,9.554,3.038,1.199,-8.962,-8.553,3.537,8.309,8.362,2.293,4.723,6.809,5.033,1.309,-0.661,5.182,4.678,-1.412,1.509,2.99],[19.458,24.291,14.479,34.985,28.0,15.367,27.114,27.267,24.923,9.859,26.792,19.985,20.643,14.501,23.637,25.491,20.304,17.275,11.241,14.676,13.397,21.061,13.964,-0.036,11.445,19.526,16.575,0.426,18.652,19.897,8.483,-1.031,8.53,6.897,11.08,9.48,8.819,13.285,-5.207,2.811,10.053,11.177,-5.155,8.726,16.269,17.195,-1.048,13.122,-1.014,9.076,8.496,4.862,5.811,3.777,5.844,4.042,-0.045,4.278,-8.78,1.511,6.643,14.646,9.863,-0.774,24.521,10.027,26.28,33.308,24.441,13.5,20.795,26.153,21.085,35.109,26.158,26.854,22.501,28.86,26.62,19.312,14.302,22.319,14.399,27.816,12.822,27.295,14.203,20.046,26.018,9.79,20.587,21.697,16.026,23.903,10.802,1.16,24.162,18.377,12.389,10.923,14.614,16.201,10.408,21.021,13.792,20.105,18.768,24.902,18.828,-1.797,18.473,12.688,13.759,16.36,0.163,20.782,13.36,7.916,1.569,11.743,18.08,17.76,18.25,15.863,20.559,9.138,9.148,-1.975,6.729,11.508,9.653,7.118,-0.339,6.301,14.39,-4.701,8.836,10.877,9.102,-5.632,12.606,16.867,9.824,-5.672,14.617,12.113,-1.511,7.168,16.018,9.666,3.799,1.229,12.125,-3.399,0.132,17.859,9.467,-3.0,16.99,14.748,9.313,-0.485,3.632,8.922,8.655,6.218,5.908,5.656,7.762,7.072,14.276,-0.201,12.839,9.991,3.034,1.077,-8.955,-9.172,4.4,8.153,8.392,2.537,4.742,6.68,4.977,1.408,-0.732,5.014,5.189,-1.534,1.363,2.634],[19.363,24.242,14.443,34.702,27.93,15.534,27.081,27.078,25.077,10.069,26.767,20.14,20.66,14.387,23.535,25.402,20.125,17.137,10.931,14.547,13.18,21.209,14.382,0.101,11.382,19.496,16.804,0.504,18.877,19.678,8.295,-1.068,8.317,6.895,10.864,9.429,8.652,13.503,-5.501,2.725,10.063,11.301,-5.133,8.833,16.495,17.178,-1.186,13.159,-1.001,9.046,8.464,4.798,6.085,4.033,6.19,4.121,-0.156,4.234,-8.939,1.592,6.639,14.575,10.101,-0.959,23.981,10.289,26.634,32.967,24.595,13.077,20.077,25.986,20.637,34.984,26.149,27.048,22.465,28.88,26.923,19.258,14.426,22.095,14.332,27.808,12.832,27.567,14.575,19.731,26.765,9.814,20.605,21.758,16.136,24.038,11.027,1.667,24.506,18.317,12.949,10.662,14.394,16.147,11.228,20.789,13.361,20.118,18.581,24.839,18.701,-1.54,17.809,12.411,13.772,16.719,-0.245,21.187,13.719,7.75,1.761,11.487,17.939,18.047,18.305,16.17,20.449,9.14,8.643,-2.45,6.477,11.856,9.841,7.611,-0.358,5.971,14.155,-5.342,9.242,11.055,9.16,-5.291,12.276,16.484,9.82,-5.436,14.652,12.456,-1.455,6.919,16.06,9.11,3.947,1.56,12.552,-3.351,0.292,18.006,9.815,-3.011,17.558,14.818,9.607,-0.754,3.593,9.164,8.896,6.653,6.125,5.582,7.755,7.343,14.721,-0.118,12.837,9.706,3.158,0.951,-9.15,-8.786,4.31,8.387,7.887,2.411,5.259,6.614,5.506,1.381,-0.729,5.227,5.069,-1.415,1.323,2.566],[19.24,24.128,14.37,34.581,27.824,15.587,27.118,26.926,25.285,10.405,26.689,20.263,20.662,14.226,23.45,25.39,20.018,17.081,10.812,14.41,12.998,21.333,14.536,0.391,11.249,19.48,17.096,0.548,18.911,19.359,8.191,-1.128,8.086,6.884,10.762,9.486,8.56,13.524,-5.801,2.696,10.004,11.504,-5.116,8.823,16.706,17.123,-1.275,13.146,-0.882,9.042,8.545,4.832,6.207,4.138,6.395,4.284,-0.274,4.233,-9.148,1.543,6.686,14.765,10.341,-0.995,23.97,9.646,26.772,32.772,24.338,13.141,19.79,25.744,20.129,34.811,26.389,27.025,22.168,28.696,27.336,19.511,14.702,22.102,13.859,28.044,13.49,27.377,14.147,20.053,26.405,10.184,20.369,22.092,15.761,23.94,11.052,1.744,24.181,18.441,12.939,10.52,14.005,16.303,10.686,21.052,12.874,21.193,19.152,24.964,18.347,-1.15,17.394,12.294,14.549,16.719,-0.41,20.584,13.988,7.689,1.577,11.266,18.576,17.844,18.476,16.192,20.367,9.208,8.565,-1.721,6.201,11.454,9.973,7.366,-0.872,5.651,14.731,-5.159,9.403,10.878,8.85,-4.724,12.376,16.702,9.953,-5.897,14.458,12.204,-0.959,6.769,16.087,9.645,4.053,1.536,12.846,-3.432,0.105,18.357,9.835,-3.127,18.361,14.827,8.708,-0.796,3.161,9.1,8.536,7.357,6.019,5.853,7.626,7.678,14.919,0.122,13.081,9.207,3.105,0.701,-9.274,-8.643,3.833,9.501,7.793,2.776,5.787,6.823,5.71,1.212,-0.58,5.116,5.012,-1.477,1.067,2.856],[19.208,24.01,14.359,34.64,27.661,15.36,26.934,26.822,25.455,10.712,26.656,20.471,20.619,14.09,23.446,25.415,20.134,17.176,10.848,14.359,12.956,21.592,14.452,0.61,11.059,19.391,17.398,0.472,18.87,19.216,8.126,-1.178,8.012,6.801,10.723,9.565,8.706,13.52,-6.019,2.729,9.991,11.627,-5.006,8.702,16.858,17.226,-1.318,13.128,-0.781,9.056,8.657,4.86,6.279,4.149,6.462,4.253,-0.459,4.339,-9.242,1.357,6.702,14.936,10.511,-0.914,24.255,10.213,26.65,32.961,24.457,12.957,20.233,25.439,20.221,34.908,26.391,26.816,22.17,28.343,27.015,19.209,14.683,22.206,13.774,28.0,13.8,27.423,13.977,19.753,26.061,10.541,20.384,22.285,15.763,23.838,10.354,1.982,24.378,18.364,12.828,10.571,13.872,16.115,10.309,20.727,12.685,20.938,19.607,24.582,18.522,-0.991,17.449,12.16,14.535,16.135,-0.0,20.483,14.075,7.766,1.374,11.149,18.65,17.561,18.465,16.52,19.645,9.384,9.134,-1.803,6.396,11.261,9.504,6.821,-0.338,6.009,14.77,-5.274,8.686,11.146,9.021,-4.044,12.601,16.772,9.996,-6.077,14.49,11.606,-1.044,6.938,16.008,9.349,4.138,1.422,13.005,-4.109,0.762,18.583,9.569,-3.227,18.691,14.793,8.695,-0.991,3.285,8.663,8.382,7.467,5.554,5.863,7.642,7.541,15.283,-0.308,13.107,9.538,3.368,0.808,-9.689,-9.292,4.033,9.48,8.242,2.948,5.613,6.943,5.494,0.92,-0.568,5.084,5.216,-1.964,0.873,2.899],[19.192,23.966,14.335,34.759,27.485,15.087,26.7,26.725,25.494,10.967,26.678,20.744,20.562,13.975,23.436,25.357,20.269,17.21,10.824,14.361,13.053,21.93,14.312,0.757,10.847,19.352,17.543,0.304,18.866,19.165,8.055,-1.093,8.184,6.636,10.694,9.714,8.659,13.561,-6.071,2.88,9.982,11.573,-4.91,8.623,16.831,17.421,-1.298,13.096,-0.706,9.1,8.726,4.821,6.324,4.187,6.456,4.196,-0.675,4.448,-9.296,1.043,6.603,15.137,10.487,-0.936,23.488,10.967,27.105,32.995,24.728,13.036,20.556,24.911,20.568,35.575,26.489,26.604,22.275,27.998,26.423,19.061,14.132,22.351,14.014,27.419,13.053,27.884,14.073,19.537,25.922,10.384,20.517,22.419,15.681,24.029,10.579,2.256,25.13,18.321,12.887,10.748,14.401,16.357,11.026,20.529,12.679,20.689,19.295,24.503,18.002,-0.597,17.361,11.999,14.109,16.446,0.04,21.331,13.634,7.952,1.527,11.308,18.609,17.319,18.585,16.357,19.275,9.137,9.194,-2.025,6.311,11.171,9.154,7.051,-0.206,6.376,14.843,-5.272,8.954,10.92,8.823,-3.33,12.713,16.994,9.625,-5.677,14.657,11.313,-1.076,6.829,15.959,9.195,3.908,1.491,12.804,-4.026,0.882,18.711,9.532,-3.185,18.662,14.743,9.198,-1.28,3.454,8.506,8.475,7.179,5.155,5.799,7.398,7.299,14.853,-0.558,13.373,10.452,2.98,0.841,-9.567,-9.157,4.255,8.911,8.16,2.602,5.322,7.039,5.723,0.771,-0.997,4.975,5.759,-1.645,0.748,2.902],[19.236,23.805,14.101,34.83,27.376,14.933,26.627,26.662,25.522,11.018,26.651,21.03,20.473,13.872,23.402,25.352,20.246,17.347,10.887,14.295,13.2,22.198,14.342,0.838,10.729,19.417,17.426,0.253,18.843,19.09,8.083,-0.879,8.425,6.597,10.607,9.775,8.569,13.699,-5.874,3.045,10.019,11.41,-4.678,8.62,16.709,17.494,-1.338,12.965,-0.664,9.09,8.639,4.838,6.415,4.178,6.526,4.066,-0.843,4.396,-9.345,0.812,6.458,15.225,10.519,-1.041,23.318,10.482,27.06,32.948,24.73,13.398,20.644,24.929,20.383,35.603,25.653,26.645,22.055,27.777,26.758,18.987,13.758,22.208,14.233,27.244,12.919,27.599,14.257,19.894,25.73,10.45,20.723,22.557,15.67,23.863,11.205,2.347,24.998,18.474,13.138,10.505,14.671,16.349,10.984,20.803,13.155,21.735,19.057,24.859,18.583,0.456,17.336,11.744,13.858,16.797,-0.38,21.032,13.303,7.525,0.93,11.798,18.739,17.342,18.588,16.583,19.752,9.447,8.573,-1.762,6.623,11.215,8.649,7.725,-0.628,5.874,14.681,-5.218,9.022,11.099,8.979,-3.37,12.557,17.202,9.576,-5.874,14.821,11.575,-0.904,6.671,15.916,9.773,4.063,1.952,12.514,-3.757,0.569,18.113,9.752,-3.169,18.445,14.678,9.35,-1.085,3.859,8.489,8.984,6.665,4.604,6.062,7.548,7.182,14.989,-0.782,13.652,10.186,2.691,0.756,-9.285,-8.874,4.398,8.796,8.177,2.625,4.968,6.914,5.574,0.778,-1.485,4.692,5.625,-1.383,0.581,3.087],[19.288,23.655,13.924,34.831,27.225,14.993,26.501,26.924,25.39,10.969,26.565,21.222,20.42,13.947,23.444,25.307,20.165,17.485,11.065,14.328,13.324,22.12,14.367,0.844,10.637,19.595,17.274,0.158,18.85,19.041,8.087,-0.725,8.546,6.781,10.548,9.715,8.638,13.78,-5.673,3.116,10.211,11.256,-4.405,8.794,16.485,17.518,-1.332,12.955,-0.667,9.042,8.418,4.714,6.397,4.267,6.617,3.863,-0.958,4.27,-9.289,0.765,6.337,15.241,10.486,-1.19,23.4,10.151,27.097,33.071,24.589,13.644,20.543,25.519,20.094,34.687,26.012,26.863,21.943,28.299,27.186,19.224,14.128,22.106,13.894,27.739,12.947,27.083,14.258,20.376,25.871,10.551,20.601,22.98,15.709,23.363,10.796,2.309,24.234,18.363,12.938,9.948,14.659,16.407,10.862,20.93,13.602,21.938,19.151,24.883,18.804,1.05,17.571,11.991,13.497,16.441,-0.414,20.761,13.461,7.352,0.975,11.605,18.475,17.071,18.432,16.642,20.069,9.805,8.365,-1.578,6.738,11.345,8.638,7.375,-0.215,6.158,14.634,-5.075,8.847,11.175,9.428,-3.917,12.223,17.214,10.005,-5.974,14.856,12.259,-1.144,6.899,16.023,9.459,4.557,2.234,12.279,-3.11,0.914,17.878,9.609,-3.176,18.476,14.656,9.437,-0.96,3.501,8.16,9.103,6.677,4.157,5.978,7.599,7.346,15.306,-0.826,13.311,9.582,2.778,0.646,-9.711,-9.163,3.876,9.191,8.344,2.9,5.429,6.784,5.46,0.514,-1.374,4.652,5.519,-1.392,0.372,3.089],[19.332,23.689,13.778,34.835,27.125,15.257,26.456,27.393,25.335,10.958,26.542,21.369,20.369,14.131,23.554,25.114,20.045,17.421,11.275,14.45,13.279,21.95,14.124,0.864,10.492,19.567,17.081,0.168,18.933,19.204,8.014,-0.555,8.458,6.942,10.521,9.614,8.721,13.886,-5.555,3.173,10.36,11.252,-4.139,9.003,16.313,17.59,-1.163,13.001,-0.653,8.921,8.169,4.542,6.451,4.35,6.81,3.742,-1.09,4.183,-9.254,0.809,6.33,15.178,10.335,-1.35,23.135,10.293,26.602,33.379,24.144,14.243,20.707,25.954,20.139,34.873,26.333,26.676,22.098,29.004,26.911,19.39,14.795,22.067,13.721,27.811,13.125,27.316,14.002,20.754,25.76,10.43,20.268,23.145,15.563,22.9,10.646,2.448,23.919,18.165,12.731,9.789,14.113,16.47,10.689,20.907,13.428,20.969,19.391,24.262,18.395,0.414,17.293,11.956,13.277,16.693,-0.295,21.242,13.11,7.631,0.719,11.789,18.28,17.161,18.729,16.622,19.812,9.678,8.974,-1.647,6.56,10.807,9.338,6.934,0.128,6.515,14.248,-4.539,9.217,10.93,9.449,-4.26,11.935,16.863,10.441,-5.455,14.618,12.177,-1.092,7.219,16.131,9.516,4.659,1.827,12.549,-2.686,0.876,17.597,9.688,-3.026,18.635,14.859,9.43,-1.214,3.467,7.86,8.419,6.674,4.223,5.634,6.974,7.163,14.854,-0.686,13.557,10.049,2.663,0.391,-9.35,-9.346,3.383,8.869,8.476,2.814,5.693,6.726,5.259,0.151,-0.892,4.555,5.345,-1.456,0.359,2.606],[19.348,23.629,13.687,35.036,27.175,15.47,26.512,27.839,25.292,10.978,26.541,21.52,20.336,14.328,23.596,24.865,20.017,17.433,11.387,14.472,13.085,21.819,13.869,0.848,10.24,19.425,16.903,0.215,19.059,19.397,8.025,-0.434,8.233,6.995,10.547,9.538,8.871,13.846,-5.462,3.211,10.399,11.272,-3.919,9.098,16.104,17.545,-1.106,13.078,-0.638,8.751,7.906,4.464,6.534,4.289,6.885,3.709,-1.148,3.986,-9.219,0.79,6.234,15.136,10.293,-1.472,23.416,10.647,26.609,33.077,23.827,14.794,20.229,26.129,20.624,35.353,25.817,26.291,21.848,29.216,26.769,19.233,14.808,22.019,14.182,27.333,13.468,27.523,14.156,20.758,25.715,10.196,20.155,23.34,16.085,23.137,11.306,2.116,24.118,18.296,13.027,9.687,14.439,16.161,11.208,20.171,13.312,20.594,19.496,24.329,18.697,0.353,17.653,11.772,13.754,16.654,-0.119,21.347,12.935,7.628,0.589,11.581,18.052,17.352,18.399,16.685,19.119,9.339,9.207,-1.218,6.45,10.2,9.701,7.345,-0.017,6.202,14.514,-4.375,9.266,10.873,9.069,-4.246,12.451,16.66,10.159,-5.497,15.137,11.818,-0.877,7.038,16.014,9.967,4.103,1.865,13.075,-2.625,0.803,17.486,10.167,-2.966,18.857,14.719,9.409,-0.8,4.159,8.279,8.061,6.492,4.314,5.693,7.273,7.478,14.766,-0.829,13.49,10.155,2.698,0.33,-8.801,-9.582,3.981,8.689,8.363,2.639,5.173,6.256,5.265,0.627,-1.392,4.663,5.126,-1.834,0.426,2.606],[19.401,23.509,13.744,35.129,27.163,15.337,26.481,28.072,25.143,10.952,26.455,21.702,20.125,14.654,23.681,24.662,20.115,17.367,11.679,14.526,12.908,21.728,13.941,0.784,9.891,19.259,16.903,0.161,19.119,19.39,8.121,-0.407,8.025,7.086,10.667,9.52,8.98,13.884,-5.431,3.213,10.462,11.317,-3.787,9.018,15.948,17.399,-1.1,13.287,-0.556,8.554,7.655,4.449,6.389,4.169,6.923,3.783,-1.126,3.896,-9.08,0.888,6.179,15.04,10.372,-1.624,23.235,10.331,26.879,33.23,24.252,14.593,20.513,26.467,20.585,35.494,25.843,26.569,21.852,28.947,27.21,19.051,14.764,22.38,13.825,27.128,13.367,27.496,14.721,20.564,25.637,10.923,20.389,23.281,16.356,24.195,11.125,2.417,24.476,18.292,12.533,9.278,14.386,16.196,11.328,20.108,13.186,21.432,19.598,24.586,18.382,0.775,17.859,11.534,14.077,16.429,-0.197,20.911,13.313,7.842,1.188,11.387,18.217,17.363,18.284,16.007,19.067,8.875,8.915,-0.643,6.196,10.213,9.311,8.015,0.282,6.111,15.039,-4.955,8.982,11.094,8.876,-3.529,13.054,16.487,9.914,-5.565,14.951,12.042,-1.432,7.115,15.862,9.906,4.219,2.004,12.946,-2.618,0.643,17.626,10.229,-2.926,18.748,14.909,9.348,-0.596,4.419,8.434,7.928,6.771,4.637,5.544,7.515,7.766,15.132,-0.839,13.157,9.652,2.619,0.23,-9.134,-9.837,4.432,9.134,8.327,2.445,5.56,6.097,5.15,0.791,-1.886,4.429,5.284,-2.321,0.332,2.968],[19.654,23.451,13.853,35.131,27.064,15.176,26.343,28.024,25.123,10.807,26.449,21.764,20.028,14.818,23.961,24.648,20.247,17.125,12.052,14.526,12.816,21.659,14.147,0.871,9.563,19.133,16.853,0.155,19.138,19.216,8.299,-0.315,7.826,7.221,10.749,9.489,8.935,13.9,-5.505,3.204,10.444,11.524,-3.73,8.848,15.968,17.205,-1.135,13.429,-0.476,8.457,7.494,4.523,6.293,4.069,7.01,3.96,-1.036,4.012,-8.944,1.105,6.195,14.877,10.414,-1.855,23.011,10.266,27.014,33.532,24.428,14.334,20.835,26.565,20.304,34.89,25.614,26.855,22.201,29.553,27.024,19.526,14.191,22.715,13.674,27.1,12.77,27.176,14.543,20.438,25.656,10.842,19.955,23.483,16.57,24.192,11.19,2.592,23.897,18.467,12.646,9.073,14.241,16.089,11.243,20.595,13.38,21.455,19.833,24.132,18.042,0.358,17.548,11.265,14.244,16.496,-0.441,20.771,13.422,7.55,1.036,11.532,18.237,17.32,18.129,16.352,19.07,9.193,8.643,-0.405,5.904,10.992,9.051,7.396,0.111,6.772,15.476,-4.426,9.226,11.184,9.402,-3.018,12.799,15.884,10.062,-5.62,14.474,11.968,-1.044,7.338,15.864,9.986,4.602,1.913,13.091,-2.704,0.623,17.725,9.916,-3.027,18.506,15.317,9.233,-0.587,3.795,7.824,8.051,6.598,5.234,5.702,7.065,7.792,14.923,-0.537,13.165,9.863,2.936,0.032,-9.398,-9.327,3.838,9.117,8.341,2.38,5.114,6.05,5.317,0.556,-1.565,4.402,5.645,-2.295,0.163,2.966],[20.015,23.423,13.94,35.087,26.751,15.057,26.164,27.912,25.219,10.619,26.455,21.756,20.149,14.74,24.249,24.691,20.316,16.919,12.191,14.53,12.862,21.56,14.214,0.902,9.418,19.081,16.813,0.154,19.187,18.91,8.439,-0.285,7.617,7.347,10.844,9.544,8.825,13.896,-5.444,3.181,10.334,11.726,-3.645,8.734,16.017,16.945,-1.368,13.495,-0.473,8.384,7.478,4.789,6.33,3.989,7.035,4.143,-0.966,4.233,-8.844,1.279,6.123,14.871,10.441,-1.956,22.892,10.463,26.617,33.43,23.882,14.175,19.985,26.468,21.017,35.056,25.656,26.614,21.814,29.56,27.028,19.809,14.114,22.477,14.139,27.263,12.725,26.82,14.025,20.65,25.341,10.162,20.18,23.318,16.602,24.35,12.147,2.531,23.869,18.543,12.902,8.662,14.14,16.328,11.934,21.09,13.653,21.074,20.104,23.85,18.241,0.589,17.196,11.082,13.999,16.091,-0.402,21.144,13.457,7.64,0.827,11.257,17.78,17.452,18.288,16.636,19.033,9.493,8.364,-0.021,5.734,11.993,8.76,7.152,0.209,6.764,15.523,-4.385,8.824,11.069,9.058,-3.064,12.196,15.825,9.859,-6.052,13.875,12.131,-0.246,7.32,15.89,10.188,4.509,2.11,13.547,-2.715,0.948,17.724,9.713,-3.222,18.398,15.337,8.952,-0.699,3.21,7.526,7.645,6.068,5.786,5.898,7.032,7.997,14.793,-0.18,13.404,10.182,3.287,-0.136,-8.886,-9.004,3.559,9.126,8.119,2.414,4.955,5.939,5.461,0.759,-1.738,4.609,6.037,-2.317,0.624,2.843],[20.344,23.296,14.096,35.098,26.3,14.885,25.959,27.761,25.169,10.394,26.334,21.593,20.307,14.677,24.472,24.683,20.326,16.807,12.318,14.587,12.927,21.432,14.084,0.91,9.353,19.185,16.903,0.11,19.252,18.779,8.52,-0.21,7.332,7.367,11.044,9.703,8.743,13.806,-5.41,3.258,10.176,11.863,-3.556,8.679,16.028,16.801,-1.664,13.537,-0.295,8.313,7.418,5.135,6.298,3.915,7.017,4.15,-0.823,4.423,-8.738,1.411,6.159,14.939,10.504,-2.009,22.986,10.584,26.698,33.231,23.824,13.998,19.749,26.546,21.42,35.828,25.919,26.607,21.58,29.26,27.056,20.63,14.951,22.938,14.093,27.168,12.677,26.848,14.329,20.827,25.441,10.302,20.511,23.347,16.406,24.378,12.339,2.488,24.417,18.411,12.638,8.76,14.001,16.367,12.052,20.623,13.35,21.288,20.404,23.515,18.25,1.21,16.97,10.983,13.615,15.502,-0.274,20.911,13.571,7.973,0.81,11.217,17.916,17.617,18.191,16.152,18.31,9.145,8.1,0.106,5.506,11.874,8.633,7.736,0.3,6.451,15.301,-4.755,8.984,11.377,9.228,-3.181,12.358,15.971,9.571,-5.524,13.804,12.497,-0.87,6.895,15.684,9.996,4.105,1.825,13.742,-2.297,1.106,17.829,9.902,-3.605,17.985,15.197,9.052,-1.138,3.405,7.808,7.225,6.638,6.25,6.116,7.123,7.707,15.007,-0.2,13.179,10.445,3.308,-0.088,-8.501,-9.666,4.118,9.459,7.551,2.281,5.123,6.204,5.615,0.967,-2.047,4.274,5.698,-2.353,0.711,3.242],[20.65,23.118,14.034,35.238,25.985,14.99,25.866,27.642,25.178,10.207,26.319,21.346,20.453,14.728,24.749,24.69,20.232,16.72,12.404,14.526,12.999,21.284,13.909,0.998,9.288,19.216,16.979,-0.03,19.303,18.782,8.633,-0.067,7.092,7.409,11.195,9.703,8.776,13.691,-5.477,3.216,10.036,11.969,-3.468,8.765,16.027,16.763,-1.895,13.67,-0.018,8.278,7.359,5.42,6.224,3.988,6.955,3.986,-0.81,4.62,-8.667,1.487,6.189,14.96,10.623,-2.154,22.743,10.493,26.864,33.548,23.998,13.869,20.676,26.133,21.069,34.82,25.236,26.567,21.767,29.233,26.916,21.663,14.822,23.252,14.197,26.456,12.879,26.83,14.015,20.585,25.064,10.093,20.304,23.051,16.631,24.479,11.759,2.412,24.148,18.516,12.419,9.259,14.148,15.633,11.654,20.141,13.339,21.212,20.655,23.469,18.328,1.282,17.666,11.106,14.051,15.804,-0.767,20.562,13.585,7.448,0.869,11.482,18.353,17.746,18.05,16.282,17.741,9.075,7.794,0.393,5.086,12.061,8.897,7.606,0.085,6.743,14.996,-4.349,9.607,11.111,9.503,-3.06,13.256,15.902,9.688,-5.498,13.798,12.529,-1.126,7.007,15.436,9.977,4.302,2.001,13.932,-2.332,1.192,17.731,10.186,-3.741,17.744,15.456,8.943,-1.628,3.764,8.068,7.338,7.073,6.884,6.113,7.091,7.623,14.819,-0.21,13.105,10.336,2.784,-0.25,-9.191,-9.058,4.794,9.463,6.949,2.368,5.467,5.858,5.822,0.81,-1.824,4.274,5.655,-2.758,0.535,3.715],[20.867,22.886,14.071,35.141,25.827,15.193,25.654,27.54,25.215,10.13,26.51,21.055,20.678,14.885,24.975,24.665,20.088,16.451,12.23,14.579,13.159,21.131,13.701,1.061,9.323,19.147,17.064,-0.228,19.328,19.023,8.636,0.09,6.876,7.48,11.284,9.566,8.95,13.627,-5.383,3.155,9.921,12.077,-3.311,8.995,16.039,16.697,-2.088,13.711,0.149,8.199,7.415,5.618,6.253,4.165,6.892,3.973,-0.96,4.795,-8.666,1.239,6.146,14.783,10.694,-2.544,22.202,10.402,26.852,33.54,24.225,14.225,20.731,25.995,20.947,35.112,25.128,26.573,22.042,29.111,26.785,21.888,14.295,23.308,13.925,26.476,12.888,26.631,14.38,20.353,24.833,9.852,20.149,22.848,16.64,25.127,11.732,2.527,23.964,18.311,12.072,9.552,14.395,15.715,11.846,20.368,13.476,21.085,20.645,23.446,18.326,1.367,18.263,10.809,14.6,16.103,-0.919,20.467,13.6,7.878,0.814,11.512,18.287,17.888,18.451,16.751,17.937,9.091,7.853,0.577,5.121,11.804,8.909,7.487,0.782,6.847,14.496,-4.104,9.314,11.222,9.514,-3.182,13.43,16.055,9.9,-6.151,13.576,12.344,-0.291,7.147,15.579,9.919,4.656,2.016,14.217,-2.565,1.509,17.792,10.179,-3.973,17.603,15.388,8.551,-1.438,3.998,8.267,7.516,6.798,7.043,6.449,7.105,7.804,15.258,-0.068,13.384,10.021,3.318,-0.719,-8.992,-8.976,4.53,9.465,6.526,2.438,5.269,5.776,5.798,0.574,-1.564,4.455,5.856,-3.357,0.431,3.646],[20.92,22.722,14.229,34.915,25.73,15.299,25.4,27.466,25.188,10.164,26.692,20.934,20.7,15.149,25.144,24.645,20.068,16.245,12.036,14.791,13.202,21.061,13.633,1.161,9.335,19.089,17.218,-0.259,19.255,19.443,8.598,0.312,6.799,7.482,11.217,9.505,8.996,13.515,-5.238,3.179,9.89,12.059,-3.183,9.162,16.207,16.617,-2.235,13.605,0.2,8.079,7.593,5.465,6.24,4.255,6.876,4.405,-1.035,4.932,-8.6,0.982,6.174,14.664,10.727,-2.979,21.805,10.718,26.891,33.135,23.983,14.3,20.786,26.249,21.299,35.938,25.361,26.503,21.417,28.741,27.113,21.434,14.352,23.291,13.685,27.039,12.985,26.02,14.503,19.856,24.985,10.151,20.453,22.132,16.931,25.448,12.012,2.785,24.235,18.177,12.039,9.453,14.735,15.459,11.912,20.216,13.595,21.331,20.626,23.504,18.133,1.561,18.098,10.822,14.653,15.149,-0.817,20.344,13.487,8.148,0.147,11.977,18.45,17.838,18.378,16.962,18.381,8.833,7.858,0.523,5.056,11.575,8.548,7.881,1.141,6.789,14.541,-4.446,8.906,11.147,9.36,-2.978,12.909,15.997,10.181,-5.77,13.689,12.76,-0.33,7.391,15.432,9.583,4.51,2.075,13.961,-2.204,1.442,17.882,10.246,-3.979,17.714,15.365,8.383,-1.033,4.019,8.324,7.525,6.932,6.931,6.565,7.058,7.763,15.02,-0.361,12.998,9.881,3.033,-1.125,-8.845,-9.547,4.435,9.443,6.481,2.545,5.317,6.42,5.86,0.154,-1.67,4.356,6.196,-3.828,0.36,3.77],[20.822,22.619,14.264,34.835,25.675,15.173,25.309,27.461,25.204,10.368,26.786,20.812,20.49,15.488,25.225,24.822,20.194,16.116,12.047,14.936,13.339,21.037,13.603,1.29,9.243,18.899,17.337,-0.218,19.094,19.556,8.51,0.474,6.84,7.466,11.096,9.561,8.859,13.473,-5.176,3.162,9.811,12.029,-3.014,9.141,16.389,16.574,-2.252,13.43,0.137,7.999,7.845,5.231,6.199,4.277,6.97,4.784,-1.041,5.157,-8.564,0.915,6.23,14.481,10.62,-3.298,22.108,10.541,26.682,33.471,23.671,14.376,20.613,26.032,21.418,35.328,24.87,27.11,21.256,28.899,27.115,21.544,14.597,23.505,13.964,26.71,13.417,25.846,14.441,20.223,24.534,9.927,20.745,22.166,17.31,25.272,11.687,2.86,24.278,18.437,12.173,9.482,14.894,15.268,11.527,19.885,13.678,21.011,20.397,23.51,18.164,1.83,18.037,11.037,14.974,15.243,-1.098,20.985,12.846,7.589,0.159,12.045,18.908,17.771,17.634,16.674,18.911,8.787,7.798,1.33,4.998,11.395,8.698,7.634,0.854,6.944,14.695,-4.533,9.3,10.691,9.673,-2.631,12.419,16.084,10.371,-5.657,14.084,12.85,-0.977,7.059,15.286,9.77,4.56,2.302,14.062,-1.895,1.216,18.205,10.096,-4.044,17.903,14.897,8.748,-1.336,3.704,8.081,7.273,6.721,6.736,6.603,6.998,7.464,14.335,-0.71,12.625,10.398,3.195,-1.437,-8.58,-8.948,5.201,9.744,6.975,2.892,5.422,6.314,5.662,0.281,-2.304,4.29,6.277,-4.199,0.554,3.74],[20.721,22.739,14.338,34.858,25.652,14.994,25.329,27.44,25.086,10.539,26.861,20.841,20.367,15.903,25.207,24.93,20.333,16.161,12.098,15.061,13.487,21.063,13.316,1.263,9.186,18.617,17.292,-0.137,18.922,19.5,8.318,0.667,6.885,7.506,10.993,9.492,8.971,13.596,-5.271,3.119,9.741,11.924,-2.9,8.952,16.388,16.612,-2.254,13.32,0.073,7.992,7.893,5.281,6.128,4.245,7.033,4.838,-1.06,5.376,-8.516,0.788,6.243,14.261,10.63,-3.567,22.441,10.419,26.808,33.176,23.878,14.838,20.46,26.219,21.426,34.768,24.68,27.714,21.163,29.191,26.749,21.48,14.714,23.523,14.446,26.261,13.439,26.243,14.356,20.155,24.701,9.926,19.953,22.493,17.562,25.16,11.193,2.617,24.387,18.797,11.893,9.412,14.983,15.594,11.487,20.213,13.758,21.103,19.969,24.173,17.457,1.805,18.0,10.698,15.273,15.567,-0.976,21.194,12.89,7.793,0.738,12.112,18.459,17.643,17.673,16.618,18.839,8.851,7.543,1.308,5.007,11.607,8.855,7.143,1.002,6.661,14.616,-4.022,9.804,11.023,9.776,-2.339,12.866,16.078,9.835,-5.535,14.195,12.474,-0.62,7.119,15.163,9.968,4.425,2.468,14.331,-1.484,1.055,18.275,10.095,-4.154,17.957,14.668,8.505,-1.866,3.119,7.535,7.772,6.984,6.683,6.729,7.302,7.573,14.07,-0.406,12.603,10.234,4.058,-1.698,-8.076,-8.628,5.464,9.555,7.419,2.966,5.273,6.296,5.443,0.19,-2.479,4.487,6.021,-4.144,0.427,4.118],[20.827,22.865,14.492,34.624,25.59,14.925,25.483,27.388,24.945,10.562,26.882,20.881,20.255,16.168,25.14,24.971,20.388,16.313,12.05,15.202,13.507,21.104,13.009,1.125,9.087,18.396,17.14,-0.018,18.786,19.421,8.175,0.953,6.801,7.478,11.009,9.327,9.507,13.699,-5.366,3.151,9.685,11.751,-2.826,8.794,16.097,16.593,-2.258,13.552,0.194,7.969,7.897,5.462,6.111,4.069,6.971,4.797,-1.083,5.534,-8.374,0.796,6.366,14.177,10.732,-3.647,22.448,10.344,26.764,33.519,23.998,15.607,20.281,26.765,21.401,35.566,24.919,26.926,21.23,29.112,27.023,21.55,14.354,23.514,14.78,26.358,13.475,26.247,14.317,20.814,24.665,10.345,19.918,22.714,18.053,25.077,11.515,2.6,24.325,18.551,11.95,9.599,14.73,15.511,11.607,20.175,13.672,21.336,19.723,24.556,17.282,1.328,18.226,10.702,14.95,14.853,-0.546,20.271,13.121,7.401,0.539,12.246,18.365,17.665,17.896,16.78,18.321,9.013,7.875,0.554,5.07,11.415,8.724,7.653,1.018,6.23,14.706,-4.402,9.879,10.95,9.402,-1.995,13.229,15.965,9.535,-5.278,14.457,12.469,-0.495,7.876,15.035,9.507,4.703,2.337,13.696,-1.434,1.452,17.823,10.204,-4.135,17.99,15.28,8.237,-1.725,3.439,6.912,8.165,6.973,6.759,7.028,7.421,7.859,14.355,-0.412,12.568,9.728,3.581,-1.856,-8.39,-9.256,5.072,9.469,7.109,2.681,5.389,6.345,6.005,0.055,-2.217,4.8,5.941,-4.498,0.293,4.258],[21.197,22.888,14.667,34.579,25.413,14.944,25.617,27.44,24.84,10.59,26.777,21.076,20.188,16.259,25.068,24.952,20.137,16.238,12.07,15.165,13.282,21.061,12.854,1.048,9.077,18.401,17.053,0.061,18.775,19.32,8.002,1.08,6.863,7.445,10.992,9.263,9.946,13.67,-5.407,3.32,9.604,11.663,-2.82,8.806,15.728,16.518,-2.085,13.788,0.391,7.885,7.959,5.536,6.152,3.916,6.885,4.73,-1.072,5.491,-8.358,0.858,6.568,14.26,10.83,-3.542,22.184,10.211,26.335,32.935,23.542,15.757,20.194,26.246,21.633,34.868,25.142,27.246,21.587,29.058,27.306,21.717,14.474,23.35,14.865,26.953,13.027,25.956,14.029,20.699,24.64,10.196,20.52,22.877,18.261,25.184,11.805,2.697,24.361,18.274,11.915,9.173,14.874,15.677,11.632,20.515,13.817,20.977,19.635,24.511,17.433,0.742,18.268,10.875,14.754,14.892,-0.594,19.779,12.68,7.557,0.723,12.148,18.509,17.568,17.507,16.433,17.939,9.138,7.989,1.105,5.053,11.298,8.958,7.89,1.08,6.603,14.704,-4.756,10.664,11.006,9.187,-1.835,13.182,16.065,9.892,-5.297,14.515,12.292,-0.387,8.245,15.025,9.571,4.74,2.602,13.198,-1.612,1.555,17.436,10.025,-3.943,17.944,15.565,8.233,-1.604,3.694,6.389,7.37,6.464,6.816,7.068,7.485,7.288,14.433,-0.807,12.667,10.086,3.008,-1.747,-7.733,-9.438,4.881,9.417,7.12,2.232,5.486,6.461,6.189,0.347,-1.975,4.616,5.911,-4.709,0.666,4.285],[21.434,22.939,14.716,34.605,25.283,15.038,25.644,27.588,24.724,10.584,26.882,21.264,20.234,16.379,24.913,25.003,19.855,16.159,12.065,14.982,13.107,20.967,12.706,1.007,9.097,18.492,16.882,0.019,18.873,19.238,7.973,1.149,7.031,7.265,10.962,9.33,10.247,13.582,-5.383,3.635,9.559,11.548,-2.905,9.017,15.521,16.516,-1.878,13.767,0.542,7.739,7.825,5.611,6.064,3.876,6.707,4.727,-0.961,5.342,-8.331,0.715,6.61,14.386,10.841,-3.263,22.205,10.305,26.117,33.215,23.079,15.6,20.401,25.834,22.12,34.51,25.268,27.588,21.399,28.611,26.821,22.071,14.597,23.043,14.662,26.787,13.157,25.855,14.042,20.477,24.932,9.869,20.313,23.087,18.207,25.219,11.826,2.727,24.58,17.939,11.515,8.734,14.705,15.588,11.801,20.348,13.674,21.122,19.516,24.071,17.591,0.705,18.55,10.836,14.404,15.194,-0.568,20.111,12.416,7.583,0.99,12.01,18.317,17.378,17.512,16.067,17.81,8.822,8.047,1.38,5.199,11.498,8.917,7.78,1.397,7.088,14.794,-4.064,11.455,10.991,9.21,-1.96,12.749,15.888,10.044,-5.434,14.197,11.904,-0.763,8.586,15.014,10.172,4.656,2.613,13.861,-1.557,1.415,17.2,10.077,-3.764,17.896,15.177,8.484,-1.384,3.894,6.151,7.416,6.986,6.357,6.774,7.447,6.895,14.303,-0.835,12.574,10.506,3.352,-1.749,-7.951,-9.445,5.364,9.594,7.663,2.149,5.167,6.167,6.333,0.462,-1.967,4.851,5.935,-4.706,0.6,3.883],[21.522,22.944,14.716,34.677,25.205,15.111,25.71,27.676,24.64,10.498,27.153,21.414,20.324,16.484,24.588,25.169,19.742,16.147,12.074,14.737,12.945,20.913,12.529,1.002,9.009,18.567,16.808,-0.023,18.928,19.337,8.001,1.217,7.259,7.14,10.954,9.323,10.614,13.521,-5.447,3.872,9.655,11.247,-2.909,9.128,15.507,16.601,-1.685,13.774,0.494,7.623,7.66,5.707,5.886,3.918,6.543,4.918,-0.844,5.1,-8.366,0.565,6.578,14.221,10.874,-3.041,22.639,10.292,25.644,33.081,22.825,15.752,20.62,25.926,21.896,35.171,24.964,27.207,21.147,28.296,27.066,22.332,14.316,23.003,14.5,26.025,13.164,26.25,14.203,20.774,24.964,9.872,19.755,23.185,18.266,24.97,11.741,2.717,25.019,17.869,11.568,8.957,14.478,15.442,11.444,19.779,13.302,21.366,19.752,24.275,17.986,1.005,18.109,10.742,14.013,15.698,-0.735,20.44,12.894,7.631,0.658,11.915,17.999,17.439,17.987,15.946,18.081,8.74,8.144,1.447,5.402,11.48,8.499,6.964,0.86,6.4,14.942,-4.443,11.762,10.932,9.43,-2.429,12.543,15.488,10.115,-5.033,14.203,11.988,-0.758,9.151,15.012,9.828,5.189,3.205,13.84,-1.272,1.507,17.093,10.252,-3.548,17.81,15.276,8.487,-0.878,3.577,6.354,8.06,7.068,6.032,6.489,7.365,7.426,14.629,-0.737,12.556,10.292,3.599,-1.186,-8.042,-9.389,5.221,9.276,7.111,2.474,5.304,5.848,6.387,-0.053,-2.019,4.783,5.7,-4.122,0.564,3.521],[21.45,22.91,14.651,34.626,25.239,14.925,25.77,27.482,24.474,10.371,27.326,21.586,20.324,16.55,24.215,25.48,19.809,16.348,12.054,14.525,12.913,20.955,12.456,0.951,8.897,18.737,16.857,0.036,18.93,19.354,8.008,1.261,7.441,7.059,11.015,9.229,10.773,13.596,-5.651,4.053,9.696,11.139,-2.851,9.001,15.621,16.684,-1.573,13.948,0.271,7.45,7.786,5.745,5.761,3.811,6.765,5.102,-0.878,4.691,-8.437,0.448,6.587,14.111,10.768,-2.869,22.424,10.115,25.629,32.869,22.795,15.636,20.996,26.206,22.264,35.16,25.037,28.271,21.407,29.108,27.698,22.233,14.369,22.5,14.52,25.983,13.7,26.398,14.319,20.757,24.693,10.222,20.072,23.156,18.38,24.508,11.491,2.767,24.977,18.08,11.813,9.047,13.881,15.306,11.66,19.91,12.987,21.212,20.182,24.611,17.557,0.831,17.754,10.636,14.544,15.565,-0.954,20.467,12.804,7.629,0.65,11.581,17.96,17.529,17.949,15.883,18.868,8.909,8.565,1.436,5.72,11.389,8.264,6.859,0.989,6.137,15.004,-5.039,12.31,11.057,9.391,-2.632,11.958,15.522,9.905,-4.659,14.284,11.381,-0.173,9.628,15.313,9.575,4.921,3.191,13.424,-1.365,1.722,17.41,10.415,-3.378,17.761,15.447,8.374,-0.651,3.354,6.717,7.631,6.334,6.301,6.505,7.316,7.546,14.071,-0.743,12.262,10.43,3.661,-1.015,-7.94,-9.021,5.136,8.983,6.055,2.241,5.483,5.919,6.282,-0.253,-1.864,4.684,5.702,-3.088,0.955,3.848],[21.421,22.962,14.702,34.359,25.473,14.773,25.808,27.423,24.411,10.277,27.628,21.705,20.398,16.464,23.854,25.638,19.854,16.542,12.0,14.537,12.835,21.054,12.59,0.901,8.857,18.836,16.869,0.117,18.894,19.317,7.955,1.316,7.447,6.946,10.987,9.276,10.693,13.848,-5.875,4.071,9.597,11.115,-2.867,8.846,15.857,16.711,-1.632,14.113,0.11,7.248,7.919,5.733,5.613,3.58,6.95,5.316,-0.871,4.336,-8.542,0.358,6.696,14.031,10.674,-2.673,22.179,10.04,25.617,33.019,22.598,15.915,20.793,26.573,22.007,34.752,25.196,27.946,21.416,29.301,27.45,22.159,14.385,22.101,14.51,26.669,14.112,26.053,14.061,20.431,24.936,10.145,20.582,23.476,18.368,24.239,11.557,2.622,24.885,18.064,11.262,8.793,14.21,15.452,11.474,19.952,12.804,20.852,20.352,24.489,17.777,0.562,17.8,10.616,15.255,15.605,-0.145,20.38,12.268,7.321,0.863,11.419,17.955,17.497,18.063,16.059,18.915,8.724,8.387,0.885,5.557,11.541,8.837,7.55,1.605,6.649,14.929,-5.156,12.096,11.02,9.685,-2.353,12.251,15.807,9.562,-4.597,14.349,11.698,0.003,9.378,15.139,10.0,5.256,3.066,13.45,-1.614,1.471,17.633,10.145,-3.487,18.112,15.299,8.67,-0.792,2.968,6.711,7.47,5.841,6.932,6.172,7.576,7.677,14.3,-1.025,12.294,10.787,3.867,-0.958,-8.4,-8.628,4.849,9.357,6.089,2.237,4.863,6.134,6.268,-0.032,-1.14,5.109,5.933,-2.957,0.765,3.664],[21.356,23.049,14.846,34.05,25.694,14.673,25.854,27.483,24.407,10.197,27.687,21.715,20.495,16.288,23.536,25.581,19.808,16.749,11.873,14.609,12.769,21.086,12.746,0.908,8.88,18.885,16.833,0.303,18.794,19.256,7.945,1.277,7.254,6.913,11.025,9.477,10.48,14.016,-6.028,3.986,9.558,11.31,-2.929,8.656,16.143,16.743,-1.772,14.117,-0.028,7.222,7.874,5.755,5.331,3.467,6.956,5.426,-0.73,4.107,-8.669,0.352,6.922,14.096,10.749,-2.399,22.584,10.471,25.528,32.49,22.677,15.814,20.841,26.657,21.779,34.609,25.21,28.185,21.496,29.201,27.421,22.032,14.123,22.219,14.475,26.754,14.515,26.568,13.771,21.086,25.027,9.623,20.342,23.428,18.121,24.583,11.609,2.625,25.057,17.912,11.543,8.899,14.552,15.432,11.206,19.973,13.472,21.172,20.213,24.946,18.182,0.773,17.807,10.501,15.588,15.703,-0.547,20.269,12.359,7.745,0.808,11.906,18.166,17.306,18.051,16.272,18.197,8.704,8.29,1.614,5.389,11.308,9.109,7.156,1.264,6.296,14.642,-4.936,11.797,11.114,9.78,-1.943,12.683,16.513,9.544,-5.058,15.159,11.898,-0.389,8.949,15.12,9.825,5.266,3.434,14.111,-1.557,1.527,17.655,9.836,-3.556,17.986,15.312,8.443,-1.123,2.573,5.978,8.007,5.841,7.117,5.682,7.68,7.92,14.41,-1.096,12.432,10.648,4.316,-0.617,-7.803,-9.156,4.529,9.214,6.794,2.224,4.981,6.181,6.353,-0.095,-1.404,5.142,5.833,-3.052,0.689,2.615],[21.22,23.336,14.96,33.781,25.826,14.577,25.824,27.513,24.536,10.206,27.606,21.743,20.509,16.15,23.484,25.577,19.663,16.763,11.677,14.513,12.873,21.029,12.934,0.935,8.961,18.924,16.879,0.344,18.624,19.229,8.041,1.27,7.152,6.709,11.072,9.863,10.338,14.046,-5.963,3.99,9.555,11.482,-2.954,8.451,16.467,16.918,-1.921,14.148,-0.14,7.32,7.854,5.784,5.085,3.441,6.743,5.478,-0.636,3.805,-8.666,0.402,7.063,14.33,10.8,-2.059,23.006,10.3,25.547,32.72,22.775,15.236,20.928,26.185,21.887,34.786,25.043,28.466,21.621,29.15,27.801,22.28,13.58,21.882,14.581,26.6,14.305,27.195,13.876,20.979,24.955,9.601,20.177,23.636,18.058,24.069,11.281,2.777,25.115,17.873,11.982,8.898,14.315,15.983,11.552,20.23,13.585,21.527,19.97,24.73,17.734,0.714,17.838,10.525,15.748,16.213,-0.706,20.67,12.161,8.092,1.329,11.775,18.356,17.11,18.061,15.94,18.098,9.584,8.25,2.111,5.41,11.09,9.356,6.783,0.705,5.779,14.925,-4.589,11.539,11.45,9.864,-1.983,13.135,16.895,9.484,-5.021,15.06,12.066,-0.977,8.813,15.256,9.39,5.128,2.776,14.011,-1.579,1.388,18.174,9.559,-3.787,17.621,15.314,8.05,-1.481,2.476,5.896,7.749,6.11,6.888,5.321,7.743,7.735,13.526,-0.875,12.699,10.378,4.452,-0.443,-8.503,-9.714,4.757,9.119,6.531,2.167,4.834,6.093,6.492,-0.26,-1.854,5.455,5.548,-2.995,0.974,2.256],[21.152,23.603,14.84,33.791,25.946,14.439,25.783,27.378,24.649,10.26,27.672,21.793,20.473,15.919,23.445,25.604,19.513,16.718,11.526,14.288,12.941,21.064,12.968,0.924,9.075,19.028,16.925,0.335,18.381,19.378,8.307,1.159,7.172,6.484,11.072,10.316,10.325,14.091,-5.685,4.018,9.543,11.672,-2.956,8.244,16.719,17.149,-1.921,14.138,-0.257,7.348,7.879,5.779,4.922,3.397,6.53,5.494,-0.616,3.443,-8.741,0.429,7.132,14.374,10.763,-1.804,23.065,10.574,25.744,32.392,22.942,15.489,20.921,25.936,21.855,34.145,24.898,27.531,21.866,28.877,27.454,22.222,13.886,21.863,14.403,26.786,13.916,26.89,13.762,20.543,24.825,10.0,20.27,23.473,17.758,23.977,11.161,2.633,24.73,17.568,11.732,8.492,14.526,16.403,11.446,20.21,13.252,20.842,19.773,24.508,18.028,0.297,18.146,10.631,15.574,16.127,-0.113,20.591,12.3,8.287,1.276,11.568,17.981,16.919,17.971,16.533,18.439,9.588,8.315,1.551,5.428,10.965,8.775,7.031,1.025,5.769,15.077,-4.657,11.654,11.905,9.701,-2.256,12.968,16.713,9.003,-4.8,14.662,11.831,-1.362,8.976,15.249,9.196,4.989,2.731,13.429,-1.56,1.315,18.465,9.512,-3.903,18.034,15.499,8.485,-1.049,2.961,6.581,7.241,6.028,6.379,5.184,7.639,7.933,14.098,-0.618,12.703,10.384,4.104,0.016,-8.478,-9.424,5.446,9.393,5.968,2.035,4.866,6.202,6.387,0.325,-0.927,5.576,5.303,-2.543,1.061,2.534],[21.008,23.732,14.601,33.762,25.977,14.378,25.73,27.139,24.627,10.258,27.58,21.702,20.462,15.76,23.337,25.53,19.425,16.745,11.366,14.095,12.914,21.053,12.89,0.853,9.129,19.243,16.972,0.369,18.158,19.614,8.529,0.97,7.266,6.307,10.995,10.619,10.344,14.119,-5.562,4.02,9.586,11.656,-2.981,8.077,16.769,17.312,-1.639,14.075,-0.46,7.428,7.706,5.72,4.841,3.394,6.62,5.462,-0.424,3.23,-8.808,0.639,7.041,14.383,10.759,-1.51,22.962,10.976,25.917,32.204,23.002,15.509,20.795,25.731,21.564,34.379,25.324,27.467,22.231,28.593,28.006,21.696,13.935,22.189,14.283,27.196,13.454,26.737,13.58,20.748,24.873,10.006,20.13,23.401,17.518,24.608,11.549,2.596,24.473,17.529,11.951,8.856,14.326,16.035,10.879,19.814,12.712,20.845,19.489,24.884,18.593,0.379,18.181,10.915,14.975,15.526,-0.467,20.493,12.654,8.373,0.963,11.93,18.507,16.634,18.152,16.528,18.972,9.827,8.373,1.067,5.292,10.725,8.94,7.376,1.103,5.984,14.553,-4.526,11.952,12.161,9.512,-2.202,12.769,16.752,9.058,-4.202,15.065,12.393,-0.371,9.216,15.762,9.51,5.133,3.469,13.412,-1.469,1.257,18.275,9.334,-3.562,18.673,15.644,8.58,-1.262,2.869,6.593,7.913,6.187,6.363,4.934,7.325,7.794,14.967,-1.078,12.674,10.192,3.717,0.074,-8.402,-8.66,5.565,9.311,6.115,2.193,4.667,6.195,6.287,0.484,-0.785,5.4,5.288,-2.009,1.034,2.358],[20.71,23.783,14.422,33.689,26.065,14.394,25.772,26.958,24.645,10.222,27.475,21.678,20.583,15.68,23.284,25.484,19.33,16.748,11.145,13.868,12.915,21.033,13.067,0.739,9.25,19.529,16.994,0.266,17.995,19.757,8.624,0.871,7.413,6.221,10.863,10.794,10.435,14.165,-5.591,4.134,9.684,11.543,-2.958,7.964,16.689,17.608,-1.455,14.065,-0.377,7.566,7.597,5.683,4.937,3.326,6.889,5.359,-0.203,3.168,-8.753,0.872,6.713,14.509,10.673,-1.304,23.374,10.472,26.056,32.316,23.216,15.293,20.858,25.484,21.539,34.563,25.354,28.372,22.129,28.451,27.532,21.58,13.655,22.124,14.016,27.408,13.16,27.086,13.331,20.698,25.391,10.127,19.927,23.236,17.584,24.094,11.265,2.744,24.368,17.694,11.65,8.983,14.808,15.692,11.011,19.717,12.366,21.503,18.856,24.881,18.532,0.601,18.347,11.009,14.561,15.506,-0.555,20.697,12.697,8.652,1.031,11.855,18.361,16.441,18.693,16.22,18.707,10.633,8.05,0.816,5.362,10.719,10.03,6.729,0.68,6.446,14.688,-4.564,12.015,11.84,9.334,-2.428,12.909,16.984,9.188,-4.352,14.756,12.486,-0.355,9.405,16.033,9.595,5.354,2.903,13.791,-1.416,0.957,18.358,9.091,-3.161,18.7,15.611,8.2,-1.028,2.713,6.302,7.858,5.925,6.722,4.721,7.539,7.873,14.614,-0.795,12.721,10.129,3.542,0.077,-9.128,-8.747,5.399,9.244,6.574,2.13,4.357,5.878,6.23,0.72,-1.176,5.136,5.535,-1.776,1.202,1.674],[20.517,23.896,14.327,33.574,26.307,14.413,25.969,26.844,24.788,10.129,27.511,21.639,20.806,15.618,23.188,25.439,19.251,16.725,10.873,13.689,12.967,21.202,13.3,0.711,9.405,19.747,17.022,0.028,17.854,19.588,8.868,0.802,7.343,6.279,10.855,10.937,10.598,14.191,-5.773,4.178,9.796,11.539,-3.016,7.896,16.681,17.888,-1.362,14.021,-0.213,7.538,7.524,5.762,5.042,3.307,7.116,5.318,-0.176,3.115,-8.641,1.137,6.368,14.498,10.515,-1.298,23.701,10.522,26.217,32.17,23.237,14.978,21.326,25.502,21.426,34.399,25.057,28.228,21.998,28.21,27.096,21.64,13.797,21.478,13.471,27.22,13.057,27.2,13.53,20.689,25.257,9.838,20.278,23.534,17.432,23.67,10.744,2.477,24.529,17.352,11.925,8.898,14.491,15.848,11.257,20.033,12.3,20.802,18.476,24.572,18.655,0.15,18.686,10.81,14.266,15.885,-0.383,20.423,12.425,8.088,0.902,11.612,18.303,16.221,18.705,16.081,18.439,10.274,8.556,1.042,5.476,10.561,10.088,6.319,0.72,6.07,15.009,-4.549,12.205,12.288,9.414,-2.398,12.672,17.035,8.804,-5.126,14.646,11.865,-0.766,9.458,15.954,9.514,5.254,3.065,14.08,-1.568,1.535,18.185,8.936,-3.211,18.93,15.56,8.528,-0.563,3.035,6.214,7.224,5.928,6.926,4.511,7.17,8.534,14.441,-0.08,12.819,9.917,3.814,0.45,-8.959,-9.192,4.972,9.562,6.754,1.919,4.704,6.011,5.699,0.626,-0.815,4.97,5.86,-2.068,1.156,1.803],[20.356,24.017,14.116,33.443,26.498,14.402,26.027,26.808,24.963,10.025,27.536,21.647,21.097,15.474,23.021,25.29,19.299,16.872,10.722,13.508,12.957,21.317,13.438,0.664,9.391,19.709,17.092,-0.15,17.742,19.415,9.102,0.863,7.33,6.217,11.101,10.957,10.829,14.221,-5.963,4.227,10.012,11.386,-3.172,7.69,16.674,18.037,-1.305,13.998,-0.031,7.279,7.415,5.812,5.143,3.505,7.313,5.494,-0.199,3.068,-8.573,1.286,6.01,14.432,10.419,-1.345,23.907,10.894,25.9,32.099,23.109,15.308,21.086,25.333,21.303,34.103,25.362,27.823,22.25,28.277,27.411,21.394,13.722,21.239,13.59,27.458,13.135,27.632,13.644,21.187,25.272,9.657,20.337,23.378,17.358,23.32,11.067,2.49,24.674,17.432,12.341,8.817,14.111,16.124,10.368,20.02,12.348,20.416,18.515,24.446,19.05,-0.077,18.974,11.164,14.217,15.848,-0.832,20.643,12.457,7.989,0.557,11.878,18.54,16.192,18.607,16.398,17.768,10.085,8.564,1.707,5.694,10.362,9.776,7.04,0.718,5.777,14.882,-4.385,12.337,12.236,9.478,-2.03,12.803,17.25,8.632,-5.66,14.868,11.909,-0.72,9.529,16.291,9.351,5.401,3.081,13.621,-1.87,1.499,18.041,9.006,-3.061,18.698,15.49,8.615,-0.438,3.206,6.211,7.237,6.337,6.978,4.832,6.374,8.721,14.565,-0.097,12.821,9.613,4.198,0.261,-8.183,-8.943,4.558,9.399,6.074,1.905,4.886,6.119,5.856,0.725,-0.817,4.274,5.91,-2.337,1.106,1.754],[20.105,24.094,14.082,33.39,26.705,14.409,25.891,26.93,25.046,10.034,27.483,21.569,21.086,15.433,22.783,25.056,19.425,17.04,10.653,13.389,12.9,21.386,13.533,0.66,9.325,19.649,17.165,-0.273,17.717,19.438,9.298,1.002,7.477,6.172,11.199,10.885,11.048,14.258,-6.08,4.361,10.006,11.302,-3.208,7.463,16.696,18.04,-1.27,13.871,0.118,6.924,7.371,5.791,5.184,3.72,7.44,5.709,-0.196,3.077,-8.409,1.344,5.623,14.493,10.297,-1.43,24.016,10.518,25.72,31.747,23.245,15.399,21.187,25.174,21.224,33.445,25.825,28.126,22.369,27.819,27.557,21.042,13.627,21.567,13.616,27.991,12.91,27.395,13.153,21.433,25.625,9.983,20.77,23.252,17.102,23.39,11.23,2.641,24.633,17.744,12.021,9.441,14.588,16.794,10.057,20.073,12.278,21.124,18.874,24.312,18.971,0.253,18.779,11.024,14.466,15.855,-0.97,20.431,12.858,7.983,0.808,12.197,18.481,16.364,18.371,16.717,17.753,10.306,8.252,1.501,5.546,10.973,9.319,7.368,0.877,5.461,14.852,-4.282,12.421,12.06,9.547,-2.256,12.89,17.266,8.558,-6.173,14.624,11.796,-1.025,9.827,16.353,10.541,5.5,2.86,13.03,-2.044,1.354,18.227,8.626,-2.921,19.027,15.179,9.206,-0.705,3.603,5.845,7.231,6.156,6.935,4.67,6.151,8.495,14.468,-0.212,12.895,9.841,4.397,-0.004,-8.346,-9.176,5.001,8.921,5.967,2.249,5.163,5.733,6.066,1.152,-1.044,4.026,6.113,-2.343,0.968,1.878],[19.961,23.99,14.122,33.189,26.916,14.325,25.875,26.975,24.989,10.093,27.424,21.47,20.886,15.295,22.54,24.679,19.662,17.26,10.568,13.276,12.969,21.376,13.604,0.816,9.419,19.761,17.124,-0.279,17.744,19.571,9.41,1.01,7.508,6.165,11.097,10.775,11.364,14.255,-6.305,4.339,10.152,11.309,-3.132,7.319,16.796,17.977,-1.26,13.697,0.238,6.837,7.374,5.68,5.153,3.897,7.439,5.951,-0.253,3.117,-8.302,1.546,5.46,14.65,10.106,-1.601,23.979,10.339,26.099,31.803,23.186,15.509,21.498,25.134,20.898,33.927,25.313,28.386,22.283,27.404,27.519,20.936,13.901,21.773,13.315,28.472,13.074,26.836,13.236,20.719,25.309,10.119,20.801,23.156,17.068,23.618,10.839,2.619,24.541,17.766,12.049,9.012,14.747,16.921,10.818,20.143,12.341,21.342,19.209,24.704,18.615,0.159,18.753,10.668,14.843,15.694,-0.667,20.638,13.088,8.043,0.659,12.08,18.417,16.701,18.733,16.31,18.42,10.064,7.875,1.339,5.617,11.453,9.283,6.737,1.231,5.799,14.674,-4.673,12.423,12.075,9.328,-2.677,12.686,16.865,8.522,-6.241,14.538,12.092,-0.715,9.878,16.01,10.83,5.594,3.262,12.75,-1.713,1.553,18.431,8.295,-3.156,19.26,14.989,8.775,-0.774,4.268,5.626,7.536,6.088,6.884,4.465,6.111,8.771,14.717,0.007,12.849,10.152,4.468,0.12,-8.497,-8.789,5.549,8.766,5.976,2.383,5.219,5.972,5.259,1.105,-0.733,3.891,6.61,-2.028,0.993,1.757],[19.995,23.894,14.225,33.179,27.026,14.276,25.86,26.87,24.849,10.126,27.506,21.328,20.728,15.133,22.494,24.31,19.873,17.381,10.596,13.165,13.158,21.494,13.613,0.883,9.528,19.8,17.157,-0.244,17.773,19.776,9.481,0.981,7.299,6.163,10.856,10.661,11.598,14.142,-6.603,4.201,10.328,11.482,-2.923,7.271,16.931,17.805,-1.27,13.623,0.396,7.031,7.492,5.544,5.065,4.116,7.517,6.147,-0.399,3.034,-8.233,1.77,5.405,14.752,10.047,-1.638,23.293,10.485,26.088,31.9,23.229,15.042,20.777,24.956,20.778,34.103,25.472,28.114,22.301,27.425,27.36,21.055,13.521,21.234,13.734,28.614,13.006,26.963,13.478,20.56,25.222,9.998,20.322,23.176,16.988,23.097,10.711,2.657,24.303,18.101,12.526,8.552,14.816,16.823,10.47,20.122,12.206,20.267,19.414,24.441,19.125,0.199,18.585,10.554,14.843,15.864,-0.48,20.816,13.118,8.009,0.42,12.203,18.271,16.804,18.829,16.09,18.913,9.54,8.51,1.395,5.457,11.211,9.433,6.169,0.974,6.267,14.526,-5.228,12.847,11.908,9.571,-3.244,12.369,16.699,8.385,-6.143,15.03,12.154,-0.324,10.249,16.28,10.174,5.66,3.034,12.745,-1.466,1.852,18.309,8.258,-3.055,18.908,14.95,8.832,-0.4,4.236,5.916,7.52,6.054,6.945,4.523,6.277,8.8,15.091,0.299,12.924,9.773,4.566,0.054,-8.57,-8.646,5.843,8.731,5.958,2.62,4.739,6.168,5.375,1.205,-0.662,3.779,6.112,-2.083,1.248,1.462],[20.015,23.825,14.423,33.38,27.068,14.296,25.847,26.638,24.818,10.177,27.552,21.226,20.581,14.995,22.476,23.995,19.879,17.435,10.613,13.066,13.45,21.707,13.634,0.776,9.596,19.69,17.179,-0.225,17.747,19.845,9.504,0.887,7.275,6.179,10.585,10.506,11.699,13.982,-6.848,4.137,10.401,11.619,-2.805,7.307,17.012,17.719,-1.143,13.654,0.587,7.243,7.592,5.658,4.947,4.264,7.478,6.179,-0.562,2.812,-8.216,1.994,5.46,14.847,10.071,-1.535,23.313,10.555,25.811,31.736,23.134,14.289,20.397,24.717,21.083,33.915,25.16,28.059,22.204,27.198,27.48,21.243,13.73,21.553,13.766,28.714,13.465,27.145,13.25,20.64,25.849,9.659,20.123,22.967,16.748,22.54,10.703,2.578,23.987,18.074,12.256,8.917,14.649,16.642,10.045,20.615,11.775,20.758,19.264,23.719,18.829,0.213,18.697,10.683,14.576,16.404,-0.936,20.619,13.067,7.765,0.76,12.469,18.731,16.738,18.508,16.675,18.698,9.697,8.486,1.286,5.553,10.878,9.672,6.602,0.639,5.824,14.658,-6.129,13.12,11.687,9.333,-3.602,12.841,17.11,8.305,-5.878,15.208,12.025,-0.411,10.839,16.025,10.156,5.442,2.856,13.007,-1.341,1.924,18.706,8.698,-2.891,18.629,14.509,8.758,-0.212,4.028,6.048,7.218,5.728,6.788,4.359,6.088,8.81,15.213,0.486,13.261,9.143,5.178,0.203,-8.408,-8.938,6.032,8.769,6.644,2.765,4.8,6.194,5.554,1.562,-1.405,3.652,6.006,-2.119,0.886,1.573],[20.205,23.814,14.675,33.499,27.046,14.44,25.87,26.428,24.789,10.106,27.487,21.113,20.533,14.817,22.386,23.746,19.762,17.539,10.573,12.958,13.65,21.928,13.592,0.638,9.666,19.438,17.166,-0.163,17.603,19.676,9.468,0.74,7.458,6.167,10.49,10.42,11.756,13.937,-7.104,4.127,10.355,11.652,-2.766,7.381,17.17,17.569,-1.012,13.687,0.686,7.39,7.557,5.757,4.833,4.237,7.371,6.188,-0.802,2.542,-8.241,2.281,5.441,15.037,10.009,-1.36,23.644,10.74,25.761,32.03,22.984,14.797,20.712,24.486,20.566,34.015,25.099,28.552,21.995,26.845,27.421,21.091,14.26,21.409,13.658,28.466,13.932,27.346,12.937,20.927,25.193,9.898,20.479,22.995,16.615,23.223,10.824,2.531,23.822,18.002,12.025,9.668,15.358,16.288,10.761,20.688,11.82,21.431,18.918,23.303,18.613,-0.071,18.985,10.996,13.817,16.928,-1.073,20.821,13.123,7.853,0.883,12.64,18.634,16.509,18.297,17.135,18.3,9.72,8.433,1.256,5.555,10.218,9.786,6.997,0.998,5.99,14.741,-6.672,13.068,11.752,9.189,-3.285,13.325,17.652,8.552,-6.022,14.713,12.275,-0.161,10.93,15.904,10.593,5.199,2.959,13.064,-1.662,2.19,18.593,8.645,-2.839,18.601,14.54,8.964,-0.446,3.852,6.181,7.173,6.068,7.139,4.298,5.871,8.63,14.94,0.693,13.267,9.454,5.003,0.448,-8.481,-8.47,6.339,9.053,6.209,2.737,5.063,6.669,5.681,1.739,-1.471,3.72,6.167,-2.129,0.586,1.687],[20.268,23.818,14.902,33.521,26.959,14.693,25.807,26.575,24.712,9.953,27.488,21.105,20.751,14.824,22.395,23.615,19.644,17.604,10.801,12.866,13.859,21.954,13.495,0.613,9.852,19.257,17.267,-0.08,17.385,19.494,9.56,0.78,7.565,6.201,10.529,10.542,11.821,13.873,-7.194,4.145,10.211,11.773,-2.916,7.283,17.3,17.592,-0.972,13.761,0.678,7.295,7.543,5.793,4.837,4.206,7.092,6.241,-1.171,2.305,-8.197,2.403,5.279,15.159,10.024,-1.205,23.499,10.44,25.469,31.917,22.807,15.159,20.839,24.648,20.864,33.956,25.825,28.403,22.222,27.019,27.03,21.26,14.456,21.006,14.183,27.897,13.897,27.78,13.341,20.77,25.343,10.035,20.325,22.663,16.498,23.176,10.433,2.312,23.861,17.953,12.109,10.177,15.222,16.376,11.111,20.317,12.057,21.027,18.504,23.213,18.369,-0.306,18.871,11.044,13.467,16.593,-0.586,20.969,13.4,7.938,0.613,12.717,18.75,16.249,18.284,16.457,18.183,9.719,8.611,1.468,5.711,9.657,9.457,7.268,0.396,6.082,14.829,-7.397,13.003,11.833,9.574,-3.199,12.942,17.692,8.434,-6.675,14.892,12.751,0.194,10.672,15.83,10.8,5.301,2.649,12.934,-1.388,2.188,18.25,8.456,-2.745,18.446,14.776,9.679,-0.361,3.951,6.225,7.271,5.849,7.314,3.875,5.83,8.418,14.924,0.924,13.54,9.966,4.734,0.645,-8.524,-8.743,6.657,9.071,6.092,2.657,4.585,6.182,5.655,1.969,-0.987,3.673,6.547,-1.502,0.433,1.909],[20.137,23.888,14.999,33.457,27.019,14.959,25.883,26.975,24.535,9.829,27.317,20.911,21.066,15.031,22.459,23.635,19.436,17.57,11.092,12.856,14.061,21.767,13.509,0.553,10.051,19.273,17.335,0.066,17.164,19.433,9.635,0.892,7.751,6.19,10.492,10.757,11.87,13.797,-7.153,4.195,10.238,11.868,-3.102,7.24,17.389,17.668,-0.967,13.907,0.506,7.192,7.505,5.74,4.845,4.215,6.821,6.291,-1.332,2.222,-8.246,2.396,5.125,15.17,10.201,-1.099,23.465,9.99,25.441,32.173,22.713,14.727,21.071,25.147,21.004,34.078,25.324,28.304,22.141,27.622,27.61,21.363,14.423,21.301,14.569,27.551,13.874,27.61,13.874,20.567,25.663,9.528,20.193,22.769,16.834,22.222,11.028,2.332,23.604,17.614,11.999,10.568,15.38,16.888,10.869,20.348,12.071,20.699,18.285,23.443,18.426,-0.3,18.281,10.975,12.74,16.6,-0.323,20.64,12.921,7.929,0.393,12.773,18.833,16.309,18.303,16.9,18.519,9.631,8.573,1.382,5.927,9.761,9.581,7.041,0.81,6.225,14.999,-7.579,12.797,11.936,9.181,-3.586,12.462,17.806,7.865,-7.023,15.191,12.753,0.133,10.585,15.954,10.279,5.603,2.919,12.706,-1.641,2.213,17.996,8.642,-2.84,18.556,14.638,9.035,-0.201,4.285,5.887,7.16,5.72,7.135,2.915,5.544,8.138,14.753,0.894,13.585,9.718,5.011,0.56,-8.392,-8.775,6.43,8.768,6.705,2.459,4.589,6.089,5.195,1.97,-1.561,3.281,5.536,-1.601,-0.013,2.172],[19.891,23.921,14.955,33.369,27.243,15.019,25.977,27.344,24.315,9.64,27.149,20.692,21.264,15.282,22.481,23.703,19.418,17.674,11.387,12.828,14.18,21.653,13.488,0.645,10.201,19.4,17.458,0.083,17.035,19.526,9.504,1.052,7.813,6.299,10.45,10.822,11.797,13.857,-7.04,4.294,10.152,11.818,-3.252,7.259,17.549,17.71,-1.032,13.877,0.318,7.242,7.464,5.443,4.875,4.243,6.59,6.22,-1.281,2.316,-8.403,2.323,5.018,15.011,10.361,-1.357,23.544,10.467,25.548,31.986,22.537,14.818,20.714,25.47,20.594,34.164,25.251,28.104,22.346,28.036,27.936,21.366,14.444,21.852,13.966,27.651,13.702,27.421,13.811,20.405,25.386,9.731,21.03,22.67,17.23,22.207,11.155,2.431,23.636,17.738,12.213,10.59,15.662,17.092,10.759,20.118,12.309,20.769,18.599,23.505,18.646,0.153,17.97,10.996,11.833,16.79,-0.51,20.482,12.261,7.859,1.019,12.755,18.897,16.057,18.321,17.076,19.064,9.845,9.051,0.858,6.137,9.886,10.239,5.842,1.291,6.104,14.571,-7.506,12.811,12.15,9.148,-4.334,12.781,17.732,7.928,-6.7,14.637,13.003,-0.746,10.427,16.149,10.58,5.103,3.126,12.844,-1.924,1.998,17.511,8.894,-2.892,18.716,14.976,8.782,-0.649,4.397,6.074,7.562,5.748,7.104,3.12,5.259,7.871,15.092,0.763,13.161,10.064,5.559,0.495,-8.426,-8.359,6.59,8.789,6.242,2.445,4.819,6.24,5.212,1.835,-1.984,3.233,5.211,-2.198,-0.107,1.549],[19.901,23.941,14.632,33.334,27.438,14.877,26.007,27.589,24.246,9.676,27.091,20.588,21.322,15.373,22.471,23.803,19.778,17.739,11.549,12.742,14.168,21.791,13.327,0.854,10.246,19.491,17.572,0.11,17.034,19.582,9.277,1.124,7.747,6.262,10.477,10.843,11.626,13.832,-6.757,4.401,10.116,11.909,-3.442,7.382,17.638,17.753,-1.181,13.862,0.031,7.289,7.627,5.142,4.916,4.228,6.352,6.178,-1.316,2.316,-8.523,2.281,4.976,14.781,10.57,-1.806,23.608,10.228,25.323,31.988,22.434,15.355,20.929,25.784,20.576,33.514,25.457,27.71,22.355,28.438,27.408,21.078,14.439,21.464,13.471,28.001,14.036,27.634,13.779,20.006,25.859,9.703,21.139,22.242,17.221,23.814,11.35,2.553,23.786,17.966,12.327,10.192,15.744,17.228,11.259,20.063,12.483,20.98,18.495,23.186,18.735,0.048,18.118,11.131,11.056,16.271,-0.568,20.52,12.253,7.923,1.055,13.049,19.394,16.0,18.676,16.942,19.387,10.266,9.286,1.322,6.165,10.109,10.517,6.145,0.74,6.007,14.246,-8.215,13.061,12.126,9.576,-4.535,13.016,17.817,8.466,-6.436,14.86,12.804,-1.258,10.435,15.923,10.713,4.937,2.706,12.543,-1.859,1.451,17.227,8.519,-2.926,18.676,15.158,8.971,-0.372,4.231,6.406,7.538,5.663,6.555,3.893,5.425,8.035,15.374,0.913,13.246,10.089,5.39,0.069,-8.639,-8.536,6.384,9.069,6.145,2.443,4.468,6.128,5.22,1.77,-1.598,3.313,5.768,-2.136,0.035,1.671],[20.109,23.953,14.329,33.319,27.595,14.748,26.087,27.689,24.46,9.702,26.955,20.458,21.378,15.358,22.593,23.989,20.115,17.56,11.667,12.442,14.098,22.043,13.163,0.825,10.125,19.588,17.644,0.223,17.086,19.485,9.042,0.959,7.665,6.327,10.526,10.808,11.584,13.822,-6.642,4.433,10.056,11.926,-3.484,7.578,17.695,17.637,-1.277,14.017,-0.263,7.421,7.82,5.024,4.863,4.157,6.359,6.09,-1.387,2.257,-8.584,2.44,5.054,14.775,10.639,-2.12,23.765,10.169,25.25,31.984,22.659,15.36,21.151,25.962,21.11,33.158,25.473,28.098,22.199,28.974,26.994,21.435,14.26,21.594,13.803,28.416,13.968,27.575,13.999,19.909,25.704,9.735,20.644,22.288,17.024,24.076,11.304,2.576,23.764,18.216,11.809,9.673,15.746,17.488,11.782,20.463,12.864,20.968,18.278,23.126,18.69,-0.117,18.15,11.12,10.736,16.02,-0.72,21.005,12.695,7.842,0.705,13.119,19.196,16.129,18.515,17.18,19.027,10.349,8.988,1.007,6.09,10.61,10.551,6.657,1.159,5.621,14.784,-8.266,13.051,12.292,9.799,-4.739,13.206,17.865,8.842,-5.76,15.241,12.833,-1.689,10.522,16.159,10.411,5.442,3.207,12.761,-1.898,0.781,17.213,8.388,-3.093,19.081,14.984,8.877,-0.285,3.827,6.267,7.383,5.953,6.299,4.035,5.435,7.867,14.515,1.06,13.002,9.709,4.925,-0.531,-9.063,-8.73,5.915,9.174,6.785,2.693,4.531,6.665,5.015,1.77,-1.527,3.339,5.506,-2.807,0.438,1.977],[20.417,23.994,14.218,33.429,27.718,14.777,26.065,27.669,24.683,9.658,26.898,20.423,21.372,15.33,22.774,24.224,20.233,17.268,11.743,12.09,14.078,22.213,13.012,0.712,9.912,19.608,17.687,0.18,17.07,19.31,8.876,0.717,7.558,6.348,10.77,10.659,11.633,13.97,-6.639,4.564,10.001,11.781,-3.488,7.75,17.749,17.637,-1.321,14.385,-0.548,7.663,8.046,5.019,4.943,4.062,6.566,5.942,-1.4,2.092,-8.649,2.581,5.154,14.755,10.498,-2.324,23.846,10.403,25.412,31.865,22.833,15.119,20.884,26.295,21.238,33.81,25.952,27.966,22.31,29.213,27.066,21.829,14.172,22.197,14.242,28.883,13.436,27.497,13.679,20.009,25.379,10.02,21.224,22.248,17.206,23.511,11.344,2.304,23.644,18.546,11.594,9.138,15.319,17.144,11.996,20.466,12.968,21.453,18.105,23.378,18.57,-0.129,18.115,10.985,10.825,16.352,-0.242,21.548,12.918,7.441,1.19,12.583,19.195,16.791,18.461,16.955,18.859,9.879,8.919,1.014,5.86,10.863,10.095,6.323,0.913,5.914,14.949,-7.49,12.903,11.988,9.372,-4.888,12.666,17.655,8.588,-5.876,15.027,12.841,-2.306,10.406,16.281,10.161,5.425,3.002,13.127,-1.982,0.624,17.174,9.142,-3.104,19.19,15.22,8.647,-0.546,4.084,6.488,7.748,5.867,6.55,3.423,5.386,7.635,14.038,1.061,13.219,9.776,4.555,-1.372,-9.077,-9.17,6.002,9.307,6.544,2.645,4.616,6.729,4.94,2.316,-1.783,3.542,5.29,-3.301,0.392,2.669],[20.543,24.091,14.241,33.658,27.801,14.815,26.047,27.688,24.807,9.68,26.942,20.405,21.469,15.437,22.987,24.363,20.26,16.962,11.813,11.883,13.972,22.41,12.996,0.658,9.579,19.594,17.659,0.327,17.073,19.22,8.708,0.485,7.471,6.15,11.09,10.382,11.566,14.181,-6.683,4.614,10.018,11.449,-3.649,7.954,17.729,17.714,-1.334,14.666,-0.852,7.824,8.208,5.043,5.09,4.006,6.696,5.719,-1.437,1.948,-8.907,2.625,5.24,14.744,10.439,-2.54,23.879,10.093,26.025,32.346,23.13,15.286,20.886,26.48,21.031,34.626,25.63,27.494,22.368,29.212,26.861,21.762,14.778,22.109,13.673,29.279,12.74,28.136,13.768,20.031,25.875,9.786,21.181,22.064,17.179,22.803,11.431,2.39,23.76,18.513,11.703,8.845,15.469,16.784,11.769,20.484,12.054,22.117,18.4,24.029,18.671,0.085,17.83,10.976,10.444,16.42,-0.403,21.337,12.811,7.091,1.23,12.805,19.067,16.559,18.763,17.155,19.031,9.904,8.91,0.993,5.91,11.096,9.758,6.399,0.21,6.234,14.598,-6.953,12.84,12.022,9.586,-4.812,12.367,17.501,8.429,-5.53,14.703,12.775,-2.304,10.604,16.02,9.979,5.488,2.999,13.387,-2.014,0.095,17.145,9.548,-3.189,18.997,15.271,9.027,-0.741,4.348,6.88,8.018,5.743,6.675,2.813,6.133,8.121,14.713,1.02,13.227,9.96,4.856,-1.695,-8.577,-9.097,6.572,9.105,6.599,2.22,4.649,6.522,5.062,2.249,-1.667,3.53,5.71,-3.092,0.117,2.527],[20.427,24.194,14.26,33.872,27.95,14.917,26.241,27.798,24.832,9.695,26.874,20.338,21.577,15.698,23.057,24.423,20.224,16.698,11.9,11.656,13.92,22.603,13.117,0.62,9.153,19.779,17.708,0.355,17.127,19.196,8.584,0.361,7.528,5.972,11.353,10.295,11.597,14.292,-6.486,4.754,10.025,11.284,-3.939,8.188,17.649,17.591,-1.368,14.686,-1.141,7.962,8.16,5.093,5.21,4.052,6.722,5.535,-1.505,1.806,-9.241,2.614,5.384,14.903,10.518,-2.734,24.171,9.942,26.404,32.624,23.294,15.535,20.777,26.406,21.145,34.619,24.929,27.852,22.507,29.451,26.86,21.797,14.702,21.999,13.37,29.44,13.512,28.381,14.478,19.827,26.018,9.759,21.069,22.271,17.443,23.291,11.815,2.465,23.896,18.481,11.846,8.906,15.531,16.609,11.194,20.491,11.23,22.184,18.57,24.277,18.967,0.109,17.755,10.487,10.197,15.948,-0.546,20.947,12.558,7.08,1.346,13.166,19.282,15.832,18.55,16.867,19.477,9.912,8.793,0.55,5.878,10.824,9.814,6.44,0.491,5.646,15.087,-7.71,12.78,12.008,9.724,-4.583,12.265,17.831,8.912,-6.078,14.839,12.083,-2.905,10.457,15.88,10.302,5.467,3.077,13.253,-2.252,-0.571,16.956,9.519,-3.109,18.512,15.565,8.882,-0.741,3.822,6.873,8.015,6.124,6.684,2.81,6.244,8.311,14.967,1.495,13.113,9.697,4.801,-1.459,-9.11,-8.69,6.975,8.914,7.048,2.629,4.691,6.754,5.078,1.703,-1.508,3.682,5.79,-3.375,0.265,1.723],[20.381,24.311,14.427,34.023,28.098,15.169,26.33,27.796,24.679,9.752,26.815,20.274,21.558,15.917,23.018,24.447,20.205,16.524,11.927,11.588,13.884,22.711,13.111,0.574,8.779,20.05,17.729,0.363,17.164,19.145,8.512,0.446,7.51,5.857,11.442,10.463,11.703,14.346,-6.45,4.92,10.045,11.291,-4.213,8.416,17.516,17.37,-1.423,14.526,-1.383,7.959,8.05,5.124,5.439,4.166,6.669,5.487,-1.424,1.655,-9.575,2.516,5.565,15.024,10.591,-2.918,24.219,10.089,26.276,32.246,23.353,15.95,21.188,26.801,21.056,34.458,25.89,27.534,22.571,29.483,27.384,21.654,14.076,22.11,13.646,29.163,14.112,28.508,14.42,19.725,25.993,9.955,21.347,22.167,17.686,23.986,12.194,2.185,23.515,18.364,12.158,8.905,15.555,16.694,11.256,20.159,10.853,21.894,18.43,23.984,19.123,-0.232,17.948,10.057,10.061,15.226,-0.267,21.122,12.99,7.585,1.119,13.102,19.355,15.576,18.975,17.027,19.546,9.945,8.732,0.957,5.824,10.495,9.914,6.245,0.392,5.161,15.197,-8.142,12.898,12.035,10.518,-5.276,12.331,18.078,9.389,-6.399,15.345,12.234,-3.249,10.168,15.666,10.561,5.453,3.254,13.032,-2.706,-1.046,16.673,9.748,-3.198,18.534,15.73,8.429,-0.424,3.76,6.551,7.787,6.292,6.858,3.364,6.085,7.849,15.134,1.086,13.28,9.862,4.636,-1.288,-9.321,-9.168,6.841,9.192,7.472,2.741,4.691,6.588,5.04,1.818,-1.866,3.981,5.452,-3.329,0.321,1.094],[20.391,24.514,14.688,34.005,28.228,15.331,26.37,27.765,24.655,9.978,26.843,20.264,21.534,16.03,22.933,24.466,20.18,16.522,12.008,11.488,13.803,22.647,12.986,0.43,8.638,20.208,17.799,0.424,17.152,19.144,8.498,0.589,7.421,5.769,11.501,10.769,11.721,14.442,-6.697,4.953,10.098,11.437,-4.389,8.598,17.326,17.33,-1.453,14.219,-1.442,8.045,7.919,5.157,5.663,4.182,6.619,5.583,-1.313,1.682,-9.861,2.294,5.742,15.151,10.67,-3.025,23.824,10.378,25.911,32.366,23.105,15.974,21.18,26.814,21.098,34.083,26.326,27.258,22.872,29.351,27.293,21.821,14.54,22.015,13.987,28.877,13.773,28.351,14.23,19.66,26.047,9.673,21.193,21.779,17.721,23.909,11.884,2.154,23.368,18.448,11.842,8.542,15.388,16.377,11.652,20.011,11.864,21.644,18.187,23.674,19.046,-0.476,17.794,9.943,10.393,14.9,-0.55,21.894,13.748,7.899,0.987,12.617,19.044,15.495,19.548,17.129,19.11,10.011,8.725,1.32,5.751,10.285,10.015,5.853,0.531,5.382,14.863,-8.587,12.934,12.001,10.529,-5.633,12.036,17.7,9.514,-6.539,15.763,12.593,-3.087,10.17,15.679,10.41,5.864,3.199,13.237,-2.667,-1.687,15.914,9.906,-3.262,18.819,15.914,8.986,-0.665,3.911,6.726,7.502,6.171,6.897,3.21,6.103,7.736,14.782,0.454,13.525,9.928,4.317,-1.362,-9.464,-9.644,6.423,9.588,7.149,2.522,5.129,6.316,5.219,2.382,-1.946,4.18,5.402,-3.763,0.427,1.047],[20.493,24.681,14.675,33.906,28.251,15.366,26.399,27.763,24.695,10.17,26.944,20.211,21.266,15.959,22.818,24.56,20.191,16.574,12.148,11.592,13.783,22.57,12.873,0.211,8.67,20.243,17.815,0.37,17.014,19.234,8.571,0.695,7.453,5.701,11.422,11.019,11.512,14.494,-7.141,4.892,10.11,11.518,-4.468,8.668,17.034,17.542,-1.49,14.07,-1.464,8.286,7.801,5.265,5.802,3.964,6.673,5.756,-1.285,1.759,-10.094,2.141,5.92,15.289,10.791,-3.088,23.689,10.465,25.6,32.655,23.069,15.59,21.035,26.426,21.31,33.944,25.962,28.099,23.441,29.449,26.818,21.733,15.095,21.669,14.199,29.173,13.627,28.295,14.571,19.8,25.854,10.208,21.227,22.029,17.719,23.256,11.768,2.066,23.732,18.372,11.696,8.595,15.175,16.634,11.803,20.388,11.995,21.22,18.323,23.407,19.257,-0.344,18.016,10.146,10.18,14.784,-0.281,22.076,13.328,7.617,1.371,12.414,19.222,15.312,19.432,17.119,19.076,10.127,8.352,0.8,5.634,10.503,9.948,5.917,0.444,5.61,14.995,-8.854,12.758,12.244,9.945,-5.296,11.965,17.067,9.594,-6.383,15.968,12.54,-3.267,10.335,15.951,10.657,5.473,3.292,13.348,-2.698,-1.699,15.577,9.826,-3.352,18.826,15.127,9.653,-1.094,3.573,6.883,7.926,6.507,6.799,3.083,6.75,7.959,14.488,0.537,13.946,9.882,4.275,-1.507,-9.811,-9.301,5.925,9.532,7.474,2.568,5.156,6.235,5.376,2.185,-1.612,4.127,5.75,-4.34,0.59,1.38],[20.557,24.795,14.477,33.897,28.2,15.386,26.334,27.593,24.605,10.346,27.13,20.259,21.046,15.766,22.637,24.684,20.207,16.711,12.31,11.795,13.832,22.433,12.808,0.091,8.888,20.189,17.72,0.392,16.816,19.487,8.64,0.743,7.498,5.744,11.228,11.153,11.254,14.504,-7.643,4.806,10.318,11.401,-4.516,8.657,16.692,17.843,-1.588,14.113,-1.6,8.434,7.842,5.294,5.905,3.657,6.855,6.0,-1.148,1.678,-10.221,2.095,6.126,15.449,10.817,-3.076,23.821,10.511,25.675,32.25,22.905,15.563,20.273,26.917,20.999,33.959,26.087,28.143,23.522,29.401,26.979,21.916,14.652,21.667,14.144,29.804,13.513,28.309,14.808,20.012,26.119,11.052,20.614,22.089,17.632,23.263,12.199,1.584,23.79,18.363,12.06,8.877,15.33,16.844,11.598,20.5,11.328,21.633,18.136,23.4,19.448,-0.249,18.41,10.512,10.598,14.964,-0.293,21.623,12.487,7.628,1.074,12.812,19.081,15.569,19.22,17.451,19.524,10.012,8.531,0.737,5.654,11.191,9.923,6.084,0.312,5.757,15.251,-9.006,12.431,12.234,10.067,-5.324,12.306,17.106,9.224,-6.457,16.128,12.436,-3.303,9.696,16.084,10.275,5.2,3.187,12.83,-2.724,-1.204,15.494,10.182,-3.391,18.761,14.824,9.16,-1.3,3.774,7.054,7.807,6.886,6.671,3.197,7.328,8.025,14.731,0.534,13.82,10.112,4.757,-2.05,-10.142,-8.958,5.435,9.453,7.269,2.106,5.224,6.181,5.566,1.405,-1.669,4.479,5.91,-4.112,0.626,1.93],[20.696,24.796,14.241,33.801,28.189,15.3,26.26,27.505,24.409,10.609,27.317,20.329,20.783,15.612,22.468,24.744,20.208,16.937,12.532,11.911,13.931,22.316,12.833,0.032,9.294,20.116,17.646,0.312,16.582,19.842,8.69,0.671,7.542,5.892,11.355,11.102,10.928,14.518,-7.914,4.76,10.515,11.238,-4.514,8.695,16.413,18.064,-1.778,14.117,-1.79,8.327,7.779,5.315,5.939,3.565,7.053,6.17,-1.053,1.521,-10.157,1.987,6.422,15.574,10.75,-2.988,23.963,11.098,26.077,31.953,23.113,15.581,20.486,26.577,21.253,34.69,26.235,27.941,23.333,29.3,27.234,21.856,14.669,21.791,13.991,29.941,13.478,28.306,14.394,20.389,25.957,10.519,20.738,22.004,17.29,23.573,12.148,1.863,23.66,18.37,12.159,9.128,15.354,16.828,11.695,20.366,11.145,22.083,18.055,24.117,19.054,-0.477,18.489,10.872,10.778,15.1,-0.794,20.954,12.042,7.862,0.935,12.79,19.043,16.271,19.39,17.205,19.681,9.922,8.92,1.04,5.976,11.036,9.938,6.005,0.67,5.543,14.823,-9.421,12.114,12.321,9.832,-5.906,12.277,17.145,9.016,-7.163,16.023,12.149,-3.571,9.311,16.39,10.662,5.553,3.156,12.948,-2.836,-1.17,15.682,10.411,-3.591,19.563,14.967,8.825,-1.42,3.477,7.196,7.485,6.756,6.983,3.189,7.317,8.205,15.317,0.322,13.914,10.34,4.995,-2.823,-10.782,-9.448,5.801,9.317,7.185,1.925,5.621,6.209,5.375,1.75,-1.276,4.78,5.694,-3.979,0.6,2.027],[20.947,24.704,14.069,33.828,28.157,15.223,26.239,27.522,24.473,10.834,27.422,20.412,20.639,15.448,22.24,24.829,20.194,17.122,12.764,11.77,13.843,22.277,12.935,0.104,9.797,19.964,17.696,0.037,16.434,19.982,8.744,0.581,7.66,5.785,11.528,10.924,10.62,14.418,-7.941,4.763,10.654,11.057,-4.54,8.761,16.246,18.279,-1.989,14.132,-2.035,8.143,7.629,5.433,5.908,3.589,7.156,6.227,-0.923,1.487,-10.1,1.881,6.676,15.689,10.707,-3.019,23.866,10.99,26.159,32.212,23.273,15.297,20.717,26.364,21.467,34.902,25.453,28.443,23.319,29.249,27.358,22.035,14.675,21.823,13.846,30.003,13.098,27.784,14.182,20.608,25.652,10.519,20.793,22.193,17.249,23.51,12.315,1.86,23.513,18.298,12.012,9.195,15.433,16.91,12.165,20.509,11.417,21.318,17.854,24.794,19.015,-0.636,18.756,11.192,10.213,15.518,-0.607,21.257,12.256,8.133,1.138,12.575,18.796,16.318,19.373,17.138,19.502,10.344,9.052,0.803,6.113,10.637,10.172,6.148,0.324,5.579,14.924,-9.649,11.988,12.305,10.157,-5.946,12.045,16.729,9.382,-7.234,15.498,12.219,-3.897,9.306,17.163,10.931,5.877,3.321,13.2,-3.238,-1.824,15.879,10.181,-3.735,19.897,14.779,9.104,-1.528,3.047,6.608,7.673,6.525,7.136,3.03,6.922,8.465,15.533,0.19,13.927,10.039,4.832,-2.609,-10.515,-10.065,6.917,9.31,7.722,2.359,5.155,6.143,5.522,2.084,-1.073,5.056,5.811,-3.757,0.939,1.764],[21.128,24.548,13.939,33.964,28.028,15.147,26.142,27.688,24.748,10.929,27.477,20.531,20.724,15.316,22.039,24.936,20.209,17.303,12.854,11.589,13.65,22.174,13.087,0.237,10.317,19.793,17.874,-0.074,16.298,19.862,8.79,0.424,7.856,5.656,11.583,10.812,10.365,14.333,-7.941,4.699,10.752,10.971,-4.57,8.819,16.163,18.397,-2.14,14.047,-2.404,8.01,7.569,5.73,5.852,3.595,7.29,6.384,-0.654,1.448,-10.091,1.811,6.742,15.71,10.616,-3.055,23.609,10.635,26.421,32.362,23.464,15.236,20.351,26.166,21.524,34.17,25.011,28.513,23.091,29.009,27.603,22.119,14.497,21.54,13.209,29.669,13.21,27.8,14.683,20.445,25.492,10.93,20.075,22.27,17.108,23.374,13.135,1.918,23.58,18.239,12.322,9.218,15.107,16.873,12.319,20.532,11.766,21.633,17.644,24.925,19.366,-0.611,18.765,11.471,9.962,15.797,-1.013,21.469,12.793,8.611,0.95,12.254,18.983,16.115,19.044,17.036,19.426,10.335,8.984,0.551,6.026,10.801,9.708,5.684,0.059,5.454,15.161,-9.197,11.724,12.184,10.374,-5.922,11.661,16.367,9.989,-6.961,15.443,12.447,-4.064,9.054,17.45,10.448,5.49,3.045,13.259,-3.125,-2.185,16.062,10.071,-3.975,19.806,14.911,10.097,-1.531,3.338,6.873,7.153,6.302,7.329,3.289,7.494,8.493,15.415,0.129,13.895,10.151,4.923,-2.026,-9.318,-9.933,7.396,9.578,7.136,2.234,5.129,5.973,5.94,1.795,-1.361,5.069,6.006,-3.548,1.095,1.532],[21.14,24.255,13.782,34.009,27.958,15.177,25.972,27.846,25.064,10.842,27.566,20.555,20.764,15.36,22.053,25.014,20.135,17.371,12.898,11.722,13.453,22.17,13.301,0.379,10.579,19.717,17.896,-0.138,16.218,19.555,8.792,0.189,7.92,5.579,11.606,10.754,10.104,14.382,-7.888,4.497,10.907,10.996,-4.46,8.954,16.118,18.21,-2.208,13.985,-2.598,7.93,7.472,6.066,5.742,3.611,7.439,6.634,-0.456,1.384,-9.99,1.746,6.731,15.649,10.61,-2.985,23.382,11.298,26.649,32.454,23.788,15.199,20.593,26.077,21.877,34.035,25.576,28.213,22.833,28.887,28.055,22.173,14.62,21.633,12.752,28.811,13.491,27.645,14.281,20.55,25.566,10.842,20.683,22.289,17.183,23.196,12.923,2.055,23.509,18.27,12.744,9.554,14.962,17.152,12.325,20.487,11.266,22.109,17.787,24.896,19.228,-0.371,18.605,11.973,9.956,15.843,-1.193,20.955,12.809,8.486,0.92,12.158,19.131,15.873,18.968,17.646,19.632,10.02,8.776,0.759,6.169,11.456,9.177,4.968,0.399,5.787,14.958,-9.367,11.35,11.862,10.01,-5.773,12.059,16.298,9.795,-7.086,15.693,12.01,-4.455,8.591,17.048,10.239,5.22,2.881,13.176,-2.874,-2.447,15.814,10.342,-4.057,19.751,14.686,9.984,-1.534,3.675,6.755,7.457,6.564,7.602,2.98,7.858,8.448,14.904,0.056,14.189,10.354,5.261,-1.725,-8.711,-9.55,7.256,9.318,6.64,1.793,5.455,5.833,6.222,1.522,-1.323,5.247,6.163,-3.792,1.078,1.798],[21.152,23.891,13.704,34.074,27.926,15.151,25.865,27.831,25.365,10.845,27.78,20.5,20.878,15.584,22.175,24.996,20.13,17.409,12.858,11.794,13.313,22.3,13.439,0.511,10.684,19.723,17.808,-0.233,16.273,19.269,8.714,0.098,7.856,5.418,11.649,10.691,9.797,14.543,-7.923,4.199,10.979,11.108,-4.262,9.029,16.048,17.939,-2.229,13.934,-2.487,7.744,7.501,6.372,5.76,3.597,7.442,6.812,-0.444,1.401,-9.74,1.728,6.734,15.63,10.663,-2.783,23.094,11.356,26.844,32.425,23.843,15.073,20.664,26.071,21.717,33.439,26.178,28.497,22.48,29.282,27.963,21.992,14.473,21.651,13.438,27.694,13.006,27.687,14.113,20.489,25.752,10.555,20.949,22.253,17.451,23.412,12.268,2.346,23.53,18.335,12.564,9.608,14.908,16.98,11.858,20.389,11.451,21.601,17.807,24.997,18.671,0.133,17.867,12.34,10.129,15.801,-0.845,21.216,13.1,7.836,0.704,12.127,18.827,15.483,19.175,17.624,20.041,9.751,8.905,0.922,6.05,11.72,9.209,5.175,0.22,5.396,15.027,-9.464,11.186,11.996,9.914,-5.754,12.384,16.258,9.502,-7.195,16.084,11.874,-4.443,8.826,16.405,10.75,5.362,2.768,12.977,-2.814,-2.424,15.368,10.526,-4.067,19.312,14.805,9.553,-1.768,3.745,6.177,8.101,6.626,8.147,2.697,7.738,8.783,14.774,0.045,14.455,10.336,5.475,-1.891,-9.269,-9.93,7.295,9.227,7.321,1.927,4.789,5.819,6.203,1.231,-1.026,5.131,6.231,-4.14,1.272,2.195],[20.979,23.601,13.737,33.891,27.868,14.934,26.016,27.711,25.583,10.988,27.96,20.367,20.958,15.797,22.19,25.113,20.22,17.354,12.638,11.767,13.277,22.515,13.454,0.682,10.815,19.681,17.677,-0.229,16.376,19.06,8.503,0.18,7.756,5.23,11.616,10.676,9.754,14.733,-8.017,3.949,10.886,11.2,-4.2,8.985,16.053,17.6,-2.292,13.895,-2.266,7.56,7.703,6.564,5.836,3.688,7.288,6.878,-0.365,1.411,-9.633,1.786,6.635,15.8,10.654,-2.566,22.842,10.695,26.935,32.529,24.036,15.527,20.95,26.392,21.653,33.802,25.683,29.039,22.014,29.315,27.5,21.792,14.318,21.604,13.903,26.701,12.544,27.87,14.779,20.098,25.316,11.009,20.574,22.072,17.533,23.415,12.069,2.474,23.517,18.355,12.354,9.471,14.661,16.668,11.492,20.323,11.6,21.935,17.833,24.795,18.747,0.24,17.419,12.355,10.038,16.022,-1.177,21.618,13.979,7.895,0.513,12.004,18.87,15.439,18.994,17.061,19.732,9.944,8.824,0.829,6.003,11.995,8.486,5.818,-0.074,5.464,15.381,-9.389,10.934,12.306,9.852,-5.612,12.492,16.242,9.899,-7.012,16.288,12.191,-4.082,8.735,16.104,11.028,5.146,2.496,12.78,-2.644,-2.074,15.203,10.342,-4.112,19.093,15.122,9.718,-1.853,3.625,6.216,7.625,6.276,8.159,2.817,7.485,8.664,15.66,0.169,14.002,10.431,5.551,-1.911,-9.514,-9.739,7.427,9.14,7.494,2.17,5.247,6.2,6.441,1.492,-0.717,4.776,5.931,-3.407,1.234,2.349],[20.659,23.553,13.815,33.719,27.787,14.744,26.173,27.681,25.651,11.189,28.084,20.217,20.961,15.942,22.066,25.307,20.232,17.205,12.315,11.703,13.256,22.764,13.436,0.819,10.957,19.361,17.471,-0.15,16.384,18.9,8.181,0.216,7.569,5.163,11.539,10.668,9.869,14.893,-7.991,3.791,10.904,11.369,-4.179,8.945,16.229,17.432,-2.43,14.023,-2.09,7.479,7.819,6.629,5.891,3.816,7.075,6.905,-0.181,1.48,-9.647,1.951,6.482,16.032,10.555,-2.259,23.001,10.934,27.045,32.306,24.221,15.886,20.825,25.976,21.601,34.125,25.675,28.775,21.956,29.16,27.999,21.688,14.196,21.709,13.152,26.04,13.084,27.577,14.649,19.946,25.789,11.106,20.701,22.073,17.713,23.538,12.325,2.463,23.797,18.438,12.559,9.51,14.917,17.156,11.505,20.245,11.565,22.532,18.031,24.699,18.486,0.046,17.017,12.363,10.227,16.492,-1.058,21.629,14.084,7.532,0.759,12.074,18.813,15.776,18.817,17.037,19.31,10.53,8.56,1.361,5.774,11.858,8.115,6.031,0.266,6.075,15.288,-9.299,10.976,11.883,9.682,-5.455,12.013,15.713,9.864,-7.4,16.382,11.915,-3.928,8.625,15.87,10.702,4.689,2.466,12.738,-2.665,-1.742,15.207,10.069,-4.296,18.707,14.871,9.457,-1.623,3.341,6.12,7.771,6.671,7.872,2.563,7.071,8.157,16.341,0.287,14.243,10.527,5.266,-1.882,-8.822,-9.086,7.458,8.996,6.54,2.658,5.599,6.749,6.816,1.502,-0.522,4.694,5.679,-3.087,1.59,1.975],[20.503,23.68,13.779,33.706,27.583,14.684,26.252,27.759,25.648,11.376,28.162,20.249,20.99,15.979,21.934,25.402,20.135,17.185,12.072,11.65,13.294,22.928,13.305,0.838,11.097,18.96,17.359,0.038,16.383,18.789,7.737,0.346,7.47,5.171,11.44,10.639,9.975,14.851,-7.988,3.678,10.847,11.321,-4.156,8.823,16.469,17.487,-2.429,14.168,-1.984,7.347,7.977,6.647,5.958,3.922,6.834,6.82,0.067,1.556,-9.433,2.081,6.435,16.366,10.543,-1.932,23.275,11.764,27.023,31.91,24.28,15.651,20.279,25.97,21.417,33.534,25.969,28.736,22.146,28.537,28.481,21.359,13.869,21.655,12.864,25.846,13.654,27.581,13.621,20.067,25.906,10.991,20.911,21.877,17.804,23.51,12.444,2.53,23.989,18.264,12.298,10.021,14.967,17.029,11.331,20.441,11.292,22.412,17.746,25.051,18.305,-0.129,17.071,12.614,10.005,16.489,-0.874,21.52,13.509,7.36,0.779,12.301,18.69,15.877,18.547,16.873,19.17,10.883,8.602,1.57,5.594,10.996,8.703,6.19,0.686,5.748,15.497,-9.203,11.222,11.916,9.76,-5.526,12.11,15.646,9.656,-7.68,16.191,12.354,-3.93,8.922,15.721,10.37,4.518,2.293,12.973,-2.845,-1.722,15.019,9.92,-4.217,18.701,14.549,9.511,-1.594,3.755,6.236,7.962,6.93,8.33,3.11,7.118,7.691,16.069,0.381,14.616,10.262,5.372,-1.512,-8.535,-9.773,7.626,8.945,6.934,2.348,5.215,6.437,6.182,1.539,-0.706,4.709,5.899,-3.095,1.573,1.279],[20.526,23.893,13.706,33.565,27.4,14.607,26.193,27.858,25.643,11.58,28.171,20.339,20.991,15.862,21.867,25.258,19.936,17.149,11.967,11.579,13.402,22.897,13.07,0.788,11.148,18.709,17.321,0.107,16.382,18.798,7.31,0.566,7.636,5.196,11.272,10.639,10.074,14.606,-8.054,3.624,10.708,11.142,-4.157,8.695,16.622,17.581,-2.186,14.259,-1.894,7.299,8.114,6.65,6.025,4.082,6.636,6.74,0.231,1.53,-9.116,2.08,6.504,16.474,10.597,-1.683,23.309,11.519,27.126,31.92,24.091,15.42,20.936,26.056,21.664,33.807,25.519,29.098,22.196,28.907,28.337,21.334,14.326,21.282,13.148,25.869,13.184,27.303,13.206,20.127,25.862,11.085,20.601,22.005,17.637,22.966,11.842,2.632,23.84,18.132,12.529,10.799,14.903,16.679,11.091,20.579,11.429,22.076,17.491,25.486,18.209,-0.037,16.978,12.855,9.843,16.11,-0.99,21.475,12.816,7.47,1.062,12.123,18.77,15.739,18.657,17.717,19.329,10.369,8.344,1.443,5.766,10.73,8.523,5.998,0.55,5.507,15.461,-9.568,11.442,12.093,9.904,-5.494,12.353,16.152,9.504,-7.166,16.079,12.091,-3.701,8.709,15.996,10.572,4.488,2.214,13.306,-2.794,-1.547,15.276,9.897,-4.088,19.04,15.102,9.655,-1.54,4.062,5.914,8.138,6.918,8.18,3.271,7.233,7.557,15.468,0.326,15.359,9.786,5.467,-0.61,-8.534,-10.504,7.405,9.137,7.07,2.206,5.456,6.42,6.481,2.075,-0.643,4.721,5.677,-2.665,1.659,1.315],[20.643,24.07,13.665,33.485,27.273,14.646,26.005,27.958,25.502,11.673,28.133,20.57,21.001,15.778,21.7,25.013,19.731,17.027,11.875,11.636,13.366,22.731,12.918,0.754,11.122,18.656,17.558,0.003,16.333,18.825,7.03,0.712,7.858,5.189,11.079,10.641,10.106,14.509,-7.976,3.585,10.652,10.979,-4.045,8.608,16.807,17.635,-1.84,14.34,-1.683,7.24,8.231,6.65,6.163,4.301,6.501,6.669,0.403,1.481,-8.927,2.161,6.578,16.548,10.521,-1.462,23.373,11.307,26.887,32.358,24.18,15.601,20.822,26.257,21.599,33.805,25.85,28.702,22.446,29.183,28.259,21.759,14.171,20.899,13.209,26.104,12.685,27.123,13.192,19.844,25.559,11.227,20.647,22.088,17.5,22.915,11.23,2.544,23.95,17.851,12.83,10.684,14.977,16.888,11.27,20.472,11.555,21.877,17.918,24.987,17.919,-0.057,16.91,12.948,9.893,15.742,-0.658,21.637,11.947,7.044,0.968,12.059,18.95,15.498,18.216,17.354,19.612,9.68,8.717,1.432,5.966,10.948,8.029,5.703,0.311,5.914,14.808,-9.554,11.617,11.976,9.653,-5.595,12.274,16.464,9.21,-7.207,15.061,11.851,-3.249,8.975,16.364,10.478,4.593,2.676,13.26,-2.724,-1.546,15.277,10.047,-3.684,19.14,14.944,9.378,-1.535,4.15,5.924,8.32,6.662,7.905,2.592,7.138,7.422,15.369,0.334,15.522,9.816,5.268,-0.174,-8.859,-10.416,7.006,9.475,6.692,2.667,5.762,6.891,6.849,2.007,-0.467,4.762,5.496,-2.717,1.889,1.963],[20.78,24.071,13.66,33.458,27.23,14.695,25.891,28.001,25.389,11.6,28.056,20.596,21.104,15.826,21.453,24.798,19.594,16.93,11.784,11.713,13.246,22.535,12.838,0.777,11.111,18.689,17.555,0.063,16.381,18.816,7.0,0.693,7.918,5.17,10.816,10.484,10.093,14.407,-7.936,3.557,10.656,10.974,-3.868,8.441,16.953,17.665,-1.531,14.379,-1.314,7.138,8.424,6.773,6.28,4.539,6.48,6.485,0.492,1.537,-8.855,2.268,6.493,16.668,10.505,-1.432,23.903,11.698,26.789,32.69,23.884,15.733,21.204,26.273,21.787,33.923,25.653,28.548,22.317,28.888,28.137,21.547,13.713,21.098,13.296,26.389,13.145,27.331,13.567,19.79,25.752,11.196,20.297,22.474,17.59,22.64,11.474,2.498,23.832,17.773,12.428,9.762,14.962,16.593,11.314,20.327,11.823,22.068,17.98,24.247,18.353,-0.198,17.024,12.587,9.997,15.413,-0.575,21.781,11.832,6.659,0.182,12.298,19.243,15.838,17.953,17.12,19.32,9.8,9.064,1.454,6.107,11.325,7.292,5.428,1.087,5.604,14.326,-9.447,11.54,11.95,9.071,-5.63,11.834,16.841,9.098,-7.135,15.248,12.047,-3.079,8.988,16.09,10.366,4.615,2.486,13.238,-2.856,-1.76,15.365,9.786,-3.325,19.123,14.885,9.398,-1.277,4.044,6.364,8.265,6.822,7.934,2.672,6.982,7.01,16.059,0.575,15.346,9.819,4.908,0.139,-8.482,-10.494,6.892,9.025,6.962,3.041,5.747,6.654,6.395,1.753,-0.288,4.621,5.601,-2.402,1.771,2.831],[20.893,23.94,13.81,33.55,27.332,14.71,25.895,27.895,25.225,11.549,27.98,20.526,21.352,15.987,21.266,24.451,19.49,16.787,11.804,11.817,13.221,22.422,12.689,0.989,11.12,18.806,17.404,0.043,16.5,18.846,6.995,0.651,7.903,5.115,10.685,10.251,10.0,14.269,-7.963,3.592,10.602,11.066,-3.718,8.081,17.106,17.655,-1.318,14.319,-0.992,7.18,8.595,6.826,6.285,4.597,6.517,6.204,0.453,1.782,-8.79,2.361,6.144,16.864,10.442,-1.488,23.86,11.124,26.786,31.835,23.682,15.669,20.777,26.021,21.955,33.73,25.501,28.892,22.14,28.713,28.33,21.551,13.651,21.219,13.345,26.864,12.735,27.134,13.736,20.215,25.708,11.11,20.753,22.437,17.8,22.433,12.107,2.393,23.949,17.652,12.151,9.712,14.759,16.68,11.137,20.028,11.61,21.859,17.896,24.551,18.203,-0.376,17.097,11.952,10.018,15.283,-0.532,21.526,12.474,6.552,0.924,12.159,18.682,16.294,18.614,17.479,18.335,10.148,8.623,1.064,6.036,11.371,6.951,5.729,1.009,5.633,14.545,-9.092,11.382,11.796,8.987,-5.2,11.933,17.094,8.981,-7.396,15.938,12.269,-2.676,8.651,15.819,10.746,4.108,2.191,13.074,-2.625,-1.122,15.474,9.428,-3.269,18.501,15.421,9.63,-0.558,4.413,5.929,8.696,7.495,8.315,2.996,6.851,7.491,16.516,0.667,15.417,10.197,4.814,0.157,-7.89,-10.357,6.756,8.811,6.913,2.966,5.534,6.993,7.098,2.084,-0.644,4.31,5.607,-1.843,1.506,2.773],[20.949,23.845,13.808,33.474,27.448,14.598,26.066,27.674,25.039,11.581,27.978,20.513,21.408,16.212,21.218,24.276,19.506,16.615,11.925,11.775,13.279,22.373,12.516,1.111,11.123,19.051,17.264,0.091,16.604,18.883,6.941,0.466,7.834,5.286,10.799,10.054,9.913,14.301,-7.792,3.642,10.526,11.079,-3.479,7.767,17.285,17.433,-1.178,14.182,-0.626,7.112,8.873,6.893,6.219,4.567,6.615,6.037,0.256,1.768,-8.671,2.472,5.803,17.143,10.489,-1.59,23.133,10.57,26.584,31.663,23.965,15.763,20.996,25.829,21.638,34.16,25.783,28.523,22.204,28.547,28.554,21.922,14.165,21.36,13.605,27.167,12.513,27.28,13.849,20.739,25.253,11.078,20.899,22.091,17.962,22.057,11.807,2.87,23.703,17.577,11.765,10.386,14.498,16.926,11.249,20.026,11.407,21.511,18.11,24.466,18.247,-0.122,17.491,12.084,10.182,15.226,-0.782,21.246,13.086,6.526,0.98,11.739,18.821,16.327,18.257,17.273,17.968,10.072,8.541,0.609,5.915,11.363,7.261,6.309,0.619,6.094,14.879,-9.453,11.395,11.701,8.908,-5.074,12.248,16.99,9.131,-7.176,15.609,11.938,-2.253,8.662,15.638,10.566,4.416,2.31,13.314,-2.231,-0.654,15.755,8.636,-2.885,18.276,14.943,9.594,-0.095,4.778,5.749,8.647,6.993,8.535,3.242,6.272,7.909,16.38,0.661,15.683,10.419,4.604,0.252,-8.069,-10.302,6.439,8.884,7.004,2.59,5.549,7.313,7.009,2.202,-0.853,3.911,5.717,-2.353,1.641,2.261],[20.951,23.763,13.731,33.391,27.417,14.605,26.28,27.461,24.91,11.543,28.021,20.609,21.324,16.425,21.135,24.234,19.584,16.512,11.996,11.645,13.229,22.345,12.422,1.265,11.165,19.227,17.142,0.047,16.669,19.018,6.894,0.156,7.717,5.647,10.969,9.873,9.919,14.371,-7.582,3.778,10.451,10.957,-3.24,7.474,17.539,17.101,-1.032,14.081,-0.295,7.166,9.127,6.952,6.004,4.636,6.769,5.898,-0.015,1.598,-8.617,2.464,5.421,17.304,10.688,-1.711,23.122,11.056,26.645,31.886,23.958,16.226,21.237,25.614,21.821,34.473,25.281,28.393,22.254,28.175,27.915,21.624,14.037,21.39,13.521,27.648,12.987,27.587,13.329,20.166,25.999,11.048,20.302,22.421,18.092,22.368,10.981,3.087,23.39,17.988,11.6,11.474,14.681,16.752,11.586,20.49,11.288,21.914,18.115,23.971,18.709,0.626,17.763,12.275,10.078,15.023,-0.469,21.075,12.572,6.533,0.582,11.985,18.718,16.204,18.184,17.345,18.144,9.596,8.946,0.747,5.897,11.501,7.698,6.534,0.378,6.11,15.521,-9.253,11.189,11.495,9.308,-4.869,12.199,17.025,8.894,-7.106,14.993,11.75,-1.724,8.506,15.348,10.019,4.724,2.325,13.044,-1.951,-0.206,15.902,8.005,-2.871,18.419,14.752,9.305,-0.048,4.323,5.909,8.616,7.014,8.464,3.308,5.624,7.571,16.592,0.847,16.295,9.983,4.633,-0.044,-8.402,-10.097,6.378,9.185,7.432,2.91,5.909,7.342,6.439,1.913,-0.802,3.639,5.654,-2.833,1.53,1.685],[21.015,23.894,13.83,33.419,27.356,14.59,26.332,27.205,24.8,11.401,27.93,20.63,21.111,16.551,21.136,24.087,19.637,16.42,11.934,11.625,13.186,22.362,12.333,1.481,11.241,19.245,17.104,-0.09,16.642,19.185,6.964,0.035,7.751,6.086,11.18,9.812,9.923,14.362,-7.43,4.005,10.28,10.764,-3.046,7.032,17.789,16.922,-0.929,13.904,-0.004,7.35,9.265,6.842,6.007,4.73,6.707,5.893,-0.179,1.491,-8.541,2.371,5.113,17.453,10.8,-1.785,23.719,11.513,26.661,32.198,23.882,16.261,20.816,25.314,21.82,34.291,25.637,28.565,22.079,28.122,27.679,21.36,13.866,20.968,13.159,28.06,13.075,27.083,13.334,20.07,26.304,11.46,20.436,22.487,18.3,22.387,10.975,3.345,23.75,18.003,11.441,11.67,14.696,16.476,11.51,20.476,11.523,22.152,18.327,24.085,18.526,1.07,17.494,12.801,9.801,14.684,-0.254,21.346,11.723,6.403,0.754,12.26,18.681,15.977,18.227,17.176,18.53,9.482,8.711,0.852,5.97,11.492,7.709,5.627,0.082,6.103,15.965,-8.842,10.609,11.268,9.43,-4.72,11.701,17.384,8.174,-6.996,15.056,12.232,-1.894,8.276,15.217,10.271,4.579,2.466,13.199,-2.135,0.213,16.236,8.09,-2.705,17.981,15.146,9.17,-0.361,3.709,6.051,8.883,7.473,8.214,3.13,5.278,7.627,16.62,0.529,16.992,9.713,4.485,-0.317,-8.385,-10.274,6.353,9.58,7.225,3.706,5.364,7.633,6.557,2.017,-0.99,3.306,5.749,-2.466,1.499,1.709],[21.009,24.107,13.888,33.462,27.24,14.513,26.33,27.084,24.877,11.302,27.692,20.522,20.861,16.526,21.176,23.95,19.674,16.266,11.791,11.753,13.238,22.415,12.137,1.706,11.378,19.16,17.08,-0.101,16.517,19.193,7.14,0.086,7.771,6.314,11.318,9.85,9.874,14.431,-7.24,4.117,10.113,10.719,-2.931,6.649,18.092,16.889,-0.831,13.779,0.085,7.418,9.381,6.584,6.132,4.881,6.551,5.901,-0.194,1.561,-8.514,2.21,4.995,17.629,10.78,-1.792,23.878,11.139,26.174,32.575,23.378,16.326,20.831,25.174,21.822,34.454,25.66,28.498,22.277,27.97,27.83,21.918,14.024,20.638,13.662,28.26,12.981,27.381,13.933,20.253,25.776,11.485,20.387,22.296,18.392,21.647,11.729,3.425,23.856,17.909,11.747,11.403,14.759,16.478,11.22,19.81,11.761,21.707,18.046,24.305,18.094,0.918,17.445,13.08,10.023,14.47,-0.316,21.504,11.11,6.171,0.529,11.874,18.729,16.068,18.427,17.277,19.356,9.661,8.661,0.179,5.927,11.48,7.509,5.8,0.296,6.444,15.872,-8.983,10.728,11.547,9.578,-4.558,11.689,17.652,7.276,-6.547,14.887,11.853,-1.746,8.366,14.972,10.714,5.114,2.555,13.67,-2.087,0.417,16.54,7.965,-2.599,17.54,14.479,9.107,-0.803,3.507,6.264,9.099,7.302,8.162,3.18,5.002,7.693,16.688,0.326,17.13,9.89,4.336,-0.001,-7.817,-10.223,6.034,9.511,6.516,3.755,5.499,7.886,6.881,2.087,-0.918,3.129,5.787,-2.327,1.29,1.874],[21.028,24.208,14.005,33.601,27.162,14.515,26.209,27.234,24.865,11.209,27.531,20.438,20.695,16.496,21.191,23.811,19.626,16.15,11.729,11.867,13.278,22.306,11.848,1.666,11.426,19.12,17.036,0.023,16.369,19.231,7.207,0.12,7.735,6.276,11.428,9.866,9.922,14.558,-7.18,4.145,10.026,10.782,-2.8,6.306,18.41,16.801,-0.822,13.865,0.058,7.397,9.53,6.514,6.181,4.914,6.595,5.733,-0.2,1.699,-8.454,1.989,4.996,17.72,10.694,-1.666,23.84,10.727,26.201,32.6,23.433,16.128,20.505,25.258,21.721,35.229,25.665,27.98,22.567,27.795,27.439,21.931,13.957,20.441,14.078,28.358,12.926,27.156,13.981,20.326,25.624,10.661,20.341,22.043,18.3,21.422,12.118,3.388,23.799,17.919,12.02,11.399,14.29,16.46,11.474,20.013,11.931,21.852,17.182,24.014,18.438,0.774,17.351,13.007,10.747,14.322,-0.165,21.172,11.303,6.316,0.799,11.817,18.504,16.076,18.269,17.273,19.536,9.668,8.895,0.09,5.99,11.092,7.777,6.579,0.883,6.442,16.117,-8.63,11.247,11.282,9.732,-4.524,12.037,17.648,7.002,-6.197,15.085,11.606,-1.456,8.468,15.095,10.658,4.862,3.057,12.596,-2.134,0.558,16.898,7.73,-2.822,17.657,14.757,9.074,-0.256,4.08,6.066,8.824,7.36,8.091,3.239,5.031,7.458,17.011,0.391,17.262,10.212,4.647,0.243,-7.537,-10.295,5.972,9.367,6.462,3.622,5.886,7.769,6.515,1.717,-1.1,3.065,5.499,-2.243,1.397,2.26],[21.112,24.155,14.16,33.897,27.092,14.641,26.081,27.298,24.91,11.01,27.499,20.365,20.597,16.507,21.11,23.698,19.513,16.028,11.797,11.911,13.161,22.219,11.604,1.444,11.363,19.227,16.779,0.257,16.109,19.258,7.23,0.152,7.755,6.159,11.444,9.87,10.117,14.817,-7.125,4.045,9.967,10.9,-2.681,6.054,18.664,16.76,-0.821,13.896,0.076,7.396,9.38,6.379,6.285,4.906,6.711,5.51,-0.382,1.875,-8.35,1.911,4.939,17.823,10.591,-1.421,23.665,10.886,26.201,32.69,23.209,15.458,20.745,25.409,21.797,35.501,25.971,27.928,22.522,28.411,27.539,21.727,14.105,20.571,14.674,28.162,13.41,26.976,13.278,20.233,25.638,10.889,20.139,21.881,18.036,21.915,11.86,3.335,23.377,17.929,11.791,11.152,14.513,16.376,11.577,20.809,12.162,21.668,17.221,23.699,18.508,0.662,17.599,12.799,10.946,14.374,-0.263,20.77,11.429,6.675,1.391,11.809,18.299,15.756,17.902,17.1,19.218,10.094,8.798,1.101,5.955,11.321,7.991,7.001,0.683,6.154,16.166,-8.729,11.444,11.561,9.772,-4.473,12.19,18.063,7.237,-5.922,15.693,11.962,-1.467,8.513,14.965,10.505,5.041,2.753,12.972,-1.872,0.714,17.198,7.209,-2.543,17.706,15.041,8.922,0.358,4.876,6.36,9.177,7.146,8.176,3.096,5.123,7.511,17.047,0.114,17.14,10.83,4.469,0.253,-7.977,-10.041,5.711,8.875,6.606,3.153,5.537,7.489,6.121,1.611,-1.1,3.073,5.459,-2.299,1.283,2.581],[21.078,23.918,14.41,34.121,27.072,14.813,26.195,27.366,24.991,10.985,27.658,20.274,20.543,16.448,21.049,23.569,19.509,15.836,11.906,11.922,13.026,22.194,11.531,1.19,11.185,19.287,16.474,0.571,15.769,19.212,7.31,0.186,7.773,6.202,11.454,10.099,10.318,15.207,-7.059,3.958,9.853,11.077,-2.599,5.944,18.933,16.702,-0.666,13.956,0.158,7.453,9.122,6.1,6.243,4.819,6.791,5.295,-0.721,2.016,-8.269,1.831,4.777,17.966,10.68,-1.257,23.398,10.462,26.496,32.757,23.63,15.586,20.51,25.642,21.768,35.371,25.707,28.417,22.184,28.461,27.155,22.196,14.197,20.783,15.385,27.675,13.462,27.413,13.295,19.948,26.119,11.104,19.916,22.044,17.952,22.239,11.618,2.883,23.648,18.12,10.901,11.313,14.617,16.122,11.223,20.55,12.448,21.727,17.367,23.941,18.454,0.263,17.905,12.743,10.476,13.981,0.3,20.543,11.092,6.668,0.987,11.841,18.048,15.669,18.286,16.785,19.238,10.125,8.49,1.36,6.04,11.66,7.853,6.247,0.794,6.429,15.923,-8.838,11.495,11.472,9.827,-4.315,11.982,18.24,7.694,-6.015,16.225,12.331,-1.633,8.744,14.926,10.942,4.675,2.582,13.033,-1.488,0.851,17.442,6.093,-2.535,17.734,15.133,8.997,-0.068,5.005,6.392,9.167,7.244,7.882,3.371,5.229,8.021,17.244,-0.016,17.358,10.74,3.593,0.527,-8.558,-9.778,5.292,8.945,6.765,3.172,5.63,7.375,5.621,1.727,-0.831,2.895,5.472,-2.005,0.857,2.712],[21.001,23.69,14.733,34.054,27.21,15.028,26.437,27.351,25.212,10.979,27.827,20.224,20.352,16.345,21.109,23.59,19.649,15.663,11.98,11.862,13.093,22.159,11.541,0.919,11.116,19.246,16.413,0.87,15.492,19.184,7.376,0.376,7.796,6.323,11.506,10.341,10.408,15.554,-7.049,3.994,9.768,11.197,-2.522,5.91,19.191,16.59,-0.523,14.055,0.283,7.493,8.955,5.789,6.165,4.651,6.905,5.012,-0.922,2.121,-8.229,1.705,4.602,18.083,10.775,-1.157,23.623,10.7,26.632,32.391,23.841,15.897,20.13,25.43,21.096,35.165,25.848,28.239,22.007,28.221,27.749,22.046,14.096,21.062,15.706,27.507,13.536,27.194,13.824,19.756,25.933,10.73,20.094,21.987,17.957,21.541,11.531,2.639,23.771,17.823,10.27,11.456,14.075,15.429,11.127,20.168,12.65,21.875,17.255,23.47,18.439,-0.249,17.702,12.625,10.442,13.835,0.847,21.314,11.392,6.472,1.106,11.69,17.87,15.439,18.207,16.316,19.299,10.028,8.83,0.418,5.949,11.335,7.718,6.157,0.517,6.272,16.094,-8.619,11.345,12.054,9.971,-4.259,12.449,18.094,7.679,-6.833,16.722,12.101,-1.707,8.692,14.902,11.305,4.577,2.484,12.765,-1.489,0.93,17.835,5.033,-2.359,17.614,14.956,8.95,-0.422,4.734,6.173,8.489,7.308,7.151,3.733,5.272,7.478,17.857,-0.012,17.166,10.104,3.77,0.623,-8.668,-9.566,5.516,9.525,6.614,3.486,5.761,7.586,5.477,1.432,-1.566,2.663,5.803,-1.827,0.746,2.668],[20.828,23.608,15.067,33.747,27.344,15.179,26.669,27.259,25.302,10.851,27.915,20.136,20.103,16.208,21.067,23.555,19.792,15.48,11.93,11.872,13.199,22.238,11.531,0.565,11.161,19.161,16.354,1.179,15.391,19.115,7.314,0.565,7.781,6.436,11.555,10.604,10.251,15.787,-7.212,4.132,9.67,11.308,-2.556,5.825,19.282,16.534,-0.406,14.193,0.422,7.393,8.843,5.321,6.133,4.584,7.0,4.888,-1.054,2.227,-8.208,1.516,4.682,18.168,10.674,-1.253,23.616,10.908,27.048,32.247,24.057,15.695,20.078,25.363,21.711,34.858,26.38,27.786,21.851,28.067,28.286,21.795,14.314,21.2,15.8,28.209,14.037,27.048,14.447,20.112,25.86,10.741,19.928,21.962,17.734,21.926,12.117,2.452,23.513,18.043,10.533,11.332,14.315,15.567,11.597,20.103,12.201,21.933,16.853,23.521,18.34,-0.183,17.345,12.838,10.355,13.698,0.679,21.746,11.615,6.687,1.928,11.729,17.842,15.106,17.736,16.722,19.155,10.663,9.251,0.583,6.151,10.8,8.191,7.195,0.451,5.874,16.558,-8.734,11.403,11.876,10.149,-4.179,12.736,18.1,7.359,-7.327,17.167,12.122,-1.231,8.592,14.616,11.322,4.848,2.731,13.522,-1.611,0.686,18.423,4.603,-2.358,17.264,15.229,8.904,0.282,3.72,6.207,8.347,7.336,7.016,3.64,4.852,6.917,17.613,-0.239,17.245,10.39,3.661,0.563,-8.198,-9.555,5.715,9.233,6.822,3.373,5.394,7.192,5.394,1.055,-1.632,2.902,5.974,-1.676,0.586,2.441],[20.712,23.566,15.361,33.383,27.399,15.288,26.884,27.285,25.343,10.581,27.864,20.101,19.853,16.059,21.037,23.569,19.817,15.438,11.951,11.776,13.308,22.391,11.517,0.319,11.261,19.021,16.297,1.437,15.332,19.08,7.198,0.807,7.958,6.542,11.614,10.908,10.077,16.018,-7.383,4.398,9.682,11.401,-2.763,5.616,19.247,16.527,-0.238,14.42,0.631,7.325,8.747,4.988,6.046,4.506,6.894,4.839,-0.996,2.162,-8.204,1.306,4.897,18.153,10.62,-1.332,23.311,10.705,26.818,32.107,24.137,15.414,19.979,25.508,21.295,34.676,26.642,28.338,21.769,27.941,27.791,21.683,14.969,20.633,16.023,28.84,13.943,27.57,13.983,20.174,26.281,10.479,19.607,21.707,17.695,22.048,12.264,2.101,23.357,18.602,11.064,11.214,14.559,15.964,11.874,20.997,11.889,21.867,16.604,23.309,18.505,-0.671,17.4,13.02,10.145,13.598,0.515,20.949,10.833,7.04,2.206,12.017,17.758,15.452,17.534,17.183,18.904,10.87,9.079,1.557,6.236,11.137,8.526,7.643,0.47,6.258,16.448,-8.814,11.467,11.372,10.149,-4.287,12.694,18.051,7.265,-7.474,17.203,12.436,-0.663,8.476,14.655,11.167,5.0,3.003,13.429,-1.494,0.756,18.41,4.812,-2.189,17.108,15.398,8.781,0.294,3.15,6.158,8.64,7.53,6.774,3.718,5.038,7.285,16.971,-0.592,17.379,10.582,3.308,0.474,-7.525,-9.542,5.705,9.256,7.038,3.43,5.649,7.047,4.93,1.191,-1.405,3.264,5.533,-1.937,0.574,2.852],[20.574,23.466,15.447,33.064,27.533,15.416,27.047,27.341,25.376,10.179,27.765,20.051,19.624,16.024,20.893,23.65,19.917,15.537,11.939,11.548,13.472,22.371,11.442,0.01,11.387,18.86,16.291,1.635,15.402,19.199,7.159,1.147,8.228,6.784,11.772,10.985,10.062,16.068,-7.438,4.743,9.843,11.467,-2.984,5.388,19.095,16.522,-0.257,14.556,0.961,7.364,8.828,4.955,5.97,4.385,6.63,4.859,-0.786,2.126,-8.154,1.107,5.144,18.014,10.649,-1.284,23.355,10.532,26.581,31.921,23.898,15.138,19.723,25.438,20.663,34.684,26.583,28.072,21.773,28.36,27.625,21.665,15.103,20.372,16.319,28.973,13.921,27.091,13.795,19.821,26.265,10.05,19.669,21.797,17.672,21.754,12.097,1.824,23.332,18.73,11.035,11.151,14.421,15.515,11.22,21.238,11.955,22.08,16.415,23.369,18.21,-1.063,17.914,13.141,10.074,13.803,1.265,20.768,10.496,6.732,1.921,12.099,17.642,15.451,17.739,17.078,18.076,11.09,9.174,1.057,6.488,11.577,7.441,6.94,0.437,5.857,16.575,-8.935,11.134,12.18,10.176,-4.423,12.675,17.972,7.103,-7.469,17.656,12.268,-0.349,8.368,14.963,11.261,5.619,3.203,13.434,-1.606,0.628,18.285,5.276,-2.014,17.78,15.217,9.095,0.092,3.783,6.353,8.739,7.003,6.401,3.561,5.33,7.545,16.958,-0.615,17.116,10.682,3.381,0.612,-7.165,-9.614,5.711,9.214,6.374,3.698,5.788,7.176,4.863,1.243,-1.369,3.335,5.58,-2.3,0.714,2.989],[20.424,23.327,15.402,32.828,27.61,15.436,27.088,27.438,25.287,9.776,27.62,19.968,19.541,15.992,20.597,23.736,20.102,15.509,11.741,11.447,13.555,22.365,11.354,-0.278,11.543,18.653,16.235,1.924,15.48,19.31,6.941,1.234,8.454,6.854,11.995,10.962,10.083,16.171,-7.547,5.146,10.033,11.441,-3.111,5.257,18.844,16.679,-0.403,14.595,1.226,7.339,8.965,4.952,5.898,4.416,6.514,4.973,-0.609,2.13,-7.98,1.027,5.262,17.812,10.721,-1.183,23.323,10.239,26.56,32.238,23.499,15.216,19.523,25.631,20.701,34.44,26.529,27.662,21.515,28.577,27.662,22.001,15.083,20.281,16.423,28.691,13.993,27.546,14.566,19.936,26.154,10.191,19.431,21.73,17.81,21.981,12.193,1.519,23.446,18.638,10.76,11.048,14.461,15.533,10.755,21.043,11.685,22.104,16.7,23.76,17.475,-1.067,18.286,13.307,10.176,13.971,1.419,20.779,10.521,6.601,1.992,12.24,17.769,15.356,18.059,16.599,17.913,10.973,9.747,1.292,6.738,11.824,7.284,6.667,0.611,6.346,16.395,-9.036,10.53,12.74,10.205,-4.691,12.774,18.031,6.962,-7.03,17.479,12.329,-0.625,8.488,14.884,11.181,5.455,3.746,13.345,-1.997,1.202,18.64,5.385,-2.255,17.997,15.377,9.585,-0.341,4.615,6.547,8.613,6.922,6.123,3.512,5.731,7.454,17.16,-0.647,17.371,10.699,3.489,0.488,-7.218,-9.799,5.034,9.099,6.452,3.242,5.184,7.723,5.391,0.788,-0.854,3.59,5.447,-2.189,0.996,2.399],[20.529,23.125,15.387,32.724,27.659,15.484,27.039,27.578,24.996,9.589,27.416,19.899,19.548,15.951,20.425,23.891,20.255,15.507,11.526,11.556,13.631,22.316,11.321,-0.407,11.662,18.533,16.112,2.184,15.559,19.399,6.68,1.238,8.695,6.832,12.14,10.911,10.02,16.264,-7.625,5.39,10.298,11.445,-3.306,5.207,18.632,16.804,-0.654,14.631,1.34,7.344,9.112,4.835,5.809,4.591,6.545,5.043,-0.501,2.079,-7.783,1.022,5.352,17.698,10.743,-1.107,23.04,9.787,26.667,32.308,23.841,15.564,19.518,25.759,21.017,34.236,26.858,28.219,21.309,28.188,27.252,21.761,14.632,20.129,15.973,28.345,14.14,28.393,14.399,19.96,26.33,9.804,19.664,21.737,17.679,21.379,11.982,1.41,24.354,18.832,10.28,11.367,14.446,15.579,11.639,20.655,11.266,21.939,17.167,24.011,17.321,-1.237,18.388,13.44,10.116,13.688,0.964,21.276,10.323,6.294,2.749,12.246,17.602,15.634,17.658,16.342,18.193,10.559,9.805,1.928,7.128,11.877,7.768,7.358,0.605,6.712,16.215,-9.135,10.055,12.513,10.509,-4.769,12.705,17.889,7.04,-7.346,17.492,12.447,-0.445,8.573,15.049,11.198,5.472,3.634,13.074,-1.923,1.55,18.888,4.799,-2.517,17.635,15.135,9.423,-0.748,4.555,6.944,8.707,7.48,6.386,3.729,5.704,7.519,16.914,-0.531,17.184,10.762,3.695,0.601,-7.701,-9.563,4.284,9.175,6.849,3.67,4.914,7.464,5.121,0.161,-0.222,3.579,5.49,-2.112,1.092,1.799],[20.767,22.858,15.445,32.835,27.818,15.452,27.214,27.482,24.825,9.484,27.327,19.958,19.694,15.912,20.324,24.287,20.347,15.379,11.403,11.749,13.564,22.39,11.252,-0.426,11.71,18.511,15.903,2.368,15.78,19.475,6.529,1.28,8.817,6.945,12.27,10.785,9.905,16.361,-7.664,5.421,10.475,11.602,-3.437,5.075,18.473,16.708,-1.027,14.619,1.364,7.518,9.127,4.733,5.87,4.89,6.737,5.041,-0.42,1.958,-7.675,0.943,5.285,17.558,10.778,-1.013,22.844,9.85,26.541,32.017,24.019,15.444,19.668,25.644,21.742,33.993,26.635,27.923,21.071,28.141,27.556,21.534,14.886,19.875,15.129,27.897,14.523,28.16,14.18,19.772,26.101,9.549,19.41,21.601,17.647,21.507,11.812,1.454,24.836,18.753,9.831,11.737,14.74,15.78,11.844,20.644,11.059,21.52,17.423,23.659,18.012,-1.329,18.076,13.519,10.452,13.57,1.191,21.205,10.455,6.065,3.157,12.385,17.498,15.37,17.141,16.466,18.665,10.235,9.819,0.87,7.106,11.933,7.722,6.973,0.782,5.797,16.454,-9.214,10.11,12.244,10.713,-4.874,12.556,17.778,6.933,-7.686,17.592,12.568,-0.514,8.262,14.8,11.708,6.045,3.941,13.18,-1.926,1.884,18.68,4.685,-2.823,17.564,15.12,9.986,-0.603,4.122,6.576,9.008,7.248,6.367,3.702,5.193,7.604,17.192,-0.693,16.466,10.999,3.532,0.525,-8.293,-9.184,4.319,9.104,6.712,3.865,4.953,7.194,4.483,0.506,-0.815,3.366,5.741,-1.874,0.986,2.097],[21.155,22.675,15.421,32.993,27.867,15.3,27.414,27.333,24.677,9.356,27.355,20.05,19.806,15.831,20.334,24.48,20.267,15.156,11.464,11.96,13.448,22.423,11.133,-0.359,11.735,18.438,15.837,2.471,16.082,19.465,6.532,1.13,8.795,6.853,12.413,10.67,9.832,16.514,-7.777,5.409,10.602,11.835,-3.497,4.785,18.388,16.438,-1.343,14.661,1.282,7.712,9.058,4.619,5.978,5.08,7.08,4.829,-0.468,1.887,-7.68,0.868,5.064,17.335,10.972,-0.924,22.35,10.034,26.561,32.614,23.903,15.27,20.202,25.459,21.91,34.161,26.322,27.7,21.218,27.963,27.279,21.171,14.982,19.581,14.781,28.017,14.686,28.202,14.481,19.998,26.485,10.072,19.593,21.882,17.713,21.933,11.336,1.438,24.589,18.814,9.788,11.32,14.663,15.628,10.914,21.218,10.969,21.849,17.453,23.704,18.301,-1.192,17.929,13.641,10.86,13.455,1.542,21.102,10.654,6.197,3.008,12.071,17.256,15.188,17.212,16.496,18.87,10.493,9.649,0.713,7.036,12.108,6.917,7.212,0.605,5.837,16.68,-9.108,10.374,11.736,10.784,-5.059,13.083,17.385,6.533,-7.316,18.136,12.864,-0.464,8.066,14.646,12.3,6.217,3.947,13.177,-2.119,2.348,18.228,4.995,-3.172,17.48,14.946,10.199,-0.506,3.971,7.105,8.919,6.983,5.959,3.418,5.552,7.689,16.988,-0.953,16.662,10.937,3.322,0.631,-8.454,-8.901,5.247,9.297,6.9,4.066,5.237,7.407,4.973,0.973,-1.088,3.315,5.592,-2.153,0.778,2.48],[21.483,22.75,15.295,33.19,27.834,15.178,27.472,27.159,24.594,9.297,27.271,20.28,19.956,15.784,20.393,24.299,20.145,14.907,11.379,12.181,13.293,22.462,11.074,-0.258,11.737,18.383,15.916,2.439,16.303,19.403,6.61,0.9,8.705,6.792,12.463,10.61,9.756,16.807,-7.841,5.452,10.744,12.125,-3.637,4.605,18.344,16.187,-1.513,14.753,1.145,8.052,9.075,4.622,6.119,5.108,7.292,4.626,-0.65,1.867,-7.716,0.911,5.141,17.131,11.098,-0.972,22.122,10.035,26.236,32.774,23.574,15.349,19.98,25.381,21.66,34.676,26.834,27.809,21.044,27.884,27.592,21.672,14.496,19.402,14.954,28.587,14.619,28.61,14.195,20.27,26.889,9.993,19.971,21.987,17.585,21.843,11.571,1.531,23.988,19.014,10.095,10.796,13.839,15.59,10.915,21.665,11.182,22.183,17.906,23.988,17.323,-1.214,18.169,13.632,10.854,13.52,1.601,20.661,10.311,5.859,3.039,11.631,17.498,15.875,17.391,16.38,18.554,10.296,10.105,1.231,7.238,12.381,6.412,7.365,0.358,6.152,16.849,-9.291,10.644,11.921,10.985,-5.211,13.644,16.992,6.345,-7.063,18.343,12.647,-0.279,8.028,14.424,12.434,5.785,3.659,13.417,-2.182,2.665,17.888,4.663,-3.341,17.243,14.886,10.024,-1.166,4.103,7.151,8.591,7.111,5.55,3.137,5.737,7.996,16.115,-0.786,16.257,10.885,3.06,0.974,-8.317,-9.071,5.591,9.726,7.56,4.343,5.515,7.668,4.83,0.362,-0.687,3.242,5.861,-1.906,0.982,2.644],[21.673,22.826,15.203,33.324,27.866,15.011,27.552,27.178,24.591,9.213,27.259,20.565,20.093,15.9,20.343,24.037,20.044,14.648,11.237,12.273,12.925,22.332,11.035,-0.256,11.774,18.282,16.127,2.36,16.573,19.337,6.631,0.721,8.755,6.775,12.517,10.582,9.605,16.987,-7.887,5.382,10.853,12.311,-3.747,4.6,18.347,15.907,-1.595,14.861,1.016,8.511,9.106,4.683,6.3,5.047,7.402,4.559,-0.752,1.985,-7.968,0.964,5.061,16.804,11.175,-0.866,22.627,9.932,26.113,32.694,23.15,15.349,19.805,25.29,21.525,35.109,27.112,27.167,21.081,27.946,27.188,22.663,14.614,20.244,15.563,28.941,14.491,28.539,13.842,20.428,26.533,9.49,19.82,22.332,17.721,21.074,12.188,1.653,24.429,19.29,10.203,11.02,13.97,15.481,11.295,21.377,11.969,22.422,18.397,23.535,17.093,-1.151,18.182,13.548,10.884,13.167,1.354,20.907,10.178,5.877,3.026,11.475,17.246,16.176,17.614,16.571,18.13,10.487,10.015,0.767,7.141,12.349,6.461,7.453,0.706,6.329,17.338,-9.194,10.565,12.269,11.047,-5.278,13.67,16.856,6.394,-7.375,18.753,12.737,-0.042,7.805,14.157,12.315,6.026,3.607,13.365,-2.538,2.535,17.752,4.315,-3.329,17.274,15.472,9.952,-1.53,4.45,7.137,9.053,7.738,5.746,3.198,5.845,8.052,15.942,-0.469,16.031,10.803,3.235,0.823,-7.607,-9.192,4.483,9.67,7.557,3.943,5.331,7.812,4.856,0.186,-1.18,3.411,6.353,-1.756,0.863,2.097],[21.74,22.799,15.262,33.49,27.883,14.782,27.562,27.287,24.696,9.019,27.137,20.835,20.067,16.308,20.275,23.93,20.009,14.349,11.248,12.413,12.74,22.302,10.958,-0.305,11.946,18.261,16.363,2.184,16.871,19.251,6.541,0.617,8.91,6.784,12.636,10.607,9.322,17.2,-8.045,5.329,10.873,12.207,-3.777,4.718,18.302,15.739,-1.598,14.97,1.025,8.796,9.312,4.877,6.428,5.07,7.434,4.405,-0.811,2.162,-8.21,1.034,4.861,16.582,11.199,-0.834,22.568,9.539,25.71,32.656,23.067,15.411,20.484,25.361,21.753,34.99,26.856,26.826,21.219,27.885,26.495,23.477,14.651,20.711,15.84,29.01,14.378,28.294,13.767,20.291,26.271,9.569,19.864,22.765,17.96,21.232,11.853,1.461,24.016,18.754,10.238,11.14,13.856,15.417,11.211,20.639,12.429,21.896,18.441,23.441,17.355,-0.838,17.812,13.792,10.839,12.809,1.132,21.093,10.161,6.37,2.833,11.275,17.581,16.111,17.361,16.39,18.26,10.704,9.848,0.921,7.214,12.397,7.013,7.285,0.192,6.008,17.203,-9.277,9.854,12.459,10.99,-5.471,13.451,17.065,6.34,-7.426,18.612,12.836,-0.226,7.901,14.047,12.217,5.951,3.873,13.421,-2.429,2.21,18.289,4.085,-3.435,16.76,15.622,10.247,-1.24,4.497,7.893,9.384,7.634,6.339,3.738,5.621,8.642,15.855,-0.65,15.624,10.753,3.654,1.025,-8.045,-9.711,3.432,9.707,7.66,3.551,5.303,7.464,4.776,0.97,-1.43,3.376,6.258,-1.773,0.627,2.255],[21.821,22.731,15.383,33.612,27.834,14.554,27.458,27.311,24.787,8.842,26.825,21.04,20.093,16.738,20.346,23.868,19.867,14.153,11.3,12.464,12.824,22.293,10.871,-0.388,12.12,18.339,16.558,1.912,17.027,19.14,6.531,0.582,9.082,6.667,12.71,10.746,8.828,17.18,-8.258,5.284,10.786,11.91,-3.759,4.816,18.275,15.741,-1.606,14.957,1.085,8.957,9.45,5.136,6.426,5.135,7.391,4.232,-0.815,2.525,-8.471,1.215,4.69,16.441,11.094,-0.899,22.051,9.368,25.39,32.882,23.247,16.057,20.808,25.594,21.744,35.032,26.574,26.772,21.104,27.879,27.235,23.157,14.264,20.294,15.412,28.875,14.545,28.456,13.639,20.251,26.705,9.807,19.793,22.576,18.571,21.787,11.651,1.463,23.832,18.319,10.039,11.631,14.1,15.332,10.968,20.784,12.743,21.921,18.716,23.506,17.515,-0.801,17.769,14.081,11.129,12.652,0.602,20.785,9.93,5.999,2.738,11.557,18.048,16.174,17.142,16.49,19.038,11.014,10.165,0.871,7.376,12.775,7.529,7.113,-0.026,6.154,17.123,-9.77,9.607,12.134,11.449,-5.394,13.299,17.218,6.472,-7.173,18.795,12.585,-0.336,7.593,13.927,12.446,6.1,4.052,13.978,-2.348,1.678,19.131,4.148,-3.472,16.291,15.402,10.433,-0.811,4.198,8.074,9.293,7.593,6.626,4.079,5.322,8.638,15.7,-0.589,15.146,10.868,3.64,0.958,-8.466,-9.971,3.191,9.629,8.075,4.033,5.591,7.89,4.686,0.844,-1.004,3.027,6.385,-1.838,0.626,2.768],[21.808,22.516,15.446,33.569,27.711,14.323,27.336,27.388,24.864,8.894,26.569,21.065,20.243,17.151,20.456,23.814,19.717,13.937,11.321,12.42,13.183,22.195,10.851,-0.398,12.385,18.36,16.743,1.587,17.071,19.325,6.564,0.654,9.198,6.646,12.816,10.907,8.491,17.078,-8.363,5.277,10.699,11.672,-3.689,4.879,18.273,15.739,-1.613,14.944,1.035,9.055,9.51,5.203,6.482,5.2,7.373,4.079,-0.635,2.906,-8.695,1.307,4.586,16.241,10.981,-0.995,21.986,9.67,24.87,32.89,23.441,17.067,20.209,25.582,22.206,35.366,27.119,26.967,20.978,28.191,27.364,22.864,14.132,19.925,14.888,28.828,15.046,28.448,13.494,20.587,26.749,9.465,20.274,22.936,18.988,21.636,12.021,1.586,24.308,18.127,9.479,11.889,14.279,15.585,11.004,20.826,12.883,22.443,18.853,23.265,17.628,-1.046,17.736,14.219,11.236,12.858,0.444,20.555,10.008,5.692,2.351,11.355,17.943,16.176,17.684,17.12,19.276,11.282,10.225,0.361,7.51,12.98,7.61,7.011,-0.144,6.537,17.031,-9.73,9.197,12.123,11.573,-5.318,13.003,17.282,6.683,-7.313,18.831,12.262,0.34,6.77,14.102,12.457,5.799,3.961,14.017,-2.501,1.393,19.356,4.435,-3.339,16.681,14.855,10.114,-0.982,4.138,8.088,9.282,7.584,6.427,4.362,5.118,8.081,15.541,-0.137,15.465,10.512,2.883,0.766,-8.347,-10.412,3.501,9.602,7.944,4.444,5.203,8.028,4.847,0.384,-1.225,2.751,6.063,-1.649,0.513,3.125],[22.061,22.314,15.469,33.454,27.579,14.175,27.36,27.502,24.863,9.024,26.525,21.181,20.483,17.453,20.501,23.837,19.552,13.901,11.335,12.285,13.367,22.209,10.822,-0.325,12.518,18.387,16.977,1.231,17.084,19.624,6.641,0.556,9.118,6.897,13.022,11.128,8.482,17.042,-8.345,5.291,10.517,11.559,-3.554,4.999,18.198,15.854,-1.657,14.946,0.993,9.035,9.598,5.099,6.506,5.21,7.205,3.819,-0.441,3.091,-8.88,1.178,4.515,16.164,10.838,-1.009,21.846,10.222,24.498,32.628,23.304,16.975,20.039,25.73,22.284,34.974,27.388,26.839,20.799,28.643,26.505,22.732,14.071,19.685,14.622,28.782,15.245,27.696,13.146,20.992,26.457,9.357,19.872,22.8,19.315,21.366,12.166,1.434,24.183,18.269,9.431,11.773,14.349,15.221,11.546,20.883,12.542,22.012,18.726,23.179,17.319,-0.83,18.13,14.354,11.164,13.028,0.537,20.964,10.457,5.767,1.781,11.662,18.162,16.062,17.651,16.974,19.168,10.591,9.953,1.271,7.338,12.762,7.181,7.06,0.23,6.052,17.121,-9.65,8.836,12.399,11.438,-5.391,13.158,16.905,6.822,-7.326,18.806,12.311,0.401,6.6,14.269,12.401,5.764,3.954,13.662,-2.53,1.219,19.302,5.185,-3.382,17.067,15.081,10.016,-1.485,4.182,8.109,9.279,7.54,6.407,4.209,5.166,8.204,15.34,-0.418,15.52,10.173,2.261,0.823,-8.249,-10.619,3.986,9.646,7.75,3.977,4.921,7.879,4.953,0.732,-1.254,2.744,5.978,-2.13,0.911,3.367],[22.385,22.195,15.564,33.226,27.499,13.952,27.35,27.645,24.826,9.1,26.591,21.272,20.505,17.54,20.413,23.846,19.419,14.095,11.46,12.088,13.328,22.306,10.785,-0.235,12.401,18.417,17.19,0.945,17.009,19.859,6.649,0.527,8.957,7.094,13.167,11.23,8.71,17.176,-8.174,5.261,10.36,11.602,-3.525,5.319,18.015,15.993,-1.829,14.896,0.991,8.935,9.57,4.946,6.501,4.991,7.071,3.538,-0.361,3.163,-8.952,0.943,4.471,16.103,10.7,-1.034,21.738,10.43,24.441,32.424,23.244,16.816,20.812,25.99,22.382,34.533,27.32,26.538,20.5,28.434,26.505,23.29,14.136,19.886,14.653,28.677,14.471,27.746,13.331,20.988,26.88,9.527,19.91,23.185,19.322,21.842,11.969,1.659,23.878,18.368,10.155,11.941,14.615,15.231,11.452,20.917,12.205,21.686,18.717,23.084,17.252,-0.984,18.525,14.335,10.433,13.129,-0.105,20.856,10.182,6.221,1.783,12.165,18.657,16.219,17.401,16.667,19.401,10.327,9.523,1.262,7.027,12.506,7.155,7.691,0.836,6.137,17.66,-9.797,8.795,13.009,11.648,-4.983,12.752,16.512,6.959,-7.577,18.552,12.487,-0.296,6.937,14.555,11.993,5.969,3.818,13.938,-2.005,0.716,19.159,5.322,-3.527,17.2,15.102,10.079,-1.758,4.492,7.873,9.599,7.688,6.375,4.189,5.465,8.551,15.435,-0.815,15.507,10.283,2.159,0.823,-7.987,-10.743,3.879,9.216,8.016,3.627,5.041,7.674,5.019,0.923,-0.976,2.989,5.987,-1.854,0.902,3.734],[22.478,22.101,15.673,32.851,27.54,13.679,27.385,27.761,24.747,9.121,26.694,21.495,20.54,17.5,20.36,23.857,19.344,14.405,11.583,11.933,13.338,22.279,10.83,-0.224,12.303,18.427,17.253,0.865,16.907,20.026,6.61,0.777,8.795,7.208,13.085,11.183,8.975,17.298,-8.046,5.23,10.233,11.588,-3.427,5.683,17.864,16.089,-2.165,14.992,0.893,8.789,9.376,4.866,6.53,4.836,7.136,3.185,-0.435,3.265,-8.903,0.828,4.51,16.103,10.584,-1.007,21.852,10.093,24.94,32.513,22.932,17.224,21.112,26.241,22.598,34.518,26.976,26.691,20.637,28.157,27.148,23.138,13.814,20.313,14.651,28.35,14.482,28.024,13.453,20.704,26.817,9.298,19.813,22.864,19.33,21.841,12.353,1.814,24.141,18.182,10.277,11.475,14.861,15.938,11.074,20.608,12.56,22.237,18.703,23.076,17.355,-0.872,18.34,14.116,10.122,13.364,-0.365,20.752,9.901,6.414,1.742,11.86,18.467,16.163,17.69,16.942,19.918,11.218,9.834,0.72,7.076,12.611,7.554,7.392,0.406,6.475,17.928,-9.624,9.161,12.636,11.977,-4.716,12.669,16.193,7.546,-7.526,18.967,12.674,-0.325,7.302,14.467,12.124,5.746,3.66,14.024,-2.158,0.329,18.47,5.241,-3.995,17.324,14.854,9.967,-1.423,4.522,7.428,9.338,8.095,5.829,4.534,5.552,8.506,15.342,-0.578,15.462,10.509,2.793,0.624,-7.755,-10.587,3.746,8.92,8.204,3.328,5.296,7.707,4.727,0.628,-0.658,2.916,5.97,-1.672,0.781,3.893],[22.451,22.168,15.863,32.587,27.606,13.502,27.375,27.831,24.705,9.016,26.889,21.641,20.645,17.544,20.406,23.923,19.331,14.835,11.774,12.082,13.372,22.164,10.902,-0.197,12.162,18.474,17.157,0.813,16.801,19.987,6.554,0.997,8.818,7.154,12.991,11.117,9.199,17.464,-8.034,5.142,10.215,11.55,-3.316,6.067,17.684,16.074,-2.533,15.065,0.849,8.592,9.237,4.731,6.608,4.786,7.284,2.908,-0.533,3.526,-8.873,0.883,4.663,16.118,10.513,-0.966,21.394,9.499,25.44,32.165,22.794,17.068,20.91,26.037,22.305,34.156,26.73,26.849,20.837,28.601,27.459,22.955,13.137,20.731,14.541,28.077,15.159,27.968,12.823,20.652,26.389,9.419,20.076,23.376,19.29,21.352,12.122,1.653,24.055,17.685,10.185,11.084,14.544,15.931,11.122,20.33,12.812,22.54,18.578,23.258,17.476,-0.578,18.237,13.925,10.203,13.867,-0.315,20.953,10.078,6.185,1.899,11.723,18.59,15.827,17.971,17.077,20.11,11.201,9.837,0.99,7.008,12.513,8.042,7.283,0.483,5.851,17.364,-9.246,9.967,12.328,11.548,-4.811,12.589,16.217,7.777,-7.448,19.157,12.808,-0.004,7.767,14.664,11.694,5.713,3.697,14.119,-2.532,-0.392,17.626,5.237,-4.333,17.283,15.426,9.345,-1.695,3.671,7.643,9.015,7.929,5.833,4.803,5.285,8.335,15.8,-0.252,15.021,10.191,2.893,0.702,-7.909,-10.647,3.489,9.125,7.694,3.696,5.52,7.605,4.79,0.161,-0.571,2.888,6.135,-2.086,0.817,3.877],[22.394,22.249,15.94,32.466,27.494,13.242,27.297,27.854,24.84,8.76,27.103,21.793,20.792,17.628,20.55,23.88,19.345,15.319,11.942,12.389,13.336,22.2,11.031,-0.182,11.965,18.634,16.947,0.716,16.725,19.971,6.509,1.119,8.877,6.984,12.801,10.945,9.408,17.501,-7.894,5.16,10.125,11.612,-3.393,6.262,17.43,15.986,-2.854,15.024,0.747,8.402,9.08,4.629,6.782,4.643,7.386,2.719,-0.551,3.841,-8.875,1.0,4.917,16.121,10.525,-0.963,21.165,9.488,25.322,31.643,22.964,16.916,20.578,26.088,22.446,33.846,26.438,26.783,20.91,28.828,27.492,23.106,13.66,20.4,14.728,28.327,15.243,27.824,12.783,21.508,26.252,9.749,20.539,23.588,19.459,21.273,12.14,1.49,24.077,17.627,10.347,11.253,14.625,15.809,11.479,20.267,12.431,21.697,18.047,23.463,17.382,-0.623,18.308,13.875,10.602,14.028,-0.436,20.845,10.153,6.034,1.958,11.646,18.443,15.386,17.893,16.904,19.592,10.605,9.692,1.347,6.992,12.564,7.908,7.427,0.949,5.554,17.135,-9.455,10.749,12.804,11.08,-4.977,12.225,15.693,8.132,-7.62,19.357,12.63,0.197,8.215,14.73,11.457,5.75,3.635,14.971,-1.96,-0.848,17.346,5.715,-4.631,17.295,15.827,9.263,-2.58,2.91,7.492,9.073,7.351,6.026,4.783,5.692,8.621,15.275,-0.431,14.848,9.677,2.51,0.804,-8.043,-10.692,3.558,9.322,7.379,4.384,5.476,7.566,4.986,0.402,-1.301,3.375,6.116,-1.958,0.84,4.323],[22.466,22.329,15.9,32.419,27.354,13.065,27.224,27.812,24.97,8.574,27.084,22.016,20.799,17.592,20.554,23.904,19.461,15.705,12.156,12.513,13.259,22.308,11.227,-0.416,11.988,18.707,16.715,0.664,16.61,20.077,6.463,1.181,8.77,6.797,12.507,10.882,9.716,17.423,-7.701,5.269,10.029,11.69,-3.413,6.418,17.126,15.922,-3.101,15.145,0.522,8.201,8.91,4.682,6.969,4.528,7.345,2.627,-0.499,4.087,-8.907,1.037,5.28,15.897,10.526,-1.038,21.747,9.562,25.107,31.757,23.289,17.272,21.014,26.164,22.552,33.72,26.299,26.963,21.026,28.563,27.206,22.587,13.556,20.061,15.148,28.608,14.453,27.329,13.006,21.705,26.475,9.534,20.929,23.86,19.421,21.969,12.049,1.311,24.023,17.62,10.008,11.138,14.806,16.125,11.465,20.389,12.534,22.158,17.942,23.144,17.579,-0.58,18.743,13.739,10.756,14.076,-0.667,20.694,10.477,6.068,1.286,11.98,18.419,15.116,17.746,16.641,19.207,10.504,9.942,1.707,7.141,12.567,7.506,6.812,0.957,5.791,17.401,-9.276,10.738,12.348,10.984,-4.608,12.277,15.373,8.151,-7.447,19.223,12.371,0.095,8.41,14.303,11.381,6.1,3.636,15.646,-1.855,-1.11,17.467,5.858,-4.945,17.272,15.34,9.546,-2.843,2.657,7.06,8.964,7.268,6.058,4.855,6.091,8.848,15.087,-0.456,14.974,9.62,2.265,0.717,-8.004,-10.659,3.71,9.304,7.542,4.983,5.64,7.085,4.958,1.007,-1.285,3.62,6.29,-1.643,0.865,4.887],[22.498,22.528,15.956,32.394,27.306,12.966,27.237,27.648,25.111,8.495,26.946,22.372,20.816,17.543,20.512,24.084,19.58,15.975,12.289,12.455,13.221,22.558,11.367,-0.67,12.149,18.62,16.596,0.483,16.515,20.135,6.513,1.261,8.691,6.658,12.287,10.93,10.092,17.306,-7.511,5.3,9.961,11.72,-3.223,6.52,16.932,15.946,-3.152,15.262,0.149,7.949,8.675,4.724,7.016,4.606,7.32,2.649,-0.422,4.24,-8.916,1.047,5.545,15.615,10.446,-1.119,21.827,9.585,25.087,32.221,23.247,17.091,21.4,25.794,22.282,33.802,26.481,26.766,21.157,28.235,27.497,23.202,13.012,20.262,15.045,28.232,14.629,27.603,12.993,21.463,26.453,9.302,20.619,23.728,19.087,22.018,11.577,1.253,23.761,17.954,9.936,10.732,14.561,16.568,11.846,20.75,12.944,22.665,18.27,23.176,17.811,-1.097,18.994,13.73,10.593,14.443,-0.906,20.959,10.451,6.316,0.903,12.092,18.352,15.281,17.655,16.189,19.019,10.824,9.746,1.433,6.876,12.097,6.518,5.969,0.359,6.003,17.41,-8.924,10.286,12.253,10.603,-4.957,12.658,15.298,8.354,-7.019,19.049,12.44,-0.407,8.439,14.142,11.261,5.933,4.164,15.663,-2.116,-0.985,17.7,5.905,-4.915,16.838,15.599,9.632,-3.153,2.766,7.225,8.57,8.101,5.762,4.921,6.148,8.373,15.301,-0.408,14.442,9.837,2.192,0.67,-7.905,-10.479,3.793,9.159,7.181,5.005,5.699,6.789,5.148,1.142,-0.548,3.725,6.184,-2.177,1.131,5.371],[22.438,22.73,16.077,32.51,27.326,12.89,27.285,27.434,25.134,8.524,26.889,22.65,20.838,17.56,20.485,24.289,19.721,16.148,12.27,12.369,13.109,22.812,11.397,-0.842,12.256,18.558,16.506,0.265,16.52,20.055,6.614,1.214,8.623,6.542,12.104,10.986,10.303,17.192,-7.272,5.307,9.86,11.706,-3.042,6.657,16.897,16.042,-3.115,15.351,-0.219,7.668,8.507,4.589,7.067,4.764,7.249,2.749,-0.291,4.365,-8.802,1.198,5.705,15.363,10.353,-1.119,21.624,9.461,25.464,32.268,23.564,16.676,21.323,25.519,22.474,33.808,26.886,26.321,21.303,28.263,27.2,22.622,13.027,20.199,14.923,27.652,14.942,27.448,12.559,21.4,26.281,9.441,20.195,24.095,19.134,21.614,11.806,0.864,23.857,18.251,10.195,11.058,14.708,16.717,11.588,21.08,13.106,22.282,18.217,24.113,17.486,-1.503,18.752,13.975,10.532,14.74,-1.063,21.528,10.46,6.347,1.115,11.793,17.987,15.742,17.69,16.318,19.187,10.763,9.398,1.432,6.62,12.028,5.916,6.238,0.247,5.717,17.475,-8.717,10.797,12.556,10.626,-4.865,12.903,15.12,8.139,-7.009,18.842,12.355,-0.961,8.486,14.288,10.894,5.894,3.955,15.362,-2.578,-0.965,17.477,5.483,-4.88,16.776,15.692,9.588,-2.836,3.063,6.657,8.576,7.879,5.335,5.134,6.312,8.323,14.814,-0.182,14.065,10.085,2.52,0.514,-8.003,-10.35,3.577,9.492,6.848,4.618,5.567,7.001,5.458,0.425,-0.635,3.97,5.874,-2.001,0.925,5.384],[22.313,22.714,16.111,32.721,27.207,12.826,27.18,27.446,25.198,8.568,26.763,22.823,20.735,17.547,20.433,24.519,19.793,16.204,12.116,12.379,12.909,22.704,11.5,-0.952,12.379,18.608,16.64,0.083,16.557,19.862,6.692,1.144,8.567,6.511,11.997,10.967,10.457,17.101,-7.054,5.101,9.744,11.63,-2.955,6.658,16.95,16.106,-2.989,15.244,-0.563,7.375,8.618,4.315,7.068,4.77,7.204,2.878,-0.317,4.432,-8.633,1.434,5.833,15.143,10.391,-1.026,21.885,9.257,25.475,32.093,23.492,16.93,21.241,25.621,22.537,33.732,27.405,26.761,21.26,28.133,27.032,22.601,12.85,20.515,14.923,27.589,14.948,27.83,12.549,22.495,26.646,9.397,20.498,24.555,19.111,21.848,11.969,0.717,24.007,18.398,10.529,11.707,14.476,16.408,11.024,20.855,13.11,22.495,18.192,24.117,17.496,-1.947,18.456,14.182,10.573,15.06,-1.297,21.214,10.533,6.376,1.061,11.63,18.26,15.278,17.725,15.816,19.377,10.888,9.512,1.267,6.669,11.96,5.857,6.888,0.338,5.197,17.358,-8.468,11.207,12.54,10.391,-4.505,12.869,15.244,8.354,-6.906,18.846,12.237,-0.941,8.745,14.55,10.139,6.073,3.619,15.173,-2.249,-1.267,17.041,5.382,-4.88,17.328,16.028,9.375,-2.549,3.366,6.512,8.895,7.341,5.51,5.099,7.06,8.391,15.08,-0.12,13.476,10.335,2.742,0.542,-7.876,-10.33,3.471,8.966,7.091,4.207,5.688,7.336,5.221,0.705,-0.677,4.22,5.785,-1.547,0.849,5.504],[22.165,22.614,16.042,32.871,27.148,12.764,27.116,27.518,25.219,8.582,26.691,23.103,20.675,17.543,20.563,24.646,19.821,16.193,11.738,12.537,12.675,22.374,11.748,-1.01,12.617,18.745,16.806,0.09,16.404,19.656,6.729,1.122,8.625,6.542,11.906,10.901,10.552,17.129,-6.823,4.849,9.619,11.519,-2.781,6.628,17.06,16.192,-2.966,15.049,-0.794,7.313,8.923,4.02,6.944,4.719,7.191,2.994,-0.437,4.536,-8.431,1.678,6.029,14.946,10.412,-0.952,22.031,9.199,25.271,31.816,23.409,17.134,21.035,25.712,22.643,33.946,26.919,26.904,21.05,28.238,27.153,23.18,13.003,20.738,15.059,28.109,14.824,27.194,12.756,23.022,26.558,9.209,20.346,24.863,19.004,22.176,11.862,0.583,24.198,18.141,10.628,11.5,14.024,16.449,11.595,20.881,12.88,22.48,17.931,23.757,17.723,-1.916,18.32,14.409,10.746,14.831,-1.428,20.707,10.737,6.477,0.846,11.355,18.27,14.969,17.85,16.21,19.279,10.865,9.683,1.209,6.855,11.322,6.082,6.72,0.112,5.176,16.846,-8.137,11.468,12.52,10.541,-4.512,12.392,15.402,8.421,-6.583,18.98,12.19,-0.967,9.431,14.943,9.075,5.374,3.529,15.328,-1.594,-2.294,16.75,5.78,-4.775,17.525,15.588,9.255,-2.381,3.342,6.442,8.849,7.669,5.586,4.899,7.399,8.67,15.307,0.147,13.128,10.822,2.737,0.857,-7.642,-10.14,4.038,8.777,6.485,3.829,5.917,7.401,4.785,1.402,-0.572,4.3,6.152,-1.994,0.812,5.524],[22.118,22.64,16.012,32.986,27.176,12.804,27.074,27.518,25.114,8.558,26.74,23.401,20.558,17.707,20.858,24.634,19.823,16.103,11.497,12.664,12.504,22.102,11.991,-1.038,12.799,18.78,16.906,0.283,16.171,19.504,6.717,1.059,8.735,6.573,11.769,10.823,10.595,17.233,-6.646,4.529,9.433,11.366,-2.631,6.62,17.156,16.354,-2.989,14.849,-1.043,7.316,9.082,3.802,6.853,4.639,7.287,3.127,-0.463,4.709,-8.271,1.931,6.241,14.77,10.495,-1.053,21.867,9.442,25.166,31.908,23.251,16.931,21.362,25.61,22.538,33.892,25.816,26.52,21.146,28.172,27.289,22.494,12.648,20.682,14.918,28.547,14.711,27.186,12.361,22.777,26.465,8.892,20.405,25.034,19.218,22.116,11.658,0.774,23.895,18.17,11.186,11.553,13.926,16.367,10.931,20.862,12.836,21.733,17.539,24.192,17.721,-1.751,18.214,14.55,11.137,14.428,-0.91,20.697,11.056,7.067,0.873,11.094,18.2,14.94,18.172,16.846,18.978,10.56,9.753,1.824,6.996,11.039,5.859,6.575,0.27,5.117,16.832,-7.898,11.781,12.395,10.278,-4.299,11.986,15.551,8.503,-6.126,19.027,12.255,-1.188,10.08,15.199,8.558,5.471,3.2,15.504,-1.708,-2.766,16.583,5.974,-4.846,17.436,15.497,9.177,-2.171,3.307,6.548,8.979,7.668,5.13,4.97,6.607,8.473,15.215,0.297,13.135,11.044,2.897,0.856,-7.317,-10.12,4.77,9.555,6.273,3.716,5.563,7.39,4.412,1.451,-1.123,4.541,6.076,-1.834,0.57,5.386],[22.079,22.841,15.979,33.173,27.362,12.713,26.971,27.355,24.933,8.565,26.794,23.599,20.545,17.945,20.96,24.651,19.868,16.068,11.333,12.741,12.38,21.931,12.114,-0.939,12.881,18.72,17.021,0.463,16.022,19.439,6.766,1.079,8.738,6.461,11.502,10.699,10.539,17.321,-6.533,4.358,9.277,11.293,-2.645,6.728,17.138,16.505,-2.909,14.796,-1.293,7.329,9.06,3.652,6.671,4.538,7.417,3.295,-0.502,4.848,-8.272,1.993,6.217,14.735,10.601,-1.257,21.786,9.278,24.906,32.34,23.183,17.075,21.769,25.59,21.998,33.654,25.765,26.623,21.574,28.217,27.144,22.71,12.644,20.582,15.058,28.368,14.883,27.548,12.247,22.301,26.379,8.596,20.223,25.171,19.312,22.467,11.277,0.917,23.915,18.056,11.322,12.021,14.193,16.159,10.714,20.929,12.862,21.469,17.604,24.084,17.678,-1.577,18.163,14.539,11.278,14.422,-0.558,20.524,10.967,7.341,1.058,11.627,18.276,14.911,18.144,16.043,18.518,10.899,9.738,1.788,6.816,11.758,5.197,6.988,0.179,5.699,17.357,-7.526,11.607,12.249,10.004,-4.107,11.895,15.517,8.348,-6.38,19.129,12.042,-1.557,11.069,15.309,8.653,5.536,2.89,15.299,-1.678,-2.913,17.158,5.306,-4.627,17.688,15.472,8.921,-1.916,3.245,6.191,9.19,7.426,4.476,5.617,6.224,8.039,14.994,0.306,12.908,11.394,3.477,0.529,-7.13,-9.881,5.081,9.714,6.625,3.617,5.321,7.495,4.919,1.24,-0.91,4.526,5.922,-1.358,0.7,5.408],[21.999,23.114,16.007,33.421,27.526,12.589,26.851,27.102,24.723,8.567,26.791,23.628,20.655,18.072,20.988,24.826,19.884,16.207,11.11,12.81,12.393,21.805,11.937,-0.667,12.949,18.616,16.985,0.715,15.962,19.404,6.719,1.082,8.573,6.39,11.458,10.664,10.519,17.4,-6.469,4.358,9.225,11.315,-2.707,6.734,17.102,16.612,-2.748,14.809,-1.521,7.291,9.034,3.583,6.394,4.414,7.265,3.59,-0.542,4.977,-8.306,1.781,5.962,14.665,10.808,-1.23,22.211,8.821,24.348,32.395,22.989,17.296,21.909,25.426,22.466,34.112,26.796,26.75,21.703,28.251,26.962,23.14,12.354,20.415,14.967,28.033,14.705,27.45,12.4,22.858,26.287,8.529,20.246,25.344,19.591,22.598,11.218,0.878,24.011,18.149,10.789,12.214,14.243,15.846,11.26,20.555,13.094,21.968,17.769,23.951,18.186,-1.557,18.432,14.748,11.281,14.909,-0.615,20.333,10.983,7.544,1.149,11.94,18.602,14.786,17.903,16.033,18.255,10.848,9.528,1.58,6.676,11.763,5.057,6.733,-0.228,6.482,17.788,-7.201,11.408,12.148,9.826,-4.226,11.868,15.43,8.155,-7.006,18.873,11.457,-2.138,11.808,15.339,8.016,5.395,2.972,15.155,-1.33,-2.905,17.818,5.207,-4.548,18.055,15.365,9.09,-1.985,3.098,6.106,9.015,7.344,4.262,5.878,6.996,8.6,15.417,0.313,12.855,11.835,3.789,0.373,-7.203,-10.082,5.052,9.276,6.518,3.444,5.463,7.517,5.083,1.469,-0.732,4.204,6.284,-2.138,0.884,5.812],[22.097,23.425,15.986,33.756,27.471,12.554,26.844,26.963,24.489,8.49,26.721,23.718,20.801,18.014,20.982,24.996,19.797,16.262,11.019,12.865,12.533,21.693,11.629,-0.473,13.076,18.572,16.895,0.996,15.848,19.42,6.484,0.972,8.35,6.479,11.578,10.647,10.607,17.433,-6.512,4.385,9.233,11.316,-2.859,6.635,17.06,16.715,-2.544,14.78,-1.727,7.189,8.884,3.541,6.23,4.309,7.114,3.76,-0.431,5.098,-8.313,1.601,5.808,14.78,11.122,-1.168,22.758,8.449,23.938,32.503,23.206,17.579,21.694,25.359,22.356,34.586,26.708,26.72,21.799,27.911,26.794,23.067,12.348,20.66,14.886,28.172,14.53,27.614,11.976,23.692,26.227,8.731,20.71,25.305,19.575,22.373,11.358,1.357,23.658,17.952,10.454,11.862,14.076,16.198,11.016,20.664,13.927,22.306,17.571,24.58,17.705,-1.309,18.315,14.791,11.382,14.618,-0.56,20.568,11.338,7.528,1.389,11.208,18.388,15.052,17.665,16.497,18.138,10.752,9.313,1.455,6.559,11.56,4.948,6.596,0.226,6.755,17.722,-7.046,11.283,12.323,9.893,-4.27,11.67,15.478,8.432,-6.927,19.161,11.076,-2.009,12.169,15.593,7.936,5.189,3.392,15.043,-1.596,-3.521,17.819,5.647,-4.423,18.039,15.865,9.08,-2.016,3.296,6.659,8.655,7.285,4.394,5.674,6.964,8.545,15.194,-0.062,12.847,11.67,4.005,0.584,-7.621,-9.746,5.407,9.562,5.898,3.016,5.223,7.792,4.66,1.318,-1.113,4.25,6.116,-1.972,0.917,6.096],[22.196,23.645,15.8,34.103,27.329,12.55,26.784,26.945,24.445,8.321,26.61,23.92,20.956,17.811,20.993,25.049,19.691,16.197,11.04,12.999,12.487,21.754,11.54,-0.165,13.098,18.563,16.834,1.227,15.862,19.304,6.129,0.822,8.226,6.726,11.611,10.535,10.741,17.522,-6.522,4.491,9.294,11.263,-2.997,6.788,16.977,16.778,-2.331,14.862,-2.001,7.089,8.79,3.443,6.1,4.236,7.06,3.79,-0.424,5.289,-8.189,1.477,5.787,14.883,11.282,-1.147,23.147,8.461,23.788,32.614,22.968,17.285,21.455,25.32,22.497,34.417,25.677,26.821,22.238,27.57,26.689,23.319,12.969,20.951,14.907,28.659,14.704,27.397,12.337,23.904,26.114,8.646,20.727,25.241,19.253,22.276,11.147,1.218,23.641,18.114,10.928,11.849,14.218,16.263,11.167,20.668,14.249,21.625,17.328,25.176,17.475,-1.072,18.221,14.609,11.637,14.476,0.087,20.313,10.8,7.154,2.041,11.171,17.986,14.852,18.038,16.315,18.279,10.979,9.099,1.18,6.352,12.303,4.77,6.738,0.567,6.585,17.551,-7.313,11.129,12.378,10.221,-4.43,11.444,15.607,8.456,-6.366,19.248,11.273,-1.732,12.273,15.601,8.182,5.35,3.572,14.628,-1.971,-3.769,17.487,5.669,-4.098,17.892,15.555,8.594,-1.48,3.41,6.499,8.664,7.194,4.728,5.007,6.403,7.922,14.642,-0.131,13.255,12.174,3.76,0.642,-7.738,-9.66,5.382,9.804,5.922,2.994,4.891,7.28,4.314,0.768,-0.903,4.605,5.848,-1.507,0.856,5.574],[22.25,23.795,15.715,34.225,27.299,12.766,26.508,26.954,24.414,8.082,26.525,24.006,20.916,17.551,21.027,25.07,19.668,16.163,11.198,13.138,12.482,21.827,11.739,0.191,13.016,18.597,16.806,1.458,15.939,19.166,5.875,0.731,8.095,6.934,11.743,10.337,10.883,17.637,-6.556,4.65,9.254,11.228,-3.178,6.955,16.81,16.71,-2.061,14.905,-2.116,7.062,8.715,3.343,5.958,4.275,6.969,3.829,-0.562,5.406,-8.078,1.427,5.845,14.925,11.451,-1.11,22.899,8.63,24.256,32.677,22.763,16.737,22.15,25.132,22.968,34.099,25.385,26.942,22.166,27.059,26.927,22.928,12.167,20.632,14.472,28.249,14.552,27.134,12.571,23.667,26.253,8.488,20.312,25.82,19.043,22.441,11.253,1.471,23.862,18.035,11.078,11.806,14.176,15.81,11.043,20.777,13.897,21.236,17.361,24.812,18.238,-0.982,18.128,14.765,12.086,14.801,0.743,20.479,10.653,6.708,2.704,11.314,18.481,14.724,18.341,16.21,18.181,10.659,9.189,0.879,6.313,11.946,4.506,7.107,0.314,6.607,17.479,-7.317,11.248,11.941,10.463,-4.202,11.454,15.327,8.38,-6.827,19.329,11.501,-2.359,11.979,15.841,7.992,5.517,3.21,14.959,-2.121,-3.824,17.491,5.486,-3.874,17.767,15.094,8.823,-1.494,3.222,6.011,8.721,6.929,4.526,5.051,6.41,7.962,14.626,-0.084,13.369,12.332,2.847,0.754,-7.548,-9.469,5.235,10.043,6.448,3.064,4.987,7.286,4.477,1.155,-0.773,4.558,5.883,-1.885,0.642,5.089],[22.27,23.696,15.676,34.229,27.236,13.006,26.357,26.874,24.352,7.797,26.457,24.057,20.868,17.337,21.029,25.059,19.653,16.111,11.387,13.133,12.354,21.857,11.979,0.389,12.844,18.887,16.959,1.739,15.998,18.988,5.74,0.573,8.013,7.043,11.859,10.003,11.015,17.727,-6.75,4.7,9.157,11.239,-3.381,7.0,16.536,16.661,-1.781,14.842,-2.189,7.178,8.628,3.357,5.724,4.299,6.95,3.836,-0.634,5.42,-8.044,1.466,5.877,14.972,11.739,-1.135,23.019,8.405,24.667,32.82,22.482,16.689,22.201,25.143,22.603,34.05,25.901,26.796,22.226,26.705,27.212,22.839,12.517,20.693,14.675,27.934,14.315,27.759,12.593,23.719,25.452,8.366,20.379,25.97,19.061,22.399,11.338,1.863,23.758,17.891,10.789,11.745,14.136,15.925,11.298,20.589,14.375,21.5,17.611,24.51,18.062,-0.465,18.016,14.682,12.013,14.722,1.103,20.924,11.76,6.576,1.841,11.574,18.321,14.971,17.814,16.241,18.606,10.015,9.04,1.044,6.16,11.899,4.297,7.049,0.165,7.321,17.836,-6.918,11.634,11.663,10.431,-4.737,11.477,15.101,8.82,-7.458,19.346,11.71,-2.732,11.89,16.031,7.879,5.37,3.09,15.439,-2.016,-3.706,17.742,5.835,-3.591,18.002,15.631,8.984,-1.438,2.921,6.214,8.251,7.004,4.037,6.194,6.678,7.961,14.984,-0.299,13.36,12.231,3.217,0.648,-7.251,-9.639,5.042,10.002,6.516,3.637,4.995,7.388,4.687,1.575,-1.481,4.384,5.651,-1.831,0.491,5.263],[22.242,23.508,15.716,34.248,27.349,13.224,26.267,26.738,24.366,7.537,26.488,24.2,20.739,17.336,21.043,24.993,19.559,16.034,11.578,13.134,12.271,21.895,12.159,0.394,12.742,19.186,16.991,1.914,16.16,18.861,5.761,0.402,7.902,7.161,11.856,9.68,11.215,17.731,-7.005,4.75,9.047,11.244,-3.542,7.103,16.386,16.755,-1.534,14.89,-2.281,7.375,8.469,3.508,5.458,4.323,6.95,3.836,-0.744,5.453,-8.127,1.44,5.849,15.119,11.923,-1.247,23.171,7.861,24.338,32.73,22.581,16.444,21.916,25.179,22.003,34.499,25.565,26.696,21.857,26.969,26.495,23.559,13.24,20.421,15.047,28.089,14.42,27.647,13.092,24.116,25.827,8.066,20.925,25.763,19.042,22.338,11.942,1.834,23.825,17.808,10.551,11.3,13.94,16.212,11.956,20.656,14.391,22.194,17.733,24.823,17.938,-0.537,17.859,14.218,11.821,14.613,0.879,20.725,11.966,6.484,1.71,11.719,18.216,15.164,18.456,16.479,18.985,9.646,8.98,0.916,6.087,12.151,4.24,6.828,0.02,7.973,17.683,-7.417,11.995,11.623,10.264,-5.06,12.173,14.733,8.91,-7.21,19.53,11.52,-2.647,11.526,15.905,7.879,5.349,3.202,15.0,-2.333,-3.817,17.606,6.012,-3.414,18.221,15.34,8.789,-0.856,2.809,6.526,8.156,7.044,4.189,6.6,6.467,7.759,15.293,-0.207,13.226,12.481,3.231,0.572,-7.372,-9.774,5.535,10.124,6.141,4.023,4.318,7.344,4.759,1.046,-1.331,4.218,5.73,-2.047,0.712,6.05],[22.328,23.388,15.766,34.289,27.584,13.572,26.367,26.689,24.261,7.31,26.549,24.297,20.614,17.343,21.022,25.034,19.441,16.102,11.916,13.257,12.262,21.933,12.236,0.151,12.585,19.448,16.942,1.969,16.387,18.875,5.812,0.234,7.731,7.322,11.845,9.525,11.452,17.655,-7.274,4.823,8.92,11.242,-3.727,7.15,16.294,16.901,-1.329,14.697,-2.344,7.458,8.372,3.729,5.205,4.473,6.942,3.886,-0.976,5.578,-8.137,1.219,5.75,15.273,12.019,-1.235,22.829,7.478,23.545,32.842,22.887,16.447,21.776,24.749,21.942,35.095,25.279,26.857,21.691,27.357,26.344,23.43,12.932,20.073,14.75,28.065,14.42,27.563,13.046,24.579,25.917,8.14,20.383,25.908,19.068,22.439,12.144,1.56,23.607,17.931,10.727,11.146,14.11,15.92,11.938,20.588,14.47,22.085,18.077,24.503,18.106,-0.81,17.951,14.223,11.596,14.566,0.416,20.809,11.403,6.379,2.564,11.487,18.433,15.461,18.693,16.814,18.816,9.194,8.963,0.652,5.908,11.807,4.742,7.474,0.006,7.33,17.309,-8.047,12.308,11.323,10.388,-4.853,12.298,15.052,8.596,-7.165,19.343,11.544,-2.792,11.133,15.923,7.893,5.387,3.458,14.769,-2.424,-4.01,17.317,5.984,-3.062,17.997,15.381,8.349,-0.36,2.744,7.062,8.189,6.637,4.935,6.172,6.392,7.909,15.577,-0.023,13.494,12.972,3.343,0.671,-7.912,-10.065,5.571,10.242,6.185,3.902,4.098,6.726,4.903,0.691,-1.034,4.374,5.859,-2.175,0.46,6.809],[22.454,23.484,15.608,34.338,27.645,13.915,26.521,26.768,23.958,7.169,26.545,24.378,20.541,17.3,20.911,24.97,19.326,16.216,12.125,13.396,12.228,21.967,12.222,-0.112,12.437,19.422,17.026,1.878,16.597,19.004,5.889,0.1,7.601,7.53,11.79,9.381,11.659,17.51,-7.485,4.922,8.812,11.262,-3.769,7.161,16.231,17.031,-1.204,14.35,-2.396,7.545,8.223,3.797,5.056,4.626,7.039,3.957,-1.21,5.748,-8.163,0.992,5.732,15.452,12.041,-1.109,22.782,7.521,23.234,33.159,22.294,16.623,22.066,24.967,22.326,35.116,25.658,26.771,21.903,26.907,27.292,23.048,13.154,20.331,14.801,28.472,14.475,28.185,13.142,23.932,25.729,8.042,20.009,25.922,19.169,22.356,11.421,1.482,23.96,17.692,11.113,11.062,13.97,15.975,12.051,20.495,14.523,21.59,18.062,24.336,18.613,-0.932,18.05,14.106,12.077,14.894,1.11,20.729,11.364,6.341,2.579,11.377,18.319,16.205,18.514,16.122,18.161,9.138,8.796,0.724,5.856,12.095,4.912,7.823,-0.099,7.307,17.556,-7.843,12.532,11.188,10.517,-5.097,12.109,15.857,8.653,-7.724,19.192,11.391,-2.315,10.866,15.626,8.032,5.62,3.699,14.815,-2.443,-4.182,17.266,5.815,-2.65,18.013,14.54,8.064,0.168,3.415,7.24,8.085,6.514,4.962,5.836,6.231,7.65,15.582,-0.504,13.596,13.085,3.739,0.645,-8.15,-9.764,5.602,10.525,6.422,3.66,4.048,6.541,4.633,0.615,-1.808,4.327,5.447,-1.932,0.031,7.04],[22.463,23.575,15.477,34.373,27.703,14.18,26.384,26.932,23.568,7.064,26.555,24.316,20.517,17.196,20.82,24.846,19.233,16.267,12.162,13.449,12.197,22.0,12.36,-0.348,12.398,19.275,17.033,1.831,16.877,19.093,6.0,0.116,7.621,7.806,11.736,9.212,11.801,17.37,-7.674,5.12,8.752,11.34,-3.758,7.142,16.309,17.073,-1.024,13.881,-2.388,7.688,8.008,3.564,5.027,4.79,7.063,4.18,-1.445,5.987,-8.152,0.871,5.741,15.491,12.051,-1.002,22.857,7.874,23.401,33.282,21.947,16.557,22.274,25.117,22.769,34.914,25.72,26.869,22.142,26.33,27.332,23.5,13.351,20.458,14.445,28.55,14.26,27.736,13.454,23.718,25.52,7.684,20.689,26.028,18.955,22.183,11.872,1.119,24.056,17.383,11.075,11.023,13.985,16.838,11.864,20.323,14.822,21.66,18.412,24.412,18.345,-1.368,18.224,14.065,12.374,15.096,1.559,20.701,11.625,6.393,2.038,10.934,18.444,16.326,18.239,16.645,17.905,9.065,8.998,0.293,6.02,11.791,4.691,7.477,-0.378,7.811,17.363,-7.644,12.723,11.212,10.498,-5.346,11.707,15.862,8.798,-7.84,18.976,11.613,-2.066,10.793,15.746,8.058,5.79,3.649,14.209,-2.394,-4.126,17.817,5.851,-2.41,18.426,14.767,8.477,0.54,3.782,7.047,7.834,6.325,4.607,5.777,6.429,7.899,15.687,-0.859,13.673,13.459,2.897,0.863,-7.93,-9.868,5.046,10.413,6.405,3.697,4.192,7.197,4.719,0.692,-1.709,4.072,5.785,-2.041,0.01,6.608],[22.323,23.509,15.365,34.283,27.701,14.285,25.877,26.943,23.316,6.951,26.564,24.347,20.511,17.083,20.804,24.705,19.291,16.385,12.119,13.289,12.224,22.108,12.613,-0.682,12.395,19.147,16.998,2.01,17.339,19.031,6.061,0.167,7.789,8.059,11.703,9.036,11.928,17.153,-7.849,5.237,8.855,11.536,-3.826,7.071,16.616,17.088,-0.795,13.607,-2.3,7.75,7.991,3.28,5.026,4.964,7.084,4.205,-1.464,6.191,-8.117,0.809,5.727,15.502,12.079,-1.025,22.928,7.83,22.892,33.548,21.758,16.095,22.165,25.116,22.904,35.076,25.577,27.157,22.035,27.189,26.706,23.246,13.685,20.276,14.554,28.209,14.08,27.92,13.789,24.013,25.45,7.771,20.372,26.214,18.766,22.1,12.618,0.787,23.643,17.457,11.593,11.051,13.756,17.206,12.183,19.91,14.973,21.925,18.723,24.576,17.75,-1.376,18.033,14.106,12.229,15.204,0.868,20.937,11.835,6.768,1.896,11.158,18.086,16.157,18.404,17.217,18.128,8.694,8.954,0.373,5.977,11.648,4.586,7.739,-0.376,8.051,17.041,-7.812,12.487,10.937,10.046,-5.001,11.832,15.522,8.926,-7.264,18.925,11.55,-2.434,11.238,16.348,7.56,5.985,3.755,13.495,-2.218,-4.063,17.52,6.373,-2.528,18.365,14.418,8.739,0.45,3.619,6.859,8.005,6.176,4.585,6.585,6.596,8.024,15.37,-0.919,13.788,13.422,2.7,0.864,-7.707,-9.721,4.98,10.541,6.643,4.041,4.083,6.501,4.284,0.884,-1.252,4.221,6.196,-1.57,-0.114,6.044],[22.104,23.371,15.264,34.198,27.681,14.382,25.455,26.998,23.183,6.819,26.498,24.532,20.353,16.921,20.754,24.561,19.386,16.67,12.23,13.136,12.281,22.224,12.851,-0.888,12.334,19.123,17.084,2.019,17.692,18.962,6.026,0.241,7.881,8.369,11.694,8.743,12.075,16.949,-8.0,5.298,9.068,11.75,-3.806,7.052,16.932,17.015,-0.787,13.556,-2.259,7.697,8.074,3.226,5.019,4.904,7.17,4.23,-1.343,6.292,-8.043,0.851,5.711,15.49,12.267,-1.057,23.079,7.438,22.568,33.71,21.558,15.763,22.11,25.166,22.03,35.351,24.321,27.029,21.577,27.863,26.581,23.54,13.506,20.289,14.48,28.288,14.172,28.098,13.598,24.141,25.101,7.875,20.053,26.349,18.607,22.341,11.711,0.648,23.554,17.638,11.968,11.151,14.013,17.254,12.055,20.154,14.8,22.134,18.668,23.891,17.977,-1.859,17.636,14.061,11.805,15.236,1.33,20.921,11.896,7.152,2.324,11.408,17.91,16.793,18.473,16.118,18.121,8.072,9.092,0.278,6.205,11.722,4.39,8.347,-0.341,7.958,17.284,-8.019,11.743,10.657,10.106,-4.581,12.384,15.742,8.78,-7.471,18.607,11.297,-2.456,12.029,16.586,7.863,5.811,3.812,13.525,-2.503,-3.716,17.336,6.25,-2.408,18.501,14.273,8.34,0.405,3.418,6.901,8.192,6.567,4.417,7.106,6.509,7.987,15.21,-0.912,14.122,13.337,3.161,0.719,-7.434,-9.868,4.565,10.6,6.622,4.242,3.644,6.728,3.92,0.482,-1.479,4.343,5.629,-1.595,-0.113,6.443],[21.87,23.134,15.196,34.161,27.722,14.406,25.186,27.169,23.016,6.701,26.365,24.673,20.277,16.752,20.695,24.337,19.467,16.974,12.323,13.072,12.378,22.301,12.972,-0.985,12.211,19.267,16.931,2.076,17.723,18.771,6.003,0.247,7.807,8.745,11.648,8.484,12.169,16.947,-8.202,5.284,9.28,11.894,-3.656,7.016,17.092,16.969,-0.989,13.53,-2.146,7.616,8.354,3.347,5.035,4.797,7.116,4.257,-1.378,6.353,-7.924,0.826,5.748,15.504,12.411,-1.113,22.795,7.44,22.915,33.812,21.432,15.813,21.62,25.395,21.256,35.565,23.931,26.295,21.512,27.942,26.815,23.095,13.364,20.436,13.769,28.203,14.322,27.886,13.553,23.907,24.537,7.729,20.246,26.546,18.529,22.335,11.675,0.596,23.405,17.67,11.802,10.955,14.154,17.453,11.657,20.709,14.455,22.395,18.698,23.832,18.471,-2.009,17.305,14.016,11.576,15.473,1.641,20.851,12.248,6.579,2.055,11.331,18.43,17.828,18.081,16.369,18.471,7.443,9.447,0.469,6.364,11.775,4.296,8.264,-0.297,7.948,16.945,-7.917,11.432,10.333,10.461,-4.764,12.396,16.072,8.905,-7.884,18.281,11.938,-2.025,12.979,16.166,8.316,5.839,3.831,14.143,-2.472,-3.767,17.933,5.867,-2.51,18.491,14.369,8.517,0.525,3.669,7.092,7.904,6.551,4.55,7.181,6.452,7.681,15.444,-0.495,13.924,13.515,3.558,0.707,-7.575,-9.734,4.699,11.022,6.179,3.775,3.633,7.624,4.353,0.437,-1.405,4.011,5.704,-2.114,0.315,6.94],[21.545,22.939,15.078,34.203,27.65,14.499,24.947,27.361,22.9,6.763,26.183,24.68,20.377,16.607,20.657,24.225,19.645,17.233,12.306,12.979,12.413,22.471,13.112,-1.0,12.076,19.341,16.864,2.166,17.563,18.541,5.951,0.172,7.738,8.953,11.721,8.237,12.244,17.012,-8.459,5.223,9.426,12.025,-3.502,6.977,17.185,16.971,-1.182,13.661,-1.909,7.491,8.721,3.47,5.086,4.781,6.983,4.288,-1.443,6.441,-7.737,0.902,5.705,15.51,12.491,-1.195,22.057,7.281,22.759,33.594,20.992,15.666,21.978,25.527,21.446,35.722,24.726,26.776,21.737,27.999,27.144,22.585,13.7,19.996,13.886,28.237,14.068,28.082,13.44,24.3,24.606,7.527,20.17,26.388,18.45,22.085,12.179,0.517,22.999,17.874,11.59,10.834,14.141,17.632,11.852,20.635,14.4,22.342,17.926,24.209,18.197,-1.878,17.137,13.702,11.601,16.051,1.044,21.428,12.271,5.668,1.701,11.262,18.424,18.427,18.254,16.512,18.17,7.081,9.294,0.975,6.291,11.759,4.336,8.379,-0.379,8.483,16.56,-7.856,11.647,10.074,9.934,-4.947,12.213,16.162,8.595,-7.717,18.115,12.294,-1.806,13.754,15.894,8.344,5.811,3.864,14.123,-2.181,-3.729,18.446,6.023,-2.692,18.073,13.848,9.231,0.239,4.128,6.926,8.358,6.264,4.636,7.077,6.573,7.709,15.986,-0.515,13.639,14.135,3.223,0.561,-7.927,-9.384,5.065,11.442,6.384,3.418,3.464,7.43,4.6,0.111,-1.866,3.975,5.845,-2.188,0.06,6.817],[21.239,22.908,14.913,34.221,27.537,14.77,24.877,27.563,22.8,6.997,26.221,24.632,20.651,16.426,20.453,24.309,19.745,17.436,12.076,12.905,12.422,22.805,13.213,-0.92,11.992,19.297,17.001,2.008,17.333,18.3,5.83,0.137,7.774,9.061,11.799,8.121,12.352,16.921,-8.673,5.139,9.542,12.169,-3.432,6.873,17.308,16.933,-1.39,13.672,-1.709,7.409,8.81,3.366,5.072,4.842,6.889,4.308,-1.551,6.45,-7.562,0.922,5.521,15.5,12.638,-1.36,22.181,7.488,22.341,34.106,21.36,15.556,22.054,25.647,21.227,35.754,24.515,26.931,21.344,27.616,27.055,22.756,14.352,20.332,14.532,28.355,13.634,27.82,14.01,24.484,25.068,7.707,20.531,26.448,17.985,22.085,12.067,0.662,23.567,17.82,12.107,11.169,14.021,17.887,12.397,20.353,14.084,21.99,17.952,23.915,18.226,-1.718,17.507,13.774,11.465,16.163,0.88,21.403,12.082,5.682,1.922,11.333,17.348,18.131,18.657,16.589,17.43,7.208,8.645,0.894,5.905,11.539,4.491,8.604,-0.677,8.868,16.418,-8.418,12.051,9.893,10.058,-4.571,12.212,16.011,8.68,-7.534,18.242,11.814,-1.407,14.247,15.495,8.106,5.58,3.713,13.948,-2.036,-3.506,18.215,6.035,-2.73,17.89,14.17,9.453,0.084,4.381,6.463,8.586,6.327,4.491,7.088,7.041,7.707,16.396,-0.766,13.733,14.29,3.034,0.511,-7.91,-8.851,5.454,11.795,6.364,3.413,3.753,7.602,4.327,0.488,-2.287,4.073,5.714,-1.706,-0.027,6.881],[20.924,22.982,14.838,34.347,27.405,15.081,24.984,27.635,22.81,7.386,26.336,24.62,20.97,16.28,20.266,24.539,19.791,17.547,11.92,12.726,12.397,22.907,13.285,-0.775,11.993,19.265,17.086,1.686,17.135,18.208,5.776,0.145,7.63,9.163,11.808,8.216,12.579,16.762,-8.864,4.887,9.59,12.271,-3.392,6.814,17.373,16.913,-1.565,13.569,-1.45,7.405,8.789,3.096,5.122,4.989,6.809,4.349,-1.666,6.414,-7.478,0.939,5.504,15.595,12.83,-1.496,22.51,7.486,21.89,34.69,21.508,15.123,21.702,25.744,21.15,35.349,23.619,26.637,21.437,28.347,26.706,22.363,14.239,20.431,14.225,28.369,13.599,27.515,14.449,23.972,25.219,8.42,21.059,26.514,17.768,21.924,11.867,0.928,23.457,17.899,12.81,11.088,14.013,17.972,11.878,20.701,14.132,22.43,17.869,24.24,18.326,-1.894,17.611,13.834,11.408,16.222,0.953,21.745,12.0,5.61,1.978,11.234,17.548,17.65,18.495,16.285,17.502,7.218,8.106,0.261,5.836,11.478,4.144,8.367,-0.535,9.066,16.152,-9.218,12.447,10.09,10.335,-4.378,12.881,16.158,8.446,-7.522,18.334,11.674,-1.547,14.175,15.263,8.433,5.693,3.307,13.702,-1.964,-3.171,18.027,5.571,-2.939,18.163,14.308,9.06,-0.023,4.071,6.563,8.626,6.537,4.582,7.333,7.007,7.555,16.377,-0.643,13.824,14.621,2.9,0.371,-7.295,-9.273,5.694,11.589,6.06,4.029,3.72,7.824,3.8,0.742,-1.893,4.035,5.922,-1.941,0.081,6.593],[20.811,23.15,14.737,34.612,27.228,15.147,25.163,27.741,22.682,7.783,26.322,24.536,21.073,16.179,20.113,24.551,20.006,17.606,11.841,12.515,12.329,22.902,13.387,-0.747,12.048,19.251,17.031,1.402,17.051,18.409,5.682,0.154,7.345,9.251,11.739,8.366,12.854,16.594,-9.041,4.525,9.549,12.39,-3.441,6.634,17.465,16.91,-1.665,13.3,-1.221,7.345,8.789,3.094,5.201,5.222,6.933,4.319,-1.702,6.351,-7.538,1.119,5.728,15.571,12.986,-1.557,22.475,7.796,22.428,34.66,20.93,14.888,22.429,25.908,20.455,35.11,23.906,27.108,21.813,28.632,27.041,21.734,14.012,19.66,13.362,27.992,14.051,27.397,14.151,23.961,24.903,8.899,20.781,26.341,17.86,21.778,11.539,0.736,23.691,18.332,12.76,10.938,14.109,18.182,11.911,20.892,14.235,22.734,17.699,24.63,18.118,-2.219,17.213,13.571,11.309,16.023,0.678,21.64,12.492,5.852,1.704,11.625,18.6,17.099,18.391,16.89,17.617,7.54,8.094,0.344,5.438,11.83,4.083,8.121,-0.096,9.034,16.078,-9.239,12.565,10.285,9.973,-4.372,12.653,16.311,8.127,-7.752,18.198,12.079,-1.39,14.205,15.8,8.692,5.402,2.943,13.72,-2.21,-2.817,18.078,5.645,-3.394,18.28,13.913,8.928,-0.414,4.39,6.67,8.682,6.604,4.618,7.445,6.604,7.55,16.666,-0.228,14.11,14.408,3.276,0.268,-7.541,-9.059,5.885,11.734,6.24,3.877,3.981,7.471,3.816,0.303,-1.794,4.109,5.557,-2.404,-0.052,6.386],[20.704,23.259,14.546,34.834,27.008,15.07,25.43,27.893,22.533,8.116,26.431,24.442,21.216,16.037,19.899,24.44,20.147,17.549,11.769,12.25,12.274,22.911,13.58,-0.885,12.084,19.22,17.178,1.109,17.075,18.543,5.652,0.198,7.012,9.259,11.694,8.426,13.156,16.404,-9.222,4.158,9.529,12.481,-3.556,6.45,17.643,16.923,-1.72,13.079,-1.012,7.199,8.755,3.35,5.322,5.435,7.012,4.439,-1.802,6.248,-7.668,1.316,5.96,15.584,13.143,-1.564,22.464,8.552,23.051,35.025,20.747,14.929,22.432,25.994,20.06,35.054,25.002,26.57,21.84,28.21,26.929,22.335,14.162,19.714,12.815,27.451,14.412,27.266,13.913,24.091,24.124,8.538,20.614,26.283,17.765,21.716,11.497,0.671,23.861,18.416,12.182,10.939,13.939,18.338,12.374,21.09,13.92,22.282,18.182,23.874,18.445,-1.926,16.913,13.76,11.105,16.12,0.449,21.324,12.708,5.517,1.344,12.395,18.796,16.837,18.25,17.017,17.906,7.653,8.315,0.628,5.428,11.823,4.08,8.56,-0.502,8.714,16.488,-8.759,12.58,10.323,9.838,-4.652,12.095,16.332,7.857,-7.682,17.832,12.462,-0.85,14.155,16.202,8.418,4.734,2.676,13.84,-2.277,-2.791,18.354,5.282,-3.428,18.152,13.496,9.15,-0.79,5.386,6.172,8.511,6.88,4.695,7.088,6.531,7.849,16.75,0.055,14.47,14.122,3.689,0.423,-7.917,-8.694,5.881,11.871,6.291,3.643,4.34,7.464,4.204,0.522,-1.962,4.19,6.06,-2.163,-0.352,6.663],[20.689,23.226,14.48,35.01,26.71,14.978,25.61,27.968,22.707,8.339,26.375,24.494,21.318,15.882,19.784,24.197,20.102,17.407,11.777,12.007,12.422,22.811,13.661,-1.015,12.194,19.178,17.46,0.836,17.186,18.531,5.637,0.205,6.911,9.041,11.676,8.342,13.397,16.256,-9.341,3.743,9.45,12.485,-3.542,6.289,17.855,17.038,-1.612,13.127,-0.782,7.007,8.765,3.602,5.427,5.611,7.015,4.703,-2.098,6.023,-7.801,1.498,6.077,15.677,13.28,-1.442,22.402,8.626,22.621,35.887,21.006,14.891,22.189,26.131,20.56,34.386,25.372,27.053,21.766,28.101,27.138,22.08,14.154,20.285,12.924,27.821,13.68,26.897,13.787,23.981,24.591,8.711,20.823,26.344,17.517,21.338,11.764,0.716,23.568,18.189,12.239,10.636,14.078,17.999,11.97,20.943,13.695,21.825,18.218,23.962,18.227,-2.022,16.826,13.642,10.818,16.076,0.326,21.962,13.248,5.153,1.158,12.41,18.042,17.068,18.629,17.131,18.157,7.232,8.263,0.247,5.169,11.428,4.123,8.469,-0.778,9.306,16.256,-8.709,12.772,10.135,9.984,-4.769,12.391,16.23,7.869,-8.032,17.917,12.439,-0.692,14.49,15.551,7.978,4.541,2.189,13.732,-2.218,-2.596,18.581,4.79,-3.299,18.123,13.485,9.654,-0.676,5.912,5.834,8.667,6.901,4.946,7.147,6.664,7.933,16.757,-0.081,14.642,14.766,3.433,0.464,-7.953,-8.975,6.05,11.981,6.092,3.881,4.751,7.754,4.544,0.957,-1.789,4.525,6.842,-2.073,-0.642,6.586],[20.543,23.093,14.371,35.095,26.709,14.855,25.664,27.986,22.95,8.492,26.323,24.566,21.332,15.889,19.79,23.991,19.92,17.195,11.782,11.986,12.728,22.848,13.82,-1.036,12.216,19.287,17.602,0.725,17.248,18.536,5.498,0.087,7.083,8.869,11.543,8.183,13.549,16.195,-9.51,3.431,9.395,12.45,-3.473,6.186,18.031,16.986,-1.377,13.188,-0.598,6.873,8.967,3.711,5.488,5.81,7.095,4.965,-2.373,5.795,-7.894,1.578,6.083,15.834,13.371,-1.484,22.661,8.343,22.037,36.325,21.477,14.613,22.721,26.185,20.805,34.082,24.773,27.502,21.669,28.324,26.819,21.682,14.025,19.872,13.408,27.752,13.214,26.691,14.327,23.937,25.754,9.296,21.178,26.364,17.257,21.344,11.765,0.409,23.592,18.2,12.395,11.005,14.418,18.079,12.0,20.681,13.683,21.86,18.0,24.011,18.337,-2.184,17.358,13.701,10.787,16.128,0.279,21.785,12.909,6.008,1.259,12.053,18.351,17.552,18.824,17.123,17.649,7.122,7.922,0.242,5.256,11.551,3.934,7.63,-0.166,9.05,15.719,-8.748,13.205,9.988,9.909,-4.753,12.059,16.319,7.636,-8.309,17.951,12.124,-0.851,14.926,15.402,7.942,4.278,1.813,13.606,-2.219,-2.306,18.425,4.963,-3.202,17.889,13.866,9.899,-0.198,5.136,5.704,8.989,6.711,5.44,6.708,7.258,7.183,16.443,0.007,14.55,15.165,3.68,0.296,-7.961,-9.477,5.824,12.66,6.241,4.226,4.01,7.667,4.218,0.921,-2.219,4.668,6.403,-2.127,-0.601,6.166],[20.319,23.125,14.296,35.118,26.921,14.884,25.701,27.952,23.0,8.536,26.199,24.55,21.413,15.879,19.853,23.929,19.61,17.179,11.786,12.034,13.057,22.939,13.825,-1.018,12.177,19.492,17.673,0.748,17.166,18.63,5.473,0.028,7.418,8.622,11.329,7.99,13.723,16.205,-9.632,3.277,9.485,12.243,-3.633,6.136,18.199,16.891,-1.12,13.171,-0.472,6.791,9.111,3.692,5.462,5.843,6.938,5.269,-2.409,5.61,-8.148,1.617,6.043,15.857,13.522,-1.74,22.499,8.353,22.304,36.153,21.581,14.659,22.58,26.103,20.375,34.674,24.641,26.85,21.589,28.628,26.305,21.767,13.861,19.215,13.372,27.732,13.101,26.854,13.994,23.818,25.903,9.135,20.993,26.373,17.468,21.592,11.255,0.628,23.505,17.932,12.769,11.546,14.615,18.282,12.154,20.758,13.613,22.439,17.716,23.681,18.242,-2.019,17.944,13.959,10.985,15.965,-0.178,21.375,12.748,5.707,1.278,12.361,19.222,18.474,18.717,17.299,17.291,7.618,7.603,0.776,5.971,11.572,3.758,8.056,0.277,8.579,15.64,-8.764,13.395,9.828,9.484,-4.657,12.33,16.456,7.771,-8.531,17.428,12.216,-0.627,15.559,15.425,8.004,4.271,1.586,13.551,-2.248,-2.251,18.461,4.97,-2.805,17.974,13.371,9.762,0.061,5.047,5.632,9.045,6.782,5.453,6.705,7.563,7.453,16.159,0.277,14.816,14.814,4.052,0.216,-7.682,-9.268,5.316,13.38,6.071,4.488,3.865,8.343,3.908,0.923,-2.952,4.752,5.971,-2.152,-0.905,5.76],[20.218,23.299,14.201,35.055,27.088,14.82,25.883,27.894,23.008,8.391,25.849,24.412,21.449,15.915,19.912,23.944,19.289,17.431,11.747,12.148,13.42,22.919,13.624,-0.941,12.115,19.445,17.887,0.725,17.101,18.768,5.449,0.11,7.861,8.492,11.071,7.966,14.044,16.236,-9.727,3.188,9.631,12.073,-3.905,6.145,18.402,16.762,-0.877,12.984,-0.386,6.723,9.225,3.516,5.448,5.873,6.642,5.432,-2.358,5.415,-8.417,1.735,5.997,15.864,13.753,-1.852,22.526,8.334,22.784,35.838,21.385,15.114,22.357,26.081,20.134,35.641,25.08,26.886,21.845,28.742,26.057,21.388,14.445,19.459,12.924,27.979,13.31,27.006,13.425,23.586,25.059,8.944,20.557,26.137,17.561,21.488,11.138,0.964,23.835,17.364,12.384,11.431,14.961,18.404,11.905,20.168,13.885,22.651,17.215,23.677,18.448,-1.648,18.156,13.738,11.073,16.147,-0.055,21.897,12.733,5.329,1.326,12.579,19.201,18.658,18.807,17.51,17.502,7.35,7.854,0.573,5.976,11.322,3.663,7.944,-0.136,8.83,15.577,-9.287,13.056,9.92,9.299,-4.976,12.168,16.541,7.83,-8.315,17.491,12.43,-0.3,15.798,15.941,8.219,4.62,1.714,13.98,-2.551,-2.206,18.842,5.163,-2.558,18.333,13.645,9.141,0.294,5.594,5.498,9.311,6.893,5.033,6.792,7.457,7.441,16.112,0.38,14.445,14.675,4.59,0.048,-8.163,-9.282,5.24,13.437,5.655,4.454,3.998,8.455,4.185,0.968,-2.909,4.738,6.086,-2.554,-0.777,5.863],[20.26,23.556,14.01,34.987,27.151,14.609,26.076,27.917,23.073,8.137,25.545,24.158,21.322,16.007,20.005,24.127,19.121,17.867,11.639,12.352,13.779,22.908,13.44,-0.759,12.013,19.388,18.104,0.636,16.919,18.903,5.409,0.098,8.168,8.65,10.91,8.093,14.321,16.299,-9.741,3.098,9.574,11.984,-4.249,6.223,18.622,16.734,-0.737,12.991,-0.312,6.529,9.301,3.257,5.432,5.918,6.633,5.538,-2.25,5.262,-8.663,1.869,5.939,15.847,14.027,-1.902,23.2,8.212,22.663,35.41,21.305,15.031,22.126,26.188,20.304,35.488,25.323,26.623,22.0,28.583,26.226,21.42,14.346,19.716,12.528,28.056,13.58,26.913,13.54,23.741,25.497,8.742,20.92,25.813,17.449,21.587,11.262,0.713,23.616,17.143,11.915,10.742,15.264,18.385,12.106,19.84,14.105,21.863,17.171,24.103,18.453,-1.587,17.589,13.594,11.05,16.313,0.603,22.173,13.124,5.333,1.272,13.21,18.959,18.452,18.71,17.355,17.94,6.887,8.761,0.376,6.504,10.772,3.732,7.28,-0.821,8.66,15.567,-9.754,13.064,9.772,9.313,-5.037,11.566,17.08,8.081,-8.162,17.693,12.198,-0.242,15.943,15.634,8.391,4.579,1.514,13.921,-2.722,-2.09,18.341,5.471,-2.47,17.605,13.344,8.922,0.728,5.637,5.31,9.549,6.895,4.778,6.188,7.561,7.342,16.067,0.692,14.201,14.935,4.305,-0.132,-8.963,-9.503,5.593,13.311,5.793,4.029,4.229,7.959,4.246,1.227,-2.154,4.552,5.932,-2.671,-0.475,5.48],[20.314,23.868,13.818,34.859,27.136,14.374,26.301,28.046,23.157,7.841,25.524,23.949,21.228,16.019,20.055,24.328,19.025,18.213,11.567,12.39,14.159,22.803,13.488,-0.702,11.852,19.506,18.103,0.617,16.655,18.822,5.385,-0.081,8.539,8.75,10.806,8.189,14.434,16.324,-9.747,3.027,9.384,11.677,-4.489,6.376,18.766,16.632,-0.598,13.072,-0.353,6.204,9.168,3.123,5.475,5.687,6.835,5.49,-2.067,4.996,-9.031,2.075,5.892,15.88,14.33,-1.934,23.363,8.479,22.384,35.391,21.808,14.996,22.031,26.169,20.872,34.375,25.516,26.287,22.207,28.155,26.485,21.771,13.87,19.775,12.086,28.061,13.556,26.857,14.153,23.389,26.312,8.451,20.94,25.63,17.463,21.546,11.378,0.807,23.803,17.099,12.027,11.069,15.736,18.576,12.629,20.14,14.024,21.709,17.546,24.681,18.105,-1.805,17.437,13.49,11.466,17.044,-0.221,21.729,12.656,5.755,1.373,13.581,19.473,17.955,19.167,17.41,18.083,7.48,9.711,0.408,6.751,10.469,3.751,7.936,-0.988,8.754,16.041,-9.796,13.708,9.932,9.251,-5.544,12.28,17.456,8.075,-8.072,17.799,11.751,-0.469,16.209,14.909,8.188,4.279,1.453,13.68,-3.072,-2.055,17.897,5.505,-2.135,17.656,13.36,8.964,0.741,5.595,4.783,9.425,6.749,4.779,6.278,7.519,6.932,16.263,0.459,14.007,15.442,4.348,-0.018,-8.594,-9.45,5.864,13.592,5.863,4.264,4.279,7.963,3.572,1.417,-2.065,4.795,6.174,-2.659,-0.941,5.089],[20.354,24.113,13.608,34.525,27.1,14.293,26.658,28.08,23.324,7.655,25.762,23.754,21.298,16.061,20.108,24.466,18.937,18.505,11.624,12.347,14.473,22.57,13.468,-0.783,11.864,19.63,18.22,0.652,16.517,18.611,5.444,-0.448,8.886,8.954,10.71,8.342,14.553,16.396,-9.685,3.126,9.165,11.442,-4.664,6.501,18.706,16.524,-0.544,13.175,-0.44,5.922,8.797,3.076,5.482,5.515,6.885,5.305,-2.059,4.668,-9.362,2.235,5.923,15.915,14.671,-1.911,23.319,7.93,22.806,35.351,21.917,15.042,22.13,26.222,20.62,34.406,25.882,26.579,22.902,28.432,26.733,21.812,14.21,19.37,12.041,27.913,12.795,26.905,13.736,22.861,26.412,8.612,20.358,25.455,17.535,21.707,11.021,0.934,24.278,17.122,12.413,11.236,16.028,18.978,12.585,20.158,13.943,22.017,17.549,25.125,18.504,-1.723,16.87,13.34,11.314,17.443,-0.183,21.46,12.268,5.544,1.162,14.12,19.439,17.345,19.097,17.423,18.191,7.745,10.203,0.25,7.615,10.65,3.757,7.79,-0.324,8.9,16.233,-9.369,13.834,10.291,8.847,-5.798,12.399,17.12,8.073,-8.167,17.685,10.76,-0.695,16.349,15.325,7.769,4.449,1.487,13.669,-3.482,-2.177,18.556,5.433,-2.048,18.085,13.692,8.704,0.847,5.013,4.513,9.795,6.732,4.803,6.154,7.666,7.279,16.007,0.644,14.313,15.632,4.494,-0.149,-8.547,-9.553,6.237,14.211,5.319,3.832,4.367,8.326,3.141,1.755,-2.249,4.981,6.664,-2.869,-0.74,5.276],[20.317,24.345,13.373,34.148,27.005,14.374,27.003,27.988,23.511,7.636,26.068,23.512,21.323,16.075,20.255,24.569,18.815,18.718,11.744,12.205,14.636,22.414,13.365,-0.816,12.067,19.68,18.448,0.807,16.497,18.291,5.478,-0.818,9.312,9.111,10.515,8.48,14.629,16.448,-9.501,3.323,8.921,11.367,-4.708,6.616,18.574,16.719,-0.591,13.336,-0.484,5.738,8.651,2.988,5.385,5.349,6.873,5.206,-2.117,4.44,-9.668,2.308,5.954,15.886,14.879,-1.971,23.502,7.88,23.124,34.977,21.848,15.189,22.129,26.39,19.707,35.203,26.094,27.214,22.946,28.951,26.655,21.706,14.24,19.495,12.042,27.762,12.378,27.028,13.122,23.232,26.368,8.777,20.444,25.251,17.735,21.938,10.604,0.672,23.661,17.161,12.222,10.507,16.035,18.814,12.19,19.971,13.798,22.035,17.506,25.163,18.719,-1.677,16.493,13.572,10.658,17.651,0.701,21.449,12.34,5.95,1.55,14.43,19.575,17.51,19.148,17.845,18.472,7.401,9.558,0.136,7.441,10.762,3.859,7.653,-0.559,8.734,15.68,-9.051,14.098,10.356,8.834,-5.661,11.596,16.95,8.045,-8.288,18.071,10.403,-0.46,16.182,15.653,7.679,4.741,1.688,13.855,-3.481,-2.401,18.354,5.431,-2.0,17.891,14.024,8.788,1.028,5.068,4.665,10.093,6.682,4.749,5.958,7.562,7.808,15.78,1.167,14.244,15.177,4.217,-0.015,-9.274,-9.268,6.273,14.869,4.919,3.752,4.265,7.507,3.368,1.952,-2.261,5.33,6.529,-2.607,-0.34,5.306],[20.1,24.492,13.267,34.056,26.873,14.352,27.252,27.946,23.624,7.741,26.227,23.376,21.251,16.048,20.429,24.53,18.86,18.807,11.79,11.841,14.642,22.434,13.144,-0.772,12.301,19.74,18.79,1.113,16.545,17.985,5.641,-1.091,9.443,8.952,10.257,8.547,14.722,16.431,-9.268,3.504,8.824,11.228,-4.621,6.72,18.485,16.962,-0.49,13.56,-0.563,5.596,8.626,2.924,5.2,5.304,6.991,5.351,-2.053,4.424,-10.001,2.357,5.891,15.864,14.866,-1.943,23.972,8.302,23.558,34.635,21.861,15.231,21.904,26.155,20.251,34.691,26.343,27.368,22.942,28.824,26.471,21.73,13.957,20.598,11.674,27.537,12.714,27.148,13.318,23.142,26.753,8.665,20.663,25.122,17.765,21.995,10.443,0.732,23.878,17.078,11.688,10.721,16.139,18.966,12.525,19.813,13.569,21.502,17.483,24.735,18.611,-1.993,16.193,13.445,10.799,17.604,0.362,21.291,12.449,5.946,1.876,14.185,19.868,17.56,19.514,18.059,18.252,7.418,9.816,-0.104,7.77,10.645,3.92,8.243,-1.826,8.706,15.666,-9.421,14.232,10.154,8.669,-5.789,11.319,17.195,8.181,-7.99,18.111,10.634,-0.455,16.084,15.449,7.625,4.751,1.92,14.101,-3.515,-2.293,17.923,5.665,-2.072,18.028,14.115,8.56,0.771,5.362,4.866,9.593,6.544,4.55,5.691,7.643,7.798,15.597,0.691,14.17,15.456,4.541,-0.087,-9.275,-9.333,5.915,15.114,4.852,3.532,4.457,6.95,3.653,1.81,-2.391,4.871,6.009,-2.455,-0.743,4.951],[20.07,24.594,13.301,34.111,26.79,14.124,27.427,27.862,23.756,7.889,26.196,23.394,21.124,15.967,20.528,24.553,19.121,18.754,11.801,11.469,14.59,22.475,12.903,-0.755,12.367,19.917,19.046,1.102,16.651,17.739,5.815,-1.303,9.507,8.766,10.021,8.595,14.829,16.367,-9.077,3.612,8.731,11.022,-4.621,6.737,18.485,17.049,-0.273,13.808,-0.494,5.512,8.596,2.84,5.017,5.371,7.155,5.634,-1.967,4.488,-10.124,2.253,5.776,15.851,14.8,-1.877,24.046,8.118,23.714,34.604,22.149,15.23,21.826,26.003,20.881,34.268,26.804,27.088,23.085,28.096,27.04,21.53,14.055,19.87,11.693,27.303,12.712,26.871,14.052,22.804,26.957,8.527,20.579,25.079,17.3,22.098,10.713,0.644,23.984,17.284,11.408,11.412,16.202,19.496,12.699,19.857,13.364,21.149,17.24,24.879,18.797,-2.044,15.94,13.844,10.987,17.121,0.241,21.505,12.092,5.628,2.391,13.693,20.013,17.529,19.531,17.857,17.599,7.501,9.718,-0.291,7.728,10.454,4.226,7.403,-2.174,8.436,15.955,-9.639,13.901,10.347,8.324,-5.777,11.474,17.164,8.307,-7.472,18.045,11.037,-0.751,16.579,15.603,7.778,4.98,2.046,14.422,-3.202,-2.236,18.192,5.825,-2.179,18.139,13.81,8.95,0.523,5.234,4.764,9.326,6.489,4.016,5.865,7.564,7.646,16.073,0.783,14.014,15.425,4.602,-0.119,-9.366,-10.046,5.841,14.483,4.737,3.506,4.369,7.399,4.082,1.801,-1.956,4.384,6.008,-2.893,-0.726,4.541],[20.256,24.697,13.217,34.023,26.664,13.894,27.762,27.6,24.059,7.932,26.234,23.417,21.055,15.862,20.493,24.7,19.323,18.636,11.832,11.346,14.55,22.43,12.781,-0.857,12.384,20.244,19.031,0.973,16.785,17.44,5.733,-1.483,9.408,8.44,9.842,8.693,14.921,16.476,-8.901,3.696,8.672,10.865,-4.634,6.607,18.523,17.009,-0.214,13.904,-0.331,5.354,8.632,2.778,4.88,5.433,7.33,5.782,-1.894,4.621,-10.132,2.246,5.688,15.909,14.659,-1.91,23.993,8.502,23.422,34.523,22.45,15.146,21.57,25.704,20.768,35.035,26.897,27.039,23.076,28.111,27.318,21.28,14.461,19.395,11.65,27.62,12.442,26.902,14.156,22.902,27.022,8.499,20.491,25.228,17.366,21.998,11.038,0.674,23.961,17.521,11.378,11.466,15.927,19.464,12.41,20.426,12.985,21.483,16.969,24.991,18.979,-1.941,15.873,13.937,10.152,16.883,0.68,21.764,12.023,6.398,1.942,13.74,19.822,17.667,19.78,17.889,17.093,7.464,9.653,-0.363,7.54,10.052,4.417,7.017,-1.533,8.555,15.638,-9.243,14.191,10.539,8.371,-5.524,10.864,16.884,8.453,-7.13,17.609,11.54,-0.353,16.638,15.571,7.951,5.262,2.177,14.869,-3.66,-2.12,18.107,5.613,-1.972,18.145,14.636,8.896,0.878,4.852,4.36,9.625,6.448,3.953,6.005,7.072,7.617,16.229,0.758,14.124,15.587,4.572,0.122,-9.494,-11.093,6.658,14.037,4.519,4.107,3.738,7.726,3.904,1.717,-1.949,4.502,6.427,-2.785,-0.179,4.496],[20.458,24.732,12.952,33.954,26.621,13.878,28.028,27.248,24.329,7.974,26.314,23.425,21.124,15.821,20.423,24.788,19.391,18.495,11.96,11.275,14.521,22.47,12.897,-1.067,12.448,20.597,18.824,0.9,16.789,17.14,5.697,-1.604,9.189,8.139,9.779,8.927,15.056,16.673,-8.587,3.862,8.632,10.791,-4.702,6.481,18.4,16.959,-0.146,14.107,-0.223,5.114,8.67,2.873,4.83,5.432,7.558,5.836,-1.765,4.744,-10.296,2.107,5.715,16.053,14.484,-1.759,24.017,8.235,23.301,34.153,23.483,15.068,21.702,25.369,20.699,34.652,27.23,27.559,23.327,28.079,26.847,21.746,14.077,20.005,11.545,27.389,12.13,27.134,13.388,22.989,27.26,8.476,20.189,25.136,17.36,21.865,10.983,0.705,24.17,17.633,11.472,11.063,15.81,19.018,12.307,20.482,12.868,22.128,17.338,24.665,19.507,-1.934,15.727,13.288,9.801,16.873,0.451,21.563,12.179,6.088,1.239,13.594,19.546,17.517,19.908,18.046,16.619,7.884,10.131,-0.752,7.818,9.381,3.909,7.258,-1.21,8.08,15.143,-8.693,14.501,10.656,8.127,-5.676,10.676,17.372,8.16,-6.975,17.363,11.948,-0.173,16.838,15.252,7.753,5.197,2.297,14.681,-3.965,-1.892,17.984,5.308,-1.964,17.828,14.26,8.377,0.961,4.534,4.179,10.026,6.138,4.52,5.991,7.252,8.192,15.705,1.36,14.304,15.481,5.107,0.268,-9.471,-11.561,6.521,14.22,4.429,4.09,3.695,7.79,3.449,2.146,-1.925,4.503,6.706,-2.596,-0.143,4.842],[20.655,24.827,12.67,33.888,26.725,13.952,28.139,27.083,24.61,7.869,26.465,23.459,21.263,15.845,20.43,24.698,19.305,18.339,12.019,11.185,14.411,22.522,13.096,-1.161,12.387,20.767,18.624,0.762,16.71,16.887,5.552,-1.639,9.189,7.944,9.6,9.315,15.402,16.727,-8.25,4.028,8.591,10.911,-4.888,6.347,18.281,16.945,-0.111,14.176,-0.218,4.98,8.674,3.146,4.818,5.244,7.852,5.906,-1.632,4.756,-10.704,2.151,5.809,16.102,14.35,-1.541,24.395,8.533,23.103,34.492,24.094,15.272,21.584,25.17,21.041,34.147,27.48,27.363,23.301,27.803,26.722,22.286,13.828,20.342,11.26,27.194,11.867,27.197,13.15,22.826,27.455,8.62,20.623,25.135,17.522,21.717,10.543,0.361,24.044,17.471,11.521,10.746,15.617,18.473,12.944,20.236,12.939,21.612,17.212,24.682,19.703,-2.283,15.434,12.737,10.314,16.984,0.23,21.53,12.319,5.691,1.669,13.466,19.658,16.929,20.067,17.832,16.452,8.046,9.825,-1.252,7.33,9.261,4.206,6.659,-2.079,7.565,15.604,-8.593,14.397,11.112,7.929,-5.743,10.73,17.593,7.872,-7.05,17.289,12.16,-0.277,16.814,15.221,7.507,5.449,2.494,14.696,-3.773,-1.931,17.693,5.026,-1.986,17.431,14.727,8.236,0.929,4.856,4.095,10.173,6.298,4.911,5.573,7.431,8.45,15.739,0.857,14.499,15.328,5.663,0.246,-9.397,-11.245,5.961,14.64,4.131,3.387,4.236,7.691,3.386,1.836,-1.961,4.312,6.771,-2.618,-0.259,5.854],[20.799,25.052,12.429,33.86,26.838,14.112,28.071,27.253,24.735,7.794,26.567,23.53,21.413,16.018,20.376,24.449,19.101,18.234,11.914,11.186,14.218,22.28,13.133,-1.315,12.16,20.711,18.505,0.759,16.532,16.636,5.481,-1.735,9.222,7.713,9.341,9.493,15.785,16.668,-7.903,4.132,8.645,11.175,-4.959,6.203,18.14,16.962,-0.127,14.338,-0.304,4.928,8.679,3.331,4.855,5.075,8.13,5.998,-1.637,4.757,-10.99,2.166,5.823,16.048,14.382,-1.478,24.523,8.515,23.353,34.402,24.248,15.493,21.553,25.434,21.761,34.913,27.531,27.388,23.457,27.807,27.018,21.906,13.781,20.018,10.605,27.619,12.053,27.033,13.52,22.964,27.042,8.853,20.888,25.026,17.639,22.077,10.497,0.17,23.931,17.41,11.761,10.398,15.588,18.091,13.117,20.416,13.072,21.047,16.539,25.35,19.52,-2.102,14.945,12.889,10.626,17.138,0.182,21.492,12.311,5.738,2.174,13.87,19.476,16.705,19.669,17.553,16.532,8.316,9.246,-1.247,7.5,9.474,4.17,6.625,-2.732,7.704,16.241,-8.896,14.12,11.311,7.846,-5.636,11.157,17.08,7.738,-7.266,17.848,11.66,-0.617,17.103,15.45,7.536,5.878,2.696,14.942,-3.902,-1.953,17.501,4.979,-1.709,17.977,15.104,8.687,1.012,4.814,4.21,9.739,6.665,4.811,5.621,7.069,8.741,16.046,0.723,14.38,15.561,5.666,0.261,-10.056,-11.108,5.83,14.542,3.695,3.43,4.538,7.393,3.866,1.575,-1.427,4.515,7.021,-2.475,0.112,5.844],[20.744,25.162,12.212,33.956,26.942,14.218,27.951,27.498,24.676,7.897,26.629,23.604,21.487,16.239,20.411,24.157,19.062,18.192,11.804,11.32,14.11,21.931,13.113,-1.466,11.954,20.582,18.283,0.894,16.208,16.339,5.525,-1.866,9.189,7.594,9.19,9.466,16.037,16.691,-7.566,4.207,8.767,11.484,-4.967,6.106,17.831,17.115,-0.013,14.614,-0.423,4.889,8.653,3.308,4.881,5.137,8.385,6.11,-1.576,4.746,-11.17,2.211,5.7,15.946,14.523,-1.43,24.6,8.363,24.065,34.088,24.132,15.97,21.583,25.65,21.373,34.367,27.018,27.941,23.571,28.019,27.142,22.063,13.809,19.273,10.509,27.39,12.081,27.233,13.708,23.16,27.044,8.511,20.83,25.266,17.549,21.792,10.228,0.212,23.752,17.331,11.964,10.424,15.713,18.341,13.013,20.294,13.051,21.244,16.756,25.729,19.439,-2.193,14.533,13.292,10.465,17.103,0.661,21.519,12.041,5.805,1.735,13.999,19.648,16.88,19.807,17.335,16.459,8.864,9.62,-0.978,7.887,9.437,3.905,6.536,-2.549,7.513,16.596,-9.157,14.602,11.372,7.387,-5.884,11.074,16.619,7.515,-7.464,18.335,11.152,-0.8,17.378,15.546,7.898,5.831,2.782,15.545,-3.695,-2.082,17.528,5.305,-1.948,18.443,14.798,9.111,1.01,4.687,4.308,9.663,6.552,4.687,6.039,7.515,9.1,15.915,0.857,14.08,15.537,4.803,0.48,-10.285,-12.01,6.641,14.77,3.576,3.667,4.12,7.081,4.295,1.835,-1.392,4.865,7.468,-2.324,0.054,5.001],[20.604,25.049,12.155,33.802,27.028,14.232,27.78,27.61,24.609,7.977,26.698,23.718,21.482,16.382,20.346,23.85,19.159,18.283,11.617,11.348,14.071,21.783,13.249,-1.517,11.926,20.584,18.041,1.064,15.95,16.125,5.574,-1.841,9.307,7.528,9.077,9.627,16.17,16.755,-7.413,4.214,8.958,11.516,-4.966,6.074,17.373,17.25,0.053,14.879,-0.544,4.836,8.538,3.234,4.748,5.415,8.573,6.187,-1.533,4.691,-11.451,2.299,5.659,15.756,14.687,-1.333,24.653,8.798,24.293,34.094,23.692,16.007,22.184,25.757,21.081,34.688,27.12,27.936,23.61,28.321,27.39,22.226,13.863,19.796,10.476,27.888,11.522,27.491,13.433,22.674,27.407,7.754,20.938,25.497,17.935,21.904,10.613,0.16,23.397,17.297,11.898,11.06,15.706,18.702,12.603,20.109,13.123,21.624,16.729,25.516,19.425,-2.496,14.56,13.245,10.394,16.958,0.69,21.02,12.13,5.716,2.069,13.606,19.526,16.807,19.763,17.095,15.675,8.515,9.909,-0.63,7.423,9.423,4.252,6.217,-2.178,7.536,16.646,-8.595,15.103,11.564,7.462,-6.411,11.697,16.574,7.566,-7.587,18.594,11.911,-0.732,17.966,15.894,8.116,5.63,2.716,15.956,-4.16,-2.158,17.438,5.187,-1.814,18.157,15.53,8.841,1.126,4.84,3.975,9.817,6.384,4.831,6.062,7.596,9.047,15.948,0.992,14.095,15.787,4.722,0.36,-9.834,-12.592,6.83,15.277,3.542,3.714,3.666,7.545,3.868,2.378,-1.967,4.855,7.862,-2.521,-0.023,4.388],[20.623,24.969,12.129,33.569,27.117,14.253,27.718,27.632,24.531,7.961,26.699,23.583,21.542,16.445,20.304,23.5,19.291,18.566,11.571,11.122,14.014,21.805,13.466,-1.565,12.118,20.588,17.807,1.251,15.986,15.937,5.664,-1.717,9.329,7.41,9.085,9.891,16.3,16.779,-7.282,4.084,9.027,11.588,-5.056,6.012,17.035,17.354,0.079,15.184,-0.567,4.722,8.467,3.164,4.647,5.759,8.594,6.158,-1.63,4.724,-11.712,2.522,5.557,15.574,14.948,-1.403,24.229,8.634,23.967,34.44,23.907,15.774,22.37,25.817,21.349,33.996,27.659,27.722,23.517,28.363,27.324,21.889,13.949,20.525,10.76,27.878,11.195,27.828,13.12,22.866,26.988,8.253,21.018,25.46,18.067,21.563,10.825,0.131,23.446,17.515,11.991,10.811,15.51,18.452,12.217,20.29,13.058,21.211,16.094,25.181,19.462,-2.607,14.429,13.022,10.417,16.796,0.747,21.237,12.669,5.5,2.484,13.234,19.062,16.573,19.568,16.995,15.536,8.784,9.955,-0.747,7.734,9.436,4.162,6.55,-1.9,7.686,16.607,-8.249,15.815,11.656,7.681,-6.701,11.498,16.203,7.523,-7.613,18.553,12.848,-1.211,18.115,15.695,8.367,5.685,2.405,15.537,-4.094,-2.1,16.944,5.223,-1.642,18.072,15.546,9.397,1.001,5.062,4.353,9.818,5.972,4.801,5.518,7.293,9.12,15.854,1.024,13.793,15.928,5.456,0.395,-9.901,-12.417,6.576,15.223,3.406,4.474,4.137,7.552,3.454,1.943,-1.407,4.98,8.49,-2.509,-0.053,4.892],[20.809,24.839,12.155,33.418,27.21,14.307,27.889,27.632,24.423,7.938,26.686,23.499,21.526,16.369,20.358,23.258,19.513,18.72,11.626,11.001,13.933,21.921,13.576,-1.551,12.195,20.517,17.622,1.285,16.028,15.73,5.68,-1.652,9.342,7.455,9.204,10.145,16.366,16.713,-7.171,3.963,9.193,11.789,-5.112,5.915,16.818,17.334,0.098,15.168,-0.627,4.788,8.596,3.051,4.614,6.123,8.492,6.208,-1.691,4.802,-11.916,2.671,5.235,15.449,15.088,-1.462,24.36,8.399,23.386,33.388,24.169,15.992,21.594,25.792,21.546,33.698,27.718,27.298,23.165,28.137,27.18,22.225,14.134,19.939,10.603,27.684,11.533,27.195,13.429,23.151,26.913,9.082,21.101,25.155,17.804,21.484,10.374,0.07,23.14,17.788,12.18,10.576,15.53,18.534,12.341,20.539,12.931,21.093,16.049,24.906,19.512,-2.549,14.067,13.42,9.943,17.128,1.239,21.478,12.8,5.699,2.254,13.188,19.199,16.842,19.648,16.878,15.795,9.403,10.021,-1.052,7.678,9.108,4.341,6.303,-2.063,7.384,16.732,-8.528,16.196,11.948,7.545,-6.141,11.023,16.11,7.704,-6.991,18.508,12.205,-1.519,18.131,15.782,8.264,5.401,2.369,16.036,-4.11,-1.914,16.732,5.071,-1.877,18.364,15.271,9.086,1.109,5.086,4.447,9.777,5.977,4.485,5.437,7.165,9.453,15.669,1.22,13.669,16.058,5.423,0.302,-10.173,-12.384,6.033,15.264,3.374,4.891,4.411,7.207,3.786,2.201,-1.37,4.782,8.908,-2.567,-0.04,5.782],[21.096,24.722,12.05,33.182,27.131,14.562,28.167,27.545,24.279,7.943,26.503,23.504,21.453,16.194,20.424,23.142,19.642,18.847,11.697,10.858,13.74,22.058,13.614,-1.528,12.269,20.432,17.534,1.261,16.012,15.663,5.646,-1.786,9.22,7.548,9.312,10.392,16.443,16.655,-7.104,3.866,9.386,11.747,-5.095,5.959,16.694,17.284,0.217,15.091,-0.791,4.911,8.777,3.003,4.601,6.288,8.442,6.269,-1.621,4.905,-12.01,2.685,4.861,15.569,15.089,-1.477,24.353,8.482,23.36,33.858,24.2,16.423,21.846,25.756,21.68,34.541,27.684,28.044,23.245,28.088,27.282,22.463,13.899,19.773,10.203,27.797,12.021,27.222,13.972,22.712,27.773,8.783,20.974,25.223,17.83,21.934,10.519,0.262,22.923,17.801,12.376,11.186,15.453,18.165,12.941,20.52,12.648,21.881,16.466,24.371,19.419,-2.259,14.013,13.571,9.924,17.597,0.838,21.135,12.398,5.719,2.336,13.447,19.134,16.877,19.33,16.694,15.317,9.863,9.782,-0.872,7.53,9.192,4.194,6.372,-2.522,7.677,16.801,-8.833,15.643,12.36,7.717,-6.035,11.022,16.219,7.582,-6.192,18.293,11.793,-1.514,17.988,16.06,8.153,5.338,2.323,15.749,-4.169,-1.868,16.765,4.901,-1.65,18.505,15.505,9.126,0.999,5.604,4.108,9.529,6.359,4.394,5.89,6.692,9.002,15.569,1.538,13.932,16.015,4.964,0.129,-10.639,-12.8,5.84,15.555,3.266,5.011,3.938,7.521,3.778,2.183,-1.918,3.913,8.465,-2.614,-0.08,5.39],[21.348,24.678,11.886,33.078,26.972,14.978,28.436,27.468,24.178,7.958,26.438,23.559,21.559,16.11,20.527,23.114,19.64,18.916,11.957,10.819,13.488,22.189,13.657,-1.523,12.482,20.329,17.437,1.31,16.04,15.756,5.546,-2.05,9.028,7.656,9.484,10.451,16.517,16.636,-7.036,3.767,9.473,11.469,-5.076,6.04,16.585,17.345,0.292,15.265,-1.026,4.872,8.94,2.996,4.583,6.379,8.392,6.283,-1.542,4.964,-12.165,2.635,4.552,15.786,14.997,-1.534,24.153,8.922,23.663,33.869,23.567,16.048,22.11,25.572,22.023,33.752,28.303,27.9,22.996,28.253,26.683,22.746,14.143,19.673,10.285,27.249,11.462,27.571,14.154,22.547,27.389,7.944,20.93,25.382,17.923,21.612,10.991,0.262,22.921,17.693,12.416,11.349,15.068,17.933,13.319,20.505,12.661,22.506,15.926,23.841,19.016,-2.007,14.154,13.78,9.953,17.954,0.716,21.251,12.547,5.366,2.238,13.326,19.031,16.594,19.268,17.049,15.184,9.611,9.663,-1.041,7.566,9.807,4.065,6.498,-2.466,8.062,16.453,-8.648,15.001,12.305,7.772,-6.476,11.424,16.076,7.844,-5.999,18.026,12.095,-1.642,17.743,15.895,8.369,5.488,2.143,15.867,-3.981,-1.864,17.079,5.038,-1.346,18.391,15.21,9.662,1.287,6.137,4.245,9.458,6.209,4.533,6.033,6.348,9.425,15.35,1.304,14.168,16.166,5.094,0.328,-10.465,-13.099,6.299,15.447,3.867,4.723,3.528,7.993,3.365,1.72,-1.888,3.127,7.88,-2.495,-0.045,4.885],[21.464,24.478,11.796,32.861,26.817,15.194,28.376,27.469,24.109,7.934,26.255,23.547,21.832,16.089,20.52,23.208,19.684,18.907,12.31,10.985,13.322,22.335,13.777,-1.575,12.837,20.156,17.503,1.517,15.991,15.752,5.415,-2.187,9.12,7.785,9.639,10.499,16.526,16.6,-7.102,3.709,9.41,11.256,-5.133,6.198,16.455,17.309,0.385,15.525,-1.306,4.961,9.031,2.994,4.395,6.426,8.398,6.386,-1.394,4.896,-12.404,2.367,4.209,15.854,14.881,-1.584,24.274,8.867,23.685,33.233,23.535,15.564,21.899,25.594,22.151,33.556,28.774,27.417,22.784,28.025,27.075,22.821,14.794,20.622,10.573,27.521,10.735,27.409,14.308,22.907,27.355,8.198,20.843,25.313,17.952,21.614,10.935,0.142,22.5,17.934,12.354,11.306,14.663,17.849,13.361,20.549,12.706,22.393,15.997,23.053,19.121,-2.347,14.07,14.273,9.935,18.532,1.082,21.537,12.95,4.887,2.275,12.943,18.849,16.454,19.367,17.054,15.458,9.277,9.844,-1.183,7.422,10.355,3.937,6.447,-2.022,8.176,16.175,-8.475,14.803,12.229,8.303,-6.424,11.089,15.978,7.878,-5.776,17.623,11.847,-1.817,17.413,16.019,9.032,5.178,2.261,16.222,-4.366,-1.872,17.349,5.568,-1.419,18.42,15.44,9.141,1.639,5.855,4.309,9.995,5.986,4.547,6.009,5.843,9.561,15.703,1.205,14.103,15.941,5.263,-0.053,-10.557,-12.857,6.526,15.524,3.849,4.789,3.712,8.574,3.573,2.079,-1.518,3.249,7.831,-2.846,-0.06,5.315],[21.473,24.324,11.867,32.648,26.815,15.147,28.091,27.598,24.028,7.875,26.124,23.432,21.981,16.094,20.556,23.219,19.973,18.956,12.506,11.076,13.251,22.388,13.889,-1.68,13.042,20.147,17.582,1.838,15.927,15.561,5.249,-2.058,9.3,7.85,9.714,10.517,16.455,16.594,-7.264,3.657,9.376,11.148,-5.329,6.488,16.422,17.248,0.527,15.831,-1.446,5.058,9.183,3.044,4.247,6.439,8.433,6.453,-1.256,4.886,-12.466,2.194,3.876,15.817,14.834,-1.619,23.934,9.003,23.431,33.663,24.275,15.982,22.294,25.787,21.709,33.826,28.923,27.562,22.723,27.706,26.963,22.574,14.478,20.456,10.532,27.309,11.114,26.81,14.151,23.032,27.086,8.776,21.309,25.207,17.891,22.042,11.202,-0.106,22.394,18.221,12.385,11.9,14.67,17.821,13.449,20.949,12.912,21.997,16.583,22.888,19.108,-2.836,13.87,14.429,10.089,18.267,1.369,21.592,13.114,4.759,2.307,12.961,19.085,16.423,19.131,16.743,15.625,9.7,9.841,-1.316,7.523,11.236,3.715,7.055,-1.895,7.896,16.577,-8.386,14.639,12.343,8.323,-6.333,10.799,15.72,7.812,-5.698,17.677,11.248,-2.275,17.339,16.115,8.631,5.171,2.025,16.002,-4.274,-2.015,16.906,5.472,-1.3,17.986,15.664,9.2,1.549,5.575,4.432,9.532,5.532,4.535,5.722,5.695,9.089,15.95,0.805,14.093,15.369,5.571,-0.253,-10.841,-13.086,6.649,15.74,3.482,5.038,3.889,8.788,3.424,1.78,-1.265,3.03,7.862,-3.125,0.211,5.713],[21.32,24.223,12.068,32.685,26.718,15.055,27.878,27.713,23.97,7.924,26.253,23.367,21.999,16.184,20.478,23.275,20.199,19.071,12.57,11.057,13.212,22.324,13.88,-1.823,12.998,20.197,17.643,2.089,15.97,15.445,5.035,-1.887,9.23,7.927,9.839,10.615,16.342,16.787,-7.444,3.615,9.442,11.054,-5.476,6.781,16.436,17.213,0.559,16.004,-1.447,5.05,9.274,3.086,4.212,6.494,8.373,6.509,-1.173,4.946,-12.342,2.123,3.719,15.716,14.802,-1.581,23.743,8.775,23.056,33.692,24.235,16.586,22.339,25.908,21.759,33.458,28.094,27.617,22.61,27.898,26.389,22.69,13.721,20.247,10.809,27.064,11.041,26.756,14.313,22.458,26.757,8.278,21.653,25.216,17.853,21.87,11.545,-0.172,22.413,18.368,12.411,11.711,14.852,17.668,13.294,20.698,12.802,21.922,16.58,23.115,19.105,-2.827,13.733,14.543,10.488,17.992,1.535,21.529,13.248,4.538,2.453,13.223,19.274,16.774,19.037,17.064,15.256,9.79,9.796,-1.208,7.264,11.556,3.68,6.621,-2.103,8.004,16.185,-8.647,14.832,12.433,8.658,-6.335,10.727,15.831,7.714,-5.807,18.138,11.631,-2.725,17.067,15.87,7.861,4.972,2.084,16.422,-4.451,-2.081,16.181,5.286,-1.205,18.248,15.463,9.425,1.537,5.454,4.772,9.683,5.116,4.605,5.876,5.492,9.172,15.927,0.761,14.046,15.465,5.215,0.224,-10.803,-13.145,6.947,15.533,3.331,5.177,3.816,8.501,3.525,1.566,-1.289,2.401,7.627,-2.582,0.531,5.638],[21.195,24.088,12.056,32.612,26.474,14.977,27.667,27.758,23.899,7.819,26.405,23.33,21.92,16.394,20.336,23.233,20.214,19.197,12.589,11.001,13.21,22.321,13.802,-1.949,12.748,20.037,17.82,2.246,16.091,15.428,4.866,-1.829,8.851,8.151,10.139,10.805,16.216,17.034,-7.609,3.662,9.353,11.216,-5.522,7.023,16.541,17.242,0.483,15.951,-1.38,4.878,9.28,3.154,4.267,6.584,8.241,6.471,-1.046,5.075,-12.056,2.094,3.562,15.594,14.807,-1.459,23.894,8.778,23.014,33.382,23.49,16.665,22.276,25.914,21.791,33.863,27.728,28.038,22.478,28.144,26.643,22.432,13.647,20.318,10.611,27.685,11.109,26.882,14.692,22.421,26.559,8.364,21.542,25.09,17.811,21.47,11.479,-0.14,23.277,18.278,12.135,11.404,15.098,18.101,12.595,20.915,12.897,21.945,16.143,23.994,18.699,-2.581,13.969,14.394,10.22,18.263,1.398,21.315,13.466,4.362,3.204,12.908,19.365,17.225,19.375,17.375,14.765,9.696,9.744,-1.125,7.193,11.165,3.354,6.81,-1.994,8.443,16.595,-9.048,15.039,12.561,8.544,-5.963,10.599,15.82,8.02,-6.039,18.543,11.688,-3.064,16.278,15.882,8.121,5.019,2.145,16.345,-5.087,-1.666,15.911,5.53,-1.286,18.448,15.981,9.583,1.615,5.931,4.718,10.042,4.552,4.61,6.196,5.032,9.308,15.486,0.871,13.833,16.015,5.264,0.218,-10.468,-12.974,7.031,14.988,3.472,5.052,4.008,8.103,3.793,1.655,-1.559,2.493,7.386,-2.521,0.272,5.298],[21.099,23.994,11.851,32.519,26.254,15.073,27.501,27.795,23.785,7.683,26.549,23.326,21.832,16.54,20.289,23.361,20.097,19.392,12.498,11.02,13.293,22.449,13.764,-1.845,12.509,19.788,17.915,2.439,16.169,15.505,4.758,-1.938,8.537,8.443,10.253,10.966,16.009,17.244,-7.707,3.78,9.222,11.415,-5.564,7.157,16.64,17.193,0.401,15.848,-1.253,4.783,9.302,3.202,4.48,6.6,8.159,6.489,-1.024,5.195,-11.711,2.191,3.434,15.425,14.807,-1.372,23.876,9.041,23.301,33.493,23.068,16.738,22.366,25.974,21.719,34.188,28.226,27.93,22.279,27.984,27.065,22.364,14.002,20.001,10.303,27.251,11.586,26.98,14.314,22.518,26.709,8.284,21.389,25.159,18.277,21.312,11.473,-0.173,23.181,18.285,11.93,11.546,14.879,18.525,11.624,21.357,12.911,21.882,15.995,24.353,18.592,-2.725,14.021,14.158,10.044,18.328,1.684,21.121,13.834,4.889,3.242,12.596,19.543,17.335,19.444,17.05,15.06,9.841,9.348,-1.009,6.954,10.99,3.021,6.992,-2.135,8.001,16.98,-9.219,15.372,12.438,8.605,-6.05,10.449,16.02,8.4,-6.245,18.798,12.031,-2.96,15.438,15.704,8.747,5.454,2.216,16.071,-4.609,-1.311,16.123,5.89,-1.384,17.936,15.512,8.619,1.196,6.524,3.84,9.986,4.009,4.806,5.895,5.03,8.974,15.121,0.88,13.863,16.077,5.331,0.304,-10.199,-12.897,6.914,15.154,3.389,5.108,3.98,7.929,3.602,1.542,-0.999,2.141,6.84,-2.795,0.256,5.569],[21.036,23.943,11.848,32.596,26.215,15.22,27.476,27.802,23.683,7.554,26.759,23.323,21.917,16.674,20.25,23.424,20.035,19.477,12.297,11.053,13.507,22.59,13.721,-1.629,12.552,19.617,17.724,2.681,16.214,15.67,4.759,-2.104,8.258,8.338,10.265,10.963,15.756,17.355,-7.927,3.914,9.096,11.4,-5.575,7.183,16.801,16.939,0.412,15.694,-1.064,4.682,9.277,3.144,4.717,6.61,8.031,6.549,-0.951,5.251,-11.457,2.375,3.365,15.297,14.857,-1.308,23.449,8.766,22.999,33.403,23.23,16.715,22.132,26.126,21.86,33.741,28.244,27.531,22.228,27.952,27.273,22.44,14.761,20.106,10.633,26.622,11.364,26.592,13.974,22.775,26.589,8.068,21.206,25.208,18.374,21.645,11.438,0.022,22.916,18.278,12.293,11.205,15.187,18.472,11.004,20.695,12.731,21.683,16.447,24.692,18.631,-2.545,13.844,13.947,10.683,18.168,1.95,21.492,14.307,4.663,2.951,12.974,19.374,16.762,18.575,16.919,15.601,10.123,9.014,-1.268,6.415,10.701,3.084,7.08,-2.174,8.208,16.871,-9.235,15.568,12.825,8.604,-6.209,10.619,15.933,8.11,-6.254,18.717,12.061,-2.967,15.295,15.344,8.082,5.582,2.595,16.191,-4.225,-1.014,16.362,6.026,-1.235,17.871,15.655,8.491,1.322,6.546,3.741,10.19,3.877,4.745,5.712,5.111,8.726,14.843,0.976,13.717,15.748,5.094,0.07,-10.042,-12.368,6.912,15.408,3.281,4.99,4.007,7.928,3.374,1.774,-0.813,2.153,6.794,-2.874,0.32,6.062],[21.123,23.836,11.997,32.624,26.246,15.236,27.439,27.792,23.596,7.475,26.939,23.37,21.998,16.789,20.419,23.401,20.062,19.24,11.978,11.135,13.845,22.684,13.71,-1.359,12.646,19.352,17.49,2.843,16.226,15.825,4.764,-2.193,8.063,8.124,10.222,10.792,15.556,17.251,-8.051,3.993,8.922,11.215,-5.597,7.046,17.032,16.563,0.665,15.753,-0.955,4.609,9.274,3.052,4.912,6.594,7.946,6.535,-0.933,5.28,-11.316,2.481,3.386,15.321,14.896,-1.405,23.686,8.09,22.306,33.85,23.534,16.732,22.312,25.924,21.774,33.387,27.823,28.034,22.263,28.079,27.565,22.409,14.415,20.291,10.463,27.281,11.361,26.819,14.461,22.897,26.672,8.124,21.448,25.048,18.313,21.833,11.844,0.086,22.668,18.136,12.246,11.321,15.519,18.616,11.321,20.434,13.023,21.918,16.797,24.858,18.221,-2.295,14.187,14.153,10.934,17.969,2.108,21.932,14.45,3.902,3.449,13.418,19.151,16.123,18.483,16.871,15.563,10.388,8.921,-1.521,6.531,10.47,3.371,6.813,-2.09,8.009,17.124,-9.194,15.41,12.625,8.411,-6.171,10.644,16.016,8.049,-6.37,18.521,11.69,-2.496,15.963,15.418,7.326,5.441,2.758,16.239,-4.874,-1.262,16.586,6.094,-1.279,18.127,15.463,8.856,1.58,5.546,4.495,9.904,3.981,4.414,5.968,4.95,8.314,14.703,1.082,13.685,15.301,5.261,-0.314,-9.68,-12.177,7.065,15.265,3.117,5.488,4.501,7.755,3.69,1.639,-1.04,2.727,7.187,-2.969,0.513,5.967],[21.255,23.782,12.104,32.556,26.453,15.276,27.366,27.71,23.402,7.373,27.299,23.531,22.119,16.873,20.74,23.367,20.095,19.022,11.922,11.336,14.06,22.752,13.692,-1.202,12.73,19.14,17.477,2.977,16.266,15.983,4.647,-2.308,8.049,7.903,10.036,10.458,15.474,17.044,-8.116,4.036,8.758,10.999,-5.7,6.944,17.281,16.256,0.842,15.866,-0.845,4.626,9.349,3.0,5.096,6.51,7.977,6.622,-1.012,5.282,-11.216,2.377,3.444,15.335,14.81,-1.661,24.156,8.373,22.396,33.933,23.834,17.381,22.14,25.83,21.701,33.674,27.838,28.181,21.949,28.067,27.589,22.815,13.75,20.397,10.646,26.972,11.247,26.916,14.551,22.735,26.862,7.984,21.388,25.333,18.559,22.106,11.615,0.513,22.309,18.087,12.03,11.496,15.349,18.429,11.365,20.488,13.157,22.673,16.453,25.08,17.829,-1.723,14.543,14.162,10.621,17.636,2.176,21.722,14.109,4.303,3.682,13.336,18.988,15.911,18.497,16.934,15.302,10.395,8.974,-1.468,6.494,11.014,3.085,6.244,-1.871,7.599,16.912,-9.192,14.629,12.287,8.309,-6.229,10.475,16.558,8.187,-6.511,18.476,11.44,-1.986,16.385,15.369,7.42,5.501,2.449,16.632,-5.064,-1.642,16.877,5.654,-0.992,17.688,15.869,8.552,1.67,5.154,4.668,9.925,4.506,4.595,6.679,5.103,7.792,15.024,1.126,13.679,14.868,5.154,0.111,-9.666,-12.486,6.919,15.24,2.886,5.663,4.85,7.612,3.363,1.516,-1.184,2.954,7.03,-2.491,0.856,5.558],[21.541,23.844,12.142,32.627,26.741,15.204,27.376,27.59,23.204,7.349,27.634,23.843,22.169,17.153,21.08,23.386,20.063,18.863,12.067,11.466,13.986,22.746,13.651,-1.126,12.697,18.992,17.655,3.059,16.328,16.078,4.475,-2.443,8.108,7.718,9.934,10.221,15.423,16.791,-8.132,4.052,8.702,10.786,-5.856,6.805,17.633,15.98,0.958,15.936,-0.728,4.578,9.572,2.943,5.3,6.445,7.833,6.71,-1.001,5.259,-11.305,2.132,3.592,15.324,14.677,-1.761,23.757,8.657,22.852,33.217,23.221,17.373,22.353,25.733,21.88,33.651,28.18,28.711,22.014,27.803,27.844,23.076,14.329,20.847,10.93,27.384,11.261,26.9,14.328,22.94,26.317,7.959,21.561,25.628,18.784,22.001,11.359,0.547,22.415,18.244,11.831,11.319,15.245,17.72,11.328,20.705,13.24,23.069,16.134,25.061,17.809,-1.704,14.526,14.254,10.541,17.65,2.475,21.474,13.548,4.516,3.279,13.684,19.098,15.951,18.411,16.84,15.462,9.678,9.183,-1.776,6.432,10.581,2.713,6.319,-2.328,7.651,16.502,-9.382,14.223,12.113,8.31,-6.118,10.584,16.537,7.836,-6.538,18.356,11.32,-1.211,16.068,15.143,7.461,5.481,2.347,16.317,-5.026,-1.809,17.311,5.27,-0.75,17.277,16.329,8.183,1.641,5.195,4.257,10.054,5.305,4.659,6.878,5.276,8.2,15.093,0.952,13.576,15.126,5.246,-0.058,-9.828,-12.378,6.966,14.775,2.814,5.473,4.483,7.806,3.136,1.435,-1.44,2.629,7.046,-2.748,0.574,5.778],[21.878,23.824,12.135,32.621,27.007,15.189,27.48,27.488,23.081,7.577,27.832,24.0,22.086,17.361,21.333,23.399,20.118,18.642,12.193,11.415,13.832,22.646,13.507,-1.196,12.492,19.015,17.829,3.029,16.281,16.03,4.295,-2.735,8.183,7.751,9.925,10.089,15.415,16.745,-8.187,3.996,8.608,10.684,-5.935,6.558,17.916,15.769,0.962,15.921,-0.535,4.476,9.767,2.966,5.506,6.399,7.669,6.805,-0.998,5.344,-11.421,1.957,3.774,15.198,14.489,-1.733,23.503,7.701,22.814,33.696,23.351,17.465,22.796,25.59,22.049,33.657,28.103,28.895,22.204,28.104,28.085,23.498,14.994,20.836,10.572,27.842,11.608,27.304,13.805,23.708,26.444,8.003,21.382,25.834,19.104,22.1,11.516,0.253,22.735,18.519,11.775,11.411,15.362,17.412,11.796,20.764,13.273,22.628,16.611,25.243,17.783,-1.944,14.328,14.12,10.731,18.007,2.619,21.318,13.688,3.961,3.601,13.531,19.454,16.42,18.293,16.982,15.823,9.177,9.286,-1.857,6.616,10.179,2.921,6.674,-2.512,7.563,16.894,-8.985,13.885,11.755,8.061,-6.952,10.891,16.405,7.838,-6.467,17.772,11.091,-0.36,15.605,15.092,7.253,5.366,2.527,16.777,-5.127,-1.859,17.679,4.936,-0.843,17.127,15.479,8.402,1.563,5.727,4.171,10.365,5.181,4.651,6.165,5.279,8.5,14.775,0.534,13.442,15.066,5.292,-0.299,-10.082,-12.245,7.251,14.813,2.981,5.084,5.143,8.275,3.239,1.261,-1.296,2.381,6.601,-3.247,0.573,6.121],[22.09,23.793,12.106,32.612,27.191,15.19,27.64,27.548,23.111,7.603,27.977,24.088,21.9,17.424,21.483,23.42,20.131,18.455,12.231,11.33,13.708,22.444,13.459,-1.357,12.255,19.128,17.996,3.058,16.265,15.988,4.189,-3.074,8.294,7.902,9.917,9.928,15.35,16.907,-8.284,4.015,8.506,10.729,-5.974,6.326,18.13,15.681,0.845,15.864,-0.203,4.373,9.775,3.034,5.758,6.388,7.521,6.867,-0.897,5.549,-11.479,1.916,3.927,14.985,14.302,-1.738,23.812,8.129,22.591,34.088,23.235,17.703,22.502,25.676,22.341,33.607,28.576,28.517,21.983,27.806,27.533,23.898,14.635,21.219,10.469,27.621,11.57,27.63,14.127,23.64,26.837,8.067,21.198,25.877,19.232,22.329,11.681,0.323,23.082,18.111,11.611,11.295,15.087,17.338,12.791,20.526,13.182,21.593,16.529,25.144,17.821,-1.801,14.262,13.633,10.908,18.14,2.553,21.351,13.783,3.79,3.725,13.09,19.608,17.202,18.58,17.148,15.879,9.055,9.333,-1.894,6.691,10.911,2.818,6.387,-2.409,7.774,17.255,-9.093,14.062,11.698,8.447,-7.317,10.505,16.613,7.518,-6.497,17.319,11.194,-0.343,15.782,14.597,7.01,5.403,2.415,16.99,-5.254,-1.827,17.586,5.04,-1.022,16.894,15.168,8.531,1.742,6.031,4.183,10.941,4.899,4.721,5.567,5.437,8.199,14.586,0.481,13.43,14.605,5.256,-0.114,-9.534,-12.448,7.174,14.9,2.61,4.999,5.697,8.811,3.549,1.245,-1.096,2.548,6.039,-3.118,0.811,5.872],[22.136,23.82,11.994,32.693,27.127,15.126,27.925,27.579,23.188,7.612,27.921,24.057,21.6,17.431,21.663,23.425,20.001,18.352,12.257,11.344,13.547,22.185,13.44,-1.341,12.086,19.275,18.126,3.236,16.306,16.008,4.026,-3.306,8.519,8.064,10.191,9.745,15.358,17.154,-8.409,4.187,8.396,10.804,-5.924,6.106,18.226,15.621,0.703,15.835,-0.03,4.12,9.722,3.201,5.949,6.504,7.231,6.751,-0.681,5.691,-11.239,1.998,4.102,14.848,14.226,-1.734,24.196,8.859,22.3,33.494,23.199,17.485,22.375,25.756,22.146,33.416,28.705,29.045,21.959,27.714,27.366,23.851,13.856,20.99,10.509,28.052,11.464,27.651,14.762,23.344,26.636,7.878,21.223,25.874,19.166,22.223,11.205,0.066,23.677,17.957,11.612,10.899,14.889,17.359,13.221,20.639,13.094,20.771,16.261,25.165,17.852,-1.963,14.489,13.784,10.603,17.717,2.426,21.448,13.795,3.926,3.681,12.769,19.275,17.826,18.897,17.146,15.401,8.945,9.27,-2.808,6.689,11.381,2.506,6.501,-2.721,7.905,16.794,-9.482,14.23,11.556,8.548,-7.439,9.982,17.228,7.68,-6.583,17.119,11.811,-0.701,16.044,14.329,7.21,5.582,2.699,16.421,-5.31,-1.552,17.354,5.429,-1.12,16.504,15.57,8.234,1.408,6.22,4.146,11.015,5.505,4.554,6.346,5.741,8.066,13.916,0.837,13.555,14.95,5.463,-0.225,-9.805,-12.45,6.892,14.117,2.341,5.031,5.9,8.931,3.635,1.158,-1.298,2.793,6.27,-2.844,1.143,5.467],[22.016,23.92,11.962,32.597,27.047,15.061,28.128,27.546,23.018,7.878,27.985,23.977,21.298,17.38,21.765,23.582,19.828,18.316,12.345,11.305,13.359,21.882,13.402,-1.298,12.096,19.354,18.061,3.379,16.354,15.941,3.856,-3.562,8.8,8.092,10.565,9.553,15.374,17.285,-8.517,4.345,8.267,10.925,-5.861,6.083,18.27,15.598,0.516,15.778,-0.037,4.062,9.617,3.188,6.132,6.769,7.115,6.655,-0.514,5.696,-10.952,2.125,4.323,14.74,14.229,-1.761,23.805,8.172,22.6,33.567,23.453,17.335,22.584,25.7,22.174,33.929,28.484,28.866,22.218,27.913,26.777,23.671,13.743,20.936,10.516,27.672,11.3,27.033,14.545,23.511,27.001,7.767,20.84,25.858,19.071,22.043,10.855,0.272,23.646,17.966,11.606,11.199,14.923,17.48,12.532,20.432,13.201,20.482,16.638,25.072,18.181,-1.769,14.323,13.879,10.562,17.278,2.615,21.72,13.686,4.064,3.915,12.648,19.293,17.896,18.629,17.137,15.345,8.653,9.66,-3.373,7.152,11.671,2.571,6.792,-2.861,7.766,16.858,-9.677,14.262,11.392,8.953,-7.285,10.147,17.299,7.787,-6.878,17.649,11.44,-0.812,16.089,14.694,7.205,5.736,3.028,15.904,-5.448,-1.464,17.287,4.751,-1.294,16.433,15.76,8.432,1.153,6.056,3.992,10.993,5.46,4.404,7.186,6.087,8.113,13.675,0.819,13.414,15.076,5.144,-0.091,-9.879,-12.208,6.461,14.055,2.504,5.58,5.608,8.615,3.584,1.24,-1.258,3.336,6.367,-3.064,1.301,5.9],[21.922,23.939,12.042,32.577,26.804,15.006,28.246,27.504,22.859,8.073,28.064,24.031,21.119,17.305,21.738,23.777,19.674,18.363,12.306,11.264,13.201,21.653,13.32,-1.172,12.332,19.386,17.846,3.464,16.405,15.911,3.854,-3.826,9.125,8.007,10.856,9.354,15.368,17.27,-8.731,4.33,8.218,10.925,-5.835,6.17,18.262,15.757,0.282,15.638,-0.095,4.198,9.559,3.017,6.162,6.922,7.219,6.49,-0.428,5.63,-10.795,2.174,4.578,14.709,14.244,-1.89,23.309,7.721,22.643,33.632,23.059,17.712,22.166,25.693,22.704,33.925,28.883,28.83,22.228,27.575,26.802,23.494,14.127,21.242,10.399,27.992,11.434,26.672,13.908,23.545,27.357,8.361,20.697,25.884,19.059,22.061,11.637,0.54,23.357,18.017,11.608,11.08,14.874,17.376,11.978,20.355,13.183,20.792,16.909,25.156,18.133,-1.539,14.194,13.669,10.978,17.078,2.55,21.306,13.351,4.364,3.954,12.795,19.501,17.627,18.674,16.957,15.74,8.786,10.121,-2.835,7.732,12.021,2.534,6.367,-2.849,8.025,17.192,-9.589,13.846,11.139,9.418,-6.882,11.075,16.977,7.355,-6.945,18.573,11.685,-0.991,16.279,15.05,6.881,5.659,2.812,16.154,-5.385,-1.431,17.467,4.664,-1.544,16.623,15.511,8.743,1.156,6.396,3.937,10.762,5.644,4.47,6.777,6.473,8.121,14.409,0.553,13.201,14.807,4.887,-0.255,-9.791,-12.242,6.331,14.705,2.422,5.567,5.356,8.523,3.325,1.517,-1.243,3.457,5.879,-3.052,1.209,6.277],[21.992,23.798,12.085,32.678,26.492,14.981,28.549,27.339,22.746,8.125,28.1,24.073,21.101,17.416,21.673,23.948,19.579,18.414,12.088,11.47,13.243,21.55,13.246,-0.941,12.557,19.407,17.586,3.389,16.475,16.021,3.946,-3.96,9.517,7.835,11.167,9.222,15.346,17.204,-8.985,4.213,8.305,10.964,-5.783,6.29,18.182,16.101,0.056,15.437,-0.208,4.289,9.736,2.919,6.195,6.91,7.213,6.193,-0.43,5.549,-10.708,2.093,4.721,14.872,14.31,-2.087,23.818,8.542,22.11,33.488,23.267,17.588,21.759,25.524,22.688,33.472,28.856,28.995,21.994,27.527,27.512,23.341,14.409,21.144,10.396,27.774,12.148,26.729,14.138,23.646,27.165,8.336,20.346,25.793,19.066,22.557,12.127,0.381,23.181,17.92,11.599,11.121,14.839,17.331,11.789,20.155,13.369,21.007,16.608,25.151,18.178,-1.592,14.512,14.407,11.108,17.3,2.42,20.46,12.994,4.344,4.12,12.71,18.735,17.283,18.686,16.597,15.491,8.743,10.254,-2.932,7.727,11.815,2.576,6.336,-3.021,7.979,16.994,-9.797,14.001,11.088,9.278,-6.193,11.253,16.491,7.367,-7.231,18.901,11.462,-1.057,15.926,15.061,6.783,5.586,2.458,16.413,-5.265,-1.507,17.912,4.568,-1.704,16.718,15.1,8.506,0.909,6.409,4.196,11.063,5.388,4.701,6.285,6.61,7.85,14.509,0.718,13.274,14.382,5.039,-0.317,-10.396,-11.821,7.063,15.091,2.564,5.38,5.909,8.292,3.238,1.408,-1.062,3.613,5.992,-2.768,1.401,6.191],[22.047,23.754,12.242,32.687,26.204,15.018,28.814,27.091,22.604,8.127,28.045,24.058,20.991,17.585,21.682,24.111,19.538,18.442,11.786,11.774,13.419,21.498,13.218,-0.956,12.73,19.454,17.214,3.209,16.543,16.099,4.068,-4.032,9.652,7.744,11.368,9.181,15.418,17.121,-9.265,4.008,8.356,10.986,-5.629,6.474,18.09,16.372,-0.088,15.203,-0.334,4.244,10.167,3.084,6.234,6.811,7.131,6.156,-0.38,5.366,-10.574,1.992,4.724,15.09,14.328,-2.102,23.759,9.14,22.234,34.035,23.236,17.334,21.836,25.136,22.279,33.76,29.047,28.09,22.024,27.816,28.088,23.582,14.092,20.955,10.678,26.829,11.995,26.83,14.292,23.799,27.604,8.269,20.916,25.931,19.359,22.424,11.261,0.646,22.71,17.641,11.506,11.872,14.576,17.056,12.205,19.861,13.607,21.372,16.596,25.209,18.359,-1.232,14.715,14.542,11.022,17.642,2.159,19.923,12.996,4.104,3.895,13.09,18.516,17.079,18.499,16.505,15.208,8.513,10.33,-3.844,7.981,11.887,2.672,6.443,-2.882,7.613,17.081,-10.105,14.042,10.933,9.659,-5.827,10.167,16.375,7.522,-7.625,18.846,11.715,-1.286,15.684,15.189,7.196,5.219,2.6,15.888,-5.053,-1.37,17.893,4.93,-1.951,16.894,14.911,8.999,0.775,6.438,4.199,11.197,5.349,4.301,6.798,6.355,7.753,14.416,0.725,13.673,14.725,4.587,-0.552,-10.648,-12.171,7.08,14.592,2.648,5.081,6.504,8.577,3.612,1.128,-0.478,3.639,6.35,-2.747,1.206,5.753],[22.048,23.829,12.365,32.803,25.94,14.845,28.938,26.928,22.454,8.124,27.796,24.092,20.929,17.66,21.68,24.161,19.643,18.352,11.516,11.848,13.695,21.511,13.306,-0.976,12.979,19.494,16.843,2.947,16.694,16.111,4.176,-4.282,9.648,7.825,11.536,9.213,15.413,17.099,-9.468,3.725,8.449,11.1,-5.421,6.588,18.055,16.459,-0.166,14.898,-0.391,4.101,10.612,3.332,6.247,6.772,7.119,6.058,-0.309,5.272,-10.486,1.961,4.627,15.238,14.191,-2.038,23.341,8.774,22.568,34.071,22.86,17.555,22.065,25.237,22.462,33.58,29.123,28.555,22.062,27.493,27.36,23.753,13.497,20.954,11.027,26.684,12.069,26.314,14.274,23.541,28.016,8.104,20.673,26.019,19.473,22.637,11.308,0.579,22.589,17.831,11.517,12.006,14.79,16.769,12.284,19.791,13.748,21.314,17.247,25.382,18.533,-1.555,14.659,14.495,11.074,17.938,1.636,19.868,13.341,4.187,3.579,13.06,18.528,17.367,18.485,16.566,15.639,8.245,10.359,-4.124,8.018,11.988,2.896,6.398,-2.983,7.989,17.135,-10.596,14.469,10.786,9.589,-5.911,9.797,16.645,7.924,-7.775,18.721,11.587,-1.48,16.597,15.497,7.535,5.06,2.186,15.436,-4.593,-1.481,17.57,5.595,-2.044,17.583,14.682,8.97,0.456,6.032,3.831,11.483,5.798,4.342,6.384,6.405,7.903,14.528,0.426,13.847,15.259,4.577,-0.487,-10.312,-12.057,6.792,14.34,2.331,5.105,6.621,9.318,4.442,1.259,-0.422,3.568,5.936,-2.886,1.548,5.587],[22.117,23.904,12.426,32.854,25.867,14.61,28.887,26.867,22.367,8.067,27.622,23.909,20.944,17.787,21.65,24.155,19.69,18.188,11.353,11.88,13.845,21.576,13.577,-1.061,13.13,19.438,16.734,2.548,16.964,16.232,4.211,-4.602,9.573,7.941,11.484,9.213,15.493,17.244,-9.506,3.295,8.522,11.24,-5.172,6.69,18.094,16.611,-0.251,14.577,-0.401,3.893,10.981,3.519,6.385,6.762,7.075,6.008,-0.232,5.301,-10.289,1.945,4.735,15.317,14.033,-2.076,23.618,8.294,21.867,33.712,23.209,17.553,21.943,25.123,22.813,33.965,28.948,28.622,22.218,27.067,26.434,23.526,13.796,21.1,10.648,27.058,12.143,26.459,13.788,23.663,27.543,8.358,20.262,25.701,19.443,23.008,11.768,0.683,22.668,17.943,11.779,12.264,15.152,16.44,11.722,20.496,13.77,21.214,17.294,25.168,18.543,-1.547,14.582,14.945,10.962,17.873,1.734,19.94,13.626,4.455,3.544,13.092,18.12,18.047,18.364,16.116,15.987,8.141,10.568,-3.424,7.952,12.369,2.843,6.546,-3.564,8.638,16.893,-10.753,14.66,10.931,9.871,-6.213,10.024,16.556,8.027,-8.004,18.811,12.13,-1.582,16.952,15.349,7.653,5.023,1.931,15.467,-4.754,-1.475,18.104,5.711,-2.032,18.085,14.158,8.832,0.698,5.916,3.549,12.096,5.763,5.06,6.197,6.277,7.876,14.682,0.44,13.798,14.551,4.261,-0.4,-10.335,-11.683,6.441,13.99,2.164,5.486,5.807,9.503,4.299,1.23,-1.023,3.222,5.729,-3.131,1.596,5.493],[22.165,23.922,12.294,32.739,26.137,14.494,28.568,26.789,22.349,8.061,27.616,23.666,20.924,17.863,21.69,24.123,19.749,18.058,11.261,11.925,13.905,21.523,13.87,-1.109,13.285,19.366,16.782,2.236,17.214,16.316,4.222,-4.716,9.556,8.089,11.421,9.13,15.651,17.557,-9.473,2.951,8.604,11.496,-5.086,6.765,18.151,16.827,-0.251,14.231,-0.439,3.677,11.203,3.58,6.435,6.754,6.958,5.964,-0.361,5.286,-10.07,1.858,4.918,15.28,13.743,-2.2,23.883,8.479,21.934,34.115,22.554,18.067,21.789,25.167,23.022,33.743,29.08,28.528,22.151,26.886,26.592,23.322,14.362,20.813,10.614,27.462,12.294,26.558,13.478,23.363,27.487,8.783,20.798,25.444,19.63,22.344,11.372,0.547,22.596,17.917,12.012,12.353,14.978,16.444,11.697,20.479,13.779,21.428,17.187,25.347,18.222,-1.165,14.746,14.926,11.219,17.739,1.307,20.339,13.822,4.6,3.15,13.444,18.357,18.424,18.387,15.979,15.792,8.691,10.4,-3.33,7.649,12.781,2.759,6.684,-4.091,7.883,17.161,-10.407,14.487,11.058,9.568,-5.863,10.564,16.564,7.914,-7.815,19.306,12.156,-1.465,16.141,15.592,7.617,4.553,1.604,15.224,-5.257,-1.089,18.59,5.373,-2.059,18.29,14.485,8.909,0.817,6.257,3.096,12.79,5.517,5.162,6.588,6.086,7.69,14.985,0.527,13.615,13.984,4.173,-0.32,-10.197,-11.77,6.623,14.117,2.451,5.167,5.465,9.901,3.797,1.053,-1.305,3.245,6.226,-3.169,1.303,5.932],[22.136,23.814,12.257,32.589,26.511,14.513,28.374,26.803,22.364,8.169,27.783,23.455,20.913,17.974,21.618,24.012,19.821,18.141,11.189,12.034,13.917,21.424,14.043,-1.102,13.526,19.31,17.038,2.021,17.367,16.221,4.213,-4.751,9.411,8.051,11.383,9.183,15.7,17.894,-9.341,2.641,8.802,11.701,-5.2,6.764,18.198,17.12,-0.25,13.904,-0.487,3.644,11.401,3.348,6.302,6.78,6.809,5.903,-0.664,5.372,-10.06,1.68,4.945,15.121,13.384,-2.146,23.679,8.365,22.123,34.145,22.723,18.666,21.993,24.958,22.739,33.04,28.867,28.478,21.954,27.192,27.345,23.575,14.051,21.072,10.734,27.972,11.764,26.061,13.746,22.912,27.002,8.607,20.358,25.392,19.539,22.317,10.419,0.514,22.746,18.034,12.36,12.562,15.43,16.421,11.893,19.896,13.83,21.685,17.595,25.155,18.351,-1.104,14.935,15.188,11.587,17.847,0.864,20.4,13.855,4.605,2.834,13.757,18.343,18.081,18.391,16.247,15.81,8.471,10.245,-3.698,7.684,12.067,2.933,6.631,-3.798,7.898,17.419,-10.123,14.522,10.801,9.472,-5.724,11.399,17.024,7.922,-7.664,19.651,12.089,-1.329,15.844,16.218,7.715,4.031,1.329,14.952,-4.954,-0.526,18.364,5.077,-2.08,18.265,14.689,8.817,0.942,6.521,2.989,12.986,5.45,4.937,6.241,6.557,7.564,14.881,0.055,13.974,14.429,4.559,-0.419,-10.055,-11.868,6.957,14.496,2.021,4.961,6.04,10.336,3.962,1.12,-1.067,3.817,6.242,-2.747,1.077,6.086],[22.062,23.686,12.367,32.44,26.785,14.61,28.222,26.85,22.417,8.124,28.013,23.422,20.784,18.139,21.507,23.778,19.692,18.358,11.088,12.176,13.941,21.424,14.201,-1.142,13.815,19.349,17.334,1.903,17.453,16.131,4.18,-4.649,9.206,7.841,11.206,9.126,15.656,18.102,-9.148,2.358,9.034,11.838,-5.242,6.695,18.231,17.356,-0.293,13.778,-0.598,3.621,11.51,3.168,6.219,6.815,6.637,5.845,-0.889,5.396,-10.204,1.461,4.958,14.995,13.332,-1.934,23.186,9.232,21.995,33.452,23.184,19.142,21.628,24.96,22.327,33.483,28.71,28.166,22.081,27.497,27.986,23.304,13.755,21.299,10.539,27.502,12.013,26.365,13.963,23.004,26.855,8.554,20.614,25.249,19.059,22.626,9.806,0.647,23.36,17.933,12.543,12.714,15.368,16.745,11.628,19.879,14.208,21.559,17.815,25.126,18.538,-1.361,14.702,15.521,11.831,18.167,1.384,20.062,13.764,4.595,3.076,13.658,18.867,17.394,18.442,16.435,15.877,8.168,10.044,-3.793,7.561,11.944,2.791,6.481,-3.316,8.298,17.617,-10.024,14.779,10.819,9.481,-5.813,11.847,17.289,7.654,-7.375,19.685,12.462,-0.906,16.401,16.401,7.932,3.947,1.143,14.648,-4.805,0.13,17.905,5.433,-2.133,18.568,13.606,9.072,0.626,6.49,3.562,13.134,5.068,4.596,6.431,6.86,7.591,14.142,-0.288,13.892,14.811,4.735,-0.41,-10.294,-11.811,7.163,13.817,1.76,5.198,6.419,10.736,4.15,1.029,-0.932,4.228,5.351,-2.603,0.858,5.923],[21.819,23.522,12.445,32.407,26.9,14.744,27.991,26.889,22.488,8.099,28.162,23.547,20.871,18.321,21.413,23.688,19.531,18.591,10.987,12.344,13.928,21.429,14.358,-1.184,14.146,19.489,17.422,1.963,17.404,15.985,4.096,-4.427,9.05,7.623,11.054,8.984,15.634,18.154,-8.97,2.203,9.294,11.964,-5.228,6.668,18.116,17.498,-0.339,13.655,-0.657,3.527,11.542,3.203,6.113,6.868,6.337,5.788,-0.97,5.322,-10.375,1.411,4.988,14.804,13.375,-1.659,23.335,8.882,22.519,33.41,22.873,19.746,21.407,25.153,22.324,33.551,28.65,28.524,22.029,27.271,28.024,23.268,14.393,20.767,10.766,27.579,12.466,27.378,13.684,23.205,26.926,8.557,20.114,25.177,18.921,22.284,9.707,0.27,23.995,17.587,12.585,12.821,15.514,16.948,11.515,20.2,14.19,21.407,17.778,24.91,18.622,-1.763,14.903,15.466,12.012,18.53,1.319,19.887,14.194,4.683,2.729,13.75,18.972,17.111,18.448,16.626,15.544,8.171,10.089,-3.481,7.262,12.094,2.641,6.24,-3.117,7.542,17.726,-9.964,15.223,10.592,9.244,-5.47,11.391,17.891,7.51,-7.289,19.541,12.653,-0.952,16.517,16.602,8.33,4.029,1.181,14.809,-4.649,0.39,17.797,5.784,-2.271,19.041,13.804,9.225,0.472,6.598,3.228,13.064,5.235,4.442,6.727,6.596,7.487,14.176,-0.012,13.653,14.915,4.305,0.035,-10.543,-11.968,7.107,13.39,2.154,5.291,6.206,11.023,4.012,0.693,-1.059,3.802,5.032,-2.668,0.872,5.665],[21.725,23.504,12.564,32.496,27.068,14.713,27.805,26.878,22.706,8.076,28.192,23.657,21.063,18.532,21.325,23.631,19.388,18.667,10.936,12.281,14.011,21.469,14.56,-1.238,14.34,19.607,17.386,1.968,17.263,15.734,3.906,-4.254,8.932,7.412,10.839,8.772,15.783,18.06,-8.826,2.151,9.59,11.958,-5.095,6.727,17.926,17.559,-0.245,13.591,-0.643,3.409,11.501,3.155,6.121,6.96,6.002,5.709,-0.826,5.255,-10.522,1.562,4.908,14.733,13.363,-1.365,23.422,8.087,22.049,34.06,22.965,20.131,21.688,24.983,22.387,33.07,28.24,29.102,21.772,27.147,27.823,22.898,14.25,20.476,10.771,27.971,12.164,27.83,13.905,23.423,26.732,8.575,20.451,25.483,19.141,22.266,9.92,0.214,24.53,17.526,12.855,13.351,15.483,17.184,12.162,20.349,14.004,21.208,17.909,24.711,18.603,-1.477,15.016,15.77,12.337,18.218,0.838,20.063,14.711,4.572,2.742,14.027,18.675,17.293,18.709,16.529,15.448,8.297,9.99,-3.103,7.296,12.32,2.744,5.867,-3.304,7.397,17.48,-9.878,15.172,10.725,9.358,-5.434,10.966,18.302,7.458,-7.046,19.382,12.427,-1.348,15.666,16.676,8.727,3.685,1.049,14.966,-4.487,0.084,17.827,5.705,-2.11,18.969,14.431,9.201,0.558,6.457,2.319,13.058,4.977,4.786,6.279,6.219,7.171,14.461,0.276,13.522,14.975,4.031,0.428,-10.724,-12.09,6.641,13.548,2.177,5.289,5.376,11.129,3.715,0.757,-1.144,3.251,5.241,-2.414,0.835,5.906],[21.679,23.567,12.464,32.531,27.377,14.563,27.685,26.789,22.816,7.934,28.145,23.886,21.283,18.715,21.335,23.567,19.456,18.546,11.05,12.133,14.157,21.534,14.93,-1.147,14.404,19.691,17.362,1.887,17.173,15.569,3.659,-4.205,8.867,7.22,10.724,8.563,15.836,17.962,-8.567,1.956,9.841,11.667,-4.876,6.794,17.744,17.442,-0.047,13.716,-0.663,3.244,11.524,3.041,5.985,7.022,5.85,5.633,-0.601,5.311,-10.698,1.707,4.746,14.896,13.352,-1.106,23.326,8.286,21.929,33.689,23.416,19.446,22.255,25.052,22.504,33.241,27.984,28.637,21.966,26.928,27.902,22.983,14.047,20.845,10.624,28.231,11.968,28.049,13.387,23.171,26.617,8.766,20.588,25.793,19.446,22.146,10.374,0.463,24.666,17.659,13.123,13.22,15.075,17.151,11.922,20.025,13.964,21.58,17.737,24.647,18.718,-1.093,14.348,15.988,12.247,17.967,1.197,20.319,14.662,4.587,2.772,13.997,18.704,17.676,18.634,16.56,15.506,8.173,9.546,-3.012,7.304,11.879,2.315,5.889,-3.343,7.611,17.164,-9.684,15.467,10.309,9.265,-5.528,11.232,18.511,7.763,-6.945,19.597,12.395,-2.238,15.385,16.627,9.481,3.529,0.995,14.651,-4.551,-0.366,18.043,5.454,-1.819,18.765,14.178,9.216,0.753,6.747,2.908,12.436,4.929,4.946,5.766,6.103,6.768,14.355,0.074,13.567,14.801,4.286,0.601,-10.591,-12.558,6.185,14.004,1.584,5.205,5.263,11.439,3.222,1.148,-0.818,3.242,5.087,-1.826,1.268,5.777],[21.728,23.567,12.136,32.438,27.748,14.316,27.571,26.685,22.68,7.841,28.002,24.048,21.504,18.76,21.496,23.563,19.577,18.402,11.278,11.994,14.206,21.52,15.27,-0.97,14.303,19.76,17.391,1.924,17.123,15.389,3.422,-4.25,8.774,7.18,10.622,8.409,15.813,17.937,-8.305,1.694,10.141,11.316,-4.62,6.725,17.576,17.312,0.117,13.827,-0.832,3.246,11.454,2.973,5.811,7.008,5.782,5.652,-0.215,5.404,-11.016,1.718,4.576,15.102,13.261,-0.913,23.313,8.068,22.529,33.582,23.386,18.989,22.51,24.82,22.328,33.501,28.442,28.245,21.998,26.61,27.663,23.003,14.192,20.546,10.482,28.518,11.922,28.335,13.136,23.428,26.705,8.682,20.69,25.847,19.878,22.254,10.814,0.616,23.742,17.694,13.648,13.275,15.402,17.301,11.392,20.299,13.777,22.331,17.443,24.816,18.699,-1.441,14.345,15.919,11.81,17.956,1.314,20.675,15.012,4.568,2.722,13.736,18.832,17.898,18.812,16.659,15.148,7.971,9.545,-3.098,6.889,11.851,2.135,5.563,-3.046,7.06,17.326,-9.466,15.472,9.934,8.971,-5.181,11.516,18.69,8.12,-6.623,19.752,11.992,-2.68,15.54,16.648,10.189,3.395,0.944,14.12,-4.636,-0.586,18.315,5.834,-1.775,18.714,14.38,9.369,0.684,7.718,2.816,12.143,5.014,4.494,6.451,6.282,6.887,14.358,0.351,13.798,14.765,4.223,0.76,-10.196,-12.435,6.049,14.036,1.717,5.105,5.69,12.218,3.362,0.97,-0.339,3.384,4.595,-1.404,1.616,5.775],[21.864,23.414,11.852,32.39,28.167,14.226,27.538,26.446,22.53,7.697,27.908,24.05,21.647,18.728,21.546,23.61,19.565,18.381,11.366,11.875,14.091,21.562,15.532,-1.025,14.305,19.824,17.566,2.041,17.068,15.088,3.301,-4.251,8.638,7.157,10.568,8.321,15.732,17.995,-8.04,1.424,10.522,11.009,-4.312,6.574,17.548,17.34,0.104,13.724,-1.031,3.356,11.316,3.045,5.756,6.98,5.645,5.728,0.154,5.576,-11.202,1.659,4.537,15.225,13.042,-0.716,23.501,8.216,22.206,33.769,22.955,18.97,22.224,24.58,22.119,33.263,28.664,28.533,21.803,26.998,27.775,23.335,13.975,20.991,9.968,28.401,11.894,28.518,13.282,23.853,26.67,8.467,21.013,25.833,19.629,22.677,10.813,0.571,23.051,17.669,13.787,12.978,15.554,17.277,12.495,20.778,13.749,22.193,17.769,24.675,18.761,-1.429,14.404,15.591,11.322,18.386,1.575,20.842,15.484,4.437,2.718,14.603,19.009,17.749,18.77,16.745,15.579,7.371,9.474,-3.351,6.918,11.412,2.095,5.661,-3.138,6.932,17.363,-9.462,14.963,9.998,8.911,-5.174,11.56,18.795,8.196,-6.452,19.781,11.73,-2.721,15.765,16.863,10.664,2.949,0.64,14.518,-4.355,-1.223,18.284,6.031,-1.729,18.898,14.536,9.939,0.755,8.338,2.385,11.978,4.718,4.266,6.608,6.217,6.775,14.458,0.3,13.824,14.724,4.118,1.096,-10.195,-12.622,6.298,13.523,1.82,5.422,6.182,12.129,4.077,0.756,-0.019,3.488,4.717,-1.364,2.084,6.694],[21.931,23.306,11.775,32.476,28.437,14.32,27.618,26.417,22.396,7.583,28.202,24.007,21.542,18.641,21.623,23.59,19.629,18.523,11.49,11.85,14.04,21.614,15.696,-1.113,14.377,19.753,17.835,2.134,16.945,14.862,3.339,-4.232,8.607,7.088,10.519,8.203,15.549,17.975,-7.898,1.151,10.918,10.828,-3.988,6.47,17.599,17.416,0.067,13.551,-1.184,3.285,11.16,3.069,5.847,7.007,5.46,5.823,0.137,5.833,-11.253,1.661,4.661,15.29,12.99,-0.479,23.372,8.072,21.839,33.983,22.907,19.397,22.657,24.546,22.808,32.84,28.107,29.036,21.626,26.843,27.671,23.538,13.641,20.63,9.838,29.009,11.66,28.866,13.262,23.365,26.605,8.441,21.21,25.901,19.319,22.384,10.458,0.077,23.674,17.81,13.802,12.838,15.387,17.212,12.413,20.5,13.786,21.39,18.108,24.684,18.631,-1.179,13.716,15.557,11.244,18.227,1.52,20.594,15.96,4.012,2.774,14.002,19.319,17.724,18.986,17.091,15.43,7.723,9.498,-2.965,6.994,11.138,1.846,5.777,-3.35,7.378,17.218,-9.462,14.841,10.112,8.779,-5.113,10.72,18.978,8.072,-6.558,19.466,11.518,-2.64,15.885,17.074,10.988,2.761,0.114,14.747,-3.526,-2.0,18.351,5.738,-1.702,18.806,14.503,10.271,0.989,8.268,2.754,12.15,4.568,4.7,6.282,6.294,6.497,14.669,0.205,13.675,14.663,4.499,1.171,-10.363,-12.859,6.349,12.996,1.75,5.441,5.351,11.566,3.762,0.934,-0.017,3.38,5.026,-1.493,1.824,6.594],[22.014,23.287,11.831,32.662,28.55,14.528,27.641,26.521,22.418,7.569,28.445,23.988,21.455,18.505,21.6,23.548,19.635,18.751,11.537,11.815,13.907,21.393,15.863,-1.091,14.395,19.573,18.098,2.186,16.825,14.565,3.317,-4.229,8.754,7.054,10.432,8.208,15.305,17.867,-7.978,0.948,11.189,10.646,-3.708,6.463,17.703,17.372,0.078,13.505,-1.377,3.131,11.098,2.908,5.874,7.086,5.377,5.888,0.033,5.878,-11.252,1.812,4.679,15.25,12.91,-0.292,23.3,7.4,22.237,33.636,23.334,19.549,22.389,24.702,22.934,33.553,27.929,29.028,21.632,26.368,28.002,23.001,14.203,21.056,10.247,29.356,11.397,29.388,13.224,23.151,26.836,8.901,20.868,25.852,19.691,22.431,10.345,0.426,24.238,17.775,14.128,13.055,15.412,17.516,11.86,20.477,13.663,21.65,17.779,24.794,18.664,-1.401,13.65,15.547,11.096,18.046,1.459,20.745,15.581,4.406,2.974,13.522,19.266,17.97,18.831,17.268,14.788,8.009,9.301,-3.066,6.942,11.52,2.125,5.494,-3.462,7.064,16.849,-9.403,15.504,9.966,8.741,-4.345,10.405,19.119,7.813,-6.44,19.205,11.85,-2.174,15.744,16.854,11.109,2.493,0.264,14.306,-2.832,-2.554,18.238,5.37,-1.806,18.936,14.12,10.261,0.948,7.784,2.49,11.925,4.836,4.61,6.361,6.352,6.507,14.825,0.399,13.711,14.606,5.051,1.34,-10.716,-12.81,6.504,13.378,1.742,5.324,5.066,11.8,3.051,1.156,-0.139,3.399,4.406,-1.219,1.769,5.814],[21.971,23.413,11.922,33.025,28.612,14.916,27.655,26.557,22.686,7.559,28.563,24.001,21.373,18.415,21.584,23.455,19.636,19.049,11.464,11.665,13.815,21.275,15.903,-0.98,14.39,19.378,18.258,2.227,16.707,14.2,3.303,-4.187,8.916,6.915,10.406,8.28,15.041,17.77,-8.268,0.888,11.313,10.52,-3.452,6.398,17.818,17.326,0.114,13.378,-1.587,2.934,11.184,2.644,5.892,7.17,5.257,6.02,0.075,5.75,-11.123,2.064,4.564,15.129,12.868,-0.066,23.291,8.031,22.164,33.391,23.026,19.186,22.024,24.824,22.341,33.933,28.664,28.973,21.711,26.669,28.169,23.54,14.417,20.967,10.267,28.803,11.482,29.118,13.391,23.461,26.624,8.999,20.538,25.713,19.66,22.675,10.621,0.645,24.328,17.788,14.504,13.332,15.388,17.745,12.197,20.825,13.493,21.696,17.28,24.904,18.501,-1.461,13.561,15.819,10.952,18.351,1.39,20.546,15.389,4.536,2.858,13.815,19.501,17.992,18.258,17.308,14.472,7.806,9.631,-3.297,7.194,12.213,2.067,5.804,-2.932,7.027,16.389,-9.408,15.044,9.996,9.028,-3.994,10.7,18.823,7.943,-6.47,18.918,11.635,-2.158,15.646,16.689,10.97,2.717,0.407,14.1,-2.294,-3.141,18.251,5.809,-1.71,18.758,14.091,10.435,0.956,6.665,2.136,11.391,4.453,4.288,6.263,6.35,6.392,14.635,0.641,13.546,14.297,4.983,1.551,-11.51,-12.653,6.495,13.779,1.375,5.478,5.534,11.465,3.173,1.119,0.205,3.568,4.299,-0.918,1.817,5.823],[21.892,23.525,11.792,33.289,28.561,15.232,27.837,26.611,22.881,7.607,28.615,23.959,21.304,18.344,21.506,23.444,19.815,19.227,11.439,11.396,13.907,21.22,15.835,-0.772,14.443,19.222,18.295,2.238,16.531,13.756,3.261,-4.048,9.084,6.896,10.688,8.416,14.727,17.623,-8.503,1.037,11.357,10.539,-3.22,6.419,17.86,17.283,0.28,13.158,-1.916,2.701,11.294,2.539,5.816,7.034,5.124,6.147,0.211,5.565,-11.044,2.161,4.528,14.949,12.912,0.216,23.457,7.969,22.366,34.233,22.975,18.815,22.422,24.673,22.811,33.945,28.862,29.372,21.984,27.047,27.562,23.209,14.454,20.37,9.921,29.135,11.489,28.445,13.999,23.914,27.028,8.746,20.616,25.721,19.453,22.252,11.13,0.21,23.613,17.9,14.176,13.097,15.415,18.166,11.888,20.768,13.309,21.658,17.266,24.782,18.194,-1.02,13.108,15.975,11.068,18.526,1.476,20.123,15.558,4.123,2.792,13.831,19.556,17.635,18.549,17.478,14.715,7.738,9.923,-3.38,7.166,11.899,2.176,5.485,-2.588,7.311,16.096,-9.788,13.959,10.354,9.2,-4.032,10.575,18.539,7.981,-6.86,18.722,11.197,-2.282,15.656,16.985,10.87,2.685,0.025,14.107,-1.652,-3.534,18.602,6.012,-1.55,18.539,14.269,10.44,0.965,6.492,1.713,11.644,4.632,3.956,5.965,6.397,6.617,14.495,0.822,13.343,14.074,4.594,1.869,-11.528,-12.541,6.664,13.606,1.647,5.689,5.791,11.047,3.52,1.366,0.267,3.92,4.713,-0.8,1.933,6.052],[21.928,23.6,11.352,33.401,28.433,15.342,28.134,26.581,22.939,7.614,28.596,23.882,21.452,18.13,21.304,23.357,19.996,19.252,11.494,11.244,14.001,21.181,15.811,-0.589,14.364,19.211,18.204,2.248,16.316,13.453,3.334,-3.916,9.06,6.932,10.992,8.461,14.348,17.442,-8.562,1.055,11.258,10.531,-2.994,6.556,17.829,17.209,0.498,13.127,-2.334,2.706,11.344,2.644,5.817,6.828,5.211,6.258,0.359,5.487,-10.973,2.147,4.698,14.897,12.81,0.542,23.47,7.859,22.894,34.673,23.43,19.033,22.114,24.788,22.957,33.986,28.625,29.515,21.862,27.09,27.642,22.936,14.392,20.924,9.604,29.335,11.347,28.542,14.371,23.91,27.364,8.575,21.084,25.627,19.439,21.993,11.365,0.447,22.794,18.034,14.053,13.203,15.549,17.793,12.265,20.981,13.16,21.534,17.613,24.488,18.304,-1.091,12.772,16.061,10.682,18.644,1.792,20.464,15.422,3.454,2.967,13.874,19.373,17.225,19.073,17.617,14.33,7.974,9.59,-3.042,7.317,11.565,2.187,5.239,-3.059,7.051,16.077,-10.046,14.318,10.456,9.166,-3.68,10.362,18.286,8.091,-6.993,18.858,11.627,-2.832,15.701,16.977,11.048,2.701,-0.08,13.905,-1.481,-3.647,18.705,5.885,-1.277,18.676,13.861,10.606,1.349,6.95,1.858,12.412,4.855,4.178,5.962,6.553,6.571,14.393,0.724,13.359,14.438,4.804,1.995,-10.668,-12.727,6.334,13.305,1.498,5.276,5.433,10.845,3.339,1.516,0.003,3.945,4.424,-0.831,2.231,5.752],[22.114,23.657,11.031,33.456,28.365,15.366,28.361,26.577,22.975,7.464,28.655,23.769,21.668,17.886,21.163,23.147,20.24,19.225,11.692,11.177,13.992,21.239,15.766,-0.576,14.307,19.348,18.109,2.353,16.127,13.387,3.366,-3.862,8.929,6.782,11.141,8.349,14.1,17.324,-8.607,0.92,11.095,10.599,-2.788,6.719,17.808,17.242,0.594,13.192,-2.739,2.913,11.395,2.947,5.905,6.654,5.336,6.354,0.486,5.456,-10.772,2.156,4.857,14.98,12.781,0.565,23.342,7.947,22.346,34.168,23.548,19.134,22.036,24.764,22.437,33.878,29.096,29.344,21.976,26.723,28.115,23.711,14.742,20.827,9.224,28.912,11.349,29.286,13.851,23.259,27.335,8.867,21.28,25.597,19.011,22.117,11.372,0.676,22.26,18.346,14.083,13.175,15.551,17.84,12.326,21.234,12.919,21.482,17.328,24.458,18.48,-1.162,12.217,15.64,9.973,18.553,1.501,20.799,15.5,4.45,3.256,13.97,19.48,16.91,18.343,17.086,13.479,7.978,9.361,-2.427,7.078,11.591,2.355,5.412,-2.926,6.724,16.161,-9.869,14.67,10.164,9.271,-3.627,10.513,17.981,8.142,-6.956,18.89,11.536,-3.823,15.726,16.49,11.095,2.68,0.051,14.324,-1.451,-3.674,18.288,5.859,-1.009,18.486,13.759,10.5,1.625,6.59,2.5,12.134,4.432,4.692,6.228,6.659,6.55,14.224,0.6,13.474,14.522,5.026,2.131,-10.149,-12.412,6.305,12.635,1.294,4.889,5.681,10.911,3.332,1.398,0.336,4.024,4.476,-0.459,2.254,5.745],[22.278,23.806,10.984,33.444,28.551,15.31,28.425,26.598,22.94,7.323,28.764,23.708,21.764,17.7,21.035,22.877,20.474,19.172,11.937,10.997,13.921,21.369,15.671,-0.688,14.259,19.303,17.86,2.492,15.877,13.273,3.36,-3.863,8.876,6.545,11.082,8.285,13.998,17.227,-8.569,0.965,10.919,10.722,-2.745,6.792,17.733,17.228,0.553,13.349,-3.046,3.109,11.286,3.202,6.016,6.465,5.316,6.421,0.431,5.449,-10.554,2.341,4.951,15.093,12.816,0.433,23.805,7.767,22.375,33.986,22.954,18.5,22.784,24.733,23.088,34.426,29.287,29.581,22.089,26.569,28.422,23.794,15.151,20.432,9.325,28.887,11.036,29.022,13.621,23.011,27.316,8.915,21.194,25.609,18.995,21.752,11.269,0.799,22.332,18.872,13.993,12.772,15.527,17.951,12.026,21.878,12.844,21.875,17.233,24.487,18.847,-1.082,12.294,15.696,9.982,18.355,1.513,20.631,15.483,4.841,3.59,13.744,19.387,16.621,18.624,17.003,13.296,7.672,9.716,-2.716,7.05,12.37,2.498,5.045,-2.853,6.789,16.247,-9.91,13.951,10.023,9.514,-3.385,10.613,17.562,8.343,-6.962,18.698,11.439,-3.748,15.497,16.755,10.84,2.267,-0.267,14.374,-1.299,-4.03,18.201,6.221,-1.095,18.542,14.016,9.872,1.526,6.458,2.068,12.108,4.73,4.952,5.803,6.838,6.658,14.362,0.881,13.671,14.345,4.853,1.733,-9.851,-12.177,6.94,12.694,1.975,4.977,6.193,11.264,3.76,1.527,1.144,4.479,4.881,-0.446,2.002,6.229],[22.341,24.124,11.002,33.512,28.812,15.317,28.337,26.575,22.867,7.473,28.897,23.755,21.806,17.609,20.891,22.773,20.512,19.086,12.118,10.78,13.791,21.484,15.575,-0.747,14.218,19.228,17.667,2.615,15.681,13.141,3.343,-3.993,9.034,6.527,11.101,8.28,13.904,17.132,-8.502,0.993,10.712,10.845,-2.779,6.866,17.546,17.098,0.459,13.518,-3.062,3.012,11.111,3.126,6.267,6.324,5.153,6.472,0.444,5.394,-10.405,2.654,5.059,15.188,12.759,0.562,23.907,7.664,22.816,34.417,23.173,17.74,22.182,24.8,23.249,34.881,28.843,29.412,22.31,27.13,28.357,23.475,14.605,20.811,9.338,28.935,10.734,28.4,14.04,23.502,27.275,8.633,21.118,25.587,19.204,21.411,11.197,0.864,22.076,18.752,13.966,13.01,15.168,17.714,12.2,22.128,12.756,22.002,17.094,24.297,18.302,-1.454,12.509,15.639,10.292,18.233,2.228,20.567,15.147,4.485,3.347,13.631,19.148,16.468,18.606,17.235,14.049,7.557,10.136,-3.318,7.418,12.643,2.126,5.208,-2.784,6.672,15.919,-10.05,13.761,10.266,9.654,-3.479,10.922,16.963,8.28,-6.912,18.586,11.664,-2.958,15.647,17.079,10.331,2.44,-0.409,14.256,-1.297,-4.468,18.449,6.428,-1.188,18.563,14.232,10.052,1.506,6.947,2.112,11.938,5.41,4.634,5.767,6.949,6.387,14.949,1.059,13.54,14.444,4.981,1.684,-9.977,-12.14,7.495,13.361,1.875,5.093,5.726,11.41,3.647,2.12,0.658,4.992,5.075,-0.848,2.328,6.213],[22.248,24.328,10.92,33.721,28.872,15.485,28.138,26.637,22.858,7.542,28.88,23.864,21.672,17.622,20.778,22.77,20.384,19.055,12.23,10.761,13.564,21.512,15.468,-0.735,14.226,19.152,17.654,2.711,15.592,13.083,3.294,-4.222,9.371,6.67,11.212,8.341,14.018,17.021,-8.501,1.069,10.52,11.104,-2.86,6.975,17.324,17.001,0.32,13.601,-2.97,2.848,10.986,2.901,6.494,6.376,4.949,6.583,0.619,5.323,-10.307,2.96,5.251,15.26,12.774,0.681,24.17,7.841,22.697,34.08,23.446,17.096,22.171,24.718,22.622,34.73,28.72,29.651,22.522,27.47,27.952,23.61,14.05,20.531,9.359,29.603,10.606,29.084,14.654,23.659,27.543,8.637,21.31,25.651,19.19,21.736,11.33,0.192,21.659,18.512,13.757,13.095,14.964,17.674,12.488,21.534,12.7,22.114,16.522,24.472,18.12,-1.444,12.926,15.696,9.836,18.283,2.107,20.792,15.038,3.797,3.162,13.709,19.106,16.414,18.237,16.733,14.581,7.802,10.262,-3.412,7.593,12.99,2.481,4.993,-2.787,7.07,15.68,-9.836,13.345,10.165,9.929,-3.692,10.827,16.373,8.468,-6.939,18.501,11.582,-3.204,15.705,16.71,10.322,2.401,-0.444,14.187,-1.401,-4.083,18.5,6.297,-1.272,17.996,14.752,10.131,1.159,6.925,2.182,11.098,5.492,4.278,6.026,6.99,6.556,14.819,1.294,13.597,14.426,5.356,2.29,-10.125,-11.96,7.872,12.939,1.327,5.15,5.274,11.194,3.669,2.33,-0.141,5.318,4.464,-0.439,2.492,5.561],[22.092,24.379,10.833,33.835,28.993,15.679,28.059,26.653,22.778,7.479,28.757,23.937,21.711,17.664,20.62,22.874,20.22,19.095,12.317,10.789,13.347,21.53,15.247,-0.792,14.278,19.095,17.556,2.705,15.578,13.131,3.26,-4.314,9.658,6.793,11.503,8.403,14.198,16.957,-8.533,1.242,10.412,11.389,-2.847,7.058,17.211,16.973,0.078,13.764,-3.002,2.816,10.774,2.726,6.524,6.566,4.892,6.887,0.598,5.324,-10.357,3.114,5.446,15.225,12.72,0.715,24.36,8.129,22.512,33.802,23.216,16.499,22.463,24.694,22.966,34.803,28.791,29.835,22.569,27.007,28.038,23.531,14.835,20.241,9.322,30.067,10.613,28.754,14.807,23.366,27.507,8.846,21.117,25.918,19.471,21.726,11.876,-0.139,21.089,18.357,13.534,12.894,15.133,17.661,12.074,20.91,12.482,22.386,16.658,24.193,18.804,-1.501,12.791,15.787,9.512,18.497,1.527,20.632,15.34,3.952,3.431,13.412,19.295,16.333,18.674,17.009,14.032,7.778,9.975,-2.976,7.807,12.63,2.522,5.238,-3.462,7.221,15.452,-9.893,13.074,10.174,9.953,-4.032,10.503,15.881,8.741,-6.836,18.219,11.733,-3.983,15.701,16.287,10.957,2.016,-0.267,14.314,-1.897,-3.515,17.972,6.601,-1.567,18.127,14.236,9.824,0.849,6.122,1.896,11.119,5.284,4.154,5.658,7.369,6.066,14.551,1.6,13.76,14.319,5.333,2.475,-9.867,-11.741,8.213,12.4,1.651,5.101,5.477,11.319,3.518,2.415,0.425,5.191,3.809,0.092,2.382,5.708],[22.133,24.404,10.824,33.941,29.133,15.829,28.141,26.509,22.616,7.509,28.645,23.871,21.95,17.677,20.402,22.749,20.072,19.096,12.333,10.623,13.314,21.598,15.005,-1.014,14.206,19.222,17.48,2.632,15.664,13.107,3.275,-4.316,9.825,6.819,11.821,8.487,14.379,16.918,-8.583,1.36,10.352,11.504,-2.893,7.184,17.145,17.029,-0.292,13.879,-3.176,3.053,10.668,2.672,6.427,6.62,4.819,7.305,0.547,5.362,-10.481,3.127,5.589,15.189,12.568,0.778,23.867,7.738,22.151,34.461,22.98,16.635,22.459,24.777,23.086,34.829,28.585,29.695,22.723,26.941,28.388,23.313,15.113,20.532,9.157,29.235,10.747,28.514,14.604,23.293,27.23,8.499,21.151,25.621,19.252,21.445,11.765,0.419,21.245,18.423,13.294,12.877,14.746,17.404,11.905,21.515,12.42,21.899,17.082,23.801,18.49,-1.582,12.062,15.613,9.661,18.7,1.527,20.568,15.025,4.567,3.444,13.247,19.146,16.132,18.371,17.121,13.915,7.606,10.014,-3.113,8.123,12.759,2.843,5.743,-3.412,6.796,15.378,-10.188,13.153,10.425,10.094,-3.927,10.963,15.711,9.082,-7.101,18.016,12.066,-3.887,15.74,16.638,11.183,2.453,0.015,14.838,-2.598,-3.258,17.461,6.65,-1.978,18.039,13.968,10.351,0.615,6.266,2.076,11.452,5.219,3.789,6.116,7.464,5.493,14.813,1.451,13.682,14.352,5.754,2.076,-9.582,-11.612,8.216,12.564,1.783,5.693,6.237,11.199,3.395,2.549,0.926,5.035,3.708,-0.112,2.262,6.06],[22.331,24.421,10.902,34.148,29.114,15.875,28.22,26.395,22.42,7.395,28.665,23.812,22.038,17.619,20.294,22.497,20.289,18.927,12.203,10.664,13.453,21.681,14.842,-1.193,13.972,19.2,17.323,2.615,15.766,13.019,3.387,-4.332,9.91,6.781,12.086,8.589,14.507,16.893,-8.722,1.563,10.439,11.493,-3.042,7.413,17.107,17.117,-0.639,13.94,-3.321,3.402,10.638,2.593,6.351,6.59,4.566,7.677,0.389,5.326,-10.477,3.142,5.71,15.275,12.537,0.793,23.679,8.207,22.473,34.093,23.222,16.696,22.544,24.591,22.94,34.776,28.785,29.861,22.923,27.154,28.212,23.453,14.888,19.907,9.205,28.883,10.744,28.815,14.75,23.199,27.671,8.313,21.65,25.504,19.358,20.882,11.732,0.311,21.21,18.668,13.142,12.79,14.855,17.524,12.211,21.638,12.546,21.672,17.037,23.982,18.321,-1.937,11.871,15.131,9.427,18.322,1.598,20.551,14.61,4.476,3.333,13.377,19.069,15.799,18.292,16.65,13.93,8.339,10.387,-3.434,8.185,12.442,2.793,5.109,-2.913,7.075,15.681,-10.116,13.954,10.237,10.195,-4.039,11.343,15.598,9.148,-7.272,17.893,11.546,-3.109,15.944,16.684,10.618,2.614,-0.154,15.17,-3.01,-3.504,17.567,6.568,-2.232,18.043,14.677,10.332,0.294,7.08,2.776,11.526,5.152,3.797,5.897,7.521,6.189,15.216,1.351,13.735,14.116,6.058,1.863,-10.306,-11.656,8.414,12.722,1.83,5.175,6.498,10.994,3.852,2.725,0.532,5.065,3.682,-0.697,2.243,6.272],[22.573,24.473,10.92,34.216,28.932,15.944,28.382,26.389,22.398,7.233,28.714,23.823,21.928,17.612,20.057,22.277,20.654,18.652,12.059,10.893,13.554,21.693,14.765,-1.317,13.601,19.017,17.195,2.601,15.713,12.972,3.348,-4.388,9.873,6.752,12.049,8.683,14.687,17.041,-8.745,1.818,10.548,11.494,-3.38,7.7,17.078,17.162,-0.838,14.066,-3.349,3.532,10.636,2.562,6.413,6.578,4.388,7.97,0.196,5.159,-10.543,3.277,5.952,15.442,12.582,0.592,23.705,7.769,22.579,34.011,23.001,17.011,22.535,24.516,22.967,34.96,28.962,29.742,23.089,26.842,28.064,23.954,14.686,19.775,9.204,29.697,10.767,28.982,15.446,23.145,27.959,8.615,21.47,25.715,19.501,21.127,12.063,-0.056,21.321,18.936,13.167,12.43,15.37,17.243,11.886,21.593,12.594,22.188,17.139,24.08,18.675,-2.08,12.343,15.008,9.503,17.817,1.211,20.516,14.46,4.598,3.457,13.446,18.963,16.232,18.415,16.556,13.752,8.396,10.55,-3.491,8.174,12.499,2.253,5.297,-3.17,6.966,15.644,-10.145,14.748,10.645,10.384,-4.315,10.631,15.846,9.262,-7.295,17.374,11.705,-3.297,16.292,16.184,10.112,2.608,0.002,15.008,-2.948,-3.554,18.173,6.744,-2.477,18.16,14.928,9.869,-0.192,7.222,2.991,11.163,5.238,3.88,5.432,7.793,6.087,15.037,1.782,13.873,13.894,6.238,2.123,-10.476,-11.753,8.395,13.243,2.0,4.869,6.223,11.386,3.675,2.87,0.155,5.381,4.002,-0.573,1.969,6.093],[22.754,24.474,10.959,34.203,28.748,16.113,28.635,26.465,22.541,7.099,28.695,23.807,21.771,17.755,19.916,22.21,20.905,18.256,11.943,10.928,13.68,21.621,14.745,-1.386,13.264,18.922,17.249,2.508,15.748,12.981,3.188,-4.545,9.691,6.843,11.787,8.788,14.978,17.251,-8.591,2.105,10.549,11.533,-3.68,7.975,17.099,17.101,-0.974,14.206,-3.301,3.326,10.656,2.503,6.665,6.591,4.363,8.162,0.059,5.025,-10.666,3.492,6.258,15.557,12.711,0.303,23.685,7.21,22.16,34.626,22.891,17.849,22.306,24.727,23.235,35.677,28.725,29.577,22.866,26.785,28.078,24.27,15.019,20.262,9.445,29.757,10.39,28.431,15.804,23.191,27.837,8.442,21.517,25.39,19.455,20.928,12.177,-0.153,20.958,19.04,13.146,11.962,14.95,16.937,11.814,21.921,12.749,22.314,16.952,23.924,18.332,-2.012,12.527,14.934,10.199,17.454,1.148,20.676,14.421,4.69,3.337,13.232,18.997,16.486,18.13,16.665,13.824,7.69,10.292,-3.601,7.886,12.994,2.61,5.494,-3.348,6.372,15.573,-10.186,14.906,10.547,9.929,-4.705,10.971,16.205,9.263,-7.111,17.589,12.099,-4.223,16.609,16.395,10.218,2.81,0.328,14.576,-3.402,-3.328,18.305,6.985,-2.605,17.75,14.712,10.208,-0.479,7.406,2.385,10.69,5.601,4.032,6.077,7.967,5.816,14.758,1.855,14.042,13.906,6.536,2.164,-9.83,-12.27,8.151,13.23,2.129,5.059,6.033,11.813,2.865,2.746,0.005,5.699,3.696,-0.41,1.866,5.733],[22.824,24.372,10.941,34.482,28.554,16.461,28.791,26.496,22.65,6.928,28.564,23.703,21.711,18.056,19.974,22.207,21.033,17.894,11.98,10.995,13.861,21.533,14.777,-1.326,13.0,18.877,17.276,2.369,15.922,13.059,3.101,-4.857,9.431,6.869,11.426,8.689,15.355,17.347,-8.392,2.242,10.44,11.722,-3.917,8.013,17.208,16.869,-1.064,14.321,-3.238,3.107,10.586,2.329,6.95,6.626,4.358,8.254,0.066,5.016,-10.73,3.62,6.413,15.473,12.845,0.099,23.9,7.82,22.483,34.323,23.015,18.153,21.941,24.697,23.243,35.32,28.833,29.759,22.704,27.014,28.301,24.084,15.496,20.078,9.428,29.136,10.343,27.96,15.181,23.255,27.809,7.833,21.49,25.405,20.04,20.757,11.547,-0.01,20.85,19.437,13.046,12.371,14.901,16.321,12.264,22.33,12.929,21.553,16.7,23.519,18.049,-2.178,12.409,14.732,10.714,17.478,1.249,20.507,14.804,4.528,3.207,13.021,19.034,16.666,18.13,16.845,14.021,8.146,10.213,-3.66,7.838,12.595,2.6,5.43,-3.467,6.912,16.04,-9.873,14.639,10.552,9.987,-4.747,10.959,16.275,9.749,-7.048,18.367,11.688,-4.713,16.89,16.412,10.558,2.948,0.895,14.182,-4.193,-2.964,17.552,7.306,-2.971,17.686,14.6,10.162,-0.649,7.862,2.696,10.471,5.519,4.098,6.035,8.27,5.876,14.838,2.172,14.145,14.341,6.729,1.741,-10.143,-12.149,8.241,13.063,1.543,5.203,6.273,11.728,2.614,2.896,-0.137,5.951,3.837,-1.167,1.944,6.002],[22.779,24.216,10.882,34.807,28.252,16.706,28.631,26.518,22.587,6.87,28.425,23.584,21.742,18.421,20.024,22.376,21.126,17.742,12.18,11.146,13.959,21.435,14.776,-1.334,12.882,18.885,17.258,2.333,16.077,13.239,3.038,-5.026,9.301,6.901,11.089,8.604,15.73,17.43,-8.254,2.347,10.24,11.876,-4.216,7.993,17.314,16.613,-1.157,14.274,-3.187,3.147,10.484,2.087,7.004,6.775,4.439,8.233,0.18,5.168,-10.695,3.74,6.438,15.275,12.973,-0.081,23.835,7.589,22.942,34.132,23.184,17.735,22.417,24.733,23.421,34.953,29.096,29.663,22.522,26.735,28.332,23.985,16.171,19.753,9.119,28.791,10.845,28.232,15.216,22.992,28.451,8.047,21.544,25.303,20.482,21.138,11.579,0.007,20.587,19.479,12.978,12.064,15.148,16.026,12.216,22.348,13.139,21.452,17.283,22.92,18.16,-1.645,12.46,14.524,10.644,17.791,1.111,20.45,15.032,4.494,2.923,13.276,19.059,16.706,18.288,17.035,13.87,8.321,10.207,-4.092,7.757,11.944,2.128,5.284,-3.827,6.834,16.11,-9.842,14.547,10.38,9.441,-4.781,11.306,16.249,9.688,-6.863,18.318,11.932,-4.636,16.992,15.744,10.645,2.96,0.937,14.883,-4.273,-2.561,17.321,6.992,-2.959,17.869,14.959,9.561,-0.483,7.785,2.691,10.682,5.543,3.559,5.643,8.264,6.172,14.743,2.264,14.097,14.471,6.904,1.196,-10.487,-12.243,8.428,13.37,1.453,5.254,6.606,11.34,2.966,2.967,0.088,6.28,3.501,-1.649,1.957,6.036],[22.942,23.981,10.959,34.977,28.02,16.756,28.386,26.419,22.482,6.845,28.337,23.564,21.907,18.469,20.085,22.419,21.28,17.967,12.41,11.326,14.091,21.4,14.639,-1.426,12.815,18.91,17.44,2.284,16.259,13.439,2.964,-4.972,9.316,6.775,10.75,8.599,15.983,17.397,-8.25,2.413,9.96,11.921,-4.551,7.875,17.438,16.485,-1.152,14.247,-3.165,3.378,10.361,2.004,6.969,6.873,4.538,8.213,0.278,5.29,-10.792,3.82,6.456,15.007,13.001,-0.241,23.311,7.19,22.546,34.857,22.987,17.867,22.471,24.69,23.474,35.089,28.808,29.603,22.38,26.485,28.309,24.279,15.883,19.769,9.201,28.281,11.003,28.52,15.709,23.026,27.991,8.247,21.599,25.167,20.401,21.251,12.007,0.118,20.744,19.443,12.892,11.727,15.375,16.445,12.414,22.176,13.196,22.093,17.385,22.733,18.175,-2.306,12.648,14.543,10.259,17.682,1.024,20.72,14.785,4.149,3.097,13.659,18.973,16.815,18.265,16.892,13.558,7.808,10.349,-4.401,7.654,11.218,2.542,5.224,-3.611,6.81,15.945,-9.916,14.512,10.436,8.958,-5.012,11.49,16.136,9.298,-6.917,17.879,12.812,-3.84,17.111,15.691,10.639,2.935,0.574,15.432,-3.713,-2.333,17.8,6.616,-2.833,17.548,14.693,9.224,-0.26,7.633,2.818,10.787,5.523,3.142,5.944,7.951,6.168,14.697,2.611,13.59,14.414,6.854,0.926,-10.344,-12.051,8.144,14.078,1.873,5.288,6.586,11.575,2.999,2.62,0.181,6.69,4.051,-1.564,2.114,6.046],[23.133,23.737,11.162,34.996,27.97,16.701,28.156,26.305,22.431,6.887,28.332,23.634,22.052,18.324,20.001,22.315,21.287,18.256,12.702,11.434,14.39,21.548,14.515,-1.55,12.753,18.884,17.727,2.295,16.487,13.493,2.831,-4.928,9.313,6.708,10.388,8.574,16.147,17.154,-8.396,2.266,9.673,11.881,-4.739,7.67,17.658,16.543,-0.863,14.146,-3.042,3.561,10.283,1.952,6.88,6.806,4.719,8.088,0.324,5.396,-10.802,3.782,6.51,14.7,13.022,-0.327,23.131,7.597,22.022,35.848,22.566,18.469,22.123,24.45,23.436,35.897,28.416,29.72,22.177,26.702,28.107,24.386,15.165,20.438,9.607,27.491,10.719,27.824,16.026,22.987,27.369,7.719,21.987,25.449,20.08,21.261,11.945,-0.341,20.607,19.533,12.663,12.026,16.112,16.772,12.728,22.243,13.198,22.292,17.352,23.063,18.302,-2.637,12.738,14.129,10.248,17.742,1.123,20.883,14.375,4.207,3.214,13.737,19.484,16.785,18.313,16.765,14.078,8.116,10.022,-3.994,7.556,11.112,2.924,5.642,-3.315,6.62,16.131,-9.815,14.591,10.256,8.613,-5.311,11.433,16.083,9.187,-7.041,17.951,12.636,-2.769,17.179,16.298,10.095,3.241,0.451,15.472,-3.969,-2.755,17.962,6.285,-2.63,17.279,15.101,9.661,-0.276,7.921,3.112,10.997,5.56,3.268,6.171,7.9,6.314,14.66,2.755,13.349,13.939,7.309,0.86,-10.487,-12.324,8.23,14.069,2.003,5.218,6.242,11.373,2.966,2.461,-0.21,6.761,4.608,-1.77,2.226,6.244],[23.111,23.551,11.333,35.141,27.923,16.628,27.967,26.321,22.311,6.943,28.271,23.718,22.211,18.354,19.901,22.223,21.226,18.381,13.043,11.466,14.631,21.752,14.422,-1.69,12.76,18.846,18.071,2.477,16.65,13.517,2.737,-4.873,9.21,6.925,10.041,8.626,16.161,16.916,-8.52,2.121,9.456,11.652,-4.786,7.409,17.842,16.706,-0.462,14.016,-2.759,3.499,10.317,1.977,6.79,6.666,4.953,8.145,0.26,5.47,-10.793,3.57,6.565,14.551,12.986,-0.375,23.598,8.079,22.73,35.692,23.123,18.506,22.734,24.46,23.946,35.915,28.554,29.407,21.97,26.65,27.785,24.345,15.349,20.457,9.942,27.395,10.426,28.056,16.21,23.29,27.839,7.469,21.893,25.5,20.007,20.493,11.788,-0.477,20.56,19.487,12.748,11.494,16.459,16.798,12.8,22.185,13.454,22.145,17.667,23.585,18.309,-2.04,12.77,14.325,10.872,18.209,1.405,21.015,14.501,4.486,2.588,13.98,19.772,17.141,18.396,17.28,14.044,8.136,9.764,-3.51,7.391,10.82,2.437,5.623,-4.02,6.412,15.588,-9.896,14.718,10.267,8.235,-5.418,11.264,16.055,9.131,-7.116,17.777,12.681,-2.544,17.333,16.091,9.219,2.925,0.263,14.845,-5.036,-3.451,18.07,6.58,-2.302,17.461,15.273,9.236,-0.085,7.718,2.85,10.924,5.711,3.501,6.179,8.209,6.398,13.819,2.558,13.738,14.121,7.38,0.256,-10.55,-12.196,8.426,13.911,1.993,5.289,6.279,11.402,2.455,2.245,-0.33,6.502,3.819,-2.147,2.108,6.452],[23.148,23.531,11.338,35.222,28.04,16.638,28.058,26.405,22.447,6.941,28.149,24.004,22.431,18.543,19.79,22.253,21.123,18.497,13.245,11.632,14.734,21.844,14.447,-1.699,12.759,18.885,18.39,2.607,16.77,13.429,2.681,-4.954,8.925,7.199,9.721,8.751,16.012,16.665,-8.507,1.983,9.236,11.459,-4.948,7.193,17.938,16.8,-0.212,13.802,-2.507,3.336,10.363,2.082,6.775,6.558,4.893,8.309,0.085,5.444,-10.777,3.294,6.665,14.469,13.038,-0.541,23.142,7.476,22.552,35.241,23.264,18.468,22.921,24.727,23.615,36.051,28.499,29.265,21.823,26.371,27.93,24.174,15.736,20.066,10.067,27.355,10.611,28.567,15.599,23.092,27.701,7.943,21.697,25.682,20.368,20.826,12.122,-0.415,20.945,19.469,12.661,11.321,16.563,16.883,12.736,22.155,13.566,22.36,17.411,23.385,18.038,-2.472,13.056,14.487,11.184,18.118,1.58,21.294,14.493,4.201,3.136,13.926,19.966,17.419,18.291,18.348,13.699,8.122,10.11,-3.518,7.627,10.537,1.911,5.736,-4.228,7.19,15.584,-9.99,15.005,10.629,8.005,-5.66,10.953,16.144,8.948,-6.995,17.218,12.338,-3.045,17.274,15.656,8.578,2.907,0.258,14.581,-5.385,-3.691,18.12,6.493,-2.132,17.68,14.779,8.699,0.711,7.479,2.815,10.812,5.493,3.572,6.375,8.501,6.533,13.729,1.98,13.708,14.378,7.339,0.252,-10.504,-12.27,8.043,13.885,1.69,5.156,6.521,11.591,2.452,2.133,-0.106,6.0,4.121,-2.147,1.996,6.399],[23.068,23.44,11.36,35.249,28.316,16.555,28.312,26.545,22.623,6.864,28.063,24.251,22.551,18.761,19.745,22.41,20.978,18.529,13.23,11.845,14.751,21.929,14.45,-1.738,12.67,18.87,18.723,2.652,16.826,13.274,2.562,-5.112,8.752,7.475,9.603,8.888,15.823,16.457,-8.442,1.954,9.053,11.332,-5.183,7.025,17.976,16.733,-0.06,13.573,-2.494,3.292,10.317,2.257,6.763,6.631,4.837,8.366,0.015,5.446,-10.722,3.077,6.718,14.411,13.191,-0.647,23.13,7.219,22.443,34.756,23.239,18.826,23.117,24.934,23.367,36.173,28.347,29.34,21.999,26.389,28.047,24.646,15.686,19.64,9.809,27.153,10.733,27.756,15.261,23.088,27.59,7.96,22.176,26.143,20.669,20.888,12.302,-0.324,20.87,19.209,12.631,11.709,16.374,16.931,13.26,22.161,13.638,22.156,17.339,23.528,18.361,-2.486,12.859,13.913,11.412,18.434,1.541,20.998,14.486,3.99,3.695,13.811,20.361,17.225,18.411,18.855,14.06,8.012,9.806,-3.926,7.306,9.487,1.638,6.104,-3.721,7.467,15.606,-9.864,15.12,10.461,7.746,-5.792,10.966,16.655,8.705,-7.097,17.423,11.934,-3.586,17.074,16.204,8.287,3.101,0.129,14.76,-5.169,-3.498,17.997,5.884,-1.776,17.696,14.191,8.658,0.692,7.435,2.81,11.159,5.352,3.891,6.32,8.521,6.488,14.207,1.464,13.58,14.488,7.145,-0.061,-10.451,-12.542,7.693,13.721,1.698,4.835,6.547,11.234,2.829,2.433,-0.009,6.051,4.642,-1.3,1.833,5.838],[22.975,23.42,11.452,35.12,28.313,16.371,28.487,26.731,22.651,6.798,28.066,24.324,22.7,18.96,19.698,22.655,20.811,18.574,13.123,11.976,14.752,21.911,14.509,-1.788,12.378,18.85,19.007,2.689,16.868,13.14,2.331,-5.121,8.647,7.587,9.599,8.829,15.656,16.388,-8.447,2.059,8.942,11.242,-5.37,6.806,18.091,16.656,0.07,13.455,-2.7,3.425,10.28,2.467,6.746,6.837,4.862,8.193,0.075,5.485,-10.725,3.047,6.686,14.489,13.351,-0.548,23.277,7.612,23.156,35.237,23.382,19.322,23.642,24.988,23.584,36.23,29.243,29.406,21.889,26.548,27.739,24.538,15.669,19.127,9.963,27.8,11.171,28.028,15.053,23.662,27.754,7.438,21.756,26.229,20.525,21.139,11.926,-0.1,21.0,19.073,12.791,11.798,15.842,16.942,13.262,21.868,13.859,22.1,17.368,23.33,18.5,-2.488,12.884,13.96,11.642,18.34,1.734,20.924,14.461,4.111,3.01,13.729,20.442,17.271,18.523,19.279,13.717,7.887,9.545,-4.236,7.091,8.548,1.593,6.012,-3.921,7.449,15.177,-9.824,15.097,10.213,7.984,-5.603,11.428,17.159,8.286,-6.997,17.305,11.942,-4.223,16.991,16.204,8.418,2.61,0.37,14.626,-5.22,-3.462,17.979,5.54,-1.718,17.578,14.133,8.429,0.736,7.525,2.456,10.962,5.251,4.076,6.673,8.493,6.325,14.128,1.564,13.268,14.255,7.033,-0.208,-10.31,-12.272,7.741,13.796,2.186,5.035,6.564,11.403,2.965,2.455,-0.153,6.659,4.221,-1.588,1.734,5.693],[22.982,23.421,11.738,34.972,28.123,16.147,28.547,26.735,22.794,6.946,28.131,24.339,22.877,18.989,19.624,22.833,20.609,18.604,13.005,12.052,14.735,21.84,14.615,-1.74,12.16,18.833,19.275,2.655,16.98,13.035,2.154,-5.103,8.58,7.484,9.72,8.538,15.544,16.341,-8.515,2.12,8.87,11.302,-5.39,6.552,18.307,16.637,0.231,13.499,-2.984,3.665,10.292,2.495,6.682,7.049,4.828,7.87,0.219,5.767,-10.8,3.121,6.712,14.55,13.298,-0.501,23.565,7.415,22.512,35.822,23.291,19.914,23.251,25.046,23.311,36.104,29.582,29.292,21.884,26.691,27.835,23.891,15.257,19.099,10.126,28.166,11.092,28.025,14.911,23.515,28.087,7.782,21.955,26.097,20.201,21.033,11.874,-0.306,21.677,18.837,12.929,11.005,15.648,17.159,12.713,21.407,14.029,22.435,17.424,23.732,17.966,-2.68,12.851,13.766,11.468,17.988,1.817,21.149,14.246,3.953,3.325,13.374,20.767,17.209,18.565,19.263,13.36,8.105,9.496,-3.664,7.196,8.792,1.586,6.128,-4.078,6.963,15.074,-9.979,15.062,10.392,8.535,-6.164,11.536,16.958,8.121,-6.988,17.058,11.983,-4.272,16.96,15.766,8.417,2.634,0.364,14.202,-5.529,-3.59,18.285,5.159,-1.655,17.705,14.401,8.593,1.196,8.176,2.997,10.317,5.346,3.804,6.632,8.256,6.348,14.132,1.817,13.665,14.498,6.628,-0.053,-10.169,-11.877,7.778,13.995,2.06,5.443,6.763,11.551,3.247,2.105,-0.033,6.752,4.121,-2.299,1.942,6.17],[22.73,23.428,11.885,35.011,27.957,15.904,28.617,26.566,22.823,7.14,28.269,24.292,23.117,18.823,19.586,23.001,20.292,18.549,12.944,12.096,14.643,21.858,14.569,-1.711,12.022,18.766,19.551,2.709,17.084,12.874,2.215,-4.889,8.693,7.327,9.944,8.355,15.457,16.174,-8.581,2.074,8.972,11.495,-5.41,6.303,18.534,16.705,0.39,13.617,-3.129,3.793,10.216,2.445,6.665,7.361,4.724,7.446,0.481,6.104,-10.783,3.194,6.65,14.63,13.058,-0.7,23.539,7.568,22.758,35.373,23.701,19.702,23.377,24.794,23.315,35.422,28.864,28.979,21.75,26.504,28.136,24.302,14.77,19.171,10.297,27.333,11.156,27.89,14.963,23.362,27.91,7.925,22.057,26.08,20.312,20.664,11.899,-0.391,21.595,18.388,12.791,10.426,15.573,17.31,12.67,21.317,14.06,22.602,17.807,24.129,18.013,-2.466,12.748,13.462,11.598,18.369,2.009,21.337,14.55,3.666,3.294,13.368,20.937,17.364,18.774,19.18,13.73,7.776,9.333,-3.138,7.274,9.394,1.039,6.178,-4.306,7.378,15.082,-9.849,15.002,10.098,8.214,-6.034,11.111,16.676,8.019,-7.068,17.039,12.26,-4.074,16.842,15.959,8.444,3.18,0.342,14.487,-5.706,-4.154,18.408,5.301,-1.269,17.65,14.74,8.578,1.217,8.181,3.587,10.134,5.325,3.592,6.777,8.29,6.432,14.514,1.91,13.887,14.621,6.375,0.588,-10.493,-12.173,7.432,13.717,2.117,5.558,6.372,11.525,3.67,2.232,0.408,6.299,4.209,-2.419,2.234,6.659],[22.534,23.387,11.829,34.993,27.838,15.617,28.583,26.361,22.986,7.324,28.473,24.451,23.257,18.688,19.588,22.99,20.026,18.522,12.909,12.171,14.403,21.965,14.482,-1.715,11.957,18.73,19.841,2.802,17.192,12.728,2.349,-4.692,8.842,7.483,9.911,8.292,15.326,15.989,-8.528,1.983,9.178,11.772,-5.495,6.105,18.655,16.83,0.571,13.79,-3.202,3.714,10.176,2.514,6.644,7.486,4.644,6.978,0.809,6.305,-10.746,3.259,6.452,14.903,12.889,-0.791,23.711,7.597,22.722,34.894,23.847,18.987,23.796,24.811,23.119,35.227,28.538,29.167,21.736,26.032,27.914,23.931,14.451,18.927,10.28,27.087,11.635,27.611,14.751,23.367,27.689,7.827,21.987,26.168,20.219,20.969,11.752,-0.033,21.849,18.359,12.609,10.783,15.457,17.102,13.029,21.025,14.057,22.486,17.621,24.117,18.332,-2.385,13.07,13.216,11.562,18.57,1.846,20.912,14.834,3.419,3.418,13.575,21.027,17.547,18.929,18.746,13.38,7.915,10.024,-3.221,7.592,10.376,0.928,6.088,-3.708,7.052,14.824,-9.669,15.034,10.216,8.12,-5.692,10.837,17.095,7.95,-6.959,17.018,12.685,-3.875,16.579,15.849,8.532,3.232,0.237,14.865,-4.968,-4.742,18.229,5.48,-1.213,17.582,14.734,8.664,1.229,7.882,3.172,10.552,5.586,3.413,6.731,8.316,6.185,14.249,1.764,13.454,13.958,5.903,0.112,-10.332,-12.626,6.708,12.971,2.249,5.754,5.753,11.5,3.909,2.619,0.435,5.985,4.077,-1.82,2.564,6.946],[22.365,23.325,11.898,34.803,27.82,15.254,28.461,26.18,23.253,7.329,28.705,24.68,23.191,18.569,19.637,22.85,19.956,18.541,12.868,12.222,14.192,21.994,14.401,-1.663,12.048,18.664,20.071,2.769,17.233,12.664,2.34,-4.567,9.036,7.639,9.846,8.347,15.207,15.809,-8.435,1.854,9.399,12.008,-5.539,5.97,18.755,16.876,0.712,13.96,-3.36,3.504,10.348,2.701,6.59,7.32,4.611,6.513,0.924,6.337,-10.823,3.275,6.222,15.118,12.82,-0.748,24.073,7.952,22.731,35.267,23.675,18.892,23.868,24.492,23.324,35.863,29.159,29.449,22.267,26.408,27.742,23.559,13.951,18.835,10.144,27.304,11.382,27.931,14.472,23.594,28.079,8.294,22.305,26.38,19.894,20.968,11.583,0.007,21.595,18.23,12.605,10.955,14.965,17.1,13.126,20.939,14.057,22.275,17.773,23.998,18.179,-2.679,12.704,13.42,11.876,18.185,2.156,20.869,14.495,4.018,3.58,13.279,20.96,17.326,19.312,18.365,13.218,8.113,10.636,-3.327,7.78,10.741,1.729,6.16,-3.507,7.635,14.959,-9.742,15.133,10.017,8.008,-5.886,11.161,17.374,7.815,-6.617,16.893,12.971,-3.857,16.081,16.122,8.577,2.392,-0.024,15.235,-5.186,-3.577,18.09,5.439,-1.035,17.772,14.4,9.022,1.075,8.034,2.59,10.637,5.654,3.357,7.19,7.99,6.115,14.236,1.715,14.125,13.526,5.244,-0.597,-10.002,-12.611,6.047,12.241,2.101,5.825,6.182,11.638,4.148,2.636,0.763,5.673,3.814,-1.49,2.763,6.867],[22.296,23.399,12.104,34.515,27.871,14.919,28.573,26.161,23.396,7.376,28.832,24.867,23.106,18.458,19.609,22.552,19.974,18.645,12.814,12.355,14.014,21.878,14.357,-1.716,12.245,18.504,20.216,2.703,17.178,12.629,2.512,-4.545,9.279,7.739,9.979,8.448,15.084,15.719,-8.394,1.561,9.637,12.299,-5.614,5.866,18.891,16.904,0.798,14.067,-3.431,3.399,10.554,2.943,6.464,7.168,4.585,6.095,0.911,6.3,-10.857,3.177,6.042,15.294,12.744,-0.645,24.194,7.541,23.227,35.445,24.027,18.819,23.725,24.316,23.041,35.997,29.521,29.484,22.634,26.473,28.499,23.568,13.571,19.334,10.657,27.422,11.261,28.668,14.122,24.043,27.754,8.309,22.017,26.904,20.137,20.847,11.476,-0.065,21.229,18.102,12.727,10.976,14.951,17.089,12.565,20.631,14.228,22.433,17.802,23.623,18.132,-2.58,12.133,13.908,11.715,18.199,2.186,20.665,14.292,4.158,2.958,12.908,20.809,17.468,19.354,18.69,13.832,7.588,10.318,-3.023,7.629,10.598,1.875,6.322,-3.699,7.477,14.699,-9.237,14.987,10.302,8.145,-6.305,11.884,17.722,7.684,-6.819,16.346,12.59,-3.899,16.118,16.319,8.74,2.263,-0.215,14.991,-6.146,-2.881,18.327,5.118,-1.096,18.046,14.803,9.332,1.286,8.038,2.92,10.492,5.377,4.234,7.094,7.798,5.953,14.793,1.771,14.442,13.908,4.895,-0.445,-10.267,-12.309,5.326,12.076,2.036,5.278,6.778,11.489,3.844,2.423,0.943,5.553,3.54,-1.767,2.681,6.849],[22.37,23.667,12.336,34.241,28.002,14.741,28.735,26.253,23.529,7.365,28.982,24.999,22.926,18.361,19.581,22.208,19.909,18.813,12.693,12.397,13.83,21.705,14.517,-1.754,12.342,18.285,20.305,2.394,17.225,12.605,2.673,-4.559,9.447,7.765,10.266,8.482,14.966,15.718,-8.196,1.464,9.696,12.422,-5.73,5.799,19.031,17.013,0.819,13.955,-3.482,3.541,10.579,3.18,6.259,6.967,4.563,5.725,0.83,6.296,-10.823,2.898,5.95,15.657,12.704,-0.541,23.908,7.536,23.145,34.754,24.103,18.73,23.573,24.686,22.776,35.52,29.499,28.903,22.229,26.005,29.006,23.924,13.195,19.135,10.721,27.1,11.983,27.877,14.139,24.416,27.925,8.152,21.774,27.043,19.976,20.716,11.709,-0.222,21.383,18.148,12.673,11.504,15.109,17.329,12.106,20.62,14.394,22.489,17.787,23.71,18.015,-2.22,12.996,13.958,11.656,18.388,1.685,20.503,14.988,4.07,3.512,13.083,21.002,17.548,18.669,19.377,13.757,7.856,10.017,-3.041,7.784,10.788,1.659,6.431,-3.85,7.431,14.228,-9.228,14.496,10.318,8.441,-6.716,12.645,17.506,7.57,-6.432,16.508,13.317,-3.462,16.376,16.007,8.875,2.233,-0.469,14.839,-6.304,-4.181,18.628,4.986,-0.96,17.689,14.439,9.843,1.406,7.717,3.133,10.52,4.903,4.669,6.878,7.83,6.06,15.038,1.443,14.162,14.308,4.942,-0.172,-10.337,-11.954,4.814,12.443,2.031,5.265,6.518,11.542,3.911,2.151,0.804,5.785,3.835,-2.2,2.442,7.001],[22.338,24.021,12.561,33.893,27.905,14.695,28.845,26.361,23.57,7.419,29.105,24.95,22.637,18.238,19.441,22.171,19.794,19.082,12.685,12.347,13.687,21.461,14.81,-1.691,12.354,18.068,20.265,2.262,17.356,12.593,2.683,-4.562,9.559,7.767,10.575,8.442,14.867,15.743,-8.0,1.518,9.651,12.622,-5.874,5.816,18.926,16.995,0.756,13.709,-3.59,3.677,10.52,3.281,5.966,6.985,4.478,5.456,0.648,6.408,-10.739,2.56,5.92,15.987,12.746,-0.589,23.836,7.973,22.942,34.53,24.32,18.628,23.616,24.574,23.032,35.302,28.994,28.997,22.088,26.231,28.454,23.947,13.24,18.78,10.741,27.957,12.398,27.553,14.223,24.093,28.127,8.338,21.703,26.855,20.031,20.435,11.568,-0.1,21.192,18.07,12.982,11.279,15.313,17.635,12.366,20.78,14.336,22.032,18.376,23.896,17.684,-2.603,13.507,13.874,11.615,18.38,1.87,20.936,15.547,4.049,3.082,13.592,21.569,17.263,18.495,19.758,13.739,8.184,10.529,-3.196,8.256,11.439,1.554,6.35,-3.711,7.906,14.434,-9.183,14.213,10.356,8.7,-6.789,12.076,17.385,7.659,-6.263,17.149,12.884,-3.934,16.269,16.102,9.368,2.331,-0.259,14.606,-5.067,-4.889,18.666,5.14,-1.105,17.832,14.53,9.178,1.537,7.649,2.706,10.496,4.782,4.407,7.056,7.807,6.227,15.71,1.233,14.712,14.247,4.589,0.429,-10.103,-11.944,4.551,12.803,2.808,5.008,6.254,11.552,4.337,1.938,0.785,5.585,4.093,-2.305,2.499,7.283],[22.28,24.267,12.741,33.848,27.719,14.769,28.815,26.379,23.561,7.6,29.064,24.852,22.429,18.185,19.162,22.364,19.705,19.229,12.791,12.226,13.452,21.191,15.196,-1.642,12.341,17.9,20.287,2.383,17.443,12.651,2.578,-4.331,9.658,7.838,10.864,8.535,14.79,15.816,-8.0,1.56,9.631,12.795,-5.915,5.82,18.626,16.857,0.679,13.538,-3.542,3.898,10.446,3.288,5.731,7.15,4.334,5.252,0.572,6.554,-10.569,2.333,5.79,16.397,12.823,-0.631,24.654,7.978,23.12,34.608,24.03,18.38,23.285,24.601,23.118,34.373,29.239,29.494,22.646,26.796,28.218,23.52,13.448,18.828,10.991,28.123,12.7,27.99,13.962,23.578,28.033,8.257,21.237,26.553,19.978,20.628,11.613,0.096,21.109,17.915,13.373,10.805,15.222,18.117,12.632,20.745,14.08,22.084,18.015,23.717,17.762,-2.44,13.299,13.693,11.746,18.851,1.808,20.322,14.981,4.099,2.713,13.472,20.968,17.346,18.961,19.085,13.651,7.698,11.001,-3.047,8.352,11.723,1.787,6.477,-3.34,7.836,14.971,-9.273,14.082,10.376,9.181,-6.329,11.809,17.142,7.62,-6.437,16.969,12.935,-4.169,15.908,16.378,9.755,2.67,-0.195,14.382,-4.616,-4.656,18.01,5.466,-1.189,17.908,14.838,9.233,1.004,7.892,2.697,10.576,4.615,4.044,7.126,7.587,6.058,15.967,0.997,15.232,13.971,4.06,0.484,-10.448,-11.99,4.5,13.255,2.797,5.357,5.894,11.19,4.488,1.703,0.277,5.21,3.693,-1.831,2.308,7.453],[22.347,24.456,12.762,33.888,27.639,14.672,28.751,26.337,23.519,7.708,28.965,24.603,22.132,18.142,19.058,22.605,19.693,19.207,12.837,12.121,13.098,20.93,15.491,-1.511,12.355,17.892,20.264,2.435,17.428,12.831,2.456,-3.964,9.781,7.984,11.084,8.529,14.709,15.869,-8.174,1.594,9.72,12.979,-5.799,5.728,18.155,16.777,0.58,13.487,-3.455,4.032,10.407,3.293,5.616,7.216,4.31,5.053,0.561,6.587,-10.507,2.269,5.622,16.754,12.903,-0.599,25.056,8.218,23.389,35.086,23.906,18.648,22.944,24.589,23.32,34.66,29.572,29.359,22.732,26.603,28.394,23.582,14.362,18.346,10.925,27.56,12.928,27.8,14.574,24.063,27.69,8.195,21.205,26.579,19.831,20.404,12.11,0.189,21.252,17.823,13.849,10.683,14.968,18.13,12.624,20.528,13.919,21.973,17.718,23.355,17.527,-2.326,12.822,13.466,11.867,18.939,2.053,19.695,15.098,3.875,3.493,12.768,20.902,17.804,19.051,18.642,14.026,8.182,10.95,-2.731,8.129,11.691,2.005,6.436,-2.926,7.98,14.822,-9.404,13.535,10.312,9.32,-5.623,12.395,16.86,7.457,-6.579,16.328,13.089,-3.56,15.766,16.591,9.712,2.36,-0.35,14.463,-5.806,-3.605,17.488,5.756,-1.272,17.367,14.237,9.733,1.072,7.702,3.458,10.647,4.715,4.185,7.195,7.423,5.791,15.582,0.737,15.563,14.344,3.925,0.736,-10.334,-11.86,4.945,13.166,2.559,5.886,5.186,11.606,4.002,1.859,-0.064,4.84,3.419,-1.9,2.281,7.642],[22.598,24.569,12.629,33.889,27.572,14.673,28.765,26.247,23.572,7.725,28.94,24.462,21.804,18.194,19.067,22.64,19.746,19.122,12.961,12.152,12.792,20.656,15.764,-1.335,12.396,17.812,20.159,2.601,17.288,13.083,2.329,-3.713,9.905,8.266,11.167,8.486,14.552,15.771,-8.421,1.611,9.894,13.211,-5.584,5.673,17.748,16.681,0.634,13.521,-3.306,3.926,10.592,3.283,5.581,7.26,4.243,4.978,0.454,6.545,-10.424,2.374,5.421,16.907,12.972,-0.616,24.984,8.074,22.912,34.861,24.102,18.683,22.584,24.5,23.199,35.011,29.154,28.598,23.068,25.937,28.157,23.604,14.518,18.19,10.814,27.341,12.488,27.531,14.334,24.161,27.562,8.767,21.154,26.29,19.746,20.241,12.123,0.121,21.688,17.945,13.941,10.862,14.586,17.769,13.05,20.256,14.13,21.645,18.373,23.567,17.93,-2.262,12.601,13.595,11.583,18.417,1.777,19.94,15.808,3.617,3.476,11.72,20.438,18.308,18.887,19.095,14.596,8.158,10.71,-2.338,8.069,11.712,1.753,6.732,-2.906,7.891,14.646,-8.948,13.176,10.416,9.344,-6.065,12.713,16.378,7.399,-6.606,16.566,12.856,-3.883,15.787,16.329,9.595,2.097,-0.162,14.628,-6.601,-3.288,17.55,5.223,-1.146,17.524,14.049,9.887,1.394,7.955,3.421,10.349,5.081,4.548,7.061,7.323,6.017,15.774,0.654,15.65,14.601,3.971,0.673,-10.028,-11.892,5.195,12.76,2.597,5.43,5.109,11.637,4.242,2.225,0.282,4.887,3.987,-1.876,2.359,7.97],[22.758,24.665,12.449,33.656,27.45,14.829,28.828,26.038,23.696,7.723,28.722,24.363,21.518,18.31,19.195,22.572,19.791,18.942,13.186,12.316,12.439,20.48,15.936,-1.269,12.507,17.817,19.973,2.678,17.213,13.406,2.152,-3.633,9.902,8.445,11.168,8.544,14.34,15.644,-8.509,1.802,10.178,13.3,-5.435,5.65,17.518,16.629,0.741,13.644,-3.319,3.771,10.767,3.438,5.615,7.106,4.212,4.999,0.359,6.5,-10.249,2.431,5.303,16.949,12.896,-0.765,24.96,7.997,23.276,34.588,24.015,18.538,22.672,24.419,23.128,34.959,28.96,28.833,23.136,26.06,28.522,24.374,13.676,18.447,10.958,27.718,11.78,27.323,13.999,23.571,27.721,8.894,20.734,26.222,19.78,20.479,12.103,0.332,21.659,17.922,14.075,10.917,14.034,17.526,12.586,20.624,14.243,21.318,18.398,23.822,17.772,-2.065,13.205,13.864,11.342,18.209,2.097,19.882,16.081,3.491,3.433,11.388,20.616,18.269,17.813,19.427,14.748,7.534,10.957,-2.165,8.283,11.702,1.312,7.123,-2.864,8.578,14.468,-8.83,13.285,10.297,9.31,-6.749,12.928,16.038,7.396,-6.743,16.964,13.098,-3.532,15.774,16.144,9.886,2.637,-0.045,14.727,-5.998,-4.444,17.773,4.769,-0.964,17.751,14.005,9.697,1.281,8.212,2.805,10.306,5.229,4.732,7.082,7.097,5.986,16.407,0.733,15.807,14.464,4.058,0.403,-10.149,-11.653,5.052,13.417,2.405,5.421,5.558,11.806,4.239,2.322,0.75,4.913,3.886,-1.51,2.171,8.018],[22.924,24.669,12.443,33.303,27.269,14.952,28.984,25.852,23.83,7.889,28.548,24.225,21.36,18.401,19.37,22.546,19.743,18.808,13.332,12.457,12.105,20.302,16.006,-1.142,12.638,17.629,19.891,2.617,17.149,13.72,1.938,-3.695,9.896,8.552,10.953,8.598,14.16,15.448,-8.419,2.005,10.513,13.247,-5.31,5.548,17.421,16.645,0.837,13.739,-3.497,3.706,10.892,3.584,5.78,6.948,4.146,5.078,0.349,6.46,-10.0,2.33,5.215,17.132,12.755,-0.846,24.588,8.147,23.483,34.251,23.936,19.124,22.527,24.081,23.699,34.597,29.068,28.6,22.945,25.949,28.65,24.022,13.219,18.684,10.924,27.854,11.935,27.334,14.621,23.308,27.841,8.293,20.614,25.909,20.088,20.774,11.989,0.539,21.171,18.067,14.187,11.368,13.545,17.536,12.934,20.988,14.262,21.475,18.133,23.495,17.39,-1.99,13.838,13.868,11.619,18.429,2.334,19.479,15.951,3.619,4.044,11.069,20.548,18.19,18.483,18.715,15.001,8.013,10.95,-2.372,8.258,11.941,1.439,6.875,-2.907,8.491,14.981,-9.253,13.34,10.464,9.214,-6.547,13.326,15.833,7.311,-6.744,17.001,13.332,-3.905,15.83,16.596,10.535,3.07,0.357,14.646,-4.591,-4.732,17.845,4.952,-0.969,17.417,13.933,10.009,1.294,8.177,2.924,10.927,4.961,4.836,7.042,7.107,5.926,16.054,0.746,15.918,14.097,3.982,-0.173,-9.866,-11.588,5.315,13.605,2.453,5.161,5.8,12.013,4.384,1.965,0.012,4.799,3.396,-1.774,2.141,8.111],[23.071,24.419,12.633,33.086,27.124,15.026,29.127,25.596,23.784,8.0,28.501,24.122,21.275,18.65,19.492,22.409,19.701,18.824,13.27,12.453,11.802,20.166,15.965,-1.034,12.663,17.491,19.941,2.61,17.096,14.111,1.875,-3.755,9.93,8.441,10.675,8.592,14.127,15.588,-8.327,2.109,10.847,13.294,-5.028,5.43,17.415,16.685,0.821,13.7,-3.717,4.008,10.976,3.705,6.031,6.853,4.084,5.261,0.218,6.512,-9.836,2.136,5.179,17.08,12.666,-0.896,24.578,8.457,23.289,34.031,24.038,19.289,22.278,23.813,23.516,34.097,29.3,28.835,22.637,25.429,28.045,23.94,13.309,18.88,10.897,27.55,12.277,27.275,15.319,23.394,28.026,8.878,20.812,25.844,19.871,20.682,12.255,0.463,21.095,17.839,14.223,11.474,13.256,17.853,13.163,20.736,14.263,21.323,17.982,23.481,17.222,-1.938,13.47,13.961,11.871,18.482,2.073,19.377,15.805,3.257,3.464,11.053,20.392,18.271,18.678,18.826,15.36,8.435,10.984,-2.448,8.181,11.762,1.968,6.798,-2.808,8.388,14.877,-9.37,13.139,10.564,9.037,-5.89,13.161,16.039,7.119,-6.524,16.647,13.035,-4.39,15.798,16.609,11.073,3.193,0.524,14.355,-3.967,-4.163,17.474,5.264,-0.925,17.45,14.974,10.659,1.412,7.855,3.344,11.364,5.042,4.922,6.837,6.922,5.775,15.691,0.517,15.975,13.746,3.991,0.17,-9.485,-11.177,4.939,12.676,2.564,5.535,5.624,12.384,4.473,1.663,-0.278,4.266,3.231,-2.61,2.113,7.925],[23.047,24.154,12.757,33.072,27.008,15.155,29.056,25.313,23.645,8.146,28.488,24.118,21.226,18.739,19.57,22.16,19.613,18.921,13.181,12.297,11.598,20.083,15.841,-0.982,12.58,17.427,20.035,2.558,17.128,14.339,1.99,-3.705,10.081,8.236,10.597,8.634,14.062,15.894,-8.071,2.154,11.333,13.387,-4.635,5.241,17.452,16.71,0.734,13.722,-3.717,4.385,11.067,3.763,6.207,6.93,3.991,5.515,-0.009,6.557,-9.719,1.873,5.006,16.939,12.448,-0.971,24.772,8.243,23.673,34.285,24.305,19.063,22.298,23.653,23.581,34.048,29.867,28.65,22.136,25.458,27.878,24.36,13.33,18.84,11.193,27.306,12.274,27.176,14.917,23.737,28.339,9.515,20.531,25.848,20.284,20.542,12.289,0.509,21.327,17.85,14.211,11.707,13.388,17.775,12.485,20.646,14.24,21.159,17.768,23.394,17.823,-2.172,13.829,13.776,11.723,18.821,1.962,19.121,15.495,3.434,2.939,10.814,20.35,17.855,17.671,19.364,15.993,8.045,11.157,-2.541,8.285,10.718,1.264,6.982,-2.678,8.338,15.284,-9.308,13.208,10.415,8.859,-5.56,12.559,16.262,7.007,-6.484,16.446,12.776,-4.142,15.74,16.572,10.894,2.953,0.273,14.55,-3.948,-4.41,17.193,5.028,-1.013,17.581,14.777,10.554,1.433,7.836,3.674,11.459,5.394,5.22,7.119,6.798,5.722,16.133,0.29,16.197,13.788,3.991,0.376,-9.591,-11.324,4.931,12.631,2.908,5.515,5.508,12.056,4.332,1.538,-0.348,4.202,3.21,-2.105,1.994,7.508],[23.127,23.912,12.697,33.137,26.885,15.159,28.979,25.202,23.699,8.286,28.313,24.218,21.14,18.674,19.514,21.888,19.55,19.151,12.915,12.203,11.582,19.913,15.838,-0.929,12.46,17.362,20.034,2.547,17.083,14.455,2.037,-3.631,10.216,8.29,10.639,8.59,14.023,16.167,-7.87,2.102,11.601,13.325,-4.266,5.002,17.387,16.759,0.534,13.834,-3.394,4.557,11.117,3.801,6.158,6.963,3.898,5.652,-0.172,6.602,-9.71,1.718,4.873,17.112,12.229,-0.983,24.512,8.253,23.333,34.21,23.708,19.097,22.161,23.39,23.256,34.489,29.306,28.814,22.377,25.519,28.583,24.241,13.671,18.759,11.205,27.631,12.225,26.941,14.42,23.736,28.18,9.6,20.39,26.046,20.463,20.448,12.353,0.451,21.565,17.879,13.975,11.559,13.309,17.561,12.798,20.814,14.059,20.882,18.04,23.369,17.325,-1.845,14.458,13.734,11.319,18.691,1.733,19.286,15.573,3.237,3.395,10.727,20.444,17.561,17.56,19.636,15.599,7.874,11.353,-2.196,8.484,10.625,1.002,6.688,-2.763,8.038,15.422,-8.662,13.263,10.461,8.87,-5.143,12.706,16.389,6.783,-5.953,17.336,12.326,-4.108,15.432,16.492,11.145,2.389,0.296,14.436,-4.361,-4.825,17.74,4.492,-1.095,17.723,14.258,11.037,1.648,8.264,3.823,11.75,5.556,5.113,7.433,6.771,5.608,16.083,0.146,15.9,13.791,4.319,0.47,-9.766,-11.199,5.332,13.001,3.377,5.518,5.892,12.106,4.413,1.431,-0.65,4.583,3.246,-1.395,1.676,7.005],[23.147,23.872,12.537,33.125,26.795,15.14,28.878,25.189,23.734,8.4,28.184,24.374,20.947,18.654,19.491,21.668,19.533,19.272,12.728,12.199,11.716,19.792,15.992,-0.867,12.351,17.117,19.881,2.673,17.051,14.436,1.891,-3.571,10.293,8.412,10.689,8.464,14.054,16.485,-7.622,1.986,11.53,13.191,-4.054,4.824,17.317,16.712,0.395,13.846,-3.041,4.521,11.232,3.784,6.023,6.912,3.806,5.779,-0.35,6.564,-9.767,1.881,4.997,17.194,12.271,-0.813,24.197,8.673,23.436,34.235,23.872,19.085,22.166,23.447,23.766,34.005,28.875,28.49,22.238,25.355,29.13,24.187,14.141,18.431,10.921,27.532,12.284,27.03,14.298,23.542,27.654,9.14,20.522,26.287,20.353,19.992,11.758,0.871,21.37,18.113,14.298,11.069,13.123,17.88,12.066,20.633,13.976,20.728,18.147,23.081,17.156,-1.69,15.15,14.011,11.301,18.74,1.711,18.992,15.94,3.046,3.892,10.278,20.201,17.644,18.483,19.36,15.428,8.062,11.548,-2.017,8.645,11.664,1.411,7.137,-2.938,8.726,15.55,-8.42,13.138,10.285,9.1,-5.233,12.628,16.28,6.687,-5.93,17.639,12.626,-3.547,15.285,16.427,11.72,2.448,0.213,14.446,-4.597,-4.366,18.432,4.129,-1.428,17.82,14.873,11.053,1.228,8.04,3.686,11.888,5.579,5.171,7.245,6.784,5.54,16.234,0.208,16.009,13.566,4.251,0.44,-9.504,-11.202,5.391,12.807,3.09,5.574,6.149,12.599,4.063,1.545,-0.411,4.633,3.322,-1.92,1.255,6.878],[23.153,23.931,12.437,32.991,26.699,15.214,28.688,25.194,23.876,8.516,28.146,24.558,20.734,18.774,19.47,21.426,19.544,19.345,12.468,12.111,11.828,19.672,16.179,-0.817,12.341,16.904,19.642,2.862,17.17,14.486,1.711,-3.542,10.403,8.651,10.778,8.4,14.121,16.681,-7.366,1.841,11.427,13.1,-4.052,4.793,17.354,16.55,0.358,13.86,-2.71,4.305,11.47,3.693,6.053,6.726,3.89,5.845,-0.523,6.373,-9.827,2.147,5.114,17.133,12.304,-0.674,24.321,8.333,23.446,34.127,24.507,18.95,22.084,23.42,23.768,33.999,29.333,28.757,22.326,25.466,28.816,24.415,14.182,18.099,10.864,27.24,11.889,27.074,14.276,23.99,27.473,9.451,20.551,26.307,20.347,20.085,11.343,0.877,21.145,18.267,14.585,10.843,13.183,17.951,12.088,20.763,13.97,20.649,18.096,22.599,17.163,-1.532,15.025,13.753,11.41,18.652,2.147,18.532,15.962,3.269,3.736,10.329,19.97,17.785,18.051,18.898,15.702,7.871,11.302,-2.294,8.554,12.343,1.251,6.96,-2.629,8.873,16.047,-8.782,12.899,10.225,9.315,-5.192,12.766,16.107,6.562,-5.66,17.423,12.808,-3.126,15.656,16.64,11.777,2.623,0.044,14.565,-4.066,-3.846,17.945,4.099,-1.255,17.516,14.967,11.014,0.469,8.187,3.509,11.84,5.875,5.157,6.9,6.934,5.422,16.331,0.473,16.261,13.806,4.295,0.549,-9.918,-11.18,5.476,12.626,2.958,5.362,5.306,12.224,4.284,1.903,-0.134,4.345,3.144,-2.09,1.189,7.117],[23.224,23.942,12.412,32.882,26.665,15.181,28.513,25.233,24.085,8.588,28.166,24.683,20.676,18.842,19.396,21.229,19.624,19.357,12.29,12.056,11.981,19.572,16.248,-0.763,12.352,16.794,19.429,3.147,17.279,14.712,1.602,-3.512,10.487,8.638,10.849,8.324,14.247,16.777,-7.153,1.807,11.418,13.075,-4.107,4.812,17.471,16.355,0.515,13.732,-2.652,4.057,11.617,3.723,6.261,6.55,4.111,5.998,-0.552,6.137,-9.904,2.288,5.185,16.988,12.318,-0.654,24.691,8.419,23.804,33.932,24.361,19.333,21.863,23.662,22.929,34.139,29.527,28.736,22.02,25.252,27.939,24.567,14.261,18.315,10.937,26.999,11.749,26.516,14.706,24.386,27.559,9.712,20.078,26.564,20.447,20.254,11.382,0.6,20.315,18.293,14.514,10.8,13.359,18.0,12.157,21.066,13.966,20.165,18.185,22.664,16.62,-1.951,14.173,13.582,11.257,18.813,2.291,18.722,15.849,3.092,3.308,10.518,20.055,18.11,16.794,18.94,15.68,7.802,10.926,-2.097,8.665,12.342,0.968,7.253,-2.391,8.707,15.393,-8.782,13.223,10.229,9.42,-4.463,12.589,15.661,6.641,-5.944,17.619,12.542,-3.47,15.95,16.438,11.476,2.89,0.092,14.129,-3.333,-3.864,17.318,4.42,-1.304,17.526,15.185,10.707,1.012,7.844,3.082,11.767,5.629,5.083,7.056,6.833,5.846,15.667,0.601,15.838,13.853,4.668,0.888,-10.029,-11.198,5.385,13.024,2.899,5.319,5.05,12.267,4.454,1.933,-0.626,3.975,3.191,-1.791,1.291,7.389],[23.224,23.872,12.433,32.849,26.588,15.137,28.534,25.194,24.234,8.686,28.067,24.682,20.616,18.911,19.31,21.078,19.697,19.436,12.298,12.063,12.073,19.526,16.109,-0.779,12.4,16.499,19.31,3.232,17.34,14.867,1.502,-3.402,10.425,8.397,10.888,8.287,14.425,16.832,-7.055,1.966,11.389,12.991,-4.056,4.959,17.424,16.194,0.787,13.469,-2.93,4.001,11.611,3.744,6.54,6.473,4.419,6.259,-0.527,6.141,-9.954,2.208,5.083,16.626,12.378,-0.725,24.491,8.767,24.17,33.697,24.514,19.845,22.3,23.599,23.432,34.051,28.79,28.652,21.885,25.049,27.709,24.449,14.158,18.918,11.041,27.158,11.662,26.425,15.176,23.99,27.274,9.507,20.195,26.564,20.379,19.889,11.467,0.77,19.561,18.359,14.491,10.774,13.534,17.959,11.7,21.164,13.839,19.774,18.21,22.484,16.68,-1.88,13.552,13.516,11.168,19.065,2.125,18.953,16.228,2.936,4.126,10.906,19.966,18.365,17.615,18.767,15.673,7.915,11.407,-2.228,8.592,11.714,1.243,7.299,-2.378,8.904,15.594,-8.463,13.497,9.99,9.165,-4.786,12.217,15.692,6.322,-5.617,17.592,12.916,-3.642,16.232,15.934,11.409,2.875,0.093,13.696,-3.1,-4.21,17.848,4.737,-0.895,17.389,15.121,10.747,1.785,7.696,3.009,11.788,5.301,5.202,6.795,6.75,6.193,15.54,0.935,15.573,13.302,5.003,0.958,-9.768,-11.332,5.402,13.52,2.954,5.433,5.995,12.74,4.557,1.407,-0.974,3.974,3.492,-1.893,1.226,7.449],[23.287,23.734,12.343,32.811,26.631,15.216,28.699,25.006,24.328,8.76,27.912,24.641,20.593,19.1,19.312,20.886,19.772,19.641,12.362,12.027,12.175,19.524,15.944,-0.694,12.411,16.397,19.365,3.257,17.379,14.871,1.401,-3.323,10.28,8.266,10.801,8.328,14.58,16.827,-6.97,2.035,11.286,12.938,-3.943,5.07,17.309,16.041,1.104,13.235,-3.133,4.264,11.639,3.82,6.895,6.428,4.734,6.486,-0.537,6.226,-9.962,2.015,4.855,16.368,12.33,-0.908,23.994,8.608,23.649,33.958,24.805,19.8,22.203,23.334,23.48,33.955,28.065,28.767,21.986,24.794,28.616,24.654,13.89,18.657,10.894,27.133,11.649,26.568,15.081,23.824,27.726,9.565,20.632,26.399,20.145,20.166,11.116,0.868,19.714,18.108,14.143,10.925,13.757,18.164,12.159,20.734,13.877,20.069,18.018,21.939,16.374,-1.546,13.603,13.662,11.208,18.8,2.391,18.52,16.056,2.946,4.302,11.552,19.84,18.15,17.713,17.969,15.61,7.613,11.514,-2.306,8.685,10.799,1.181,6.526,-2.237,8.347,16.414,-8.502,13.836,10.153,9.312,-5.133,12.744,15.426,6.758,-5.204,17.692,12.699,-3.919,16.287,15.874,11.478,3.071,0.244,13.963,-3.314,-4.351,18.076,5.026,-0.798,16.939,14.371,11.185,1.545,8.196,3.416,11.798,5.261,5.311,6.913,6.781,6.564,15.725,0.837,15.105,13.393,5.185,0.577,-10.196,-11.532,5.929,13.435,2.843,5.364,6.415,12.192,4.23,1.344,-0.645,4.271,3.864,-2.265,1.25,7.358],[23.404,23.6,12.075,32.888,26.753,15.286,28.848,24.791,24.302,8.738,27.957,24.677,20.596,19.158,19.355,20.774,19.734,19.802,12.41,12.109,12.278,19.474,15.734,-0.497,12.405,16.427,19.289,3.371,17.16,14.86,1.222,-3.26,10.101,8.137,10.721,8.411,14.697,16.859,-6.899,2.056,11.27,12.973,-3.898,5.327,17.097,15.849,1.204,13.07,-3.184,4.467,11.61,3.873,7.069,6.463,4.993,6.668,-0.545,6.232,-10.111,1.964,4.782,16.262,12.269,-1.136,24.432,8.583,24.224,34.058,24.892,19.319,21.982,23.181,23.139,34.023,28.075,28.617,21.956,24.664,28.86,24.583,13.895,18.281,10.399,26.954,11.802,27.083,14.765,24.124,28.42,9.533,20.564,26.237,20.731,19.74,11.382,1.0,19.674,18.048,14.03,11.177,14.06,18.308,11.956,20.749,13.981,20.858,18.056,21.948,16.151,-1.785,14.044,13.557,11.302,19.579,2.773,18.72,15.829,2.62,3.852,11.783,19.893,18.221,17.541,18.097,15.078,7.106,10.967,-1.838,8.33,11.072,1.093,6.739,-2.61,7.794,15.933,-8.404,13.923,10.086,9.326,-4.514,12.52,15.503,7.087,-5.652,18.048,12.161,-3.935,16.46,15.925,11.102,3.473,0.492,14.016,-3.655,-4.587,18.089,4.879,-0.601,17.257,13.855,11.014,1.442,8.112,3.949,12.008,5.556,5.571,7.438,6.537,6.604,15.677,0.56,14.811,13.64,5.344,0.367,-10.348,-11.642,6.246,12.938,2.962,5.373,6.386,12.297,3.973,1.515,-0.421,4.379,3.973,-2.323,1.173,7.36],[23.497,23.599,11.79,33.085,26.843,15.245,28.895,24.649,24.408,8.629,28.076,24.702,20.605,19.184,19.348,20.632,19.657,19.962,12.455,12.21,12.347,19.443,15.506,-0.333,12.427,16.573,19.187,3.506,16.958,14.749,1.046,-3.181,9.855,8.005,10.807,8.428,14.794,16.941,-6.894,2.097,11.234,12.727,-3.919,5.72,16.91,15.679,1.236,12.943,-3.167,4.601,11.647,3.918,6.93,6.546,5.171,6.79,-0.481,6.253,-10.247,2.099,4.799,16.326,12.189,-1.295,24.255,8.622,24.137,34.074,24.556,18.931,22.192,23.176,23.514,34.283,28.808,28.709,21.786,24.423,28.389,24.841,14.131,18.269,10.214,27.057,11.779,27.742,14.625,24.146,28.178,9.426,20.234,26.343,20.849,19.691,11.533,0.737,19.601,18.168,14.124,11.044,13.799,18.409,12.288,20.999,14.131,21.173,17.838,21.963,16.348,-1.426,14.592,13.875,11.422,19.792,2.47,18.99,15.792,2.34,4.129,11.616,19.738,17.812,17.761,18.26,15.054,6.803,10.761,-1.865,8.024,11.965,0.656,6.977,-2.106,7.91,16.21,-8.665,13.829,9.864,9.376,-5.119,12.316,15.802,7.144,-5.804,17.921,12.639,-3.46,16.648,15.351,11.032,3.154,0.346,13.613,-3.493,-4.744,17.233,4.717,-0.582,17.275,13.713,10.6,2.126,8.086,3.995,11.901,6.214,5.508,7.076,6.654,6.842,15.108,0.417,15.254,13.356,5.453,0.331,-10.554,-11.781,6.354,12.855,3.259,5.59,5.987,12.6,4.33,1.475,-1.005,4.099,3.908,-2.159,1.351,7.333],[23.498,23.471,11.642,33.306,27.024,15.286,28.723,24.567,24.61,8.451,28.035,24.714,20.605,19.193,19.338,20.499,19.595,19.984,12.654,12.172,12.427,19.42,15.351,-0.226,12.56,16.796,19.184,3.641,17.047,14.597,0.869,-3.076,9.718,7.979,10.954,8.289,14.77,16.866,-7.08,2.082,11.167,12.351,-3.982,5.955,16.769,15.446,1.388,12.847,-2.979,4.586,11.802,3.925,6.869,6.742,5.234,6.836,-0.35,6.157,-10.346,2.287,4.85,16.355,12.109,-1.265,24.135,8.57,23.842,34.539,24.55,19.181,22.137,23.034,23.616,34.45,29.487,29.019,22.032,24.594,28.704,25.152,14.052,18.389,10.759,27.062,11.044,27.809,14.377,24.265,27.41,9.553,20.337,26.648,20.629,19.635,11.365,0.99,19.836,18.153,14.151,11.04,13.762,18.618,12.363,20.853,14.024,21.01,18.071,21.542,16.813,-1.653,14.853,14.033,11.103,19.297,2.506,18.968,15.606,2.171,4.675,11.585,20.143,17.517,17.374,18.054,15.862,6.881,10.782,-2.003,7.972,12.378,0.278,6.494,-2.045,8.19,16.133,-8.601,14.121,9.757,9.568,-5.144,12.297,15.645,7.465,-5.663,17.943,12.897,-3.542,16.501,14.99,11.227,2.959,0.303,13.648,-3.985,-4.465,16.787,5.27,-0.48,16.79,13.778,10.272,2.341,8.254,3.373,11.45,6.009,5.495,6.744,6.689,6.799,15.346,0.92,15.141,13.068,5.594,0.227,-10.619,-12.075,6.47,13.266,3.624,5.802,5.525,12.296,4.654,1.549,-1.346,3.969,4.135,-2.148,1.437,7.085],[23.437,23.329,11.698,33.464,27.288,15.395,28.486,24.552,24.699,8.336,27.995,24.826,20.679,19.129,19.187,20.436,19.529,19.836,12.773,12.043,12.471,19.247,15.321,-0.159,12.677,17.013,19.295,3.869,17.197,14.574,0.644,-3.052,9.621,8.006,11.037,8.128,14.707,16.694,-7.337,2.065,11.065,12.119,-4.078,6.15,16.741,15.206,1.533,12.879,-2.721,4.446,11.891,3.893,6.959,6.933,5.187,6.865,-0.367,6.101,-10.468,2.516,4.896,16.277,12.148,-1.049,24.249,8.386,24.848,34.292,25.112,19.75,22.024,22.96,23.163,34.672,29.629,28.902,21.698,24.66,28.601,24.698,13.914,18.63,10.407,26.862,10.913,27.468,15.047,24.149,27.231,9.38,20.472,26.228,20.78,19.432,11.943,1.459,19.617,17.861,13.99,10.934,14.046,18.715,11.865,20.651,13.82,21.074,18.39,21.495,16.376,-1.593,14.716,13.755,10.937,19.264,3.475,19.022,14.741,2.131,4.646,11.307,19.817,18.096,17.995,18.187,16.017,6.801,10.51,-1.708,7.884,12.286,0.113,6.82,-2.083,8.282,15.331,-8.627,14.025,9.785,9.496,-4.695,12.035,15.188,7.622,-5.716,17.836,12.194,-3.586,16.479,15.049,11.703,3.25,0.316,13.666,-4.279,-3.906,17.073,5.894,-0.212,16.367,13.841,10.358,1.999,8.881,3.503,11.12,5.862,5.441,6.834,6.612,6.825,15.829,1.102,14.573,12.836,5.739,0.124,-10.499,-11.944,6.587,13.224,3.066,6.117,5.866,12.46,4.491,1.742,-0.761,4.129,3.96,-2.044,1.586,6.451],[23.328,23.197,11.785,33.357,27.472,15.478,28.325,24.63,24.736,8.346,28.04,24.804,20.783,19.11,18.858,20.479,19.46,19.695,12.874,12.003,12.455,19.048,15.257,-0.036,12.572,17.148,19.445,4.242,17.336,14.509,0.477,-2.959,9.385,8.069,10.952,8.036,14.622,16.51,-7.578,2.014,11.056,11.888,-4.284,6.459,16.782,14.982,1.69,12.951,-2.426,4.413,11.948,3.757,7.158,7.115,5.025,6.906,-0.395,6.11,-10.412,2.687,4.962,16.204,12.127,-0.738,23.937,8.069,24.446,34.109,25.112,19.715,22.418,23.137,22.99,34.863,29.162,28.498,21.769,24.043,28.866,24.663,14.187,18.472,10.204,27.334,11.782,27.73,15.865,24.083,27.635,9.045,20.243,26.469,20.412,19.667,11.741,1.387,18.894,17.782,13.9,11.099,14.22,18.344,12.686,20.534,13.873,20.68,18.168,21.469,16.471,-1.303,14.682,13.8,11.085,18.876,3.34,18.721,15.093,1.942,4.691,11.422,19.843,18.393,18.146,18.158,15.43,7.078,10.234,-1.557,7.658,12.038,0.118,6.637,-2.078,8.069,15.906,-9.19,13.766,9.742,9.253,-5.292,12.071,15.216,8.021,-6.136,17.417,11.846,-3.041,16.437,15.062,11.653,3.498,0.629,13.529,-3.644,-3.667,17.531,5.869,-0.146,16.333,14.069,10.462,1.504,8.887,4.363,10.811,6.133,5.415,6.463,6.822,6.649,15.501,1.343,14.775,13.107,5.771,0.613,-10.566,-12.018,6.611,12.864,2.865,6.417,6.359,12.76,4.121,1.929,-0.393,3.997,3.582,-1.683,1.386,6.349],[23.192,23.102,11.842,33.15,27.681,15.486,28.276,24.704,24.551,8.311,28.111,24.702,20.818,19.016,18.617,20.539,19.441,19.504,13.132,12.146,12.505,18.843,15.315,-0.014,12.37,17.17,19.581,4.484,17.443,14.514,0.312,-2.863,9.101,8.003,10.8,8.005,14.5,16.337,-7.739,2.0,11.119,11.725,-4.52,6.815,16.858,14.934,1.7,12.993,-2.167,4.726,11.922,3.602,7.411,7.33,4.863,6.869,-0.455,6.101,-10.33,2.863,5.054,16.051,12.088,-0.351,23.651,8.014,23.69,34.253,24.581,19.307,22.488,23.308,23.294,34.435,28.758,28.917,21.823,23.778,28.958,24.857,14.492,17.833,10.131,28.034,11.71,28.133,15.422,24.352,27.432,9.191,20.499,26.741,20.261,19.2,11.723,1.304,18.804,18.015,13.505,11.787,14.172,17.836,12.452,20.698,14.017,20.17,18.258,21.577,16.867,-1.363,14.081,13.74,11.463,19.34,3.341,18.198,15.402,1.919,5.231,11.595,20.428,18.447,18.04,18.651,14.993,7.307,10.106,-1.521,7.311,11.479,0.113,6.623,-2.025,7.889,16.621,-9.498,13.454,9.634,9.121,-5.491,11.597,15.711,8.121,-6.377,17.205,11.729,-2.686,16.231,14.576,11.176,3.491,0.629,13.515,-3.529,-3.521,17.7,5.861,-0.047,16.282,14.295,10.271,1.755,8.998,3.948,11.292,6.48,5.241,7.188,6.688,6.375,15.245,1.317,14.922,13.071,5.917,1.127,-10.376,-12.095,6.963,12.997,3.157,6.392,6.49,12.67,4.055,1.94,-0.534,4.371,3.375,-1.501,1.343,6.528],[23.19,23.15,11.741,33.122,27.976,15.43,28.196,24.76,24.17,8.215,28.267,24.744,20.789,18.872,18.343,20.639,19.531,19.432,13.206,12.323,12.6,18.579,15.298,-0.105,12.189,17.133,19.77,4.544,17.484,14.507,0.109,-2.864,8.76,7.926,10.607,8.005,14.265,16.399,-7.727,2.157,11.12,11.648,-4.681,7.083,16.979,15.019,1.677,13.074,-2.186,4.888,11.838,3.433,7.576,7.527,4.912,6.876,-0.537,6.186,-10.368,2.896,5.144,15.85,12.037,0.029,23.795,8.081,23.871,34.214,24.563,18.94,22.253,23.443,23.085,34.217,29.179,29.211,21.543,24.108,28.725,24.876,14.21,17.891,10.304,28.541,11.155,28.174,14.535,24.308,27.598,9.383,20.552,26.506,20.567,18.939,12.575,1.269,19.515,18.408,13.609,12.319,14.239,17.948,12.732,20.983,14.211,20.373,18.609,21.334,16.648,-1.45,13.479,13.866,11.865,19.284,3.672,18.268,15.341,1.82,5.691,11.297,20.054,18.507,18.196,18.73,14.985,7.557,10.094,-1.839,7.271,10.782,-0.169,6.646,-1.647,8.025,15.684,-9.063,13.317,9.491,9.304,-5.601,11.621,15.805,8.297,-6.459,17.103,11.613,-3.155,15.91,14.53,11.18,3.297,0.43,13.587,-3.801,-3.63,17.829,6.237,-0.204,16.229,14.456,9.896,2.094,9.3,3.404,12.405,6.799,4.851,7.426,6.936,6.011,15.219,1.613,14.855,12.581,5.76,1.371,-10.221,-11.824,7.318,13.093,4.147,6.509,6.534,12.485,4.045,2.052,-0.53,4.648,3.387,-1.398,1.339,6.466],[23.235,23.305,11.665,33.347,28.287,15.219,28.248,24.851,23.825,8.104,28.409,24.719,20.708,18.884,18.151,20.645,19.692,19.481,13.264,12.496,12.542,18.447,15.276,-0.158,12.183,17.128,19.772,4.621,17.593,14.504,-0.1,-2.986,8.346,8.001,10.332,8.074,14.026,16.436,-7.674,2.336,11.03,11.724,-4.78,7.312,17.18,15.115,1.601,13.213,-2.46,4.909,11.785,3.213,7.571,7.673,4.96,6.97,-0.432,6.292,-10.416,2.962,5.268,15.705,11.914,0.255,23.588,7.951,23.932,34.32,24.7,18.101,22.478,23.334,22.862,34.595,29.079,29.003,22.168,24.156,28.592,24.919,14.402,18.094,10.282,29.132,10.997,28.1,14.899,24.071,27.231,9.305,20.375,26.451,20.404,19.002,12.427,1.337,20.638,18.241,13.84,11.917,14.214,18.149,12.675,21.166,14.414,20.171,18.516,21.633,16.567,-1.71,12.969,13.957,11.999,18.674,3.416,18.428,15.209,1.533,6.023,11.341,20.3,18.512,17.831,18.247,14.956,7.886,9.921,-2.103,7.059,11.1,-0.478,6.464,-1.61,8.457,15.706,-8.983,13.054,9.472,9.614,-5.365,12.09,16.181,8.328,-5.954,17.11,11.697,-3.312,15.785,14.874,11.561,3.039,0.513,13.682,-4.582,-3.697,17.776,6.641,-0.229,15.942,14.509,9.846,2.36,8.825,3.774,12.748,7.042,4.743,6.496,6.909,6.391,15.134,1.662,14.139,13.004,5.55,1.926,-10.411,-12.05,6.86,12.481,3.903,6.567,6.738,12.54,3.86,1.953,-0.589,4.512,3.598,-1.094,1.399,7.021],[23.236,23.367,11.634,33.738,28.568,15.087,28.23,24.866,23.464,7.968,28.443,24.588,20.718,18.756,18.132,20.682,19.879,19.511,13.306,12.7,12.38,18.404,15.322,-0.152,12.265,17.132,19.665,4.688,17.746,14.489,-0.159,-3.16,8.032,8.114,10.085,8.174,13.853,16.392,-7.625,2.357,10.844,11.919,-4.853,7.542,17.411,15.211,1.519,13.314,-2.659,4.892,11.79,3.003,7.601,7.58,4.919,7.011,-0.206,6.331,-10.564,3.016,5.284,15.473,11.824,0.48,24.054,8.083,23.745,34.761,24.502,17.983,22.161,23.585,23.296,34.95,29.028,29.265,21.912,24.244,28.467,24.891,14.11,17.597,10.111,29.883,11.282,28.701,14.994,24.083,27.259,9.09,20.172,26.546,20.48,19.134,11.968,0.934,20.944,18.292,14.339,11.365,14.031,18.238,12.988,21.232,14.433,20.149,18.445,21.832,16.85,-1.867,12.763,13.888,11.873,19.181,3.571,17.955,14.862,1.066,6.112,11.227,19.987,18.789,17.93,18.229,15.02,8.286,9.259,-2.259,6.451,11.326,-1.167,6.995,-2.036,8.367,16.518,-8.991,13.013,9.882,9.097,-5.251,12.174,16.753,8.915,-5.959,17.271,12.082,-2.995,15.606,14.908,11.747,3.327,0.671,13.638,-5.198,-3.879,17.145,6.616,-0.264,16.116,14.683,9.749,2.389,9.001,4.152,12.177,6.547,4.548,7.059,7.025,6.505,15.197,1.776,13.894,12.941,5.796,2.054,-10.114,-12.282,6.798,12.17,3.306,6.518,6.707,12.145,3.827,2.183,-0.404,4.649,4.049,-0.709,1.603,6.869],[23.278,23.354,11.749,34.143,28.864,15.16,28.023,24.925,23.145,7.791,28.454,24.445,20.73,18.624,18.227,20.61,19.983,19.623,13.326,12.753,12.192,18.453,15.469,-0.324,12.332,17.22,19.496,4.698,17.902,14.469,-0.179,-3.311,7.839,8.227,9.834,8.456,13.846,16.463,-7.674,2.242,10.638,12.021,-4.943,7.826,17.516,15.315,1.559,13.352,-2.45,4.938,11.653,2.873,7.616,7.431,4.936,7.007,0.05,6.385,-10.725,3.125,5.301,15.364,11.784,0.636,24.151,7.86,23.01,35.002,24.126,18.413,22.172,23.662,23.245,35.422,29.244,29.453,21.954,24.557,28.487,24.937,13.721,17.444,10.217,30.628,11.366,28.622,14.326,24.334,27.194,9.054,20.526,26.186,20.466,19.021,11.711,0.691,21.113,18.469,14.381,10.968,13.899,18.527,12.615,21.151,14.667,20.285,18.791,21.75,16.4,-1.659,12.626,13.9,12.033,19.188,3.757,17.949,14.936,1.084,5.913,11.028,20.074,18.781,18.182,18.027,14.958,8.001,9.085,-2.218,6.273,10.889,-1.413,6.641,-2.176,7.695,16.049,-8.993,13.066,10.099,8.664,-5.42,12.328,17.137,9.071,-6.211,17.364,12.221,-3.42,15.492,15.068,11.325,3.378,0.503,13.922,-5.38,-3.604,16.864,6.452,-0.343,16.496,14.691,9.352,2.12,8.977,4.24,11.298,6.071,4.038,7.64,7.107,6.609,14.543,1.716,14.059,12.389,6.149,2.02,-10.287,-12.45,7.268,12.315,3.334,6.199,6.644,12.288,3.787,2.131,-0.159,5.262,4.123,-0.085,1.931,6.723],[23.306,23.348,11.92,34.382,29.125,15.309,27.801,25.072,22.846,7.433,28.565,24.366,20.828,18.583,18.345,20.475,20.007,19.755,13.207,12.851,12.079,18.605,15.642,-0.574,12.125,17.23,19.394,4.552,17.981,14.347,-0.198,-3.353,7.762,8.171,9.643,8.749,13.929,16.569,-7.859,2.119,10.548,12.005,-5.038,8.055,17.537,15.335,1.646,13.429,-2.159,4.935,11.43,2.832,7.523,7.256,5.038,7.142,0.245,6.544,-10.948,3.093,5.459,15.317,11.629,0.706,23.878,7.194,22.6,35.28,23.879,18.854,22.216,23.38,23.29,35.752,28.796,29.066,21.929,24.557,28.325,24.795,13.961,17.958,10.495,30.818,11.24,28.352,14.57,24.029,26.789,8.88,20.818,26.155,20.119,18.803,12.351,0.929,21.239,18.339,14.202,11.557,13.823,18.449,12.663,21.061,14.687,20.329,19.003,21.698,16.836,-2.104,12.689,13.973,12.39,19.196,3.513,18.393,15.704,0.914,5.86,10.835,19.868,18.782,17.93,17.982,14.859,7.782,9.272,-2.278,6.475,10.054,-1.382,6.671,-2.308,8.193,15.735,-9.307,13.311,10.463,8.62,-5.738,11.931,17.521,8.96,-6.333,17.515,11.683,-2.997,15.686,15.505,10.49,3.232,0.369,13.9,-5.427,-3.166,17.287,6.586,-0.043,16.565,14.725,9.119,1.495,8.753,3.956,10.958,6.26,4.32,7.321,7.231,6.105,14.328,2.182,14.162,12.702,5.802,2.353,-10.389,-12.455,7.551,12.74,3.8,6.517,6.962,12.382,3.513,1.9,0.08,5.695,3.577,0.349,2.189,6.772],[23.306,23.354,11.99,34.503,29.166,15.554,27.577,25.062,22.591,6.939,28.625,24.4,20.966,18.564,18.405,20.413,20.043,19.912,13.136,12.969,12.036,18.85,15.86,-0.795,11.836,17.181,19.305,4.319,18.016,14.231,-0.252,-3.347,7.768,8.114,9.499,9.008,14.18,16.654,-8.038,2.057,10.477,11.833,-5.191,8.146,17.652,15.485,1.69,13.526,-1.996,4.869,11.262,2.914,7.537,7.196,4.998,7.225,0.36,6.618,-11.172,2.967,5.742,15.28,11.601,0.825,23.848,6.755,22.941,35.388,23.596,18.894,22.368,23.588,23.542,35.609,28.469,29.719,21.707,24.664,28.692,24.981,14.216,18.148,10.482,30.638,11.334,28.796,14.917,23.358,27.17,8.342,20.535,26.205,20.048,19.189,12.81,0.556,21.354,18.221,14.027,12.086,13.684,18.532,12.353,20.743,14.829,20.672,18.805,21.352,16.806,-2.37,12.734,13.619,12.737,19.268,3.086,18.512,15.794,0.937,5.32,10.76,19.51,18.98,17.913,17.938,14.584,8.126,9.378,-2.464,6.512,10.31,-1.341,7.084,-2.139,8.56,16.329,-9.449,13.05,10.493,8.923,-5.773,12.171,17.366,9.406,-6.463,17.306,11.544,-2.448,15.887,15.067,10.243,3.502,0.68,13.93,-5.386,-3.532,18.303,6.743,-0.136,16.164,14.722,9.45,1.953,8.722,3.72,11.168,6.082,4.4,6.908,7.434,6.03,14.424,1.824,13.964,12.859,5.697,2.657,-10.099,-12.92,7.815,12.093,3.902,5.889,6.743,11.749,3.786,2.008,-0.005,5.788,3.287,0.419,2.215,7.131],[23.487,23.366,11.942,34.536,29.07,15.771,27.457,25.002,22.446,6.418,28.762,24.395,21.068,18.539,18.357,20.416,20.178,20.106,13.099,13.207,12.097,19.152,15.917,-0.958,11.69,17.004,19.122,4.104,18.045,14.081,-0.341,-3.336,7.836,8.217,9.452,9.115,14.408,16.679,-8.071,2.245,10.405,11.641,-5.361,8.213,17.869,15.572,1.456,13.636,-2.029,4.777,11.098,3.036,7.484,7.206,4.945,7.334,0.329,6.489,-11.355,2.8,6.04,15.204,11.545,0.958,24.209,6.901,23.116,35.501,23.265,18.782,22.673,23.889,23.295,35.627,28.296,29.897,22.001,24.163,28.792,24.935,14.446,17.771,10.398,30.451,11.369,28.945,14.845,23.536,26.579,7.579,20.497,26.114,20.257,19.32,12.806,0.312,21.702,18.466,14.298,11.785,13.72,18.898,12.335,20.999,15.18,20.804,18.371,21.225,16.638,-2.495,13.347,13.469,12.5,19.428,3.181,18.377,15.706,1.062,5.153,10.551,19.882,19.185,18.035,17.528,14.734,8.204,9.217,-2.49,6.541,10.678,-1.08,6.372,-2.004,7.809,16.37,-9.282,13.35,10.731,8.787,-5.23,12.356,17.154,9.404,-6.441,17.57,11.845,-2.745,15.846,15.247,10.585,3.784,0.784,14.373,-5.133,-3.512,18.678,6.981,-0.387,16.707,14.373,9.42,2.008,8.528,3.436,11.629,6.292,3.922,7.258,7.859,6.14,14.089,1.227,14.11,12.934,5.789,2.54,-10.187,-12.858,7.902,11.767,3.79,5.901,6.697,11.029,4.266,2.045,-0.115,5.927,3.634,1.033,2.13,7.208],[23.58,23.481,11.849,34.506,29.021,15.774,27.421,24.901,22.378,6.116,28.863,24.388,21.257,18.623,18.259,20.478,20.53,20.252,13.059,13.385,12.178,19.318,15.918,-0.922,11.776,16.781,18.966,3.965,18.065,13.969,-0.374,-3.346,7.805,8.028,9.364,9.04,14.609,16.618,-8.02,2.616,10.332,11.624,-5.368,8.377,18.042,15.675,1.244,13.807,-2.112,4.597,11.037,2.961,7.393,7.275,4.946,7.401,0.202,6.217,-11.45,2.528,6.388,15.118,11.439,1.071,24.415,7.054,22.847,35.53,23.138,18.455,22.224,23.713,23.61,35.949,28.236,29.586,22.063,23.922,28.595,25.205,14.857,17.613,10.603,30.272,11.246,28.702,14.978,24.028,25.968,7.212,20.645,26.074,20.193,18.779,12.576,0.33,21.773,18.843,14.407,10.928,13.735,18.922,12.796,21.69,15.237,21.225,18.848,21.295,17.063,-2.605,13.876,13.548,12.66,19.261,2.731,18.654,15.616,0.948,5.261,10.742,19.777,19.259,17.57,17.837,15.111,7.986,9.186,-2.479,6.451,10.383,-0.679,6.753,-2.091,7.375,16.27,-9.142,13.648,10.792,8.475,-5.502,12.017,17.116,9.522,-6.297,17.797,11.537,-3.111,15.752,15.525,10.906,3.285,0.713,14.651,-5.063,-3.307,18.409,7.232,-0.484,16.867,14.715,9.356,1.518,8.667,3.663,10.982,6.527,3.692,7.545,8.237,6.476,14.037,0.861,13.816,13.052,5.758,2.592,-10.646,-12.709,7.806,12.007,3.45,6.505,6.713,10.932,4.224,2.042,0.094,6.127,3.896,1.542,2.074,6.989],[23.578,23.64,11.796,34.623,28.982,15.793,27.367,24.729,22.327,6.09,28.734,24.414,21.395,18.699,18.124,20.506,20.982,20.057,13.036,13.364,12.197,19.364,15.917,-0.76,11.756,16.777,18.878,3.848,18.156,13.985,-0.345,-3.288,7.665,7.855,9.177,8.897,14.739,16.541,-7.851,2.837,10.236,11.565,-5.336,8.578,18.058,15.864,1.317,14.013,-2.087,4.411,11.088,2.726,7.373,7.395,4.889,7.26,0.24,5.98,-11.517,2.222,6.711,15.143,11.521,1.162,24.332,6.753,22.697,35.257,23.207,18.168,22.957,23.378,24.097,36.023,28.495,29.834,21.913,24.292,29.158,25.058,15.629,17.712,10.316,30.36,11.085,28.671,14.711,23.707,25.929,7.25,21.29,26.235,20.486,19.067,12.342,0.492,21.862,19.542,14.631,10.889,13.925,18.563,12.532,22.035,15.148,21.163,19.068,21.253,16.569,-2.435,14.059,13.515,13.11,19.277,2.805,18.942,15.285,1.117,5.28,10.975,19.277,18.872,17.098,17.637,14.978,7.873,9.175,-2.484,6.106,10.353,-0.795,6.719,-2.081,7.432,15.612,-9.288,13.672,10.512,8.37,-6.047,12.199,17.803,9.649,-6.205,17.586,11.647,-3.197,16.105,15.155,11.064,3.101,1.081,14.613,-4.968,-3.102,17.765,7.646,-0.557,16.393,14.92,9.213,1.728,9.083,3.891,10.2,6.544,3.628,6.677,8.461,6.558,14.126,1.03,13.796,12.693,5.572,2.414,-10.982,-12.61,7.943,12.008,2.915,6.237,6.387,11.388,4.048,1.553,0.335,6.342,3.628,2.031,2.063,6.66],[23.566,23.689,11.785,34.759,28.983,16.016,27.175,24.681,22.347,6.157,28.663,24.54,21.558,18.79,18.036,20.586,21.519,19.789,12.958,13.332,12.208,19.325,15.824,-0.677,11.584,16.794,18.731,3.793,18.207,14.058,-0.235,-3.177,7.513,7.734,9.084,8.709,14.84,16.252,-7.732,2.92,10.133,11.523,-5.426,8.716,17.957,15.717,1.37,14.133,-2.006,4.18,11.217,2.613,7.338,7.427,4.727,6.986,0.489,5.898,-11.511,1.898,6.833,15.214,11.675,1.174,24.073,6.619,22.851,35.534,23.224,18.439,22.759,23.051,24.097,36.108,28.035,29.457,22.065,24.227,29.489,24.709,15.685,17.847,10.178,30.31,11.244,29.124,14.545,23.581,26.644,7.585,21.414,26.06,20.548,18.868,11.963,0.618,21.935,19.795,14.556,11.404,14.018,18.413,12.244,22.448,15.218,20.916,18.666,21.435,16.532,-2.16,14.217,13.291,12.889,19.478,3.367,18.782,15.748,1.162,5.213,11.37,19.49,19.579,17.81,17.642,14.35,8.014,8.808,-2.234,5.929,9.944,-1.251,5.963,-1.878,7.613,15.658,-9.106,13.795,10.482,7.826,-6.321,12.289,18.716,9.447,-6.2,17.519,11.543,-2.93,16.373,15.702,10.774,3.68,1.145,14.644,-4.44,-3.091,18.052,7.684,-0.492,16.88,15.06,8.934,2.067,8.954,3.84,10.333,6.652,3.461,6.157,8.377,5.888,14.361,1.185,13.906,12.875,5.387,2.275,-10.714,-13.063,7.958,11.849,2.467,6.021,6.064,11.964,4.056,1.526,0.439,6.759,3.242,2.51,1.967,6.686],[23.551,23.59,11.743,34.848,29.12,16.249,26.893,24.625,22.511,6.301,28.709,24.493,21.623,18.897,17.956,20.782,21.971,19.754,12.815,13.457,12.251,19.246,15.785,-0.739,11.329,16.986,18.752,3.82,18.216,14.017,-0.156,-3.032,7.382,7.508,8.961,8.568,14.947,15.899,-7.641,2.93,9.992,11.469,-5.535,8.694,18.046,15.631,1.34,14.166,-1.975,3.875,11.357,2.698,7.179,7.347,4.511,6.682,0.584,5.973,-11.443,1.772,6.851,15.271,11.774,1.265,24.123,6.635,22.961,35.949,22.934,18.925,22.926,23.272,23.975,36.036,27.812,29.213,22.131,23.844,29.25,24.724,15.593,17.899,10.135,30.069,11.575,28.734,15.443,24.156,26.846,7.745,21.615,26.235,20.508,18.726,11.611,0.856,22.058,20.131,14.122,11.71,13.957,18.232,12.345,22.843,15.327,21.124,18.966,21.63,16.606,-2.207,14.412,13.071,12.885,18.919,2.868,18.695,16.044,0.619,5.205,11.426,19.551,19.475,17.523,17.895,14.763,8.324,9.076,-2.322,6.188,9.708,-1.199,6.327,-1.892,7.564,16.465,-8.961,13.797,10.267,7.629,-6.175,12.141,18.733,9.964,-5.996,17.276,11.335,-2.404,16.617,15.494,10.482,4.119,1.301,14.453,-3.917,-3.483,17.881,7.721,-0.25,16.585,15.334,8.767,1.766,8.546,3.61,10.906,7.273,3.64,7.192,8.22,5.658,14.205,0.418,14.026,13.292,5.023,2.17,-11.04,-13.032,7.514,12.135,2.407,6.163,6.067,12.236,4.066,1.285,0.783,6.697,2.931,2.298,2.124,6.683],[23.515,23.456,11.706,35.04,29.24,16.569,26.633,24.47,22.767,6.519,28.728,24.596,21.726,18.967,17.908,21.01,22.243,19.705,12.73,13.634,12.273,19.238,15.749,-0.779,11.126,17.156,18.862,3.828,18.222,14.028,-0.298,-3.015,7.542,7.503,8.767,8.431,15.042,15.867,-7.494,2.869,9.731,11.32,-5.588,8.66,18.166,15.581,1.246,14.103,-1.904,3.598,11.468,2.894,6.967,7.275,4.397,6.338,0.704,6.144,-11.358,1.564,6.746,15.311,11.948,1.361,24.146,6.585,22.91,36.305,23.019,19.298,22.818,23.284,23.708,35.878,27.466,29.586,21.828,23.79,28.652,24.991,15.461,17.786,10.105,30.139,11.449,28.471,16.331,23.822,26.265,7.611,21.962,26.365,20.561,19.128,11.28,0.549,22.242,20.534,13.937,10.691,13.946,18.203,12.373,23.019,15.453,20.999,19.272,21.92,16.712,-2.283,14.462,12.98,13.014,19.135,2.787,18.654,15.738,1.091,5.215,11.21,19.514,19.151,17.818,17.74,15.083,8.492,9.11,-2.291,6.048,9.625,-0.924,6.05,-1.576,6.75,15.932,-8.911,13.785,10.039,8.371,-5.73,12.194,18.076,9.901,-5.79,16.945,11.572,-2.343,16.577,15.082,10.304,4.073,1.555,14.699,-3.773,-3.457,17.509,7.479,-0.683,16.235,15.169,9.041,1.412,8.574,2.755,11.057,7.635,4.073,7.103,8.319,5.837,14.323,0.124,13.894,13.016,4.603,2.924,-10.712,-13.181,7.113,12.522,2.463,6.0,6.611,11.708,4.144,1.415,0.943,6.58,2.879,1.615,2.511,6.815],[23.507,23.292,11.69,35.262,29.335,17.008,26.407,24.322,22.961,6.633,28.861,24.671,21.868,19.046,18.007,21.192,22.394,19.715,12.633,13.733,12.32,19.217,15.505,-0.773,10.914,17.226,18.924,3.886,18.224,14.108,-0.385,-2.973,7.806,7.325,8.637,8.328,15.076,15.952,-7.386,2.664,9.497,11.242,-5.54,8.608,18.236,15.373,0.94,14.02,-1.768,3.433,11.373,3.075,6.737,7.219,4.501,6.054,0.916,6.154,-11.25,1.336,6.701,15.356,12.131,1.467,24.054,6.679,22.928,36.402,23.568,19.26,23.042,23.01,23.272,35.958,27.143,29.146,21.728,23.534,28.206,25.137,15.889,17.643,10.225,30.242,10.794,28.766,16.322,24.015,25.273,7.757,21.953,26.406,20.568,19.179,10.91,0.282,22.576,20.615,14.391,9.903,13.825,18.233,12.471,23.535,15.611,20.912,19.203,21.788,17.111,-2.545,14.542,12.751,13.224,19.486,3.424,18.71,15.693,1.38,4.99,11.429,19.822,19.392,18.084,17.428,14.679,8.18,8.891,-2.277,5.992,9.929,-1.01,5.787,-1.84,7.217,14.792,-8.779,13.9,9.828,8.128,-5.956,11.754,17.485,9.902,-5.883,17.186,11.788,-3.04,16.558,15.645,10.281,3.311,1.431,15.147,-3.895,-2.702,17.035,7.434,-0.802,16.502,15.004,8.959,0.827,8.625,2.728,11.182,7.633,4.177,6.606,8.309,5.954,14.877,0.585,13.769,13.056,4.329,3.164,-10.384,-12.871,6.796,12.997,2.323,5.971,7.431,11.491,4.376,0.904,0.485,6.722,3.151,1.515,2.687,7.569],[23.558,23.189,11.609,35.392,29.498,17.409,26.107,24.244,22.992,6.731,28.969,24.634,22.036,19.123,18.167,21.306,22.45,19.723,12.487,13.715,12.381,19.23,15.37,-0.824,10.739,17.255,18.985,4.011,18.257,14.043,-0.378,-3.026,7.745,7.123,8.583,8.245,15.115,16.006,-7.365,2.33,9.31,11.262,-5.501,8.633,18.155,15.387,0.555,14.082,-1.627,3.531,11.208,3.166,6.661,7.111,4.733,5.762,0.83,6.108,-11.026,1.142,6.818,15.446,12.333,1.612,23.547,6.854,22.943,36.206,24.185,19.142,22.879,23.018,23.723,36.84,27.193,29.556,21.443,23.049,28.429,25.059,17.038,18.317,10.1,30.45,10.883,29.118,16.223,24.343,25.032,7.808,22.203,26.515,20.656,19.05,10.701,0.71,22.665,20.769,14.129,9.666,14.07,18.213,12.649,23.716,15.546,20.928,19.21,21.693,16.462,-2.206,14.899,12.474,13.723,19.282,3.271,18.379,15.335,1.097,5.224,11.666,19.742,19.607,17.923,17.943,14.551,7.836,9.058,-2.119,6.354,10.153,-1.155,5.709,-1.688,7.354,15.198,-8.934,13.861,9.706,7.33,-5.814,11.944,17.785,10.036,-5.891,16.948,11.61,-3.061,16.66,14.988,10.109,2.696,1.144,14.943,-4.453,-2.181,16.96,7.242,-0.705,16.257,15.023,8.772,-0.03,8.508,3.425,10.616,7.105,4.038,6.904,8.361,5.678,15.304,0.34,13.834,13.192,4.163,3.173,-10.55,-12.668,6.754,13.369,1.757,6.13,7.399,12.157,4.45,0.635,0.835,6.799,3.211,1.365,2.506,7.274],[23.648,23.063,11.538,35.627,29.687,17.704,25.933,24.19,22.893,6.868,29.078,24.584,22.124,19.199,18.334,21.283,22.585,19.53,12.422,13.696,12.398,19.147,15.258,-0.84,10.606,17.038,19.011,4.142,18.282,13.981,-0.408,-3.042,7.522,7.166,8.552,8.22,15.131,16.033,-7.475,1.976,9.165,11.368,-5.463,8.59,18.15,15.345,0.279,14.122,-1.394,3.68,11.126,3.29,6.53,7.046,4.862,5.63,0.675,6.053,-10.882,0.972,6.982,15.608,12.503,1.744,23.391,6.951,22.9,35.983,24.205,19.121,23.516,23.444,24.14,37.152,27.254,29.424,21.391,23.059,29.231,25.172,17.472,18.5,9.76,30.894,11.334,29.343,16.251,24.263,25.086,7.8,22.365,26.428,20.777,19.299,10.654,0.974,22.557,20.717,13.852,9.791,14.199,18.023,12.455,23.097,15.453,21.013,19.103,22.034,16.774,-1.971,15.039,12.348,13.3,19.124,3.006,18.732,15.445,0.958,5.103,11.815,19.743,19.529,17.796,18.451,14.553,7.802,9.26,-2.272,6.313,9.968,-1.006,5.478,-1.958,6.969,15.458,-8.935,13.884,9.678,7.347,-5.09,12.315,18.178,10.042,-5.878,17.302,11.57,-2.338,16.779,14.656,9.836,2.909,1.075,14.635,-5.116,-2.603,16.56,7.307,-1.18,16.577,15.487,8.39,-0.648,8.299,3.253,10.248,7.304,4.557,6.992,8.369,5.621,15.61,-0.07,13.942,13.372,3.899,3.18,-10.19,-12.372,6.651,13.315,1.925,5.557,6.779,12.254,4.224,0.86,0.949,6.461,3.151,1.732,2.317,6.525],[23.766,23.058,11.488,35.928,29.866,17.874,25.94,24.248,22.696,7.028,29.163,24.64,22.155,19.314,18.55,21.218,22.689,19.21,12.474,13.684,12.313,19.043,15.27,-0.875,10.57,16.915,19.036,4.084,18.236,13.937,-0.461,-3.126,7.373,7.259,8.616,8.221,15.103,16.148,-7.568,1.755,9.0,11.525,-5.398,8.424,18.156,15.326,-0.014,14.078,-1.257,3.781,11.109,3.549,6.352,7.023,4.944,5.562,0.591,5.951,-10.723,0.811,7.061,15.844,12.531,1.859,23.202,7.28,22.809,36.237,23.628,19.269,23.203,23.217,23.731,37.023,26.575,29.395,21.522,23.121,29.833,25.46,17.273,18.127,9.799,30.741,11.251,29.536,16.051,24.316,25.742,8.006,22.52,26.476,20.787,19.451,10.803,0.862,22.215,20.846,14.161,9.856,13.81,17.591,12.225,23.352,15.521,20.771,18.853,22.363,16.633,-2.148,15.282,12.03,12.899,19.097,2.77,18.965,15.479,1.093,4.969,11.896,19.781,19.483,17.731,17.838,14.486,7.829,9.066,-2.008,6.043,9.879,-0.895,5.942,-1.918,6.92,15.811,-9.072,13.902,9.836,7.286,-4.429,12.117,18.775,9.943,-6.113,16.911,11.779,-1.893,16.591,15.334,10.125,3.216,0.586,14.641,-5.658,-2.694,16.456,7.616,-1.696,16.381,15.595,8.063,-0.35,8.408,2.601,10.355,6.764,4.78,6.6,8.236,6.018,15.674,-0.01,14.289,13.537,3.805,3.299,-10.561,-12.576,6.789,13.676,2.614,5.562,6.042,11.55,4.574,0.485,0.399,6.628,3.424,2.421,2.055,6.558],[23.79,23.151,11.407,36.162,29.976,17.781,26.073,24.305,22.608,7.173,29.224,24.677,22.181,19.43,18.652,21.133,22.716,19.053,12.576,13.548,12.144,18.978,15.437,-0.776,10.578,16.936,18.985,3.898,18.087,13.924,-0.464,-3.22,7.278,7.31,8.702,8.257,15.021,16.217,-7.609,1.652,8.933,11.666,-5.341,8.316,18.23,15.429,-0.343,13.972,-1.358,3.915,11.106,3.82,5.999,7.134,5.119,5.567,0.351,5.881,-10.735,0.64,7.117,16.005,12.5,2.137,23.223,7.623,22.699,36.773,23.043,19.561,23.054,23.056,23.534,36.568,26.442,29.457,21.592,23.404,29.853,25.652,17.333,17.991,10.156,30.766,10.618,29.41,16.479,24.512,25.315,7.915,22.477,26.44,21.073,19.493,10.971,0.311,22.026,21.14,13.887,9.559,13.829,17.496,12.581,23.794,15.437,20.58,19.38,22.404,16.441,-2.516,15.266,12.318,13.444,18.906,2.762,18.669,15.036,1.222,4.883,11.512,19.583,19.104,17.674,17.895,14.747,7.951,8.483,-2.434,5.747,9.955,-0.99,6.349,-1.86,7.307,16.233,-9.192,13.708,9.924,7.453,-3.914,11.951,19.364,9.606,-6.231,16.385,11.976,-1.848,16.659,15.335,10.023,3.378,0.425,14.715,-6.022,-2.89,16.457,7.659,-1.915,16.571,15.198,7.884,-0.111,8.36,2.726,10.372,6.523,4.741,6.801,8.192,6.307,15.69,-0.072,14.435,13.072,3.895,3.644,-11.06,-12.251,6.645,13.659,2.92,5.918,6.06,11.373,5.059,0.429,0.411,6.919,3.624,2.153,1.949,6.659],[23.762,23.185,11.298,36.349,30.029,17.825,26.089,24.413,22.578,7.355,29.203,24.69,22.195,19.62,18.551,21.095,22.703,19.134,12.79,13.503,11.928,18.855,15.348,-0.684,10.688,16.956,18.968,3.74,17.935,13.918,-0.386,-3.35,7.058,7.505,8.808,8.43,14.941,16.098,-7.697,1.705,8.866,11.768,-5.288,8.268,18.395,15.53,-0.491,13.761,-1.725,4.111,11.014,4.01,5.574,7.34,5.237,5.568,0.045,5.859,-10.804,0.598,7.318,16.041,12.462,2.404,23.357,7.077,22.545,36.263,23.258,19.903,23.195,23.042,23.787,36.241,27.047,29.515,21.583,23.852,29.67,25.511,16.901,18.528,10.189,31.221,10.27,29.483,16.595,24.429,25.054,7.799,22.191,26.501,21.243,19.412,11.088,0.622,21.967,20.924,13.972,9.579,13.784,17.581,12.908,24.099,15.251,20.791,19.176,21.717,16.716,-2.328,15.389,12.42,13.503,18.926,2.639,18.499,15.513,1.434,4.904,11.058,19.489,18.872,17.713,18.186,14.605,8.25,8.58,-2.956,5.406,10.308,-0.858,5.713,-1.811,7.477,16.476,-9.042,13.654,9.898,7.785,-3.626,12.182,19.345,9.988,-6.253,17.282,12.032,-2.175,16.546,15.298,9.754,2.995,0.629,14.927,-5.729,-3.274,17.004,7.348,-2.154,16.885,14.885,7.636,-0.872,8.381,2.918,10.604,6.483,5.063,6.701,8.029,6.335,15.735,-0.162,14.313,12.597,3.864,4.257,-10.946,-12.492,6.212,13.27,3.291,5.987,6.085,12.094,5.099,0.129,0.521,6.634,3.643,1.536,1.493,6.581],[23.677,23.146,11.144,36.338,30.233,17.81,26.129,24.681,22.539,7.343,29.184,24.777,22.115,19.822,18.634,20.923,22.627,19.184,13.045,13.373,11.716,18.8,15.207,-0.557,10.844,16.967,19.036,3.65,17.902,13.9,-0.137,-3.477,6.895,7.587,9.043,8.612,14.827,16.058,-7.749,1.794,8.716,11.876,-5.176,8.228,18.553,15.544,-0.505,13.579,-2.047,4.358,10.98,4.133,5.353,7.497,5.259,5.572,-0.204,5.834,-10.882,0.617,7.538,15.964,12.304,2.408,23.041,7.581,22.597,35.723,23.918,20.118,23.231,23.231,23.504,36.862,26.99,29.408,21.565,23.866,29.35,25.655,17.323,18.062,9.851,31.307,10.513,30.09,16.417,23.861,25.257,8.265,22.366,26.516,21.277,18.766,11.17,1.068,22.486,20.992,13.836,9.78,13.401,17.569,13.11,23.997,15.104,20.633,18.766,21.453,16.47,-1.581,15.507,12.577,13.293,19.073,2.499,18.181,15.472,1.418,4.76,11.258,19.692,19.072,17.645,17.943,14.027,8.84,8.175,-3.084,5.335,10.627,-0.882,6.418,-1.979,7.781,15.706,-9.259,13.616,9.719,7.693,-3.446,12.427,19.48,10.024,-6.177,17.572,11.686,-2.972,16.247,15.399,9.781,2.55,0.441,14.284,-5.28,-3.071,17.071,7.896,-2.013,16.368,14.893,7.621,-1.037,8.827,3.311,10.585,5.717,5.249,6.773,8.075,6.13,15.767,-0.133,14.291,13.155,3.652,4.081,-10.796,-12.597,6.096,13.298,2.838,6.06,5.586,12.339,5.127,0.471,0.184,6.52,3.747,1.616,1.052,6.629],[23.607,23.143,10.932,36.236,30.681,17.776,26.251,24.912,22.647,7.349,29.121,24.722,22.032,19.954,18.715,20.752,22.583,19.13,13.301,13.106,11.602,18.62,15.16,-0.323,11.045,16.869,19.041,3.582,17.988,13.84,0.128,-3.63,6.769,7.722,9.386,8.745,14.616,15.865,-7.734,1.749,8.653,11.941,-5.032,8.313,18.657,15.403,-0.391,13.436,-2.258,4.462,11.043,4.132,5.176,7.643,5.224,5.623,-0.349,5.819,-10.939,0.574,7.648,15.834,12.291,2.306,23.128,8.108,22.848,35.945,23.771,20.091,23.295,23.831,22.935,36.728,26.573,29.054,21.505,23.85,29.316,25.512,17.577,18.158,10.14,31.324,10.866,30.034,16.125,24.329,25.094,7.949,22.191,26.663,21.296,18.967,11.837,1.339,21.709,20.912,13.698,10.338,13.314,17.414,13.08,23.611,14.907,20.435,18.917,21.479,16.99,-1.538,15.508,12.935,13.179,18.936,2.211,18.399,14.906,1.607,4.894,11.381,19.513,19.306,17.597,18.076,13.794,8.716,8.153,-2.704,5.232,10.686,-0.94,6.543,-2.322,7.214,15.889,-9.42,13.266,9.731,7.724,-3.756,12.144,19.522,9.74,-6.42,16.587,11.715,-3.275,16.31,14.898,9.697,3.092,0.496,13.994,-4.901,-3.191,16.82,8.123,-1.765,16.724,14.596,7.468,-0.569,8.763,4.047,10.306,5.543,5.016,6.829,8.804,6.376,15.691,0.003,14.24,13.38,3.679,3.824,-10.828,-12.706,6.216,12.96,3.032,6.485,5.305,11.493,5.395,0.647,0.036,6.833,4.163,1.731,1.052,6.769],[23.499,23.241,11.005,36.079,31.154,17.8,26.338,25.149,22.821,7.385,29.02,24.718,21.918,19.94,18.769,20.687,22.33,19.01,13.517,12.888,11.58,18.282,15.036,0.009,11.245,16.846,18.873,3.581,18.108,13.786,0.267,-3.659,6.692,7.761,9.672,8.736,14.324,15.614,-7.825,1.741,8.572,11.844,-4.854,8.394,18.652,15.338,-0.243,13.273,-2.336,4.627,10.978,4.028,5.013,7.758,5.354,5.727,-0.366,5.829,-11.035,0.547,7.809,15.704,12.352,2.22,23.334,7.74,23.26,36.631,23.626,20.185,23.031,24.082,23.109,36.395,26.974,29.045,21.369,24.335,29.233,25.342,17.112,18.497,9.59,31.978,10.243,30.225,16.453,24.841,25.124,7.963,22.164,26.35,21.591,19.409,12.362,1.337,21.315,20.548,13.914,10.699,13.326,17.457,13.034,23.745,14.502,20.151,18.701,21.864,16.311,-1.64,15.093,13.061,12.929,19.061,2.187,18.179,15.248,1.986,4.88,11.092,19.143,19.404,17.563,17.896,14.38,8.752,8.243,-2.684,5.149,11.102,-0.314,6.205,-2.792,7.236,15.486,-9.259,13.546,9.866,8.257,-4.189,11.942,18.611,9.998,-6.462,16.71,12.069,-2.969,16.005,14.602,9.335,3.317,0.499,14.285,-4.827,-3.73,16.928,7.903,-1.907,16.708,14.407,7.524,-0.004,8.615,4.062,10.118,5.77,5.064,7.002,9.547,6.543,15.244,-0.356,14.386,13.113,3.922,3.93,-10.804,-12.593,6.467,12.944,2.981,6.519,5.455,11.146,5.386,-0.065,0.259,7.347,3.946,1.912,0.696,6.375],[23.456,23.285,11.061,36.09,31.608,17.786,26.401,25.308,23.071,7.344,28.911,24.792,21.721,19.886,18.828,20.736,22.009,19.039,13.621,12.735,11.615,18.026,14.981,0.246,11.216,16.757,18.602,3.633,18.151,13.994,0.428,-3.68,6.662,7.701,9.815,8.6,14.16,15.584,-7.92,1.767,8.436,11.755,-4.852,8.341,18.452,15.293,-0.127,13.142,-2.234,4.592,10.808,4.029,5.005,7.747,5.634,5.82,-0.472,5.833,-11.049,0.439,7.986,15.553,12.398,2.245,23.492,7.313,23.064,36.795,23.847,20.088,22.976,23.647,23.338,36.778,27.748,29.618,21.813,24.996,29.142,25.358,16.479,18.305,9.824,31.983,10.594,30.836,17.091,24.791,25.406,8.192,21.987,26.408,21.427,19.486,12.07,1.486,22.01,20.672,13.717,10.179,13.348,17.313,13.498,23.514,14.558,19.82,18.461,21.721,16.342,-1.368,14.762,12.997,12.605,19.013,2.439,17.696,15.183,1.98,4.653,11.068,18.616,19.576,17.318,17.87,14.846,9.061,8.257,-2.867,5.391,11.308,0.261,6.374,-2.238,7.522,14.965,-9.414,13.231,9.921,8.5,-4.106,11.656,18.049,9.888,-6.265,17.027,11.659,-2.765,15.686,15.034,9.582,3.102,0.361,13.904,-4.542,-3.544,16.85,7.974,-1.717,16.284,14.474,7.733,-0.105,8.823,3.574,10.857,5.457,5.156,7.245,9.6,6.733,14.637,-0.44,14.102,13.58,4.0,3.985,-11.246,-12.763,6.748,12.581,3.431,6.242,5.277,10.928,5.288,0.045,0.549,7.808,4.018,1.994,0.395,6.09],[23.412,23.379,11.186,36.243,32.137,17.663,26.566,25.31,23.323,7.27,28.746,24.867,21.617,19.787,18.835,20.798,21.886,19.104,13.631,12.742,11.665,17.898,14.974,0.24,11.027,16.499,18.396,3.781,18.008,14.348,0.789,-3.588,6.681,7.649,9.79,8.447,13.946,15.683,-7.973,1.781,8.414,11.62,-4.918,8.262,18.248,15.275,-0.069,13.045,-2.133,4.437,10.694,4.237,5.058,7.672,6.014,5.871,-0.64,5.858,-11.124,0.321,8.082,15.281,12.499,2.294,23.428,7.181,23.187,36.708,24.424,20.079,23.012,23.657,23.22,36.836,27.48,29.488,21.865,25.139,29.524,25.351,16.35,18.505,9.969,32.178,11.068,30.93,17.098,24.561,26.131,7.71,21.497,26.787,20.883,19.523,11.917,1.896,22.05,20.576,13.624,9.996,13.526,17.83,13.518,23.428,14.515,19.716,19.259,21.683,16.947,-1.018,15.764,12.793,11.899,19.238,2.511,17.73,14.818,1.716,4.385,11.224,18.176,19.365,17.589,17.318,14.654,8.732,8.054,-3.485,5.294,11.271,0.266,6.409,-1.996,7.972,15.284,-9.414,12.577,9.691,8.166,-3.77,11.364,17.693,9.854,-6.495,16.449,11.353,-2.632,15.545,14.957,9.789,3.312,0.303,13.506,-4.526,-3.063,16.903,8.063,-1.365,16.879,14.14,7.675,-0.286,8.663,3.158,10.805,5.306,5.01,6.976,9.369,6.793,14.465,-0.309,13.986,13.484,3.958,3.528,-11.022,-12.851,6.693,12.885,3.261,6.216,5.266,11.151,5.566,0.677,0.296,7.494,4.675,2.107,0.651,6.524],[23.369,23.469,11.41,36.382,32.549,17.525,26.818,25.427,23.656,7.177,28.568,24.9,21.606,19.606,19.032,20.79,21.877,19.363,13.621,12.798,11.74,17.889,14.958,0.143,10.95,16.447,18.284,3.953,17.99,14.635,1.06,-3.543,6.56,7.638,9.688,8.236,13.618,15.744,-8.049,1.85,8.46,11.368,-4.943,8.313,18.212,15.365,-0.038,12.917,-2.057,4.148,10.598,4.294,5.106,7.52,6.37,5.769,-0.749,5.981,-11.167,0.398,7.974,14.902,12.699,2.497,23.262,7.434,23.713,36.424,24.206,20.074,22.872,24.004,23.115,36.667,27.366,28.992,21.92,24.732,29.853,25.158,17.201,18.295,9.749,32.85,10.812,31.264,16.017,24.244,26.101,7.748,21.852,26.43,20.724,19.633,11.891,1.776,21.517,20.201,13.81,9.765,13.489,17.889,13.281,23.435,14.587,19.667,19.168,22.19,16.198,-1.129,16.311,12.497,11.509,19.102,2.789,17.679,14.759,2.472,4.293,11.086,18.145,18.779,17.267,17.149,14.734,8.56,8.311,-3.908,5.383,11.112,0.386,6.048,-1.776,7.821,15.342,-9.418,12.663,9.35,8.106,-3.274,11.915,17.058,9.97,-6.804,16.542,11.621,-2.676,15.343,14.48,9.562,3.403,0.404,13.458,-4.822,-3.482,16.996,8.077,-1.494,16.659,14.09,7.499,0.087,8.613,3.21,10.212,5.918,5.027,6.866,9.819,7.174,14.418,-0.719,13.527,13.559,4.014,2.33,-10.678,-13.045,6.329,13.274,2.997,6.303,5.231,11.732,5.842,0.379,-0.573,7.24,4.747,1.847,0.954,6.877],[23.33,23.485,11.47,36.48,32.874,17.428,27.034,25.671,23.969,7.172,28.415,24.781,21.606,19.405,19.198,20.796,21.818,19.613,13.676,12.848,11.683,17.835,14.915,0.151,10.844,16.421,18.183,4.172,17.901,14.888,1.302,-3.596,6.503,7.614,9.57,8.028,13.397,15.719,-8.143,1.869,8.557,11.143,-4.76,8.417,18.069,15.343,0.05,12.854,-2.064,3.901,10.531,4.17,5.235,7.432,6.579,5.519,-0.829,6.077,-11.115,0.431,7.972,14.497,12.962,2.585,23.872,7.367,24.021,36.033,24.313,20.099,22.765,24.12,23.25,36.957,28.053,28.747,21.769,25.159,29.427,25.135,17.355,18.557,10.286,32.761,10.888,31.808,15.608,24.33,25.908,8.176,21.73,26.158,20.617,19.515,12.26,1.134,20.98,20.245,13.748,9.874,13.444,17.941,13.488,23.245,14.544,19.582,19.014,22.308,16.116,-1.66,15.869,12.584,11.749,19.394,2.772,17.761,14.569,2.883,4.506,11.077,18.458,18.874,16.921,17.238,14.86,8.239,8.28,-3.958,5.518,11.184,0.66,6.188,-1.784,6.971,15.604,-9.487,12.462,9.216,8.13,-3.066,12.084,16.734,9.979,-6.606,16.645,11.489,-2.699,15.092,14.868,9.274,3.416,0.628,13.237,-5.399,-3.54,17.329,8.296,-1.59,16.78,14.116,7.148,0.046,8.368,3.415,10.121,5.546,5.061,7.175,9.77,7.776,13.74,-0.327,13.102,13.939,3.674,1.681,-11.1,-12.856,6.455,12.468,2.417,5.96,5.323,12.272,5.723,-0.178,-0.765,7.211,4.999,2.61,0.729,7.004],[23.381,23.423,11.429,36.531,33.028,17.303,27.249,25.911,24.022,7.207,28.238,24.592,21.574,19.285,19.206,20.814,21.596,19.773,13.974,12.872,11.535,17.725,14.903,0.16,10.758,16.359,18.175,4.267,17.847,14.972,1.538,-3.717,6.415,7.541,9.634,7.81,13.2,15.714,-8.121,1.97,8.688,10.879,-4.505,8.547,17.795,15.408,0.245,12.799,-1.954,3.923,10.555,4.061,5.299,7.496,6.77,5.305,-0.946,6.148,-11.229,0.363,7.938,14.234,13.059,2.506,24.168,7.343,24.476,36.463,25.012,20.062,22.787,24.165,23.103,37.147,28.313,28.605,21.822,25.938,28.592,25.308,17.019,18.625,10.579,32.875,10.898,32.0,16.139,24.555,26.348,8.13,21.603,26.398,20.122,20.034,12.239,0.87,21.225,20.548,13.993,10.019,13.236,18.041,13.991,23.228,14.826,19.546,18.787,22.591,16.342,-1.672,16.102,12.66,12.189,19.677,2.668,17.585,14.315,2.28,4.987,11.011,18.35,19.168,17.463,16.622,14.824,7.705,8.191,-3.685,5.592,10.795,0.842,6.629,-1.99,6.677,15.725,-9.449,11.868,9.112,7.888,-3.175,11.232,16.776,10.391,-6.565,16.602,10.979,-2.932,14.734,15.07,9.361,3.561,0.452,13.163,-5.263,-3.141,17.072,8.15,-1.414,17.004,13.751,6.971,0.271,8.121,3.053,10.312,5.28,4.789,7.148,9.706,7.842,13.472,-0.355,12.913,13.6,3.544,2.276,-11.424,-12.677,6.378,13.109,2.303,5.664,5.548,12.181,5.474,-0.153,-0.2,7.88,5.082,2.97,0.518,6.955],[23.456,23.357,11.472,36.645,33.068,17.317,27.431,26.154,24.025,7.21,28.098,24.521,21.553,19.273,19.205,21.066,21.408,19.841,14.365,12.929,11.347,17.545,15.107,0.161,10.773,16.389,18.196,4.195,17.899,14.955,1.687,-3.804,6.333,7.506,9.711,7.534,13.032,15.693,-8.126,2.149,8.908,10.403,-4.282,8.612,17.568,15.609,0.461,12.637,-1.852,3.996,10.574,3.952,5.252,7.558,6.947,5.177,-1.015,6.193,-11.575,0.215,7.9,14.209,13.06,2.448,23.789,7.209,24.747,36.585,24.563,19.909,22.995,24.451,23.105,37.227,28.562,28.478,21.666,26.114,27.872,25.211,16.32,18.19,9.869,33.646,10.725,31.83,16.99,24.313,26.65,8.029,21.163,26.328,19.217,19.903,12.602,1.482,21.15,20.306,13.927,9.919,13.048,18.438,13.944,23.233,14.66,19.316,18.756,22.117,16.056,-1.449,16.495,12.381,12.696,19.443,2.824,17.058,14.701,2.385,5.108,10.675,18.112,19.254,17.248,16.473,14.773,7.908,7.982,-3.272,5.19,10.68,1.018,6.082,-2.688,7.379,15.483,-9.267,11.806,8.973,7.848,-2.928,10.899,16.472,10.454,-6.71,16.877,10.86,-2.504,14.512,15.083,9.527,3.507,0.553,13.242,-4.683,-3.225,16.313,8.553,-1.024,16.708,13.928,7.023,0.911,8.544,3.29,10.376,5.831,5.093,6.999,9.641,7.703,13.529,-0.842,12.768,13.851,3.471,2.864,-11.758,-12.922,6.253,13.634,3.019,6.073,5.088,12.186,5.054,0.508,-0.37,7.781,5.248,2.772,0.458,6.969],[23.424,23.238,11.294,36.859,33.245,17.479,27.53,26.363,24.073,7.214,27.865,24.5,21.421,19.238,19.065,21.266,21.309,19.952,14.58,12.972,11.138,17.456,15.413,0.211,10.844,16.293,18.196,4.202,18.111,14.991,1.808,-3.998,6.186,7.483,9.836,7.29,13.008,15.397,-8.209,2.408,8.98,10.012,-3.94,8.629,17.307,15.756,0.727,12.497,-1.836,4.206,10.547,3.979,5.184,7.577,7.088,5.115,-1.142,6.173,-11.799,0.019,7.787,14.105,13.182,2.46,23.385,6.929,24.661,36.692,23.897,19.984,22.771,24.903,23.361,37.332,28.741,28.587,21.79,25.717,27.857,25.172,16.773,18.547,9.851,33.112,11.35,32.091,16.227,24.087,26.93,8.271,21.122,26.169,18.387,19.464,13.247,1.827,21.532,19.931,13.736,10.118,13.041,18.294,13.933,22.936,14.843,19.3,18.715,21.59,16.59,-1.114,16.315,12.72,12.718,19.622,2.977,17.283,15.415,2.754,4.686,10.644,18.176,19.344,16.884,17.058,14.855,8.016,7.775,-3.304,4.918,11.029,0.992,5.873,-2.655,7.967,15.487,-9.704,11.658,8.672,8.066,-2.253,10.556,16.351,10.45,-6.455,16.048,10.089,-1.972,14.576,15.414,9.832,3.699,0.959,12.88,-4.433,-3.566,16.317,8.376,-0.759,17.336,13.861,7.479,0.991,8.839,3.34,10.511,5.658,5.435,7.079,9.519,7.61,13.348,-0.775,12.719,13.954,3.31,3.055,-12.047,-13.347,6.295,12.932,3.0,6.67,5.275,12.099,4.96,0.138,-1.084,7.55,5.385,2.161,0.412,7.212],[23.415,23.085,11.205,36.999,33.481,17.612,27.47,26.467,24.102,7.261,27.666,24.526,21.176,19.173,19.014,21.465,21.319,20.148,14.487,13.134,11.001,17.506,15.626,0.345,10.965,16.183,18.279,4.338,18.26,15.101,1.923,-4.112,5.864,7.538,9.938,7.094,13.02,14.992,-8.368,2.664,8.866,9.855,-3.525,8.689,17.213,15.983,0.817,12.334,-1.798,4.365,10.477,4.137,5.218,7.63,7.105,5.125,-1.333,6.172,-11.795,-0.159,7.618,13.936,13.275,2.483,23.598,6.841,24.375,37.408,24.096,20.371,22.653,25.09,23.052,37.543,28.244,28.138,21.659,25.767,28.176,25.203,17.42,18.63,9.746,33.043,11.197,32.392,16.008,24.03,27.443,8.211,21.422,26.127,17.934,20.01,12.854,1.646,21.277,19.793,14.343,10.069,12.769,18.331,14.328,22.656,14.964,19.166,19.207,21.087,16.005,-1.268,15.896,12.703,12.029,20.143,3.219,17.459,15.381,2.719,4.57,10.294,18.439,19.398,17.274,16.978,14.407,7.582,7.737,-3.947,5.215,11.583,1.035,6.518,-2.372,8.0,15.602,-9.84,12.038,7.985,8.472,-2.029,10.106,16.271,10.534,-6.823,15.914,9.712,-2.262,14.763,15.591,9.917,4.035,1.072,12.631,-4.155,-3.434,16.043,7.75,-0.754,17.275,13.916,7.454,0.66,8.623,3.245,10.194,5.238,5.25,6.748,9.416,7.874,12.98,-0.884,12.767,14.109,3.356,2.465,-11.811,-13.262,6.008,12.807,3.103,6.151,5.076,12.277,5.169,-0.774,-1.162,7.821,5.419,2.296,0.411,7.415],[23.506,22.852,11.254,37.19,33.626,17.719,27.355,26.509,24.092,7.348,27.529,24.504,21.054,19.099,19.195,21.642,21.35,20.49,14.298,13.299,10.845,17.509,15.786,0.472,10.747,16.059,18.462,4.591,18.369,15.097,2.034,-4.109,5.493,7.76,10.16,6.891,13.127,15.064,-8.655,2.758,8.681,9.848,-3.336,8.662,17.192,16.098,0.66,12.236,-1.727,4.459,10.462,4.167,5.235,7.455,7.144,5.105,-1.457,6.054,-11.698,-0.396,7.573,13.757,13.319,2.451,23.737,6.906,24.212,37.344,24.772,20.616,22.549,24.89,22.936,38.029,28.273,27.946,21.542,26.274,27.64,25.355,17.32,18.327,10.146,33.879,10.023,32.508,16.192,24.41,27.573,7.869,20.753,26.421,17.971,20.174,12.446,1.252,21.652,19.892,14.733,9.799,12.732,18.974,14.252,23.094,14.8,19.154,19.439,20.812,16.079,-1.409,16.25,12.307,12.017,19.934,3.204,17.375,14.77,2.634,4.998,9.903,18.52,19.206,17.108,16.683,14.48,7.513,7.335,-4.0,5.0,11.634,1.054,6.19,-2.701,7.649,15.313,-9.846,12.311,7.309,8.697,-2.018,10.151,15.95,10.468,-7.029,16.26,10.366,-2.586,14.689,15.709,9.344,4.113,1.122,12.825,-3.517,-3.035,16.2,7.878,-0.684,17.134,13.575,7.289,0.946,8.484,3.56,10.187,4.959,5.071,6.682,9.243,8.041,12.903,-1.385,12.517,14.028,3.296,1.729,-11.822,-12.592,5.666,13.252,3.156,6.024,5.105,12.087,5.326,-0.636,-0.966,7.784,5.421,3.16,0.097,7.313],[23.797,22.713,11.204,37.394,33.587,17.753,27.295,26.5,24.107,7.385,27.275,24.548,20.913,19.055,19.315,21.835,21.451,20.723,14.312,13.342,10.709,17.493,15.923,0.516,10.375,15.894,18.478,4.816,18.39,15.131,2.142,-4.137,5.192,8.028,10.274,6.717,13.29,15.332,-8.863,2.746,8.501,10.011,-3.355,8.595,17.086,16.113,0.639,12.164,-1.61,4.312,10.427,3.996,5.18,7.23,7.255,4.999,-1.528,5.889,-11.598,-0.614,7.643,13.69,13.266,2.348,23.136,7.223,24.562,37.534,24.725,20.618,22.361,24.803,22.923,37.654,28.675,28.161,21.118,26.295,27.116,25.501,16.741,18.236,10.41,34.229,10.204,32.716,16.656,24.741,27.228,8.078,20.682,26.243,17.942,20.064,12.552,1.311,21.856,20.419,14.887,9.531,12.576,19.337,13.872,23.269,15.092,19.34,19.563,20.731,16.468,-1.293,16.674,12.201,12.406,19.949,3.163,17.326,14.986,2.499,4.793,10.208,18.864,19.181,16.944,17.013,14.929,7.859,6.922,-3.323,4.233,11.823,0.901,6.591,-3.22,7.939,15.209,-10.289,11.971,7.685,8.968,-1.658,10.669,15.885,10.489,-7.193,16.689,10.45,-2.35,14.995,15.812,8.976,3.742,1.027,12.846,-3.845,-2.984,16.801,8.383,-0.733,17.62,13.203,7.034,1.109,8.477,3.859,10.281,5.157,5.092,7.18,9.477,7.802,13.175,-1.259,12.029,14.047,3.097,1.335,-11.695,-12.715,5.464,13.271,3.21,6.24,5.186,12.021,5.454,-0.377,-1.302,7.415,5.437,3.992,0.282,6.61],[24.044,22.612,11.127,37.486,33.411,17.691,27.206,26.389,24.049,7.471,26.923,24.583,20.817,19.022,19.369,21.929,21.623,20.732,14.42,13.38,10.639,17.627,16.109,0.512,10.096,15.784,18.379,4.877,18.374,15.255,2.249,-4.154,5.055,8.401,10.385,6.893,13.406,15.724,-8.895,2.702,8.343,10.174,-3.414,8.598,17.128,16.23,0.815,12.077,-1.487,4.138,10.39,3.924,5.146,7.137,7.336,4.761,-1.5,5.79,-11.496,-0.741,7.806,13.777,13.095,2.257,22.894,7.044,24.963,38.025,24.455,20.289,22.257,24.861,23.467,37.362,28.315,27.75,20.914,25.894,27.245,25.843,16.674,18.313,9.853,33.581,10.844,32.529,17.104,24.296,27.314,8.324,21.058,26.36,18.088,20.414,12.779,1.479,21.52,20.629,14.785,9.068,12.477,18.994,14.282,23.281,15.228,19.269,19.119,20.956,15.995,-1.151,16.915,11.855,12.807,20.281,3.499,17.101,15.781,2.414,4.729,10.326,18.964,19.2,16.647,17.131,14.987,7.222,6.58,-3.571,4.055,11.93,0.766,6.886,-3.045,8.285,15.563,-10.494,11.952,7.75,9.037,-1.829,11.402,15.99,10.363,-7.629,16.588,10.003,-1.662,14.959,15.78,8.834,3.292,1.17,12.771,-4.56,-3.222,16.167,8.867,-0.533,17.5,13.128,6.97,0.616,8.502,3.305,9.972,5.261,4.952,6.686,9.366,8.082,13.138,-1.041,12.281,14.239,2.975,1.971,-11.801,-12.871,5.451,13.254,3.583,6.203,5.102,11.79,5.072,-0.733,-1.807,7.531,5.574,3.998,0.354,6.621],[24.17,22.405,10.969,37.477,33.128,17.7,27.125,26.166,23.886,7.547,26.707,24.424,20.882,19.057,19.41,21.848,21.725,20.68,14.558,13.464,10.568,17.729,16.265,0.481,9.887,15.62,18.257,4.949,18.289,15.48,2.326,-4.198,5.079,8.527,10.517,7.109,13.404,16.032,-8.76,2.75,8.278,10.397,-3.651,8.638,17.12,16.376,0.955,11.949,-1.416,4.112,10.282,3.966,5.306,7.062,7.461,4.459,-1.551,5.806,-11.414,-0.789,7.951,13.893,12.914,2.33,23.495,7.109,25.231,38.261,24.042,19.504,22.565,24.784,23.683,37.835,27.686,27.419,21.151,25.792,27.004,25.71,17.251,18.553,9.883,32.945,10.503,32.242,16.462,24.222,27.29,8.147,21.0,26.338,18.376,20.007,12.851,1.668,21.749,20.275,14.671,9.084,12.444,18.867,14.367,23.368,15.174,19.163,18.514,21.586,15.839,-1.33,16.811,11.64,12.87,20.628,3.62,17.527,15.729,2.602,4.617,9.867,18.543,19.214,16.585,16.869,14.519,7.142,6.744,-3.906,4.551,12.164,0.808,6.969,-2.631,8.805,16.183,-10.287,12.473,7.738,9.319,-2.055,11.261,16.443,10.193,-7.206,16.82,9.765,-1.61,15.002,16.065,8.804,3.171,0.949,12.985,-4.309,-3.168,15.932,9.134,-0.305,17.534,13.255,6.804,0.9,8.396,3.084,10.056,4.951,5.273,6.774,9.297,8.211,13.155,-1.645,12.731,13.844,2.696,2.151,-11.807,-13.121,4.948,13.289,3.141,5.983,5.086,11.601,4.825,-0.975,-1.348,7.827,5.672,4.086,0.118,6.727],[24.158,22.255,10.82,37.467,32.906,17.789,27.039,25.9,23.748,7.657,26.63,24.421,20.962,19.068,19.356,21.707,21.639,20.776,14.611,13.464,10.405,17.842,16.203,0.453,9.826,15.481,18.119,5.043,18.102,15.627,2.355,-4.212,5.156,8.425,10.658,7.26,13.478,16.299,-8.468,2.874,8.355,10.526,-3.974,8.673,17.109,16.445,1.092,11.931,-1.431,4.111,10.177,4.001,5.527,6.958,7.395,3.989,-1.734,5.853,-11.471,-0.897,8.074,13.97,12.686,2.589,23.394,7.396,25.355,37.894,23.496,19.101,22.435,24.4,23.462,38.06,27.712,27.02,21.067,25.803,26.496,25.699,17.268,18.73,10.097,32.828,10.633,32.104,16.047,24.327,27.703,8.22,21.02,26.037,18.851,19.961,12.932,1.823,21.798,20.168,14.686,9.166,12.269,19.244,14.222,23.281,15.174,19.392,18.893,22.152,15.927,-1.154,16.818,11.6,12.773,20.449,3.189,17.846,15.554,2.938,4.627,9.838,18.041,19.153,16.724,16.544,15.125,7.842,6.894,-3.899,5.152,12.358,0.959,6.942,-2.688,8.637,16.298,-9.747,12.662,7.919,9.381,-2.173,11.413,16.637,10.634,-6.79,17.21,10.432,-2.16,15.302,16.73,9.081,3.552,1.202,13.01,-3.951,-2.898,16.459,8.623,-0.434,17.622,12.93,7.057,1.509,8.096,3.737,9.748,5.116,5.189,7.245,9.541,8.479,13.3,-1.729,12.562,13.711,2.368,2.011,-11.506,-12.701,4.368,12.703,2.581,5.911,4.975,11.535,5.352,-0.758,-1.083,7.847,5.757,4.197,-0.22,6.554],[24.075,22.102,10.873,37.383,32.834,17.782,27.116,25.667,23.591,7.793,26.488,24.538,20.943,19.052,19.245,21.524,21.484,20.876,14.542,13.41,10.318,17.982,16.081,0.551,9.882,15.438,17.967,5.073,18.024,15.596,2.277,-4.164,5.281,8.272,10.771,7.461,13.62,16.526,-8.17,3.066,8.686,10.598,-4.07,8.743,17.223,16.565,1.141,11.92,-1.45,4.249,10.099,4.182,5.643,6.896,7.243,3.465,-1.924,5.823,-11.425,-1.017,8.143,13.947,12.408,2.979,22.991,7.714,25.271,37.194,23.272,19.351,22.317,23.955,23.56,38.393,28.083,26.896,20.906,25.388,26.6,25.69,17.421,18.674,10.252,33.031,10.419,31.578,16.437,24.516,27.905,8.11,20.904,26.239,19.112,20.247,12.83,1.652,21.974,20.373,14.893,9.01,12.145,19.3,14.43,23.175,15.3,19.82,18.873,22.59,15.956,-1.209,17.284,11.662,12.41,20.17,3.586,17.359,15.531,3.682,5.032,9.954,18.17,18.921,16.339,16.438,15.453,7.384,6.909,-3.801,4.648,12.277,1.162,6.804,-2.489,8.089,16.217,-9.619,12.805,8.392,9.678,-2.515,11.991,16.128,10.561,-6.87,17.663,10.482,-2.0,15.388,16.372,8.84,4.155,1.601,12.868,-4.084,-2.925,16.551,8.226,-0.168,17.286,12.877,7.241,1.527,8.006,4.092,9.635,5.582,5.073,6.791,9.841,8.445,13.22,-1.156,12.557,13.653,1.833,2.148,-11.795,-12.755,3.61,12.461,2.359,5.887,5.266,11.413,5.562,-0.499,-1.716,7.945,5.428,3.876,-0.201,6.763],[24.071,21.973,10.988,37.217,32.764,17.885,27.381,25.488,23.368,7.962,26.285,24.671,20.967,19.003,19.132,21.438,21.438,20.884,14.374,13.318,10.319,17.915,16.046,0.641,9.999,15.35,17.884,5.172,17.935,15.491,2.23,-3.958,5.402,8.055,10.881,7.617,13.791,16.732,-7.975,3.324,9.062,10.702,-3.992,8.739,17.316,16.577,1.155,11.865,-1.388,4.437,10.048,4.321,5.66,6.747,7.056,2.991,-1.943,5.8,-11.366,-1.094,8.26,13.84,12.16,3.363,22.482,7.803,24.928,37.054,23.657,20.196,22.618,23.991,23.375,38.431,28.095,27.046,20.175,25.078,26.539,25.703,17.006,18.468,9.898,33.19,10.426,31.668,16.865,24.639,27.55,8.906,20.805,26.298,19.08,20.055,12.49,1.479,21.456,20.034,14.636,8.761,12.033,19.226,14.484,23.187,15.306,19.644,18.602,22.841,15.997,-1.207,16.734,11.73,12.37,20.265,3.722,17.081,15.797,3.324,5.209,9.832,18.236,19.111,16.089,16.663,14.681,7.357,7.021,-4.029,4.165,12.456,0.882,6.83,-2.66,7.867,16.076,-9.732,12.909,9.152,9.877,-2.243,11.247,15.902,10.563,-6.648,17.917,10.226,-1.498,15.39,16.0,9.161,4.514,1.848,12.445,-4.223,-3.231,16.481,8.506,-0.16,17.691,12.86,7.514,1.445,8.098,4.399,10.071,5.996,5.545,6.772,9.465,8.273,13.146,-1.705,12.481,13.363,1.503,2.257,-12.17,-12.674,2.821,12.883,2.8,5.948,5.41,11.356,5.525,-0.675,-2.03,8.111,5.677,3.367,-0.212,6.734],[24.113,21.813,10.998,37.041,32.805,18.099,27.552,25.46,23.196,8.258,26.153,24.888,21.084,19.09,19.119,21.378,21.382,20.745,14.144,13.153,10.351,17.613,16.15,0.637,10.114,15.254,17.837,5.362,17.819,15.235,2.13,-3.867,5.493,7.91,11.009,7.739,13.919,16.738,-7.813,3.584,9.49,10.54,-3.882,8.683,17.234,16.493,1.2,11.712,-1.281,4.704,10.133,4.244,5.606,6.592,6.925,2.616,-1.824,5.745,-11.435,-1.299,8.336,13.731,12.032,3.438,22.61,7.829,24.462,37.048,24.269,20.272,22.392,24.127,23.063,38.22,28.268,26.949,20.15,24.877,26.072,25.755,17.452,17.865,10.023,33.421,10.811,31.614,16.837,24.715,27.173,9.331,21.121,26.306,18.513,19.745,12.44,1.978,21.29,20.233,14.439,9.044,12.204,19.402,14.125,23.015,14.86,19.361,18.742,23.193,15.502,-0.955,16.171,11.697,12.437,20.344,3.614,17.136,15.802,2.235,4.858,9.998,18.091,18.906,16.132,16.496,14.517,7.661,7.257,-3.445,4.558,12.607,0.736,6.281,-2.423,8.119,16.414,-9.532,12.694,9.546,9.728,-2.087,11.451,16.261,10.507,-6.393,18.22,10.539,-1.199,15.586,16.331,9.757,4.703,1.908,12.687,-4.484,-3.178,16.859,8.602,-0.227,17.826,12.895,7.791,1.096,7.748,4.153,9.923,5.951,5.471,6.922,9.558,8.206,13.049,-2.217,12.365,13.391,1.279,2.997,-12.154,-12.532,3.233,12.915,3.291,6.199,5.359,11.258,5.482,-1.252,-1.746,8.164,5.398,3.808,-0.103,6.708],[24.193,21.769,10.997,36.943,32.922,18.229,27.7,25.531,23.263,8.536,26.087,25.027,21.154,19.2,19.142,21.445,21.434,20.676,13.891,12.997,10.524,17.512,16.227,0.659,10.269,15.198,17.662,5.378,17.634,15.043,1.875,-3.718,5.498,7.965,11.015,7.874,13.878,16.769,-7.676,3.8,9.941,10.444,-3.745,8.625,17.198,16.272,1.2,11.705,-1.14,4.887,10.194,4.195,5.533,6.518,6.732,2.404,-1.743,5.682,-11.507,-1.656,8.33,13.614,12.042,3.35,22.675,7.98,23.715,36.622,23.877,19.573,22.695,24.208,23.366,37.399,28.288,26.779,20.732,24.827,25.893,25.693,18.255,17.742,10.002,33.447,10.911,31.895,16.631,24.949,27.025,8.735,21.034,26.702,18.174,19.615,12.416,2.253,21.165,20.447,14.936,9.282,12.381,19.005,13.398,23.147,14.787,18.823,18.592,23.062,15.294,-0.999,16.423,11.9,11.769,20.246,3.957,16.601,16.163,2.601,5.135,9.873,17.983,18.651,16.361,16.21,14.489,7.396,7.346,-3.225,5.286,12.631,0.453,6.602,-2.132,8.265,16.193,-9.049,12.602,9.519,9.582,-2.172,11.227,16.326,10.441,-6.283,18.376,10.171,-1.564,15.457,16.449,10.138,4.935,2.08,13.055,-4.595,-2.678,16.883,8.482,-0.002,17.401,12.526,8.155,0.657,7.199,3.876,9.916,5.409,5.599,6.674,9.873,7.938,13.017,-1.523,12.341,13.526,1.247,3.681,-12.177,-12.66,3.764,12.43,3.622,6.422,5.155,11.404,5.23,-1.935,-1.702,8.098,5.097,4.613,-0.031,6.829],[24.157,21.741,11.034,36.696,33.117,18.278,27.852,25.541,23.467,8.638,26.083,25.175,21.224,19.21,19.158,21.481,21.692,20.637,13.559,12.687,10.58,17.546,16.405,0.591,10.448,15.271,17.485,5.459,17.439,14.952,1.612,-3.465,5.509,8.215,10.933,7.961,13.65,16.814,-7.476,3.973,10.079,10.385,-3.679,8.596,17.23,15.952,1.108,11.74,-0.921,4.986,10.238,4.346,5.421,6.537,6.568,2.368,-1.761,5.592,-11.433,-1.964,8.379,13.569,11.99,3.346,23.028,8.369,22.774,36.601,23.596,19.792,22.763,24.246,23.958,37.255,28.169,26.481,20.574,24.851,26.258,26.019,17.991,18.121,9.856,33.409,10.824,31.958,16.63,25.16,27.215,9.364,21.044,26.574,17.682,19.416,12.238,1.825,21.533,20.264,14.915,9.381,12.402,19.111,12.825,23.474,14.349,18.843,18.003,23.147,15.681,-1.057,16.763,12.2,11.434,20.213,3.872,16.579,16.063,2.967,5.244,9.708,17.454,19.031,15.999,16.278,14.399,7.444,7.358,-3.122,5.109,12.576,0.278,7.031,-1.978,7.88,15.962,-9.237,12.37,9.069,9.521,-1.977,11.059,16.059,10.289,-5.884,18.137,10.528,-2.048,15.126,15.792,10.204,4.993,2.397,12.907,-4.311,-2.261,16.618,8.814,-0.245,17.437,12.866,8.836,1.251,7.083,4.679,10.545,4.877,5.671,6.628,9.327,7.685,12.769,-2.268,12.343,13.59,1.381,3.378,-12.468,-12.303,3.802,12.426,3.733,6.239,4.81,11.375,5.32,-1.858,-2.065,7.919,4.895,5.004,-0.604,6.598],[24.16,21.79,11.044,36.446,33.257,18.204,28.012,25.53,23.693,8.633,26.11,25.202,21.167,19.081,19.13,21.522,22.016,20.742,13.294,12.342,10.507,17.681,16.458,0.481,10.67,15.38,17.346,5.484,17.317,14.999,1.423,-3.248,5.533,8.307,10.738,7.878,13.395,16.809,-7.294,4.124,10.182,10.428,-3.587,8.652,17.21,15.73,0.98,11.758,-0.696,5.154,10.245,4.679,5.303,6.744,6.464,2.527,-1.926,5.574,-11.313,-2.222,8.376,13.627,11.796,3.31,22.551,8.722,22.151,36.351,23.752,20.109,22.708,24.224,24.113,37.37,28.158,26.404,20.018,25.002,26.357,25.925,17.244,18.83,10.029,33.628,10.876,32.16,17.138,25.286,27.249,9.822,21.456,26.419,17.324,19.835,11.835,1.398,21.727,20.708,15.069,9.685,12.208,19.404,12.457,23.569,14.183,18.859,18.201,23.162,15.616,-1.304,16.585,12.234,11.027,20.043,3.764,16.99,16.055,2.937,5.113,10.183,16.932,18.591,15.954,16.278,14.747,7.772,7.102,-3.02,4.204,12.283,0.099,6.989,-1.713,8.147,15.725,-8.958,12.111,9.129,9.456,-1.922,11.314,15.865,10.006,-5.995,17.768,10.173,-1.302,14.979,15.513,9.867,5.173,2.467,12.504,-4.178,-2.272,16.801,9.048,-0.314,17.117,13.295,8.528,1.43,6.958,4.927,10.198,4.707,5.656,6.856,9.475,7.577,13.02,-2.851,12.264,13.195,1.272,3.285,-12.618,-12.085,3.399,12.642,3.974,5.964,4.407,11.144,5.507,-1.443,-2.043,7.789,5.005,4.974,-0.571,6.406],[24.108,21.833,11.139,36.33,33.264,18.156,28.1,25.592,23.878,8.682,26.177,25.142,20.962,18.881,19.138,21.58,22.244,20.949,13.204,12.281,10.4,17.725,16.416,0.382,10.865,15.451,17.229,5.399,17.281,15.09,1.253,-3.113,5.522,8.109,10.523,7.76,13.282,16.561,-7.238,4.215,10.126,10.458,-3.493,8.512,17.242,15.588,0.755,11.762,-0.509,5.296,10.028,4.844,5.197,7.026,6.463,2.782,-2.043,5.717,-11.196,-2.435,8.354,13.766,11.542,3.299,22.317,8.36,22.06,36.019,23.999,19.68,22.472,24.295,24.441,36.944,28.486,26.935,20.025,24.942,25.834,25.746,16.995,19.043,10.156,33.452,10.74,32.11,17.708,24.985,27.274,9.623,21.494,26.743,17.088,20.165,11.992,1.802,21.852,21.053,15.067,9.634,12.318,19.524,12.303,24.001,13.858,19.186,18.382,23.389,15.409,-1.342,16.619,12.449,10.853,20.429,3.769,17.136,16.944,2.695,5.387,10.52,17.291,18.061,16.317,15.882,14.784,7.326,7.096,-2.743,4.08,12.179,-0.036,7.229,-1.418,8.523,15.834,-8.73,12.147,9.525,9.207,-2.022,10.983,15.583,10.32,-5.93,17.607,10.496,-0.379,15.085,15.896,10.253,5.494,2.449,12.04,-4.232,-2.36,16.761,8.552,0.114,16.538,13.424,8.298,0.973,6.431,4.736,10.27,5.043,6.218,6.856,9.803,7.523,13.378,-2.111,12.34,12.96,0.954,3.715,-12.55,-12.162,3.183,12.167,4.248,6.384,4.375,10.559,5.806,-1.538,-2.361,7.805,4.974,4.706,-0.325,6.514],[24.072,21.819,11.313,36.317,33.108,18.245,28.134,25.605,24.036,8.779,26.246,25.049,20.836,18.735,19.195,21.793,22.418,21.19,13.273,12.182,10.56,17.639,16.608,0.431,10.992,15.6,17.249,5.356,17.251,15.186,1.138,-2.979,5.615,7.939,10.319,7.637,13.251,16.11,-7.155,4.264,9.99,10.385,-3.531,8.269,17.29,15.448,0.618,11.744,-0.339,5.334,9.756,4.845,5.17,7.182,6.504,2.969,-2.088,5.901,-11.182,-2.531,8.402,13.779,11.274,3.443,22.473,7.737,22.31,35.813,24.239,19.32,22.239,24.316,24.577,36.482,28.877,27.549,19.932,24.553,25.816,25.612,17.337,18.984,10.547,33.713,10.37,32.288,17.59,25.093,27.217,9.807,21.083,26.566,16.9,19.71,12.232,2.009,21.636,21.084,14.782,9.638,12.402,19.765,12.027,23.965,14.012,19.296,18.599,23.046,15.593,-0.904,16.898,12.708,10.976,20.416,3.51,17.587,16.448,2.485,5.571,10.078,17.625,18.22,16.166,16.086,14.497,6.998,7.171,-2.705,4.086,12.022,0.053,7.031,-1.858,8.334,16.148,-8.967,12.303,9.476,9.054,-1.97,11.29,15.795,9.928,-5.66,17.438,10.144,-0.489,14.941,15.809,10.53,5.421,2.69,12.204,-4.25,-2.08,16.54,7.999,-0.625,16.799,13.345,8.3,0.668,5.771,4.911,10.261,5.431,6.016,6.866,9.363,7.782,13.752,-2.06,12.326,12.786,1.18,4.144,-12.236,-12.106,3.488,11.805,4.965,6.878,4.556,10.043,5.998,-1.666,-2.209,7.783,5.005,4.005,-0.585,6.867],[24.2,21.658,11.469,36.217,33.024,18.455,28.222,25.463,24.236,8.925,26.376,24.932,20.764,18.657,19.259,21.997,22.396,21.349,13.257,12.14,10.799,17.503,16.775,0.541,11.036,15.866,17.386,5.394,17.356,15.265,1.219,-3.043,5.742,7.918,10.156,7.42,13.23,15.587,-7.101,4.29,9.836,10.189,-3.615,8.042,17.246,15.382,0.518,11.815,-0.168,5.336,9.558,4.76,5.201,7.172,6.48,3.158,-2.107,5.98,-11.225,-2.529,8.519,13.68,10.97,3.577,22.484,7.999,22.664,35.967,24.365,19.191,22.333,24.368,24.118,37.147,28.651,27.659,19.888,24.818,26.14,25.468,17.308,18.464,11.067,33.42,10.513,32.49,17.767,25.206,27.179,9.338,21.095,26.094,16.836,19.997,12.127,2.117,21.615,21.118,15.511,10.122,12.454,19.711,11.982,24.03,13.959,19.182,18.397,22.54,15.736,-0.643,16.947,12.829,11.003,20.441,3.618,17.557,16.131,2.53,5.201,10.105,17.527,18.416,16.03,16.281,14.864,7.495,7.403,-2.717,4.502,11.87,-0.251,6.674,-1.674,7.948,15.932,-8.812,12.129,9.055,9.025,-1.954,11.171,15.817,9.52,-5.962,17.103,10.078,-1.072,14.822,15.578,10.493,5.408,2.735,12.324,-4.193,-1.584,16.829,7.941,-0.93,16.861,13.45,8.385,0.482,5.594,4.828,9.958,5.449,5.979,7.036,9.445,7.893,13.438,-2.965,12.385,12.11,1.373,4.421,-11.856,-12.557,4.081,12.054,5.774,6.787,4.848,9.172,5.55,-1.856,-1.829,7.635,5.172,4.395,-0.614,6.534],[24.215,21.348,11.627,35.981,33.055,18.642,28.302,25.455,24.388,9.027,26.5,24.839,20.72,18.615,19.364,22.151,22.316,21.185,13.19,12.167,10.983,17.467,17.006,0.73,10.908,16.138,17.489,5.377,17.48,15.308,1.369,-3.238,5.962,7.96,10.083,7.419,13.16,15.289,-7.18,4.136,9.732,10.089,-3.634,7.978,17.174,15.237,0.532,11.99,-0.086,5.349,9.364,4.62,5.298,6.991,6.44,3.323,-1.997,5.896,-11.141,-2.601,8.639,13.556,10.799,3.691,22.191,8.589,22.939,36.098,24.636,19.27,22.028,24.231,23.783,37.215,28.57,27.243,19.678,24.883,26.551,25.849,17.252,18.149,10.888,32.684,11.005,32.346,18.196,24.777,27.227,9.046,21.49,26.55,16.876,20.471,12.174,2.085,22.603,21.066,15.589,10.148,12.826,19.775,11.834,24.088,13.82,18.349,18.295,22.113,15.651,-0.943,16.959,12.785,11.08,20.7,3.819,17.065,16.838,2.714,5.126,10.62,17.315,18.512,16.548,16.538,14.983,7.394,7.467,-2.787,4.573,11.731,-0.137,6.759,-1.6,8.172,15.206,-8.56,11.754,8.815,8.775,-1.987,10.479,15.688,9.454,-5.7,16.689,10.482,-1.137,14.919,15.866,9.973,5.245,2.641,12.44,-4.006,-0.907,16.703,8.14,0.143,16.71,13.183,8.016,0.234,5.552,4.794,9.868,5.216,6.261,7.095,9.62,7.729,12.804,-2.963,12.29,11.759,1.837,4.44,-11.919,-12.629,4.826,11.963,5.617,6.298,5.178,8.522,5.135,-2.043,-2.043,7.813,4.935,5.12,-0.49,5.861],[24.165,21.046,11.668,35.769,33.056,18.744,28.37,25.607,24.532,9.092,26.659,24.782,20.738,18.575,19.453,22.387,22.428,21.104,13.113,12.13,11.236,17.389,17.255,0.855,10.649,16.335,17.542,5.286,17.462,15.294,1.528,-3.372,5.98,8.008,9.991,7.581,12.979,15.224,-7.097,3.809,9.484,10.198,-3.528,8.079,17.114,15.145,0.683,12.061,-0.001,5.383,9.152,4.527,5.386,6.677,6.439,3.508,-1.883,5.703,-11.035,-2.782,8.752,13.417,10.742,3.929,21.476,8.429,23.159,35.804,24.603,19.54,22.248,24.222,23.633,36.194,28.933,26.786,19.622,24.964,26.398,25.957,17.181,18.394,10.968,32.877,10.987,31.583,18.091,24.628,27.226,10.062,21.164,26.513,17.13,20.363,12.373,1.827,22.67,21.238,15.457,9.357,12.964,19.699,11.718,24.185,13.958,17.649,18.694,21.667,15.981,-0.942,16.912,12.262,11.078,20.408,3.543,17.502,17.158,2.943,5.212,10.94,17.511,18.388,16.628,16.558,14.54,7.402,7.529,-3.501,4.569,11.562,0.191,7.511,-1.689,8.796,15.163,-8.847,11.726,9.218,8.775,-1.988,10.856,15.492,9.353,-5.545,16.572,10.337,-1.077,14.589,15.718,9.737,5.031,2.39,12.866,-3.7,-1.184,16.512,8.276,0.046,16.814,12.961,7.755,0.82,5.364,4.605,9.687,5.343,6.316,6.703,9.097,7.657,12.844,-2.148,12.09,12.036,2.553,3.717,-11.819,-11.993,5.2,11.594,5.507,6.061,5.68,8.715,4.44,-2.029,-2.193,8.039,4.634,5.192,-0.34,5.674],[24.1,20.928,11.657,35.469,32.942,18.689,28.433,25.758,24.645,9.3,26.736,24.661,20.893,18.495,19.366,22.625,22.719,21.17,13.067,12.202,11.416,17.329,17.229,0.824,10.308,16.447,17.493,5.065,17.395,15.206,1.683,-3.489,5.946,8.297,9.992,7.755,12.773,15.254,-6.923,3.409,9.354,10.385,-3.419,8.202,17.087,15.251,0.832,12.092,-0.107,5.489,8.899,4.403,5.491,6.436,6.502,3.65,-1.793,5.491,-10.825,-2.941,8.789,13.305,10.701,4.046,21.388,8.143,23.407,35.65,24.143,19.603,22.403,24.808,24.215,35.443,28.925,27.044,19.483,25.084,26.353,25.65,17.513,19.022,10.596,33.092,11.083,31.194,17.788,24.833,27.554,9.91,20.751,26.12,18.019,20.565,12.017,2.137,22.224,21.382,15.927,9.011,13.244,19.651,11.826,24.357,13.836,17.67,18.513,21.501,16.02,-0.74,16.879,11.872,10.893,20.24,3.165,17.577,16.889,3.089,5.328,11.027,17.891,18.571,16.557,16.374,14.596,7.303,7.644,-3.5,4.507,11.016,0.385,7.229,-1.747,8.096,15.581,-8.679,11.382,9.403,8.397,-1.753,11.425,15.806,9.648,-5.981,16.633,10.297,-1.032,14.214,15.576,9.446,5.125,2.129,12.611,-3.727,-1.644,16.548,8.724,-0.591,16.581,12.558,7.619,1.168,5.033,4.484,9.556,5.639,6.217,6.631,9.284,7.725,13.52,-2.319,12.177,12.575,2.857,3.743,-11.544,-11.701,5.537,10.945,5.194,6.003,6.211,8.983,4.017,-1.877,-1.952,8.157,5.029,4.789,-0.632,5.817],[24.171,21.132,11.791,35.276,32.854,18.583,28.505,25.985,24.573,9.319,26.595,24.495,20.955,18.457,19.31,22.743,22.881,21.117,12.995,12.291,11.56,17.3,17.181,0.805,10.01,16.426,17.385,4.958,17.388,15.169,1.779,-3.484,6.023,8.311,9.902,7.857,12.45,15.407,-7.03,3.167,9.346,10.625,-3.387,8.31,17.274,15.441,0.668,12.111,-0.368,5.617,8.725,4.323,5.636,6.382,6.605,3.755,-1.795,5.363,-10.535,-3.017,8.735,13.365,10.64,4.102,21.722,8.541,23.368,35.017,24.044,19.471,22.409,24.849,25.023,35.077,28.503,27.526,19.37,25.132,26.526,25.616,17.725,19.318,10.778,33.286,10.808,31.074,17.693,24.915,27.804,9.502,21.273,26.089,19.092,20.549,11.392,2.198,22.628,21.994,16.092,9.286,13.171,19.883,12.546,24.709,14.157,17.977,18.116,21.549,15.733,-0.661,16.796,11.704,11.185,20.529,3.312,17.273,16.476,2.986,5.238,10.958,17.695,18.687,16.686,16.032,14.606,6.786,7.776,-3.123,4.933,11.197,0.26,7.099,-2.155,8.905,15.509,-8.52,10.926,9.1,8.188,-1.651,11.205,15.767,9.71,-5.492,16.629,11.208,-0.745,14.179,15.804,9.332,4.495,1.677,12.3,-4.137,-1.974,16.828,8.992,-0.442,16.568,11.87,7.578,1.0,5.195,4.364,8.699,5.756,5.925,6.572,9.749,8.253,13.414,-3.012,12.17,12.363,2.599,3.915,-11.452,-11.913,5.421,10.857,4.579,5.872,6.289,8.602,3.64,-1.846,-1.938,8.055,5.44,4.383,-0.314,6.119],[24.399,21.498,12.087,35.132,32.801,18.606,28.51,26.059,24.396,9.143,26.417,24.485,20.897,18.577,19.393,22.776,23.032,20.991,12.906,12.379,11.651,17.206,17.199,0.796,9.837,16.35,17.239,4.991,17.331,15.159,1.768,-3.436,6.253,8.198,9.838,7.825,12.231,15.584,-7.171,2.985,9.341,10.938,-3.385,8.393,17.517,15.551,0.45,11.981,-0.568,5.578,8.426,4.258,5.781,6.403,6.774,3.754,-1.824,5.388,-10.434,-3.04,8.67,13.477,10.625,4.118,21.941,8.729,23.025,35.454,24.088,19.683,22.165,24.852,25.132,35.362,28.529,27.346,19.717,26.042,26.211,25.937,17.117,18.964,11.889,33.473,10.881,30.962,18.122,24.407,28.032,9.471,21.66,26.183,19.267,20.137,11.241,2.161,22.719,21.823,15.652,9.278,13.486,19.447,12.947,24.839,14.274,18.461,18.425,22.127,15.854,-0.842,16.798,11.631,11.507,20.371,3.396,17.135,16.568,3.065,4.571,10.96,16.998,18.459,16.699,15.981,14.545,6.66,7.887,-3.181,5.264,11.109,0.126,7.326,-2.406,9.408,15.21,-8.792,11.01,9.218,8.352,-1.913,11.01,15.552,9.473,-5.747,16.488,11.129,-1.18,13.947,16.333,9.575,4.076,1.444,12.412,-3.881,-2.151,17.153,8.445,0.067,16.99,12.073,7.749,0.123,4.909,4.359,8.799,5.853,5.833,6.649,9.707,8.484,12.918,-3.225,12.245,12.108,2.227,3.66,-10.803,-11.668,5.177,11.083,4.579,6.211,6.315,8.005,3.095,-2.174,-1.997,8.021,5.725,4.874,-0.063,5.941],[24.554,21.761,12.455,35.123,32.657,18.856,28.496,26.148,24.254,9.082,26.237,24.556,20.854,18.731,19.529,22.793,23.007,20.836,12.927,12.563,11.628,17.092,17.155,0.676,9.865,16.393,17.061,4.888,17.294,15.101,1.86,-3.539,6.302,8.384,9.872,7.668,12.291,15.558,-7.173,2.83,9.438,11.175,-3.386,8.292,17.54,15.826,0.312,11.886,-0.772,5.358,8.112,4.089,5.998,6.382,6.927,3.558,-1.783,5.453,-10.371,-3.09,8.595,13.502,10.605,4.261,22.228,8.523,22.638,35.745,23.966,19.846,22.242,24.663,24.708,35.645,28.872,27.162,20.041,25.978,26.042,26.304,17.396,18.177,11.395,33.443,11.488,31.069,18.367,23.963,28.082,8.965,21.39,25.892,18.784,20.178,11.329,1.923,22.706,21.706,15.649,9.06,13.552,19.418,12.827,24.445,14.251,18.63,18.404,22.921,15.896,-0.907,16.932,11.713,11.123,20.143,3.606,17.395,16.777,3.101,4.915,11.136,16.377,18.404,16.655,16.173,14.521,7.022,8.216,-3.185,5.69,11.347,0.302,7.319,-1.807,8.129,14.975,-9.042,10.841,9.412,8.534,-1.787,11.661,16.039,9.59,-6.367,16.897,11.019,-1.822,13.559,16.352,9.904,4.127,1.272,12.346,-3.608,-2.225,17.337,8.58,-0.349,16.918,12.675,8.0,0.15,4.665,4.327,8.725,5.775,5.827,6.703,9.338,8.496,13.459,-2.615,12.693,12.337,2.231,3.516,-10.817,-11.844,5.195,11.261,4.282,6.112,6.235,7.813,3.1,-2.658,-2.069,7.694,5.687,5.275,-0.302,5.802],[24.542,21.828,12.611,35.097,32.61,19.297,28.498,26.229,24.117,8.992,26.117,24.487,20.967,18.783,19.591,22.796,22.878,20.673,13.027,12.642,11.535,16.975,17.109,0.4,10.076,16.571,16.943,4.91,17.271,15.086,2.07,-3.569,6.363,8.545,10.038,7.408,12.255,15.484,-7.032,2.646,9.607,11.403,-3.297,8.273,17.684,15.99,0.227,12.02,-1.075,4.986,7.876,3.947,6.184,6.235,6.996,3.317,-1.833,5.459,-10.316,-3.108,8.486,13.548,10.689,4.317,22.245,7.97,22.374,35.6,23.848,19.797,22.331,24.918,24.716,35.701,28.773,26.935,20.201,25.171,26.511,26.26,17.968,18.641,11.253,33.184,11.702,30.876,18.37,24.628,28.238,8.912,21.217,26.209,18.559,20.375,11.773,1.825,23.11,21.69,15.693,9.169,13.277,19.527,12.459,24.647,14.329,18.464,18.238,23.536,16.341,-1.164,16.826,11.598,11.157,20.107,3.111,17.355,16.791,3.366,5.281,11.284,16.104,18.494,16.51,16.336,14.565,6.999,8.242,-3.66,5.665,11.486,0.683,7.769,-1.815,8.033,15.199,-8.752,10.549,8.989,8.45,-1.414,12.145,16.239,9.158,-5.832,16.879,11.628,-1.745,14.026,16.311,9.744,4.159,1.261,11.967,-3.541,-2.427,16.985,8.511,-1.08,17.438,12.692,7.811,0.446,5.023,4.218,8.619,5.727,5.706,6.56,9.201,7.744,13.674,-2.772,12.501,12.319,2.592,3.731,-11.211,-11.912,5.041,11.05,3.484,5.323,6.509,7.703,2.938,-2.866,-1.913,7.967,5.609,5.174,0.051,6.357],[24.429,21.807,12.611,35.107,32.661,19.574,28.494,26.205,23.946,8.826,26.261,24.425,21.146,18.789,19.528,22.949,22.934,20.615,13.175,12.646,11.495,16.817,17.084,0.286,10.371,16.83,17.005,4.871,17.359,15.135,2.244,-3.668,6.452,8.607,10.176,7.006,12.187,15.485,-6.792,2.513,9.506,11.527,-3.139,8.198,17.879,16.121,0.099,12.12,-1.226,4.467,7.771,3.853,6.229,6.102,6.807,3.219,-1.966,5.585,-10.315,-3.097,8.398,13.629,10.787,4.232,22.41,7.946,22.32,35.067,23.883,19.937,22.425,24.682,24.909,35.028,28.566,26.492,20.226,25.718,26.976,26.103,18.295,19.32,11.429,32.859,11.565,30.783,18.671,24.473,28.424,9.803,21.679,26.06,18.514,20.499,12.039,1.497,22.869,21.852,15.605,9.558,13.231,18.991,12.194,24.546,14.517,17.937,18.161,23.327,16.486,-1.439,16.809,11.819,11.795,20.024,2.955,17.143,16.788,3.561,5.272,11.062,16.399,18.597,16.709,15.867,14.747,6.425,8.109,-3.49,5.511,11.486,0.783,7.691,-1.997,9.018,15.34,-7.951,11.099,8.864,8.655,-1.651,11.76,16.1,9.022,-5.189,16.389,11.881,-1.705,13.877,16.513,9.524,3.867,1.143,11.551,-3.403,-2.861,17.227,8.471,-0.996,17.317,12.851,7.669,0.639,4.746,4.095,8.547,6.27,5.646,6.587,9.72,7.202,13.304,-2.912,12.608,12.481,2.506,3.333,-10.829,-11.382,4.938,10.954,3.284,5.503,6.888,7.641,2.893,-3.377,-2.18,8.55,5.62,5.098,-0.274,6.487],[24.412,21.888,12.635,35.02,32.627,19.649,28.43,26.143,23.813,8.851,26.442,24.326,21.358,18.79,19.509,23.075,23.136,20.613,13.279,12.731,11.471,16.69,17.06,0.305,10.679,17.098,17.248,4.726,17.525,15.234,2.386,-3.702,6.506,8.566,10.288,6.702,12.114,15.551,-6.422,2.399,9.356,11.364,-3.128,8.09,17.892,16.118,0.076,12.098,-1.257,4.08,7.906,3.887,6.251,6.105,6.638,3.212,-2.258,5.76,-10.294,-3.137,8.496,13.662,10.928,4.171,22.409,7.74,22.248,35.251,23.882,19.647,22.523,24.676,24.986,33.971,28.965,26.759,20.246,26.258,27.287,25.752,18.316,18.727,11.492,32.475,11.757,30.962,18.822,24.099,28.519,9.689,22.123,25.96,18.691,20.587,11.963,1.367,22.818,21.641,15.648,9.648,13.186,19.196,12.476,24.76,14.614,17.458,18.163,22.599,16.567,-1.482,16.976,12.368,11.826,20.144,3.44,16.702,16.513,3.356,4.785,11.267,16.754,18.593,17.013,15.931,14.605,5.939,8.3,-2.923,5.336,11.744,0.768,7.381,-2.223,8.885,15.398,-7.984,10.927,8.541,8.903,-1.655,11.874,16.376,9.129,-4.936,15.902,11.647,-1.712,13.762,16.749,9.447,3.602,0.748,11.496,-3.039,-3.044,17.552,9.098,-0.794,16.999,12.903,7.742,-0.011,4.403,3.367,8.289,6.251,5.403,6.851,9.578,6.659,13.294,-2.473,12.592,12.742,1.922,3.279,-10.478,-11.791,4.973,11.164,3.362,5.696,6.836,6.907,2.594,-4.014,-2.372,7.956,5.131,4.745,-0.422,6.23],[24.532,21.966,12.827,34.769,32.626,19.724,28.334,26.139,23.688,8.92,26.51,24.399,21.588,18.708,19.448,23.092,23.334,20.717,13.24,12.874,11.47,16.579,17.061,0.175,10.942,17.302,17.603,4.734,17.619,15.272,2.563,-3.611,6.452,8.347,10.324,6.538,11.938,15.558,-6.15,2.171,9.35,11.112,-3.213,8.119,17.938,15.935,0.128,11.925,-1.348,3.719,8.095,3.855,6.298,6.101,6.415,3.233,-2.486,5.828,-10.348,-3.174,8.578,13.667,11.168,3.986,22.301,7.591,22.183,35.383,23.998,19.538,22.484,24.538,25.233,33.926,29.146,27.076,20.553,25.515,27.242,25.889,18.253,18.277,11.468,32.923,12.002,30.713,18.995,24.282,28.646,8.609,22.453,25.873,19.039,20.801,11.744,1.663,22.954,21.956,15.493,9.785,13.386,19.472,12.805,24.875,14.365,17.572,18.653,22.36,16.833,-1.298,17.038,12.48,11.504,20.031,3.091,16.696,17.122,3.18,4.253,11.199,17.035,18.85,17.198,16.639,14.897,5.86,8.419,-3.206,5.546,12.159,0.896,6.713,-2.141,8.389,15.448,-8.125,10.297,8.337,9.225,-1.507,11.989,16.208,9.448,-5.283,16.769,11.19,-2.071,13.536,16.256,9.637,3.788,0.793,11.547,-3.147,-2.673,17.88,8.518,-0.659,17.418,13.037,7.559,-0.625,4.847,2.744,8.81,6.323,5.031,7.15,9.485,6.81,13.772,-2.709,12.235,12.796,1.885,3.417,-10.891,-11.912,4.692,11.512,3.717,5.263,6.104,6.831,2.847,-4.21,-2.519,7.675,4.822,4.759,-0.778,6.173],[24.716,22.092,13.134,34.525,32.556,19.853,28.207,25.897,23.529,8.803,26.57,24.656,21.661,18.6,19.268,23.045,23.504,20.742,13.057,12.87,11.569,16.475,17.114,0.102,11.198,17.386,17.988,4.663,17.734,15.253,2.641,-3.462,6.246,7.946,10.487,6.449,11.763,15.671,-6.097,1.963,9.334,10.961,-3.207,8.158,18.021,15.813,0.105,11.653,-1.414,3.401,8.443,3.868,6.283,6.033,6.293,3.171,-2.654,5.81,-10.462,-3.234,8.619,13.768,11.379,3.81,22.566,7.414,21.972,35.629,24.257,19.563,22.757,24.238,25.526,34.401,28.766,26.485,20.383,25.362,26.714,26.211,18.551,18.769,11.667,33.387,12.015,30.839,19.015,24.473,28.896,8.535,22.47,26.308,19.468,20.58,12.072,1.568,23.205,22.274,15.847,9.606,13.357,19.269,12.863,24.954,14.444,17.937,18.607,22.323,16.621,-1.372,17.079,12.51,11.499,20.19,2.815,16.955,17.562,3.735,4.843,11.312,17.318,19.125,17.605,16.806,14.775,6.273,8.053,-3.652,5.847,12.089,1.21,6.577,-2.009,8.188,15.236,-7.823,10.265,8.368,9.231,-1.571,11.684,16.154,9.207,-5.213,17.259,11.096,-2.291,13.084,15.851,9.977,3.51,1.05,11.208,-3.544,-2.555,17.751,7.97,-0.904,17.319,12.477,7.559,0.082,4.706,2.511,9.549,6.063,5.152,6.939,9.825,7.055,13.461,-2.734,12.833,13.078,2.195,2.908,-10.888,-11.658,4.917,11.647,4.201,5.091,6.505,7.394,2.2,-4.25,-2.935,8.302,4.943,4.954,-0.769,6.723],[24.968,22.243,13.255,34.532,32.504,19.953,28.09,25.696,23.368,8.584,26.46,24.984,21.692,18.627,19.104,22.921,23.696,20.605,12.945,12.794,11.747,16.4,17.266,0.132,11.353,17.344,18.268,4.718,17.905,15.175,2.706,-3.29,5.983,7.527,10.683,6.522,11.672,15.783,-6.111,1.771,9.371,11.0,-3.216,8.033,18.072,15.8,0.023,11.362,-1.486,3.218,8.921,3.796,6.213,5.864,6.276,3.084,-2.785,5.776,-10.539,-3.344,8.75,13.988,11.46,3.671,22.644,7.432,21.865,35.339,24.097,19.262,23.188,24.146,25.656,33.915,28.636,26.354,20.672,25.683,26.824,26.052,18.718,18.609,12.243,33.2,12.479,30.753,19.031,24.457,28.875,9.205,22.165,26.641,19.842,20.378,11.935,1.461,23.372,22.215,15.542,10.172,13.499,19.215,12.246,25.21,14.542,17.828,18.767,22.585,16.763,-1.459,16.903,13.101,11.592,20.007,3.071,17.067,17.3,4.141,5.192,11.759,17.615,18.975,17.655,16.966,14.767,5.976,7.779,-3.445,5.006,12.308,1.308,6.435,-1.469,8.048,15.479,-7.685,10.43,8.189,9.387,-1.505,11.296,16.423,8.679,-4.868,17.047,11.23,-2.091,13.319,16.117,9.789,3.418,0.578,10.686,-3.225,-3.054,17.721,8.72,-0.864,16.988,11.596,7.644,0.699,4.399,2.94,9.907,5.944,5.247,6.406,9.777,7.036,13.332,-2.344,12.873,13.334,2.416,2.437,-11.361,-11.729,5.043,11.509,4.039,5.195,7.048,7.974,2.393,-4.183,-2.949,8.765,4.668,4.717,-1.018,7.078],[25.05,22.436,13.283,34.524,32.539,19.957,27.938,25.729,23.277,8.488,26.273,25.192,21.796,18.802,19.001,22.802,23.795,20.461,12.724,12.69,11.978,16.317,17.197,0.158,11.53,17.299,18.392,5.007,17.985,15.11,2.81,-3.004,5.736,7.283,10.845,6.413,11.716,16.014,-6.043,1.716,9.468,10.98,-3.195,8.093,18.116,15.967,0.057,11.07,-1.697,3.23,9.374,3.7,6.243,5.662,6.249,3.079,-2.909,5.757,-10.687,-3.503,8.781,14.233,11.362,3.494,22.496,7.6,21.774,34.991,23.805,19.492,23.167,24.051,25.88,33.753,28.803,26.322,20.899,25.406,27.037,26.446,18.763,18.218,11.93,32.917,12.434,30.825,18.96,24.38,28.806,8.897,22.193,26.311,19.84,20.234,11.521,1.547,22.809,22.418,15.667,10.862,13.682,19.307,12.385,25.217,14.526,17.86,18.883,23.536,16.957,-1.404,16.918,13.215,12.118,19.592,3.191,16.654,17.244,4.197,4.88,11.993,17.804,19.284,17.399,17.351,15.018,5.729,7.465,-2.693,4.475,12.49,1.337,5.595,-1.417,7.587,15.129,-7.789,10.76,8.326,9.617,-1.549,11.515,16.588,8.599,-4.653,16.172,11.677,-1.981,13.508,16.557,9.648,2.865,-0.095,10.335,-3.067,-3.168,17.93,8.478,-0.953,16.899,11.747,7.706,0.458,4.373,2.782,9.931,6.192,5.485,6.509,10.122,6.808,14.029,-2.389,12.747,13.067,2.191,2.787,-11.232,-12.075,4.773,11.485,3.556,5.0,6.461,8.012,2.706,-3.597,-2.886,8.767,4.642,4.524,-1.009,6.511],[25.224,22.524,13.121,34.493,32.598,19.876,27.787,25.628,23.215,8.426,26.076,25.101,21.905,19.047,18.992,22.811,23.735,20.404,12.52,12.693,12.247,16.248,17.009,0.191,11.808,17.295,18.456,5.196,17.983,15.153,2.98,-2.719,5.492,7.002,10.946,6.206,11.916,16.044,-5.948,1.651,9.376,11.015,-3.143,8.279,18.19,16.129,0.175,10.871,-1.844,3.256,9.6,3.612,6.341,5.449,6.173,3.053,-2.875,5.809,-10.752,-3.664,8.698,14.532,11.289,3.515,22.893,7.771,21.764,34.726,23.635,19.65,23.151,24.389,25.381,33.584,28.683,26.208,21.055,25.789,26.578,26.272,18.518,18.485,11.399,32.987,12.327,30.708,19.085,24.856,28.552,8.833,22.747,26.723,19.288,20.019,11.181,1.473,22.562,22.338,15.554,10.35,14.059,19.084,12.399,24.888,14.497,17.63,18.384,23.852,16.917,-1.504,16.967,13.309,12.22,19.692,3.678,16.426,16.776,3.982,4.897,12.055,18.078,19.615,17.512,17.174,14.732,5.749,7.253,-2.432,4.844,12.435,1.585,5.481,-1.243,7.426,15.338,-7.766,10.861,7.721,9.628,-1.529,11.69,16.31,9.033,-4.714,16.964,11.361,-2.487,13.55,16.35,10.207,2.854,0.127,11.115,-2.996,-3.317,17.785,8.784,-1.0,17.386,11.884,7.933,-0.18,4.024,2.288,10.543,6.165,5.317,6.635,9.949,6.774,14.174,-2.764,13.26,13.018,1.805,2.929,-11.177,-12.066,4.748,11.44,2.835,4.682,6.306,7.982,3.112,-2.96,-3.179,8.136,4.911,4.253,-1.024,6.227],[25.22,22.611,12.816,34.386,32.581,19.659,27.686,25.444,23.149,8.467,25.835,24.987,21.971,19.191,19.205,22.845,23.663,20.395,12.417,12.758,12.452,16.171,16.738,0.091,12.017,17.328,18.531,5.266,17.955,15.226,3.176,-2.604,5.404,6.823,10.937,5.917,12.142,16.063,-5.949,1.576,9.253,11.11,-3.085,8.546,18.072,16.151,0.346,10.892,-1.918,3.113,9.832,3.57,6.487,5.155,6.089,3.026,-2.794,5.992,-10.77,-3.7,8.503,14.768,11.452,3.674,23.028,7.537,21.687,34.797,23.895,20.323,23.356,24.723,25.84,33.697,28.389,25.923,20.773,25.761,26.406,26.27,18.316,18.321,11.584,33.424,12.248,30.795,18.944,24.34,28.304,8.539,22.895,26.686,19.564,20.277,11.353,1.38,23.34,21.964,14.986,10.477,14.289,18.725,11.938,24.582,14.484,17.807,18.683,23.096,16.81,-1.317,16.952,13.577,12.181,20.107,4.116,16.615,17.387,3.986,4.78,12.368,18.332,19.167,18.034,16.962,14.872,5.665,7.245,-2.068,5.025,12.433,1.457,5.605,-1.026,7.359,15.456,-7.761,10.836,7.734,9.704,-1.341,11.442,16.414,9.445,-4.778,17.36,11.05,-2.822,13.701,16.371,9.842,3.071,0.41,10.708,-3.116,-3.275,17.983,8.852,-0.792,17.346,11.599,7.833,-0.335,3.671,2.35,10.692,5.798,5.245,6.415,9.248,7.437,14.093,-3.308,13.333,13.242,1.96,2.68,-11.817,-11.816,4.711,11.526,2.299,4.725,7.031,8.188,2.893,-2.939,-3.243,7.6,4.617,4.163,-0.993,6.904],[25.269,22.601,12.73,34.347,32.541,19.335,27.641,25.215,23.141,8.451,25.538,24.785,21.826,19.446,19.531,22.752,23.628,20.411,12.338,12.812,12.559,16.245,16.634,-0.056,12.153,17.436,18.689,5.223,17.919,15.237,3.229,-2.509,5.484,6.832,10.968,5.797,12.256,16.099,-6.003,1.585,9.069,11.093,-3.069,8.722,17.877,16.138,0.517,10.833,-1.965,2.815,9.982,3.577,6.602,4.896,6.098,3.089,-2.651,6.22,-10.929,-3.751,8.188,14.774,11.588,3.82,23.213,7.312,21.627,34.917,24.057,20.212,23.01,24.584,26.268,34.085,28.472,25.755,20.75,26.023,26.736,26.544,18.009,18.731,11.557,33.574,11.899,30.932,18.497,24.212,28.049,8.502,22.517,26.385,20.474,20.301,11.417,1.523,23.595,21.881,14.808,11.354,14.279,18.77,12.68,24.76,14.669,17.837,19.267,23.173,17.117,-1.564,17.013,13.622,12.136,20.316,3.638,16.768,17.482,4.422,5.031,12.627,18.022,18.948,18.036,17.558,15.393,4.987,7.304,-2.243,4.884,12.202,1.59,5.238,-1.035,7.404,15.733,-7.626,11.13,7.671,9.429,-1.239,11.508,16.207,9.163,-4.772,17.025,11.745,-2.708,13.821,16.224,9.708,3.136,0.087,10.301,-3.496,-3.186,17.63,8.494,-0.554,17.111,11.423,7.683,0.143,3.289,2.369,10.858,5.503,5.271,6.711,9.606,7.598,14.572,-3.27,13.236,13.257,2.117,2.958,-11.65,-12.325,4.851,11.898,2.244,4.559,7.676,8.608,2.388,-2.92,-3.203,7.286,4.58,4.551,-0.687,7.38],[25.477,22.705,12.767,34.52,32.528,19.013,27.595,25.153,23.2,8.45,25.457,24.65,21.496,19.767,19.719,22.644,23.605,20.559,12.387,12.843,12.687,16.446,16.749,-0.117,12.361,17.542,18.857,5.034,18.017,15.251,3.328,-2.545,5.707,6.94,10.897,5.764,12.302,16.147,-6.17,1.678,8.803,11.073,-3.1,8.544,17.583,16.18,0.715,10.555,-2.067,2.408,10.057,3.593,6.606,4.607,6.161,3.235,-2.619,6.31,-11.042,-3.798,8.042,14.845,11.587,3.95,22.916,7.039,21.794,35.496,24.239,20.371,22.697,23.808,26.093,33.986,28.846,26.217,20.986,25.362,26.23,27.072,17.721,19.049,11.309,33.273,12.312,30.72,18.192,23.991,27.925,8.483,22.129,26.091,20.924,20.767,11.085,1.439,22.606,22.113,15.029,10.847,14.568,18.995,12.463,24.88,14.718,17.808,18.865,23.54,17.056,-1.469,16.918,13.751,12.296,19.788,3.342,17.025,16.412,4.665,4.99,12.445,17.915,19.256,17.813,17.85,15.105,4.849,7.445,-2.364,4.652,12.296,1.704,5.204,-0.889,7.61,15.913,-7.717,11.511,7.444,9.401,-1.227,11.688,15.762,9.185,-4.715,17.339,11.743,-2.662,13.973,16.607,9.584,3.166,0.134,11.257,-3.252,-3.413,17.31,9.113,-0.75,17.193,11.337,7.22,0.839,3.234,2.025,10.957,6.327,5.14,6.825,9.527,7.268,14.237,-2.933,13.396,13.266,2.175,3.147,-11.436,-12.568,4.996,11.75,2.552,4.466,7.839,8.617,2.378,-3.056,-3.1,7.21,4.516,5.047,-0.607,7.465],[25.797,22.918,12.746,34.886,32.507,18.854,27.581,25.017,23.352,8.39,25.699,24.563,21.279,20.021,19.689,22.687,23.534,20.688,12.397,12.929,12.773,16.618,16.765,-0.011,12.366,17.608,18.968,4.798,18.032,15.177,3.274,-2.745,5.931,7.076,10.873,5.719,12.306,16.245,-6.325,1.755,8.555,11.082,-3.096,8.292,17.192,16.38,0.806,10.412,-2.207,2.103,10.171,3.617,6.658,4.36,6.097,3.584,-2.73,6.419,-11.017,-3.785,8.03,14.851,11.421,4.0,22.764,7.416,21.964,35.457,24.119,20.751,22.836,23.596,25.948,33.591,28.705,26.188,21.126,25.411,26.279,27.326,17.679,18.864,11.423,33.194,12.364,30.756,18.069,23.64,27.801,8.691,22.031,26.265,20.653,20.904,11.337,1.386,21.936,21.868,15.154,10.919,14.689,19.073,11.642,24.743,14.674,17.996,18.867,23.447,17.12,-1.475,17.101,13.809,12.319,20.25,3.287,17.24,16.69,4.791,4.824,12.57,18.445,19.422,18.087,17.49,14.877,5.136,7.747,-2.556,4.911,12.272,1.918,5.502,-1.007,7.444,15.429,-8.052,11.631,7.44,9.656,-1.6,11.528,15.488,9.268,-4.89,17.788,11.639,-2.36,14.155,16.831,9.098,3.124,0.314,10.62,-2.804,-3.944,17.39,8.723,-0.411,17.503,11.536,7.126,0.994,3.386,2.04,10.919,6.551,5.212,6.436,9.108,7.263,13.798,-3.088,13.701,13.095,2.032,3.466,-11.861,-12.285,4.967,11.631,2.199,4.388,7.81,8.636,2.717,-3.346,-3.177,7.467,4.524,4.86,-0.875,6.411],[26.113,23.064,12.729,35.114,32.494,18.918,27.544,24.821,23.464,8.403,26.006,24.445,21.377,20.173,19.572,22.758,23.349,20.915,12.28,12.967,12.876,16.718,16.828,0.192,12.221,17.708,18.994,4.628,18.036,15.135,3.221,-2.962,6.125,7.11,10.911,5.717,12.275,16.252,-6.42,1.77,8.372,11.064,-3.136,8.159,16.996,16.649,0.774,10.387,-2.298,1.891,10.225,3.65,6.856,4.311,6.099,3.779,-2.736,6.378,-11.154,-3.83,8.027,14.847,11.155,3.934,23.461,7.598,22.129,35.279,23.95,20.544,22.896,23.828,26.887,33.661,28.313,26.21,21.336,25.353,26.525,27.185,17.805,18.32,11.405,33.098,11.903,30.648,18.07,24.274,27.731,8.257,21.952,26.266,20.545,20.608,11.032,1.367,22.167,21.65,15.04,11.17,14.613,19.239,11.958,24.536,14.867,18.239,19.275,23.332,17.507,-1.521,16.876,13.931,12.504,21.008,3.233,16.971,17.377,4.934,4.702,12.843,18.771,19.057,18.13,17.62,15.06,4.966,7.969,-3.589,5.593,12.514,1.98,5.722,-1.252,7.164,15.311,-8.281,11.503,7.47,9.589,-1.724,11.704,15.201,8.922,-5.36,17.59,11.706,-2.252,14.086,16.553,9.085,3.215,0.264,10.207,-2.432,-4.045,16.945,8.542,-0.291,17.814,11.68,7.109,0.609,3.121,1.919,11.129,5.847,5.115,6.84,9.176,6.876,14.191,-3.162,13.484,12.77,2.499,3.351,-12.206,-12.118,5.486,11.695,1.796,3.878,7.443,8.461,2.941,-3.668,-3.275,8.061,4.555,4.646,-0.984,5.354],[26.364,23.302,12.504,35.166,32.438,18.966,27.481,24.669,23.489,8.387,26.178,24.394,21.562,20.327,19.4,22.764,23.226,21.251,11.957,13.004,12.964,16.684,16.892,0.399,12.156,17.925,19.051,4.529,18.166,15.122,3.301,-3.292,6.236,7.085,10.983,5.659,12.277,16.212,-6.53,1.758,8.235,11.145,-3.125,8.3,16.968,16.814,0.663,10.459,-2.259,1.627,10.155,3.587,6.959,4.257,6.149,3.905,-2.626,6.204,-11.363,-3.955,8.104,14.893,10.978,3.851,23.661,7.687,22.369,35.146,23.824,20.597,22.738,23.712,27.666,34.226,28.483,26.853,21.365,24.642,26.653,27.471,17.846,18.203,11.225,33.005,11.825,30.685,18.065,24.674,27.515,7.956,22.057,26.12,20.395,20.478,10.904,1.57,22.773,21.798,15.172,10.986,14.841,19.476,12.61,24.498,14.827,18.526,19.191,23.473,17.266,-1.187,16.733,13.732,12.569,20.999,3.15,16.507,17.238,4.699,4.924,12.598,18.682,18.779,17.843,17.74,15.251,4.924,8.169,-3.99,5.621,12.527,1.772,5.47,-1.401,7.34,15.081,-8.079,11.133,7.509,9.494,-1.635,11.801,15.162,8.569,-5.04,17.103,11.774,-2.715,13.962,16.99,9.093,3.214,0.18,10.817,-2.487,-3.605,16.85,8.951,-0.712,17.945,11.16,6.893,0.634,2.717,1.573,11.236,6.621,5.174,6.763,9.448,6.746,14.377,-2.828,13.22,12.604,2.631,3.027,-11.716,-12.937,5.564,11.501,1.933,3.953,6.493,8.521,3.15,-4.225,-3.04,8.214,4.343,4.344,-0.717,5.336],[26.628,23.447,12.277,35.067,32.441,18.946,27.494,24.527,23.464,8.314,26.264,24.338,21.657,20.419,19.35,22.764,23.332,21.327,11.686,12.999,13.001,16.621,16.982,0.594,12.16,18.097,19.095,4.515,18.234,15.116,3.386,-3.554,6.365,6.938,11.095,5.594,12.311,16.016,-6.584,1.819,8.029,11.286,-3.135,8.64,16.933,16.783,0.609,10.673,-2.213,1.345,10.176,3.542,6.894,4.155,6.09,4.153,-2.399,6.065,-11.458,-4.073,8.373,14.842,10.902,3.764,23.497,7.851,22.647,35.827,23.7,20.873,22.972,23.248,27.422,34.366,28.505,26.922,21.686,24.258,26.622,27.761,17.879,18.058,11.01,33.023,12.009,30.615,18.045,24.6,27.287,8.085,22.501,25.772,20.482,20.38,10.829,1.803,22.813,21.53,15.433,10.734,14.787,19.641,11.796,24.772,14.856,18.259,19.221,23.459,17.527,-1.03,16.942,13.297,12.576,20.921,2.946,16.932,16.35,4.703,4.9,12.724,18.872,19.224,18.36,17.735,15.129,4.866,8.163,-3.985,5.12,12.306,1.884,5.166,-1.745,7.437,15.322,-8.002,10.701,7.605,9.585,-1.53,11.841,15.127,8.866,-5.096,17.006,12.186,-2.398,13.694,17.304,9.137,3.142,0.326,10.32,-2.803,-3.593,17.233,8.865,-0.342,17.891,10.705,6.791,0.909,2.487,1.496,10.839,6.988,5.401,6.635,9.194,6.6,14.018,-2.995,13.606,12.606,2.399,2.866,-11.422,-13.148,5.457,11.286,1.995,4.095,6.173,8.224,3.233,-4.561,-2.961,7.746,4.387,4.739,-0.531,5.5],[26.787,23.491,12.175,34.985,32.386,19.013,27.516,24.432,23.544,8.321,26.268,24.229,21.735,20.5,19.391,22.788,23.479,21.25,11.524,13.086,13.026,16.742,16.99,0.678,12.09,18.244,19.162,4.516,18.267,15.243,3.488,-3.623,6.368,6.625,11.095,5.632,12.206,15.754,-6.682,1.94,7.79,11.551,-3.287,8.887,16.856,16.722,0.672,10.646,-2.284,1.157,10.049,3.672,6.815,4.103,6.059,4.313,-2.081,5.952,-11.337,-4.137,8.605,14.733,10.897,3.759,23.361,7.945,22.576,35.601,23.706,20.563,23.059,22.944,26.85,33.923,28.688,27.172,21.744,24.028,26.472,28.341,17.789,18.179,11.1,33.311,11.485,30.574,18.223,24.387,27.128,7.931,22.716,25.695,20.545,20.426,10.39,1.895,22.687,21.729,15.282,10.933,14.827,19.668,11.082,24.698,14.93,17.888,18.994,22.978,18.017,-0.855,16.927,13.528,12.652,20.965,3.129,17.404,16.71,4.971,4.921,13.038,18.845,19.658,18.779,17.729,14.825,4.956,8.156,-3.974,5.474,12.73,2.089,4.774,-1.857,7.2,15.514,-8.483,10.546,7.49,9.723,-1.752,12.004,15.101,9.981,-5.555,16.996,11.833,-1.997,13.354,16.962,8.812,3.503,0.432,11.0,-3.188,-3.901,16.707,9.256,-0.447,17.393,11.5,6.689,1.124,2.52,1.519,10.32,6.357,5.508,6.423,9.351,6.217,13.473,-3.729,13.658,12.52,2.688,3.121,-11.739,-12.709,5.576,11.326,1.632,3.693,6.841,8.358,3.289,-4.618,-2.971,7.691,4.136,4.64,-0.363,5.706],[26.968,23.442,12.06,34.863,32.316,19.158,27.486,24.278,23.532,8.374,26.293,24.079,21.811,20.51,19.423,22.746,23.651,21.164,11.478,13.218,13.094,16.966,16.853,0.65,12.061,18.374,19.253,4.456,18.321,15.332,3.686,-3.684,6.378,6.186,11.049,5.771,11.955,15.569,-6.952,2.109,7.703,11.678,-3.45,9.266,16.748,16.623,0.768,10.693,-2.362,1.081,9.791,3.894,6.916,4.086,6.015,4.384,-1.983,5.895,-11.123,-4.276,8.731,14.546,10.89,3.804,23.485,7.757,22.461,34.918,24.18,21.281,23.029,22.944,26.267,33.881,28.523,27.136,21.707,24.015,27.016,27.997,17.542,18.544,10.871,33.15,11.175,30.537,18.446,24.239,28.001,7.956,22.42,25.941,20.503,20.462,10.157,1.927,22.496,22.222,15.316,11.117,14.783,19.435,10.923,24.492,15.065,17.965,18.919,22.971,17.92,-0.928,17.209,13.488,12.878,21.022,3.136,17.591,17.401,5.522,5.182,13.083,18.637,19.433,18.514,17.664,15.11,4.954,8.119,-3.821,5.715,12.763,2.318,4.439,-1.873,6.817,15.484,-8.571,10.569,7.494,9.947,-1.859,12.213,15.02,9.981,-5.749,16.963,12.097,-2.431,13.584,16.554,8.05,3.161,0.506,11.115,-3.268,-4.215,16.484,9.229,-0.477,17.463,11.405,6.42,0.959,2.763,1.212,10.601,5.875,5.77,5.911,9.818,6.192,14.105,-3.878,13.164,12.439,2.968,3.104,-11.972,-12.501,6.014,11.625,1.496,3.591,7.195,8.263,3.433,-4.56,-2.228,8.179,4.19,4.35,-0.076,6.108],[27.105,23.496,11.887,34.582,32.221,19.193,27.502,23.981,23.459,8.308,26.462,24.107,21.739,20.606,19.416,22.644,23.834,21.019,11.397,13.363,13.174,17.167,16.841,0.571,11.989,18.354,19.196,4.329,18.312,15.304,3.949,-3.72,6.46,5.765,11.006,5.822,11.74,15.577,-7.134,2.076,7.74,11.614,-3.381,9.573,16.667,16.48,0.873,10.725,-2.43,0.98,9.5,4.089,7.046,4.141,6.027,4.512,-1.817,5.884,-10.938,-4.431,8.919,14.51,10.961,3.862,23.61,7.88,22.229,35.278,23.701,20.674,23.257,23.124,25.849,34.387,28.349,27.008,21.758,24.163,27.22,27.96,17.689,18.824,10.277,32.822,11.872,30.386,18.779,23.483,28.321,8.063,22.496,25.917,20.047,20.632,10.464,1.894,22.286,22.3,14.93,11.272,15.015,19.422,11.317,24.852,15.184,18.421,19.499,23.303,17.469,-1.077,17.242,13.286,13.013,21.171,2.951,17.881,16.745,5.525,4.653,12.878,19.158,19.192,18.752,17.741,15.013,5.036,8.326,-4.281,5.418,12.611,2.678,3.936,-1.948,6.386,15.301,-8.642,11.033,7.737,9.644,-1.8,12.536,14.883,9.911,-5.734,17.114,12.156,-2.699,13.335,16.557,7.844,3.14,0.343,10.633,-3.153,-4.005,16.519,9.542,-0.277,17.57,11.009,6.575,0.662,2.986,1.24,10.18,6.362,5.914,6.209,9.829,6.121,14.085,-3.349,13.079,12.426,3.423,3.166,-11.571,-12.339,6.287,11.749,1.608,3.767,6.868,8.62,3.658,-4.549,-2.162,8.505,4.311,4.456,-0.08,6.31],[27.122,23.683,11.849,34.449,32.125,19.217,27.559,23.805,23.348,8.144,26.682,24.11,21.721,20.684,19.5,22.518,23.994,20.982,11.412,13.521,13.253,17.39,16.829,0.427,11.771,18.222,19.2,4.125,18.337,15.295,4.1,-3.743,6.574,5.582,10.878,5.731,11.54,15.73,-7.206,1.913,7.911,11.491,-3.291,9.703,16.605,16.347,0.833,10.741,-2.37,0.772,9.239,4.171,7.049,4.307,6.128,4.846,-1.727,5.89,-10.857,-4.497,9.156,14.517,11.136,3.919,23.745,7.948,22.487,35.63,23.653,20.712,23.159,22.6,26.242,33.92,28.406,27.198,21.936,23.504,27.54,28.175,17.995,18.619,10.614,32.734,11.504,30.405,18.496,23.342,27.811,7.81,22.492,25.938,20.163,20.53,10.397,1.639,22.379,22.341,15.117,11.139,15.108,19.348,11.349,25.225,15.358,18.765,19.391,22.879,17.81,-1.119,17.015,13.366,12.776,20.68,2.849,18.128,16.282,5.651,4.414,12.656,18.77,19.406,18.398,17.54,15.053,4.859,8.182,-4.613,5.42,12.414,2.777,3.751,-2.034,6.046,15.54,-8.974,11.229,7.626,9.476,-1.77,11.939,14.932,10.342,-5.916,16.994,12.353,-2.494,13.451,16.906,8.651,3.492,0.294,10.44,-3.076,-3.984,16.383,9.882,-0.236,17.044,11.143,6.562,1.099,3.01,1.15,10.143,7.345,5.905,5.965,9.692,5.993,13.243,-3.089,13.585,12.736,3.387,3.206,-11.044,-12.621,6.286,11.618,1.918,3.4,6.544,8.44,3.969,-4.576,-2.726,8.992,4.377,4.547,-0.012,6.426],[27.14,23.902,11.893,34.287,32.132,19.195,27.595,23.553,23.433,7.921,26.897,24.169,21.878,20.681,19.488,22.387,24.054,20.95,11.533,13.583,13.275,17.647,16.901,0.246,11.589,18.119,19.061,3.951,18.374,15.393,4.172,-3.895,6.625,5.459,10.614,5.524,11.56,16.022,-7.38,1.957,8.262,11.435,-3.328,9.84,16.605,16.293,0.722,10.804,-2.257,0.498,9.04,4.218,7.081,4.41,6.175,5.131,-1.834,5.822,-11.021,-4.406,9.336,14.422,11.392,4.056,23.693,7.769,22.492,35.73,23.782,21.573,22.799,22.53,26.779,33.708,28.583,28.114,22.346,22.767,27.486,28.108,18.067,18.599,10.42,32.675,10.898,30.302,18.073,23.888,28.047,7.765,22.738,25.891,20.808,20.421,10.419,1.562,22.469,22.724,15.379,10.717,14.862,19.383,10.619,25.262,15.27,19.016,19.325,22.816,17.582,-1.439,17.175,13.152,13.187,20.636,2.704,18.025,16.56,5.708,4.633,12.878,18.427,19.34,18.316,17.523,15.243,5.075,8.438,-4.372,5.641,12.329,2.688,3.677,-2.187,6.122,15.611,-8.948,10.856,7.297,9.59,-1.932,11.648,14.802,10.315,-6.024,17.083,12.258,-2.172,13.31,16.65,9.211,3.005,0.449,10.477,-3.18,-4.149,16.47,10.046,-0.536,16.545,11.209,6.669,1.038,3.446,0.789,10.01,6.838,5.665,6.225,10.273,5.955,13.333,-3.547,13.407,13.215,3.489,3.195,-11.108,-12.884,6.414,11.449,1.15,3.61,5.988,8.058,4.198,-4.89,-2.71,9.395,4.681,4.303,0.037,6.513],[27.184,24.132,11.733,33.995,32.223,19.112,27.691,23.24,23.616,7.715,27.117,24.285,22.033,20.775,19.195,22.389,24.013,20.924,11.535,13.72,13.228,17.886,16.936,0.165,11.491,18.038,18.882,4.056,18.379,15.467,4.172,-4.089,6.612,5.349,10.496,5.353,11.675,16.294,-7.496,2.12,8.453,11.437,-3.329,9.929,16.635,16.175,0.46,10.778,-2.219,0.185,8.909,4.254,6.993,4.546,6.194,5.396,-1.84,5.813,-10.998,-4.358,9.462,14.276,11.638,4.098,23.247,7.607,22.292,35.522,24.072,21.209,23.186,22.79,26.991,34.105,28.864,28.794,22.718,22.254,26.927,28.259,18.095,18.809,10.467,32.929,11.275,30.386,18.064,23.884,28.44,7.975,23.043,25.947,20.878,20.137,10.465,1.411,22.263,23.04,15.321,10.819,15.073,19.396,10.85,25.461,15.225,19.072,19.596,22.778,17.297,-1.483,17.355,12.826,13.402,21.073,2.704,18.018,16.598,5.814,4.206,12.823,18.674,19.035,18.359,17.291,14.772,5.394,8.498,-4.4,5.807,12.315,2.91,3.543,-2.369,6.21,15.613,-8.943,10.603,7.216,9.252,-1.79,12.03,14.931,10.088,-6.21,17.424,12.059,-2.391,13.421,16.685,8.911,2.685,0.241,10.802,-3.262,-4.049,16.393,9.775,-0.638,16.891,11.502,7.014,0.446,3.074,1.114,9.308,6.266,6.025,5.489,10.423,5.475,13.853,-3.682,13.11,13.503,3.72,4.014,-11.304,-12.652,6.386,11.458,0.047,4.123,5.623,7.687,4.107,-5.035,-2.485,9.483,4.862,4.345,-0.039,6.645],[27.212,24.266,11.633,33.717,32.362,19.088,27.914,23.015,23.783,7.615,27.181,24.324,22.144,20.943,18.805,22.416,24.057,20.926,11.534,13.887,13.138,18.152,16.85,0.168,11.46,17.981,18.812,4.28,18.388,15.335,4.205,-4.182,6.469,5.179,10.506,5.337,11.911,16.445,-7.552,2.209,8.347,11.549,-3.248,9.877,16.656,16.34,0.15,10.83,-2.259,-0.114,8.784,4.355,6.91,4.589,6.149,5.736,-1.77,5.776,-10.654,-4.392,9.499,14.148,11.603,4.165,23.314,7.405,22.363,34.675,24.196,20.622,23.454,22.344,27.553,34.016,28.92,28.95,23.181,21.437,26.597,28.241,17.906,18.824,10.089,32.902,11.261,30.548,18.231,23.894,28.142,7.87,22.99,26.076,20.678,19.649,10.556,1.526,22.197,22.553,15.222,10.984,14.958,19.32,11.772,25.365,15.653,18.935,19.407,22.431,17.457,-1.434,17.071,13.015,13.442,20.991,2.801,17.867,16.513,5.621,4.063,12.697,18.817,19.357,18.398,16.99,14.646,5.182,8.238,-4.488,5.604,11.78,3.15,3.378,-2.637,5.804,16.163,-9.4,10.314,7.097,9.069,-1.521,12.19,15.14,10.078,-6.301,17.794,12.094,-2.722,13.243,16.598,8.777,3.333,0.489,10.468,-3.226,-3.66,16.231,9.412,-0.695,17.056,11.287,6.86,0.049,2.843,0.881,9.263,6.243,6.236,5.288,10.217,5.029,13.371,-3.102,13.038,13.172,4.131,3.881,-11.397,-11.921,6.691,11.995,0.039,4.661,5.837,7.431,3.971,-4.746,-2.369,9.416,5.109,4.784,0.11,7.122],[27.28,24.332,11.48,33.408,32.456,19.211,28.072,22.71,23.962,7.589,27.006,24.199,22.293,21.146,18.508,22.302,24.044,20.823,11.625,13.875,12.992,18.213,16.72,0.205,11.617,17.917,18.741,4.344,18.504,15.221,4.313,-4.162,6.303,4.909,10.419,5.361,12.045,16.475,-7.716,2.32,8.241,11.649,-3.217,9.673,16.706,16.584,-0.047,10.833,-2.231,-0.303,8.702,4.436,6.817,4.603,6.113,6.054,-1.7,5.833,-10.396,-4.36,9.427,14.011,11.588,4.27,23.589,7.294,22.588,34.944,24.223,21.03,23.31,22.122,27.923,33.252,28.733,28.748,23.263,21.086,26.619,27.861,17.753,18.439,10.147,32.648,11.237,30.697,18.375,24.349,28.531,7.565,22.984,25.935,20.046,19.357,10.901,1.876,22.488,22.366,15.481,10.897,14.862,19.35,12.071,24.972,15.602,19.679,19.448,22.603,17.666,-1.212,16.626,13.297,13.584,20.686,2.709,18.208,16.329,5.618,4.567,12.586,18.503,19.541,18.349,17.257,14.654,4.579,8.009,-4.264,5.236,12.001,3.02,3.073,-2.675,5.396,16.482,-9.432,10.461,7.133,9.107,-1.658,12.178,14.922,10.023,-6.434,17.702,12.454,-2.402,13.303,16.712,9.34,3.647,0.8,10.359,-3.017,-3.9,16.498,9.636,-0.972,17.08,11.171,6.667,0.299,2.938,0.264,9.801,7.109,6.214,6.508,10.164,4.81,13.291,-2.969,12.918,13.086,4.485,3.156,-10.978,-11.966,7.326,12.098,0.253,4.393,6.621,7.287,4.002,-4.671,-2.003,9.371,5.162,4.914,0.096,7.272],[27.393,24.414,11.335,33.231,32.453,19.4,28.11,22.491,24.067,7.54,26.674,24.097,22.394,21.293,18.32,22.115,23.879,20.688,11.911,13.702,12.905,18.234,16.726,0.409,11.885,17.784,18.696,4.262,18.715,15.172,4.43,-4.089,6.283,4.585,10.421,5.483,12.096,16.4,-7.867,2.388,8.373,11.695,-3.273,9.511,16.733,16.685,-0.116,10.786,-2.193,-0.459,8.67,4.404,6.89,4.566,5.991,6.275,-1.569,6.021,-10.368,-4.257,9.273,13.934,11.74,4.269,23.493,7.149,23.206,34.883,24.036,21.487,23.326,22.135,28.085,32.923,29.07,28.237,22.975,20.839,26.688,27.359,18.14,18.293,10.169,32.904,10.829,30.623,18.542,23.843,29.038,7.936,23.351,25.931,19.753,19.343,10.472,2.038,22.801,22.722,15.368,11.196,14.803,19.109,11.93,25.275,15.307,19.523,19.786,22.822,17.671,-0.944,16.235,13.581,13.449,20.465,2.688,18.488,16.061,5.489,4.66,12.488,18.466,19.266,18.015,17.315,14.643,4.172,8.034,-4.349,5.151,12.204,2.785,2.863,-2.533,5.543,16.403,-9.277,10.683,7.024,9.274,-1.729,12.119,15.048,9.371,-6.534,17.362,12.094,-2.289,13.565,17.179,9.332,3.518,0.772,10.556,-2.646,-4.007,16.783,9.671,-1.089,17.191,11.066,6.75,-0.104,3.167,0.542,9.658,6.496,6.247,6.961,10.247,5.719,13.393,-3.416,13.08,13.61,5.009,3.445,-10.527,-11.984,7.516,11.636,0.275,4.386,7.119,7.618,4.397,-4.657,-2.215,9.505,5.151,4.753,0.206,7.356],[27.466,24.375,11.149,33.253,32.456,19.715,28.205,22.473,24.067,7.542,26.43,24.08,22.408,21.324,18.256,21.888,23.868,20.504,12.171,13.496,12.75,18.158,16.835,0.64,12.055,17.546,18.664,4.247,18.873,15.048,4.407,-4.069,6.285,4.371,10.589,5.662,12.072,16.363,-7.887,2.35,8.594,11.591,-3.341,9.407,16.776,16.819,-0.222,10.64,-2.231,-0.528,8.754,4.288,6.939,4.559,5.962,6.479,-1.484,6.124,-10.448,-4.244,9.238,14.042,11.972,4.227,23.758,6.714,24.305,34.917,23.896,21.931,23.144,22.099,28.094,33.184,29.088,27.504,22.852,20.798,26.565,27.663,18.778,18.416,9.815,32.946,10.889,30.618,18.589,23.23,28.314,8.329,23.109,25.804,20.127,19.393,10.802,2.112,22.927,22.554,15.281,11.178,14.551,18.944,11.877,25.567,15.297,18.875,19.799,22.737,17.479,-0.664,16.716,13.632,12.942,20.816,2.593,18.227,16.317,5.674,4.401,12.606,18.81,19.214,18.187,17.085,14.721,4.539,8.052,-4.101,5.628,12.016,2.943,2.656,-2.58,5.408,16.659,-9.547,11.277,7.363,9.222,-1.869,12.147,15.343,9.489,-6.559,17.45,11.887,-2.479,13.911,16.818,9.547,3.404,0.597,10.555,-2.862,-3.401,16.439,8.92,-1.239,16.928,11.532,7.209,-0.132,3.239,0.744,9.407,5.79,5.901,6.58,10.523,6.294,13.314,-2.95,12.897,13.596,4.878,3.888,-11.026,-12.016,7.54,11.718,0.097,4.137,7.016,7.447,4.715,-4.775,-2.641,9.202,4.93,4.825,0.162,7.745],[27.501,24.34,10.946,33.517,32.458,20.099,28.245,22.486,24.054,7.583,26.238,24.132,22.385,21.418,18.204,21.691,23.916,20.411,12.403,13.224,12.545,17.892,16.889,0.673,11.965,17.364,18.61,4.332,18.891,15.006,4.293,-4.039,6.286,4.294,10.748,5.829,12.161,16.544,-7.828,2.171,8.832,11.374,-3.415,9.391,16.833,16.803,-0.355,10.546,-2.204,-0.493,8.872,4.196,6.804,4.547,6.085,6.37,-1.571,6.056,-10.675,-4.192,9.39,14.157,12.139,4.327,23.658,6.487,24.896,34.663,24.289,21.42,23.235,22.507,28.355,33.95,28.802,27.259,22.859,21.183,26.849,27.782,18.89,18.673,9.723,33.095,11.001,30.636,18.837,23.151,28.64,8.054,22.799,25.783,20.75,19.489,11.466,2.172,22.969,22.583,15.525,10.86,14.343,18.961,11.863,25.363,15.082,18.958,19.371,21.94,17.262,-0.492,16.858,13.699,12.631,20.437,2.637,18.041,16.667,6.027,4.736,12.554,19.208,19.941,17.714,17.014,14.653,5.508,7.995,-4.115,5.833,12.343,3.064,2.51,-3.037,5.164,16.797,-9.689,11.477,7.794,9.37,-1.946,12.076,15.655,9.77,-6.775,17.675,12.166,-2.759,14.006,16.981,10.053,3.455,0.62,10.042,-3.022,-3.295,16.059,8.907,-1.511,17.681,11.5,7.288,0.095,2.955,0.319,9.943,6.021,5.875,6.091,10.254,5.899,13.819,-2.8,13.109,13.657,4.833,3.195,-11.663,-11.669,7.514,12.055,-0.106,4.258,6.436,7.203,4.529,-5.028,-2.081,8.578,4.739,4.855,-0.029,7.629],[27.605,24.297,10.89,33.823,32.533,20.263,28.235,22.502,24.056,7.555,26.118,24.306,22.394,21.546,18.13,21.562,23.969,20.388,12.621,12.949,12.448,17.708,16.859,0.528,11.859,17.176,18.537,4.489,18.872,15.049,4.241,-4.084,6.29,4.246,10.889,5.94,12.376,16.709,-7.834,1.905,9.053,11.245,-3.416,9.522,16.945,16.918,-0.385,10.453,-2.198,-0.544,9.006,4.25,6.608,4.489,6.17,6.01,-1.692,5.864,-10.848,-3.972,9.508,14.3,12.098,4.412,23.531,7.028,24.907,35.166,24.549,20.902,23.947,22.347,28.337,34.011,28.874,27.221,23.007,21.553,26.492,27.636,18.982,18.897,9.568,32.657,10.8,30.745,19.487,23.091,29.467,7.771,22.994,25.992,21.405,19.284,11.211,2.147,22.803,22.705,15.394,11.018,14.408,18.835,12.74,25.438,14.707,18.88,19.292,21.338,17.177,-0.598,16.335,13.543,12.196,20.256,2.743,17.593,16.325,5.929,5.008,11.855,19.143,20.106,17.749,17.121,14.503,5.361,7.973,-3.816,5.805,12.645,3.29,2.536,-2.826,5.441,16.827,-9.625,11.178,7.765,9.745,-1.983,12.059,15.648,9.88,-6.812,17.737,11.288,-2.554,14.035,17.282,9.939,3.437,0.641,10.381,-2.879,-3.69,16.352,9.421,-0.968,17.925,11.387,7.454,-0.47,2.61,0.475,10.133,6.13,6.014,5.795,10.334,6.034,13.674,-3.07,13.148,13.894,4.432,3.049,-11.479,-12.135,7.45,11.931,-0.424,4.622,5.844,7.419,3.944,-4.949,-2.151,8.748,4.568,5.217,-0.186,7.056],[27.697,24.261,10.896,34.085,32.533,20.379,28.327,22.507,24.112,7.505,25.959,24.506,22.524,21.678,17.913,21.531,23.996,20.467,12.863,12.756,12.213,17.584,16.611,0.292,11.917,17.072,18.546,4.685,18.839,15.11,4.243,-4.023,6.347,4.256,10.932,5.952,12.599,16.779,-7.873,1.821,9.096,11.077,-3.361,9.712,17.055,17.185,-0.244,10.603,-2.433,-0.53,9.076,4.295,6.44,4.332,6.251,5.696,-1.888,5.672,-10.929,-3.774,9.567,14.376,11.984,4.525,23.392,7.707,24.079,35.149,24.22,21.705,24.045,21.859,28.18,33.797,28.694,27.514,22.924,21.282,26.151,28.048,19.051,18.546,9.881,32.371,10.86,30.945,19.584,23.347,28.724,8.115,23.015,26.175,21.788,19.068,11.213,2.058,22.491,23.217,14.981,11.185,14.034,18.96,13.084,25.641,14.625,18.743,19.094,22.146,17.225,-0.539,16.345,13.797,12.146,20.569,3.016,17.461,16.055,5.806,4.988,11.933,18.3,20.005,17.379,17.145,14.579,4.543,8.135,-3.886,5.552,12.473,3.111,2.356,-2.481,5.136,16.698,-9.458,10.799,7.688,9.933,-1.935,11.803,15.475,10.02,-6.498,17.822,11.231,-2.578,13.835,17.036,9.808,3.186,0.18,10.277,-2.877,-3.707,16.985,9.974,-1.293,17.131,11.625,7.604,-0.053,2.55,0.296,10.203,6.203,6.136,5.437,11.014,6.559,13.259,-2.569,13.302,13.79,4.092,3.806,-11.278,-12.661,6.775,11.896,-0.83,4.774,5.415,7.506,3.848,-4.481,-2.668,8.83,4.64,4.967,-0.23,6.927],[27.819,24.006,10.951,34.138,32.511,20.528,28.25,22.446,24.117,7.651,25.875,24.464,22.726,21.915,17.482,21.724,24.056,20.534,13.056,12.698,11.979,17.515,16.228,0.191,12.0,16.943,18.509,4.906,18.695,15.233,4.28,-3.857,6.498,4.251,10.879,5.92,12.689,16.827,-7.827,1.832,8.937,11.014,-3.343,9.905,17.232,17.291,0.026,10.843,-2.791,-0.523,9.076,4.329,6.296,4.13,6.362,5.355,-2.069,5.673,-10.975,-3.567,9.606,14.294,11.968,4.636,23.526,7.534,23.142,34.952,24.268,21.984,24.032,21.648,27.98,34.031,28.795,27.394,22.645,21.186,26.184,28.036,19.725,18.101,10.081,32.524,10.638,30.928,19.287,23.951,28.42,8.032,23.15,26.346,22.102,18.96,11.814,1.809,22.069,23.619,14.774,11.294,13.713,18.839,13.132,25.437,14.513,19.045,19.225,22.34,17.068,-1.009,16.886,13.716,12.117,20.692,3.134,17.474,15.937,5.743,5.341,12.129,18.602,19.954,17.694,17.115,14.614,4.755,8.102,-4.092,5.216,12.494,2.863,2.501,-2.623,4.997,16.33,-9.492,11.008,7.399,9.471,-1.691,10.736,15.724,10.305,-6.402,17.9,11.796,-3.044,13.743,17.272,9.901,2.938,0.073,10.397,-3.001,-3.863,16.907,10.025,-1.352,17.059,11.756,7.213,0.027,2.261,0.564,10.076,6.481,6.23,5.335,11.077,6.639,13.705,-2.329,13.396,13.683,3.558,4.213,-11.481,-12.213,6.497,11.832,-0.752,4.499,5.324,7.64,4.019,-4.644,-2.619,8.772,5.032,4.565,-0.521,7.136],[27.943,23.7,10.973,34.017,32.63,20.705,28.027,22.331,24.003,7.88,25.873,24.303,23.071,22.309,17.05,22.046,24.186,20.457,13.267,12.702,11.935,17.534,16.024,0.136,12.071,16.802,18.568,5.103,18.569,15.379,4.288,-3.836,6.583,4.253,10.714,5.93,12.7,16.961,-7.763,1.759,8.754,11.041,-3.329,9.94,17.397,17.311,0.249,11.049,-3.062,-0.324,8.999,4.414,6.161,3.909,6.453,4.988,-2.081,6.012,-11.014,-3.441,9.691,14.259,11.96,4.596,23.338,6.871,23.07,35.179,24.225,21.343,23.327,21.727,28.026,34.1,29.063,27.082,21.957,20.89,26.284,27.963,19.767,17.656,9.549,32.52,11.063,31.022,19.384,23.871,28.526,8.102,23.492,26.143,21.744,18.528,11.87,1.759,21.504,23.068,14.594,10.871,13.811,18.707,13.133,25.604,14.522,19.005,19.554,21.735,16.904,-1.166,17.168,13.661,12.232,20.862,3.451,17.483,15.737,5.594,5.566,11.807,18.885,19.624,17.347,17.09,14.714,5.093,8.431,-3.732,5.45,12.25,2.734,2.517,-2.444,5.155,16.298,-9.54,11.224,7.773,9.165,-1.664,10.181,16.298,10.486,-6.516,17.442,11.18,-3.129,14.135,17.244,9.117,3.056,0.112,10.893,-2.944,-4.302,16.378,9.761,-0.558,17.282,11.853,7.442,-0.076,2.138,0.318,9.757,6.792,5.913,5.628,10.592,6.081,13.806,-2.366,12.987,13.8,3.404,3.582,-11.536,-12.217,6.234,11.783,-0.316,4.386,5.717,7.69,4.445,-4.776,-2.526,8.696,5.226,5.045,-0.583,7.347],[28.095,23.342,11.013,33.886,32.811,20.8,27.914,22.123,23.786,7.992,26.035,24.102,23.241,22.519,16.781,22.098,24.204,20.355,13.428,12.736,11.914,17.516,16.143,0.127,12.101,16.671,18.627,5.205,18.503,15.576,4.187,-3.881,6.602,4.242,10.529,6.019,12.728,17.102,-7.809,1.632,8.756,10.898,-3.311,9.67,17.423,17.303,0.446,11.208,-3.166,0.018,9.018,4.457,6.167,3.852,6.332,4.65,-2.003,6.536,-11.092,-3.467,9.702,14.249,11.903,4.527,23.444,6.666,24.179,35.231,23.891,21.919,23.526,21.379,28.226,34.119,28.711,26.541,21.531,20.955,26.273,28.131,19.433,16.987,9.661,32.547,10.721,31.017,19.973,23.804,27.84,8.37,23.702,25.797,21.577,17.51,11.854,1.584,21.842,23.28,14.586,11.054,13.689,18.782,13.208,25.943,14.556,18.648,19.766,22.185,17.149,-1.023,16.841,13.825,12.357,20.514,3.601,17.54,15.72,5.401,5.543,11.804,18.354,19.137,16.879,17.128,14.597,5.363,8.449,-3.836,6.024,12.003,2.599,2.544,-2.477,5.593,16.342,-9.543,11.854,7.846,9.251,-1.88,11.063,16.008,10.12,-6.394,17.759,11.199,-3.35,14.661,16.818,8.903,3.142,0.26,11.08,-2.613,-4.061,16.732,9.63,-0.025,17.113,12.308,7.053,0.189,2.065,0.414,9.493,6.319,5.939,5.81,10.446,5.93,13.574,-2.365,12.974,13.631,3.222,3.425,-12.054,-12.484,6.101,11.918,0.22,4.027,5.632,7.329,4.864,-4.206,-2.41,9.401,4.972,5.005,-0.365,7.376],[28.271,23.046,11.19,33.757,32.864,20.91,27.831,21.98,23.762,7.989,26.181,23.953,23.244,22.526,16.461,21.954,24.222,20.369,13.534,12.831,11.93,17.428,16.292,0.144,12.08,16.665,18.493,5.05,18.39,15.591,3.935,-3.923,6.524,4.369,10.355,6.049,12.826,17.167,-7.847,1.638,8.834,10.94,-3.431,9.274,17.461,17.183,0.683,11.285,-3.142,0.214,9.025,4.637,6.21,3.986,5.952,4.343,-1.774,6.934,-11.26,-3.548,9.71,14.248,11.878,4.541,23.339,7.567,24.819,34.971,23.666,22.274,23.332,20.817,28.475,33.842,28.823,26.853,21.465,20.912,26.58,28.181,19.582,16.73,10.32,33.084,10.233,31.008,20.056,23.938,27.317,8.435,23.317,25.836,21.882,17.058,11.862,1.874,23.145,23.739,14.723,11.396,13.678,18.664,13.381,25.681,14.678,18.832,19.653,22.449,16.764,-0.604,17.072,13.771,12.072,20.247,3.237,17.646,15.906,5.484,5.593,11.896,18.308,18.981,17.435,17.214,15.158,5.407,8.271,-3.721,5.736,12.039,2.433,2.743,-2.726,5.576,16.854,-9.505,12.206,7.777,9.044,-2.103,11.646,15.894,9.484,-6.647,18.358,11.296,-3.262,14.603,16.808,9.296,2.719,-0.13,11.068,-2.602,-4.386,16.992,9.595,-0.76,17.576,12.622,7.113,0.124,2.198,0.865,9.927,5.751,5.855,6.163,10.915,6.249,13.57,-2.056,13.109,13.581,3.219,3.546,-11.769,-12.582,5.949,11.825,1.109,4.333,5.189,7.208,4.095,-3.729,-2.199,9.465,5.202,4.465,-0.76,7.977],[28.373,22.915,11.266,33.554,32.945,21.058,27.751,21.798,23.903,8.042,26.408,24.031,23.068,22.486,16.177,21.888,24.355,20.58,13.534,12.938,12.066,17.459,16.249,0.295,12.006,16.76,18.335,4.97,18.199,15.586,3.593,-3.998,6.38,4.573,10.212,6.116,12.907,17.238,-7.769,1.605,8.959,11.147,-3.546,8.936,17.455,17.03,0.501,11.285,-3.164,0.379,9.2,4.748,6.168,4.176,5.631,4.113,-1.606,7.157,-11.381,-3.464,9.757,14.306,11.867,4.492,22.512,8.493,24.633,35.188,23.844,22.047,23.158,21.173,28.759,33.421,29.147,26.849,21.741,21.218,26.566,28.901,19.745,16.749,10.2,32.962,11.015,31.094,20.043,23.757,27.405,8.531,23.463,25.821,22.599,16.874,12.158,2.136,23.307,23.374,14.892,11.26,13.928,18.901,13.573,25.679,14.739,18.766,19.352,21.428,16.881,-0.463,17.298,13.809,12.242,20.48,3.326,17.479,15.908,5.231,5.177,12.016,18.328,19.276,17.618,16.799,14.998,4.954,8.162,-4.007,5.179,11.915,2.388,2.819,-2.574,5.579,17.161,-9.417,11.861,7.916,8.949,-1.974,11.203,16.124,9.183,-6.596,18.309,11.168,-3.051,14.625,16.881,9.534,2.471,-0.296,10.915,-2.99,-4.226,16.679,9.227,-0.94,17.526,11.819,7.388,0.562,2.43,0.741,9.989,5.641,6.127,6.698,10.58,6.025,13.8,-2.383,13.115,13.473,3.056,3.555,-11.445,-12.314,5.852,11.606,1.349,4.922,5.573,7.372,3.744,-4.009,-2.058,8.682,5.171,4.588,0.014,8.352],[28.487,22.877,11.31,33.517,32.941,21.082,27.642,21.636,24.069,8.266,26.736,24.224,22.769,22.48,15.949,21.737,24.554,20.782,13.493,13.008,12.204,17.488,16.26,0.538,12.002,17.022,18.204,5.045,18.091,15.541,3.192,-4.08,6.262,4.822,10.234,6.15,12.997,17.327,-7.664,1.444,9.075,11.18,-3.48,8.651,17.403,16.859,0.291,11.084,-3.188,0.482,9.45,4.75,6.078,4.307,5.446,3.999,-1.388,7.167,-11.339,-3.403,9.555,14.342,11.749,4.627,22.587,8.604,24.296,35.303,23.988,22.132,23.573,21.605,28.617,33.087,28.784,26.724,21.107,20.823,25.945,29.221,19.868,16.636,9.846,32.58,10.719,31.126,20.072,23.649,27.344,8.616,23.459,26.126,22.929,16.999,12.191,2.34,23.122,23.099,14.612,10.592,13.959,19.063,13.442,25.957,14.829,18.774,18.872,20.774,17.484,-0.35,16.906,13.352,12.692,21.329,3.363,17.491,15.793,4.805,5.306,12.171,17.777,19.523,17.389,16.787,14.587,5.192,7.955,-4.032,5.341,11.755,2.045,3.091,-2.369,5.661,16.517,-9.328,11.3,7.973,8.945,-2.042,11.476,16.136,9.222,-6.205,18.073,11.734,-3.028,14.517,17.013,9.821,2.474,-0.217,11.193,-2.893,-4.058,16.753,8.97,-0.468,16.328,12.073,7.624,0.069,2.492,0.84,10.199,6.195,6.374,6.715,10.836,5.695,13.636,-2.379,12.958,13.499,2.783,3.634,-11.96,-12.502,5.602,11.855,1.349,4.747,6.142,7.699,4.353,-4.527,-1.684,8.478,4.554,4.463,0.482,8.273],[28.587,22.794,11.308,33.524,32.784,20.974,27.372,21.48,24.13,8.479,26.923,24.466,22.468,22.571,15.746,21.531,24.702,20.956,13.477,13.156,12.354,17.51,16.32,0.708,11.826,17.368,18.051,5.122,18.088,15.302,2.865,-4.004,6.245,5.057,10.308,6.072,12.989,17.287,-7.606,1.39,9.183,11.173,-3.318,8.464,17.439,16.623,0.179,11.001,-3.193,0.547,9.742,4.764,6.133,4.321,5.339,3.955,-1.106,7.002,-11.315,-3.472,9.285,14.204,11.745,4.791,22.94,7.833,23.739,35.245,24.389,21.908,23.875,21.096,28.526,33.345,28.744,27.467,21.158,20.303,26.046,28.727,20.145,16.417,10.112,32.606,10.665,31.086,19.578,24.179,27.505,9.099,23.35,26.173,22.83,17.069,11.782,2.205,22.277,23.603,14.619,10.531,14.147,19.199,13.36,26.081,14.777,18.657,18.602,21.777,17.476,-0.322,16.917,13.503,13.24,21.413,3.681,17.864,16.187,4.167,5.313,12.157,17.418,19.58,17.285,17.038,14.999,5.834,8.133,-3.973,5.336,11.897,1.356,3.482,-2.398,5.95,16.636,-9.356,11.35,7.94,8.913,-1.874,11.965,16.088,9.054,-6.342,18.049,11.631,-3.143,14.185,16.501,10.1,2.568,-0.248,11.435,-2.566,-4.469,16.682,8.695,-0.476,16.326,12.335,7.442,0.227,2.842,0.729,10.664,6.254,6.509,6.379,10.631,5.461,13.545,-2.216,13.004,13.491,2.66,3.412,-12.08,-12.634,5.422,11.572,1.657,4.287,6.28,7.923,4.685,-4.439,-1.767,8.211,4.155,4.744,0.669,8.144],[28.603,22.835,11.389,33.505,32.669,20.85,27.017,21.352,24.085,8.642,27.06,24.722,22.262,22.704,15.575,21.325,24.73,20.902,13.38,13.367,12.525,17.471,16.469,0.761,11.71,17.657,17.862,5.088,18.148,15.184,2.605,-3.938,6.309,5.209,10.409,6.043,12.867,17.19,-7.666,1.533,9.308,11.163,-3.111,8.369,17.468,16.298,0.245,11.079,-3.231,0.668,10.025,4.797,6.301,4.366,5.294,4.036,-0.829,6.912,-11.259,-3.524,9.024,14.085,11.783,4.687,22.653,7.122,23.566,35.085,24.407,22.31,23.761,20.974,28.727,33.374,28.374,27.527,21.156,19.651,26.764,28.75,19.842,16.099,10.613,32.762,10.957,30.937,19.506,24.846,27.657,8.932,22.892,26.462,22.253,16.992,11.84,2.354,21.811,23.688,14.848,10.84,14.358,19.463,13.302,26.069,15.113,18.571,19.031,22.029,17.296,-0.238,16.644,13.418,13.224,21.074,3.495,18.322,16.267,3.504,5.411,12.077,17.846,19.412,17.647,16.616,15.032,5.496,8.01,-3.528,5.108,12.144,0.987,3.592,-2.455,6.661,16.724,-9.377,11.533,7.963,9.046,-1.602,11.698,15.842,8.684,-6.471,18.219,11.385,-3.753,14.445,16.183,10.076,2.766,-0.282,10.979,-2.504,-4.381,16.863,8.709,-0.846,17.046,12.064,7.452,0.061,2.603,0.529,10.785,5.702,6.417,6.192,10.064,5.367,13.582,-2.316,12.967,13.536,2.651,3.484,-12.036,-12.406,5.604,11.551,1.993,4.213,5.933,8.626,4.555,-4.056,-1.911,7.769,4.416,5.276,0.667,7.952],[28.578,22.796,11.568,33.422,32.669,20.674,26.78,21.214,24.079,8.663,27.24,24.963,22.039,22.811,15.534,21.163,24.705,20.675,13.124,13.49,12.652,17.264,16.653,0.778,11.758,17.845,17.751,4.934,18.369,15.161,2.433,-3.894,6.335,5.377,10.602,6.035,12.779,17.165,-7.725,1.668,9.367,11.068,-2.887,8.389,17.477,16.103,0.391,11.096,-3.335,0.794,10.288,4.899,6.346,4.303,5.285,4.173,-0.602,6.907,-11.203,-3.457,8.715,14.157,11.748,4.473,22.683,7.149,23.863,34.921,24.225,23.142,23.345,21.377,28.91,33.07,28.049,26.86,21.06,19.476,26.97,29.248,19.271,15.572,10.261,32.622,11.225,30.798,19.802,25.083,27.287,9.042,22.663,26.328,21.583,16.576,11.784,2.317,21.672,23.153,15.011,10.626,14.5,18.932,13.083,25.776,15.39,18.41,19.485,21.132,17.67,-0.354,16.333,13.461,12.98,21.133,3.18,18.427,16.142,2.981,5.436,12.139,17.833,19.479,18.163,16.141,14.652,5.211,7.836,-3.46,5.0,12.21,0.866,3.812,-2.383,6.872,16.25,-9.14,11.915,7.887,9.355,-1.37,11.622,16.031,8.844,-6.271,17.968,11.352,-3.305,14.53,16.305,10.047,2.967,0.172,11.101,-2.666,-4.336,17.134,8.507,-0.749,16.339,11.788,7.847,-0.078,2.456,0.873,10.821,5.906,6.127,6.137,10.013,5.932,13.457,-2.898,12.701,13.364,3.046,3.604,-11.287,-12.463,5.895,12.581,2.042,4.854,5.674,8.618,4.146,-3.842,-1.461,7.559,4.913,4.537,0.856,7.82],[28.603,22.583,11.793,33.26,32.599,20.461,26.64,21.174,24.209,8.627,27.369,25.015,21.781,22.835,15.506,20.943,24.535,20.58,12.898,13.501,12.786,17.069,16.679,0.752,11.937,17.974,17.708,4.897,18.605,15.177,2.325,-3.778,6.258,5.585,10.761,6.052,12.735,17.071,-7.606,1.771,9.416,10.919,-2.893,8.527,17.53,16.131,0.503,11.032,-3.39,0.863,10.406,4.975,6.359,4.29,5.369,4.177,-0.306,6.904,-10.999,-3.313,8.423,14.172,11.657,4.199,22.696,7.843,24.299,34.97,24.306,22.903,23.307,21.505,28.815,32.833,28.249,27.504,21.232,19.425,26.361,29.126,19.254,14.927,10.197,32.794,11.187,30.956,19.597,24.583,26.917,9.198,22.701,26.38,21.585,16.498,11.501,2.452,21.855,23.202,14.986,10.436,14.648,18.637,12.386,25.529,15.307,18.057,19.49,20.579,18.24,-0.28,16.218,13.313,13.035,20.981,3.55,18.134,16.371,2.79,4.592,12.575,17.694,19.754,18.003,16.487,14.69,5.434,7.974,-3.555,4.879,12.347,0.588,3.769,-2.178,6.394,16.563,-9.113,12.2,7.934,9.398,-1.36,11.835,15.979,9.323,-6.363,17.48,11.515,-2.789,14.503,16.648,9.998,3.223,0.397,11.459,-2.381,-4.125,16.883,8.535,-0.731,16.032,11.912,7.538,0.233,2.475,1.348,11.158,6.383,5.876,6.179,9.942,5.703,13.601,-2.956,12.686,12.958,3.318,3.252,-11.88,-12.222,5.985,12.095,2.008,5.215,5.447,8.648,4.218,-4.194,-1.381,7.638,5.105,3.768,1.36,8.032],[28.591,22.5,12.007,33.188,32.574,20.269,26.525,21.016,24.44,8.621,27.437,24.966,21.724,22.756,15.417,20.745,24.316,20.672,12.565,13.374,13.001,17.01,16.643,0.781,12.064,17.993,17.737,4.938,18.667,15.254,2.249,-3.627,6.146,5.686,10.777,6.077,12.628,16.868,-7.431,1.946,9.373,10.9,-2.996,8.778,17.575,16.315,0.543,11.014,-3.254,0.951,10.614,4.907,6.4,4.413,5.445,4.27,-0.028,6.913,-10.93,-3.295,8.249,14.118,11.451,3.717,22.452,8.748,23.985,34.946,24.629,22.543,22.995,21.998,28.774,32.742,27.864,27.878,20.716,19.679,26.497,29.053,19.391,14.559,10.704,33.273,11.387,30.828,19.079,24.432,26.804,9.235,22.707,26.431,22.208,16.882,11.413,2.485,21.878,23.08,14.971,10.828,14.803,19.032,11.954,25.552,15.205,17.568,19.3,20.434,18.058,-0.358,16.72,13.627,13.292,20.771,3.263,18.035,16.736,2.528,4.367,12.935,17.899,19.94,17.945,16.738,14.889,5.506,7.687,-3.638,5.296,12.485,0.404,3.796,-2.037,6.171,16.753,-9.188,11.769,7.917,9.378,-1.565,11.468,15.932,8.998,-6.231,17.593,11.656,-3.579,14.473,16.589,9.813,3.601,0.35,10.962,-2.487,-4.25,16.931,8.951,-0.555,16.41,12.067,7.595,0.547,2.64,1.318,11.106,6.554,6.136,6.499,9.572,5.237,13.61,-2.507,12.91,13.287,2.876,2.76,-11.544,-12.234,5.609,10.812,1.654,4.395,5.514,8.841,4.647,-3.773,-1.137,7.473,5.164,4.01,1.736,8.018],[28.486,22.311,12.221,33.075,32.515,20.092,26.349,20.967,24.646,8.772,27.459,24.848,21.759,22.58,15.389,20.56,24.14,20.784,12.138,13.295,13.135,16.941,16.763,0.844,12.168,18.017,17.972,4.792,18.589,15.497,2.17,-3.514,6.056,5.661,10.928,5.914,12.521,16.686,-7.282,2.063,9.313,10.963,-3.143,8.962,17.596,16.605,0.566,11.052,-3.136,0.978,10.679,4.835,6.585,4.378,5.555,4.352,0.18,6.864,-10.928,-3.185,8.071,14.026,11.191,3.253,22.612,9.528,23.784,34.92,24.384,23.145,23.15,22.159,28.993,32.694,27.153,28.336,20.588,19.416,26.892,29.127,18.787,14.179,10.869,33.634,11.623,31.018,19.02,24.679,27.144,8.652,22.456,26.609,22.933,16.914,10.949,2.06,21.8,22.632,15.007,11.261,14.951,19.479,12.083,25.212,14.998,18.105,19.727,20.316,17.375,-0.392,17.082,13.891,13.159,21.247,3.293,18.033,16.454,2.077,4.896,12.942,18.403,19.685,18.011,16.27,14.843,5.456,7.651,-3.52,5.63,12.473,0.494,3.904,-1.782,6.828,16.156,-8.618,11.121,7.801,9.403,-1.45,11.102,15.979,9.445,-5.774,17.989,11.895,-3.386,14.063,16.134,10.081,3.497,0.664,11.172,-2.881,-4.216,17.366,8.881,-0.3,16.49,11.688,7.77,0.239,2.904,1.216,11.207,6.459,6.2,6.952,9.747,5.448,13.394,-2.757,12.988,12.974,2.828,2.492,-11.456,-12.258,5.973,10.716,1.633,4.361,5.445,9.456,4.718,-3.93,-0.839,7.233,5.28,4.064,1.84,8.099],[28.433,22.272,12.357,33.059,32.404,19.747,26.155,20.904,24.724,9.0,27.678,24.786,21.73,22.563,15.348,20.487,23.937,20.982,11.808,13.189,13.204,16.975,16.745,0.788,12.416,17.968,18.215,4.807,18.582,15.743,2.096,-3.398,6.113,5.789,11.149,5.698,12.411,16.583,-7.03,2.02,9.283,10.972,-3.234,9.18,17.619,16.782,0.541,11.076,-3.048,1.038,10.651,4.728,6.833,4.294,5.763,4.356,0.391,6.799,-10.967,-3.235,7.956,13.868,11.01,2.799,22.533,10.004,23.873,34.62,24.192,22.974,23.348,21.948,28.749,32.384,26.645,28.494,20.546,19.33,26.35,28.87,18.332,14.207,10.858,33.605,11.888,30.915,19.276,24.696,27.358,8.865,22.554,26.585,23.444,16.839,10.372,2.294,21.186,22.581,15.428,11.001,14.981,19.287,11.926,24.678,15.104,18.408,19.84,20.728,17.692,-0.488,17.428,13.981,12.904,21.61,3.355,17.895,16.328,2.259,4.668,12.804,18.203,19.279,18.199,16.608,15.043,5.154,7.852,-3.797,5.063,12.775,0.467,4.193,-1.612,7.044,16.347,-8.289,10.768,7.433,9.803,-1.643,11.441,15.978,9.287,-5.572,17.879,11.818,-2.688,13.591,16.97,10.072,3.604,0.694,11.584,-3.18,-3.787,17.264,8.977,-0.435,16.347,11.141,7.359,0.013,2.438,1.303,11.439,6.782,5.803,6.857,9.472,6.297,13.506,-2.641,12.324,12.79,3.46,2.923,-11.454,-12.162,6.208,11.097,1.839,4.464,5.994,9.728,4.266,-3.967,-1.12,7.108,5.324,4.008,1.741,7.695],[28.362,22.47,12.398,32.987,32.246,19.379,25.945,20.835,24.657,9.266,28.02,24.732,21.692,22.661,15.291,20.477,23.706,21.205,11.47,13.126,13.181,16.98,16.78,0.559,12.552,18.025,18.269,4.788,18.607,16.008,1.984,-3.363,6.295,6.041,11.483,5.584,12.3,16.658,-6.811,1.97,9.245,10.855,-3.403,9.315,17.655,16.83,0.453,10.996,-2.866,1.273,10.58,4.606,7.096,4.078,6.131,4.455,0.375,6.614,-10.914,-3.508,7.867,13.786,11.054,2.48,22.254,10.404,23.997,34.378,24.423,23.25,23.074,21.798,28.608,32.356,26.684,27.886,20.823,19.11,27.229,29.152,18.173,14.784,11.243,33.36,12.079,30.551,18.921,24.484,26.682,9.618,22.453,26.619,23.851,16.657,10.485,2.207,20.841,22.745,15.125,11.187,14.916,19.591,11.645,24.259,14.913,18.247,19.343,20.798,17.818,-0.374,17.499,14.02,12.623,21.102,3.032,17.732,16.628,1.966,4.317,13.203,18.236,19.52,18.182,16.938,15.487,4.897,7.729,-3.572,5.105,13.264,0.241,4.369,-1.633,7.201,16.682,-8.409,10.604,7.466,10.247,-1.829,11.756,16.03,9.466,-5.489,17.754,11.736,-2.465,13.44,17.444,9.446,3.6,0.481,11.338,-3.039,-3.683,17.097,9.105,-0.658,16.973,11.407,7.443,0.401,2.22,1.533,11.584,6.636,5.963,6.802,8.778,5.98,13.417,-2.619,12.412,12.435,3.42,2.998,-11.224,-12.35,6.189,11.436,1.655,4.446,6.58,10.177,3.581,-3.724,-0.931,7.097,5.395,3.265,2.035,7.218],[28.314,22.69,12.441,32.837,32.15,19.165,25.777,20.738,24.496,9.712,28.463,24.804,21.525,22.792,15.243,20.488,23.51,21.258,11.264,13.038,13.145,16.817,16.97,0.382,12.562,18.193,18.167,4.574,18.599,16.28,1.794,-3.333,6.44,6.365,11.857,5.599,12.218,16.806,-6.753,1.981,9.09,10.826,-3.49,9.355,17.638,16.965,0.419,10.855,-2.611,1.475,10.51,4.396,7.26,3.837,6.413,4.443,0.306,6.26,-10.763,-3.685,7.827,13.91,11.095,2.261,22.802,10.002,24.33,34.365,24.436,23.466,22.951,21.489,28.79,32.702,26.937,28.067,21.013,18.992,27.732,29.006,18.126,15.793,11.191,33.182,12.103,30.554,18.102,24.184,26.517,9.252,22.254,26.444,24.049,16.457,10.463,1.974,20.87,22.055,15.195,11.652,14.878,19.597,11.049,24.485,14.934,18.158,19.317,20.4,17.767,-0.735,17.589,14.248,12.672,20.958,3.147,17.889,16.942,1.768,4.763,13.069,18.527,19.828,18.004,16.548,15.663,4.951,7.921,-2.958,5.331,13.435,-0.036,4.497,-1.679,7.266,16.692,-8.301,10.626,7.506,10.409,-2.001,11.104,16.072,9.878,-5.337,17.983,11.422,-1.787,13.559,16.767,9.64,3.165,0.56,10.847,-3.109,-4.054,17.241,9.317,-0.45,16.973,11.282,7.415,0.121,2.142,1.781,11.164,7.382,5.24,6.587,9.277,5.599,13.284,-3.317,12.988,12.657,3.125,2.63,-11.353,-12.305,6.06,11.874,1.823,4.233,6.236,10.63,3.639,-4.519,-0.712,7.312,5.992,2.731,1.972,7.392],[28.274,22.882,12.6,32.792,32.236,19.019,25.779,20.54,24.381,10.076,28.846,24.77,21.233,23.012,15.308,20.393,23.25,21.115,11.183,12.943,13.038,16.685,17.166,0.231,12.578,18.27,18.067,4.439,18.599,16.41,1.555,-3.188,6.46,6.601,12.06,5.614,12.212,16.897,-6.74,1.948,8.972,10.776,-3.4,9.429,17.532,17.021,0.44,10.642,-2.351,1.687,10.411,4.055,7.403,3.768,6.471,4.318,0.284,5.928,-10.654,-3.888,7.99,14.111,11.276,2.118,23.644,9.384,23.962,34.619,24.353,23.087,22.965,20.979,28.538,32.284,27.167,29.325,21.046,19.213,27.595,29.021,18.076,16.441,10.903,33.435,12.176,30.648,18.057,24.587,26.295,9.483,21.898,26.504,23.651,16.203,9.882,1.58,21.357,21.655,15.877,11.472,14.826,19.647,10.52,24.393,14.7,18.224,19.367,20.564,18.206,-1.065,17.859,14.389,13.062,21.755,3.001,17.463,16.876,1.712,4.985,12.646,18.14,19.825,18.603,16.672,15.672,5.232,8.192,-3.265,5.489,13.759,0.116,4.842,-1.424,7.488,16.646,-8.336,10.811,7.35,10.903,-1.906,11.217,15.957,9.447,-5.326,18.192,11.754,-2.814,13.581,17.05,9.811,3.248,0.462,10.877,-3.334,-3.129,17.338,9.243,-0.326,16.269,10.703,7.176,-0.273,1.934,1.483,10.887,7.649,5.192,6.202,9.377,6.355,13.714,-2.95,12.519,13.04,3.11,2.253,-11.242,-11.968,5.815,11.527,1.901,3.513,5.957,10.81,3.811,-4.697,-0.896,7.331,6.867,2.437,1.881,7.209],[28.254,22.949,12.83,32.766,32.395,18.95,25.818,20.363,24.274,10.256,29.166,24.532,21.048,23.15,15.408,20.325,22.924,21.085,11.048,12.919,12.894,16.561,17.369,0.027,12.505,18.354,18.122,4.363,18.523,16.43,1.356,-3.055,6.477,6.71,12.241,5.7,12.313,16.866,-6.699,1.721,8.968,10.745,-3.28,9.356,17.445,17.003,0.364,10.43,-2.137,1.867,10.297,3.754,7.555,3.827,6.579,4.229,0.226,5.729,-10.517,-3.884,8.263,14.224,11.445,1.958,23.805,9.076,23.758,34.406,24.474,23.02,22.677,20.35,28.272,32.126,26.84,30.126,21.377,19.549,28.068,29.039,17.794,16.691,11.672,33.953,12.524,30.788,18.204,24.49,26.574,10.18,21.308,26.101,23.524,16.237,10.055,1.282,21.511,21.672,15.71,11.316,14.828,19.406,10.347,23.69,14.772,18.162,19.423,20.665,18.049,-1.098,18.027,13.871,12.994,21.627,3.041,16.876,17.02,1.586,4.72,12.91,18.367,19.538,18.458,16.569,15.577,4.892,8.245,-3.563,5.431,13.882,0.241,5.187,-1.275,8.054,16.915,-8.354,11.02,7.566,10.998,-1.523,11.746,15.83,9.312,-5.523,17.872,11.857,-3.105,13.788,17.356,9.495,3.425,0.646,10.661,-3.198,-2.771,17.217,9.251,-0.449,16.28,11.063,7.235,0.235,2.233,1.75,11.327,7.177,5.4,6.044,9.394,5.995,13.722,-3.51,12.751,13.138,3.162,1.77,-10.876,-11.974,5.863,11.416,2.146,3.849,6.318,10.475,3.212,-4.28,-1.112,7.537,6.677,2.522,1.891,7.055],[28.285,22.941,13.098,32.783,32.58,18.874,25.735,20.209,24.286,10.309,29.455,24.166,20.925,23.198,15.464,20.409,22.618,21.252,11.035,13.075,12.912,16.378,17.341,-0.142,12.363,18.297,18.276,4.483,18.321,16.513,1.22,-3.095,6.493,6.792,12.413,5.59,12.522,16.673,-6.558,1.597,9.035,10.785,-3.183,9.179,17.362,16.888,0.248,10.585,-2.183,2.101,10.185,3.43,7.739,3.967,6.615,4.236,0.138,5.583,-10.435,-3.786,8.499,14.222,11.445,1.72,23.409,9.271,24.128,34.415,24.47,23.383,22.646,20.436,27.901,32.795,26.879,30.563,21.152,19.758,29.11,29.449,17.908,16.899,12.19,33.918,12.566,31.082,18.562,23.679,26.822,10.413,20.98,25.746,23.059,16.074,9.946,1.429,21.378,21.538,15.475,11.274,14.555,19.546,10.511,23.231,15.046,18.186,19.544,20.462,17.995,-1.577,18.019,13.759,12.552,21.121,2.904,16.48,17.291,1.404,4.827,12.676,18.554,19.158,18.082,16.729,15.507,4.718,8.179,-3.324,5.321,13.941,0.482,5.232,-1.397,8.431,16.774,-7.837,11.059,7.499,10.909,-1.393,11.581,15.707,9.546,-5.022,17.752,11.413,-1.972,14.154,17.532,9.385,3.426,0.623,10.42,-3.471,-2.894,17.059,9.482,-0.666,17.262,10.695,7.432,0.238,2.482,1.815,11.42,7.035,5.303,6.307,9.831,6.035,13.31,-3.243,13.171,13.27,2.993,1.019,-10.645,-12.164,5.993,11.536,2.312,4.384,6.723,9.818,3.107,-4.477,-1.127,7.914,5.77,2.748,1.718,6.826],[28.419,22.858,13.263,33.01,32.708,18.822,25.698,20.105,24.551,10.302,29.737,23.842,20.892,23.307,15.469,20.572,22.427,21.429,11.084,13.217,12.909,16.204,17.206,-0.366,12.242,18.081,18.378,4.692,18.05,16.64,1.167,-3.172,6.485,6.95,12.5,5.496,12.785,16.449,-6.215,1.507,9.133,10.834,-3.257,9.028,17.258,16.817,0.096,10.813,-2.349,2.278,10.051,3.249,7.952,4.165,6.551,4.261,0.071,5.46,-10.518,-3.71,8.727,14.158,11.408,1.4,23.17,9.769,24.215,34.301,24.006,23.047,22.778,21.073,27.557,32.89,26.717,30.868,21.142,19.622,30.01,29.246,17.658,16.881,11.959,34.018,13.094,31.049,18.253,23.102,26.428,9.767,21.334,25.538,22.236,15.877,10.031,1.316,21.298,21.216,15.852,11.098,14.793,19.92,11.007,23.465,14.969,17.887,19.173,20.404,18.017,-1.426,17.994,13.981,12.82,21.784,3.189,16.242,17.005,1.348,4.993,12.261,18.103,19.098,18.569,17.16,15.783,4.902,7.958,-3.176,5.134,13.96,0.136,5.454,-1.393,8.236,16.12,-7.485,11.194,7.254,11.173,-1.549,11.619,15.7,9.353,-4.627,17.968,11.541,-1.629,14.009,17.005,9.987,3.192,0.783,11.052,-3.532,-3.9,16.83,9.369,-0.854,17.68,10.767,7.326,0.09,2.453,1.836,10.947,7.774,4.986,6.07,10.2,6.262,13.587,-3.147,13.014,13.21,3.02,0.983,-10.805,-12.093,5.975,11.887,2.67,3.877,6.591,9.185,3.257,-4.381,-1.195,8.05,5.612,3.0,1.673,6.711],[28.559,22.792,13.445,33.124,32.738,18.738,25.684,20.109,24.696,10.175,30.062,23.636,21.058,23.274,15.366,20.752,22.351,21.603,11.163,13.175,12.837,16.058,17.134,-0.583,12.077,17.906,18.42,4.85,17.822,16.685,1.162,-3.262,6.396,7.124,12.51,5.609,12.984,16.25,-5.939,1.416,9.212,10.973,-3.309,8.931,17.055,16.698,-0.017,11.011,-2.637,2.355,9.856,3.225,8.331,4.167,6.436,4.241,0.047,5.34,-10.581,-3.638,8.855,14.197,11.621,1.155,23.527,10.665,24.467,34.852,24.584,23.169,22.665,20.753,27.378,33.023,26.859,31.194,21.321,19.379,30.48,29.455,17.306,16.949,12.234,34.129,13.252,31.141,17.954,23.192,25.92,9.256,21.523,25.422,21.931,15.763,10.672,1.099,21.628,20.898,15.558,10.894,14.771,20.013,11.765,23.718,14.907,17.615,18.272,20.515,17.326,-1.108,18.14,13.668,13.518,22.301,3.331,15.904,17.239,1.414,5.401,12.79,18.126,19.028,18.661,16.848,15.807,5.157,7.925,-3.383,4.942,14.12,-0.519,5.421,-1.48,8.147,16.298,-7.604,11.238,7.298,11.54,-1.492,11.701,15.342,9.102,-4.633,17.691,11.967,-2.094,13.955,17.237,10.097,2.967,0.345,10.914,-3.384,-4.372,17.133,8.608,-0.559,17.196,11.628,7.574,-0.366,2.594,2.422,10.691,8.326,4.907,5.909,9.734,6.415,13.606,-3.431,12.681,13.295,3.047,0.746,-10.925,-12.213,5.816,11.844,2.654,3.753,6.508,9.272,3.005,-4.315,-1.409,8.303,5.879,2.833,1.75,6.763],[28.735,22.893,13.769,33.184,32.719,18.622,25.712,20.185,24.824,9.985,30.472,23.698,21.196,23.276,15.276,20.932,22.346,21.726,11.427,12.999,12.824,15.955,17.156,-0.674,11.894,17.759,18.419,4.932,17.697,16.666,1.141,-3.379,6.269,7.204,12.55,5.749,13.113,16.093,-5.878,1.342,9.221,11.239,-3.228,8.755,16.783,16.565,0.001,11.275,-3.121,2.46,9.704,3.17,8.821,4.028,6.403,4.018,-0.007,5.283,-10.534,-3.662,8.698,14.172,11.882,0.96,23.665,11.407,24.569,34.655,24.222,23.37,22.664,20.449,27.487,32.922,27.077,31.391,21.076,18.614,30.138,29.68,17.477,16.904,12.321,34.077,12.739,31.241,17.735,23.388,26.368,9.825,21.502,25.304,21.5,15.772,10.994,0.945,21.884,20.87,15.285,10.745,14.552,20.096,12.221,23.409,14.618,17.525,18.194,20.801,17.555,-1.498,18.047,13.302,13.47,22.231,3.402,15.482,17.465,1.598,5.12,12.564,18.315,19.115,18.19,16.737,15.651,5.748,8.023,-3.37,4.913,14.174,-0.686,5.442,-1.566,8.411,16.685,-7.457,11.445,7.309,11.253,-1.445,11.767,15.04,9.242,-4.709,17.259,11.695,-2.335,13.968,17.109,9.757,2.954,-0.172,10.488,-3.327,-3.908,17.304,9.248,-0.366,16.562,11.345,7.491,-1.174,2.396,2.021,10.635,8.824,4.941,6.303,9.774,6.074,13.461,-3.071,12.975,13.644,3.068,0.374,-10.793,-11.955,5.784,11.938,2.589,4.28,7.003,9.614,2.76,-4.703,-0.964,8.798,5.529,2.721,1.707,6.599],[28.928,23.026,13.921,33.179,32.857,18.512,25.934,20.211,24.776,10.011,30.821,23.804,21.257,23.173,15.328,20.923,22.39,21.724,11.793,12.712,12.741,15.916,17.191,-0.76,11.753,17.636,18.413,4.868,17.796,16.651,1.139,-3.359,6.182,7.153,12.478,5.824,13.22,16.072,-5.94,1.243,9.137,11.426,-3.097,8.65,16.595,16.563,0.037,11.394,-3.636,2.51,9.686,3.123,9.257,4.134,6.264,3.754,0.037,5.42,-10.327,-3.76,8.457,14.115,11.949,0.886,23.896,11.228,24.264,33.995,24.599,23.254,23.059,20.566,27.587,32.591,26.601,31.245,21.197,18.433,29.504,29.548,17.634,17.074,12.417,34.036,13.326,31.17,17.579,23.512,26.52,9.377,21.718,25.307,21.425,15.374,10.725,0.986,22.101,21.317,15.873,10.543,14.512,20.047,11.979,23.256,14.329,17.325,18.514,20.832,18.137,-1.575,17.996,13.295,13.115,22.356,3.362,15.018,17.455,1.867,5.062,11.786,18.211,19.251,17.552,16.966,15.967,5.68,7.847,-3.378,5.219,13.993,-0.674,5.558,-1.586,8.376,16.209,-7.351,12.073,7.642,11.088,-1.264,12.053,14.649,9.142,-4.575,17.152,11.946,-2.669,14.095,16.512,10.185,2.726,0.161,10.805,-3.117,-3.978,17.031,9.24,-0.67,16.782,11.222,7.481,-0.853,2.305,1.713,10.501,9.615,4.953,6.021,10.158,5.909,13.633,-3.484,13.108,13.867,2.814,0.249,-10.9,-11.915,5.612,11.676,2.974,3.906,7.491,9.827,2.588,-4.428,-1.209,8.312,5.47,2.289,1.669,6.192],[28.97,23.13,13.926,32.945,33.034,18.518,26.089,20.203,24.687,10.09,30.903,23.899,21.335,22.94,15.499,20.769,22.5,21.625,11.926,12.472,12.484,15.851,17.415,-0.679,11.612,17.562,18.411,4.777,18.045,16.687,1.216,-3.258,6.13,6.97,12.355,5.879,13.271,16.147,-6.048,1.174,9.077,11.559,-3.007,8.552,16.55,16.655,0.079,11.32,-3.982,2.482,9.863,3.111,9.566,4.292,5.943,3.675,0.107,5.458,-10.241,-4.005,8.266,14.192,11.848,0.893,23.819,10.564,24.49,34.176,24.756,23.126,23.034,20.46,27.804,32.906,26.595,31.032,21.73,18.392,29.579,30.181,17.209,17.128,12.451,34.34,14.146,31.388,17.759,23.257,26.507,9.419,21.802,25.746,21.395,14.859,10.715,0.805,21.636,20.938,15.777,10.24,14.228,20.126,11.984,23.714,14.347,17.429,18.87,21.134,17.924,-1.71,18.014,13.226,12.744,22.026,3.137,14.64,17.617,1.649,5.112,11.986,18.19,19.135,17.953,16.932,16.025,5.188,8.008,-3.382,5.333,13.767,-0.512,5.291,-1.474,8.163,15.774,-7.362,12.719,7.607,11.31,-1.171,11.61,14.829,8.755,-4.541,17.516,12.089,-3.394,14.534,17.437,10.101,2.924,0.556,10.892,-3.194,-5.361,16.375,8.853,-1.109,16.531,11.812,7.59,0.135,2.821,2.138,10.794,10.479,4.989,6.169,9.673,6.255,13.713,-3.178,12.982,13.598,2.367,0.389,-10.446,-11.622,5.299,11.852,3.083,4.282,7.683,9.697,2.425,-4.27,-1.451,7.649,6.352,2.314,1.368,6.515],[29.032,23.217,13.882,32.67,33.232,18.613,26.061,20.162,24.797,10.185,30.861,24.063,21.487,22.619,15.619,20.552,22.559,21.407,11.797,12.419,12.263,15.731,17.892,-0.497,11.542,17.531,18.473,4.782,18.224,16.706,1.36,-3.161,6.192,6.81,12.391,5.865,13.438,16.103,-6.138,1.359,9.04,11.523,-2.993,8.33,16.698,16.697,0.144,11.277,-4.369,2.442,10.096,3.025,9.719,4.579,5.736,3.662,0.064,5.586,-10.28,-4.184,8.11,14.318,11.782,1.04,23.828,9.204,24.454,34.254,24.321,23.271,22.805,20.35,27.605,32.784,27.177,31.024,21.463,18.486,29.633,30.055,17.286,17.21,12.528,34.453,13.955,31.663,17.687,23.282,26.653,10.098,22.015,25.903,22.149,14.349,10.872,1.033,21.216,20.869,15.95,10.432,14.159,19.86,12.106,23.491,14.153,17.342,19.083,21.335,17.617,-1.96,18.097,13.277,12.284,21.702,2.906,14.455,17.644,1.505,4.946,12.249,18.201,19.335,18.16,16.95,15.797,4.874,7.967,-3.343,5.6,13.865,-0.367,4.983,-1.426,7.798,16.596,-7.551,12.56,7.636,10.957,-1.358,11.899,14.843,8.659,-4.608,17.372,11.506,-3.355,14.441,17.483,9.472,2.983,0.189,10.835,-2.934,-5.387,16.938,9.117,-1.345,16.626,11.571,7.34,0.392,3.014,1.775,10.863,11.098,4.778,6.499,8.876,6.039,13.827,-3.265,13.424,13.415,2.201,0.577,-10.526,-11.854,5.152,12.054,2.992,4.536,8.256,9.708,2.76,-4.965,-1.481,7.341,6.621,2.321,0.688,6.799],[29.126,23.166,13.783,32.476,33.437,18.718,26.023,20.146,24.872,10.115,30.71,24.189,21.631,22.488,15.586,20.359,22.542,21.099,11.542,12.519,12.24,15.418,18.319,-0.295,11.655,17.345,18.602,4.835,18.29,16.603,1.482,-3.079,6.329,6.704,12.48,5.814,13.584,15.986,-6.133,1.558,8.943,11.414,-2.996,8.177,16.901,16.635,0.146,11.292,-4.401,2.247,10.181,2.87,9.82,4.867,5.718,3.665,-0.106,5.814,-10.435,-4.369,7.958,14.442,11.718,1.211,24.009,8.58,24.363,34.115,24.774,22.9,23.271,20.096,27.854,31.965,27.451,31.164,21.415,18.558,29.521,29.376,17.765,17.179,12.174,34.581,13.338,31.707,17.845,23.857,26.354,9.964,22.283,25.796,22.798,14.201,11.254,1.183,21.007,21.307,16.927,10.554,14.015,19.733,12.072,23.156,14.455,16.327,19.146,21.099,18.041,-1.698,18.12,13.169,12.028,21.506,3.006,14.539,18.086,1.754,5.041,11.633,18.511,19.713,18.102,17.262,16.329,5.072,7.983,-3.064,5.579,14.152,-0.075,4.992,-1.285,7.974,16.88,-7.558,12.604,7.682,11.107,-1.171,12.063,15.084,8.395,-4.674,16.991,11.484,-3.556,13.959,17.228,9.614,3.068,0.137,11.031,-2.925,-4.906,17.294,8.937,-1.435,16.562,11.419,7.299,-0.011,3.083,1.817,10.681,11.555,4.826,6.36,8.526,5.806,14.17,-3.515,13.222,13.393,2.338,0.655,-10.957,-12.036,5.391,11.876,2.797,4.542,8.545,9.716,3.089,-5.074,-1.86,7.628,5.649,2.288,0.587,6.978],[29.288,23.179,13.522,32.318,33.538,18.891,26.023,20.096,24.868,9.822,30.517,24.309,21.775,22.548,15.347,20.329,22.613,20.821,11.318,12.712,12.269,14.984,18.653,-0.085,11.708,17.143,18.749,4.852,18.341,16.491,1.672,-2.982,6.479,6.563,12.575,5.801,13.584,15.931,-6.018,1.741,8.842,11.342,-2.851,8.162,17.089,16.485,0.067,11.276,-4.331,1.998,10.13,2.774,9.965,4.993,5.738,3.617,-0.419,6.081,-10.588,-4.563,7.808,14.535,11.621,1.268,23.648,8.671,24.226,33.785,25.155,22.624,23.47,19.46,28.358,31.816,27.346,30.962,21.643,18.908,29.001,29.428,17.704,17.134,12.27,34.904,13.545,32.056,17.849,24.699,26.599,9.619,22.23,25.642,22.768,15.084,11.265,1.111,20.709,21.237,17.013,10.453,13.976,20.22,11.915,23.564,14.544,16.563,19.032,21.301,18.471,-1.437,18.261,13.376,12.529,21.178,3.334,14.254,18.139,1.814,5.266,11.518,18.902,19.711,17.758,17.178,16.313,5.881,8.369,-2.95,5.342,14.082,0.146,5.218,-1.275,8.092,16.078,-7.589,12.669,7.572,11.39,-1.098,11.429,15.698,8.359,-4.825,17.066,11.822,-3.983,13.774,17.236,9.897,3.169,0.344,10.823,-3.481,-4.421,17.047,8.918,-1.473,15.838,11.758,7.462,-0.162,3.2,2.103,10.848,11.643,4.579,5.898,9.099,5.799,13.664,-3.305,13.539,13.395,2.692,0.69,-10.93,-11.819,5.393,11.747,2.694,4.957,8.763,9.749,2.819,-5.083,-1.872,7.639,5.533,2.32,0.91,6.86],[29.54,23.293,13.27,32.151,33.623,18.899,26.124,19.949,24.857,9.462,30.247,24.494,21.864,22.7,15.063,20.504,22.836,20.637,11.218,12.881,12.271,14.687,18.721,0.055,11.641,17.073,18.813,4.959,18.435,16.406,1.915,-2.906,6.554,6.418,12.685,5.882,13.378,15.983,-5.992,1.968,8.822,11.359,-2.767,8.312,17.306,16.209,0.078,11.14,-4.349,1.839,10.015,2.677,10.17,5.01,5.804,3.563,-0.793,6.185,-10.564,-4.547,7.76,14.52,11.591,1.153,23.394,9.528,24.174,33.864,24.664,22.958,23.287,19.227,28.867,32.186,27.358,30.795,21.602,19.319,28.762,30.006,17.726,16.591,12.146,34.914,13.427,32.064,18.124,24.654,27.063,8.808,22.265,25.83,22.158,15.694,10.693,1.315,21.395,21.318,17.258,10.316,14.193,20.184,11.471,23.691,14.628,16.393,19.271,21.518,18.487,-1.298,18.213,13.329,13.279,21.623,3.199,13.545,18.188,2.186,5.258,12.018,18.422,19.615,17.486,17.709,15.871,5.713,8.282,-3.209,5.73,14.213,0.501,4.921,-1.101,8.009,15.79,-7.628,12.775,7.56,11.282,-1.019,11.842,15.586,8.306,-4.709,17.315,11.614,-3.74,14.057,17.3,9.387,3.469,0.383,10.971,-2.77,-4.65,16.963,9.084,-1.652,15.999,12.061,7.455,-0.031,3.338,1.77,10.749,11.476,4.398,6.486,9.285,6.1,14.168,-3.842,13.563,13.309,2.445,0.654,-11.041,-12.21,5.283,11.266,2.447,5.081,8.549,10.007,2.436,-5.868,-2.148,7.387,6.454,2.541,0.707,6.925],[29.971,23.437,13.092,32.154,33.529,19.024,26.355,19.754,24.749,9.121,30.064,24.701,21.762,22.983,14.827,20.787,23.1,20.78,11.171,13.144,12.224,14.367,18.691,0.254,11.637,16.996,18.797,4.938,18.544,16.396,2.233,-2.794,6.508,6.356,12.662,5.92,13.221,16.068,-6.049,2.109,8.823,11.516,-2.646,8.458,17.371,16.031,0.153,11.031,-4.376,1.774,9.946,2.572,10.255,5.036,6.021,3.517,-1.171,6.18,-10.497,-4.552,7.779,14.639,11.513,0.984,23.256,10.41,24.719,33.921,24.398,22.792,23.298,19.785,28.933,31.788,27.603,30.819,21.795,19.159,28.189,29.775,17.574,16.382,11.606,34.866,12.528,31.963,18.299,24.463,26.633,8.437,22.519,26.538,21.74,15.22,10.329,1.032,21.685,21.465,16.86,10.407,13.925,19.502,11.384,23.526,14.795,15.799,19.355,21.685,17.799,-1.516,17.986,13.073,13.214,21.543,3.141,13.269,18.35,2.688,5.248,12.128,18.319,19.789,18.062,17.515,16.45,5.482,8.065,-3.575,6.001,14.232,0.521,4.562,-1.031,7.228,16.321,-7.464,12.625,7.716,11.566,-1.093,12.28,15.696,8.303,-4.575,17.275,11.397,-3.675,13.779,17.281,9.258,3.536,0.828,10.908,-2.505,-5.368,17.037,8.926,-1.755,15.719,12.099,7.084,0.504,3.593,1.932,10.402,11.51,4.55,6.668,9.0,6.552,14.082,-3.522,13.553,13.021,2.159,0.441,-10.892,-12.121,5.23,11.192,1.683,4.343,8.598,9.94,2.331,-5.52,-2.489,7.285,6.109,2.725,0.11,7.07],[30.273,23.523,12.873,32.218,33.315,19.282,26.441,19.637,24.69,8.834,29.852,24.949,21.782,23.24,14.665,20.964,23.23,20.97,11.255,13.352,12.075,14.028,18.453,0.423,11.8,16.965,18.817,4.697,18.71,16.712,2.466,-2.747,6.48,6.23,12.539,5.979,13.134,16.031,-6.054,2.117,8.867,11.7,-2.612,8.355,17.242,15.906,0.162,11.033,-4.382,1.673,9.861,2.588,10.288,4.96,6.152,3.542,-1.53,6.209,-10.431,-4.557,7.754,14.717,11.255,0.919,23.378,10.4,24.522,33.991,24.762,22.874,23.47,20.229,28.85,31.579,27.594,30.234,22.05,18.673,28.372,29.572,17.783,16.512,11.281,34.681,12.601,31.796,18.668,24.462,26.804,8.166,22.339,26.617,22.043,14.134,10.445,1.041,21.485,21.878,16.62,10.353,13.923,19.784,11.485,23.978,15.239,15.484,19.264,22.084,17.797,-1.32,18.256,13.257,12.874,21.396,3.099,13.365,18.548,2.849,5.322,11.749,18.933,20.038,17.996,16.985,16.771,5.55,8.281,-3.474,5.407,14.25,0.709,4.373,-1.18,6.666,16.782,-7.674,12.196,7.914,11.526,-0.906,11.909,15.28,8.582,-4.782,17.103,12.04,-3.991,13.533,17.04,9.353,3.87,1.213,11.366,-2.749,-5.5,17.736,9.341,-1.424,15.356,11.43,7.429,0.767,3.441,1.973,10.013,11.693,4.348,6.895,8.872,6.679,13.78,-3.5,13.738,12.759,2.185,-0.305,-10.888,-11.846,5.047,11.835,1.189,4.618,8.676,9.921,2.375,-4.93,-2.723,7.209,6.003,2.597,-0.053,7.136],[30.317,23.558,12.672,32.308,33.251,19.488,26.388,19.642,24.705,8.489,29.745,25.172,21.981,23.367,14.597,21.046,23.429,21.037,11.442,13.475,12.076,13.801,18.214,0.618,11.8,16.962,18.945,4.589,18.831,17.045,2.511,-2.809,6.605,6.072,12.558,6.18,13.037,15.983,-6.088,2.109,8.922,11.788,-2.523,8.208,17.076,15.782,0.075,11.161,-4.429,1.466,9.7,2.629,10.299,4.829,6.128,3.655,-1.684,6.346,-10.319,-4.542,7.653,14.536,11.036,0.791,23.997,10.03,24.373,34.134,24.859,23.123,23.443,19.867,28.701,32.05,27.617,29.693,21.775,18.408,28.241,29.912,18.399,16.216,11.11,34.595,12.724,31.729,18.485,24.528,26.812,8.062,22.383,26.385,22.922,13.406,10.692,1.376,21.416,22.081,16.527,10.657,14.038,20.39,11.552,24.108,15.362,15.563,19.931,22.411,18.272,-1.313,18.847,13.314,13.103,21.965,3.022,13.551,18.141,3.016,5.205,11.459,18.765,20.044,17.588,17.401,16.443,5.479,8.131,-2.915,5.339,14.015,0.931,4.226,-1.003,6.806,15.941,-7.76,11.835,8.01,11.14,-0.924,12.414,15.286,8.586,-5.021,16.963,11.794,-3.76,13.392,16.386,9.466,3.792,0.734,11.415,-2.514,-5.205,17.69,8.836,-1.421,15.633,10.955,7.501,0.639,3.126,1.663,10.185,11.877,4.301,6.726,8.752,6.696,14.568,-3.514,13.29,12.802,2.388,-0.526,-10.84,-11.986,5.212,11.139,1.329,5.048,8.913,9.725,2.657,-5.49,-2.732,7.662,6.23,2.397,-0.009,7.274],[30.266,23.53,12.514,32.562,33.181,19.612,26.368,19.68,24.766,8.2,29.727,25.297,22.133,23.552,14.531,21.102,23.752,21.227,11.637,13.602,12.054,13.853,18.043,0.741,11.64,17.039,19.011,4.642,18.943,17.009,2.396,-2.813,6.827,6.041,12.607,6.349,12.819,15.859,-6.174,1.957,8.955,11.739,-2.248,8.009,16.954,15.631,-0.058,11.279,-4.478,1.265,9.498,2.702,10.367,4.717,6.093,3.786,-1.728,6.43,-10.221,-4.545,7.632,14.376,10.895,0.668,24.62,9.037,24.558,34.25,24.991,22.801,23.366,19.983,28.658,32.269,27.596,29.878,21.915,18.304,28.236,30.144,18.6,15.951,11.015,34.774,12.573,32.158,18.293,25.112,27.125,7.854,23.215,26.334,23.37,13.224,10.732,1.572,21.403,21.937,16.151,10.481,13.857,20.305,12.084,24.035,15.292,15.687,20.002,22.346,17.993,-0.743,18.692,13.28,13.142,21.842,3.025,13.655,17.896,2.551,5.355,11.894,18.713,20.102,17.512,17.858,16.553,5.728,8.49,-2.973,5.502,14.112,0.896,4.256,-1.279,6.725,15.899,-7.864,11.955,8.095,11.264,-0.583,12.636,15.254,8.25,-4.958,17.509,11.705,-3.77,13.145,16.051,9.395,3.552,0.511,11.39,-2.411,-5.067,16.835,8.607,-1.849,16.091,11.703,7.145,0.068,2.946,1.741,10.075,11.521,4.46,6.236,8.471,6.749,13.957,-3.355,13.54,12.719,2.64,-0.663,-10.527,-11.971,5.612,10.728,1.48,4.296,8.791,9.338,3.058,-5.633,-2.416,7.437,6.027,2.148,-0.05,7.282],[30.258,23.634,12.364,32.87,33.053,19.682,26.483,19.63,25.146,7.965,29.784,25.287,22.324,23.67,14.459,21.142,23.979,21.388,12.05,13.687,12.051,14.138,17.998,0.774,11.426,17.038,18.978,4.696,19.085,16.827,2.108,-2.84,7.107,6.062,12.703,6.411,12.628,15.858,-6.4,1.831,8.898,11.647,-2.188,7.912,16.784,15.58,-0.332,11.443,-4.497,1.142,9.21,2.894,10.334,4.537,6.005,3.843,-1.692,6.372,-10.247,-4.45,7.605,14.271,10.69,0.47,24.689,8.051,24.503,34.605,24.975,22.985,23.758,20.091,28.897,32.339,27.676,29.951,22.252,18.675,28.055,29.828,18.222,15.691,11.057,34.814,12.424,31.943,18.834,25.426,26.643,7.311,23.297,26.642,22.998,13.318,10.802,2.266,21.548,22.411,16.135,10.114,13.777,20.293,11.876,24.489,15.316,15.944,19.471,22.151,18.131,-0.24,18.387,13.006,13.053,21.792,3.075,13.378,18.025,2.355,5.386,12.032,19.456,20.44,17.756,17.701,16.374,6.09,8.769,-2.955,6.078,14.418,0.496,4.246,-1.338,6.787,16.324,-7.774,11.588,8.258,11.73,-0.359,11.923,15.032,8.133,-4.944,17.032,11.656,-3.892,12.822,16.459,9.186,3.34,0.419,12.206,-2.106,-5.04,16.627,8.507,-2.109,15.955,11.9,7.332,-0.257,2.99,1.23,9.792,11.531,4.467,6.74,8.516,6.693,13.476,-3.272,13.447,12.302,2.817,-0.581,-10.312,-11.984,5.608,11.3,1.495,4.082,8.701,9.157,3.283,-5.188,-2.487,7.133,6.276,2.318,-0.304,7.481],[30.273,23.72,12.273,33.099,32.825,19.729,26.592,19.66,25.624,7.751,29.712,25.191,22.471,23.551,14.456,21.241,24.099,21.403,12.434,13.594,12.174,14.342,18.032,0.878,11.234,17.024,19.043,4.686,19.197,16.661,1.684,-2.912,7.329,6.111,12.814,6.487,12.408,15.911,-6.634,1.78,8.838,11.474,-2.25,8.126,16.723,15.663,-0.574,11.686,-4.495,1.061,8.971,3.122,10.312,4.53,5.939,3.669,-1.66,6.392,-10.311,-4.272,7.607,14.137,10.514,0.398,24.544,7.513,25.129,34.82,25.423,23.615,23.927,19.666,29.236,32.693,27.84,30.714,22.274,18.498,28.418,29.763,18.11,15.576,11.054,34.217,12.092,31.548,19.396,24.494,27.031,6.733,22.894,26.833,22.286,13.112,10.943,2.193,21.329,22.742,16.343,10.014,14.08,20.37,12.069,24.625,15.396,16.108,19.834,22.084,17.856,-0.264,18.477,12.521,13.197,21.966,3.493,13.369,18.292,2.444,5.137,11.504,18.754,20.692,17.912,17.472,15.759,5.693,8.786,-2.868,6.59,14.652,0.338,4.262,-1.303,6.801,16.554,-8.131,11.027,8.426,11.935,-0.425,12.228,15.027,8.947,-5.317,16.734,11.501,-3.521,13.212,16.41,8.961,3.442,0.453,12.999,-2.37,-5.054,17.102,8.611,-2.25,15.827,11.99,7.431,-0.314,3.056,1.394,9.661,11.527,4.823,6.888,8.523,6.301,14.211,-3.055,13.34,12.139,2.543,-0.836,-10.651,-12.017,5.224,10.972,1.653,4.06,8.733,9.259,3.225,-5.314,-2.605,7.059,6.019,2.056,-0.144,7.421],[30.255,23.769,12.241,33.264,32.525,19.861,26.677,19.604,26.065,7.579,29.692,25.086,22.508,23.336,14.485,21.311,24.065,21.287,12.473,13.566,12.177,14.483,18.081,0.858,11.047,16.997,19.006,4.634,19.24,16.554,1.337,-3.036,7.418,6.133,12.863,6.6,12.278,15.942,-6.782,1.926,8.822,11.439,-2.245,8.544,17.05,15.78,-0.754,12.033,-4.423,1.153,8.864,3.382,10.338,4.602,5.831,3.585,-1.587,6.434,-10.269,-4.128,7.624,14.105,10.419,0.36,23.938,7.439,25.685,35.085,25.782,23.058,24.016,19.473,29.001,32.759,27.932,30.832,21.998,18.321,28.813,29.974,18.591,15.746,10.819,34.062,11.93,31.139,18.695,24.247,27.33,6.427,23.074,26.342,22.223,13.074,10.957,2.399,20.945,22.305,16.299,10.162,14.039,20.233,12.437,24.371,15.463,16.141,20.13,22.29,18.08,-0.268,18.216,12.658,13.13,21.796,3.506,13.231,17.986,1.849,5.558,11.555,18.747,20.631,17.88,17.455,15.4,5.749,8.763,-2.872,6.3,14.544,0.039,4.457,-1.689,6.476,16.259,-8.594,10.875,8.229,11.761,-0.475,12.206,15.216,9.251,-5.668,17.491,11.95,-3.13,13.731,15.926,8.817,3.596,0.521,12.962,-2.506,-5.068,17.402,8.906,-2.216,15.575,12.167,7.207,-0.158,2.998,1.336,9.6,11.702,4.853,6.732,8.671,5.803,13.912,-2.87,12.848,12.213,2.175,-1.104,-11.051,-11.821,5.149,10.31,1.661,4.028,8.953,9.178,2.968,-4.998,-2.54,7.147,5.431,1.774,-0.428,7.559],[30.095,23.699,12.115,33.387,32.407,19.883,26.727,19.41,26.419,7.375,29.645,24.989,22.548,23.029,14.555,21.276,23.792,21.105,12.349,13.69,12.084,14.571,17.989,0.843,11.044,17.105,18.819,4.639,19.319,16.36,0.962,-3.229,7.43,6.129,12.787,6.74,12.317,16.073,-6.82,2.146,8.836,11.478,-2.104,8.982,17.44,15.712,-0.822,12.263,-4.248,1.249,8.866,3.72,10.427,4.573,5.526,3.67,-1.508,6.44,-10.208,-3.939,7.647,14.049,10.389,0.303,23.327,8.142,25.768,34.969,25.817,22.477,24.027,19.452,28.531,32.559,28.074,30.855,22.256,18.426,29.02,29.66,18.973,15.442,10.432,34.022,12.208,31.119,18.488,25.156,26.606,6.742,23.298,25.797,22.342,13.58,11.185,2.206,20.722,22.262,16.578,10.077,13.921,20.414,12.061,24.3,15.441,16.201,19.939,22.36,18.105,-0.562,18.167,12.96,12.95,21.359,3.271,13.189,17.48,1.714,5.725,12.117,19.293,20.464,17.452,17.448,15.526,6.04,8.658,-2.922,5.82,14.417,-0.272,4.268,-1.648,6.25,15.843,-8.55,10.822,8.371,11.576,-0.433,11.848,15.425,9.032,-5.822,17.455,11.715,-3.47,13.845,16.294,8.819,3.293,0.495,12.69,-2.01,-5.009,17.798,9.378,-2.609,15.71,12.502,7.252,0.153,2.896,1.235,9.652,11.69,4.859,6.549,8.821,6.181,13.488,-2.954,12.998,12.215,2.395,-1.281,-10.311,-11.738,5.24,10.195,1.687,4.356,9.049,8.851,2.575,-4.963,-2.226,7.312,5.629,1.708,-0.859,7.957],[29.84,23.556,11.911,33.342,32.535,19.867,26.68,19.241,26.435,7.234,29.697,24.883,22.553,22.676,14.758,21.151,23.545,20.874,12.307,13.797,12.046,14.564,17.804,0.942,11.331,17.108,18.695,4.717,19.421,16.164,0.583,-3.351,7.43,6.011,12.624,7.009,12.387,16.131,-6.852,2.097,8.898,11.417,-1.802,9.325,17.677,15.637,-0.878,12.402,-4.029,1.249,8.947,4.06,10.488,4.498,5.265,3.692,-1.525,6.491,-10.039,-3.809,7.729,14.003,10.433,0.287,23.203,8.377,25.591,34.952,26.025,23.027,23.726,19.495,28.423,32.866,28.039,30.498,21.947,18.054,28.338,29.781,18.687,14.508,10.255,33.999,12.343,31.295,19.22,24.823,27.16,6.899,23.327,25.932,22.197,14.021,10.928,2.058,20.41,22.266,16.428,10.447,13.886,20.625,12.255,24.139,15.706,16.283,19.625,22.194,18.045,-0.578,17.851,12.681,13.119,21.558,3.057,13.569,17.491,1.703,5.693,11.907,18.522,20.653,17.539,17.194,16.082,6.027,8.593,-3.405,5.915,14.235,-0.751,4.226,-1.626,6.263,16.169,-8.561,10.896,8.625,11.658,-0.064,12.185,15.942,9.916,-5.625,17.135,11.341,-3.733,13.351,16.474,9.171,3.543,0.625,12.745,-1.968,-5.057,17.713,9.275,-2.363,15.795,12.414,7.216,0.387,2.81,1.689,9.715,11.737,5.225,6.466,8.622,5.896,13.666,-2.857,13.449,12.142,2.911,-1.007,-10.056,-11.634,5.526,10.218,1.935,4.491,9.053,8.617,2.811,-4.835,-2.105,6.933,5.424,1.961,-0.294,7.624],[29.753,23.31,11.836,33.312,32.753,19.817,26.654,19.099,26.111,7.153,29.636,24.865,22.519,22.531,15.009,20.981,23.51,20.771,12.35,13.925,11.993,14.53,17.663,0.982,11.744,17.128,18.521,4.798,19.328,16.195,0.437,-3.374,7.381,5.831,12.409,7.242,12.453,16.106,-6.867,1.93,9.005,11.376,-1.56,9.561,17.807,15.551,-0.863,12.462,-3.825,1.236,9.039,4.297,10.514,4.456,5.054,3.799,-1.419,6.45,-9.924,-3.825,7.799,14.079,10.504,0.379,23.229,7.71,25.163,34.7,25.704,22.411,23.857,19.558,28.627,32.865,27.718,30.488,21.668,17.615,28.143,29.913,18.17,13.904,10.329,34.117,11.486,31.193,19.298,24.543,27.233,7.157,22.996,26.284,22.175,14.473,11.182,2.49,20.02,22.218,16.113,10.847,13.836,20.385,12.087,23.31,15.704,16.33,20.266,22.11,17.754,-0.017,18.069,13.372,13.459,21.33,3.303,13.729,17.611,1.256,5.926,11.489,18.476,20.854,17.72,17.128,15.723,6.483,8.874,-3.256,6.395,14.202,-1.142,4.035,-1.816,6.315,16.267,-8.531,11.332,9.043,11.434,0.152,12.175,15.995,9.944,-5.746,17.494,11.501,-3.321,13.123,16.325,9.384,3.562,0.558,13.009,-2.053,-4.542,17.605,9.169,-2.368,15.362,12.648,7.402,0.498,2.793,1.428,9.618,11.882,5.106,6.618,8.772,4.846,13.935,-2.765,13.114,12.274,2.955,-0.767,-10.34,-11.453,5.518,10.603,2.416,3.931,8.901,8.555,3.564,-4.506,-2.304,6.659,5.581,2.122,-0.42,7.289],[29.755,23.018,11.755,33.31,32.912,19.631,26.572,18.916,25.7,7.119,29.538,24.888,22.486,22.554,15.289,20.852,23.463,20.681,12.514,14.023,11.966,14.509,17.65,0.994,12.078,17.207,18.393,4.89,19.246,16.452,0.452,-3.242,7.372,5.71,12.123,7.494,12.535,16.21,-6.888,1.697,9.183,11.43,-1.449,9.631,17.851,15.249,-0.788,12.491,-3.585,1.158,9.111,4.503,10.513,4.379,4.918,3.982,-1.363,6.309,-9.962,-3.889,7.848,14.156,10.714,0.396,23.213,7.328,24.818,34.471,25.402,22.28,24.202,18.877,28.559,32.364,27.738,30.362,21.291,18.013,28.055,29.313,18.19,13.953,10.716,34.169,11.095,31.359,19.229,24.392,26.971,7.513,22.913,26.28,22.327,14.51,11.284,2.667,19.658,22.135,16.175,11.25,13.83,19.904,11.968,23.421,15.791,16.092,20.169,22.058,17.718,-0.109,18.052,14.086,13.511,21.295,3.761,14.175,17.361,0.407,5.776,11.658,18.761,20.387,17.338,16.805,15.254,6.29,8.56,-2.786,6.18,13.84,-0.965,3.951,-1.848,6.278,16.187,-8.699,11.795,8.902,11.19,0.213,11.499,15.906,9.405,-5.886,17.578,11.506,-2.611,13.156,16.396,9.145,3.47,0.6,13.501,-1.555,-4.085,17.996,10.125,-2.561,15.501,12.771,7.766,0.053,2.82,1.21,10.3,11.783,5.51,6.563,8.685,4.161,13.917,-2.516,13.146,12.491,2.701,-0.843,-10.592,-11.318,5.633,10.744,2.524,3.806,8.976,8.552,3.677,-5.064,-2.328,7.154,5.57,2.086,-0.608,7.578],[29.614,22.746,11.714,33.244,32.993,19.541,26.444,18.781,25.396,7.155,29.376,24.863,22.514,22.772,15.489,20.802,23.354,20.575,12.706,14.012,11.974,14.603,17.669,0.926,12.324,17.123,18.364,4.94,19.116,16.67,0.561,-3.05,7.269,5.689,11.87,7.579,12.658,16.425,-6.928,1.518,9.398,11.376,-1.377,9.607,17.892,15.06,-0.823,12.608,-3.294,0.988,9.222,4.738,10.36,4.288,4.969,4.237,-1.447,6.269,-10.07,-3.951,7.923,14.155,10.894,0.238,23.118,7.491,24.451,34.801,25.112,23.203,24.015,18.789,28.498,32.288,27.572,30.766,20.903,17.802,28.003,29.363,18.045,14.197,10.523,34.245,11.27,31.611,18.976,24.114,27.258,7.192,22.826,26.134,22.281,14.822,11.265,2.304,19.186,21.889,16.49,11.126,13.717,19.591,12.612,24.045,15.773,16.293,19.628,21.884,18.154,-0.413,18.371,14.038,13.431,21.278,4.525,14.548,17.316,-0.097,5.91,12.183,18.778,20.135,17.485,16.871,15.443,6.311,7.983,-2.763,5.488,13.74,-0.786,3.884,-1.421,6.116,16.585,-8.728,11.682,9.275,11.115,0.045,11.362,16.163,9.915,-5.8,17.993,11.633,-2.922,12.78,15.783,8.742,3.01,0.15,13.751,-1.215,-4.372,18.577,10.224,-2.609,15.219,12.751,8.279,-0.231,2.718,1.368,10.632,11.906,5.637,6.355,9.098,3.819,14.082,-2.943,13.128,12.547,2.699,-0.988,-10.376,-11.514,5.508,10.539,2.497,3.947,9.063,8.745,3.438,-5.111,-1.906,7.372,5.076,1.868,-0.539,7.466],[29.417,22.522,11.763,33.225,32.909,19.549,26.328,18.658,25.24,7.222,29.256,24.882,22.487,23.159,15.559,20.725,23.249,20.539,12.906,13.834,12.024,14.818,17.654,0.774,12.427,17.092,18.368,5.038,18.912,16.867,0.679,-2.931,6.981,5.684,11.903,7.601,12.777,16.541,-6.935,1.396,9.569,11.215,-1.38,9.622,17.997,15.067,-0.91,12.836,-3.235,0.929,9.399,4.81,10.25,4.196,4.958,4.404,-1.479,6.224,-10.087,-3.977,8.002,14.129,10.745,0.057,23.158,7.533,24.189,34.803,24.644,22.805,23.531,19.42,28.52,32.789,27.507,30.718,20.971,17.267,27.953,29.504,18.336,14.604,10.157,34.143,11.541,31.331,18.869,24.262,27.39,7.157,23.55,25.808,22.701,15.328,11.603,1.96,18.954,22.13,16.158,11.065,13.838,19.452,12.728,23.876,15.656,16.629,19.844,21.779,18.026,-0.668,18.641,13.916,13.355,21.214,5.113,14.272,17.566,0.405,6.295,12.206,18.817,20.437,17.686,16.855,16.078,6.661,7.629,-3.241,5.138,13.621,-0.89,4.126,-1.421,5.78,16.783,-8.452,11.321,9.504,11.139,-0.002,11.704,16.235,10.186,-5.686,17.83,11.352,-2.972,13.247,16.035,8.928,2.519,-0.432,13.124,-1.568,-4.029,18.949,9.295,-2.874,14.911,12.686,8.214,-0.139,2.499,1.215,10.35,11.719,5.751,6.568,9.131,4.194,14.158,-2.785,12.871,12.536,2.946,-0.927,-10.161,-11.504,5.94,10.63,2.368,3.847,8.938,8.749,3.559,-4.761,-1.813,7.258,5.356,1.849,-0.427,7.302],[29.167,22.399,11.841,33.155,32.634,19.671,26.252,18.574,25.092,7.261,29.291,24.865,22.548,23.45,15.59,20.642,23.298,20.524,13.122,13.659,12.158,15.028,17.608,0.578,12.34,17.159,18.357,5.145,18.904,16.964,0.741,-3.027,6.648,5.765,12.087,7.669,12.967,16.448,-6.797,1.3,9.696,11.011,-1.469,9.576,18.08,15.159,-1.064,13.023,-3.111,0.935,9.541,4.764,10.139,4.168,4.894,4.525,-1.448,6.181,-9.942,-3.825,7.948,14.09,10.609,0.029,22.698,7.743,24.259,34.782,24.811,22.836,23.812,19.028,28.835,33.279,27.323,30.274,21.083,17.451,27.79,29.032,18.467,15.211,10.146,33.892,11.866,30.953,19.093,24.691,26.947,7.423,23.37,26.082,22.892,15.237,11.833,2.274,18.864,22.213,15.937,11.438,14.032,19.584,12.484,22.853,15.262,16.677,19.704,21.487,17.44,-0.856,18.837,13.928,12.96,21.557,5.52,13.819,17.512,1.284,6.42,11.804,18.511,19.994,17.675,16.879,16.946,6.387,7.265,-3.336,4.972,13.848,-0.865,4.081,-1.459,5.604,16.365,-8.664,11.357,9.254,11.17,-0.117,11.8,16.26,9.493,-5.697,17.774,11.35,-2.574,13.941,16.461,9.302,1.877,-0.274,12.413,-1.308,-4.387,19.144,9.664,-2.591,15.25,13.158,8.081,0.124,2.524,0.883,10.2,11.55,5.775,6.581,8.739,4.621,13.673,-2.848,12.986,12.153,3.761,-0.879,-10.446,-11.357,6.205,10.797,2.533,3.825,8.691,9.029,3.855,-4.807,-2.603,7.173,5.313,1.764,-0.519,7.32],[28.817,22.313,11.956,33.098,32.416,19.833,26.229,18.413,25.014,7.271,29.319,24.994,22.534,23.469,15.699,20.521,23.327,20.565,13.228,13.486,12.263,15.19,17.616,0.63,12.08,17.15,18.3,5.232,18.854,17.052,0.871,-3.165,6.431,5.762,12.327,7.641,13.218,16.397,-6.652,1.302,9.802,10.905,-1.452,9.517,18.203,15.288,-1.114,13.13,-3.101,0.954,9.644,4.718,9.99,4.291,4.861,4.646,-1.484,6.171,-9.913,-3.837,7.773,13.991,10.606,0.06,22.445,8.1,24.061,34.697,24.645,23.682,24.057,19.178,29.284,32.639,27.474,30.282,20.889,17.818,27.573,29.073,18.388,15.603,10.335,33.62,12.01,30.961,19.297,24.199,26.47,7.41,22.994,26.215,22.789,14.3,12.052,1.878,18.787,22.215,16.437,11.266,14.195,19.91,12.936,22.654,15.397,16.088,19.904,21.425,17.803,-0.869,18.969,13.947,12.994,21.473,5.52,13.636,17.049,1.182,6.054,11.905,18.348,19.94,17.75,17.06,16.501,6.1,6.974,-3.46,4.603,13.99,-0.606,3.882,-1.756,5.921,16.603,-8.408,11.666,9.332,11.091,-0.603,11.443,16.381,9.534,-5.717,17.611,11.232,-2.396,14.047,16.206,9.412,1.809,-0.428,12.721,-0.603,-3.975,18.856,9.44,-2.896,15.43,13.206,8.256,0.079,2.804,1.147,10.612,11.528,5.763,6.288,8.962,4.655,13.894,-2.639,12.828,12.282,4.084,-1.158,-10.044,-11.496,6.502,11.152,2.194,3.925,8.615,9.204,3.724,-4.995,-2.267,6.799,4.841,1.712,-0.769,7.249],[28.491,22.052,12.156,33.024,32.273,19.912,26.272,18.283,24.754,7.324,29.241,25.096,22.28,23.474,15.82,20.411,23.468,20.531,13.381,13.381,12.285,15.209,17.616,0.635,11.926,17.174,18.187,5.332,18.844,17.091,0.992,-3.217,6.301,5.672,12.513,7.758,13.397,16.347,-6.532,1.333,9.989,10.784,-1.35,9.449,18.519,15.488,-1.139,13.196,-3.048,0.856,9.889,4.599,9.949,4.408,4.733,4.709,-1.395,6.078,-9.906,-3.924,7.677,13.951,10.833,-0.012,22.595,7.752,23.916,34.534,24.368,23.156,23.796,19.087,29.258,31.887,27.972,30.203,20.827,17.62,28.048,28.737,18.328,15.541,10.719,33.774,11.849,30.762,19.663,24.374,26.779,7.459,22.793,26.229,23.121,14.493,11.967,1.972,18.687,21.951,16.142,10.574,14.094,20.395,13.058,23.552,15.228,15.558,19.658,21.636,18.218,-0.889,18.89,13.382,13.088,21.443,5.081,13.329,17.231,1.004,5.668,12.241,18.477,20.455,17.534,16.685,16.129,6.464,6.916,-4.071,4.396,14.163,-0.47,3.946,-1.767,6.461,16.699,-8.195,11.891,9.304,11.472,-0.531,11.367,16.528,9.845,-5.309,17.745,11.168,-2.805,14.389,15.554,9.307,2.296,-0.427,13.637,-0.331,-3.752,18.274,9.316,-3.071,15.222,13.051,8.488,-0.305,2.806,1.356,10.421,11.264,5.972,6.238,8.554,4.251,13.655,-2.801,12.857,12.501,3.761,-1.001,-9.842,-11.189,6.437,11.048,1.885,3.93,8.414,9.188,3.435,-4.721,-1.715,6.502,5.543,1.763,-0.999,7.513],[28.266,21.744,12.36,32.942,32.246,19.909,26.429,18.211,24.442,7.471,29.194,25.114,22.063,23.496,16.01,20.409,23.652,20.485,13.467,13.21,12.288,14.928,17.505,0.534,11.775,17.245,18.005,5.442,18.966,17.026,1.07,-3.263,6.139,5.718,12.62,8.007,13.504,16.282,-6.438,1.377,10.105,10.685,-1.1,9.384,18.723,15.549,-1.136,13.233,-2.961,0.707,10.095,4.367,9.934,4.385,4.623,4.585,-1.17,6.036,-9.917,-3.831,7.574,13.921,10.966,-0.001,22.18,7.576,23.518,34.363,24.127,23.008,23.657,18.74,28.583,32.139,27.369,30.639,20.2,17.464,28.462,27.872,18.432,15.25,11.127,33.745,12.036,30.69,19.878,24.729,27.461,7.612,22.404,26.254,23.329,15.592,12.026,2.179,18.818,22.497,16.009,10.726,14.14,20.7,12.975,24.156,15.005,15.497,19.028,21.587,17.727,-0.691,18.944,13.216,12.854,21.414,4.746,13.34,17.341,0.92,5.74,12.169,18.376,20.232,17.823,16.587,16.474,6.759,7.015,-3.843,4.43,14.449,-0.339,4.028,-1.441,6.163,16.804,-8.137,11.943,9.755,11.805,-0.011,11.527,17.019,9.498,-5.021,17.407,11.346,-3.307,14.597,16.316,9.886,2.732,0.104,14.49,-1.044,-3.431,18.53,9.502,-2.943,15.012,13.418,9.019,-0.618,2.727,0.874,10.715,11.299,5.48,6.443,8.651,3.889,13.491,-3.611,12.541,12.716,3.216,-0.846,-9.963,-11.248,6.233,10.963,1.317,4.051,8.451,9.773,3.207,-5.159,-2.208,6.755,4.958,1.753,-0.744,7.487],[28.033,21.395,12.526,32.881,32.34,19.938,26.432,18.172,24.25,7.697,29.299,25.083,21.992,23.452,16.271,20.56,23.928,20.537,13.502,12.991,12.276,14.704,17.453,0.575,11.716,17.196,17.829,5.565,18.799,17.094,1.087,-3.194,6.056,5.665,12.641,8.336,13.579,16.235,-6.374,1.49,10.23,10.718,-0.929,9.285,18.802,15.574,-1.286,13.351,-2.936,0.472,10.321,4.063,9.998,4.376,4.513,4.47,-1.05,6.092,-9.981,-3.952,7.526,13.844,10.984,0.074,22.044,7.831,23.116,34.36,23.534,23.796,23.431,19.077,27.776,32.79,26.739,30.856,19.966,17.165,28.385,28.627,18.63,15.24,10.887,33.496,12.754,30.743,20.077,24.739,27.387,7.961,22.3,26.436,23.235,15.788,12.031,1.864,18.95,22.783,16.12,10.881,14.165,21.141,13.313,23.591,14.659,15.488,19.676,21.388,17.927,-0.716,18.98,13.396,12.713,21.112,5.031,12.988,17.064,0.555,5.641,11.945,18.537,20.141,17.785,16.35,16.642,6.935,6.652,-3.586,4.247,14.353,-0.552,4.028,-1.345,5.948,16.438,-8.036,12.275,9.516,11.78,-0.256,11.665,17.001,9.754,-5.04,17.424,11.168,-2.779,13.86,16.817,9.687,3.098,0.165,14.917,-1.361,-3.64,18.945,9.26,-3.078,15.158,13.684,8.872,-0.341,2.947,0.423,10.255,11.244,5.041,6.677,8.86,3.327,13.898,-3.221,12.531,12.64,3.026,-1.043,-10.327,-11.093,5.868,11.343,1.426,4.069,8.432,10.522,3.032,-4.933,-1.916,7.008,4.321,1.808,-0.172,7.033],[28.017,21.173,12.589,32.973,32.468,19.984,26.151,18.412,23.987,8.068,29.393,24.966,21.966,23.503,16.499,20.708,24.093,20.615,13.548,12.846,12.162,14.591,17.404,0.506,11.717,17.24,17.774,5.65,18.64,17.204,0.93,-3.028,5.916,5.539,12.556,8.507,13.543,16.219,-6.367,1.603,10.195,10.876,-0.918,9.203,18.794,15.526,-1.385,13.459,-2.929,0.257,10.372,3.925,10.116,4.49,4.309,4.365,-0.91,6.182,-9.961,-4.097,7.602,13.826,11.051,-0.047,21.99,8.054,23.08,34.136,23.573,23.591,23.599,18.913,27.119,32.482,26.898,30.564,19.846,17.132,28.754,28.508,18.546,15.573,10.94,33.445,12.625,30.679,19.512,24.561,26.793,8.202,22.446,26.658,22.931,15.433,12.266,1.772,19.401,22.804,16.194,10.791,13.92,21.24,13.342,23.738,14.688,15.332,19.767,21.534,17.708,-1.049,18.93,13.346,12.689,21.113,5.373,12.989,17.291,0.979,5.774,11.814,18.22,19.821,17.394,16.151,16.838,6.994,6.673,-3.475,4.066,14.163,-0.864,3.762,-1.403,6.26,16.437,-8.02,12.756,9.428,11.286,-0.419,11.311,16.92,9.344,-5.155,17.623,10.556,-1.936,14.217,16.045,9.596,3.195,0.141,15.102,-0.756,-3.708,19.222,9.184,-3.274,15.647,13.726,8.672,-0.393,2.842,0.632,10.611,11.366,5.08,6.616,8.307,3.436,13.379,-2.83,12.692,12.587,3.112,-0.984,-10.35,-11.257,6.091,11.316,1.943,4.187,8.388,10.888,3.108,-4.816,-1.289,7.364,5.082,1.747,0.293,6.72],[28.076,21.154,12.557,32.96,32.562,19.941,25.89,18.775,23.808,8.477,29.558,24.863,21.927,23.538,16.68,20.824,24.103,20.724,13.588,12.8,11.992,14.768,17.283,0.173,11.751,17.253,17.664,5.711,18.538,17.259,0.764,-2.94,5.751,5.451,12.321,8.524,13.552,16.244,-6.353,1.727,10.028,10.928,-0.89,9.109,18.712,15.268,-1.33,13.604,-2.892,0.241,10.281,4.005,10.217,4.564,4.27,4.168,-0.642,6.177,-9.893,-4.088,7.634,13.736,11.117,-0.184,21.414,8.299,22.843,34.338,23.886,23.227,23.308,18.553,26.862,32.21,27.384,30.99,19.752,17.762,28.627,28.285,18.32,15.918,11.231,33.963,12.259,30.809,19.506,24.206,26.549,8.372,22.677,26.202,23.091,15.332,12.579,1.841,19.583,22.798,16.177,10.484,13.752,21.275,13.298,23.991,14.529,15.404,19.217,22.026,17.665,-0.98,19.138,13.359,12.8,21.638,5.337,12.909,17.345,1.027,6.198,11.952,17.688,19.527,17.363,16.393,17.035,7.125,6.868,-3.137,4.026,14.041,-0.962,3.69,-1.456,5.956,16.746,-8.057,12.42,9.143,11.255,-0.267,11.533,16.938,9.065,-5.21,17.429,10.45,-1.912,14.214,16.061,10.026,2.631,0.157,15.067,-1.13,-3.488,19.436,9.609,-3.126,16.025,13.392,8.698,-0.563,3.087,0.787,10.819,11.441,5.268,6.553,8.951,3.861,13.305,-3.555,12.563,12.79,3.762,-1.045,-9.837,-11.469,6.029,11.094,1.817,4.817,8.564,10.469,2.701,-4.917,-1.345,6.878,4.726,1.519,0.165,7.421],[28.084,21.226,12.568,32.907,32.778,19.923,25.757,19.1,23.869,8.833,29.78,24.887,21.806,23.51,16.849,20.894,23.976,20.966,13.499,12.849,11.801,15.016,17.255,-0.187,11.746,17.183,17.407,5.81,18.344,17.296,0.564,-3.001,5.682,5.269,12.07,8.49,13.593,16.208,-6.36,1.869,9.884,10.852,-0.855,9.065,18.739,15.02,-1.273,13.8,-2.929,0.341,10.138,4.026,10.322,4.6,4.347,4.033,-0.376,6.153,-9.82,-4.078,7.487,13.569,11.191,-0.146,21.78,8.724,23.011,34.489,23.533,23.982,22.915,19.317,27.467,32.253,27.341,31.223,19.749,18.474,28.332,28.384,18.339,16.258,11.046,33.993,12.217,31.184,19.969,24.223,26.187,8.543,22.798,25.649,23.295,15.736,12.741,1.508,19.797,23.095,15.9,10.616,13.604,21.392,13.447,23.667,14.644,15.308,18.9,22.026,18.145,-0.96,19.067,13.358,12.708,21.746,5.124,13.328,17.16,0.153,6.209,11.922,18.008,19.609,17.566,15.772,17.215,6.959,6.815,-3.461,3.987,13.96,-1.16,3.884,-1.498,6.159,16.211,-8.038,12.042,9.449,11.377,-0.623,11.946,16.78,9.455,-5.052,17.688,10.944,-2.277,14.421,16.082,10.399,2.434,0.139,14.742,-1.53,-3.849,19.345,8.914,-3.086,15.732,13.463,8.305,-0.619,3.452,1.001,10.468,11.482,5.486,6.618,9.066,4.122,13.437,-3.049,12.311,12.866,3.41,-1.669,-9.613,-11.06,5.907,11.435,1.591,4.906,8.695,10.02,2.553,-4.82,-1.65,6.624,4.385,1.339,0.19,7.68],[28.099,21.282,12.634,32.978,32.96,20.06,25.659,19.504,24.116,8.973,29.864,24.826,21.651,23.597,17.046,20.885,23.775,21.256,13.425,13.065,11.618,15.093,17.221,-0.366,11.599,17.23,17.183,5.918,18.187,17.322,0.257,-3.137,5.686,5.262,12.043,8.586,13.723,16.127,-6.416,2.071,9.815,10.805,-0.938,8.994,18.682,15.052,-1.336,13.981,-3.167,0.501,10.084,3.944,10.359,4.468,4.323,4.016,-0.112,6.066,-9.785,-3.95,7.322,13.341,11.19,-0.045,22.102,9.233,22.96,34.312,23.634,24.177,23.066,19.896,28.076,32.136,26.859,30.965,19.72,18.852,28.526,27.831,18.544,16.611,11.071,33.904,12.489,31.186,19.824,23.698,26.457,8.888,22.583,25.961,23.025,15.846,12.477,1.411,19.675,23.317,16.241,10.888,13.396,21.618,13.176,23.35,14.846,15.462,19.178,22.024,18.033,-1.247,18.977,13.438,12.728,21.704,4.907,13.555,17.089,-0.206,5.745,11.511,17.774,19.398,17.271,15.792,16.618,6.869,6.521,-4.365,3.824,13.806,-1.301,3.754,-2.019,6.198,16.383,-7.944,12.161,9.722,11.242,-0.161,11.362,16.926,9.415,-4.934,17.646,11.014,-2.491,14.675,15.779,10.255,2.929,0.271,14.755,-1.033,-3.888,18.698,9.115,-3.211,15.372,13.953,8.293,-0.488,3.658,1.301,10.566,11.578,5.153,6.846,8.167,4.13,13.169,-3.065,12.03,12.895,2.701,-1.264,-9.52,-11.385,5.599,11.682,1.852,4.523,8.671,9.855,2.965,-4.944,-1.468,6.642,5.593,1.717,0.089,7.302],[28.051,21.29,12.766,33.039,32.99,20.288,25.562,19.65,24.442,9.042,29.961,24.7,21.551,23.765,17.247,20.777,23.57,21.514,13.426,13.231,11.418,15.043,17.208,-0.361,11.477,17.216,16.943,5.888,18.185,17.291,0.259,-3.442,5.657,5.357,12.233,8.766,13.862,16.126,-6.502,2.341,9.815,10.667,-1.101,8.943,18.449,15.205,-1.409,14.173,-3.334,0.738,10.069,3.764,10.205,4.256,4.384,4.015,0.056,5.852,-9.904,-3.846,7.214,13.105,11.181,0.144,21.916,9.187,23.069,34.401,24.674,23.611,23.21,19.288,28.131,32.606,26.213,31.333,19.854,18.826,28.69,28.199,18.824,16.694,11.44,34.173,12.585,31.183,19.594,23.869,26.992,8.967,21.792,26.345,23.218,15.952,11.898,1.05,19.741,22.614,15.817,10.532,13.231,21.857,13.2,23.782,14.974,15.904,19.343,21.923,18.307,-1.784,19.154,13.029,13.095,22.106,4.926,13.276,17.081,0.063,5.678,11.055,17.398,19.058,16.913,15.859,16.184,7.431,6.474,-4.481,3.918,14.012,-1.261,3.627,-1.862,5.965,16.608,-8.035,12.479,10.117,11.298,0.086,11.445,16.54,9.274,-5.079,17.658,10.543,-2.443,14.494,15.936,10.131,3.578,0.863,14.945,-0.951,-4.109,18.855,9.544,-3.322,15.419,14.07,8.358,-0.696,3.197,0.961,10.326,11.451,4.382,6.956,8.276,4.048,13.133,-3.185,12.397,12.655,2.729,-0.416,-9.866,-11.296,5.41,11.243,1.806,4.6,8.607,10.186,2.595,-4.554,-0.78,6.292,4.855,1.938,0.424,6.825],[28.071,21.246,12.868,33.109,32.957,20.478,25.498,19.36,24.76,9.095,30.031,24.703,21.367,23.938,17.393,20.656,23.341,21.799,13.346,13.352,11.245,14.929,17.163,-0.363,11.374,17.225,16.762,5.785,18.241,17.256,0.561,-3.678,5.772,5.475,12.45,8.986,13.999,16.174,-6.536,2.614,9.873,10.524,-1.307,8.934,18.184,15.397,-1.471,14.293,-3.352,0.949,10.094,3.461,9.934,4.186,4.378,4.062,0.205,5.66,-10.101,-3.684,7.147,13.142,11.137,0.499,21.486,8.788,24.0,34.647,24.61,23.79,22.859,19.39,27.965,32.751,25.736,31.11,20.257,18.96,28.671,28.618,19.167,16.54,11.383,34.116,12.764,31.577,19.691,24.121,26.968,8.889,22.102,26.387,23.331,16.246,11.73,1.106,19.539,21.869,15.777,10.326,13.078,21.551,13.671,23.607,15.119,15.577,19.213,21.926,18.091,-1.626,19.131,12.836,13.008,22.357,5.142,13.112,17.145,0.068,5.593,10.543,17.139,19.335,17.415,15.667,16.362,7.635,6.513,-4.143,4.217,14.076,-1.153,3.704,-1.949,6.277,16.787,-8.21,12.71,10.468,11.314,-0.192,11.831,16.335,9.455,-5.439,17.286,10.443,-2.747,14.219,16.003,9.938,3.74,1.068,14.788,-1.658,-4.202,18.84,9.227,-3.341,15.335,13.909,8.566,-0.946,2.811,0.853,10.388,11.153,4.736,6.8,8.335,3.706,12.949,-3.14,11.83,12.873,2.582,-1.137,-9.886,-11.691,5.501,11.139,1.674,4.62,8.211,10.126,1.964,-4.551,-0.539,6.502,4.695,2.042,0.797,6.56],[28.211,21.301,12.858,33.248,32.939,20.536,25.424,19.047,24.965,9.002,29.925,24.712,21.136,24.18,17.441,20.586,23.154,22.038,13.24,13.465,11.101,14.62,17.105,-0.334,11.314,17.28,16.708,5.669,18.301,17.171,0.592,-3.791,5.984,5.692,12.544,9.108,14.159,16.261,-6.607,2.709,9.73,10.406,-1.596,8.876,18.018,15.535,-1.669,14.316,-3.386,1.113,10.193,3.346,9.529,4.292,4.303,4.008,0.455,5.52,-10.085,-3.52,7.211,13.232,11.142,0.651,21.324,8.812,24.223,34.509,24.705,24.55,22.55,19.538,27.451,32.346,25.804,31.236,20.06,19.132,28.82,28.443,19.045,16.554,11.574,34.23,13.075,31.253,19.696,23.925,26.403,8.94,22.043,26.33,23.238,16.51,11.577,1.362,19.501,21.847,15.83,10.619,12.887,21.757,13.188,23.571,15.267,15.154,18.935,22.288,17.659,-1.139,18.977,13.009,13.212,22.667,4.343,13.364,16.954,0.27,5.587,10.46,16.897,19.794,17.234,15.302,16.936,7.774,7.297,-3.834,4.556,14.337,-1.141,3.958,-2.24,6.987,16.2,-8.219,13.1,10.88,11.375,-0.497,11.547,16.275,9.08,-5.433,17.339,10.748,-2.665,14.572,16.206,10.32,3.799,1.093,14.316,-1.549,-4.271,18.745,9.077,-3.438,14.841,13.95,8.118,-0.727,2.906,1.749,10.257,10.873,4.658,6.606,8.323,4.141,13.396,-3.301,12.192,12.84,2.848,-1.01,-9.769,-11.747,5.835,11.258,1.449,4.282,7.978,9.881,2.048,-4.237,-0.9,6.151,5.465,1.856,0.761,6.665],[28.367,21.395,12.856,33.176,32.864,20.313,25.314,18.923,25.067,8.873,29.843,24.65,20.895,24.548,17.461,20.727,23.225,22.205,13.018,13.538,11.072,14.241,16.978,-0.176,11.383,17.298,16.602,5.422,18.292,17.004,0.411,-3.739,6.284,5.988,12.663,9.199,14.359,16.344,-6.702,2.773,9.591,10.361,-1.674,8.643,18.083,15.487,-1.892,14.234,-3.403,1.267,10.384,3.253,9.145,4.396,4.501,3.941,0.746,5.588,-9.86,-3.505,7.291,13.408,11.162,0.499,21.64,9.137,23.688,34.713,24.845,24.909,22.508,18.832,27.746,32.659,26.443,31.361,19.793,19.299,28.361,27.919,18.769,16.575,11.24,34.106,12.84,31.12,19.87,23.709,26.084,8.82,21.165,26.151,23.507,16.444,11.441,1.375,19.435,22.376,15.738,10.425,12.93,22.256,12.731,23.487,15.308,14.907,19.278,21.979,17.925,-1.349,18.685,13.126,13.543,22.647,4.42,13.123,17.156,0.369,5.323,10.54,17.382,19.358,16.829,15.752,16.907,7.847,7.727,-4.034,5.072,14.192,-1.176,4.507,-2.172,7.213,15.749,-8.328,13.8,10.64,11.282,-0.489,10.93,16.107,9.327,-5.439,17.83,10.513,-2.559,14.738,16.276,10.351,3.499,1.007,13.979,-1.615,-4.465,18.539,9.063,-3.667,14.583,14.145,7.987,-0.625,3.379,2.138,10.539,10.637,4.249,6.254,8.494,4.294,13.303,-2.673,12.042,12.925,2.955,-0.578,-9.66,-11.678,5.598,11.278,1.721,4.893,7.854,9.592,2.179,-4.415,-0.822,6.208,4.78,2.152,0.888,7.166],[28.344,21.481,12.837,33.087,32.806,19.988,25.295,18.907,24.999,8.798,29.669,24.534,20.683,24.923,17.501,20.869,23.478,22.262,12.768,13.534,11.109,13.907,16.946,-0.103,11.433,17.222,16.624,5.167,18.241,16.849,0.164,-3.569,6.593,6.243,12.67,9.117,14.545,16.372,-6.799,2.787,9.666,10.238,-1.578,8.451,18.199,15.188,-1.989,14.137,-3.401,1.441,10.613,3.066,8.856,4.61,4.704,3.896,1.034,5.758,-9.763,-3.484,7.367,13.528,11.196,0.345,22.001,9.041,23.96,34.859,25.167,24.876,22.398,18.876,28.472,32.843,26.422,30.928,19.722,19.5,28.263,28.609,18.328,16.394,11.289,34.07,12.811,31.13,19.715,23.576,25.977,8.833,21.133,26.134,23.99,16.526,10.937,1.476,19.31,22.59,15.643,10.425,12.745,22.225,12.809,23.364,15.339,14.927,19.386,21.78,18.061,-1.225,18.643,13.014,13.183,23.225,4.716,12.295,16.753,0.124,5.203,11.263,17.455,19.219,17.081,15.412,16.526,7.837,7.791,-4.419,5.181,14.207,-1.539,4.743,-1.83,7.357,16.228,-8.113,14.777,10.631,11.304,-0.398,10.706,16.541,8.873,-5.226,17.912,10.241,-2.774,14.487,15.72,10.144,3.462,1.014,14.143,-1.749,-3.878,18.109,8.875,-3.613,14.489,13.66,8.123,-0.916,4.135,1.745,11.2,10.518,4.312,6.371,8.501,3.759,13.662,-3.144,12.048,12.768,2.568,-0.735,-9.446,-11.163,5.372,11.385,2.32,4.674,7.679,9.476,2.406,-4.593,-0.395,7.09,5.017,2.141,0.856,7.239],[28.353,21.558,12.778,33.014,32.816,19.688,25.316,18.933,24.999,8.818,29.512,24.452,20.569,25.326,17.533,20.811,23.659,22.322,12.505,13.493,11.218,13.616,16.898,-0.078,11.563,17.082,16.736,4.905,18.152,16.892,-0.12,-3.325,6.728,6.419,12.563,8.998,14.765,16.394,-6.792,2.611,9.852,9.989,-1.48,8.271,18.353,14.701,-1.984,14.02,-3.232,1.629,10.762,3.004,8.71,4.948,4.859,3.887,1.225,5.856,-9.698,-3.435,7.597,13.593,11.133,0.23,21.538,9.057,23.787,34.624,25.001,24.986,22.166,19.496,27.835,32.744,26.403,30.819,20.128,19.78,27.841,29.291,18.404,16.219,11.434,34.189,12.899,31.097,19.004,24.287,25.913,8.737,21.301,25.921,24.235,16.748,10.805,1.106,19.33,22.39,15.956,10.305,12.778,21.779,12.68,23.926,15.305,14.641,19.232,22.144,17.592,-0.902,18.728,13.051,12.911,23.502,4.14,12.056,16.95,0.246,5.928,11.726,16.725,19.233,17.426,15.518,15.887,7.339,7.661,-4.747,5.058,14.177,-1.735,4.683,-1.756,7.432,16.759,-8.228,15.177,10.338,11.148,-0.494,11.13,16.532,8.602,-5.3,17.706,10.329,-3.119,14.476,15.414,10.118,4.018,0.944,14.521,-1.743,-4.257,18.031,8.703,-3.774,14.583,13.882,8.306,-1.001,4.325,1.671,11.08,10.435,4.574,6.936,8.359,4.345,13.461,-3.675,12.207,12.708,2.372,-0.8,-9.635,-11.285,5.483,11.596,2.645,4.325,7.75,9.989,2.037,-4.146,0.021,6.942,5.277,1.955,0.801,7.07],[28.378,21.604,12.653,32.885,32.888,19.5,25.306,19.081,25.047,8.942,29.464,24.447,20.556,25.646,17.566,20.708,23.614,22.345,12.295,13.426,11.398,13.369,16.943,-0.054,11.743,16.937,16.864,4.73,18.107,17.019,-0.321,-3.217,6.577,6.629,12.401,8.882,15.057,16.429,-6.66,2.478,9.978,9.955,-1.412,8.228,18.367,14.29,-2.075,13.978,-3.165,1.733,10.812,3.049,8.859,5.075,4.962,3.813,1.254,5.878,-9.786,-3.376,7.735,13.522,11.019,0.325,21.056,9.176,23.726,34.434,24.483,25.449,22.056,19.48,27.675,32.502,25.961,30.763,20.103,19.159,27.817,28.423,18.209,16.363,11.295,34.032,12.479,31.283,18.931,24.865,26.377,8.909,21.204,26.175,24.713,16.701,10.82,1.459,19.707,22.427,15.615,10.384,13.15,21.719,12.506,24.313,15.19,14.504,19.201,22.214,17.334,-1.236,18.616,13.304,13.082,23.079,3.925,12.299,17.161,0.143,5.501,11.597,16.931,19.192,16.927,16.213,15.943,7.547,7.382,-4.282,4.728,13.993,-1.979,4.807,-1.612,6.862,17.103,-8.292,14.83,10.374,11.043,-0.192,11.311,16.773,8.861,-5.38,17.559,10.252,-2.619,14.294,15.543,10.572,3.702,1.124,14.334,-1.797,-4.256,18.098,8.689,-3.756,14.198,13.866,8.091,-0.732,4.167,2.07,10.765,10.453,4.386,7.21,8.922,4.969,13.202,-3.545,12.102,12.282,2.764,-1.017,-9.752,-11.446,5.526,11.525,2.713,5.078,7.758,9.887,1.893,-4.197,-0.045,6.669,5.331,1.734,0.907,6.692],[28.32,21.579,12.482,32.636,32.883,19.486,25.267,19.187,25.107,9.094,29.497,24.663,20.547,25.873,17.589,20.578,23.513,22.277,12.268,13.372,11.635,13.132,17.027,0.059,11.892,16.65,17.064,4.692,18.139,17.089,-0.408,-3.209,6.152,6.8,12.198,8.884,15.297,16.468,-6.431,2.476,9.937,10.075,-1.323,8.456,18.241,14.017,-2.192,13.936,-3.19,1.77,10.753,3.129,9.169,5.108,5.02,3.794,1.16,5.759,-9.943,-3.41,7.703,13.398,10.94,0.528,21.49,9.089,23.832,34.244,24.907,25.752,22.348,19.171,27.82,32.409,25.853,30.864,19.919,19.208,28.058,28.003,18.009,16.629,10.957,34.124,12.483,31.357,19.197,24.265,26.015,9.466,21.072,26.469,25.101,17.099,10.487,1.33,20.04,22.555,15.652,10.932,13.515,21.691,12.196,23.636,15.143,14.223,19.164,22.154,17.517,-1.531,18.925,13.434,12.974,22.944,3.947,12.376,17.023,-0.349,4.715,11.144,17.499,19.294,16.93,15.443,16.341,7.434,7.475,-3.539,4.712,13.572,-1.932,5.026,-1.483,6.802,16.507,-8.044,14.46,10.352,11.063,-0.051,11.187,16.445,8.473,-5.322,17.945,10.568,-1.936,14.727,15.055,10.444,3.55,1.12,14.145,-1.645,-3.961,18.191,8.821,-3.73,13.543,13.829,8.157,-0.933,3.985,1.76,11.177,10.433,4.608,6.868,8.92,5.28,13.588,-2.864,11.99,12.396,2.579,-0.995,-9.614,-11.795,5.366,11.186,2.561,5.328,7.835,9.702,1.79,-4.474,-0.291,7.161,5.394,2.109,0.857,6.781],[28.225,21.685,12.442,32.3,32.724,19.711,25.143,19.256,25.09,9.127,29.617,24.924,20.624,25.947,17.708,20.576,23.346,22.17,12.422,13.249,11.793,12.97,16.975,0.13,12.121,16.371,17.128,4.711,18.208,17.184,-0.39,-3.152,5.853,6.922,11.966,8.877,15.468,16.436,-6.199,2.46,9.662,10.28,-1.19,8.657,18.006,13.8,-2.258,13.886,-3.21,1.672,10.611,3.186,9.47,5.153,5.029,3.742,1.103,5.601,-9.902,-3.564,7.628,13.331,10.924,0.71,22.069,9.366,23.841,33.953,25.219,25.722,22.447,19.388,27.947,32.198,26.488,31.106,19.823,19.469,28.036,28.482,18.4,16.409,11.214,34.314,12.558,31.324,18.967,23.811,25.826,8.805,20.512,26.634,25.21,17.252,10.868,1.442,19.633,22.282,15.79,11.232,13.596,21.539,12.28,23.597,15.092,13.986,19.058,22.024,17.216,-1.413,19.068,13.924,12.706,23.498,4.123,11.863,17.16,-0.686,4.368,11.203,17.222,19.485,17.191,15.508,16.411,7.321,7.185,-3.412,4.473,13.71,-1.579,5.185,-1.355,7.169,16.149,-8.008,14.699,10.376,10.89,-0.306,10.513,16.351,8.777,-5.015,17.903,10.995,-1.717,15.051,15.033,9.925,3.784,1.125,14.172,-1.433,-3.905,17.731,8.629,-3.756,13.425,13.341,8.058,-0.862,4.331,1.512,10.995,10.825,4.757,6.574,8.523,5.62,13.55,-2.662,12.005,12.243,2.511,-0.609,-9.972,-11.419,5.396,11.635,2.289,4.678,7.955,10.464,2.268,-4.728,-0.663,6.941,5.557,2.295,0.552,6.834],[28.271,21.971,12.632,32.07,32.571,20.014,25.146,19.337,24.843,8.969,29.758,24.977,20.676,25.838,17.789,20.602,23.223,22.196,12.732,13.152,11.734,12.879,16.859,0.234,12.304,16.331,17.032,4.665,18.209,17.176,-0.249,-2.953,5.867,7.007,11.993,8.722,15.557,16.444,-6.133,2.392,9.382,10.347,-1.121,8.749,17.741,13.774,-2.207,13.758,-3.111,1.407,10.394,3.113,9.77,5.195,5.109,3.655,1.015,5.545,-9.783,-3.753,7.479,13.339,10.963,0.816,21.926,8.934,23.9,33.682,24.695,25.668,22.402,19.535,27.501,31.453,26.586,31.135,20.148,19.499,28.335,29.16,18.791,16.111,11.415,33.863,12.104,30.869,19.098,24.25,25.91,8.487,20.657,26.496,24.782,17.304,10.846,1.254,19.358,21.746,15.79,10.983,13.561,21.54,12.651,23.931,14.84,14.161,19.117,22.358,17.159,-1.355,18.879,14.004,12.7,23.717,4.264,11.823,17.533,-0.548,4.632,12.042,17.401,19.474,16.697,16.039,16.561,7.439,6.777,-3.854,4.196,13.645,-1.814,5.204,-1.22,7.764,15.869,-7.668,15.072,10.229,10.705,0.021,10.804,15.869,8.765,-4.739,17.719,11.1,-2.517,14.947,15.018,9.743,3.983,1.114,14.151,-1.018,-4.139,17.653,9.193,-3.796,13.444,13.768,7.988,-0.956,4.627,2.048,11.126,11.112,4.725,6.522,8.785,5.908,13.071,-3.42,12.019,12.011,2.268,-0.507,-9.943,-11.467,5.159,11.589,2.508,4.356,8.195,10.592,3.189,-4.942,-0.631,6.891,5.225,2.341,0.804,6.713],[28.311,22.274,12.774,31.811,32.33,20.305,25.3,19.37,24.543,8.71,29.82,24.952,20.706,25.637,17.756,20.697,23.172,22.285,12.824,13.037,11.582,12.947,16.816,0.222,12.282,16.509,17.039,4.468,18.169,17.09,-0.059,-2.784,5.881,7.058,12.104,8.577,15.56,16.424,-6.088,2.432,9.373,10.452,-1.067,8.886,17.492,13.904,-2.101,13.611,-3.113,1.303,10.245,3.04,10.003,5.127,5.257,3.458,0.952,5.648,-9.827,-3.988,7.359,13.341,10.947,0.821,21.787,8.617,23.484,33.178,24.366,25.361,22.376,19.48,27.87,31.107,26.537,31.285,20.811,19.967,28.333,29.475,18.823,16.191,11.297,33.421,12.464,30.709,19.578,24.641,25.746,9.229,21.26,26.345,24.583,17.712,11.075,1.316,19.482,22.016,15.518,11.08,13.138,21.732,13.541,23.508,14.721,14.144,19.482,22.152,17.562,-1.053,18.895,13.785,13.108,23.663,4.048,11.874,17.283,-0.181,5.005,12.015,17.198,19.174,16.821,15.783,16.799,7.417,7.019,-4.016,4.291,13.686,-1.546,5.446,-1.106,7.977,16.179,-7.57,15.282,10.207,10.997,-0.244,11.584,15.612,9.101,-4.603,17.426,10.507,-3.113,15.035,14.899,9.899,3.722,0.958,13.881,-0.76,-4.102,17.638,8.939,-3.871,13.546,14.451,7.505,-1.095,3.994,1.826,10.916,11.37,4.699,6.275,8.57,5.865,13.361,-3.566,12.236,12.494,2.087,-0.322,-9.511,-11.609,5.143,10.997,2.47,4.923,8.525,9.974,3.107,-4.792,-0.338,6.782,5.823,2.462,0.826,6.212],[28.353,22.536,12.874,31.486,32.0,20.444,25.397,19.418,24.228,8.596,29.702,24.918,20.886,25.366,17.721,20.889,23.132,22.415,12.827,13.007,11.316,13.177,16.74,0.226,12.125,16.85,17.083,4.28,18.154,17.054,0.147,-2.837,5.889,7.044,12.221,8.591,15.464,16.44,-6.008,2.409,9.427,10.631,-1.049,9.033,17.388,14.137,-2.108,13.556,-3.252,1.426,10.169,2.964,10.152,4.93,5.45,3.403,1.001,5.707,-9.843,-4.16,7.254,13.459,10.807,0.771,22.044,8.169,23.657,32.997,24.223,24.941,22.338,19.885,27.818,31.691,26.783,31.223,20.94,19.691,28.257,29.198,19.197,16.191,11.328,33.681,13.162,30.847,20.003,24.993,25.846,8.73,21.472,26.156,24.575,18.175,10.954,1.451,19.622,22.564,15.552,11.154,13.071,21.774,13.626,23.481,14.653,13.802,19.315,21.941,17.595,-1.11,18.986,13.751,12.805,23.11,3.396,11.795,16.881,0.275,4.863,11.429,17.37,19.174,17.042,15.796,16.865,7.318,7.035,-3.959,4.582,13.8,-1.038,5.422,-1.143,8.217,16.416,-7.702,15.527,10.382,11.426,-0.505,11.92,15.667,8.83,-4.642,17.556,9.914,-2.458,15.463,15.454,10.029,3.887,0.875,13.545,-0.984,-4.389,17.703,9.007,-3.756,13.667,14.541,7.627,-1.06,3.772,1.729,10.957,11.503,4.469,6.222,8.662,6.158,13.527,-3.512,12.065,12.255,2.25,-0.463,-9.729,-11.554,5.004,10.983,2.362,5.005,8.459,9.954,2.184,-5.068,-0.458,6.701,5.708,2.475,0.524,6.415],[28.382,22.68,12.957,31.399,31.816,20.605,25.463,19.535,24.038,8.472,29.51,24.808,21.112,25.053,17.699,21.046,23.166,22.445,12.682,12.969,11.107,13.365,16.717,0.187,12.102,17.009,17.238,4.136,18.16,17.185,0.359,-3.103,5.939,6.981,12.347,8.589,15.509,16.443,-5.935,2.351,9.457,10.7,-1.13,9.095,17.465,14.446,-2.124,13.508,-3.287,1.667,10.09,2.803,10.17,4.809,5.579,3.528,0.955,5.698,-9.743,-4.171,7.209,13.597,10.612,0.643,22.642,7.929,23.952,33.162,24.541,24.932,22.7,19.789,27.612,31.106,26.958,30.678,20.838,19.191,27.767,28.382,19.179,16.323,11.62,33.45,12.599,30.716,19.808,25.343,25.916,8.286,21.565,26.446,24.372,18.199,10.925,1.674,19.952,22.218,15.527,10.989,12.91,21.893,13.366,23.612,14.852,13.987,19.153,22.529,17.909,-0.987,18.823,13.761,12.551,23.327,3.81,11.825,17.082,0.104,4.351,10.909,17.605,19.34,17.239,16.179,16.21,7.403,6.883,-3.342,4.54,13.881,-1.5,5.414,-1.522,8.205,16.54,-7.621,15.053,10.186,11.625,-0.125,11.839,15.583,8.594,-5.059,17.529,10.336,-2.35,15.31,15.352,9.542,3.683,1.182,13.623,-1.29,-4.997,17.601,8.936,-3.808,13.474,14.497,7.658,-1.014,3.925,2.2,10.94,11.546,4.199,6.508,8.332,6.929,13.382,-3.476,12.511,12.109,2.315,-0.582,-9.85,-11.567,5.231,10.915,2.509,4.317,8.623,10.688,1.727,-5.249,-0.739,7.21,5.543,2.312,1.144,6.556],[28.279,22.73,12.918,31.48,31.704,20.7,25.552,19.671,24.074,8.214,29.239,24.806,21.381,24.845,17.712,21.163,23.24,22.447,12.477,12.927,10.981,13.537,16.761,0.065,12.179,17.022,17.553,4.058,18.201,17.332,0.345,-3.365,5.938,6.903,12.412,8.538,15.526,16.405,-5.942,2.304,9.269,10.791,-1.232,8.987,17.485,14.614,-2.068,13.468,-3.302,2.019,10.042,2.879,10.229,4.732,5.766,3.722,0.821,5.667,-9.69,-4.12,7.165,13.712,10.421,0.6,22.81,8.016,23.459,33.207,24.296,25.057,23.109,19.387,27.605,30.554,26.856,30.438,20.967,19.912,27.723,27.577,19.359,16.26,11.386,33.215,12.614,30.615,20.128,25.025,26.009,8.565,21.547,26.498,23.458,17.953,10.845,1.42,20.379,22.265,15.728,10.915,12.832,21.921,13.13,23.502,14.658,14.469,19.231,22.887,18.038,-1.241,18.943,13.624,12.855,23.605,3.843,12.013,17.594,0.093,4.311,10.763,17.792,19.388,17.474,16.441,16.025,7.324,7.015,-3.256,4.401,14.115,-1.266,5.34,-1.594,8.12,16.404,-7.781,15.189,10.27,11.428,-0.876,11.259,15.768,8.823,-5.016,17.419,11.011,-2.762,14.761,15.703,9.453,3.678,1.605,13.905,-1.088,-4.57,17.524,8.673,-3.812,13.543,14.313,7.972,-1.031,4.022,1.911,10.368,11.427,3.975,6.574,8.292,6.741,13.975,-3.422,12.626,12.127,2.44,-0.885,-9.49,-11.592,5.377,10.554,2.914,4.064,8.586,10.454,1.782,-4.971,-1.16,6.644,5.868,2.05,1.198,6.371],[28.024,22.654,12.735,31.647,31.657,20.901,25.565,19.85,24.125,8.005,29.108,24.803,21.51,24.859,17.7,21.282,23.331,22.482,12.338,12.881,11.077,13.68,17.044,-0.113,12.127,16.909,17.992,4.044,18.261,17.258,0.262,-3.414,5.923,6.818,12.399,8.563,15.399,16.406,-5.981,2.337,9.156,10.944,-1.489,8.707,17.399,14.635,-2.016,13.454,-3.418,2.319,9.977,3.178,10.289,4.765,5.813,3.835,0.633,5.667,-9.738,-4.041,6.921,13.954,10.307,0.576,22.436,7.829,23.74,32.957,23.902,24.462,23.041,19.462,27.866,30.704,26.768,30.474,20.976,20.281,27.539,27.191,19.069,16.413,11.041,33.298,13.015,30.447,20.528,24.741,26.539,8.695,21.972,26.426,23.476,17.509,10.968,0.917,20.418,22.439,15.595,11.012,12.786,21.816,12.933,23.729,14.549,14.827,19.125,22.616,17.958,-1.216,19.238,13.541,13.109,23.255,3.779,12.711,17.391,-0.309,4.58,10.543,17.937,19.527,17.415,16.453,16.647,7.15,6.886,-3.762,4.449,14.173,-1.075,5.261,-1.581,7.846,16.226,-7.848,15.358,9.812,11.591,-0.215,10.717,15.649,8.776,-4.827,17.442,10.605,-2.502,14.546,15.75,9.418,3.722,1.395,13.904,-1.218,-3.781,17.327,9.225,-3.748,14.175,14.331,7.678,-1.247,3.888,2.002,10.702,11.498,4.606,6.166,8.367,6.723,13.632,-3.292,12.785,11.962,2.875,-0.916,-9.855,-11.353,5.501,10.515,3.187,4.447,8.531,9.489,2.42,-4.886,-0.802,6.621,5.613,2.309,0.329,6.52],[27.763,22.575,12.532,31.768,31.583,21.002,25.517,19.922,24.252,7.96,29.017,24.686,21.578,24.891,17.681,21.346,23.529,22.509,12.202,12.892,11.199,13.897,17.264,-0.219,11.978,16.679,18.321,4.097,18.291,16.957,0.348,-3.308,5.939,6.663,12.5,8.458,15.174,16.408,-6.05,2.306,9.135,11.088,-1.488,8.519,17.22,14.617,-2.052,13.474,-3.359,2.567,9.913,3.568,10.244,4.829,5.733,4.005,0.468,5.755,-9.95,-3.954,6.736,14.128,10.254,0.64,22.092,7.815,23.788,33.21,24.059,24.451,23.018,19.783,27.468,31.771,26.946,30.359,20.867,19.509,27.566,27.198,19.442,16.608,10.868,33.375,12.424,30.431,21.062,24.669,26.07,8.12,22.419,26.269,23.882,16.735,10.94,1.349,20.161,22.338,16.035,10.855,12.992,21.888,13.313,23.723,14.316,15.193,19.295,22.533,17.875,-1.363,18.744,13.75,12.791,23.288,3.844,12.62,17.424,-0.012,4.858,10.845,17.946,19.54,17.1,16.958,17.011,6.988,6.798,-4.319,4.225,14.132,-1.397,5.28,-1.49,7.439,16.577,-7.8,15.213,10.089,11.842,-0.544,10.217,15.443,8.632,-5.056,17.708,10.563,-2.616,14.618,15.426,9.56,3.952,1.534,13.819,-1.257,-4.813,17.337,9.232,-3.896,14.782,14.542,7.284,-1.13,3.742,2.765,10.412,11.743,4.974,6.096,8.038,6.656,13.847,-3.216,12.931,12.034,2.627,-0.394,-10.023,-11.697,5.65,10.247,2.929,4.815,8.824,9.867,2.832,-4.827,-0.379,6.447,5.557,2.333,0.446,6.237],[27.497,22.576,12.297,32.039,31.512,21.144,25.396,19.728,24.463,7.921,29.016,24.616,21.73,24.969,17.563,21.277,23.713,22.526,12.156,12.868,11.382,14.06,17.342,-0.158,11.697,16.477,18.308,4.198,18.325,16.762,0.483,-3.265,5.943,6.517,12.659,8.412,14.929,16.465,-6.196,2.342,9.181,11.138,-1.404,8.468,16.872,14.615,-2.062,13.55,-3.339,2.798,9.904,3.87,10.263,4.787,5.606,4.118,0.489,5.843,-10.195,-3.922,6.788,14.395,10.215,0.765,22.204,7.876,23.63,33.805,24.721,24.633,23.33,20.259,27.105,31.444,26.918,30.151,20.911,19.475,27.431,27.341,19.415,17.137,10.826,33.127,12.294,30.312,21.589,23.883,25.851,7.954,22.19,25.716,23.802,16.141,10.85,1.479,20.435,22.717,15.896,10.622,13.202,22.289,13.167,24.011,14.425,15.18,19.292,22.563,17.464,-1.386,18.578,13.318,12.375,23.422,3.784,12.382,17.427,0.363,5.146,10.981,18.478,19.474,17.348,17.259,15.668,7.325,6.925,-4.088,4.177,14.047,-0.943,4.997,-1.468,6.81,16.816,-7.929,14.526,10.176,11.546,-1.131,9.885,15.469,8.4,-5.092,17.794,11.353,-2.547,14.859,15.949,9.312,4.071,1.535,13.92,-0.949,-4.905,17.396,9.008,-3.645,14.068,14.774,7.38,-0.846,3.905,2.623,10.255,11.598,4.409,5.907,8.114,6.504,14.103,-3.474,13.077,11.859,2.812,-0.474,-9.892,-11.956,5.62,10.264,3.122,4.542,8.739,10.258,2.548,-4.781,-0.739,6.578,5.642,2.514,0.319,6.346],[27.216,22.604,12.181,32.263,31.348,21.371,25.374,19.527,24.698,7.81,29.078,24.431,21.836,25.044,17.423,21.133,23.795,22.657,12.104,12.923,11.609,14.13,17.206,-0.036,11.311,16.5,18.257,4.358,18.301,16.676,0.659,-3.275,6.059,6.381,12.72,8.548,14.538,16.555,-6.357,2.377,9.084,11.143,-1.461,8.45,16.486,14.507,-1.827,13.741,-3.298,2.777,9.884,3.861,10.257,4.643,5.477,4.158,0.509,5.881,-10.18,-3.971,6.961,14.62,10.133,0.885,22.324,7.508,24.15,33.972,24.94,24.488,23.15,19.638,27.584,31.392,27.017,30.273,20.977,19.908,27.64,27.033,19.6,17.594,10.463,33.127,12.376,30.518,21.553,23.801,25.652,8.323,22.471,25.111,24.001,15.692,11.115,1.519,20.476,23.674,15.549,10.39,13.474,22.01,12.534,24.469,14.571,14.974,19.281,22.679,16.968,-0.938,18.072,13.023,12.29,23.352,4.37,12.46,17.302,0.066,4.758,10.977,18.812,19.441,17.318,16.85,15.452,7.322,6.742,-3.632,4.258,14.549,-0.766,4.909,-1.401,6.629,16.614,-8.134,14.638,10.215,11.836,-0.081,9.776,15.066,8.81,-5.073,17.67,11.496,-2.765,14.902,15.957,9.367,4.177,1.318,14.127,-1.093,-4.161,16.671,9.187,-3.553,13.744,14.915,7.5,-0.895,3.95,2.432,10.368,11.433,4.896,5.901,8.14,6.406,13.845,-2.898,13.443,11.758,2.981,-0.485,-10.279,-11.865,5.811,10.833,3.26,3.972,8.632,9.801,2.893,-4.784,-1.202,6.638,5.419,2.681,0.366,7.275],[27.137,22.683,12.127,32.502,31.233,21.594,25.414,19.389,24.946,7.697,29.165,24.144,22.014,25.002,17.293,21.069,24.054,22.725,11.98,13.08,11.813,14.17,16.952,0.097,11.03,16.646,18.287,4.575,18.253,16.636,0.762,-3.269,6.222,6.416,12.846,8.737,14.129,16.525,-6.519,2.328,8.972,11.085,-1.369,8.563,16.112,14.353,-1.669,13.906,-3.32,2.44,9.712,3.823,10.16,4.515,5.386,4.231,0.522,6.065,-10.119,-3.956,7.07,14.568,10.161,0.967,22.571,7.369,24.213,33.818,24.304,24.586,23.424,18.991,27.299,31.757,26.865,30.728,21.09,19.704,27.898,26.67,19.929,17.874,10.46,32.958,12.17,30.377,21.383,24.444,25.701,8.44,22.731,24.633,23.795,15.75,11.351,1.565,19.63,23.509,15.73,9.909,13.618,22.106,12.467,24.104,14.667,15.317,19.124,22.462,17.799,-0.845,18.401,12.675,12.875,23.724,4.221,12.486,17.286,0.197,4.84,10.83,18.088,19.519,16.963,17.085,15.799,7.29,6.937,-3.204,4.446,14.645,-0.957,4.918,-1.452,6.623,16.555,-8.283,14.707,10.166,12.08,0.012,10.335,15.096,9.067,-5.579,17.592,11.195,-2.276,14.53,15.311,9.084,4.048,1.545,14.572,-1.294,-4.348,15.883,9.375,-3.555,14.12,14.77,7.756,-1.006,3.951,2.711,10.101,11.056,5.462,5.731,8.576,6.331,14.051,-3.26,13.239,11.877,3.066,-0.162,-10.033,-11.769,5.919,10.599,2.663,4.372,8.483,9.748,3.142,-4.932,-1.276,6.349,5.516,2.704,0.605,7.045],[27.144,22.798,12.06,32.677,31.113,21.717,25.542,19.242,25.042,7.612,29.214,23.925,22.187,24.897,17.155,20.857,24.235,22.712,11.946,13.397,11.854,14.339,16.917,0.22,10.724,16.862,18.261,4.791,18.207,16.778,0.736,-3.268,6.397,6.463,12.946,8.826,13.707,16.524,-6.755,2.29,9.032,10.931,-1.324,8.721,15.86,14.317,-1.7,13.927,-3.359,2.054,9.615,3.84,9.996,4.639,5.401,4.293,0.472,6.217,-10.155,-3.902,7.148,14.522,10.26,0.943,22.793,7.546,24.296,34.113,24.005,24.477,23.436,19.547,26.999,32.09,26.837,30.768,21.039,19.727,28.216,26.58,20.213,18.305,10.699,32.846,12.045,29.995,21.103,24.482,26.158,8.238,22.948,23.777,23.489,15.783,10.931,1.576,19.447,22.869,15.434,9.825,13.557,22.8,12.329,24.484,14.678,15.591,18.832,22.187,17.933,-1.025,18.658,12.62,13.26,24.062,3.963,12.555,16.791,0.534,5.454,10.898,17.806,19.518,17.576,17.055,16.198,7.541,7.5,-2.919,4.568,14.689,-0.627,4.995,-1.757,6.634,16.394,-8.5,14.482,10.42,11.972,-0.49,11.155,14.783,8.945,-5.669,17.169,10.93,-2.322,14.028,14.815,9.364,3.914,1.79,14.687,-0.577,-4.894,15.887,9.589,-3.663,14.154,14.904,7.389,-1.008,3.973,2.135,9.847,10.844,5.158,6.299,8.517,6.39,14.443,-3.12,12.988,11.88,3.045,-0.228,-9.922,-11.715,5.902,10.449,2.542,5.056,8.37,9.205,3.179,-5.037,-0.938,6.535,5.236,2.552,1.008,6.341],[27.047,22.862,12.015,32.815,31.052,21.631,25.772,19.307,24.949,7.598,29.172,23.689,22.363,24.851,17.053,20.58,24.326,22.685,11.855,13.809,11.808,14.564,16.845,0.252,10.579,17.118,18.141,4.987,18.124,17.017,0.831,-3.355,6.561,6.421,13.005,8.919,13.324,16.502,-7.023,2.25,9.181,10.698,-1.328,8.782,15.782,14.364,-1.65,13.737,-3.403,1.758,9.623,3.86,9.843,4.984,5.388,4.262,0.508,6.214,-10.299,-3.868,7.195,14.714,10.318,0.853,22.177,7.431,24.446,34.455,24.836,24.246,23.592,19.694,27.299,32.138,27.027,30.632,21.346,19.251,27.912,26.804,20.035,18.292,10.474,32.5,12.297,29.704,21.241,24.131,26.948,7.838,22.963,22.769,23.461,15.998,10.497,1.35,19.37,23.544,15.638,9.91,13.692,22.73,12.467,24.843,15.016,15.709,18.646,22.006,17.449,-1.03,18.78,12.262,12.692,24.016,4.432,12.938,16.59,0.232,5.876,10.928,18.71,19.313,17.63,16.745,16.171,7.821,7.588,-2.418,4.718,14.419,-0.767,4.895,-1.847,6.857,16.242,-8.613,14.043,10.815,11.737,-0.405,11.648,14.231,9.099,-5.56,17.668,11.061,-2.895,13.526,15.502,9.84,3.875,1.96,14.202,-0.074,-4.813,16.233,9.92,-3.499,13.98,14.813,7.629,-0.981,4.403,1.262,9.715,10.989,5.041,6.296,8.156,6.501,14.129,-3.547,13.165,11.902,2.995,-0.325,-10.163,-12.01,5.868,10.928,2.688,5.097,8.416,9.319,3.03,-4.569,-1.001,6.71,5.458,2.475,0.594,6.819],[26.955,22.742,11.919,32.969,31.021,21.358,26.043,19.491,24.945,7.568,29.069,23.395,22.486,24.826,17.043,20.352,24.468,22.662,11.679,14.0,11.845,14.644,16.716,0.165,10.617,17.085,18.182,5.241,17.994,17.199,0.821,-3.42,6.685,6.253,12.94,8.984,12.983,16.534,-7.127,2.123,9.37,10.586,-1.274,8.814,15.793,14.512,-1.588,13.46,-3.502,1.528,9.713,3.799,9.787,5.447,5.398,4.267,0.528,6.283,-10.557,-3.761,7.192,14.933,10.433,0.748,22.342,7.491,24.476,34.647,25.436,24.444,24.039,19.193,27.208,32.179,27.49,30.411,21.204,19.205,27.64,26.989,19.575,17.902,10.63,32.477,12.493,29.478,21.658,23.468,26.458,8.316,22.634,23.241,23.721,16.167,10.145,1.692,19.1,23.811,15.473,9.769,13.69,22.282,12.337,24.742,15.656,16.071,18.901,21.705,18.081,-0.669,19.089,12.344,13.168,23.562,4.838,13.039,16.737,0.265,5.702,11.142,18.258,19.029,17.584,17.168,16.358,7.765,7.361,-2.508,4.866,14.74,-0.858,4.64,-1.894,6.998,16.411,-8.922,13.551,10.782,11.621,-0.676,11.379,14.126,9.08,-5.842,17.87,10.833,-3.063,13.238,15.81,9.705,4.055,1.895,14.286,-0.03,-4.675,16.409,9.857,-3.395,14.582,14.506,7.966,-0.875,4.527,1.475,9.945,11.126,5.206,6.101,8.671,6.757,14.34,-3.544,13.37,11.888,2.967,-0.609,-10.134,-11.746,5.873,11.193,2.083,4.848,8.554,9.572,2.995,-4.982,-0.777,6.528,5.6,2.485,0.396,7.526],[26.873,22.597,11.955,33.059,30.962,21.018,26.079,19.548,25.063,7.596,29.012,23.358,22.53,24.835,17.057,20.224,24.427,22.656,11.414,14.245,12.071,14.637,16.648,0.205,10.92,16.975,18.386,5.473,17.817,17.382,0.666,-3.688,6.696,6.026,12.898,8.876,12.627,16.637,-7.111,2.172,9.528,10.632,-1.152,8.807,15.881,14.736,-1.599,13.384,-3.71,1.231,9.861,3.795,9.838,5.853,5.544,4.428,0.554,6.661,-10.658,-3.685,7.218,15.103,10.556,0.679,22.858,7.644,24.605,34.829,24.811,24.248,23.676,19.469,27.318,32.09,27.8,30.193,20.827,19.623,27.54,26.887,19.259,17.105,10.391,32.576,11.93,29.632,21.763,23.898,25.85,8.558,23.052,23.366,23.961,16.453,10.275,1.948,19.027,23.059,15.39,9.88,13.733,22.177,11.842,24.497,15.6,16.049,18.514,21.575,18.048,-0.797,19.234,12.502,13.456,22.846,4.876,12.952,16.395,0.117,5.922,10.976,17.786,19.206,17.479,17.021,16.757,7.558,7.933,-2.722,4.955,14.659,-0.64,4.333,-2.199,6.618,17.053,-8.911,13.524,10.453,11.953,-1.048,10.227,14.368,9.25,-6.189,17.285,10.639,-2.721,13.427,15.731,9.324,3.86,1.093,14.14,-0.639,-4.846,15.778,9.612,-3.533,14.679,14.405,8.124,-1.027,5.024,1.731,10.081,10.655,5.242,6.202,8.721,6.804,14.486,-2.866,13.601,12.089,3.139,-0.582,-10.641,-12.08,6.017,10.954,1.972,5.082,8.533,9.195,2.743,-4.896,-0.967,6.609,5.147,2.322,0.55,8.086],[26.89,22.619,11.983,33.17,30.926,20.755,25.922,19.598,25.075,7.734,28.953,23.45,22.437,24.825,17.032,20.269,24.138,22.544,11.194,14.457,12.229,14.583,16.549,0.381,11.361,16.977,18.403,5.668,17.622,17.618,0.539,-3.851,6.695,5.692,12.862,8.676,12.394,16.624,-7.252,2.244,9.419,10.643,-1.192,8.851,15.897,14.987,-1.671,13.353,-3.839,0.926,9.881,3.853,9.849,6.254,5.554,4.64,0.596,7.247,-10.663,-3.669,7.277,15.152,10.587,0.671,22.42,7.309,24.565,34.651,24.324,24.429,23.859,19.563,27.203,32.179,27.53,30.52,21.035,19.334,27.904,26.642,18.95,16.461,10.357,32.652,11.83,29.858,21.549,23.825,26.358,8.184,23.189,22.542,23.643,16.926,10.31,1.35,18.797,22.745,15.491,10.475,14.021,22.378,11.431,24.064,15.26,15.691,17.957,21.533,17.563,-1.085,19.318,13.025,13.488,23.046,4.611,12.747,16.434,-0.178,6.143,10.996,18.434,19.226,17.423,17.326,16.432,7.621,8.072,-2.899,5.18,14.428,-1.099,4.028,-2.521,6.147,17.077,-8.689,13.453,10.351,12.194,-0.036,9.486,14.391,9.093,-5.744,17.622,11.034,-2.93,13.315,15.591,10.004,3.883,0.736,14.032,-0.363,-5.256,15.938,9.448,-3.493,14.766,14.554,7.817,-1.046,4.99,1.272,10.272,10.196,5.153,6.706,8.42,6.89,14.43,-2.565,13.825,12.222,3.301,-0.601,-10.508,-12.008,6.272,10.976,2.277,5.413,8.408,9.569,2.779,-4.494,-1.213,6.832,5.482,2.293,0.698,8.079],[26.933,22.691,11.929,33.171,30.973,20.494,25.998,19.469,25.012,7.781,29.051,23.349,22.127,24.846,16.955,20.291,23.767,22.427,11.099,14.506,12.266,14.542,16.446,0.366,11.87,17.047,18.562,5.678,17.605,17.657,0.442,-3.901,6.606,5.267,12.819,8.515,12.234,16.555,-7.3,2.211,9.465,10.56,-0.958,8.905,15.887,15.223,-1.771,13.348,-3.888,0.655,9.918,3.83,9.807,6.456,5.523,4.691,0.696,7.882,-10.82,-3.586,7.363,15.232,10.701,0.648,21.853,7.373,24.454,34.85,24.304,24.397,23.834,19.388,27.351,32.571,27.526,30.711,21.222,19.476,27.966,26.752,19.077,15.933,10.852,32.646,12.189,29.75,21.662,24.283,26.701,8.049,22.469,22.622,23.383,17.602,9.637,1.604,18.853,22.8,15.507,11.009,13.979,22.249,11.654,24.21,15.073,15.283,17.893,21.541,17.813,-0.99,19.312,13.578,13.64,23.669,4.256,12.779,16.324,-0.136,6.048,11.215,18.399,18.643,17.616,17.415,16.533,7.616,8.002,-3.045,5.103,14.089,-1.178,3.487,-2.654,5.75,16.659,-8.966,13.319,10.42,11.864,0.158,9.999,14.012,9.277,-5.757,18.018,11.647,-3.529,12.803,15.529,10.127,3.998,1.314,14.136,-0.264,-5.22,16.417,9.568,-3.542,15.057,14.5,7.959,-0.83,5.17,1.324,10.288,10.712,4.859,7.08,8.638,6.746,14.241,-2.993,13.86,12.237,3.388,-0.693,-9.925,-12.266,6.326,11.01,1.89,6.219,8.234,9.39,3.515,-4.743,-0.561,6.847,5.573,2.299,0.369,7.963],[26.962,22.765,11.846,33.207,31.178,20.443,26.253,19.234,25.061,7.757,29.106,23.202,21.667,24.837,16.913,20.293,23.481,22.373,11.107,14.352,12.246,14.687,16.373,0.453,12.313,17.226,18.742,5.575,17.624,17.571,0.458,-3.867,6.396,4.826,12.694,8.367,12.072,16.578,-7.263,2.246,9.582,10.562,-0.841,9.011,15.807,15.364,-1.88,13.342,-3.84,0.355,9.925,3.808,10.002,6.655,5.497,4.68,0.911,8.304,-10.936,-3.592,7.475,15.179,10.899,0.561,22.713,7.866,24.228,34.931,24.422,24.431,23.135,19.158,27.24,32.315,27.726,30.688,21.066,18.932,27.885,27.05,18.952,15.396,10.638,32.545,12.256,29.555,21.534,23.88,26.685,8.051,22.022,23.295,23.503,17.763,9.459,1.63,19.104,22.558,15.185,11.087,14.062,22.21,11.627,24.026,15.291,15.297,18.357,21.451,18.062,-1.016,19.415,13.889,13.734,23.674,4.087,12.94,16.215,0.073,5.733,11.575,18.323,18.61,17.975,17.367,16.8,7.482,7.481,-2.694,4.545,13.689,-0.972,2.982,-2.458,5.302,16.864,-9.015,13.429,10.251,11.321,-0.013,10.179,14.123,9.338,-6.187,17.564,11.207,-3.315,12.477,15.892,9.902,4.133,1.903,13.971,0.352,-5.267,16.175,9.92,-3.802,15.356,14.497,8.024,-0.965,5.323,1.078,10.422,10.631,5.41,7.658,8.881,6.417,14.288,-3.35,13.778,12.537,3.171,-0.384,-10.639,-11.938,6.161,10.907,1.575,6.226,8.463,9.327,3.606,-4.663,-0.287,7.064,5.171,2.179,0.562,9.089],[26.889,23.05,11.784,33.276,31.487,20.438,26.489,18.976,25.03,7.696,29.008,23.214,21.235,24.9,16.912,20.233,23.307,22.444,11.143,14.222,12.238,14.871,16.333,0.429,12.501,17.517,18.652,5.376,17.751,17.49,0.474,-3.788,6.145,4.408,12.499,8.259,12.044,16.692,-7.292,2.435,9.632,10.616,-0.736,9.139,15.77,15.415,-1.99,13.26,-3.733,0.1,9.95,3.878,10.113,6.822,5.365,4.523,1.148,8.654,-10.928,-3.809,7.627,15.072,11.115,0.494,23.204,8.052,24.349,35.013,24.919,24.415,22.509,19.19,27.485,32.159,27.799,30.534,21.308,18.516,27.752,27.026,19.097,15.193,10.16,32.573,11.843,29.863,21.295,23.098,27.06,8.106,22.016,23.173,23.745,17.37,10.012,1.722,19.228,21.978,15.3,11.406,14.023,22.133,11.375,23.802,15.202,15.787,18.575,21.773,18.18,-0.892,19.228,13.688,13.135,23.076,4.266,13.275,16.289,-0.005,5.621,11.384,18.567,18.965,17.879,17.413,16.854,7.216,6.989,-2.619,4.47,13.228,-1.196,2.878,-2.636,5.031,16.942,-8.837,13.325,9.933,11.894,-0.598,9.831,14.056,9.318,-5.951,17.977,10.527,-2.924,11.786,16.526,9.924,4.305,1.523,14.279,0.687,-5.005,15.964,9.643,-3.778,15.307,14.377,8.05,-1.414,5.304,0.676,10.799,10.987,5.448,7.818,9.253,6.478,14.454,-3.412,13.73,12.736,3.113,-0.418,-10.945,-12.139,6.123,11.532,1.284,5.952,8.982,9.522,3.049,-4.277,-0.13,7.275,5.433,2.195,1.093,9.308],[26.858,23.413,11.753,33.26,31.787,20.261,26.704,18.779,24.832,7.594,28.947,23.215,21.077,24.915,16.904,20.247,23.159,22.596,11.125,14.119,12.236,15.098,16.455,0.136,12.471,17.754,18.498,5.177,18.015,17.503,0.403,-3.787,5.973,4.203,12.246,8.21,11.981,16.834,-7.334,2.522,9.596,10.655,-0.686,9.166,15.808,15.46,-2.121,13.187,-3.569,-0.059,10.03,3.822,10.224,6.812,5.313,4.319,1.336,8.808,-10.859,-3.887,7.8,14.978,11.478,0.513,22.842,7.769,24.758,35.194,25.545,24.84,22.4,19.138,27.147,32.69,28.24,30.615,21.693,19.12,27.726,27.028,18.825,15.103,9.997,33.04,11.458,30.296,21.493,23.594,26.996,8.099,21.975,22.515,24.242,16.918,10.195,1.869,18.822,22.38,15.231,11.663,13.714,22.038,11.578,23.38,15.196,16.323,18.628,21.616,17.906,-0.665,19.333,14.096,13.053,22.827,4.212,13.813,16.383,-0.104,5.509,11.388,18.471,18.575,17.983,17.279,16.4,7.374,7.284,-2.811,4.447,13.571,-1.128,2.772,-2.583,4.564,16.855,-8.936,13.618,9.986,12.238,-0.716,10.251,14.017,9.441,-5.771,17.698,10.626,-2.923,11.444,16.401,10.075,4.213,1.614,14.059,0.664,-4.665,16.032,9.211,-3.972,15.082,14.39,7.9,-1.491,5.582,1.255,10.694,11.307,5.232,7.413,9.09,6.243,14.267,-3.809,13.565,13.119,3.051,-0.757,-10.23,-11.986,5.996,11.779,0.714,6.052,8.869,9.482,2.905,-4.936,-0.023,7.309,5.454,2.181,0.464,8.855],[26.819,23.527,11.709,33.333,32.075,20.009,26.971,18.669,24.723,7.525,29.033,23.144,21.169,24.969,16.846,20.26,23.2,22.713,11.139,14.059,12.191,15.399,16.565,-0.136,12.576,17.823,18.399,4.992,18.067,17.546,0.259,-3.813,6.022,4.201,12.089,8.245,11.967,16.804,-7.349,2.591,9.521,10.726,-0.721,9.095,15.746,15.597,-2.226,13.226,-3.361,-0.122,9.975,3.666,10.385,6.785,5.316,4.066,1.344,8.683,-10.565,-3.947,7.891,14.822,11.839,0.47,22.632,7.54,24.457,34.792,25.109,24.587,22.571,18.907,26.743,32.655,28.636,30.659,22.211,19.482,27.539,27.562,18.769,15.225,10.555,33.442,11.455,30.705,21.187,23.203,26.691,8.102,21.424,22.387,24.309,16.685,9.931,1.263,18.773,21.888,15.441,11.525,13.605,21.685,11.339,23.451,15.104,16.35,18.559,21.6,17.802,-0.802,19.277,14.049,13.488,23.43,3.917,13.822,16.382,0.335,5.098,11.601,18.469,19.159,17.982,17.183,16.605,7.593,7.476,-2.811,4.563,13.782,-1.479,2.532,-2.356,3.877,17.226,-8.964,13.734,10.126,11.296,-0.232,10.54,14.139,9.33,-6.116,18.127,10.96,-2.404,11.674,15.999,10.245,4.425,1.617,13.83,0.318,-4.548,16.124,9.638,-4.208,14.585,14.452,8.028,-1.588,5.773,1.188,11.002,10.929,5.231,7.2,9.332,5.881,14.045,-3.896,13.493,13.051,2.817,-0.509,-10.187,-11.972,5.766,11.75,0.949,5.585,8.732,9.27,3.16,-4.625,0.071,7.409,5.15,1.981,0.531,8.997],[26.795,23.353,11.708,33.442,32.249,19.751,27.143,18.6,24.693,7.577,29.122,23.003,21.418,25.022,16.814,20.304,23.158,22.832,11.107,14.028,12.153,15.583,16.477,-0.4,12.851,17.639,18.417,4.806,17.948,17.668,0.13,-3.798,6.13,4.199,11.905,8.325,12.108,16.892,-7.296,2.592,9.478,10.804,-0.778,9.015,15.568,15.618,-2.298,13.299,-3.067,-0.1,9.862,3.53,10.429,6.708,5.266,3.763,1.176,8.442,-10.268,-3.766,7.849,14.688,12.06,0.371,23.053,7.79,24.708,34.893,24.901,24.341,23.011,18.991,27.02,32.209,28.856,30.631,21.544,18.79,27.858,27.38,18.638,15.02,10.329,33.649,11.671,31.053,21.118,23.534,27.084,7.752,21.753,22.368,23.99,16.792,9.471,1.072,19.275,21.888,15.401,11.369,13.994,22.275,11.193,23.848,15.228,16.245,18.599,21.745,18.204,-1.73,19.459,13.665,13.223,24.031,3.542,13.99,16.382,0.094,5.236,11.193,18.117,19.346,17.998,17.213,16.724,7.67,7.61,-2.692,4.98,13.84,-1.648,2.657,-2.622,3.821,17.11,-9.026,13.937,10.09,11.415,-0.064,10.104,13.889,9.294,-6.161,17.555,11.316,-2.329,11.637,16.122,10.292,4.433,2.04,14.484,0.124,-4.251,16.12,9.631,-4.204,15.324,14.377,7.895,-1.706,5.671,0.666,10.897,11.144,5.08,7.14,9.535,6.104,14.127,-3.885,13.322,13.531,2.43,-0.348,-10.172,-11.87,5.502,11.903,1.358,5.321,8.603,9.767,3.409,-4.421,-0.151,7.578,5.43,2.066,0.998,8.836],[26.843,22.963,11.658,33.458,32.271,19.702,27.299,18.559,24.797,7.61,29.209,22.897,21.805,24.975,16.753,20.331,23.066,23.108,10.937,14.101,12.192,15.724,16.35,-0.743,13.088,17.388,18.429,4.656,17.71,17.809,0.07,-3.662,6.255,4.185,11.981,8.362,12.254,16.931,-7.235,2.58,9.48,10.82,-0.781,8.891,15.36,15.729,-2.272,13.463,-2.833,-0.112,9.903,3.513,10.38,6.602,5.324,3.582,0.98,8.214,-10.127,-3.529,7.792,14.62,12.141,0.453,23.071,8.287,24.128,35.354,25.333,24.454,23.53,19.244,26.952,32.799,28.444,30.805,21.102,18.655,27.723,26.51,18.52,15.094,9.844,33.808,11.532,30.964,20.876,23.105,27.46,7.95,22.155,22.138,23.798,17.177,9.442,1.047,19.495,21.758,15.119,11.549,14.027,22.69,11.537,23.693,15.108,16.634,18.684,21.754,17.961,-1.857,19.631,13.382,12.844,24.065,3.777,14.232,16.584,-0.555,5.207,11.235,18.249,18.783,17.741,17.085,17.077,7.676,7.808,-2.549,4.952,13.684,-1.433,2.836,-2.755,3.991,17.002,-8.899,13.967,10.234,11.45,-0.408,10.263,13.7,9.048,-5.794,17.193,11.421,-2.5,12.058,16.857,10.023,4.245,2.184,14.422,0.241,-3.824,15.605,9.488,-3.947,15.417,14.371,7.678,-1.593,5.973,0.641,10.869,11.643,5.09,6.7,9.331,6.393,14.233,-3.577,13.115,13.413,2.072,-0.771,-10.364,-11.642,5.049,12.448,1.354,5.186,8.682,10.033,3.459,-4.771,-0.626,7.248,5.173,1.967,0.377,8.821],[26.832,22.527,11.547,33.468,32.287,19.794,27.383,18.563,24.932,7.558,29.125,22.753,22.177,24.818,16.706,20.393,22.963,23.478,10.742,14.144,12.331,15.903,16.576,-1.031,13.146,17.084,18.353,4.562,17.553,17.934,-0.038,-3.497,6.284,4.095,12.145,8.494,12.353,16.842,-7.208,2.637,9.485,10.864,-0.717,8.739,15.179,15.939,-2.242,13.435,-2.769,-0.188,10.153,3.59,10.367,6.592,5.395,3.453,0.767,8.115,-10.307,-3.561,7.77,14.636,12.14,0.494,22.454,8.004,24.047,35.183,25.34,24.463,23.653,18.998,26.646,33.368,28.7,30.682,20.957,19.214,27.655,26.394,18.779,15.454,10.078,33.667,11.255,30.669,20.828,22.482,27.622,8.579,22.45,22.503,23.973,16.998,9.763,0.584,19.18,21.551,15.331,11.759,14.006,22.49,11.333,23.504,15.202,16.896,18.477,21.836,17.75,-1.463,19.728,13.787,13.002,24.232,4.274,14.761,16.281,-0.721,5.184,11.643,18.492,18.159,17.495,16.857,16.985,7.363,7.909,-2.062,4.767,14.032,-1.187,2.438,-2.444,3.929,17.186,-8.785,13.995,10.049,11.284,-0.404,10.268,13.72,8.819,-5.914,17.94,11.087,-1.751,12.985,16.732,9.641,4.253,1.783,14.441,0.296,-3.947,15.449,9.44,-4.076,14.997,14.715,7.756,-2.016,6.334,1.068,10.861,11.604,5.193,6.587,9.199,6.512,14.227,-2.922,13.11,13.254,2.108,-0.26,-10.291,-11.854,5.117,12.216,0.7,4.854,8.936,10.008,2.985,-4.287,-0.812,6.911,5.449,2.166,0.284,8.764],[26.679,22.225,11.474,33.532,32.215,19.79,27.471,18.529,24.99,7.64,29.014,22.553,22.481,24.708,16.613,20.527,22.98,23.804,10.628,14.011,12.349,16.161,16.813,-1.181,13.165,17.04,18.107,4.627,17.477,17.901,-0.172,-3.302,6.206,3.873,12.261,8.674,12.537,16.86,-7.247,2.707,9.393,10.867,-0.534,8.579,15.1,16.035,-2.376,13.313,-2.646,-0.246,10.378,3.545,10.421,6.574,5.476,3.373,0.703,8.064,-10.493,-3.67,7.696,14.681,11.987,0.626,21.621,7.671,24.29,34.86,25.781,24.22,24.002,18.674,26.409,33.211,29.11,30.42,20.677,19.359,27.552,27.234,18.633,16.123,10.169,33.203,11.382,30.878,21.278,22.838,27.503,7.892,22.797,22.829,24.202,16.772,9.924,0.59,18.995,21.664,15.406,11.734,14.182,22.84,10.956,23.614,15.051,16.351,18.297,21.689,17.346,-2.171,19.642,14.196,13.129,24.605,4.087,15.59,16.862,-0.358,5.114,11.653,18.11,18.545,17.706,17.047,16.76,7.417,7.644,-2.171,4.974,13.632,-1.36,2.309,-2.318,3.953,17.332,-8.93,13.734,10.325,11.668,0.227,9.969,13.733,9.192,-5.861,18.135,10.77,-1.766,13.395,16.276,10.079,4.458,1.702,14.536,0.667,-4.105,15.757,8.848,-4.209,15.333,14.027,7.617,-2.063,6.55,1.178,11.397,11.451,5.152,6.742,9.403,6.6,14.192,-3.029,13.338,13.587,2.398,-0.153,-10.194,-11.95,5.191,11.956,0.488,4.705,8.866,10.33,2.842,-4.727,-0.714,7.586,5.578,2.429,0.509,8.485],[26.514,22.084,11.53,33.6,31.977,19.724,27.529,18.416,25.099,7.72,28.967,22.577,22.69,24.724,16.497,20.438,23.212,24.049,10.588,13.704,12.154,16.432,16.874,-1.201,13.216,17.208,17.74,4.739,17.595,17.712,-0.239,-3.305,6.075,3.655,12.232,8.813,12.685,16.984,-7.225,2.709,9.404,10.768,-0.103,8.427,15.059,16.035,-2.479,13.184,-2.601,-0.118,10.563,3.381,10.541,6.442,5.574,3.382,0.7,7.941,-10.551,-3.867,7.749,14.735,11.786,0.961,21.635,7.44,24.133,35.263,26.187,24.202,24.521,19.049,26.617,32.626,29.342,30.383,20.533,18.836,27.203,27.889,18.431,16.908,10.041,33.095,11.273,31.38,20.949,22.253,27.613,7.71,22.854,22.345,24.028,16.473,9.556,0.403,19.288,21.631,15.286,11.762,14.002,23.033,11.397,24.011,14.906,16.711,18.203,21.938,18.066,-2.45,19.542,14.221,13.058,25.052,3.778,16.117,16.866,-0.68,4.941,11.453,17.332,19.116,17.459,16.904,16.797,7.693,7.795,-2.388,4.913,13.725,-1.896,2.428,-2.257,3.908,17.029,-8.964,13.493,10.558,11.935,0.702,9.99,13.673,9.216,-5.762,17.855,11.061,-1.622,13.898,16.305,10.096,4.602,2.169,14.208,0.704,-3.983,15.539,8.633,-4.07,15.944,14.115,7.499,-1.698,6.695,1.036,11.743,11.396,5.086,6.432,9.2,6.785,13.908,-3.23,13.365,13.326,2.277,-0.388,-10.49,-12.148,5.019,11.922,0.906,4.539,8.752,11.033,3.114,-4.938,-0.341,7.927,5.417,2.443,0.005,8.448],[26.383,21.937,11.627,33.468,31.764,19.542,27.522,18.348,25.289,7.691,28.975,22.63,22.81,24.835,16.403,20.256,23.479,24.23,10.635,13.504,11.99,16.676,16.741,-1.242,13.333,17.365,17.333,4.774,17.843,17.567,-0.467,-3.56,5.989,3.552,12.236,8.776,12.814,17.005,-7.173,2.818,9.519,10.833,0.283,8.346,15.018,16.031,-2.372,13.175,-2.633,0.159,10.754,3.183,10.666,6.296,5.689,3.427,0.601,7.675,-10.655,-4.173,7.78,14.753,11.644,1.167,21.963,7.553,24.381,35.177,25.953,24.437,24.439,19.381,26.716,32.585,29.179,30.155,20.242,18.931,27.217,27.942,18.789,16.879,10.277,33.001,11.374,31.411,20.806,22.704,27.713,8.728,22.966,22.047,24.244,16.503,9.442,0.369,19.256,22.311,15.57,11.619,13.721,23.147,11.439,24.522,15.054,17.469,18.504,21.974,18.228,-2.299,19.312,14.103,12.607,25.049,3.87,16.292,16.504,-0.991,5.007,11.131,16.923,19.4,17.503,16.171,16.709,7.742,7.645,-2.095,4.567,13.585,-1.67,2.219,-2.459,3.471,17.154,-8.742,13.423,10.393,11.439,0.957,9.595,13.237,8.624,-5.994,18.058,11.277,-1.42,14.348,16.441,9.857,4.512,2.071,13.919,1.283,-3.841,15.248,8.987,-4.102,15.671,14.779,7.639,-1.748,6.379,1.009,11.462,11.545,4.775,6.653,9.243,6.805,13.915,-3.063,13.323,12.962,2.07,0.284,-10.527,-12.163,5.119,11.722,1.538,4.504,8.958,11.201,3.204,-4.387,0.05,7.37,5.691,2.896,0.395,8.891],[26.282,21.682,11.663,33.149,31.53,19.474,27.282,18.418,25.552,7.852,29.078,22.68,22.68,25.076,16.393,20.195,23.743,24.128,10.644,13.552,11.859,16.829,16.617,-1.177,13.348,17.449,16.99,4.758,18.055,17.554,-0.583,-3.656,5.864,3.518,12.111,8.609,13.005,17.019,-7.247,3.038,9.568,10.971,0.59,8.393,14.928,15.936,-2.214,13.441,-2.669,0.506,10.819,3.045,10.774,6.307,5.91,3.562,0.577,7.65,-10.689,-4.266,7.573,14.705,11.621,1.403,21.629,7.883,24.007,34.656,25.762,24.215,24.47,19.053,26.472,32.734,28.808,30.199,20.031,19.153,27.389,27.959,18.802,16.187,10.3,33.014,11.86,31.593,20.872,22.898,27.903,8.427,22.98,22.583,24.716,16.078,9.439,0.483,18.952,22.724,15.218,11.954,13.599,22.88,11.628,24.104,14.937,17.294,18.821,21.853,17.549,-2.588,19.277,14.068,12.686,24.809,4.395,16.515,16.655,-1.16,5.225,10.965,17.26,19.399,17.342,16.061,16.419,7.684,7.365,-2.238,4.666,13.569,-1.741,2.052,-2.905,3.201,17.434,-8.856,13.08,10.399,11.203,1.116,9.536,13.25,8.092,-5.675,18.014,10.961,-1.765,14.768,15.98,9.882,4.608,2.032,14.034,1.349,-3.54,15.431,9.302,-3.946,15.329,14.511,7.792,-1.987,5.93,1.346,11.728,11.662,4.694,6.522,9.027,7.026,14.454,-3.087,13.117,13.137,2.247,0.344,-10.294,-12.255,5.168,12.142,1.713,4.532,9.145,11.05,2.703,-4.827,-0.126,7.146,5.796,3.116,-0.143,8.399],[26.235,21.375,11.739,32.827,31.306,19.552,27.087,18.408,25.604,8.139,29.174,22.762,22.353,25.238,16.328,20.237,23.856,23.69,10.654,13.661,11.838,16.973,16.467,-1.114,13.354,17.316,16.819,4.875,18.199,17.654,-0.717,-3.556,5.875,3.463,11.984,8.565,13.239,17.043,-7.315,3.238,9.618,10.922,0.786,8.583,14.887,15.709,-2.208,13.685,-2.706,0.766,10.847,2.983,10.812,6.407,6.086,3.708,0.579,7.625,-10.634,-4.179,7.295,14.691,11.682,1.541,21.053,7.96,23.967,34.508,26.303,24.521,24.062,18.614,26.098,32.398,28.425,30.47,19.693,19.039,27.304,27.89,18.628,15.691,10.399,32.912,11.416,31.793,20.912,22.488,27.738,7.95,22.456,22.717,24.973,16.082,9.301,0.398,19.115,22.283,14.956,11.866,13.403,22.945,11.779,24.541,14.952,16.848,18.854,21.527,17.62,-2.328,19.311,14.353,13.08,24.812,3.891,16.341,16.426,-1.411,4.975,10.854,17.255,19.4,16.803,16.247,16.321,7.548,7.509,-2.488,4.389,13.531,-2.072,2.041,-2.62,3.689,17.503,-9.059,13.026,10.299,11.107,1.729,10.388,13.339,8.264,-5.967,17.869,11.052,-1.691,14.897,16.19,9.999,5.109,2.391,15.056,1.044,-3.284,15.653,8.98,-3.896,15.307,14.087,7.736,-1.744,6.177,1.969,11.882,11.716,4.631,6.216,8.798,7.196,14.147,-3.218,13.074,13.277,2.749,0.298,-10.414,-12.306,5.557,11.876,1.842,4.62,9.075,11.02,2.136,-5.156,-0.483,7.086,6.222,3.058,0.119,7.928],[26.252,21.144,11.735,32.587,31.136,19.756,26.976,18.219,25.549,8.37,29.28,22.759,21.925,25.411,16.289,20.304,23.83,23.433,10.576,13.818,11.778,17.091,16.312,-1.104,13.323,17.024,16.715,4.896,18.206,17.7,-0.821,-3.402,5.983,3.493,11.792,8.761,13.41,17.004,-7.393,3.488,9.666,10.828,0.822,8.77,14.94,15.603,-2.308,13.817,-2.666,0.898,10.884,2.824,10.773,6.411,6.178,3.886,0.659,7.474,-10.623,-4.012,7.155,14.699,11.607,1.542,20.959,7.764,24.152,34.346,26.339,24.684,23.571,18.68,26.31,31.905,28.578,30.591,19.472,18.943,27.63,27.78,18.583,15.253,10.571,32.679,11.118,31.567,21.074,22.917,27.017,8.511,22.48,22.323,24.895,16.485,9.807,0.585,18.86,22.34,15.023,11.616,13.694,22.277,11.266,24.582,15.211,17.371,18.698,21.776,17.766,-2.073,19.532,14.44,12.845,24.598,3.444,15.946,16.445,-1.061,5.205,10.995,17.043,19.699,17.412,15.796,16.735,7.721,7.51,-2.145,4.501,13.55,-2.43,1.912,-2.181,3.492,17.553,-8.899,13.551,10.373,11.439,1.945,10.825,13.435,9.199,-6.236,18.05,11.028,-1.737,15.02,16.065,10.381,5.289,2.679,15.186,1.6,-3.189,15.458,9.486,-4.03,15.097,14.602,7.78,-1.85,6.139,2.024,11.506,11.553,4.424,6.127,8.606,7.429,13.823,-3.486,13.236,13.2,2.857,0.441,-10.005,-12.112,5.659,11.443,1.836,4.699,8.948,11.146,1.758,-4.802,-0.809,7.095,6.082,3.02,0.136,7.912],[26.431,21.07,11.688,32.515,30.951,19.985,26.887,18.089,25.53,8.531,29.373,22.738,21.697,25.474,16.302,20.328,23.75,23.297,10.512,13.87,11.797,17.241,16.32,-1.047,13.301,16.845,16.638,4.907,18.116,17.858,-0.858,-3.234,6.109,3.434,11.65,9.074,13.563,16.928,-7.41,3.741,9.803,10.752,0.806,9.028,15.097,15.566,-2.594,13.9,-2.614,0.87,10.9,2.649,10.727,6.406,6.239,4.004,0.686,7.442,-10.585,-3.778,7.185,14.614,11.351,1.562,20.895,7.996,23.831,34.192,25.865,24.639,23.225,18.877,26.447,31.772,28.422,30.714,19.549,18.891,27.808,28.098,19.059,15.261,10.63,32.372,11.173,31.343,21.325,22.705,26.984,8.938,22.368,21.978,25.088,16.627,9.711,0.725,18.856,22.694,15.133,11.659,13.628,22.064,11.762,24.388,15.274,17.379,18.85,21.748,17.596,-1.943,19.543,13.819,13.076,24.346,3.327,15.938,16.021,-1.617,5.271,11.215,16.937,19.432,17.238,15.722,16.905,8.012,7.573,-1.851,4.805,13.147,-2.185,1.951,-2.369,3.235,17.365,-8.822,14.188,10.963,11.667,1.548,10.199,13.664,9.043,-5.684,18.235,11.015,-1.786,14.797,15.752,10.243,5.318,2.379,15.001,1.866,-3.501,15.515,9.32,-4.356,14.882,14.522,7.9,-1.965,5.947,1.906,11.664,11.45,4.198,5.776,8.406,7.437,14.137,-4.048,13.181,12.997,2.591,0.097,-10.45,-12.065,5.576,11.661,1.878,4.819,8.957,10.883,1.712,-4.762,-0.838,6.906,5.737,3.186,0.368,7.723],[26.727,21.116,11.78,32.483,30.779,20.3,26.736,18.093,25.45,8.636,29.363,22.626,21.604,25.372,16.34,20.258,23.681,23.161,10.635,13.857,11.864,17.317,16.339,-1.034,13.279,16.731,16.595,4.932,18.027,18.113,-1.009,-3.15,6.201,3.218,11.493,9.363,13.688,16.873,-7.349,3.842,9.949,10.574,0.79,9.082,15.355,15.428,-2.922,13.896,-2.561,0.79,10.901,2.723,10.692,6.519,6.149,4.023,0.728,7.415,-10.704,-3.621,7.243,14.597,11.017,1.533,20.628,8.519,23.806,34.277,25.945,24.699,23.167,18.899,26.643,31.862,28.038,31.195,19.53,18.702,28.004,28.373,19.282,15.602,10.517,32.193,11.29,30.789,21.433,22.64,27.465,9.072,21.794,21.89,25.131,16.575,9.644,0.49,19.261,22.422,15.128,11.738,13.628,22.081,11.499,24.571,15.164,17.523,19.072,21.644,17.17,-2.271,19.774,13.932,13.381,24.049,3.843,16.638,16.221,-1.725,5.433,11.017,16.922,18.991,16.693,15.802,16.727,8.072,7.885,-1.678,4.892,13.06,-2.583,1.909,-2.506,4.033,17.231,-8.791,14.463,11.123,11.356,0.944,9.14,13.65,8.993,-5.897,17.851,10.871,-1.906,14.813,15.866,9.854,5.311,2.54,15.186,1.611,-3.68,15.406,9.321,-4.557,14.927,14.775,8.146,-2.091,6.263,2.095,11.807,11.612,4.3,6.234,8.7,7.097,14.128,-4.122,12.917,12.637,2.692,0.326,-10.205,-11.893,5.606,11.38,1.694,4.9,8.876,10.896,1.799,-4.598,-0.803,6.829,6.342,2.89,0.701,7.988],[26.95,21.142,11.948,32.65,30.678,20.549,26.568,18.207,25.42,8.742,29.552,22.462,21.545,25.29,16.476,20.138,23.603,23.013,10.819,13.885,11.773,17.394,16.379,-1.138,13.296,16.658,16.564,5.028,17.904,18.362,-1.241,-3.161,6.225,3.159,11.347,9.331,13.672,16.788,-7.304,3.858,9.973,10.221,0.608,8.963,15.565,15.212,-3.074,14.062,-2.493,0.812,10.894,2.919,10.74,6.605,5.994,4.115,0.69,7.372,-10.809,-3.607,7.263,14.507,10.674,1.457,20.76,8.397,23.968,34.166,25.628,24.429,23.226,19.059,26.973,31.749,27.804,31.064,19.62,18.63,28.461,28.42,19.071,15.686,10.556,32.341,11.603,30.786,21.979,22.67,27.218,9.362,21.62,22.564,24.951,16.093,9.995,0.434,19.479,22.44,14.933,11.725,13.471,22.092,11.444,24.535,15.02,17.938,18.77,21.763,16.927,-2.541,19.966,14.224,12.917,24.04,4.698,16.995,16.624,-1.416,5.509,10.609,17.272,19.267,17.415,15.857,17.033,8.483,7.867,-1.566,4.829,12.823,-2.749,1.837,-2.539,3.694,17.531,-8.7,14.484,11.092,10.81,1.415,9.168,13.771,9.117,-5.936,17.729,10.887,-2.225,15.2,15.721,10.153,5.573,3.016,15.276,1.271,-3.59,15.819,9.708,-4.689,14.968,15.01,8.141,-2.513,6.099,1.858,11.675,11.569,4.506,6.046,8.52,7.063,14.041,-3.593,12.924,12.329,2.767,0.327,-10.295,-12.119,5.62,10.956,1.892,4.848,8.898,11.15,2.059,-4.324,-0.514,7.142,6.231,2.767,1.094,8.176],[27.055,21.199,12.095,32.819,30.864,20.671,26.339,18.326,25.424,8.874,29.821,22.431,21.614,25.228,16.744,20.039,23.576,22.854,10.979,13.769,11.59,17.449,16.375,-1.278,13.198,16.71,16.69,5.231,17.792,18.606,-1.282,-3.266,6.198,3.223,11.208,9.248,13.642,16.824,-7.151,3.889,9.926,9.937,0.387,8.921,15.733,14.98,-3.029,14.382,-2.567,0.824,10.872,3.013,10.821,6.464,5.905,4.19,0.641,7.206,-10.902,-3.616,7.184,14.392,10.505,1.429,20.852,7.896,23.729,34.637,25.786,24.558,23.068,19.229,26.988,31.989,27.912,31.427,19.747,18.881,28.64,28.746,19.471,15.442,10.921,32.373,12.118,30.977,22.321,22.524,26.684,8.825,22.316,22.658,24.637,15.953,9.78,0.505,19.273,22.293,14.982,11.777,13.172,22.062,12.319,23.878,15.148,17.887,18.063,21.919,16.971,-2.197,20.32,14.146,12.824,24.097,4.715,17.649,16.581,-1.754,5.365,10.358,16.967,19.236,17.069,15.851,17.447,8.141,7.44,-1.85,4.699,12.782,-2.941,1.573,-2.492,3.342,17.712,-8.648,14.205,11.009,10.908,1.211,9.803,13.865,8.912,-5.717,17.715,10.497,-1.908,15.142,15.444,10.511,5.748,3.251,15.229,1.207,-2.929,16.027,9.398,-4.856,14.87,15.122,8.109,-2.561,5.824,1.889,11.652,11.442,4.487,5.992,8.598,6.735,14.008,-2.679,12.773,11.989,2.756,-0.044,-10.739,-12.152,5.87,10.823,2.001,5.02,9.126,11.497,2.047,-4.701,-0.481,7.413,5.409,2.911,1.387,7.845],[27.202,21.317,12.23,32.937,31.102,20.893,26.11,18.406,25.408,8.973,30.007,22.5,21.766,25.136,17.046,19.986,23.496,22.82,11.116,13.654,11.399,17.504,16.236,-1.268,12.984,16.702,16.852,5.391,17.572,18.882,-1.22,-3.404,6.071,3.278,11.279,9.066,13.626,16.904,-6.971,3.931,9.963,9.865,0.172,8.865,15.746,14.742,-2.929,14.52,-2.52,0.702,10.922,2.875,10.872,6.331,5.724,4.316,0.66,6.961,-11.016,-3.551,7.225,14.295,10.549,1.339,20.834,8.158,23.618,34.769,25.925,24.654,22.903,18.857,26.901,32.519,27.731,31.811,19.713,19.26,28.87,28.711,19.367,15.721,11.135,32.749,12.438,30.769,22.199,22.109,26.568,8.443,22.644,22.002,24.636,16.672,10.083,0.258,18.842,22.126,15.214,11.606,13.144,21.341,12.101,24.253,15.059,18.05,17.961,21.551,17.483,-2.267,20.599,14.076,13.091,23.626,4.136,17.946,16.181,-2.087,5.708,10.327,16.68,19.025,16.639,15.611,17.651,8.19,7.362,-2.182,4.432,12.677,-2.629,1.912,-2.426,3.783,17.432,-8.559,14.201,10.911,11.06,0.368,8.802,13.852,9.185,-5.534,17.986,10.5,-1.903,15.094,15.298,10.41,5.756,3.083,15.663,1.127,-2.859,16.268,9.467,-4.479,14.332,15.638,8.144,-2.232,6.045,1.944,11.926,11.535,4.33,6.083,8.191,6.605,13.837,-2.665,12.727,12.281,2.834,0.088,-10.494,-11.877,5.73,10.937,1.705,4.812,9.077,11.487,1.705,-5.061,-0.687,7.086,5.589,2.92,1.056,7.478],[27.337,21.254,12.381,33.1,31.08,20.984,25.987,18.487,25.388,9.071,30.027,22.472,21.752,25.004,17.408,19.913,23.589,22.758,11.21,13.542,11.26,17.619,16.122,-1.306,12.823,16.642,16.853,5.417,17.325,19.097,-1.034,-3.487,5.919,3.423,11.55,8.894,13.614,16.972,-6.854,3.888,10.106,9.8,-0.107,8.857,15.651,14.606,-2.833,14.635,-2.451,0.487,11.076,2.582,10.86,6.326,5.527,4.457,0.704,6.661,-11.008,-3.525,7.234,14.197,10.625,1.198,20.874,8.631,23.854,34.301,25.426,24.201,23.513,18.698,27.178,32.381,27.438,31.958,19.675,18.759,28.821,28.651,19.355,15.98,10.975,32.395,11.912,31.464,22.074,22.637,26.744,9.19,21.969,22.211,24.782,17.004,10.47,0.345,18.727,22.424,15.173,11.519,12.971,21.554,11.878,24.617,15.186,18.413,18.304,21.393,17.525,-2.393,20.767,14.382,13.101,23.489,4.086,17.533,16.359,-1.585,5.898,10.179,17.144,18.738,17.309,15.978,17.89,7.948,7.494,-2.066,4.409,13.363,-2.249,2.156,-2.624,4.043,17.376,-8.353,14.43,10.601,11.318,0.599,8.46,14.181,9.216,-5.242,18.236,10.412,-1.833,15.109,15.349,10.226,5.688,2.786,15.773,1.221,-2.792,16.246,9.525,-4.543,13.855,15.546,8.266,-2.172,6.171,1.671,11.481,11.53,3.974,5.663,8.577,6.7,13.744,-3.228,12.505,12.397,2.818,0.431,-10.427,-12.235,5.729,10.523,1.654,4.473,8.968,11.675,1.913,-4.556,-0.927,6.803,6.328,2.592,0.307,7.624],[27.434,21.081,12.428,33.055,31.086,20.907,25.991,18.441,25.355,9.113,30.021,22.557,21.644,24.82,17.709,19.844,23.846,22.772,11.299,13.348,11.091,17.783,16.187,-1.491,12.882,16.738,16.868,5.352,17.307,19.138,-0.586,-3.477,5.824,3.629,11.938,8.823,13.757,17.102,-6.744,3.653,10.22,9.706,-0.129,8.913,15.579,14.655,-2.838,14.654,-2.414,0.377,11.194,2.447,10.822,6.288,5.493,4.493,0.564,6.369,-10.944,-3.489,7.223,14.165,10.454,1.093,20.699,8.751,23.895,34.691,25.441,24.024,23.301,19.616,27.149,32.002,27.545,31.763,19.69,18.824,28.678,28.702,19.167,16.272,11.282,32.573,11.772,31.695,21.984,22.743,26.713,10.067,21.309,22.075,24.548,17.064,10.519,0.156,18.926,22.821,14.651,11.667,12.837,22.264,11.811,24.421,14.617,18.263,18.181,21.49,16.887,-2.381,20.745,13.843,12.957,23.522,4.182,17.164,16.432,-1.267,5.439,10.135,17.404,18.602,17.089,15.833,17.728,7.525,7.481,-2.05,4.809,13.626,-2.001,1.889,-2.735,3.89,17.967,-8.213,13.945,10.473,11.846,0.651,8.882,13.94,9.32,-5.48,17.851,10.063,-1.912,15.096,15.301,10.449,5.442,3.019,15.898,1.322,-2.414,15.608,9.527,-4.633,14.034,15.455,8.347,-2.467,6.175,1.483,11.737,11.513,4.081,5.682,8.578,6.529,13.719,-3.432,12.536,12.232,2.89,0.319,-10.014,-12.007,5.826,10.323,1.497,4.558,8.982,11.278,1.907,-4.554,-0.594,6.777,5.984,2.377,0.265,7.691],[27.456,20.974,12.422,32.842,31.243,20.751,25.969,18.511,25.266,9.153,29.943,22.763,21.356,24.667,17.855,19.918,24.079,22.953,11.241,13.232,10.936,17.935,16.26,-1.687,13.132,16.814,16.952,5.213,17.317,18.913,-0.135,-3.55,5.778,3.618,12.3,8.835,13.825,17.262,-6.748,3.418,10.275,9.622,0.158,9.073,15.417,14.676,-2.898,14.692,-2.303,0.4,11.209,2.538,10.726,6.193,5.49,4.441,0.439,6.471,-10.792,-3.51,7.17,14.18,10.237,0.959,20.69,8.973,23.63,34.384,25.815,24.267,23.142,19.258,26.996,31.936,27.536,31.848,19.418,18.842,28.79,28.728,19.281,16.277,11.061,32.826,12.541,31.141,21.891,22.224,26.636,9.545,21.764,22.441,24.067,17.365,10.273,-0.013,19.1,22.763,14.643,11.543,12.636,22.362,12.522,24.59,14.652,18.269,17.91,21.581,17.213,-2.845,20.611,13.494,12.462,23.98,4.616,16.7,16.723,-0.955,5.395,9.926,17.028,18.781,16.439,15.637,17.62,7.674,7.347,-2.337,4.449,14.131,-1.616,2.063,-2.312,3.935,18.391,-8.31,13.828,10.44,11.753,0.708,8.498,13.742,8.621,-5.323,17.574,9.965,-2.263,15.514,15.473,10.435,5.18,2.9,15.894,1.213,-2.997,15.67,9.705,-4.363,14.421,15.792,8.36,-2.747,5.961,1.624,12.021,11.809,4.141,5.348,8.216,6.611,13.834,-3.111,12.583,11.862,2.991,0.174,-10.049,-12.158,5.898,10.752,1.322,4.725,8.954,11.406,1.745,-4.559,-0.629,6.943,5.21,2.073,0.18,7.382],[27.399,20.937,12.419,32.552,31.392,20.659,25.924,18.685,25.139,9.073,29.881,22.992,21.39,24.575,17.979,19.937,24.169,23.256,11.238,12.997,10.764,17.943,16.322,-1.861,13.315,16.86,16.954,5.153,17.224,18.703,0.216,-3.653,5.716,3.568,12.714,8.869,13.89,17.445,-6.81,3.289,10.157,9.486,0.369,9.113,15.188,14.567,-2.791,14.873,-2.336,0.334,11.288,2.739,10.69,6.172,5.416,4.37,0.409,6.525,-10.725,-3.627,7.079,14.154,10.226,0.715,20.792,9.048,23.543,34.305,25.665,24.1,22.906,18.364,27.046,32.088,27.492,31.756,19.512,19.224,28.728,28.671,19.248,16.578,11.222,33.064,12.583,31.236,21.945,22.323,26.215,8.756,21.886,22.8,23.92,17.268,9.975,-0.288,19.181,22.703,14.609,11.836,12.392,22.447,12.328,24.815,14.737,18.651,17.851,21.824,17.654,-2.89,20.327,13.791,13.002,24.019,4.485,16.68,16.531,-0.294,5.59,9.538,16.81,18.803,17.155,16.188,17.355,8.074,7.074,-2.497,4.075,14.333,-1.156,2.558,-2.47,3.619,18.015,-8.287,14.271,10.747,11.601,0.964,8.396,13.78,8.797,-5.344,17.928,9.754,-1.439,15.483,15.715,10.514,5.134,2.391,16.138,1.708,-2.965,15.844,9.934,-4.59,14.016,15.8,8.284,-2.479,5.852,1.54,11.842,11.475,3.793,5.732,7.96,6.689,13.938,-3.083,12.369,11.452,3.105,-0.048,-10.044,-12.035,5.985,10.69,1.517,4.611,8.935,11.39,1.675,-4.544,-1.227,6.946,4.952,2.234,0.406,7.687],[27.346,20.939,12.481,32.522,31.543,20.65,25.876,18.75,24.949,8.856,29.729,23.125,21.542,24.483,18.193,19.972,24.094,23.594,11.296,13.009,10.566,17.919,16.213,-1.919,13.355,17.033,17.052,5.157,17.133,18.546,0.571,-3.796,5.695,3.849,12.944,8.961,13.875,17.612,-6.822,3.24,10.041,9.334,0.502,9.163,14.926,14.385,-2.656,15.1,-2.354,0.229,11.339,2.788,10.696,6.198,5.346,4.384,0.517,6.439,-10.748,-3.93,6.986,14.149,10.257,0.642,20.583,8.399,23.614,34.113,25.364,23.916,23.078,19.124,26.796,31.386,27.262,31.355,19.831,19.198,28.901,28.832,19.305,16.777,11.0,33.263,12.228,31.56,22.041,22.636,26.461,8.815,21.535,22.984,24.608,17.255,9.767,-0.327,19.246,22.902,14.884,11.994,12.013,22.455,12.15,24.655,14.243,18.363,17.746,21.72,17.767,-2.681,20.207,14.174,12.75,23.641,4.264,16.892,16.509,-0.301,5.228,9.271,16.924,18.797,17.582,15.707,17.351,8.288,6.785,-2.478,4.086,14.04,-0.916,2.214,-2.772,3.307,18.066,-8.51,14.659,10.818,12.503,0.632,8.37,13.905,9.236,-5.703,18.273,9.922,-1.198,15.383,15.453,10.427,4.788,2.352,16.299,2.043,-2.508,15.931,9.971,-4.337,13.365,15.992,8.184,-2.007,5.969,1.409,12.074,11.347,3.876,5.61,7.809,6.305,13.746,-3.25,12.504,11.862,3.363,-0.599,-9.497,-11.887,5.827,10.197,1.313,4.45,8.854,11.233,2.068,-5.051,-1.31,6.655,4.941,2.327,0.913,7.492],[27.306,20.932,12.408,32.399,31.737,20.762,25.883,18.862,24.756,8.558,29.616,23.251,21.566,24.427,18.368,20.027,24.007,23.855,11.349,12.954,10.334,17.876,16.162,-1.708,13.36,17.26,17.177,5.069,17.143,18.466,0.817,-3.921,5.563,4.157,12.97,9.051,13.888,17.777,-6.892,3.149,10.032,9.376,0.601,9.256,14.691,14.192,-2.613,15.358,-2.383,0.183,11.364,2.662,10.668,6.211,5.218,4.521,0.656,6.185,-10.803,-4.358,6.832,14.141,10.297,0.699,20.823,7.82,23.413,33.885,25.109,24.283,23.422,19.825,26.827,30.956,27.236,31.476,19.506,19.031,28.689,28.922,19.366,17.071,11.061,33.261,12.836,32.043,21.853,22.703,26.823,8.843,21.469,22.627,24.629,17.569,10.375,-0.176,19.422,22.756,14.945,11.73,11.842,22.824,12.152,24.207,14.558,18.237,17.589,21.591,17.949,-2.952,20.081,14.039,12.518,24.203,4.368,17.007,16.026,-0.058,5.184,8.816,17.231,18.617,17.165,15.885,17.09,8.02,7.049,-2.67,4.346,14.393,-0.497,2.523,-2.773,3.551,18.063,-8.654,14.134,10.777,13.106,0.588,8.032,13.577,9.145,-5.491,18.005,9.852,-1.932,15.332,15.161,10.162,4.447,2.355,16.281,2.155,-2.666,15.68,9.982,-4.166,13.634,16.417,8.269,-2.18,6.131,1.283,12.06,11.657,4.398,5.414,8.249,6.151,13.591,-3.514,12.648,11.947,2.925,-0.318,-9.609,-11.991,5.896,10.196,1.378,4.499,8.869,11.564,2.544,-5.193,-1.172,6.683,5.013,2.494,1.313,7.08],[27.359,20.954,12.263,31.98,31.85,20.921,26.01,19.077,24.618,8.361,29.695,23.247,21.519,24.546,18.379,19.955,23.91,23.932,11.386,12.931,10.111,17.766,16.112,-1.354,13.299,17.394,17.173,4.953,17.22,18.36,0.992,-3.938,5.417,4.395,12.969,9.148,13.815,17.775,-6.961,2.962,10.091,9.467,0.625,9.273,14.525,14.115,-2.581,15.482,-2.523,0.214,11.402,2.565,10.717,6.214,5.16,4.586,0.78,5.875,-10.802,-4.653,6.858,14.261,10.313,0.691,20.774,7.928,23.066,33.643,25.049,24.175,23.135,19.42,27.051,31.583,27.333,31.687,19.59,19.298,28.608,28.72,19.485,16.806,10.998,33.408,12.293,32.477,22.071,23.004,26.826,8.567,21.598,22.512,23.728,18.225,10.7,0.133,19.477,22.606,14.837,11.987,11.473,23.566,12.589,24.551,14.3,18.443,18.15,21.734,18.162,-2.498,20.086,13.949,12.909,24.869,4.521,17.206,16.16,0.149,4.879,8.705,17.468,18.575,16.978,16.475,17.021,7.642,7.213,-2.913,4.27,14.821,0.263,3.111,-2.598,3.94,18.294,-8.377,14.06,10.636,12.567,1.166,8.33,13.333,9.004,-5.582,17.925,9.944,-1.831,15.513,14.882,10.069,4.434,2.01,16.467,2.042,-2.987,15.23,9.74,-4.289,13.859,17.034,8.4,-2.414,5.986,1.029,11.888,11.528,4.302,5.087,8.42,6.28,13.792,-4.068,12.574,11.801,2.938,0.791,-9.86,-12.101,5.798,10.273,1.548,4.749,8.951,11.105,2.109,-5.297,-0.807,6.525,5.03,2.459,0.77,7.136],[27.514,21.064,12.098,31.61,31.97,21.037,26.137,19.244,24.501,8.223,30.005,23.143,21.537,24.679,18.227,19.937,23.909,24.001,11.379,12.994,9.924,17.642,16.008,-1.182,13.293,17.364,17.189,4.825,17.418,18.421,1.253,-3.877,5.25,4.673,12.863,9.161,13.863,17.747,-6.986,2.696,10.042,9.608,0.469,9.199,14.435,14.093,-2.471,15.684,-2.759,0.258,11.277,2.477,10.763,6.212,5.273,4.482,0.787,5.713,-10.705,-4.742,6.992,14.472,10.306,0.741,20.758,8.25,23.39,33.037,25.272,24.103,22.644,19.002,26.899,31.858,27.13,31.765,19.705,20.09,28.842,28.927,19.589,16.372,10.532,33.729,11.99,32.187,22.297,23.119,26.919,8.498,21.936,23.076,24.026,18.417,10.583,0.455,19.264,22.968,14.405,12.076,11.186,23.422,12.33,25.083,14.14,18.13,18.512,21.464,18.289,-1.867,19.839,13.611,12.633,24.379,4.378,17.602,16.922,0.059,4.569,8.371,17.318,18.466,17.138,15.96,16.909,7.764,6.932,-3.164,4.132,14.405,0.193,3.33,-2.525,3.852,18.495,-8.413,14.513,10.573,11.999,1.013,8.409,13.403,8.617,-5.697,17.826,10.063,-1.479,15.597,14.87,10.103,4.438,1.877,16.406,1.92,-2.968,14.948,9.863,-4.315,13.448,16.939,8.285,-2.262,5.751,1.121,11.874,11.479,4.061,4.928,7.949,6.496,14.146,-4.615,12.852,11.822,3.15,0.285,-9.511,-11.756,6.007,10.629,1.532,4.588,8.993,11.678,1.972,-5.277,-0.977,7.1,5.142,2.493,0.894,6.415],[27.626,21.165,11.949,31.301,32.047,21.116,26.186,19.42,24.565,8.019,30.333,23.112,21.602,24.785,17.957,19.976,24.091,23.97,11.259,12.924,9.763,17.523,15.974,-1.206,13.314,17.193,17.129,4.704,17.575,18.536,1.389,-3.745,5.06,4.836,12.562,9.109,14.082,17.7,-6.954,2.466,9.969,9.747,0.194,9.093,14.331,14.02,-2.426,15.819,-2.986,0.398,11.152,2.562,10.747,6.173,5.579,4.422,0.603,5.593,-10.531,-4.65,7.015,14.576,10.507,0.658,21.086,8.19,23.271,32.9,25.361,24.372,22.654,18.973,26.95,30.97,27.361,31.799,19.847,20.052,29.163,29.417,19.946,16.13,10.393,33.755,12.081,31.95,22.241,22.697,26.851,8.659,22.439,22.844,24.755,18.326,10.531,0.38,18.984,22.968,14.214,11.574,10.909,22.75,12.247,25.006,14.6,17.662,17.913,21.417,18.518,-2.533,20.146,13.639,12.508,23.87,4.196,17.926,16.386,0.289,4.634,8.155,17.757,18.743,16.952,15.982,17.008,8.094,6.503,-3.074,3.714,14.298,0.06,3.476,-2.265,3.815,18.049,-8.667,14.587,10.855,12.15,0.574,8.614,13.672,8.403,-5.606,18.018,9.829,-1.655,15.423,15.311,10.477,4.335,2.109,16.883,1.843,-2.833,15.542,10.02,-4.082,13.451,17.144,8.115,-1.719,6.363,1.42,12.145,11.715,4.336,5.585,8.133,6.667,14.284,-5.111,12.865,11.637,3.127,-0.582,-9.293,-11.867,6.171,11.007,1.558,4.386,8.991,11.64,2.593,-5.2,-0.972,7.666,5.313,2.482,1.24,6.034],[27.616,21.286,11.879,30.968,31.96,21.18,26.285,19.636,24.62,7.728,30.578,23.137,21.802,24.899,17.687,19.956,24.32,23.628,11.176,12.871,9.618,17.401,15.94,-1.305,13.157,17.062,17.242,4.713,17.617,18.63,1.395,-3.675,4.807,4.923,12.428,9.197,14.145,17.609,-6.927,2.475,9.987,9.802,-0.025,8.97,14.359,13.953,-2.312,16.155,-3.224,0.597,11.148,2.723,10.753,6.322,5.963,4.412,0.422,5.659,-10.475,-4.51,7.119,14.43,10.878,0.47,21.306,8.067,23.174,32.662,25.212,24.15,23.03,19.376,27.385,30.546,27.365,32.015,19.69,19.276,29.231,29.359,19.806,15.872,10.357,33.617,12.184,32.412,22.468,22.745,26.587,8.2,22.545,22.437,24.781,18.212,10.328,-0.058,18.769,23.072,14.198,11.768,10.741,22.881,12.299,24.537,14.364,17.844,18.343,21.646,18.057,-2.853,20.475,13.488,12.593,24.249,3.775,18.01,15.621,1.118,4.632,8.31,17.576,19.132,16.945,16.373,17.665,8.042,6.459,-2.934,3.21,14.213,0.114,3.816,-2.25,3.859,18.062,-8.658,14.862,10.783,11.986,0.418,9.039,13.411,8.501,-5.787,17.947,9.733,-1.963,15.603,15.596,10.402,4.262,2.171,16.721,1.381,-2.802,15.581,9.648,-4.233,13.664,17.185,8.253,-1.705,6.535,1.2,11.931,11.772,4.387,5.429,8.5,7.003,14.138,-4.685,12.81,12.23,3.243,-0.476,-9.441,-11.687,6.025,11.056,1.9,4.514,8.924,10.918,2.43,-5.437,-1.1,7.194,5.577,2.025,0.904,6.087],[27.633,21.421,11.871,30.78,31.882,21.152,26.46,19.788,24.423,7.45,30.717,23.225,22.071,24.988,17.565,19.689,24.306,23.199,11.098,12.844,9.555,17.285,15.859,-1.339,12.936,16.836,17.498,4.767,17.764,18.772,1.435,-3.688,4.643,5.019,12.446,9.248,14.188,17.456,-6.973,2.64,10.028,9.756,-0.047,8.891,14.389,14.038,-2.286,16.25,-3.392,0.859,11.048,2.698,10.715,6.617,6.341,4.545,0.147,5.739,-10.56,-4.339,7.206,14.222,11.179,0.4,21.297,7.768,23.329,32.204,24.886,24.076,23.498,19.773,27.04,30.038,27.507,31.983,19.946,19.727,29.231,28.916,19.575,15.999,10.126,33.556,11.716,32.372,22.321,23.009,26.54,7.84,22.321,22.961,24.711,17.163,10.4,-0.124,19.237,23.395,14.198,11.739,10.97,22.83,12.17,24.666,13.996,17.983,18.727,21.509,18.322,-2.892,20.539,13.306,12.528,24.195,3.867,18.033,15.786,1.332,4.515,8.508,17.276,18.98,16.99,16.149,17.907,7.837,6.359,-2.336,3.55,14.036,-0.235,3.995,-2.469,3.911,17.876,-8.637,15.269,10.89,11.744,0.247,9.159,13.267,8.562,-5.856,17.754,9.837,-2.107,15.529,15.706,10.118,4.381,1.97,16.754,0.342,-2.944,15.174,9.217,-4.003,13.631,17.838,8.48,-1.959,6.606,1.38,11.411,11.548,4.337,5.179,8.808,7.312,14.014,-4.301,12.743,12.444,3.205,-0.345,-9.075,-11.231,6.038,11.759,2.01,4.882,8.996,11.029,2.274,-5.182,-1.589,6.953,6.1,1.859,0.64,6.417],[27.512,21.399,11.739,30.707,31.91,20.983,26.579,19.924,24.162,7.295,30.679,23.405,22.392,25.091,17.511,19.492,24.099,22.935,11.055,12.762,9.704,17.204,15.878,-1.34,12.7,16.735,17.597,4.765,17.89,18.837,1.341,-3.539,4.74,5.071,12.368,9.276,14.287,17.154,-7.092,2.613,10.126,9.732,0.045,8.888,14.426,14.275,-2.409,16.114,-3.225,1.186,10.823,2.546,10.647,6.828,6.59,4.725,-0.18,5.789,-10.468,-4.191,7.294,13.973,11.35,0.428,20.915,7.405,23.293,32.084,24.996,24.661,23.735,20.018,27.033,30.678,27.94,32.239,20.207,20.276,29.279,29.243,19.721,16.044,10.239,33.41,11.574,31.981,22.035,23.357,27.011,8.441,22.442,23.449,24.842,16.403,10.693,0.119,19.1,22.962,14.101,11.277,11.324,22.551,11.948,24.955,13.823,18.053,18.428,20.951,18.31,-2.38,20.548,13.44,12.474,23.364,4.4,17.822,16.147,1.542,4.693,8.66,18.105,19.134,16.651,16.507,17.381,8.076,6.437,-2.096,3.519,14.238,-0.507,4.412,-2.709,4.092,17.966,-8.675,15.538,10.735,11.78,0.174,8.84,13.412,8.214,-5.898,17.536,9.527,-2.049,14.945,15.587,10.541,4.463,1.88,16.818,-0.033,-3.821,15.085,9.055,-4.122,13.674,17.359,8.498,-2.22,6.8,1.959,11.299,11.594,4.308,5.216,8.631,7.688,13.77,-4.528,12.375,12.611,3.126,-0.186,-9.074,-11.47,6.226,12.212,1.995,5.058,8.933,11.225,2.301,-5.074,-1.72,7.151,6.736,1.796,0.4,5.676],[27.511,21.151,11.542,30.714,31.892,20.867,26.665,20.059,24.162,7.445,30.58,23.691,22.718,25.275,17.422,19.459,23.907,22.835,11.123,12.582,9.974,17.184,15.914,-1.158,12.423,16.687,17.756,4.885,18.064,18.685,1.149,-3.447,4.969,5.261,12.225,9.379,14.332,16.92,-7.214,2.413,10.223,9.516,0.07,8.836,14.444,14.651,-2.73,15.979,-3.132,1.311,10.736,2.486,10.619,6.884,6.71,4.752,-0.232,5.791,-10.364,-4.348,7.366,13.897,11.505,0.445,21.065,7.672,23.097,32.332,24.982,24.373,24.054,20.244,27.093,31.1,27.551,31.938,19.65,20.201,29.213,29.279,19.426,16.295,10.143,33.504,12.143,31.781,22.188,23.944,27.398,8.333,22.824,23.272,25.231,16.498,10.757,0.162,18.307,22.58,14.453,11.183,11.712,22.214,12.233,24.654,13.97,18.011,18.152,20.843,17.915,-2.196,20.48,13.223,12.031,22.893,4.864,17.573,16.143,1.785,4.43,8.721,18.23,19.438,16.757,16.191,17.314,8.311,6.427,-2.187,3.297,14.028,-0.395,4.959,-2.333,3.831,17.967,-8.833,15.94,10.927,11.701,0.561,8.669,13.546,8.107,-5.914,16.775,9.505,-2.403,14.801,14.804,10.777,4.285,1.887,16.825,0.476,-4.132,15.325,9.292,-4.652,13.721,16.948,8.614,-2.142,6.863,1.569,11.554,11.875,4.131,5.645,8.842,8.049,13.581,-5.024,12.361,12.392,3.388,-0.095,-9.482,-11.637,6.198,11.957,2.416,5.149,9.006,10.811,1.862,-5.226,-1.533,7.112,7.067,1.845,0.181,5.068],[27.644,20.95,11.44,30.864,31.86,20.83,26.682,20.142,24.284,7.66,30.421,23.977,22.97,25.471,17.412,19.553,23.789,22.744,11.289,12.286,10.309,17.113,15.856,-0.944,12.251,16.664,17.699,5.134,18.205,18.563,1.032,-3.338,5.156,5.511,12.085,9.57,14.356,16.743,-7.292,2.202,10.259,9.147,0.111,8.759,14.501,14.888,-3.064,15.887,-3.213,1.214,10.861,2.544,10.678,6.818,6.777,4.739,-0.097,5.771,-10.494,-4.69,7.406,14.014,11.611,0.502,21.275,8.008,22.733,32.386,24.853,24.333,24.285,20.649,27.228,30.442,27.774,31.864,19.347,19.989,28.657,29.095,19.306,15.807,9.79,33.571,11.288,32.134,22.052,23.467,27.328,7.863,22.887,23.74,25.213,16.85,10.786,0.467,17.879,22.629,14.705,10.877,11.619,21.614,12.604,23.86,13.688,18.216,18.695,20.416,17.696,-2.266,20.263,12.772,11.903,23.346,4.727,17.854,16.063,1.406,4.922,8.85,18.131,19.947,17.219,16.127,17.57,8.421,6.406,-2.574,3.651,13.686,-0.519,5.591,-1.834,3.803,17.071,-9.144,16.138,10.93,11.117,0.044,8.364,13.475,7.934,-5.954,16.243,9.824,-2.391,14.651,15.454,10.498,3.846,2.106,16.554,0.856,-3.967,15.288,9.447,-4.794,14.035,17.571,8.432,-2.254,6.761,1.367,10.921,11.909,3.79,5.873,8.758,8.406,13.999,-5.178,12.215,12.625,3.411,-0.514,-9.218,-11.719,6.077,12.224,2.283,5.113,9.093,10.991,1.891,-5.613,-1.635,6.709,7.061,2.028,0.078,5.389],[27.801,20.948,11.19,30.922,31.869,20.754,26.69,20.165,24.274,7.723,30.271,24.202,23.06,25.603,17.323,19.602,23.663,22.597,11.478,11.909,10.658,17.039,15.716,-0.952,12.194,16.672,17.452,5.484,18.515,18.566,0.968,-3.272,5.331,5.715,11.69,9.674,14.396,16.388,-7.392,2.116,10.184,8.843,0.02,8.557,14.565,15.102,-3.203,15.954,-3.397,1.064,10.926,2.747,10.801,6.691,6.815,4.768,-0.035,5.794,-10.531,-5.057,7.283,14.075,11.68,0.537,20.763,7.883,23.018,32.562,24.956,25.108,24.42,20.975,27.187,30.397,28.083,31.322,19.604,20.275,28.679,29.168,19.417,15.569,10.162,33.215,11.263,32.448,21.768,23.268,27.348,8.474,22.936,24.165,24.953,17.124,11.067,0.509,18.082,22.608,14.331,10.779,11.807,21.704,12.582,23.862,13.371,17.962,19.214,19.736,18.136,-2.046,20.246,12.733,11.943,23.861,4.44,18.413,15.619,0.777,4.959,9.097,18.102,19.762,16.962,16.04,17.564,8.731,6.757,-2.532,3.907,13.571,-0.733,6.626,-1.719,4.242,17.098,-8.938,16.015,11.182,11.333,0.403,7.902,13.38,8.345,-6.388,16.602,9.448,-1.933,14.192,16.289,10.375,3.92,1.675,16.25,0.771,-3.592,15.309,9.72,-4.936,14.298,17.387,8.53,-2.044,6.951,0.974,11.361,11.725,3.911,5.487,8.696,8.541,13.806,-5.071,12.371,12.882,3.129,-0.723,-9.31,-11.716,6.185,12.447,2.351,4.99,9.078,10.66,2.295,-5.94,-1.7,7.429,6.789,2.253,0.519,6.397],[27.849,21.041,11.091,30.959,31.798,20.662,26.824,20.256,24.277,7.771,30.078,24.251,23.061,25.704,17.172,19.483,23.63,22.506,11.618,11.676,10.991,17.122,15.491,-1.026,12.259,16.67,17.47,5.71,18.835,18.547,0.879,-3.253,5.427,5.913,11.395,9.898,14.29,16.187,-7.547,2.163,10.178,8.814,-0.129,8.553,14.667,15.412,-3.085,15.821,-3.471,1.016,10.813,3.008,10.739,6.685,6.874,4.714,0.015,5.805,-10.581,-5.299,7.185,13.878,11.738,0.666,20.556,7.842,23.544,32.771,24.757,24.844,24.317,20.792,27.148,30.853,27.558,31.616,19.775,20.64,28.83,29.361,19.062,15.482,9.75,32.955,11.127,32.298,21.841,24.121,27.247,8.548,23.26,24.177,25.13,17.483,11.1,0.382,18.124,22.471,13.811,10.933,12.056,22.166,12.718,24.058,12.736,17.379,19.495,19.391,18.288,-1.63,20.418,12.915,11.473,23.744,4.687,18.606,15.242,0.641,5.603,9.528,17.884,19.807,16.715,15.901,17.526,8.388,7.142,-2.288,3.986,13.252,-0.455,7.359,-1.884,4.641,17.041,-9.134,16.167,11.192,11.151,0.702,7.428,13.684,8.036,-6.01,16.295,8.925,-2.328,14.393,15.83,10.794,3.987,1.199,16.382,0.563,-3.573,15.279,9.199,-5.014,14.634,17.212,8.59,-2.323,6.396,1.367,11.774,11.738,4.631,5.121,8.88,8.505,13.289,-5.227,12.295,13.113,3.272,-0.988,-9.332,-11.693,6.138,12.22,2.043,5.246,8.988,11.391,2.228,-6.231,-1.35,7.2,6.669,1.792,0.286,7.149],[27.689,21.2,11.03,31.037,31.68,20.528,27.009,20.389,24.39,7.753,30.01,24.281,23.122,25.687,17.089,19.29,23.644,22.508,11.689,11.549,11.246,17.277,15.26,-0.884,12.476,16.633,17.536,5.732,19.047,18.427,0.822,-3.249,5.511,6.056,11.241,9.997,14.34,16.107,-7.678,2.277,10.433,8.94,-0.135,8.58,14.882,15.739,-2.934,15.588,-3.565,1.103,10.694,3.111,10.624,6.712,7.002,4.546,-0.044,5.664,-10.742,-5.487,7.171,13.642,11.851,0.72,21.235,7.789,23.085,32.533,24.286,24.555,23.786,20.34,27.202,30.768,27.921,31.434,19.777,20.471,28.762,29.072,19.028,15.368,9.733,33.151,10.967,31.747,21.932,24.007,27.354,8.902,23.042,23.894,25.537,16.858,11.163,0.501,18.016,22.588,13.424,11.266,12.501,22.182,12.555,24.074,12.251,17.104,19.498,18.829,18.028,-1.841,20.143,13.148,11.288,23.22,5.208,18.643,15.641,0.904,5.529,9.953,18.11,20.484,16.849,16.172,17.29,8.466,6.94,-1.936,4.221,12.901,-0.617,7.705,-2.185,4.98,16.816,-9.197,16.003,11.44,10.503,-0.175,7.641,13.654,8.026,-6.003,16.28,9.43,-3.006,14.527,15.338,10.824,3.888,1.406,16.766,0.263,-3.7,15.143,8.882,-4.685,14.905,16.831,8.7,-2.924,5.841,1.837,11.384,11.344,4.976,5.289,8.96,8.22,13.579,-5.53,11.85,13.194,3.193,-0.758,-9.09,-11.471,6.101,11.847,2.289,5.353,8.879,11.866,2.601,-6.06,-1.217,6.679,6.343,1.372,0.434,7.071],[27.412,21.418,10.854,31.025,31.467,20.532,27.254,20.417,24.398,7.817,29.97,24.311,23.067,25.518,17.044,19.052,23.565,22.536,11.707,11.536,11.404,17.406,15.153,-0.651,12.631,16.584,17.565,5.7,19.335,18.163,0.815,-3.236,5.54,6.079,11.209,10.031,14.509,15.984,-7.62,2.425,10.698,9.08,-0.204,8.607,15.064,15.93,-2.846,15.434,-3.79,1.19,10.668,3.155,10.376,6.602,7.03,4.477,-0.118,5.711,-10.796,-5.619,7.162,13.684,11.906,0.65,21.463,7.848,23.135,32.351,24.742,25.308,24.074,20.133,27.351,30.721,28.245,30.779,19.698,19.804,28.894,28.987,18.995,15.501,10.063,32.946,11.255,31.55,21.625,23.655,27.432,8.707,22.902,24.195,25.667,16.192,10.93,0.471,17.905,22.405,13.576,11.233,13.032,22.207,12.298,23.872,11.751,17.696,19.056,18.422,17.452,-1.963,19.762,13.508,11.668,23.132,4.69,18.665,15.721,1.098,5.248,10.106,18.616,20.778,16.964,15.96,17.082,8.902,6.934,-1.748,4.096,13.064,-0.83,7.747,-2.366,5.033,16.893,-9.243,16.141,11.685,10.534,-0.172,8.172,13.812,8.362,-6.389,16.762,9.609,-2.998,14.356,15.534,11.059,3.981,1.55,16.285,0.034,-3.631,15.122,9.291,-4.725,15.322,16.467,8.825,-2.763,6.21,1.642,10.75,11.108,4.363,5.845,8.969,7.772,13.827,-5.979,11.882,13.51,2.785,0.138,-9.66,-11.645,5.863,12.248,2.322,5.21,9.16,11.425,2.833,-6.038,-1.391,6.974,6.739,1.436,0.259,5.831],[27.289,21.54,10.787,30.912,31.262,20.607,27.527,20.239,24.427,8.029,29.884,24.324,23.034,25.406,17.095,18.916,23.293,22.568,11.677,11.679,11.586,17.537,15.433,-0.542,12.561,16.439,17.557,5.601,19.501,17.884,0.768,-3.174,5.46,5.968,11.307,10.005,14.606,16.021,-7.557,2.586,10.657,9.114,-0.391,8.768,15.133,15.969,-2.832,15.148,-4.073,0.95,10.603,3.07,10.067,6.518,6.98,4.564,-0.147,5.912,-10.816,-5.706,7.162,14.009,11.992,0.603,21.286,7.828,23.362,32.495,25.544,25.221,24.509,20.347,26.922,30.812,28.395,31.315,19.937,19.988,28.523,28.976,19.132,15.731,9.92,32.638,10.751,31.388,21.705,24.21,27.831,8.161,23.016,24.776,25.284,16.529,10.693,0.574,17.565,22.157,13.771,11.157,13.211,22.169,12.568,23.603,11.26,18.293,19.54,18.585,17.745,-1.517,19.737,13.305,11.26,23.621,4.322,18.966,15.64,0.967,5.702,10.596,18.432,20.885,17.169,16.13,16.907,9.084,6.913,-2.034,3.803,13.059,-0.579,7.543,-2.044,4.735,16.492,-9.263,16.272,11.971,10.605,0.412,8.382,14.149,8.402,-6.099,15.901,9.484,-2.661,14.421,15.791,11.34,4.239,1.693,15.543,0.206,-3.596,15.474,9.838,-4.684,15.457,16.724,8.756,-2.001,6.194,1.557,10.859,11.284,4.621,6.341,8.792,7.381,14.038,-6.043,12.176,13.453,2.699,1.176,-9.836,-11.781,5.37,12.279,2.015,4.978,8.827,11.162,2.733,-6.611,-1.499,7.421,7.169,1.433,-0.392,4.969],[27.263,21.527,10.684,30.837,31.14,20.629,27.782,20.083,24.593,8.072,29.864,24.53,23.303,25.33,17.24,18.945,23.063,22.667,11.701,11.77,11.773,17.699,15.91,-0.41,12.385,16.387,17.553,5.53,19.506,17.724,0.703,-3.054,5.372,5.782,11.315,9.942,14.727,15.949,-7.571,2.731,10.486,9.114,-0.505,8.942,15.184,15.875,-2.771,14.812,-4.185,0.555,10.535,3.014,9.858,6.472,6.931,4.539,-0.188,6.083,-10.765,-5.83,7.203,14.375,12.067,0.647,21.11,7.82,23.716,32.408,25.812,24.274,24.304,20.624,26.511,30.607,28.808,31.083,20.337,19.84,28.244,28.633,19.116,15.587,10.324,32.602,11.25,31.489,21.918,24.004,28.116,9.179,22.695,24.513,24.701,17.105,10.738,1.069,17.783,21.725,14.178,10.973,13.537,21.844,12.995,23.328,10.992,18.439,20.141,18.642,17.912,-1.548,19.429,13.129,11.21,23.69,4.315,18.999,15.624,0.234,5.666,11.207,18.267,20.934,16.831,16.44,16.566,8.806,6.622,-2.371,3.791,13.091,-0.26,7.322,-1.561,4.406,16.696,-8.853,16.453,11.694,10.63,0.186,8.056,13.911,8.555,-5.903,16.136,9.7,-2.696,13.79,16.144,10.377,4.498,2.022,15.381,0.381,-3.913,15.978,9.984,-4.483,15.484,16.529,8.765,-1.773,5.897,1.385,11.6,10.842,4.739,5.988,9.002,7.091,13.976,-5.78,12.707,13.278,2.901,2.1,-9.674,-11.752,5.623,11.964,2.004,4.989,8.147,10.614,2.122,-6.846,-1.734,6.942,6.778,1.395,-0.431,5.578],[27.259,21.513,10.68,30.832,31.096,20.523,28.068,20.053,24.969,8.193,29.749,24.741,23.609,25.043,17.409,19.027,22.833,22.733,11.846,11.75,11.901,17.81,16.277,-0.295,12.348,16.477,17.623,5.363,19.563,17.686,0.592,-2.997,5.258,5.567,11.316,9.826,14.77,15.975,-7.508,2.903,10.355,9.126,-0.649,9.015,15.281,15.792,-2.599,14.572,-4.271,0.314,10.513,2.998,9.705,6.274,6.775,4.482,-0.265,6.288,-10.66,-5.977,7.184,14.684,12.011,0.842,20.84,7.978,23.489,32.334,25.697,24.071,24.861,20.352,26.199,30.273,28.691,30.612,20.033,19.436,28.152,28.247,19.068,15.518,9.915,32.182,10.497,31.611,21.67,24.195,27.784,9.237,22.965,24.119,24.717,17.186,10.938,1.084,17.936,21.825,14.569,10.875,13.694,22.192,13.048,23.209,11.136,18.64,19.821,18.552,17.501,-1.545,18.942,13.175,11.505,23.537,4.965,19.122,16.052,-0.151,5.553,11.453,18.398,20.769,16.959,16.449,16.276,8.403,6.686,-2.369,3.863,12.97,-0.468,7.222,-1.275,4.17,16.643,-8.82,16.569,11.347,10.551,-0.147,8.309,13.894,8.168,-5.877,16.738,9.639,-2.838,13.576,16.21,9.817,4.575,2.057,15.52,0.415,-3.836,15.903,9.662,-4.352,15.34,15.516,8.733,-2.066,6.299,0.957,11.316,10.525,4.503,5.558,9.134,7.247,13.813,-5.631,13.386,13.246,2.814,2.456,-9.559,-11.696,5.854,12.328,1.616,4.699,7.935,9.972,2.334,-6.375,-1.817,6.661,6.416,1.239,0.032,6.984],[27.125,21.468,10.584,30.896,31.114,20.451,28.195,19.934,25.142,8.351,29.546,24.755,23.832,24.648,17.48,19.137,22.771,22.799,12.001,11.713,11.976,17.957,16.463,-0.414,12.387,16.65,17.782,5.334,19.573,17.672,0.439,-2.971,5.285,5.267,11.065,9.611,14.651,16.167,-7.387,2.94,10.271,9.166,-0.79,8.788,15.39,15.773,-2.5,14.326,-4.334,0.194,10.423,3.129,9.636,5.971,6.549,4.403,-0.296,6.545,-10.637,-5.953,7.114,14.805,11.92,1.061,21.142,8.017,23.75,32.509,25.809,24.344,25.465,19.676,26.01,30.12,28.582,30.732,19.82,20.438,27.91,28.158,18.72,15.899,9.968,32.046,11.02,31.472,21.188,24.676,28.034,8.605,23.262,24.848,25.129,17.066,11.329,0.937,17.853,21.922,14.836,11.175,13.822,22.839,12.923,22.597,11.769,18.418,19.609,18.687,17.76,-1.173,19.195,13.273,11.231,23.405,4.786,19.355,16.581,-0.073,4.831,11.169,18.476,21.053,17.095,16.437,16.602,8.167,6.811,-2.015,3.849,12.952,-0.813,6.981,-1.67,4.316,16.43,-9.126,16.45,11.255,10.543,0.064,8.494,14.379,8.618,-5.997,15.935,9.84,-3.24,14.05,16.065,10.337,4.679,1.996,15.947,0.36,-3.274,15.333,10.114,-4.006,15.031,15.109,8.596,-1.801,6.108,1.033,10.711,10.68,4.714,6.193,8.938,7.421,14.086,-6.078,13.471,13.395,2.725,2.745,-9.855,-11.356,5.799,12.136,1.518,4.396,7.827,9.913,2.46,-6.222,-1.805,6.905,6.862,1.357,0.353,7.355],[26.89,21.604,10.549,31.046,31.125,20.472,28.195,19.815,25.151,8.393,29.358,24.855,24.017,24.391,17.525,19.47,22.784,22.919,12.207,11.731,12.06,18.236,16.638,-0.477,12.417,16.915,17.862,5.275,19.571,17.791,0.268,-2.965,5.381,4.964,10.811,9.315,14.519,16.05,-7.32,2.847,10.35,9.26,-0.804,8.577,15.424,15.644,-2.356,14.135,-4.244,0.161,10.275,3.252,9.599,5.688,6.36,4.404,-0.266,6.929,-10.684,-5.872,6.997,14.884,11.742,1.284,21.135,8.169,23.868,32.715,25.712,23.583,25.777,19.778,25.68,30.585,29.167,30.321,20.25,20.303,27.637,27.956,18.743,15.935,10.346,32.458,10.612,31.357,21.2,24.192,28.33,8.946,23.57,24.899,25.116,17.142,10.957,0.768,18.223,21.808,15.055,10.973,13.641,22.449,13.171,22.311,12.338,18.099,19.895,19.03,17.99,-1.586,19.569,13.381,11.141,23.449,4.136,19.543,16.592,0.088,5.257,10.871,18.594,21.208,17.455,16.598,17.22,7.842,6.98,-1.827,4.085,12.656,-0.959,6.568,-2.253,4.329,16.982,-8.968,16.371,10.859,10.291,-0.039,8.42,14.259,8.505,-6.032,16.148,10.326,-3.536,14.483,16.028,10.954,4.627,2.247,15.614,0.018,-3.294,15.599,9.98,-4.048,14.566,15.09,8.511,-1.746,5.416,1.288,10.629,10.682,4.719,6.472,8.681,7.703,14.453,-6.481,13.071,13.459,2.66,2.749,-10.387,-11.685,5.227,12.076,1.494,3.889,8.149,10.218,3.487,-6.537,-1.804,6.898,6.589,2.046,0.097,6.708],[26.539,21.757,10.653,31.238,31.195,20.547,28.12,19.794,25.296,8.417,29.105,24.895,24.241,24.233,17.521,19.771,22.809,23.01,12.191,11.861,12.084,18.46,16.722,-0.517,12.413,17.143,17.914,5.277,19.66,18.148,0.085,-2.969,5.565,4.784,10.696,8.988,14.561,15.867,-7.315,2.823,10.543,9.451,-0.728,8.44,15.395,15.451,-2.353,14.037,-4.116,0.149,10.067,3.291,9.565,5.423,6.214,4.376,-0.35,7.293,-10.898,-5.847,6.885,14.892,11.669,1.544,21.436,8.222,23.806,32.615,25.649,23.625,25.518,19.96,25.66,31.206,29.413,29.65,20.176,19.844,27.185,27.738,19.083,15.997,9.68,32.396,9.863,31.244,21.86,24.237,28.316,8.903,23.459,24.613,24.718,16.99,10.855,0.761,18.183,21.576,15.079,10.862,13.775,22.095,13.1,22.878,12.64,18.209,20.017,19.306,18.0,-1.693,19.97,13.309,11.414,23.511,3.929,19.785,16.607,0.178,5.611,10.91,18.32,21.164,17.61,16.438,16.991,7.543,6.92,-1.604,4.189,12.452,-0.895,5.998,-2.105,3.448,16.421,-8.721,16.094,10.462,9.742,0.071,8.903,13.996,7.895,-5.708,16.57,10.555,-3.219,14.86,15.816,10.829,4.631,2.341,15.101,-0.48,-3.275,15.961,9.864,-4.016,14.312,15.195,8.685,-1.574,5.24,1.052,11.284,10.347,4.701,6.287,8.745,7.769,14.896,-6.479,13.111,13.221,2.547,2.455,-10.035,-12.093,4.96,11.779,1.343,3.925,8.337,10.384,4.197,-6.192,-1.434,6.534,5.8,2.407,-0.79,6.642],[26.253,21.731,10.755,31.412,31.15,20.779,28.014,19.888,25.509,8.322,28.722,24.811,24.336,24.24,17.45,19.688,22.839,23.077,11.928,12.154,12.086,18.59,16.664,-0.386,12.474,17.286,17.899,5.31,19.774,18.406,-0.024,-2.804,5.773,4.53,10.591,8.77,14.559,15.731,-7.239,2.926,10.71,9.775,-0.604,8.336,15.359,15.246,-2.5,14.043,-3.94,0.14,9.914,3.306,9.539,5.17,5.988,4.324,-0.523,7.477,-11.126,-5.805,6.872,14.759,11.601,1.772,21.35,8.286,24.017,33.121,26.131,23.987,25.148,19.537,25.805,30.784,29.084,29.177,20.107,20.06,26.898,27.48,19.138,15.805,9.825,32.437,10.209,31.158,21.95,24.345,28.182,8.653,23.504,24.994,23.921,16.901,10.929,1.023,18.119,21.405,15.081,11.065,14.024,22.549,13.026,23.789,12.507,18.907,20.327,19.728,18.264,-1.278,19.883,12.997,11.412,23.469,4.491,19.71,16.359,-0.12,6.005,11.317,18.732,21.394,17.677,16.628,16.844,7.198,7.39,-1.771,4.381,12.229,-1.3,5.336,-2.001,3.138,16.446,-8.854,16.12,10.099,9.712,0.585,9.466,14.12,8.341,-5.708,16.273,10.343,-2.756,15.341,15.78,10.708,4.733,1.903,15.341,-0.647,-3.406,15.818,9.923,-3.96,14.439,15.256,8.954,-1.484,5.323,0.812,11.094,10.042,4.749,6.515,8.593,7.503,14.435,-5.952,13.118,12.599,2.353,2.369,-10.427,-11.631,4.84,12.069,1.474,3.898,7.869,10.031,3.796,-5.895,-1.705,6.069,5.721,2.245,-0.956,7.303],[26.198,21.744,10.87,31.683,30.933,20.915,27.891,20.009,25.611,8.192,28.303,24.633,24.24,24.312,17.35,19.525,22.94,23.146,11.705,12.437,12.105,18.748,16.496,-0.085,12.497,17.303,17.921,5.493,19.994,18.347,-0.054,-2.707,6.094,4.308,10.564,8.653,14.543,15.604,-7.157,2.925,10.818,10.175,-0.35,8.394,15.279,15.127,-2.636,14.225,-3.8,0.203,9.795,3.415,9.409,5.09,5.698,4.316,-0.735,7.504,-11.174,-5.734,6.77,14.495,11.451,1.87,21.042,7.57,24.443,33.259,26.719,23.415,25.403,20.093,25.214,30.6,28.978,29.114,20.341,20.434,26.428,27.625,19.133,15.825,10.346,32.275,10.83,31.193,21.619,24.501,28.132,8.674,23.923,25.024,23.657,16.895,10.594,0.964,18.252,21.848,14.872,10.762,13.826,22.43,12.79,23.547,12.576,19.11,20.438,19.351,18.421,-1.417,19.988,13.279,11.734,23.923,4.914,19.116,16.32,-0.693,5.786,11.406,18.614,21.605,17.795,16.849,17.27,7.024,7.542,-1.676,4.584,12.404,-1.314,4.967,-1.67,3.422,16.882,-8.75,15.881,10.033,10.042,0.879,9.513,14.203,8.424,-5.898,15.906,10.664,-2.739,15.029,16.007,10.58,4.647,2.075,15.719,-0.419,-3.402,15.656,9.59,-4.253,14.388,15.125,9.155,-2.126,4.735,1.534,10.472,10.08,4.816,6.843,8.448,6.831,13.525,-5.45,13.044,12.877,2.554,2.916,-10.976,-11.846,4.958,12.079,1.231,3.515,7.647,9.786,2.777,-6.083,-1.931,6.316,6.137,2.349,-0.556,8.068],[26.249,21.89,11.115,31.936,30.608,20.872,27.845,20.264,25.711,8.015,27.993,24.479,24.213,24.206,17.328,19.352,23.12,23.201,11.536,12.586,12.083,18.898,16.242,-0.003,12.335,17.237,17.995,5.81,20.164,18.265,-0.132,-2.699,6.432,4.235,10.689,8.55,14.4,15.505,-7.118,2.977,10.71,10.522,-0.08,8.535,15.17,15.248,-2.892,14.47,-3.704,0.381,9.632,3.478,9.252,5.111,5.459,4.329,-0.853,7.578,-11.226,-5.661,6.649,14.303,11.381,1.903,21.132,7.752,24.412,33.345,27.082,23.075,25.722,20.077,24.937,30.852,29.34,28.877,20.463,20.479,26.085,27.313,18.982,15.653,10.015,31.848,10.767,31.159,21.526,24.339,27.918,8.716,23.975,24.054,24.644,16.732,10.053,1.403,17.776,22.386,14.644,11.25,13.939,22.343,12.559,23.055,12.959,18.424,20.045,18.848,18.031,-0.736,20.126,13.423,12.2,23.774,4.892,18.563,16.73,-1.025,5.801,11.227,18.669,21.805,17.3,16.503,17.354,7.06,7.894,-1.262,5.156,12.572,-0.999,4.854,-1.799,3.111,16.508,-8.554,16.125,9.904,10.058,0.631,9.517,13.923,8.802,-5.508,15.877,11.252,-2.343,14.39,15.736,10.569,4.755,2.012,16.037,0.228,-3.336,15.751,9.611,-4.538,14.224,14.984,9.003,-1.892,4.841,1.364,10.594,10.094,4.588,6.515,8.448,6.365,13.736,-5.608,12.632,12.968,2.533,3.164,-10.396,-11.625,5.531,11.58,1.529,3.496,7.578,9.535,2.455,-6.047,-1.956,6.759,5.673,2.548,-0.8,7.813],[26.365,22.101,11.322,32.075,30.443,20.759,27.959,20.474,25.842,7.896,27.916,24.224,24.213,24.203,17.297,19.16,23.317,23.208,11.457,12.625,12.062,18.833,16.066,0.004,12.265,17.059,17.951,6.142,20.053,18.219,-0.389,-2.658,6.824,4.224,10.774,8.353,14.23,15.427,-6.993,3.028,10.524,10.565,0.051,8.742,15.057,15.454,-3.059,14.631,-3.67,0.439,9.516,3.492,9.1,5.217,5.389,4.2,-0.865,7.596,-11.217,-5.638,6.688,14.46,11.372,1.801,21.752,7.81,24.593,33.623,26.725,22.841,25.747,20.161,25.114,31.367,29.638,28.766,20.387,20.343,26.112,26.912,19.044,15.678,9.928,31.578,10.885,31.075,21.726,23.891,27.913,8.735,23.54,24.272,25.006,16.752,10.048,1.596,17.935,22.061,14.201,10.942,13.927,21.997,12.491,23.677,13.39,18.747,20.165,18.607,17.951,-0.527,19.909,13.381,11.857,23.298,4.777,19.023,16.508,-1.077,6.309,11.085,18.88,21.769,17.86,16.719,17.047,6.967,7.925,-1.565,5.264,12.258,-1.288,4.577,-1.976,2.947,15.947,-8.559,15.996,9.944,9.846,0.984,9.769,13.682,8.847,-5.38,16.527,11.094,-2.197,14.15,15.662,10.847,4.862,2.095,16.324,0.905,-3.154,15.487,9.832,-4.654,14.344,15.02,8.753,-2.077,5.09,1.052,10.634,10.142,4.714,6.265,8.329,6.647,14.1,-6.054,12.857,12.807,3.048,2.9,-9.862,-11.642,6.028,11.21,1.711,3.525,7.491,9.296,2.394,-5.671,-2.223,6.256,4.22,2.726,-0.855,7.438],[26.496,22.348,11.439,32.13,30.459,20.62,28.199,20.564,26.074,7.857,27.864,23.875,24.026,24.342,17.228,19.083,23.553,23.056,11.455,12.675,11.926,18.823,15.796,-0.009,12.326,17.017,18.027,6.427,19.932,18.173,-0.726,-2.711,7.112,4.191,10.61,8.229,14.115,15.441,-6.832,3.008,10.489,10.479,0.247,8.927,14.878,15.593,-3.164,14.694,-3.607,0.346,9.431,3.519,9.09,5.176,5.287,4.117,-0.967,7.554,-11.082,-5.541,6.767,14.785,11.271,1.658,22.214,7.634,24.565,33.926,25.764,23.058,25.65,20.82,25.152,31.681,29.392,29.012,20.739,20.058,26.202,27.197,19.01,15.553,10.365,31.833,11.143,31.037,21.877,24.211,28.15,8.752,23.556,24.545,24.249,17.04,10.165,1.166,18.105,21.972,14.007,10.825,13.683,22.185,12.372,24.323,13.882,18.648,20.431,18.558,17.818,-0.838,19.67,12.88,11.956,23.522,4.713,19.774,15.945,-1.109,6.773,11.204,18.595,21.531,17.088,16.769,16.826,6.785,8.496,-1.729,5.578,12.242,-1.695,4.022,-1.627,3.112,16.088,-8.498,15.83,9.58,9.818,1.136,9.791,13.69,8.546,-5.647,16.518,10.98,-2.629,13.853,16.141,10.863,4.612,2.412,16.332,1.267,-3.06,15.286,9.719,-4.87,14.634,15.24,8.769,-2.552,4.641,1.488,10.015,10.193,4.866,6.504,8.349,6.729,13.94,-6.067,13.42,12.716,3.093,3.102,-10.191,-12.0,5.629,11.583,1.539,3.606,7.328,9.91,2.672,-6.24,-1.939,5.758,4.1,2.294,-0.359,7.597],[26.503,22.579,11.601,32.111,30.668,20.511,28.337,20.607,26.143,7.903,27.789,23.836,23.831,24.451,17.137,19.128,23.791,22.998,11.386,12.854,11.721,18.785,15.508,-0.081,12.421,16.838,18.282,6.604,19.875,18.135,-0.921,-2.825,7.4,4.115,10.466,8.333,14.109,15.479,-6.836,2.973,10.658,10.571,0.482,8.867,14.635,15.695,-3.318,14.746,-3.568,0.345,9.368,3.481,9.281,4.847,5.135,4.059,-0.967,7.512,-11.01,-5.457,6.809,14.705,11.177,1.636,22.26,7.704,24.869,33.769,25.664,23.604,25.181,20.86,25.373,31.253,29.069,29.132,20.926,20.038,26.088,27.395,18.889,15.488,10.449,31.872,11.08,31.433,21.703,23.734,28.863,8.337,24.054,23.429,23.84,17.164,10.261,0.994,17.6,22.446,13.711,11.509,13.644,21.955,12.466,24.243,14.458,18.563,20.307,18.633,17.619,-1.154,19.658,12.597,12.386,23.478,4.776,19.961,15.921,-1.528,6.839,10.839,18.608,21.115,17.647,17.1,17.051,6.628,8.538,-1.675,5.843,12.172,-1.401,3.914,-1.69,3.057,16.862,-8.508,15.774,9.291,9.464,1.318,9.412,13.922,8.692,-5.372,15.854,10.541,-2.772,13.814,16.243,10.63,4.618,1.788,16.062,1.518,-3.133,15.581,9.871,-4.866,14.919,15.666,8.904,-2.624,4.373,1.302,10.153,9.908,4.963,6.616,8.379,6.695,13.998,-5.777,13.19,12.948,2.442,3.179,-10.157,-11.761,5.418,11.357,1.498,3.616,7.665,9.663,3.324,-6.351,-2.002,6.234,4.554,1.653,-0.777,8.193],[26.498,22.824,11.781,32.022,30.983,20.415,28.302,20.627,26.202,7.907,27.698,23.741,23.627,24.468,17.09,19.123,23.941,22.939,11.369,13.217,11.419,18.635,15.335,-0.301,12.571,16.605,18.615,6.657,19.693,18.209,-0.974,-2.826,7.567,4.03,10.339,8.488,14.208,15.485,-6.867,2.733,10.845,10.705,0.68,8.698,14.517,15.701,-3.53,14.847,-3.616,0.377,9.324,3.474,9.396,4.577,5.121,4.092,-0.957,7.527,-11.006,-5.457,6.864,14.388,11.132,1.632,22.597,7.479,24.863,33.714,26.184,23.564,25.078,20.78,25.345,30.957,29.621,28.762,21.032,20.384,25.97,27.577,18.709,15.206,10.488,32.08,10.845,31.928,21.283,23.673,28.934,8.381,24.091,23.569,24.322,17.352,10.25,1.07,17.643,22.405,13.449,11.002,13.213,21.718,12.486,24.307,14.604,18.643,20.161,18.718,17.922,-1.088,19.815,13.286,12.659,23.775,4.91,19.679,15.982,-1.914,7.29,10.673,19.112,20.981,17.53,16.851,16.987,6.736,9.179,-1.715,6.159,12.172,-1.305,4.005,-2.129,2.739,16.567,-8.422,16.125,9.561,9.682,1.821,9.403,13.603,8.655,-5.345,15.91,10.92,-2.286,13.968,16.172,10.832,4.379,1.563,16.033,2.043,-3.448,15.261,9.73,-5.13,14.831,16.134,9.221,-2.268,4.128,1.398,10.517,10.273,4.679,6.278,8.57,6.338,13.663,-5.299,13.036,12.815,2.443,2.544,-9.965,-11.273,4.806,11.08,1.312,3.664,7.695,9.384,3.669,-5.69,-1.835,6.716,5.205,1.965,-1.821,8.067],[26.585,23.081,11.862,31.936,31.322,20.22,28.168,20.66,26.353,7.774,27.573,23.629,23.493,24.422,17.132,19.045,23.908,22.945,11.347,13.583,11.073,18.424,15.453,-0.5,12.594,16.57,18.681,6.757,19.468,18.304,-1.03,-2.867,7.786,3.869,10.294,8.573,14.432,15.384,-6.837,2.434,10.861,10.891,1.04,8.493,14.46,15.568,-3.704,15.11,-3.715,0.434,9.362,3.537,9.381,4.599,5.284,4.158,-1.119,7.624,-11.02,-5.447,6.931,14.186,11.192,1.582,23.463,7.813,24.914,33.532,26.553,23.07,25.176,20.547,25.422,31.295,29.433,28.359,21.266,20.403,25.816,27.801,18.784,15.325,10.817,32.548,10.868,31.841,21.184,24.229,28.434,8.69,23.461,23.985,24.664,17.356,10.268,0.775,18.081,22.281,13.659,10.984,12.96,21.624,12.664,24.882,14.709,18.448,19.977,18.629,17.613,-1.279,19.955,13.706,13.15,23.579,5.185,19.621,15.486,-1.517,7.257,10.375,19.117,20.807,16.9,17.433,17.026,7.118,9.071,-1.589,6.154,12.127,-1.542,4.26,-1.823,2.455,16.262,-8.498,16.191,10.184,9.807,1.637,9.925,13.181,8.607,-5.696,16.169,10.783,-2.269,14.08,16.31,10.72,4.078,1.5,16.35,1.912,-3.782,15.027,9.509,-5.39,14.801,16.267,9.318,-2.83,4.192,1.139,10.415,10.552,4.826,6.393,8.593,6.104,13.542,-5.093,12.75,12.811,2.467,2.157,-9.85,-11.389,5.289,10.777,1.549,3.166,7.614,9.554,3.516,-5.977,-1.63,6.431,5.089,2.698,-1.326,7.589],[26.787,23.318,11.892,31.912,31.696,20.068,27.982,20.547,26.512,7.672,27.421,23.818,23.464,24.225,17.254,18.987,23.785,22.881,11.245,13.943,10.812,18.256,15.603,-0.672,12.486,16.487,18.547,6.918,19.277,18.369,-1.0,-2.885,7.825,3.674,10.448,8.737,14.598,15.273,-6.94,2.302,10.684,10.937,1.157,8.313,14.431,15.481,-3.734,15.51,-3.945,0.46,9.396,3.599,9.271,4.793,5.394,4.286,-1.217,7.65,-10.9,-5.55,6.973,14.342,11.167,1.556,23.47,7.914,25.577,33.587,27.412,22.62,24.745,20.553,25.403,31.561,29.128,28.286,21.582,20.397,25.505,27.743,18.631,15.598,10.592,32.33,11.398,31.3,21.329,23.597,27.997,8.624,23.334,23.34,24.779,17.201,10.216,0.951,17.843,22.419,13.794,11.773,12.605,21.786,12.671,24.29,14.61,18.413,19.599,18.403,17.079,-1.413,19.946,13.426,13.455,23.329,5.676,19.511,15.965,-1.03,7.007,10.104,18.746,20.519,17.195,17.844,17.151,7.502,8.809,-1.88,6.339,12.014,-1.777,4.656,-1.737,2.694,16.166,-8.529,16.312,10.293,9.587,2.099,10.117,13.123,8.479,-5.398,16.115,10.792,-2.549,14.624,15.748,10.668,3.935,1.353,16.908,2.108,-4.034,15.464,9.236,-5.402,14.682,16.105,9.241,-3.238,4.463,1.118,10.676,10.319,5.075,6.517,8.546,6.545,13.528,-5.55,12.965,12.919,2.676,2.713,-9.732,-12.071,5.759,11.269,1.881,3.155,7.561,9.245,3.808,-6.15,-2.023,6.437,5.239,1.974,-0.681,7.597],[26.96,23.476,11.926,32.034,31.982,19.985,27.804,20.301,26.893,7.57,27.414,23.894,23.293,23.99,17.329,18.983,23.653,22.779,11.082,14.202,10.697,18.441,15.461,-0.783,12.524,16.319,18.477,6.934,19.042,18.368,-0.891,-2.926,7.792,3.661,10.619,8.929,14.801,15.189,-6.983,2.237,10.566,10.904,1.044,8.27,14.497,15.397,-3.531,15.769,-4.229,0.455,9.413,3.682,9.045,4.958,5.548,4.35,-1.146,7.588,-10.833,-5.762,7.146,14.656,11.138,1.52,22.686,8.143,25.455,33.869,27.461,22.236,24.681,20.844,25.192,31.304,29.142,28.032,21.971,20.457,25.601,27.51,18.6,15.703,10.474,32.281,11.596,30.988,21.455,23.137,27.718,8.112,23.73,23.818,24.215,17.238,10.186,0.96,17.555,22.26,13.752,11.371,12.44,21.759,12.49,23.744,14.941,18.084,19.483,18.439,16.629,-1.367,19.951,13.214,13.219,23.722,5.828,18.936,16.047,-1.203,7.661,9.887,18.706,20.525,17.308,17.064,17.223,7.272,8.995,-1.776,6.171,12.213,-1.707,4.71,-1.766,2.904,16.334,-8.47,15.986,10.261,9.602,2.145,9.995,13.223,8.061,-5.481,15.883,11.163,-3.13,15.391,15.438,11.07,3.961,1.223,16.799,2.239,-4.04,15.865,9.05,-5.31,14.399,16.715,9.19,-2.984,4.614,1.255,10.465,10.333,4.816,6.106,8.894,7.017,13.649,-6.309,13.66,12.845,3.469,3.189,-9.75,-11.554,6.113,10.884,1.773,3.515,7.42,9.168,4.202,-5.98,-2.661,6.572,5.178,1.446,-0.939,7.788],[26.934,23.406,11.973,32.175,32.199,19.952,27.634,20.207,27.077,7.387,27.56,23.866,23.239,23.778,17.343,19.04,23.555,22.762,10.898,14.356,10.715,18.673,15.277,-0.886,12.553,16.101,18.48,6.916,18.811,18.39,-0.925,-2.905,7.898,3.863,10.694,9.052,14.963,15.187,-6.912,2.175,10.731,11.009,0.916,8.341,14.707,15.183,-3.373,15.823,-4.36,0.418,9.308,3.757,8.926,4.986,5.821,4.539,-1.145,7.403,-10.767,-5.973,7.374,14.923,11.124,1.42,22.54,8.1,25.788,33.976,27.384,22.042,24.682,20.913,25.407,31.559,29.014,28.085,22.082,20.007,25.724,27.589,18.432,15.628,10.54,33.234,11.437,30.849,21.385,23.706,27.834,8.156,23.392,23.741,23.856,17.212,10.352,0.563,17.956,21.956,13.582,10.98,12.609,21.6,11.826,23.852,15.502,18.877,19.452,18.726,16.101,-1.576,20.068,12.959,13.052,23.645,5.212,19.222,15.609,-1.614,7.072,9.993,18.325,20.152,17.089,16.858,16.953,7.335,9.199,-1.715,6.186,12.407,-1.56,4.64,-1.734,2.413,16.497,-8.57,16.156,9.812,9.641,1.569,9.816,13.234,8.092,-5.792,16.076,10.655,-3.063,15.86,15.675,10.763,4.02,1.309,16.769,2.046,-4.359,15.376,9.205,-5.11,14.149,17.254,9.05,-2.67,4.577,1.185,10.734,10.059,5.155,6.151,8.803,7.128,14.175,-6.727,13.425,12.938,3.008,3.065,-9.588,-10.97,5.981,10.438,1.689,3.878,7.2,9.281,3.608,-6.131,-3.041,6.736,4.649,1.697,-0.888,7.949],[26.81,23.219,11.98,32.348,32.429,19.902,27.522,20.262,27.075,7.193,27.617,23.742,23.216,23.59,17.327,19.136,23.517,22.727,10.803,14.411,10.821,19.025,15.228,-0.936,12.443,15.843,18.474,6.707,18.557,18.51,-0.996,-2.821,8.07,4.112,10.771,9.105,15.02,15.459,-6.979,2.263,10.895,11.141,0.748,8.519,14.854,15.126,-3.361,15.706,-4.167,0.402,9.237,3.762,8.97,4.874,5.999,4.602,-1.325,7.167,-10.602,-6.145,7.47,14.9,11.106,1.325,22.745,7.835,25.918,34.167,26.996,22.001,24.768,21.086,25.306,31.856,28.654,28.738,21.67,19.858,25.835,27.707,18.315,15.58,10.714,33.314,11.453,30.735,21.212,23.886,28.121,8.391,22.705,23.675,23.994,17.251,10.051,0.91,17.761,22.1,13.416,11.099,12.619,21.759,11.763,23.987,15.909,18.467,19.26,18.967,15.646,-2.01,20.141,13.158,13.537,23.445,4.917,20.067,15.465,-1.789,7.267,10.118,18.236,19.919,16.757,17.423,17.271,7.382,9.526,-1.926,6.652,12.531,-1.998,4.549,-1.933,2.665,16.535,-8.422,16.278,9.893,9.72,1.564,9.757,13.756,8.76,-5.45,15.72,10.538,-2.732,15.505,15.158,10.785,3.825,1.066,16.936,1.845,-4.904,14.671,9.01,-5.077,13.988,16.692,9.237,-2.463,4.459,1.146,10.87,9.716,5.138,6.096,8.992,7.343,14.502,-6.721,13.487,12.629,2.78,2.692,-9.59,-11.302,5.7,10.939,1.306,3.107,7.279,9.26,3.193,-6.779,-2.243,7.185,4.582,2.177,-0.777,7.926],[26.613,22.96,12.028,32.643,32.483,19.923,27.448,20.399,27.002,7.055,27.596,23.71,23.06,23.59,17.348,19.149,23.468,22.769,10.816,14.439,10.933,19.427,15.267,-0.891,12.336,15.621,18.396,6.56,18.339,18.621,-1.048,-2.876,8.298,4.338,10.984,9.056,14.852,15.673,-7.1,2.372,10.854,11.198,0.594,8.74,14.875,15.006,-3.315,15.605,-4.076,0.335,9.298,3.688,9.038,4.545,6.157,4.526,-1.378,6.944,-10.498,-6.365,7.629,14.918,11.125,1.287,22.946,7.991,25.467,34.19,27.013,21.696,24.757,21.451,25.117,32.041,28.661,29.001,21.282,20.357,26.223,27.582,18.116,15.552,10.707,33.069,11.486,30.814,20.881,22.785,28.0,8.152,22.457,23.409,23.993,17.247,9.984,0.945,17.494,22.234,13.577,10.803,12.767,21.943,12.024,24.175,15.92,18.273,18.964,18.985,15.415,-1.705,20.351,13.293,13.927,23.046,4.742,19.991,15.666,-2.017,7.353,10.206,18.412,19.939,16.436,17.969,17.731,7.538,9.698,-1.661,6.771,12.575,-1.938,4.413,-1.668,3.342,16.993,-8.174,16.472,10.398,10.15,1.726,9.937,13.709,8.841,-5.435,15.852,11.31,-3.003,15.325,15.463,11.097,3.973,1.081,16.712,1.719,-4.772,14.896,9.278,-5.049,14.475,16.793,9.056,-2.793,4.246,1.22,9.725,9.846,4.98,6.215,8.73,7.021,14.213,-6.86,13.414,12.653,2.934,2.532,-9.684,-11.099,5.946,11.318,1.5,2.956,7.217,9.217,3.463,-7.26,-1.954,6.807,5.849,2.141,-1.707,7.4],[26.357,22.792,12.109,32.955,32.325,19.938,27.27,20.617,26.901,7.027,27.76,23.59,22.774,23.689,17.336,19.082,23.459,22.806,10.935,14.432,11.059,19.511,15.521,-0.914,12.252,15.574,18.289,6.475,18.267,18.747,-1.166,-2.902,8.437,4.604,11.326,8.939,14.709,15.773,-7.23,2.464,10.788,11.287,0.498,8.81,14.841,14.902,-3.225,15.642,-4.279,0.301,9.152,3.671,9.091,4.256,6.297,4.579,-1.41,6.914,-10.536,-6.625,7.633,15.039,11.237,1.274,22.459,8.173,25.259,34.356,27.135,22.122,24.451,21.773,25.272,32.16,28.676,28.781,21.134,20.651,26.158,27.359,18.347,15.706,10.796,33.192,11.774,31.183,21.172,23.103,27.453,7.336,22.458,23.533,23.885,17.465,10.24,0.666,17.751,22.06,13.738,10.855,12.785,22.254,12.125,23.75,15.729,18.756,18.654,18.562,15.581,-1.617,20.595,13.112,13.631,23.24,4.67,20.458,15.953,-2.243,6.787,9.932,18.367,19.799,16.345,17.117,17.628,7.858,9.549,-1.682,6.771,12.857,-1.405,4.553,-1.756,3.214,17.054,-8.465,16.374,10.441,10.37,1.583,10.131,13.334,9.083,-5.508,16.41,11.672,-2.941,14.702,15.287,10.945,4.251,1.47,16.495,1.556,-4.114,15.262,9.515,-5.054,14.84,17.085,8.957,-2.989,3.691,1.084,9.764,10.174,4.996,6.132,8.996,6.928,14.139,-7.333,13.831,12.498,3.052,2.586,-8.997,-11.432,5.986,10.958,1.371,2.873,7.327,9.649,4.233,-7.358,-2.215,7.105,6.474,1.843,-1.849,7.424],[26.256,22.683,12.147,33.205,32.11,19.993,26.953,20.919,26.822,6.995,27.886,23.52,22.519,23.773,17.376,18.941,23.428,22.951,11.108,14.347,11.016,19.561,15.819,-0.989,12.292,15.748,17.947,6.318,18.223,18.86,-1.252,-3.028,8.407,4.754,11.598,8.835,14.527,16.006,-7.261,2.492,10.715,11.461,0.436,8.753,14.759,14.868,-3.169,15.809,-4.398,0.207,8.987,3.781,9.198,4.204,6.46,4.639,-1.422,7.024,-10.643,-6.828,7.616,15.329,11.344,1.319,21.772,8.074,25.488,34.958,27.039,22.253,24.099,21.825,24.882,32.8,28.354,28.419,21.257,20.452,26.234,27.067,18.754,15.82,10.535,33.363,12.148,32.007,21.538,24.067,27.387,7.153,22.202,23.468,23.455,17.233,10.036,0.667,17.605,22.074,14.014,11.121,12.704,21.724,12.349,22.942,15.5,19.3,18.736,18.485,15.921,-1.883,20.427,13.219,13.42,23.414,4.609,20.288,15.846,-2.156,6.754,9.957,17.982,19.682,16.638,16.663,17.63,7.861,9.264,-2.008,6.898,13.288,-1.473,5.062,-1.892,2.882,16.98,-8.88,16.293,10.358,10.627,1.206,9.992,13.22,9.208,-5.85,15.993,11.213,-3.098,14.371,15.138,10.656,4.1,1.738,16.951,1.694,-4.174,15.379,9.131,-4.902,14.811,17.002,9.057,-2.435,3.989,1.205,10.429,10.426,5.09,6.071,8.972,7.384,14.411,-8.29,13.962,12.536,3.025,2.717,-9.332,-11.25,6.149,10.858,0.998,2.567,7.507,9.301,4.868,-7.027,-2.799,7.321,5.612,1.478,-1.281,8.069],[26.077,22.515,12.049,33.527,32.028,20.073,26.681,21.145,26.793,7.0,27.862,23.666,22.252,23.642,17.433,18.801,23.304,22.978,11.184,14.303,10.924,19.562,15.95,-0.946,12.45,15.986,17.532,6.127,18.212,18.881,-1.25,-3.278,8.234,4.821,11.83,8.752,14.369,16.232,-7.346,2.404,10.701,11.494,0.416,8.67,14.689,14.841,-3.103,16.004,-4.403,0.176,8.971,3.966,9.282,4.451,6.516,4.61,-1.449,7.187,-10.757,-7.076,7.736,15.597,11.443,1.342,21.51,7.843,25.803,35.456,26.678,22.114,23.792,22.33,24.612,32.982,27.729,28.688,21.625,20.236,26.036,27.433,18.607,16.119,10.321,32.917,12.035,32.752,21.143,23.445,27.274,7.267,21.944,22.843,23.776,16.701,10.078,0.703,17.258,21.955,14.156,11.011,12.625,21.91,12.38,23.057,15.909,19.432,19.089,18.69,15.874,-1.958,20.506,13.419,13.426,23.764,4.932,20.23,16.184,-1.515,6.498,10.077,17.447,19.477,16.907,17.19,17.767,7.28,9.319,-2.078,7.181,13.368,-1.972,5.398,-2.09,3.008,17.316,-8.851,15.614,10.085,11.049,0.894,10.323,13.49,8.782,-5.926,16.245,11.117,-3.127,15.291,15.391,10.897,4.183,1.424,17.351,1.546,-4.767,15.313,9.579,-4.855,14.716,16.734,8.877,-2.28,4.423,1.306,10.213,10.43,5.131,6.232,8.578,7.997,14.811,-8.835,14.221,12.651,3.137,2.949,-9.675,-11.363,6.166,10.906,1.251,2.77,7.597,8.655,4.693,-6.949,-2.949,7.142,5.467,1.575,-1.128,8.248],[25.823,22.332,11.865,33.695,32.01,20.027,26.394,21.276,26.837,7.012,27.755,23.639,21.951,23.583,17.427,18.667,23.101,22.987,11.2,14.5,10.906,19.493,16.003,-0.856,12.564,16.229,17.203,5.954,18.222,18.876,-1.15,-3.375,8.005,4.965,12.024,8.682,14.398,16.496,-7.528,2.208,10.787,11.445,0.433,8.687,14.635,14.886,-3.041,16.185,-4.419,0.317,8.959,4.001,9.258,4.748,6.483,4.576,-1.524,7.345,-10.785,-7.313,7.88,15.794,11.439,1.432,21.685,7.704,25.597,35.313,26.44,22.086,23.577,22.873,24.673,33.467,27.866,28.761,21.76,20.149,25.986,27.376,18.344,16.771,10.034,33.068,11.985,33.093,21.02,22.999,26.931,8.131,21.368,23.464,24.173,16.599,10.201,0.941,17.599,22.065,14.336,11.068,12.782,22.269,12.003,23.847,16.102,18.994,18.923,18.545,15.52,-1.775,20.607,13.398,13.447,23.463,5.443,20.426,16.114,-1.051,6.044,10.002,16.853,19.703,16.445,17.216,17.984,6.782,9.295,-2.157,6.571,13.467,-1.352,5.085,-2.362,3.315,17.417,-8.748,15.53,9.535,11.274,0.979,10.367,13.518,8.693,-5.821,16.854,11.526,-3.389,15.156,15.305,11.138,3.972,0.917,17.359,1.447,-4.321,14.874,9.681,-4.894,14.402,17.331,9.045,-2.523,4.766,1.046,9.676,10.713,5.582,6.499,9.175,8.14,15.15,-9.018,14.427,12.811,2.986,3.022,-9.651,-11.468,5.902,11.101,1.031,3.056,7.73,8.795,4.121,-7.013,-3.26,7.525,5.896,1.822,-1.229,8.137],[25.598,22.236,11.717,33.646,32.092,19.961,26.294,21.473,26.863,7.012,27.712,23.559,21.672,23.769,17.436,18.562,23.085,23.028,11.082,14.729,11.07,19.414,16.004,-0.783,12.483,16.235,16.956,5.756,18.276,18.972,-0.812,-3.44,7.624,5.01,12.189,8.573,14.442,16.738,-7.658,1.984,10.987,11.426,0.539,8.781,14.541,14.935,-3.026,16.334,-4.402,0.336,8.892,3.85,9.299,4.899,6.45,4.468,-1.701,7.456,-10.622,-7.347,8.224,15.865,11.43,1.637,21.713,7.786,25.284,35.502,26.525,22.035,23.255,22.534,24.295,33.365,27.676,28.702,21.106,20.429,25.966,26.744,18.505,17.021,10.059,33.379,11.624,33.042,21.289,23.326,26.688,8.296,21.285,23.398,23.76,16.727,10.419,0.985,17.635,21.59,14.409,11.353,12.738,21.953,12.294,23.896,16.302,18.447,18.451,18.072,15.424,-0.606,20.684,13.434,13.811,22.969,5.878,19.984,15.782,-1.199,6.45,9.964,16.743,19.838,16.585,16.291,17.877,6.998,9.033,-2.336,6.014,13.781,-1.424,5.692,-2.124,4.043,17.725,-8.953,15.953,9.1,11.289,1.493,9.963,13.33,8.918,-5.952,16.222,11.506,-3.355,15.015,14.849,10.999,3.631,0.992,17.53,1.374,-3.63,14.765,9.39,-4.6,15.085,17.555,9.174,-2.613,4.87,0.974,9.515,10.477,5.489,6.67,9.335,7.827,15.012,-8.7,14.564,12.926,2.745,3.279,-9.555,-11.238,5.718,11.077,1.156,3.018,7.734,9.159,4.062,-7.504,-3.09,7.333,6.194,1.886,-1.599,8.39],[25.347,22.066,11.699,33.623,32.236,20.046,26.299,21.669,26.84,6.93,27.829,23.542,21.448,23.819,17.517,18.381,23.121,22.849,10.996,14.814,11.307,19.344,15.963,-0.684,12.393,16.113,16.703,5.791,18.418,19.15,-0.533,-3.527,7.218,5.211,12.35,8.54,14.537,16.774,-7.783,1.92,11.066,11.335,0.62,8.889,14.36,14.999,-3.044,16.437,-4.294,0.181,8.814,3.87,9.434,4.923,6.426,4.233,-1.796,7.507,-10.393,-7.351,8.417,15.728,11.415,1.821,21.637,7.894,25.166,35.429,26.857,22.472,22.797,22.524,23.852,32.927,27.339,28.156,20.405,20.589,26.101,26.491,18.91,16.473,9.927,33.619,11.479,32.689,21.516,23.121,26.703,8.218,22.18,22.768,23.84,16.356,10.426,1.121,17.523,21.686,14.266,11.296,12.725,22.135,12.357,23.388,16.257,18.662,18.877,18.117,15.54,-0.683,20.647,13.183,13.593,23.653,5.533,19.602,15.959,-1.046,6.355,9.955,17.535,19.684,16.642,15.824,17.766,6.689,8.352,-2.464,6.009,13.999,-0.885,6.256,-2.015,3.718,18.038,-9.263,16.044,9.073,11.585,1.765,9.962,13.249,9.3,-6.393,16.435,11.566,-3.024,15.142,14.966,10.85,3.798,1.149,17.769,1.791,-4.351,15.114,9.437,-4.796,15.677,17.111,9.397,-2.496,4.48,1.401,9.738,10.243,5.138,6.579,9.341,7.885,14.828,-8.608,14.371,13.053,2.554,3.397,-9.092,-10.734,5.506,11.127,0.999,3.368,7.788,9.045,4.268,-7.512,-3.428,7.654,5.786,1.951,-1.916,8.693],[25.09,21.744,11.69,33.586,32.354,20.222,26.351,21.872,26.764,6.942,27.829,23.431,21.39,23.884,17.417,18.24,23.183,22.736,11.071,14.756,11.473,19.37,15.851,-0.667,12.343,15.956,16.657,5.979,18.663,19.316,-0.294,-3.537,6.987,5.4,12.491,8.503,14.611,16.845,-7.962,2.178,10.998,11.196,0.775,8.944,14.236,15.172,-3.005,16.44,-4.315,0.044,8.822,4.047,9.589,4.867,6.33,3.849,-1.935,7.497,-10.138,-7.374,8.332,15.39,11.472,1.96,21.462,7.574,24.92,35.436,26.869,22.53,22.725,23.129,23.725,33.034,27.275,28.49,20.092,20.554,26.274,26.277,18.812,16.255,9.949,33.86,11.755,32.172,21.364,23.133,26.872,7.656,22.025,22.949,24.082,16.439,10.117,1.205,17.493,22.132,14.061,10.906,12.934,21.649,12.096,23.641,16.03,19.557,19.516,18.233,15.652,-1.351,20.95,13.05,13.126,23.466,5.095,19.593,16.248,-0.394,5.996,10.003,17.732,19.557,16.512,15.744,17.871,6.815,7.926,-2.428,5.574,14.044,-0.681,6.236,-2.556,3.619,17.969,-9.364,15.945,9.746,11.743,1.499,10.34,13.003,9.295,-6.468,16.853,11.616,-2.945,15.064,15.553,11.199,4.06,1.057,17.698,1.996,-4.402,15.24,9.277,-4.816,15.285,17.335,9.345,-2.669,4.598,1.252,10.017,10.826,5.261,6.551,9.662,7.664,14.763,-9.009,14.092,12.703,2.827,3.092,-9.067,-10.397,5.692,11.309,0.6,3.156,7.833,8.867,4.587,-7.373,-3.753,8.077,5.56,1.865,-1.489,8.319],[24.777,21.404,11.701,33.538,32.435,20.284,26.426,22.151,26.5,6.987,27.801,23.311,21.472,23.939,17.247,18.206,23.276,22.646,11.097,14.645,11.58,19.609,15.737,-0.784,12.229,15.753,16.753,6.146,18.89,19.536,0.006,-3.633,6.853,5.605,12.633,8.489,14.573,17.023,-7.999,2.42,10.974,11.066,0.981,8.795,14.283,15.443,-3.061,16.409,-4.378,-0.088,8.863,4.287,9.782,4.877,6.18,3.668,-2.067,7.38,-10.055,-7.445,8.265,15.043,11.662,2.051,21.049,7.607,24.731,35.285,26.427,22.281,22.952,23.267,23.697,32.918,27.704,29.249,19.836,20.5,26.257,26.006,18.939,16.391,9.894,33.825,12.032,31.906,21.208,23.261,26.679,7.33,21.012,23.023,23.641,16.41,9.999,0.965,17.724,22.187,13.876,11.044,13.185,21.975,12.043,24.275,16.059,19.395,19.273,17.673,15.338,-1.246,20.949,13.45,13.155,23.031,5.073,20.084,15.656,-0.188,6.468,10.134,17.276,19.894,16.722,15.987,18.307,7.333,8.205,-2.12,5.273,14.169,-0.813,5.821,-2.752,3.755,17.934,-9.567,15.805,10.078,11.369,0.865,10.322,12.902,9.226,-6.489,16.431,11.423,-3.17,15.36,15.723,11.307,4.06,1.42,17.615,2.241,-3.591,14.654,9.48,-4.954,15.131,17.658,9.135,-2.446,4.888,0.724,10.186,11.161,5.921,6.775,9.259,7.417,14.301,-8.794,13.622,12.718,2.435,3.566,-8.909,-10.548,5.308,11.072,0.504,2.955,8.268,9.033,4.462,-7.56,-3.86,7.354,5.739,2.245,-1.178,8.087],[24.518,21.118,11.686,33.436,32.539,20.291,26.528,22.335,26.171,7.085,27.996,23.226,21.491,23.663,16.992,18.132,23.378,22.566,10.982,14.59,11.481,19.969,15.577,-0.823,12.181,15.56,16.892,6.291,18.977,19.681,0.216,-3.714,6.766,5.758,12.638,8.54,14.539,17.078,-8.061,2.381,10.971,10.949,1.145,8.59,14.396,15.808,-3.104,16.482,-4.331,-0.205,8.958,4.443,10.034,5.116,5.99,3.518,-2.092,7.25,-10.14,-7.503,8.144,14.704,11.81,2.311,20.419,7.901,24.569,35.278,26.017,22.462,23.208,23.376,22.942,32.571,28.032,29.125,19.643,20.795,26.386,25.864,18.911,16.43,10.045,34.004,12.111,31.777,21.432,23.141,27.107,7.67,21.088,22.799,23.941,16.438,10.298,0.953,17.607,22.122,13.905,10.824,13.264,22.213,12.302,24.394,16.167,19.401,19.057,17.833,15.206,-1.287,21.375,13.069,13.432,23.232,5.62,20.759,15.444,-0.313,6.523,10.729,17.405,20.42,16.915,16.067,18.347,7.311,8.263,-2.406,5.596,14.333,-0.095,5.676,-2.563,4.065,18.144,-9.321,15.757,9.681,11.76,0.301,9.541,13.44,9.032,-6.437,16.962,11.048,-3.332,15.348,15.452,10.988,4.197,1.584,17.714,2.38,-3.988,14.142,9.606,-4.714,15.386,17.268,9.065,-2.533,4.563,1.103,10.031,11.213,6.121,7.037,9.028,7.363,13.827,-8.738,13.28,12.858,1.755,3.804,-8.796,-10.924,4.722,11.467,0.323,3.578,8.495,9.438,4.372,-8.012,-3.846,7.007,5.313,2.724,-1.417,8.196],[24.247,21.021,11.639,33.293,32.667,20.298,26.759,22.509,25.98,7.258,28.159,23.182,21.601,23.546,16.854,18.074,23.317,22.651,10.958,14.667,11.294,20.39,15.414,-0.716,12.02,15.448,16.895,6.33,18.943,19.739,0.335,-3.739,6.559,5.856,12.623,8.664,14.576,17.173,-8.107,2.268,11.005,10.624,1.164,8.449,14.478,16.154,-3.132,16.531,-4.368,-0.237,9.133,4.337,10.266,5.301,5.846,3.314,-2.086,7.242,-10.322,-7.397,7.989,14.441,11.851,2.604,20.655,8.036,24.176,35.078,25.906,22.447,23.451,23.806,22.675,32.959,27.756,29.117,19.42,21.078,26.561,25.453,18.884,15.623,10.198,34.181,11.816,31.779,21.48,22.783,27.425,8.055,21.556,22.589,24.146,16.125,10.54,0.96,17.07,22.045,13.814,10.76,13.072,22.032,11.962,24.151,16.335,19.625,19.222,18.024,15.18,-1.352,21.373,12.113,13.342,22.644,6.141,20.631,15.698,-0.129,6.318,10.526,17.854,20.265,16.798,15.717,18.508,7.308,8.377,-2.907,5.471,14.354,-0.52,5.71,-2.497,4.376,18.507,-9.277,15.804,9.69,12.16,0.19,9.599,13.242,8.824,-6.417,16.851,11.347,-2.859,15.082,15.868,11.265,4.135,1.326,17.989,2.682,-4.783,14.855,8.924,-4.661,15.624,17.324,9.258,-2.629,5.11,1.041,10.028,11.351,5.619,6.928,9.317,7.453,14.097,-8.966,12.884,13.372,1.784,4.24,-9.284,-11.154,4.501,11.828,0.627,3.484,8.951,9.455,4.775,-7.682,-3.8,6.942,5.401,2.918,-1.802,8.34],[24.104,21.213,11.605,33.188,32.827,20.194,26.84,22.589,25.809,7.416,28.277,23.074,21.894,23.766,16.71,17.992,23.138,22.717,10.907,14.783,11.181,20.507,15.368,-0.553,11.742,15.386,16.69,6.26,18.816,19.719,0.255,-3.811,6.25,5.865,12.715,8.942,14.653,17.301,-7.936,2.238,11.256,10.366,1.108,8.249,14.477,16.452,-3.244,16.542,-4.482,-0.247,9.248,3.934,10.491,5.273,5.924,3.177,-2.292,7.416,-10.579,-7.175,7.99,14.339,11.98,2.81,21.123,8.201,23.978,35.065,26.357,22.796,23.374,24.133,22.619,33.008,28.32,29.318,19.446,21.255,26.632,25.04,19.122,15.165,10.276,33.943,11.166,31.349,21.614,22.873,27.001,8.023,22.178,22.757,23.765,16.171,10.303,1.052,17.468,21.842,13.685,10.816,12.747,22.156,11.983,24.165,16.186,19.911,19.319,17.724,15.208,-1.408,21.403,11.478,13.505,23.196,5.96,20.81,15.456,0.594,6.288,9.706,17.483,19.771,16.613,15.808,18.603,7.201,7.791,-2.643,4.838,14.485,-0.38,5.994,-2.507,4.943,18.339,-9.551,15.754,10.054,12.359,0.393,9.63,13.135,8.634,-6.541,16.583,11.073,-3.01,15.322,15.831,11.638,4.018,1.364,17.688,2.807,-4.411,15.215,8.327,-4.887,15.726,17.649,9.369,-2.455,5.544,0.783,10.199,11.393,5.498,6.376,9.271,7.665,14.149,-8.674,12.729,13.722,2.063,4.123,-9.314,-10.835,4.896,11.679,0.17,3.325,9.216,9.554,4.722,-7.501,-3.61,7.162,5.745,2.866,-1.33,7.993],[23.996,21.506,11.569,33.09,32.834,20.122,26.887,22.636,25.796,7.492,28.521,22.935,22.179,24.136,16.545,17.955,23.036,22.87,10.753,14.776,11.034,20.473,15.392,-0.43,11.626,15.363,16.421,6.255,18.596,19.719,0.258,-3.806,5.786,5.805,12.822,9.195,14.725,17.385,-7.739,2.275,11.468,10.148,0.967,7.876,14.469,16.756,-3.378,16.58,-4.57,-0.322,9.286,3.513,10.629,5.216,6.258,3.173,-2.437,7.501,-10.615,-6.968,8.128,14.282,12.175,2.805,20.838,8.283,23.989,34.906,26.073,22.609,23.802,23.769,22.861,32.559,28.723,29.411,19.939,21.17,26.708,25.114,18.812,14.998,9.819,34.168,11.519,31.282,21.221,23.132,26.885,8.593,22.643,22.923,24.143,16.18,10.039,1.177,17.718,21.643,13.607,10.239,12.513,22.408,12.24,23.997,16.249,20.002,18.938,17.413,15.172,-1.319,21.218,11.23,13.818,23.201,5.778,20.373,15.424,0.932,5.989,9.716,16.96,19.93,16.077,15.652,18.361,7.664,7.15,-2.482,4.341,14.635,-0.216,6.46,-2.814,5.539,17.966,-9.329,15.756,10.442,12.794,0.708,9.578,13.182,8.18,-6.222,17.079,10.16,-3.542,15.751,15.719,11.611,3.973,1.336,17.999,2.86,-3.655,15.093,8.369,-5.101,16.013,17.358,9.537,-2.468,5.363,0.868,10.064,11.174,5.087,6.504,9.251,7.743,13.712,-8.165,12.863,14.009,2.143,4.414,-8.886,-11.011,4.975,11.451,-0.096,3.322,8.952,9.837,3.708,-7.763,-3.6,7.548,5.954,2.845,-1.19,8.355],[23.961,21.591,11.548,32.95,32.785,20.104,26.946,22.567,25.885,7.502,28.788,22.83,22.372,24.19,16.338,17.975,23.101,22.953,10.528,14.622,10.808,20.266,15.446,-0.444,11.589,15.27,16.239,6.274,18.448,19.608,0.377,-3.825,5.368,5.91,12.918,9.41,14.797,17.416,-7.595,2.382,11.352,9.903,0.936,7.454,14.395,17.061,-3.522,16.696,-4.621,-0.443,9.261,3.223,10.573,5.39,6.726,3.216,-2.399,7.613,-10.444,-6.845,8.2,14.189,12.316,2.607,20.497,8.659,24.21,34.802,25.535,23.204,24.222,23.8,22.843,32.418,28.324,29.641,20.445,21.039,26.991,25.194,18.606,15.378,9.96,34.116,12.195,31.526,20.468,23.017,27.246,8.548,22.392,22.798,24.11,15.77,10.137,1.156,17.413,22.146,13.818,10.162,12.641,22.582,11.944,23.627,16.174,20.173,18.819,17.588,15.028,-0.607,21.003,11.478,13.897,23.292,5.774,19.931,15.794,0.683,6.101,9.996,16.605,19.93,16.166,15.616,18.333,8.198,7.137,-2.552,4.428,14.471,0.062,6.38,-2.86,5.272,18.265,-8.857,16.029,11.156,12.716,0.075,9.206,13.356,7.853,-6.013,17.444,10.512,-3.163,15.719,16.143,11.997,4.258,1.425,18.234,2.656,-3.961,15.401,8.665,-4.98,16.39,17.295,9.547,-2.694,5.505,1.034,10.078,11.453,4.888,6.868,9.842,8.231,13.353,-7.996,12.962,13.621,2.023,4.129,-9.161,-10.981,4.773,11.491,-0.01,3.548,8.772,10.017,3.232,-7.802,-3.794,7.655,6.203,2.921,-1.953,8.675],[23.954,21.5,11.671,32.815,32.796,20.122,26.992,22.456,25.906,7.491,29.041,22.802,22.435,24.121,16.174,17.968,23.185,22.96,10.42,14.32,10.659,20.081,15.567,-0.496,11.601,15.232,16.157,6.273,18.432,19.485,0.605,-3.804,5.316,6.08,13.021,9.765,14.815,17.454,-7.364,2.645,11.233,9.736,0.827,7.149,14.315,17.421,-3.618,16.735,-4.626,-0.557,9.307,3.094,10.443,5.794,7.128,3.371,-2.483,7.696,-10.309,-6.813,8.249,14.092,12.415,2.358,20.679,8.431,24.252,34.679,25.953,23.238,24.179,23.891,22.676,32.684,28.397,30.132,19.97,20.916,27.392,25.133,18.323,15.41,9.902,34.215,12.159,31.665,20.357,22.247,27.435,8.271,22.03,22.393,24.117,14.843,10.284,0.993,17.857,22.294,14.353,10.09,12.462,22.427,11.783,23.904,15.931,19.885,18.816,17.764,15.011,-0.07,20.997,11.568,13.309,23.398,6.264,20.389,16.083,0.667,5.796,9.902,16.786,19.998,16.433,15.292,17.97,8.127,6.954,-2.775,4.361,14.748,-0.319,6.436,-2.695,4.54,18.427,-8.893,16.199,10.959,12.139,-0.591,8.635,13.266,7.388,-5.94,17.432,10.496,-3.158,15.412,16.4,11.614,4.459,1.762,17.985,2.536,-4.393,15.257,8.247,-5.144,16.378,17.593,9.411,-3.132,5.663,0.571,9.983,11.724,4.88,7.166,9.813,8.463,13.254,-8.242,12.646,13.566,2.009,4.032,-8.718,-10.299,4.72,11.313,-0.09,4.052,8.837,9.985,3.33,-7.549,-3.96,7.753,6.732,2.311,-1.702,8.56],[23.955,21.17,11.832,32.798,32.843,20.051,27.127,22.366,25.899,7.553,29.325,22.74,22.341,24.22,16.019,18.021,23.228,22.912,10.626,13.96,10.526,20.091,15.818,-0.626,11.508,15.286,16.288,6.226,18.407,19.377,0.715,-3.711,5.3,6.171,13.03,9.922,14.762,17.499,-7.216,2.781,11.256,9.579,0.489,7.05,14.168,17.68,-3.584,16.657,-4.514,-0.69,9.302,3.256,10.306,6.109,7.289,3.595,-2.582,7.603,-10.102,-6.895,8.24,13.88,12.394,2.176,21.254,7.997,24.344,34.599,26.48,22.587,24.064,23.489,22.742,32.587,28.698,30.245,19.392,20.863,27.527,25.359,18.502,15.303,10.23,34.523,11.838,31.621,20.389,21.821,27.535,8.747,22.438,22.631,24.385,14.775,10.573,0.826,18.264,21.841,14.064,10.245,12.321,22.054,12.125,24.448,15.221,19.559,18.945,17.2,15.318,-0.404,20.818,11.24,13.068,23.159,6.623,20.708,15.781,1.347,5.742,9.734,17.087,19.915,16.384,15.361,17.901,8.265,6.927,-2.808,4.515,14.911,-0.124,6.706,-2.454,4.325,18.564,-8.827,15.745,10.86,12.363,0.019,9.245,13.02,7.358,-5.975,17.112,9.668,-3.262,15.609,16.733,11.365,4.501,1.963,17.89,2.092,-4.546,14.744,7.016,-5.407,16.293,17.515,9.396,-3.143,6.034,0.164,9.908,11.653,4.965,6.96,9.363,8.336,13.325,-8.32,12.395,13.704,1.896,3.803,-8.744,-10.126,4.782,11.516,-0.094,4.214,8.847,10.147,3.308,-7.446,-3.812,8.352,6.739,2.355,-1.199,8.401],[24.027,20.878,11.938,32.913,32.835,19.923,27.377,22.27,25.936,7.815,29.548,22.666,22.446,24.311,15.892,18.024,23.28,22.712,11.07,13.581,10.445,20.204,15.797,-0.855,11.3,15.446,16.648,6.227,18.203,19.278,0.943,-3.576,5.219,6.138,13.046,9.966,14.692,17.458,-7.269,2.713,11.359,9.481,0.191,6.969,13.969,17.757,-3.314,16.569,-4.309,-0.819,9.249,3.465,10.199,6.303,7.307,3.706,-2.521,7.458,-10.107,-7.07,8.295,13.593,12.286,2.115,20.417,8.226,24.35,34.553,26.819,22.988,24.17,22.868,22.749,32.568,28.561,30.2,19.186,20.613,27.693,25.616,18.426,14.757,10.904,34.292,11.853,31.851,20.278,22.156,27.077,8.95,22.773,23.378,24.165,15.069,10.476,0.867,18.34,21.827,14.051,10.599,12.148,21.915,12.229,24.301,15.017,19.494,18.832,17.151,15.485,-0.782,20.787,10.744,13.177,23.535,6.124,20.368,16.191,1.569,5.915,9.373,17.061,19.419,15.721,15.371,17.916,8.445,6.694,-2.489,4.429,14.967,0.062,6.702,-2.597,4.303,18.654,-8.645,15.704,11.437,12.99,-0.602,9.639,12.668,7.817,-5.692,17.052,9.354,-3.207,15.765,17.294,11.626,4.599,1.686,18.187,1.744,-4.256,14.561,6.283,-5.116,16.603,17.495,9.537,-2.84,6.546,0.309,9.715,11.586,5.2,6.802,9.238,8.887,13.293,-8.484,12.152,13.868,2.254,3.152,-8.601,-10.31,5.269,11.58,-0.294,4.485,8.792,9.872,3.519,-7.297,-3.271,7.98,6.971,2.361,-1.373,7.88],[24.119,20.781,11.939,33.006,32.793,19.743,27.408,21.97,26.071,8.107,29.667,22.856,22.718,24.476,15.769,18.028,23.307,22.544,11.504,13.522,10.421,20.279,15.798,-0.921,11.103,15.531,16.806,6.268,17.899,19.151,1.296,-3.493,4.999,5.96,13.147,9.96,14.676,17.364,-7.306,2.59,11.472,9.438,-0.117,6.922,13.771,17.786,-3.014,16.658,-4.09,-0.883,9.099,3.609,10.131,6.423,7.355,3.838,-2.316,7.356,-10.224,-7.213,8.243,13.441,12.218,2.115,20.051,8.549,24.245,34.613,26.461,23.496,24.059,22.559,23.046,32.84,28.772,30.426,19.308,20.1,27.901,25.616,18.428,14.255,10.916,34.147,12.664,31.684,20.434,21.939,27.658,8.808,22.724,23.228,24.22,15.113,10.626,0.711,17.918,22.24,14.073,10.543,11.843,22.128,12.916,23.887,14.795,20.001,18.49,17.475,15.205,-0.784,20.902,10.456,12.736,23.257,5.941,19.703,15.834,1.369,5.679,9.175,17.24,19.293,16.149,15.418,18.083,8.631,6.422,-2.309,4.134,14.769,0.301,6.513,-2.551,4.188,18.3,-8.466,15.883,11.323,13.281,-1.215,9.004,12.974,7.996,-5.553,17.234,9.672,-2.946,15.225,17.448,11.882,4.361,1.502,17.843,1.422,-3.81,14.658,5.982,-4.71,16.582,17.528,9.662,-2.384,6.39,0.683,9.418,11.452,5.231,6.953,9.888,8.733,13.444,-8.924,11.653,13.767,2.365,2.689,-8.715,-10.197,5.321,11.527,-0.488,4.617,8.484,9.507,3.86,-7.37,-3.262,7.83,7.253,2.339,-1.274,7.922],[24.275,20.812,11.94,33.018,32.764,19.763,27.266,21.73,26.061,8.314,29.724,23.091,22.884,24.77,15.707,17.785,23.253,22.611,11.851,13.621,10.428,20.254,15.797,-0.819,10.88,15.556,16.674,6.262,17.748,19.044,1.55,-3.462,4.686,5.713,13.276,9.831,14.669,17.288,-7.228,2.474,11.624,9.302,-0.316,6.955,13.657,17.778,-2.769,16.671,-3.857,-0.881,8.891,3.642,9.953,6.416,7.436,4.039,-2.116,7.356,-10.204,-7.366,8.382,13.439,12.175,2.172,20.835,8.983,24.719,34.874,25.954,23.457,24.663,22.839,23.324,32.576,28.418,30.491,19.209,20.232,27.97,25.417,18.214,14.163,10.503,34.049,12.68,31.106,20.574,22.026,28.118,8.6,22.429,23.001,24.177,15.155,11.398,0.936,17.916,22.082,14.616,10.224,12.168,21.934,12.78,23.988,14.556,19.717,18.098,17.041,15.377,-0.956,20.848,10.426,12.776,23.076,6.415,20.323,15.788,2.301,5.762,9.183,17.514,19.334,16.156,15.77,18.043,8.72,6.382,-2.572,4.229,14.788,0.666,6.13,-2.264,4.386,18.035,-8.6,15.841,11.042,13.217,-1.302,8.484,12.663,7.644,-5.886,17.083,10.001,-3.437,15.497,17.072,11.804,4.178,1.428,17.818,1.423,-3.821,14.871,5.508,-4.647,16.186,17.992,9.763,-2.288,6.287,0.561,9.141,11.281,5.458,6.44,9.837,8.521,13.418,-9.036,11.614,13.363,2.421,2.608,-9.082,-10.496,5.107,11.311,-0.3,4.474,8.398,9.591,4.055,-7.702,-3.323,7.457,7.355,1.857,-0.924,8.466],[24.507,21.026,11.914,32.944,32.717,19.93,27.127,21.815,25.998,8.351,29.805,23.301,22.96,25.003,15.655,17.286,23.118,22.828,12.009,13.739,10.528,20.171,15.955,-0.627,10.676,15.477,16.622,6.359,17.764,18.872,1.725,-3.441,4.519,5.375,13.29,9.709,14.739,17.261,-7.145,2.32,11.691,9.21,-0.286,6.806,13.62,17.598,-2.769,16.665,-3.782,-0.905,8.777,3.771,9.822,6.199,7.482,4.225,-1.869,7.198,-10.196,-7.596,8.428,13.478,12.086,2.209,20.7,9.254,24.34,34.719,26.138,23.592,24.639,23.022,23.278,32.55,28.446,30.37,19.334,20.278,27.934,25.717,18.407,14.506,10.296,34.057,12.116,31.106,20.941,22.211,27.421,8.968,22.713,23.0,24.502,14.852,11.546,1.259,17.719,21.574,14.69,9.822,12.394,22.214,12.813,24.067,15.035,19.654,18.091,16.357,15.751,-0.957,20.628,10.022,13.368,23.417,6.641,21.025,16.301,2.057,5.601,9.778,16.665,19.292,15.992,15.197,17.842,8.446,6.06,-3.123,4.175,14.862,0.751,6.326,-2.039,4.688,18.308,-8.919,15.83,10.839,13.697,-1.06,8.514,12.871,7.683,-6.055,16.754,9.539,-3.027,15.383,16.925,12.055,4.15,1.478,18.132,1.314,-4.004,14.856,5.55,-4.666,16.292,17.644,9.869,-2.29,6.437,0.431,8.857,10.986,5.501,6.718,9.871,8.624,13.05,-8.983,12.072,12.903,2.614,2.991,-8.728,-10.469,5.419,10.966,-0.106,4.297,8.332,9.762,3.646,-7.932,-3.276,7.975,7.277,1.823,-0.73,8.694],[24.715,21.327,11.9,32.878,32.713,20.128,27.043,22.035,25.818,8.33,29.912,23.399,22.927,25.04,15.577,16.863,22.95,23.173,11.945,14.019,10.678,20.282,16.183,-0.414,10.494,15.4,16.446,6.589,17.787,18.721,1.651,-3.493,4.43,5.147,13.179,9.638,14.931,17.277,-7.12,2.268,11.645,9.144,-0.186,6.493,13.591,17.431,-2.865,16.509,-3.859,-0.906,8.79,3.93,9.751,6.03,7.53,4.344,-1.661,7.055,-10.146,-7.908,8.366,13.449,12.015,2.238,20.819,9.083,24.112,34.605,26.729,23.656,24.027,22.88,23.558,32.949,28.383,30.732,19.745,20.227,28.165,26.335,18.489,14.524,10.381,33.992,12.212,31.133,21.21,22.706,27.221,9.144,23.192,23.391,24.494,14.53,11.269,1.301,16.978,21.558,14.538,9.348,12.385,22.065,13.426,23.899,15.432,19.993,18.761,16.52,15.302,-0.594,20.33,9.955,13.13,23.869,6.402,20.654,16.329,1.981,5.717,9.93,16.995,19.065,16.394,14.914,17.342,7.987,5.712,-2.917,3.764,14.694,0.4,6.569,-2.047,4.565,18.262,-8.715,16.017,10.859,13.342,-0.476,8.746,13.268,7.782,-5.815,16.615,9.325,-2.686,15.203,16.839,12.251,4.084,1.251,17.933,1.382,-3.682,14.91,5.612,-4.633,16.235,17.281,9.713,-2.045,6.015,0.498,8.725,11.274,5.662,6.227,9.908,8.992,13.094,-9.039,12.052,12.539,2.81,3.717,-8.664,-9.883,5.524,11.221,-0.06,4.312,8.335,9.392,3.905,-7.916,-3.356,8.328,7.143,2.048,-0.288,8.12],[24.933,21.596,11.92,32.934,32.704,20.176,27.056,22.33,25.679,8.366,29.99,23.431,22.853,24.764,15.48,16.569,22.884,23.424,11.752,14.176,10.765,20.481,16.199,-0.264,10.292,15.369,16.403,6.805,17.955,18.652,1.463,-3.455,4.336,5.019,12.919,9.635,15.187,17.248,-7.023,2.361,11.655,9.02,0.014,6.207,13.594,17.242,-2.734,16.241,-3.935,-0.74,8.835,4.088,9.762,5.954,7.635,4.389,-1.691,6.833,-9.97,-8.192,8.347,13.383,12.042,2.296,21.277,8.732,24.096,34.666,26.281,23.685,23.861,22.684,23.943,32.881,27.942,30.97,20.113,20.474,28.22,26.634,18.562,14.289,10.716,34.111,12.268,31.298,21.011,23.081,27.404,9.024,22.653,23.524,24.377,14.559,11.239,1.519,16.923,21.752,14.448,9.425,12.592,22.417,13.108,23.977,15.625,20.175,18.819,16.253,15.292,-0.57,19.846,10.182,13.007,24.379,6.133,21.041,16.184,1.613,6.277,9.895,16.977,19.228,16.117,15.193,16.985,8.044,5.874,-2.409,3.46,14.539,0.813,6.249,-2.272,4.041,17.97,-8.377,15.955,10.825,12.825,-0.671,8.724,13.357,7.508,-5.734,16.778,9.805,-2.928,15.697,17.041,11.443,3.936,1.317,17.502,1.281,-3.727,14.942,6.027,-4.612,15.911,17.364,9.927,-1.952,5.983,0.709,9.119,11.244,5.764,5.923,9.642,9.392,13.219,-9.526,11.551,12.713,2.557,3.542,-8.782,-10.333,5.202,11.649,-0.17,4.221,8.308,9.2,4.744,-8.194,-2.807,7.8,7.386,2.446,-0.207,7.151],[25.101,21.849,11.982,32.979,32.644,20.082,27.028,22.546,25.498,8.514,29.937,23.454,22.692,24.545,15.363,16.438,22.964,23.637,11.597,14.065,10.862,20.598,16.122,-0.187,10.22,15.419,16.5,6.933,18.311,18.501,1.444,-3.396,4.429,4.852,12.672,9.733,15.475,17.093,-6.982,2.619,11.708,8.94,0.085,6.12,13.621,17.086,-2.524,16.214,-4.002,-0.648,8.905,4.33,9.731,5.863,7.683,4.282,-1.637,6.433,-9.96,-8.487,8.33,13.305,12.093,2.259,21.446,8.473,24.019,34.609,25.39,23.049,24.065,22.986,23.985,32.843,27.978,30.778,20.207,20.756,28.186,26.838,18.472,14.065,10.895,33.763,12.33,31.898,20.684,23.354,27.629,8.579,22.276,23.236,24.341,14.561,10.84,1.591,16.731,21.735,14.634,9.428,12.416,22.7,12.654,24.331,15.634,20.66,18.563,15.727,15.524,-0.288,19.835,10.021,13.383,24.064,6.265,20.726,16.453,1.539,5.825,9.635,16.9,19.746,15.87,15.561,17.078,8.226,5.793,-2.629,3.396,14.269,0.494,6.28,-2.094,3.239,18.322,-8.382,15.825,10.796,12.915,-0.78,8.265,13.689,7.051,-5.368,16.571,9.684,-3.214,15.901,17.045,11.464,4.0,2.052,17.563,1.615,-3.98,14.7,6.686,-4.309,15.902,17.216,9.936,-2.138,5.979,0.642,9.207,11.15,5.632,6.203,9.63,9.274,13.488,-10.094,11.519,13.139,2.512,3.215,-8.965,-10.429,4.796,11.607,0.008,3.931,8.351,9.986,5.2,-8.327,-2.772,7.724,7.45,2.809,-0.435,7.64],[25.195,21.847,12.075,33.045,32.322,19.844,26.897,22.575,25.275,8.655,29.776,23.527,22.557,24.322,15.211,16.44,23.195,23.801,11.621,13.891,10.843,20.555,16.151,-0.11,10.245,15.502,16.744,6.838,18.629,18.375,1.478,-3.436,4.503,4.814,12.767,9.818,15.756,16.813,-6.966,3.054,11.798,8.782,0.071,6.115,13.708,16.984,-2.354,16.354,-4.071,-0.704,8.995,4.503,9.775,5.721,7.568,4.091,-1.511,6.175,-10.207,-8.869,8.438,13.336,12.073,2.19,21.377,8.568,23.798,34.715,25.536,22.941,24.226,23.493,24.493,32.797,27.88,30.29,20.108,20.769,27.968,26.473,18.347,13.901,10.853,33.962,12.022,31.927,20.685,22.89,27.591,8.889,22.522,23.441,24.595,14.558,10.893,1.581,16.536,21.94,14.484,9.532,12.349,23.022,12.307,24.545,15.447,20.904,19.009,15.431,15.822,0.022,20.049,9.708,13.525,23.956,6.967,20.809,15.945,1.815,6.178,9.315,17.521,20.224,16.032,15.325,17.457,8.123,5.99,-2.692,3.879,14.255,0.262,5.579,-2.038,2.984,18.184,-8.595,16.173,10.999,12.826,-0.231,8.403,13.632,6.994,-5.532,16.303,9.312,-2.933,15.691,16.435,12.579,4.262,1.815,17.756,1.931,-4.199,14.895,6.274,-4.117,15.981,17.283,9.899,-1.642,5.797,0.35,9.303,10.843,5.897,5.715,9.848,9.325,13.502,-10.23,11.643,13.468,2.198,3.504,-8.707,-9.999,4.887,11.442,0.618,3.919,8.166,10.141,5.03,-8.309,-2.585,7.851,7.0,2.738,-0.876,7.702],[25.439,21.523,12.082,33.085,32.025,19.734,26.657,22.44,25.27,8.758,29.532,23.447,22.772,24.297,14.969,16.576,23.464,23.825,11.75,13.86,10.623,20.526,16.053,0.083,10.311,15.543,17.12,6.909,18.767,18.424,1.411,-3.4,4.551,4.781,12.993,9.834,15.925,16.585,-7.131,3.254,12.053,8.715,0.217,6.06,13.831,16.887,-2.223,16.453,-4.023,-0.68,9.012,4.551,9.766,5.551,7.347,3.825,-1.398,6.115,-10.372,-9.176,8.571,13.366,12.093,2.316,21.385,8.548,23.794,34.868,25.635,23.089,23.928,23.59,24.375,32.744,27.776,30.378,19.98,20.75,27.517,25.789,18.116,14.062,10.738,33.756,12.207,31.265,20.546,22.708,27.002,9.771,22.728,23.486,23.957,14.575,11.071,1.875,16.701,22.099,14.319,9.923,12.435,23.002,12.892,24.449,15.333,20.356,19.477,15.168,16.155,-0.276,20.227,9.155,12.999,24.264,7.357,21.291,16.484,1.307,5.74,9.749,17.648,20.087,16.33,15.731,17.577,8.149,6.087,-2.358,4.119,14.464,0.696,4.94,-2.161,3.153,17.444,-8.67,16.385,10.97,12.787,-0.502,8.466,13.238,7.33,-5.701,15.854,9.285,-2.648,16.051,16.391,12.371,4.545,2.218,17.917,1.967,-4.204,15.407,5.698,-3.987,15.863,17.34,10.349,-1.485,5.605,0.837,9.208,10.782,6.213,5.216,10.187,9.051,13.288,-10.601,11.754,13.494,2.205,4.004,-9.159,-10.311,5.065,11.326,0.046,3.953,8.174,9.999,4.986,-8.513,-2.483,8.312,6.971,2.181,-0.614,7.252],[25.543,21.261,12.016,33.082,31.777,19.814,26.364,22.335,25.2,8.853,29.25,23.239,22.934,24.408,14.837,16.755,23.554,23.782,11.996,13.943,10.35,20.487,16.153,0.266,10.31,15.616,17.476,7.06,18.813,18.6,1.184,-3.231,4.696,4.638,13.038,9.831,15.998,16.408,-7.164,3.227,12.114,8.801,0.286,5.958,13.843,16.78,-2.214,16.499,-3.908,-0.489,8.995,4.684,9.7,5.535,7.172,3.553,-1.267,6.137,-10.463,-9.376,8.79,13.369,12.146,2.509,21.09,8.608,23.667,34.695,25.921,22.807,24.265,23.589,24.357,32.892,27.578,30.268,19.636,20.707,27.648,26.454,18.009,14.013,10.583,33.311,12.521,30.493,19.999,23.473,26.839,10.234,23.199,23.055,24.341,14.081,11.266,2.013,16.894,22.179,14.526,10.077,12.307,22.892,13.295,24.02,15.028,19.749,19.326,15.422,15.832,-0.305,20.322,9.274,12.908,24.143,6.865,20.559,16.631,1.448,6.322,10.473,18.004,20.126,16.576,16.226,17.544,8.029,6.005,-2.058,3.436,14.061,0.19,5.088,-2.326,2.788,17.278,-8.688,16.46,10.463,13.326,-0.628,7.993,13.483,7.856,-5.816,15.602,9.244,-2.636,16.521,16.915,12.183,4.938,2.365,17.796,1.684,-4.014,14.835,5.661,-3.902,15.641,17.41,10.46,-1.371,5.455,1.088,8.872,10.83,6.128,6.123,10.289,8.864,13.305,-10.879,11.658,13.345,2.148,4.206,-9.18,-10.463,4.872,11.063,-0.12,3.767,8.201,9.793,5.248,-8.881,-2.398,8.163,6.805,2.179,-0.306,6.896],[25.681,21.328,12.026,33.049,31.6,19.824,26.397,22.362,25.108,8.903,29.14,22.971,22.81,24.604,14.828,16.969,23.444,23.543,12.182,13.892,10.322,20.133,16.58,0.526,10.239,15.647,17.574,7.288,18.815,18.814,0.831,-3.084,4.765,4.545,12.979,9.816,16.036,16.252,-7.202,3.209,11.926,8.881,0.265,5.959,13.571,16.679,-2.296,16.533,-3.776,-0.297,8.933,4.926,9.542,5.467,7.068,3.352,-1.193,6.287,-10.502,-9.495,8.929,13.4,12.151,2.668,21.026,8.645,23.548,34.55,25.426,23.105,24.203,23.375,24.429,33.079,27.489,29.988,19.488,20.597,27.444,26.717,18.123,13.818,10.486,32.614,12.432,29.794,19.926,23.84,26.79,10.205,22.833,23.019,25.295,14.521,11.635,1.973,16.912,21.95,14.93,9.873,12.149,22.862,13.138,23.606,15.514,19.863,19.161,16.002,15.939,-0.02,20.476,9.74,13.477,24.156,6.349,20.868,16.122,0.875,6.378,9.798,18.451,20.312,16.391,16.138,17.626,8.178,6.196,-2.152,3.575,14.378,-0.07,4.897,-2.206,2.695,17.486,-8.546,16.674,10.594,13.467,-0.971,8.0,13.972,7.591,-5.703,15.848,9.37,-2.706,15.947,17.015,12.369,4.961,2.15,18.012,1.649,-3.702,14.8,5.516,-4.164,15.647,17.398,10.096,-1.54,5.701,0.768,8.502,11.072,6.182,5.813,10.34,8.913,13.109,-10.782,11.755,13.254,1.893,4.024,-8.948,-10.401,4.877,10.92,0.917,3.678,8.181,9.391,5.701,-8.698,-2.355,8.097,6.485,2.957,-0.212,7.297],[26.0,21.53,12.111,33.105,31.416,19.74,26.576,22.453,24.891,8.799,28.939,22.835,22.479,24.838,14.965,17.302,23.21,23.198,12.226,13.999,10.403,19.969,16.84,0.7,10.231,15.633,17.397,7.29,18.808,19.128,0.471,-3.068,4.851,4.413,12.917,9.908,15.998,16.294,-7.232,3.222,11.883,9.012,0.193,5.847,13.383,16.608,-2.387,16.544,-3.661,-0.139,8.671,5.313,9.384,5.413,7.127,3.269,-1.125,6.364,-10.477,-9.442,9.008,13.395,12.05,2.784,21.49,9.118,23.467,34.865,25.171,23.201,23.708,22.951,24.364,33.059,27.935,29.895,19.882,20.695,27.041,26.222,18.034,13.656,10.838,32.021,12.302,29.653,20.368,23.01,26.922,9.71,22.522,23.027,25.234,14.204,11.566,2.468,16.773,21.926,15.202,9.66,12.149,22.222,13.129,23.667,15.743,19.448,19.536,16.401,16.13,0.585,20.738,9.387,13.089,24.078,6.622,20.82,16.743,0.806,6.407,9.264,17.938,20.117,16.366,15.779,17.775,8.274,6.277,-2.121,4.335,14.13,-0.172,4.789,-1.657,2.664,17.844,-8.625,16.826,10.991,13.143,-0.706,8.396,13.93,7.521,-5.692,15.569,9.322,-2.367,15.883,16.861,11.927,4.85,2.287,17.876,1.985,-3.651,14.621,5.061,-4.084,15.507,17.417,10.238,-1.796,5.656,0.971,8.653,11.03,6.625,5.269,10.051,8.803,12.839,-10.786,12.015,13.502,1.807,3.96,-9.001,-10.417,4.675,11.461,1.106,3.705,8.052,9.248,5.9,-8.435,-2.315,8.013,6.629,3.341,-0.79,7.684],[26.286,21.654,12.2,33.356,31.264,19.66,26.759,22.611,24.682,8.624,28.56,22.838,22.172,24.767,14.965,17.653,23.101,22.884,12.187,14.159,10.508,19.836,16.817,0.888,10.2,15.613,17.185,7.213,18.704,19.47,0.166,-3.008,5.049,4.176,12.737,9.922,15.927,16.34,-7.15,3.243,12.01,9.302,0.248,5.725,13.308,16.52,-2.25,16.508,-3.515,-0.033,8.365,5.734,9.246,5.529,7.307,3.203,-1.186,6.352,-10.374,-9.315,8.987,13.227,11.913,2.804,21.122,9.202,23.622,35.132,25.502,23.125,23.649,22.732,25.065,32.995,27.873,29.355,20.168,20.686,26.941,26.329,17.898,13.877,10.84,31.895,12.203,29.384,20.514,22.531,26.957,9.535,22.588,22.541,24.848,14.091,11.408,2.361,17.097,21.512,15.25,9.743,12.274,22.118,13.11,23.611,15.591,19.456,19.5,16.601,16.223,1.058,21.153,8.898,13.145,23.706,6.685,20.406,16.599,0.643,6.295,9.739,17.589,19.751,16.336,15.955,18.259,8.502,6.623,-2.101,4.213,14.046,-0.168,5.057,-1.863,2.416,17.821,-8.74,16.873,11.171,12.958,-0.345,8.32,13.626,7.072,-5.708,16.001,9.509,-2.326,16.373,16.831,11.544,4.48,2.236,17.585,1.85,-3.929,14.673,4.507,-4.121,15.395,17.747,10.29,-1.355,5.281,1.319,8.794,10.702,7.269,6.015,10.335,8.949,13.158,-10.628,11.768,13.59,1.697,4.304,-8.803,-10.265,4.455,11.57,0.672,4.092,8.013,9.281,6.097,-8.557,-2.223,8.023,6.695,3.223,-0.8,7.394],[26.497,21.569,12.186,33.617,31.077,19.632,26.82,22.751,24.793,8.509,28.078,22.816,22.023,24.56,14.823,17.854,23.076,22.632,12.002,14.216,10.683,19.622,16.581,1.042,10.149,15.648,17.151,7.04,18.444,19.857,-0.006,-2.983,5.295,4.061,12.471,9.925,15.872,16.393,-7.074,3.183,12.03,9.526,0.445,5.509,13.424,16.411,-2.019,16.55,-3.377,-0.06,8.187,6.104,9.169,5.715,7.478,3.083,-1.353,6.414,-10.185,-9.173,8.987,13.146,11.816,2.846,21.35,8.441,23.611,35.083,25.125,23.032,23.5,23.555,26.262,33.514,27.667,28.937,19.774,20.813,26.55,26.56,17.784,13.662,10.685,31.894,12.459,29.342,20.697,22.585,26.781,9.668,22.382,22.396,24.172,14.14,11.259,2.93,17.454,21.673,15.038,9.894,12.475,22.296,13.267,22.988,15.953,19.843,19.028,17.346,16.023,0.778,21.523,8.904,13.655,23.815,7.137,20.569,16.71,0.237,6.255,9.987,17.971,19.723,16.095,15.48,18.618,8.292,6.618,-1.845,4.121,13.817,-0.367,4.924,-2.118,2.37,17.803,-8.543,16.746,10.928,13.009,-0.425,8.409,13.328,7.179,-5.697,16.233,9.858,-2.677,16.661,16.422,12.358,4.927,1.966,17.731,1.454,-4.05,14.693,4.268,-3.693,15.899,17.648,10.322,-0.919,5.317,1.357,8.56,10.421,7.364,5.648,10.592,9.37,12.67,-10.471,11.475,13.481,1.561,4.435,-8.792,-9.959,4.507,11.182,0.811,4.111,7.614,9.089,6.542,-8.818,-1.689,8.257,6.665,2.801,-0.924,7.75],[26.681,21.314,12.194,33.766,30.868,19.801,26.638,22.967,24.972,8.327,27.643,22.624,21.882,24.323,14.591,18.034,22.974,22.621,11.812,14.289,10.787,19.63,16.495,1.179,10.043,15.701,17.155,6.941,18.345,20.144,-0.136,-2.935,5.49,4.108,12.35,9.813,15.859,16.48,-7.026,3.142,12.097,9.417,0.604,5.359,13.697,16.351,-1.814,16.62,-3.396,-0.171,8.107,6.435,9.05,5.71,7.695,2.951,-1.515,6.552,-10.054,-9.113,9.114,13.177,11.862,2.872,21.703,8.006,23.267,35.529,25.479,22.908,23.405,24.278,27.112,33.78,28.184,28.824,19.644,21.267,25.926,26.832,18.011,13.507,10.608,32.258,12.407,29.273,20.217,23.552,26.789,9.784,22.048,22.636,24.824,14.185,11.11,2.827,17.407,21.714,14.837,10.169,12.658,22.202,13.108,23.046,15.783,19.487,18.976,17.305,16.175,0.405,21.803,9.417,13.495,23.527,7.475,20.079,16.315,0.514,6.55,9.938,17.833,19.804,16.675,15.492,18.85,8.082,6.742,-2.046,4.088,13.496,-0.801,4.844,-1.833,2.261,17.769,-8.537,16.573,10.817,12.757,-0.214,8.581,13.325,6.861,-5.576,15.69,10.066,-2.652,16.685,16.11,12.396,5.101,2.513,17.725,1.684,-3.895,14.73,4.133,-3.548,15.753,17.622,10.298,-0.858,5.265,1.324,8.002,10.356,7.18,5.389,10.609,9.206,12.828,-10.542,11.652,13.1,1.537,4.483,-8.935,-10.006,4.347,10.641,0.573,4.122,7.83,8.639,6.593,-8.277,-1.207,8.354,6.503,2.496,-1.292,7.783],[26.877,21.234,12.222,33.852,30.888,19.87,26.406,23.257,25.118,8.114,27.425,22.59,21.873,24.308,14.448,18.067,22.814,22.773,11.673,14.205,10.722,19.695,16.467,1.181,10.033,15.86,17.24,6.915,18.488,20.144,-0.256,-2.866,5.605,4.161,12.272,9.693,15.893,16.418,-7.074,3.204,12.21,9.203,0.85,5.209,13.909,16.245,-1.743,16.586,-3.525,-0.34,7.903,6.579,8.922,5.518,7.66,2.889,-1.669,6.726,-10.101,-9.102,9.35,13.276,11.89,2.913,21.023,7.993,23.614,35.505,25.944,22.589,23.178,24.335,27.207,33.417,27.828,28.304,19.382,21.418,25.725,26.581,18.092,13.318,10.631,31.948,12.094,29.655,20.373,23.797,26.498,9.502,21.987,22.413,25.022,14.411,11.038,2.69,17.621,21.547,14.758,9.949,12.714,22.231,12.779,23.276,15.775,19.54,19.184,16.871,16.625,0.79,21.851,9.28,13.073,23.144,7.587,19.915,16.385,0.588,6.462,10.127,17.55,19.658,16.303,15.828,19.104,8.179,7.129,-2.189,4.506,13.918,-0.464,5.107,-1.577,2.368,17.874,-8.752,16.7,10.628,12.428,-0.12,8.652,13.58,6.827,-5.425,15.898,9.564,-2.42,16.339,16.666,11.833,4.887,3.036,17.796,2.373,-3.809,15.249,4.256,-3.634,15.322,17.664,10.466,-0.844,4.91,1.028,7.702,10.626,7.9,6.037,10.468,9.213,13.581,-10.77,11.748,12.974,1.331,4.527,-8.577,-10.5,4.158,11.024,0.415,3.971,8.028,8.748,6.775,-7.892,-1.006,8.598,6.786,2.893,-1.482,7.82],[26.952,21.196,12.2,33.761,31.149,19.732,26.165,23.445,25.327,7.961,27.341,22.654,21.968,24.444,14.446,18.01,22.659,22.965,11.645,14.039,10.688,19.769,16.552,1.168,9.992,15.968,17.25,7.001,18.568,20.047,-0.38,-2.788,5.667,4.3,12.21,9.584,15.929,16.341,-7.144,3.276,12.206,9.094,1.194,5.234,14.095,16.127,-1.892,16.475,-3.647,-0.449,7.645,6.622,8.94,5.245,7.463,2.787,-1.795,6.885,-10.229,-9.058,9.673,13.44,11.845,3.06,21.055,7.707,24.117,35.286,25.344,22.962,23.592,24.077,27.073,33.72,27.22,28.183,20.013,21.642,25.724,26.188,17.891,13.274,10.637,32.431,11.948,29.56,20.798,23.216,26.362,9.025,21.972,22.377,24.217,14.488,11.086,2.957,17.684,21.527,15.036,9.926,12.514,22.478,12.451,23.561,15.796,19.298,19.387,16.76,16.569,1.125,21.883,9.177,13.277,23.409,7.185,20.516,16.56,0.276,6.227,9.812,17.758,19.647,16.589,15.678,19.412,7.885,7.115,-1.839,4.682,13.78,-0.113,4.958,-1.474,2.573,17.98,-8.412,16.949,10.717,12.501,-0.174,8.167,13.79,6.63,-5.648,15.88,9.195,-2.31,16.27,16.653,12.328,5.053,2.858,17.656,2.892,-3.796,15.181,3.931,-3.577,15.388,17.503,10.417,-0.956,4.544,0.645,8.313,10.774,7.986,5.98,10.695,9.177,13.452,-10.546,11.896,13.385,1.578,4.531,-8.815,-10.366,4.376,11.467,0.708,3.662,7.759,8.125,7.174,-8.238,-1.154,8.596,6.55,3.101,-1.516,8.147],[26.86,21.366,12.128,33.71,31.52,19.531,25.969,23.511,25.438,7.808,27.343,22.735,22.044,24.561,14.569,18.041,22.567,23.254,11.593,13.984,10.683,19.915,16.712,1.325,9.928,15.968,17.201,7.124,18.616,19.973,-0.409,-2.68,5.582,4.327,12.085,9.424,16.02,16.29,-7.178,3.278,12.203,8.986,1.556,5.34,14.226,16.002,-2.092,16.301,-3.726,-0.32,7.383,6.627,9.031,4.987,7.127,2.681,-1.936,6.92,-10.404,-9.021,9.925,13.511,11.91,3.121,21.379,7.965,24.158,35.142,25.536,22.853,23.645,24.164,26.718,33.923,27.69,28.473,19.645,21.686,25.72,26.544,17.956,13.253,10.698,32.819,12.461,29.932,20.551,22.95,26.438,8.967,21.815,22.323,24.061,13.896,11.198,2.679,16.957,21.183,15.275,9.945,12.424,22.408,12.503,23.426,15.231,19.31,19.3,17.545,16.373,1.398,21.799,9.192,13.154,23.698,6.953,20.377,16.341,0.177,6.92,9.598,17.688,19.933,16.935,16.021,19.668,7.874,6.944,-1.616,4.509,13.718,-0.774,5.382,-1.75,2.729,17.813,-8.545,16.912,10.559,12.513,0.463,8.362,14.159,7.048,-5.591,16.084,9.769,-2.398,16.382,15.861,12.402,5.009,2.511,17.446,3.132,-3.754,14.957,4.151,-3.856,15.479,17.419,10.462,-1.127,4.461,0.833,8.445,10.414,7.709,6.089,11.414,8.85,13.302,-10.242,11.927,13.451,1.283,4.701,-9.132,-10.108,4.176,11.404,0.857,3.467,7.468,7.859,7.062,-8.516,-1.321,8.815,6.104,3.075,-1.394,7.881],[26.702,21.601,12.137,33.883,31.834,19.354,26.215,23.436,25.423,7.763,27.415,22.816,21.8,24.344,14.64,18.187,22.385,23.484,11.47,13.914,10.72,20.012,16.595,1.541,9.873,15.934,17.265,7.324,18.678,20.019,-0.357,-2.732,5.489,4.377,12.041,9.161,16.171,16.333,-7.171,3.117,12.309,9.095,1.883,5.495,14.114,15.721,-2.15,16.236,-3.767,0.021,7.268,6.65,8.997,4.995,6.945,2.593,-2.123,6.895,-10.48,-8.92,10.065,13.405,12.092,3.043,21.603,8.06,23.708,34.867,25.55,22.768,23.513,24.332,26.494,33.355,27.753,28.467,19.872,21.62,25.851,26.923,17.761,13.387,10.368,33.046,12.299,30.369,20.512,22.685,26.086,8.907,21.846,22.564,24.828,14.001,11.04,3.039,17.401,21.068,14.894,9.795,12.628,22.601,12.304,23.026,15.194,19.736,19.086,17.788,16.268,1.139,21.569,9.196,12.922,24.155,7.573,20.132,16.817,0.48,6.283,9.763,17.806,20.154,16.298,15.585,19.861,7.67,6.965,-1.393,4.25,13.568,-1.106,5.543,-2.003,2.567,17.583,-8.672,16.802,10.282,12.405,0.766,8.749,14.165,7.224,-5.471,16.004,9.798,-2.303,16.227,16.038,12.065,4.835,2.65,17.472,3.509,-4.177,15.429,4.848,-3.953,15.144,17.121,10.458,-0.984,4.336,1.463,7.201,10.07,7.931,5.794,11.807,8.443,13.027,-10.614,12.153,13.491,0.857,4.875,-9.415,-10.389,3.793,10.924,0.584,3.594,7.408,8.216,6.466,-8.082,-1.407,9.335,5.832,3.076,-1.55,7.553],[26.61,21.804,12.066,33.991,32.04,19.311,26.44,23.287,25.245,7.854,27.509,22.872,21.74,24.303,14.795,18.432,22.028,23.673,11.246,13.826,10.81,19.993,16.433,1.696,9.761,15.785,17.292,7.463,18.586,20.138,-0.252,-2.824,5.478,4.422,12.081,8.751,16.291,16.351,-7.126,2.947,12.279,9.411,2.087,5.6,13.965,15.404,-2.021,16.24,-3.85,0.308,7.16,6.636,8.94,4.977,6.969,2.497,-2.364,6.77,-10.489,-8.832,10.104,13.073,12.227,2.971,21.58,7.44,23.862,35.211,25.578,22.906,23.282,24.239,26.292,33.638,27.755,28.392,20.105,21.424,25.844,26.031,17.632,13.284,10.463,33.379,12.09,30.568,20.349,23.073,26.401,9.01,21.276,22.482,24.985,14.178,10.475,3.476,17.729,20.88,14.677,10.185,12.633,23.19,12.03,22.846,15.443,19.511,19.291,17.225,16.598,1.106,21.241,9.631,12.873,24.426,7.885,20.676,16.215,0.66,6.697,9.773,18.232,19.552,16.207,15.921,20.438,7.116,6.904,-1.464,3.976,13.578,-0.874,5.149,-1.842,2.634,17.375,-8.473,17.207,10.272,12.244,0.863,8.414,13.566,7.409,-5.598,15.722,9.427,-2.408,16.175,16.298,12.97,4.722,2.112,17.617,3.833,-4.265,14.947,5.151,-3.793,14.985,17.327,10.61,-0.902,4.575,1.787,6.922,10.227,8.005,5.984,11.879,8.459,13.41,-10.527,11.79,13.524,1.006,4.534,-8.991,-10.443,3.754,11.05,1.003,3.308,7.375,8.373,6.927,-7.963,-1.241,9.822,5.864,3.072,-1.899,7.687],[26.576,21.856,11.989,34.108,32.038,19.379,26.404,23.201,25.145,7.875,27.546,22.932,21.839,24.549,14.973,18.427,21.591,23.884,10.924,13.806,10.771,20.013,16.399,1.723,9.826,15.684,17.425,7.671,18.309,20.238,-0.218,-2.766,5.577,4.527,12.22,8.438,16.482,16.307,-7.264,2.758,12.353,9.58,2.22,5.647,13.716,15.206,-1.785,16.407,-3.975,0.501,7.185,6.592,8.89,4.757,7.079,2.381,-2.574,6.694,-10.381,-8.797,10.248,12.751,12.372,2.852,21.699,7.945,23.612,35.398,25.735,22.616,23.267,24.044,25.633,33.853,28.032,28.579,20.236,21.431,25.967,25.556,17.672,13.337,10.441,33.235,12.237,30.636,20.304,24.108,26.767,9.202,21.016,22.599,24.61,14.398,9.997,3.575,17.831,20.676,14.848,10.454,12.501,23.242,11.738,22.511,15.377,19.777,19.387,17.258,16.571,1.324,20.665,9.358,12.978,24.694,7.744,20.398,16.168,0.384,6.715,9.577,17.725,19.454,16.532,16.116,21.306,7.163,6.808,-1.858,4.318,13.968,0.008,4.998,-1.703,2.675,17.248,-8.636,17.474,9.844,12.383,1.075,8.509,13.146,7.372,-5.642,15.854,10.158,-2.656,16.32,15.46,12.482,4.598,2.022,17.623,3.778,-3.9,14.577,5.142,-3.57,14.552,17.547,10.459,-0.86,4.232,1.385,7.358,10.598,7.863,5.965,11.68,8.675,12.848,-10.507,11.366,13.869,0.989,4.126,-8.898,-10.499,3.719,11.698,1.911,3.218,7.413,7.882,7.342,-7.879,-1.275,9.665,6.217,2.812,-1.98,8.164],[26.475,21.819,11.928,34.275,31.843,19.46,26.293,23.27,25.244,8.014,27.471,23.247,21.89,24.661,15.092,18.317,21.314,24.017,10.632,13.786,10.648,20.018,16.634,1.649,10.049,15.735,17.497,7.848,18.108,20.36,-0.243,-2.799,5.634,4.693,12.448,8.314,16.755,16.331,-7.547,2.631,12.378,9.585,2.245,5.678,13.371,14.988,-1.644,16.537,-4.031,0.584,7.35,6.552,8.817,4.538,7.269,2.225,-2.72,6.855,-10.319,-8.729,10.259,12.531,12.621,2.702,21.911,7.995,23.69,35.337,25.441,23.078,23.623,23.97,25.44,34.002,27.765,28.69,20.12,21.482,25.977,26.526,17.842,13.77,10.452,33.29,11.977,30.345,20.679,24.02,25.915,9.091,21.49,22.545,24.67,14.44,9.82,3.415,17.611,20.306,14.914,9.825,12.337,23.129,11.519,21.91,15.437,20.311,18.445,17.262,16.062,1.451,19.987,9.471,12.832,25.066,7.878,20.115,16.421,0.553,6.782,9.542,17.136,19.722,16.658,15.868,22.12,6.739,7.075,-1.629,4.422,13.828,-0.315,5.27,-1.779,2.837,17.709,-8.889,17.468,9.625,12.739,1.315,9.023,13.038,7.027,-5.74,15.675,10.205,-2.558,16.39,15.065,12.198,4.305,2.204,17.747,3.857,-3.987,14.614,4.879,-3.391,14.656,17.367,10.61,-0.653,4.012,1.199,8.128,10.271,7.62,6.101,11.716,8.607,12.24,-10.591,11.422,14.157,0.602,4.284,-9.296,-9.811,3.578,11.686,1.946,3.213,7.786,7.853,7.189,-8.17,-1.211,9.122,6.212,2.584,-1.989,7.878],[26.529,21.791,11.82,34.449,31.67,19.587,26.044,23.321,25.406,8.202,27.442,23.544,22.002,24.696,15.156,18.29,21.215,24.076,10.51,13.713,10.553,20.073,16.951,1.538,10.183,15.772,17.332,7.882,17.985,20.528,-0.238,-2.915,5.69,4.91,12.563,8.188,16.99,16.418,-7.745,2.645,12.45,9.525,2.238,5.707,13.049,14.814,-1.574,16.446,-4.049,0.425,7.521,6.461,8.853,4.542,7.376,2.013,-2.749,7.123,-10.333,-8.716,9.988,12.423,12.88,2.727,21.624,7.643,23.909,35.244,25.779,22.935,23.338,24.147,25.707,34.321,27.829,28.331,19.98,21.352,25.731,26.707,18.139,14.118,10.504,33.191,11.985,30.194,21.13,23.312,25.684,9.088,21.36,23.189,24.646,13.952,9.46,3.287,17.345,19.86,15.466,10.078,12.227,23.337,11.546,21.305,15.322,19.736,18.295,16.832,16.321,0.855,19.548,9.173,12.678,25.315,7.76,20.291,16.269,0.469,7.026,9.297,17.35,19.365,16.626,15.586,22.264,6.727,7.191,-1.524,4.22,14.136,-1.204,5.742,-1.991,3.143,17.927,-9.107,17.53,9.618,12.543,1.424,8.936,12.753,6.59,-6.262,16.504,9.744,-2.397,16.686,15.737,13.013,4.349,1.721,17.795,3.986,-4.089,14.317,4.465,-3.363,14.771,17.444,10.932,-0.426,4.024,1.677,8.253,10.239,7.891,6.197,11.412,8.539,12.134,-10.301,11.321,14.437,0.422,4.438,-9.042,-9.3,3.292,11.814,1.281,3.208,7.31,8.265,6.998,-7.917,-1.368,8.795,6.023,2.747,-2.206,7.686],[26.645,21.7,11.641,34.612,31.551,19.716,25.967,23.22,25.476,8.309,27.405,23.708,22.014,24.547,15.144,18.188,21.061,24.155,10.52,13.531,10.597,20.164,17.203,1.307,10.091,15.831,16.985,7.82,18.001,20.615,-0.377,-3.117,5.793,5.177,12.48,7.959,17.195,16.681,-7.827,2.802,12.755,9.384,2.262,5.632,12.72,14.864,-1.525,16.302,-4.067,0.096,7.625,6.36,8.989,4.807,7.318,1.784,-2.725,7.199,-10.315,-8.55,9.717,12.413,13.126,2.928,21.577,8.167,24.006,35.445,25.847,22.765,23.19,24.247,26.357,33.944,27.586,28.186,19.982,21.544,25.826,25.918,18.443,14.075,10.179,32.931,12.191,30.133,21.256,24.154,25.975,9.357,21.531,23.11,24.642,13.927,9.432,3.204,17.256,19.88,15.945,10.873,12.275,22.897,11.8,21.041,15.026,19.391,19.121,17.354,16.798,0.678,19.36,9.83,12.705,25.103,7.877,20.646,16.546,0.341,7.072,9.423,17.7,18.983,16.499,15.572,22.193,6.959,6.993,-1.981,4.439,14.074,-1.101,6.149,-1.999,3.413,18.298,-9.361,17.616,9.466,12.706,1.658,8.443,12.015,6.145,-6.437,16.136,9.843,-2.389,17.016,16.082,12.896,4.546,1.931,17.711,4.032,-4.094,13.828,4.502,-3.237,14.405,17.253,11.252,-0.476,4.18,1.477,7.814,9.587,7.763,6.287,11.104,8.471,12.467,-10.017,11.274,14.15,0.405,4.352,-9.077,-9.628,3.345,12.156,0.992,3.209,7.06,8.22,6.755,-7.585,-1.301,8.904,6.167,3.024,-2.2,8.322],[26.686,21.559,11.49,34.732,31.541,19.837,26.054,23.099,25.373,8.392,27.461,23.883,21.868,24.463,15.141,18.156,20.882,24.122,10.533,13.353,10.832,20.216,17.386,1.205,10.183,15.958,16.713,7.814,18.16,20.6,-0.546,-3.338,5.968,5.421,12.317,7.832,17.374,16.937,-7.915,3.037,13.106,9.175,2.371,5.43,12.393,15.062,-1.486,16.201,-4.076,-0.107,7.544,6.155,9.13,4.93,7.172,1.577,-2.594,7.112,-10.363,-8.337,9.631,12.565,13.228,3.22,21.85,8.194,24.259,35.736,25.569,22.827,23.641,24.104,26.634,33.904,27.461,28.263,19.746,21.412,25.748,25.519,18.282,13.749,10.07,32.743,12.006,29.816,21.174,24.235,25.775,10.009,21.238,23.012,24.633,14.557,9.457,3.001,16.973,20.584,15.791,10.334,12.59,23.274,11.96,20.933,14.937,19.864,19.008,17.368,16.968,0.637,19.358,9.685,12.32,24.777,7.344,20.51,17.04,0.05,7.223,9.731,16.985,19.202,16.031,15.241,22.026,6.627,7.261,-2.499,4.658,13.925,-0.798,6.303,-1.885,3.678,18.213,-9.317,17.662,9.31,12.513,1.658,8.512,11.582,6.026,-6.186,16.111,9.849,-2.514,17.004,15.696,13.405,4.832,2.439,17.44,4.057,-4.236,13.451,4.922,-3.316,14.231,17.037,11.346,-0.536,4.612,0.968,7.927,9.388,7.166,6.886,11.313,8.461,12.699,-10.13,11.164,14.577,0.416,4.32,-9.286,-10.107,3.139,11.853,0.957,3.251,7.373,8.545,7.095,-7.63,-1.545,8.685,6.267,2.926,-1.83,8.602],[26.71,21.454,11.436,34.728,31.521,19.813,26.092,22.929,25.155,8.481,27.517,24.03,21.761,24.537,15.224,18.12,20.798,24.062,10.432,13.258,11.141,20.205,17.344,1.091,10.209,15.997,16.448,7.905,18.247,20.529,-0.644,-3.55,6.118,5.693,12.111,7.826,17.494,17.013,-7.949,3.243,13.473,9.077,2.603,5.295,12.233,15.247,-1.316,16.12,-4.148,-0.011,7.544,5.92,9.377,4.875,7.112,1.385,-2.453,7.146,-10.577,-8.223,9.65,12.732,13.245,3.519,21.26,7.955,23.807,35.669,25.768,22.929,23.261,23.78,26.292,34.181,27.935,28.582,19.699,20.939,25.792,25.698,18.454,13.693,10.207,32.647,11.275,29.829,21.28,23.807,25.796,9.765,20.786,23.366,24.062,14.411,9.522,3.009,17.204,20.465,15.946,10.616,12.807,23.421,11.875,20.568,15.06,20.053,18.339,16.95,17.024,0.748,19.417,8.971,12.117,24.382,7.155,20.44,16.871,0.086,7.04,10.028,16.839,19.929,16.27,14.844,21.588,6.263,7.419,-2.426,4.697,13.781,-0.701,6.078,-2.157,3.848,18.256,-9.127,18.207,9.174,12.214,1.658,8.252,11.486,5.698,-6.462,16.365,10.136,-2.661,16.817,15.901,13.646,5.028,3.034,17.219,3.631,-3.903,13.584,4.776,-3.274,14.558,17.291,11.698,-0.501,4.35,1.017,8.0,9.522,7.238,6.368,11.088,8.325,12.62,-10.003,11.303,14.975,-0.121,4.62,-9.252,-9.87,2.844,12.202,1.141,3.663,7.886,8.221,6.83,-7.527,-1.484,8.413,5.78,2.957,-1.793,8.297],[26.683,21.321,11.409,34.655,31.433,19.713,26.088,22.643,24.958,8.352,27.493,23.986,21.8,24.477,15.263,18.107,20.809,23.988,10.36,13.323,11.326,20.158,17.309,1.065,10.084,16.008,16.385,7.946,18.134,20.508,-0.632,-3.701,6.073,5.876,11.917,7.875,17.601,16.997,-7.995,3.488,13.679,9.166,2.893,5.2,12.301,15.45,-1.237,16.131,-4.192,0.258,7.639,5.86,9.672,4.86,6.969,1.148,-2.377,7.12,-10.738,-8.16,9.63,12.69,13.298,3.696,21.047,8.157,23.501,35.263,25.573,22.908,23.371,23.692,26.16,34.257,27.824,28.619,19.585,20.854,25.89,26.042,18.591,14.401,10.245,32.721,11.389,29.884,21.315,24.429,25.772,9.588,20.643,23.55,23.795,13.948,9.49,2.755,16.966,19.765,15.904,10.924,13.172,23.365,11.801,20.123,14.601,19.659,18.58,17.047,17.243,0.262,19.359,8.818,12.69,24.44,8.334,20.675,16.583,0.252,7.494,10.283,17.22,19.777,16.758,15.2,20.691,6.512,7.149,-2.295,4.721,13.387,-1.097,5.661,-2.764,4.08,18.227,-9.226,17.978,9.164,12.356,1.508,8.565,11.859,5.458,-6.413,16.318,9.831,-2.542,16.939,16.402,13.379,5.381,2.736,17.292,3.126,-3.978,13.367,4.42,-2.684,14.75,17.418,12.176,-0.093,4.169,1.69,7.991,9.687,7.166,6.509,10.972,8.379,12.552,-9.931,11.317,14.874,-0.402,5.211,-9.597,-9.944,2.465,12.514,1.13,3.387,7.874,7.913,6.305,-7.427,-1.101,8.794,5.755,3.676,-1.97,8.259],[26.662,21.128,11.443,34.594,31.292,19.594,25.961,22.3,24.823,8.117,27.448,23.886,21.929,24.157,15.336,17.991,20.826,23.885,10.441,13.469,11.412,20.142,17.425,1.089,9.982,16.152,16.626,8.251,17.947,20.359,-0.511,-3.759,5.834,5.958,11.822,7.936,17.635,16.896,-8.16,3.791,13.589,9.304,3.158,5.03,12.448,15.691,-1.223,16.239,-4.181,0.471,7.764,5.888,9.805,4.989,6.817,0.787,-2.306,7.112,-10.799,-8.254,9.571,12.613,13.251,3.839,21.583,7.853,23.604,35.305,25.033,22.606,23.666,23.681,26.092,33.834,27.475,28.038,19.407,20.852,25.796,26.385,18.562,14.87,9.891,32.763,11.818,29.791,21.292,24.54,25.985,9.545,21.213,23.343,23.737,13.811,9.483,2.872,16.941,20.143,16.236,10.223,13.175,23.4,11.578,19.829,14.617,19.269,18.662,17.062,17.39,-0.042,20.068,8.894,12.536,24.529,8.614,20.344,16.61,-0.121,7.305,10.646,17.036,19.342,16.007,15.203,19.963,6.774,6.601,-2.34,4.826,13.437,-1.379,6.034,-2.72,4.395,18.058,-9.255,18.028,9.502,12.202,1.563,8.716,12.615,5.169,-6.5,16.838,10.012,-2.314,17.206,16.706,13.84,5.378,2.618,17.319,3.058,-4.439,13.582,4.772,-2.864,15.157,17.158,12.145,-0.015,4.549,2.02,8.657,10.092,6.939,6.835,11.236,8.298,12.662,-9.649,11.298,14.617,-0.38,5.101,-9.912,-9.982,2.352,12.69,0.936,3.321,8.179,8.599,6.632,-7.336,-0.656,8.692,6.091,3.936,-1.765,8.59],[26.642,21.029,11.549,34.481,31.169,19.543,25.931,22.14,24.605,8.121,27.408,23.771,21.93,23.93,15.437,17.875,20.809,23.831,10.562,13.517,11.454,19.896,17.613,1.008,9.981,16.259,16.738,8.703,17.846,20.142,-0.363,-3.741,5.426,6.083,11.923,7.976,17.556,16.776,-8.374,3.689,13.512,9.36,3.359,4.913,12.569,16.009,-1.256,16.289,-4.203,0.462,8.056,6.085,9.888,5.169,6.915,0.572,-2.176,7.289,-10.747,-8.284,9.4,12.621,13.249,3.838,21.279,7.824,23.686,35.457,25.015,22.375,23.429,23.363,26.608,33.859,27.853,28.08,19.653,20.564,25.731,26.239,18.397,14.527,9.811,32.501,11.608,29.492,21.041,24.176,25.462,9.525,22.039,23.164,23.478,14.104,9.735,2.94,17.208,20.591,16.266,9.647,13.186,23.331,11.258,19.983,15.112,19.228,18.391,16.462,17.254,0.376,21.204,9.078,12.241,24.369,8.04,20.412,17.125,-0.297,7.47,10.13,17.007,19.332,16.64,15.139,19.546,6.754,6.895,-2.354,4.541,13.593,-0.673,6.087,-2.652,4.261,17.93,-9.337,18.358,9.437,11.887,1.476,8.55,12.585,4.928,-6.625,16.63,10.325,-2.544,17.423,16.753,14.129,5.523,2.865,17.311,3.504,-4.167,14.029,4.784,-3.114,15.027,17.212,11.733,-0.528,4.956,1.622,8.683,10.769,7.166,6.834,10.995,8.129,12.775,-9.639,11.163,14.847,-0.621,4.633,-9.889,-9.923,2.296,12.064,1.403,3.804,8.397,8.9,7.107,-7.396,-0.895,8.236,6.194,3.517,-1.472,8.376],[26.67,21.093,11.709,34.308,31.116,19.62,26.052,22.122,24.438,8.183,27.54,23.688,21.795,23.778,15.281,17.875,20.978,23.848,10.716,13.37,11.308,19.609,17.775,0.943,10.1,16.359,16.767,8.91,17.908,19.911,-0.157,-3.76,5.13,6.15,12.003,8.015,17.406,16.558,-8.351,3.397,13.625,9.355,3.488,4.831,12.686,16.358,-1.387,16.26,-4.352,0.401,8.422,6.311,10.015,5.379,6.952,0.444,-2.112,7.389,-10.582,-8.277,9.17,12.638,13.197,3.573,21.244,7.782,23.074,35.361,25.136,22.251,23.287,23.044,27.267,34.097,27.859,28.503,19.229,20.451,25.956,25.41,18.028,13.889,10.199,32.369,11.582,29.478,20.679,23.56,25.356,9.592,22.064,23.222,23.22,14.5,9.626,2.796,17.132,20.699,16.073,10.019,13.119,23.674,11.047,19.57,15.008,19.245,18.518,16.679,17.247,0.643,21.344,8.88,12.892,23.966,8.348,20.387,17.335,0.167,7.939,10.213,17.214,19.156,16.815,15.439,19.855,6.777,6.696,-2.387,3.955,13.653,-0.464,6.184,-2.674,4.38,18.037,-9.848,18.641,9.325,12.18,1.765,8.796,12.083,4.743,-6.946,16.406,10.432,-2.552,17.022,16.944,13.587,5.138,3.184,17.379,4.08,-3.991,13.602,4.403,-2.955,14.798,17.576,11.79,-0.344,4.655,1.39,8.405,10.817,7.296,6.941,10.84,8.413,12.601,-9.873,11.424,14.775,-1.004,5.138,-9.47,-9.935,1.96,12.36,1.616,3.843,8.246,8.767,7.397,-7.65,-1.09,8.416,6.065,3.117,-1.394,8.704],[26.641,21.21,11.941,34.208,31.196,19.663,26.132,22.171,24.344,8.143,27.817,23.591,21.761,23.598,15.023,17.901,21.194,23.951,10.781,13.161,11.227,19.452,17.697,0.971,10.205,16.444,16.816,9.047,17.925,19.753,0.144,-3.874,4.921,6.129,11.985,8.104,17.265,16.333,-8.221,3.226,13.802,9.374,3.569,4.655,12.65,16.731,-1.351,16.294,-4.437,0.353,8.576,6.37,10.05,5.416,6.971,0.297,-2.162,7.48,-10.366,-8.297,9.122,12.718,13.032,3.3,21.55,7.689,22.742,35.153,24.8,21.984,23.175,23.146,27.191,33.214,27.66,29.126,19.273,20.495,26.407,25.013,18.167,13.614,10.258,32.399,12.04,29.477,21.015,23.785,26.301,9.235,21.513,22.932,22.992,14.179,9.782,2.834,17.244,20.981,16.445,10.431,12.952,23.4,11.641,19.562,14.77,18.756,18.603,16.673,17.29,0.321,20.946,9.093,12.799,23.67,8.742,20.184,17.157,0.249,7.582,10.591,17.008,19.249,16.705,15.274,20.434,6.668,6.225,-2.404,3.317,13.656,-0.72,6.742,-2.854,4.196,17.616,-9.755,18.835,9.494,12.668,1.969,8.99,12.214,5.111,-6.752,16.278,9.808,-2.627,16.483,17.166,13.397,4.976,2.44,17.176,4.914,-4.694,13.852,3.945,-3.022,15.311,17.437,12.365,-0.37,4.767,1.489,8.946,10.711,7.359,6.8,10.504,8.437,12.459,-10.129,11.36,14.725,-1.031,4.92,-9.136,-9.648,1.87,12.701,1.448,4.036,8.395,9.319,7.308,-7.664,-0.847,8.168,5.929,3.125,-1.376,8.554],[26.605,21.38,12.002,33.963,31.248,19.733,26.203,22.211,24.167,7.987,28.112,23.512,21.855,23.272,14.815,17.907,21.318,23.999,10.88,13.099,11.341,19.323,17.52,1.05,10.386,16.488,16.733,9.081,17.81,19.687,0.416,-3.895,4.774,6.056,11.905,8.277,17.153,16.201,-7.942,3.163,14.0,9.23,3.584,4.459,12.585,17.137,-1.245,16.236,-4.572,0.275,8.797,6.266,10.095,5.447,6.973,0.205,-2.17,7.397,-10.178,-8.272,9.074,12.771,12.875,3.072,21.401,7.681,23.153,34.863,24.821,21.927,22.775,23.554,26.286,33.249,27.904,29.268,19.455,20.473,26.496,25.211,18.606,13.924,10.502,32.626,12.14,29.669,21.259,24.297,26.81,9.467,21.188,22.91,22.9,13.652,9.993,2.867,17.435,21.334,16.347,10.228,13.011,23.362,12.431,19.866,14.423,18.347,18.454,16.276,16.842,0.159,20.159,9.204,12.031,23.995,8.624,19.898,16.522,0.252,7.806,10.149,16.984,19.264,17.231,15.29,20.747,6.869,6.022,-2.384,3.204,13.567,-0.139,6.519,-3.387,4.356,17.011,-8.922,18.789,9.607,12.086,2.54,9.021,12.482,5.471,-6.253,16.489,10.179,-2.73,16.705,17.298,14.201,4.584,1.838,17.376,5.225,-4.749,13.829,4.0,-3.0,15.82,17.071,12.303,-0.469,5.089,1.584,9.063,10.58,7.335,6.979,10.743,8.373,12.942,-10.103,11.37,14.484,-0.871,4.137,-8.957,-9.066,1.933,11.976,1.386,3.728,8.45,9.182,7.21,-7.764,-0.911,7.942,5.717,3.297,-1.36,8.837],[26.331,21.481,11.952,33.737,31.275,19.837,26.346,22.344,23.98,7.973,28.284,23.521,21.816,23.07,14.683,17.853,21.354,23.95,11.092,13.014,11.463,19.12,17.283,1.144,10.542,16.351,16.759,8.974,17.69,19.613,0.66,-3.874,4.656,6.02,11.647,8.514,17.038,16.211,-7.64,3.083,14.208,9.152,3.542,4.359,12.498,17.601,-1.223,16.112,-4.701,0.29,8.885,6.221,10.123,5.381,6.834,0.205,-2.256,7.246,-9.871,-8.186,9.014,12.751,12.829,2.93,21.689,7.75,23.073,35.101,24.821,21.55,22.988,23.5,26.617,33.562,27.956,29.307,19.653,20.73,26.722,26.023,18.986,14.117,10.494,32.816,11.777,29.737,21.363,23.868,26.66,9.266,21.658,23.501,22.834,13.428,10.086,3.045,17.602,21.407,15.76,10.234,13.246,23.827,12.456,19.907,14.312,18.262,17.979,16.355,16.905,0.272,19.727,9.175,12.203,23.8,8.51,20.083,16.411,0.372,8.156,10.367,17.167,18.883,17.714,15.394,20.556,7.255,6.261,-2.175,3.528,13.273,0.628,5.832,-3.508,4.158,17.599,-8.853,18.512,10.083,11.822,3.339,8.798,12.627,5.47,-6.038,16.403,10.558,-2.866,17.18,17.454,14.104,4.721,2.216,17.269,5.36,-4.349,13.815,4.1,-3.13,16.01,17.303,12.392,-0.51,4.842,1.561,9.075,10.491,7.17,6.543,10.636,8.404,13.109,-9.838,11.429,13.844,-0.751,3.74,-9.136,-9.007,1.941,11.605,0.804,4.026,8.67,9.521,6.886,-7.836,-1.186,8.235,6.243,2.963,-1.135,8.446],[26.161,21.501,11.788,33.624,31.193,20.024,26.548,22.554,23.799,7.952,28.37,23.654,21.845,23.028,14.594,17.86,21.379,23.871,11.333,13.035,11.549,18.884,17.284,1.177,10.611,16.169,17.018,8.805,17.534,19.477,0.973,-3.75,4.645,5.807,11.525,8.876,16.946,16.351,-7.513,3.163,14.042,9.265,3.696,4.357,12.445,18.025,-1.284,16.051,-4.639,0.293,8.86,6.24,10.25,5.338,6.753,0.272,-2.321,6.968,-9.665,-8.084,9.028,12.645,12.764,2.865,22.268,8.123,22.69,34.754,24.487,21.256,23.125,23.109,25.745,32.99,27.952,29.34,19.725,20.866,27.227,25.874,18.278,14.089,10.203,32.449,11.628,29.601,21.375,23.681,25.989,9.418,22.103,22.945,22.773,13.984,10.134,3.021,17.458,20.906,15.853,10.372,13.463,23.43,12.267,19.893,14.509,17.904,17.433,16.413,17.005,0.756,20.064,9.441,12.6,23.608,8.363,19.792,16.822,0.512,8.056,10.775,17.247,18.675,17.359,15.389,20.524,7.573,6.39,-2.181,3.491,13.223,0.427,5.872,-3.231,4.157,17.901,-9.088,18.284,10.484,12.053,3.881,8.298,12.153,4.96,-6.073,15.938,9.852,-3.019,16.759,17.818,13.711,4.919,2.728,16.894,5.253,-4.526,14.025,4.115,-3.128,16.199,17.306,12.345,-0.387,4.702,1.344,9.58,10.768,7.128,6.657,10.16,8.293,12.781,-9.778,11.32,13.806,-1.004,4.096,-9.097,-8.586,1.829,12.019,1.418,3.795,8.497,9.51,6.715,-7.694,-1.242,7.882,6.517,2.311,-1.278,8.04],[26.026,21.565,11.596,33.427,31.003,19.936,26.567,22.59,23.496,7.957,28.473,23.737,21.961,23.045,14.565,17.866,21.36,23.722,11.346,13.182,11.536,18.574,17.541,1.145,10.759,16.001,17.283,8.624,17.337,19.396,1.207,-3.53,4.773,5.586,11.661,9.2,16.852,16.412,-7.659,3.277,13.639,9.237,3.842,4.365,12.541,18.234,-1.32,15.983,-4.492,0.325,8.953,6.275,10.345,5.283,6.831,0.298,-2.305,6.739,-9.607,-8.056,8.875,12.45,12.667,2.82,21.608,7.739,22.754,34.443,24.512,21.628,23.103,23.819,25.206,32.779,28.074,29.607,19.722,21.04,26.937,25.187,18.339,13.946,10.034,32.197,11.504,29.339,21.26,24.254,26.059,9.761,22.259,22.616,22.576,14.069,10.639,3.006,17.557,20.701,16.094,10.483,13.269,23.544,12.321,20.236,14.536,17.627,17.814,16.428,16.583,1.091,20.366,9.408,12.395,23.625,8.778,19.427,16.845,0.591,7.334,10.727,17.559,18.788,17.516,15.785,20.422,8.053,6.05,-2.038,3.17,13.374,0.237,6.156,-3.067,3.719,17.455,-8.993,18.113,10.841,11.975,4.301,8.556,12.068,4.459,-6.102,16.401,10.317,-2.674,16.172,18.467,13.631,5.033,2.652,17.056,5.493,-4.483,13.792,3.848,-3.039,16.656,17.022,12.008,-0.399,4.785,1.303,9.333,11.372,7.198,6.348,10.52,8.188,12.901,-9.869,11.376,14.212,-1.03,4.55,-8.727,-8.165,1.723,12.238,1.647,3.82,8.515,9.616,7.064,-7.448,-1.106,7.856,5.763,2.697,-1.245,8.286],[25.85,21.543,11.44,33.228,30.849,19.688,26.556,22.681,23.22,7.831,28.516,23.909,22.089,23.178,14.547,17.857,21.344,23.627,11.181,13.249,11.487,18.399,17.599,1.244,10.86,15.983,17.506,8.397,17.36,19.379,1.142,-3.35,4.895,5.325,11.825,9.548,16.703,16.335,-7.792,3.385,13.364,9.234,4.003,4.257,12.648,18.434,-1.181,15.895,-4.334,0.353,9.176,6.32,10.386,5.37,6.861,0.278,-2.214,6.627,-9.506,-7.977,8.702,12.366,12.627,2.958,21.364,7.496,22.802,34.796,24.349,21.797,23.197,24.175,25.809,32.809,28.125,29.635,19.985,21.326,26.88,24.542,18.332,13.802,9.8,32.296,11.441,29.189,21.271,24.133,26.425,9.585,22.032,23.235,22.353,13.75,10.608,3.145,17.628,20.908,16.219,10.543,13.167,23.447,12.494,20.165,14.552,17.151,18.19,16.6,16.179,0.413,20.522,9.473,12.222,23.712,8.478,19.376,16.569,0.847,6.899,10.302,17.523,18.619,17.689,15.856,20.269,8.202,5.97,-1.88,3.15,13.315,0.606,6.184,-2.939,3.484,17.436,-9.062,18.15,11.09,12.017,4.355,8.828,12.503,4.789,-6.16,16.661,10.379,-2.409,16.379,18.365,13.193,4.96,2.44,16.918,5.505,-3.946,14.099,3.578,-2.901,16.747,17.407,11.535,-0.447,4.793,1.562,8.811,11.529,7.297,5.802,10.486,8.534,12.846,-9.807,11.047,14.377,-0.7,4.341,-8.806,-8.528,1.917,12.285,1.2,3.893,8.806,9.725,7.269,-7.839,-1.138,7.944,5.789,3.158,-1.08,7.782],[25.634,21.51,11.266,33.128,30.856,19.405,26.599,22.871,23.072,7.669,28.519,24.069,22.194,23.266,14.519,17.987,21.272,23.694,10.944,13.272,11.452,18.282,17.374,1.232,10.82,16.093,17.567,8.117,17.537,19.411,0.975,-3.155,4.899,5.117,11.84,9.645,16.577,16.276,-7.94,3.45,13.149,9.215,4.17,4.076,12.785,18.55,-0.999,16.016,-4.129,0.346,9.23,6.363,10.47,5.468,6.926,0.265,-2.109,6.603,-9.435,-7.927,8.639,12.353,12.736,3.21,21.935,7.304,22.822,34.556,23.953,21.749,23.3,23.944,26.565,32.542,27.926,29.656,19.739,21.125,27.353,24.244,18.646,13.684,9.953,32.193,11.418,29.408,20.985,23.948,26.441,9.135,21.715,23.683,22.602,13.797,10.142,3.04,17.617,20.993,15.725,10.159,13.204,23.537,12.577,19.989,14.527,17.14,18.389,16.445,16.1,0.377,20.306,9.606,12.27,23.781,7.94,19.266,17.081,0.678,7.003,10.336,17.236,18.699,17.981,15.961,20.621,8.248,6.293,-1.829,3.421,13.553,0.336,5.804,-2.995,3.283,17.724,-9.267,18.105,11.213,12.277,4.172,8.648,13.049,5.343,-6.329,16.365,10.274,-2.662,16.495,18.179,13.02,5.2,2.651,16.763,5.764,-4.504,13.96,3.653,-2.772,16.976,17.322,11.273,-0.066,4.866,1.595,9.555,11.447,7.508,6.153,10.153,8.586,12.692,-9.545,11.022,14.009,-0.575,4.755,-8.409,-9.024,2.124,11.746,1.053,4.531,8.829,9.825,7.128,-8.236,-1.14,7.852,6.243,3.016,-0.959,7.331],[25.466,21.581,11.147,32.933,31.101,19.277,26.592,22.952,23.075,7.547,28.558,24.035,22.205,23.255,14.472,18.151,21.173,23.854,10.718,13.292,11.461,18.185,17.21,1.202,10.693,16.308,17.421,7.913,17.718,19.503,0.782,-3.02,4.922,5.066,11.913,9.411,16.444,16.25,-8.093,3.396,12.886,9.08,4.473,3.893,12.94,18.583,-0.808,16.194,-4.183,0.358,9.229,6.335,10.564,5.676,6.948,0.255,-2.068,6.679,-9.327,-8.026,8.703,12.419,12.792,3.475,21.744,7.445,22.468,34.35,23.912,21.592,23.456,23.902,25.769,32.676,27.549,29.681,19.937,21.215,27.141,24.559,17.895,13.441,9.963,32.103,11.196,29.217,20.856,24.182,26.684,9.26,22.065,23.53,22.695,14.027,10.217,2.972,17.867,20.868,15.46,10.027,13.204,24.021,12.431,19.831,14.609,17.153,18.483,16.424,16.129,0.882,20.102,9.577,12.297,23.897,7.97,19.558,16.843,0.461,6.582,10.85,17.608,19.334,18.028,15.627,20.995,8.413,6.169,-1.367,3.699,13.618,0.093,5.854,-3.012,3.233,17.348,-9.541,17.987,11.135,12.229,3.84,8.135,13.413,5.568,-6.748,16.422,9.994,-2.463,16.209,18.108,13.453,5.014,3.345,16.87,5.722,-4.511,13.639,3.716,-2.523,16.974,17.571,11.126,0.142,4.657,1.633,10.191,11.324,7.083,5.916,10.409,8.509,12.804,-9.628,11.123,13.943,-0.632,4.719,-8.199,-9.099,1.99,11.598,1.199,5.129,8.692,9.939,6.82,-7.751,-1.008,7.732,6.521,3.13,-0.86,7.719],[25.457,21.571,11.017,32.737,31.241,19.175,26.505,22.933,23.169,7.621,28.53,23.987,22.25,23.145,14.463,18.25,21.137,24.183,10.608,13.357,11.503,18.214,17.069,1.38,10.648,16.556,17.193,7.73,18.007,19.53,0.615,-2.959,4.989,5.041,11.946,9.261,16.253,16.222,-8.275,3.319,12.702,8.758,4.718,3.76,13.049,18.489,-0.702,16.237,-4.118,0.45,9.423,6.123,10.637,6.021,6.871,0.255,-1.992,6.643,-9.27,-8.119,8.925,12.569,12.77,3.598,21.776,7.957,22.738,34.375,23.804,21.605,23.599,24.407,24.86,32.25,28.04,29.467,19.83,21.34,26.995,24.519,17.714,13.107,9.597,32.265,11.18,29.526,20.716,23.669,26.934,9.226,22.396,23.159,22.603,14.179,10.443,3.144,18.0,20.429,15.726,10.076,13.429,23.617,12.264,20.066,14.398,16.871,18.076,16.788,16.231,1.356,20.141,9.262,12.718,23.626,8.087,19.265,16.262,0.341,6.379,10.929,17.895,19.634,18.528,15.54,21.078,8.047,6.415,-1.549,3.394,13.344,0.403,6.007,-2.609,3.321,17.58,-9.741,17.535,10.812,12.441,3.48,8.194,13.23,5.643,-6.543,16.156,9.541,-2.334,16.598,17.967,13.123,5.085,3.38,16.961,5.915,-3.93,14.276,3.571,-2.395,17.12,17.682,10.845,0.137,4.606,1.37,9.213,10.829,6.918,6.17,10.502,8.502,13.024,-10.012,11.18,14.076,-1.086,4.785,-8.4,-8.557,1.708,11.954,1.426,5.205,8.911,9.682,6.866,-7.726,-0.864,7.781,6.165,2.983,-1.236,7.888],[25.492,21.567,10.899,32.61,31.265,19.151,26.528,23.006,23.321,7.839,28.364,23.936,22.426,22.933,14.463,18.322,21.112,24.36,10.611,13.486,11.608,18.284,16.975,1.628,10.529,16.823,17.094,7.578,18.062,19.554,0.558,-2.987,4.926,4.967,11.886,9.171,16.134,16.157,-8.31,3.37,12.536,8.541,4.824,3.651,13.207,18.412,-0.833,16.176,-3.742,0.407,9.399,5.975,10.683,6.345,6.839,0.291,-2.007,6.721,-9.361,-8.282,9.066,12.701,12.704,3.497,21.801,7.89,22.646,34.18,23.924,21.656,23.895,24.446,25.222,32.001,28.04,29.775,19.754,21.659,26.975,25.097,18.085,13.345,9.333,32.595,10.957,29.703,20.689,23.578,26.881,9.271,22.152,22.945,22.143,14.088,10.153,3.402,18.177,20.093,15.67,9.957,13.238,23.858,12.04,20.421,14.811,16.817,18.493,16.896,16.496,1.34,20.452,9.402,12.735,24.038,7.845,19.218,16.058,0.121,6.528,10.802,17.676,19.722,18.743,15.534,20.69,7.91,6.188,-1.589,3.342,13.618,-0.247,5.883,-2.308,3.363,17.564,-9.7,17.471,10.746,12.225,3.408,7.94,12.901,5.359,-6.677,16.058,9.947,-2.009,16.347,17.754,12.244,5.275,3.015,17.164,6.105,-4.054,14.261,3.616,-2.288,17.012,17.267,10.779,0.181,5.172,1.564,9.255,10.925,7.301,5.843,10.677,8.129,13.135,-10.036,11.382,13.837,-1.391,5.111,-8.749,-7.99,0.967,12.005,1.388,5.611,9.108,10.382,6.692,-7.948,-0.873,8.047,5.83,2.982,-0.901,7.158],[25.708,21.524,10.813,32.502,31.205,19.267,26.519,23.092,23.557,8.033,28.221,23.837,22.627,22.67,14.403,18.416,21.024,24.482,10.635,13.592,11.628,18.41,16.867,1.781,10.401,16.947,17.245,7.442,18.01,19.526,0.448,-3.008,4.775,4.753,11.857,9.042,16.132,16.138,-8.239,3.551,12.364,8.656,4.948,3.446,13.352,18.26,-1.015,16.126,-3.497,0.348,9.315,6.104,10.937,6.614,6.868,0.318,-1.929,6.602,-9.536,-8.419,9.07,12.753,12.53,3.409,21.478,7.591,22.283,34.195,24.24,21.491,24.125,24.316,25.373,32.53,27.824,29.831,19.724,21.328,26.912,25.575,17.965,13.921,9.299,32.774,10.562,29.765,20.961,23.89,27.307,9.775,21.942,23.434,21.96,14.25,9.819,3.383,18.176,20.291,15.515,9.81,13.341,24.144,11.903,20.517,15.174,17.015,18.852,16.892,16.769,0.837,20.474,9.288,12.628,24.798,7.436,19.474,16.01,0.206,6.483,10.901,17.343,19.538,18.61,15.523,20.749,8.26,5.788,-1.716,3.266,13.479,-0.137,5.445,-2.388,3.078,17.285,-9.719,17.34,10.714,12.101,3.221,8.17,12.689,5.293,-6.766,16.028,9.591,-1.697,15.743,17.862,11.93,5.12,2.998,16.927,6.139,-4.047,13.965,3.592,-2.666,16.968,17.502,11.129,0.012,5.959,1.732,9.395,11.449,7.442,6.108,10.815,8.284,12.673,-10.024,11.207,13.77,-1.375,4.674,-8.527,-8.337,0.902,11.909,1.039,5.765,9.118,10.201,6.465,-7.977,-0.69,8.319,5.685,3.229,-0.974,7.48],[26.09,21.47,10.729,32.638,31.187,19.448,26.614,23.095,23.81,8.195,28.159,23.737,22.623,22.468,14.344,18.508,20.915,24.685,10.678,13.688,11.623,18.575,16.828,1.668,10.362,16.84,17.303,7.168,17.95,19.481,0.383,-3.082,4.656,4.554,11.823,9.041,16.139,16.07,-8.28,3.696,12.318,8.917,5.067,3.271,13.424,18.153,-1.221,16.171,-3.371,0.294,9.221,6.404,11.253,6.76,6.893,0.394,-1.859,6.44,-9.79,-8.518,9.039,12.606,12.317,3.362,21.621,7.528,22.893,34.22,24.195,20.909,23.994,24.082,24.717,32.291,27.702,29.327,19.725,21.288,26.691,25.46,18.086,14.399,9.266,32.275,11.078,29.436,21.048,24.113,27.925,10.03,22.141,24.068,22.4,14.341,9.885,3.321,18.286,20.331,15.382,9.509,13.35,23.707,11.544,20.175,14.989,17.363,18.664,17.081,17.038,1.161,20.288,9.126,12.761,25.231,7.724,19.709,16.088,0.207,6.411,11.03,17.248,19.355,18.701,15.913,20.882,8.131,5.637,-1.81,3.177,13.186,0.651,5.028,-2.456,2.812,17.554,-9.701,17.373,10.656,12.636,3.378,8.169,12.69,4.874,-6.506,16.055,9.468,-1.949,15.769,17.781,12.511,5.541,2.997,16.875,5.817,-3.825,14.123,3.351,-2.982,16.474,17.781,10.714,-0.241,5.532,1.426,9.06,12.089,7.137,5.728,10.588,8.486,12.457,-10.188,11.494,13.901,-1.118,4.693,-8.563,-9.266,1.396,12.007,1.323,5.718,9.758,10.076,6.755,-8.214,-0.629,8.086,6.116,3.482,-1.236,7.466],[26.219,21.607,10.838,32.744,31.082,19.608,26.791,23.227,23.96,8.278,28.086,23.663,22.438,22.387,14.369,18.622,20.732,24.839,10.756,13.705,11.642,18.733,16.828,1.484,10.295,16.76,17.164,7.026,17.89,19.504,0.503,-3.143,4.65,4.342,11.85,9.071,16.174,16.088,-8.319,3.87,12.331,9.092,5.201,3.169,13.419,17.948,-1.497,16.305,-3.31,0.301,9.117,6.547,11.647,6.726,7.022,0.476,-1.986,6.263,-10.109,-8.663,8.889,12.558,12.27,3.32,21.448,8.145,23.125,34.423,24.666,20.798,23.633,24.171,25.192,32.611,27.766,29.07,20.126,21.509,26.434,25.721,18.244,14.525,9.374,32.06,11.014,29.293,20.969,24.223,28.076,10.142,22.221,23.853,22.161,14.224,9.481,3.26,18.367,20.331,15.31,9.79,13.574,23.81,11.7,19.982,15.106,17.671,18.476,16.896,16.747,1.609,19.978,9.277,12.979,25.182,7.859,19.984,16.145,0.475,5.763,10.794,17.634,19.407,18.429,15.754,20.918,8.038,5.964,-1.674,3.131,13.675,-0.216,5.461,-2.846,2.629,17.398,-9.743,17.601,10.834,12.058,3.301,8.287,13.082,4.865,-6.862,15.909,10.297,-2.225,15.929,17.599,12.581,5.65,3.217,17.245,5.3,-3.438,14.35,3.287,-3.246,16.354,17.582,10.493,-0.466,5.586,1.38,9.017,11.592,7.665,5.699,10.281,8.38,12.758,-10.374,11.234,13.735,-0.809,4.659,-8.923,-9.738,2.072,11.624,1.351,5.833,10.202,9.785,6.763,-8.368,-0.943,7.529,6.254,3.284,-0.706,7.072],[26.176,21.751,11.047,32.911,30.98,19.693,26.8,23.381,24.22,8.389,27.967,23.601,22.117,22.343,14.437,18.68,20.496,24.974,10.884,13.637,11.696,18.88,16.814,1.399,10.107,16.644,17.07,6.986,18.021,19.488,0.652,-3.273,4.753,4.258,11.825,8.913,16.186,16.158,-8.319,4.047,12.317,9.277,5.229,3.4,13.392,17.667,-1.853,16.404,-3.281,0.382,8.914,6.52,11.886,6.75,7.172,0.532,-2.067,6.159,-10.288,-8.775,8.72,12.656,12.331,3.243,21.649,8.452,22.753,34.576,24.942,21.585,23.891,24.682,26.041,32.999,28.082,29.085,19.864,21.815,26.635,25.077,18.274,14.522,9.58,32.402,10.772,29.297,21.241,23.996,27.738,10.005,21.898,23.083,21.836,14.093,10.03,3.222,18.242,20.347,15.289,10.182,13.405,23.943,11.949,20.229,15.024,17.748,18.511,17.049,16.432,0.919,20.283,9.34,12.799,24.682,7.561,19.658,16.14,0.699,5.545,10.613,17.562,18.976,18.198,15.382,20.902,7.768,6.365,-1.561,3.127,13.658,-0.035,5.223,-3.13,2.737,17.744,-9.846,17.661,10.488,11.871,3.729,8.356,13.211,4.972,-6.88,15.734,10.357,-1.853,16.286,17.309,12.664,5.738,3.728,17.332,4.71,-3.721,14.338,3.168,-3.577,16.109,17.541,10.658,-0.777,5.572,1.553,9.208,11.966,7.907,5.215,10.099,8.569,12.538,-10.494,11.038,13.422,-0.506,4.678,-8.952,-9.856,2.061,11.341,1.216,5.99,10.462,9.822,7.18,-8.373,-0.833,7.258,5.986,3.358,-1.117,7.384],[26.073,21.664,11.235,33.158,31.185,19.747,26.684,23.561,24.504,8.512,27.929,23.524,21.876,22.487,14.507,18.702,20.352,24.921,11.015,13.632,11.646,18.918,16.844,1.332,9.962,16.398,16.958,7.051,18.028,19.552,0.734,-3.457,4.822,4.125,11.735,8.657,16.267,16.191,-8.202,4.061,12.325,9.385,5.217,3.707,13.413,17.317,-2.087,16.421,-3.31,0.457,8.757,6.614,12.031,6.821,7.202,0.661,-2.064,6.223,-10.327,-8.709,8.667,12.695,12.222,3.257,21.927,8.025,23.221,34.633,24.877,21.322,23.635,24.788,25.55,32.815,27.944,29.269,19.775,21.791,26.402,25.249,18.398,14.526,9.808,32.195,10.732,29.567,21.368,23.521,27.624,10.16,21.363,22.596,22.074,14.116,10.225,2.907,18.139,19.64,15.298,9.551,13.353,24.088,12.626,20.432,14.771,17.406,18.854,17.464,16.896,0.463,20.584,8.864,12.721,24.624,7.395,19.94,16.194,0.699,5.818,10.756,17.422,19.5,18.129,15.361,20.659,7.602,6.234,-1.811,3.367,13.27,0.77,4.905,-2.973,2.533,17.352,-9.812,17.137,10.096,12.28,3.759,8.384,13.577,5.037,-6.725,16.125,10.021,-1.51,16.585,16.802,12.236,5.876,3.689,17.183,4.812,-3.573,14.297,3.365,-3.911,16.023,18.016,10.616,-1.096,5.454,1.756,8.816,12.164,7.082,5.498,10.104,8.564,12.61,-10.581,11.49,13.692,-0.943,4.936,-9.191,-9.582,1.771,12.196,1.434,6.191,10.359,9.811,6.537,-8.835,-0.816,7.594,6.091,3.348,-1.312,7.33],[26.142,21.498,11.343,33.215,31.396,19.725,26.598,23.733,24.628,8.669,28.072,23.34,21.648,22.589,14.626,18.739,20.18,24.822,11.152,13.651,11.555,18.898,16.851,1.187,9.676,16.26,16.925,7.139,18.105,19.563,0.739,-3.573,4.989,3.868,11.608,8.382,16.463,16.166,-8.101,3.906,12.208,9.34,5.167,3.898,13.551,16.928,-2.186,16.456,-3.295,0.527,8.594,6.676,12.055,6.899,7.146,0.653,-2.113,6.437,-10.297,-8.605,8.606,12.765,12.153,3.396,21.246,8.206,23.634,34.78,25.347,21.081,23.084,24.504,24.936,33.106,27.813,29.3,20.056,21.915,26.515,25.723,18.554,14.343,9.841,32.41,10.962,29.607,21.401,23.476,27.57,10.019,20.953,22.704,22.645,14.086,10.214,2.495,18.161,19.779,15.15,9.21,13.437,23.499,12.696,20.464,15.054,17.338,18.46,17.393,16.757,0.65,20.639,8.957,13.101,24.946,7.272,19.858,16.462,0.969,6.751,10.623,17.325,19.606,17.719,15.735,20.7,7.609,6.433,-2.206,3.596,13.129,0.401,5.057,-3.043,2.279,17.257,-9.227,17.326,10.035,12.138,4.063,8.781,13.567,5.159,-6.349,16.349,10.206,-1.57,16.389,16.781,11.842,5.777,3.378,17.114,4.736,-3.333,14.318,4.0,-3.899,15.826,17.98,10.551,-1.028,5.724,1.767,8.775,12.155,7.191,5.441,10.096,8.616,12.736,-10.37,11.618,13.693,-0.964,4.79,-9.487,-9.141,1.668,11.905,1.376,6.019,10.36,9.967,6.68,-8.811,-0.832,8.121,6.148,3.563,-0.991,7.3],[26.228,21.403,11.406,33.161,31.519,19.81,26.592,23.732,24.743,8.722,28.37,23.146,21.492,22.62,14.641,18.814,19.998,24.602,11.287,13.846,11.387,18.878,16.743,1.011,9.411,16.169,16.988,7.276,18.113,19.507,0.745,-3.568,5.35,3.672,11.51,8.257,16.623,16.127,-7.91,3.736,12.05,9.259,5.082,4.026,13.705,16.567,-2.183,16.397,-3.274,0.501,8.538,6.844,11.877,6.926,7.086,0.709,-2.188,6.609,-10.198,-8.568,8.602,12.836,12.161,3.588,21.267,8.732,23.25,34.829,25.166,21.419,22.465,24.753,25.331,33.276,27.851,29.227,19.674,22.05,26.992,25.791,18.262,14.476,9.838,32.709,11.203,29.745,21.166,23.598,27.697,10.076,20.609,22.965,22.636,14.472,10.076,2.269,18.103,19.822,15.026,9.423,13.337,23.183,12.612,20.179,15.311,17.381,18.613,17.295,16.419,1.38,20.222,9.027,12.913,25.408,7.419,19.713,16.377,0.946,6.649,10.421,17.177,19.151,17.706,15.927,20.953,7.86,6.709,-2.829,3.96,13.114,0.534,4.576,-2.65,2.041,17.616,-9.407,18.066,9.83,11.568,4.36,8.58,12.987,5.206,-6.513,15.966,10.296,-1.526,16.359,16.924,12.034,5.638,3.199,17.402,4.911,-3.324,14.534,4.272,-3.834,15.557,17.476,10.479,-0.958,5.984,1.764,8.57,12.755,7.231,5.576,10.154,8.793,12.528,-10.237,11.73,13.746,-0.868,4.821,-8.984,-9.512,1.668,11.096,1.346,5.809,10.639,9.607,7.138,-8.125,-0.851,7.585,6.621,3.553,-1.267,7.721],[26.358,21.367,11.541,33.174,31.642,19.912,26.596,23.754,24.789,8.746,28.625,23.029,21.205,22.674,14.684,18.923,19.812,24.297,11.403,14.026,11.171,18.898,16.64,0.936,9.329,16.092,16.902,7.375,18.058,19.38,0.828,-3.481,5.844,3.438,11.394,8.33,16.746,16.104,-7.83,3.678,12.047,9.155,4.862,4.118,13.799,16.193,-2.114,16.258,-3.263,0.326,8.488,7.128,11.803,6.97,7.247,0.725,-2.312,6.834,-10.123,-8.529,8.581,12.783,12.125,3.703,21.486,8.276,23.36,34.709,25.107,21.602,22.302,25.197,25.812,32.824,27.888,29.771,19.487,22.235,26.921,25.603,18.193,14.565,9.76,32.761,11.204,30.139,21.242,23.443,27.389,10.087,20.735,22.735,22.295,14.743,10.115,2.368,18.353,20.014,15.082,9.368,12.981,23.253,12.339,19.489,15.302,17.508,19.0,17.275,16.706,1.576,19.814,8.446,12.91,25.809,7.337,19.838,16.135,0.89,6.209,10.369,17.51,19.318,17.751,15.727,20.938,7.596,7.119,-3.09,4.16,13.039,0.279,4.443,-2.394,2.053,17.203,-9.686,17.95,10.042,11.789,4.854,8.345,13.485,5.55,-6.89,15.721,9.896,-1.83,16.28,16.468,12.304,5.493,2.907,17.461,5.571,-3.304,14.602,4.113,-4.024,15.548,17.61,10.186,-1.104,5.791,1.822,8.241,12.841,7.471,6.01,9.997,8.897,13.116,-10.345,11.546,13.532,-0.47,5.451,-8.47,-10.236,2.258,11.437,1.093,6.107,10.413,9.33,6.878,-7.647,-1.094,7.221,6.657,3.248,-1.412,7.807],[26.565,21.42,11.744,33.156,31.633,19.991,26.498,23.941,24.877,8.615,28.611,23.037,20.863,22.675,14.755,18.933,19.694,24.057,11.52,14.108,10.979,19.022,16.758,0.95,9.207,16.117,16.694,7.197,18.121,19.147,0.808,-3.413,6.209,3.266,11.373,8.544,16.733,16.009,-8.017,3.648,12.106,9.17,4.712,4.248,13.835,15.819,-2.079,16.284,-3.222,0.029,8.495,7.292,11.764,7.058,7.482,0.736,-2.437,7.106,-10.169,-8.532,8.532,12.729,12.049,3.834,21.323,8.103,23.525,34.774,25.322,21.652,22.538,25.079,25.827,32.957,28.009,29.727,19.472,22.112,27.006,25.293,18.677,14.722,10.14,32.928,11.125,30.084,21.614,23.256,27.172,10.274,20.26,22.187,22.155,14.617,10.373,2.48,18.318,20.056,15.066,9.244,12.738,23.411,12.911,19.456,15.15,17.8,18.569,17.527,16.479,1.215,19.835,9.092,13.582,25.213,7.802,19.494,16.436,1.053,6.772,9.944,17.338,19.283,17.739,15.368,20.603,7.432,7.548,-3.341,4.731,12.889,0.473,4.599,-2.549,2.053,17.184,-9.558,17.724,10.183,12.063,5.427,8.288,13.99,5.918,-6.675,15.841,9.908,-2.135,16.613,15.763,11.998,5.424,2.64,16.872,5.423,-3.522,14.916,4.12,-3.95,15.639,17.825,10.316,-1.359,5.848,1.43,8.837,12.612,7.881,5.667,9.746,9.243,13.204,-10.251,11.28,13.556,-0.151,5.232,-8.951,-10.292,2.437,11.939,0.871,6.165,10.226,9.915,7.419,-7.805,-1.415,7.145,6.383,3.509,-1.203,7.821],[26.649,21.381,12.059,33.2,31.558,20.071,26.396,24.128,25.201,8.477,28.205,22.985,20.633,22.535,14.805,18.852,19.694,23.899,11.792,14.148,10.957,19.146,16.927,0.984,9.201,16.21,16.484,7.051,18.065,18.974,0.781,-3.56,6.405,3.241,11.519,8.803,16.642,15.981,-8.174,3.545,12.122,9.338,4.757,4.447,13.782,15.522,-2.047,16.392,-3.257,-0.158,8.766,7.491,11.717,7.09,7.515,0.771,-2.525,7.232,-10.294,-8.684,8.512,12.709,12.012,3.929,21.525,8.352,23.463,34.91,25.464,21.67,22.383,24.81,25.873,33.446,28.026,29.667,19.491,22.385,27.351,25.602,18.812,14.892,10.594,32.601,11.526,29.848,21.609,23.922,26.684,10.331,19.789,21.963,22.328,14.303,10.724,2.771,17.736,19.506,15.265,9.349,12.611,22.75,13.494,20.037,15.558,17.819,18.253,17.557,16.001,0.683,20.104,9.242,13.448,24.127,7.558,19.657,16.479,0.954,7.06,9.723,16.412,19.335,17.791,15.408,20.154,7.852,7.49,-2.873,5.045,12.819,0.904,4.242,-2.294,1.799,17.08,-9.174,17.807,10.104,11.888,6.016,8.471,13.813,6.359,-6.614,15.921,10.038,-1.871,16.616,15.399,12.046,5.159,2.638,16.911,4.749,-3.535,14.721,4.03,-3.871,15.505,17.867,10.702,-1.271,5.989,1.287,8.827,12.81,7.187,5.705,9.667,9.358,12.117,-10.233,11.617,13.531,-0.476,5.462,-9.546,-10.104,2.427,11.395,0.61,6.131,10.151,10.06,7.094,-7.541,-1.686,7.495,6.898,3.929,-1.471,8.101],[26.725,21.232,12.323,33.417,31.455,19.975,26.296,24.236,25.552,8.364,28.058,22.891,20.51,22.251,14.819,18.818,19.809,23.588,12.091,14.211,11.051,19.219,16.989,1.107,9.343,16.271,16.278,6.961,17.842,18.897,0.793,-3.621,6.532,3.297,11.632,8.966,16.496,16.023,-8.082,3.36,12.224,9.545,4.927,4.606,13.723,15.192,-2.06,16.562,-3.311,-0.087,8.91,7.557,11.724,7.056,7.525,0.852,-2.646,7.266,-10.386,-8.835,8.521,12.694,11.891,4.08,21.524,8.45,24.108,35.009,25.987,21.61,22.18,25.201,25.782,33.292,27.941,29.163,19.514,22.497,26.317,25.57,18.303,14.754,10.515,32.364,12.029,29.763,21.346,24.002,26.124,10.022,19.582,22.249,22.445,14.338,11.07,2.871,17.713,19.442,15.592,9.677,12.634,22.582,13.62,19.929,15.589,17.882,18.381,17.626,16.146,0.613,19.98,8.556,13.23,23.687,7.071,20.229,16.457,1.078,6.843,9.966,16.161,19.233,18.051,15.341,20.084,8.147,7.595,-2.33,4.923,13.194,0.501,3.743,-2.816,1.748,17.066,-9.551,17.891,10.401,11.996,6.095,8.904,12.736,6.098,-6.524,15.808,10.269,-1.613,16.414,15.57,12.304,5.145,2.748,17.362,4.549,-3.551,14.0,4.604,-3.773,14.99,18.012,10.666,-0.597,5.846,1.282,8.618,12.882,7.349,5.872,10.01,9.229,11.49,-10.026,11.456,13.193,-0.836,5.126,-9.247,-10.454,1.911,11.236,0.697,6.118,10.471,9.963,7.155,-8.462,-1.615,7.932,7.19,3.647,-1.637,7.948],[26.547,21.204,12.226,33.522,31.259,19.703,26.266,24.187,25.921,8.216,28.038,22.754,20.51,22.05,14.808,18.892,19.884,23.355,12.124,14.269,11.16,19.328,17.026,1.286,9.497,16.242,16.091,6.81,17.588,18.96,0.587,-3.55,6.468,3.298,11.794,8.899,16.348,15.98,-7.98,3.259,12.33,9.751,5.1,4.658,13.53,14.906,-1.946,16.704,-3.264,0.144,8.797,7.592,11.847,6.978,7.624,0.973,-2.596,7.229,-10.362,-8.906,8.651,12.595,11.735,4.063,21.09,8.693,24.342,35.31,26.169,20.853,21.769,25.513,26.103,33.177,27.748,29.006,19.456,22.507,26.358,26.059,17.92,14.868,10.663,32.843,11.927,29.866,20.758,23.778,25.5,9.23,19.643,22.426,21.699,14.756,10.949,3.116,17.754,19.786,15.616,9.609,13.0,22.715,13.789,19.499,15.35,17.769,18.051,17.702,16.561,1.028,19.725,8.82,13.734,23.581,7.708,20.165,16.502,1.391,6.739,10.414,16.476,18.868,17.961,14.911,20.309,8.083,7.899,-2.039,5.179,13.398,0.578,3.452,-3.071,2.142,17.21,-9.36,17.401,10.736,11.961,5.927,8.812,12.82,5.67,-6.404,15.891,10.128,-2.151,16.408,15.711,12.266,5.141,2.514,17.698,5.05,-3.47,14.184,4.827,-3.627,14.836,18.092,10.687,-0.794,5.857,1.338,9.161,12.569,7.958,5.875,9.848,9.228,11.988,-10.627,11.535,13.312,-0.767,5.714,-8.646,-10.285,1.992,11.435,1.125,6.24,10.482,9.823,7.62,-8.905,-1.358,8.258,6.722,3.412,-1.691,8.086],[26.38,21.191,12.048,33.488,31.249,19.32,26.286,24.139,26.226,8.029,28.116,22.704,20.495,21.779,14.969,18.884,19.869,23.191,12.027,14.364,11.424,19.35,17.039,1.487,9.702,16.12,15.927,6.806,17.283,19.114,0.361,-3.276,6.411,3.244,11.859,8.849,16.204,15.964,-7.998,3.285,12.365,9.779,5.262,4.615,13.374,14.807,-1.741,16.823,-3.189,0.325,8.744,7.747,11.87,6.916,7.739,1.042,-2.343,7.121,-10.112,-9.101,8.787,12.58,11.75,3.987,21.551,8.772,24.656,35.227,26.04,20.908,21.515,25.149,26.225,33.542,27.586,29.369,19.328,22.456,26.892,26.046,17.996,15.019,10.409,32.721,11.544,29.71,20.754,23.35,25.634,8.596,20.109,21.859,21.067,14.404,10.736,3.197,17.771,19.832,15.453,9.792,13.153,22.752,13.538,19.625,15.383,17.647,17.737,17.528,16.55,1.582,19.485,8.948,13.432,23.931,7.585,19.927,16.453,1.238,6.056,10.547,16.511,18.731,17.538,14.774,20.579,7.759,8.004,-1.671,5.222,13.428,0.343,3.337,-3.021,1.799,17.079,-8.898,17.078,10.228,12.182,5.626,8.898,12.832,5.991,-6.169,15.948,10.207,-2.605,15.871,15.355,12.127,4.617,2.206,17.718,5.801,-3.801,14.786,4.788,-3.565,14.874,18.045,10.732,-0.975,5.705,1.509,8.829,12.862,8.064,6.314,9.838,9.617,12.928,-10.776,11.261,13.164,-0.202,5.655,-8.509,-10.09,2.545,11.133,1.085,6.578,10.342,9.912,7.507,-8.483,-1.033,8.133,6.743,3.591,-1.38,8.5],[26.279,21.15,11.812,33.513,31.412,19.054,26.267,24.045,26.325,7.833,28.287,22.664,20.417,21.558,15.136,18.726,19.873,23.237,11.921,14.393,11.693,19.274,16.967,1.635,9.922,15.941,15.826,6.785,17.095,19.065,0.302,-3.053,6.418,3.194,11.739,8.776,16.03,16.146,-7.87,3.192,12.318,9.684,5.453,4.653,13.276,14.774,-1.637,16.843,-3.25,0.444,8.773,7.893,11.801,6.837,7.966,1.177,-2.038,7.128,-9.855,-9.351,8.894,12.677,11.727,3.901,21.914,8.335,25.029,35.179,26.215,21.125,21.862,24.874,26.168,33.555,27.853,29.62,19.358,22.297,26.811,25.538,17.92,15.285,10.332,32.148,11.7,29.614,20.796,23.169,26.042,8.552,20.431,21.569,21.832,14.401,10.694,3.047,18.033,19.479,15.583,10.11,13.29,22.534,13.211,19.861,15.344,17.529,17.374,17.258,16.362,2.091,19.985,8.963,13.211,24.091,7.148,19.882,16.459,1.001,6.177,10.383,16.427,18.348,17.597,14.982,20.303,7.7,8.049,-1.539,5.037,12.994,-0.046,3.084,-2.636,1.542,17.393,-9.149,17.219,10.076,12.269,4.866,8.737,12.804,6.463,-6.212,15.481,10.973,-1.867,15.551,15.398,12.223,4.864,2.158,17.945,5.669,-4.182,14.488,4.299,-3.404,15.02,17.912,11.126,-0.42,5.692,1.458,8.359,12.842,7.85,6.026,10.009,9.535,12.811,-10.655,11.473,13.305,-0.257,5.37,-8.526,-9.921,2.883,11.688,0.789,6.522,10.762,10.047,7.475,-8.225,-0.783,7.801,6.997,3.843,-1.279,7.809],[26.143,21.185,11.723,33.535,31.508,18.946,26.269,23.878,26.201,7.654,28.422,22.489,20.399,21.563,15.245,18.671,19.996,23.402,11.813,14.328,11.999,19.175,16.993,1.86,10.232,15.892,15.821,6.623,16.907,18.909,0.326,-2.937,6.435,3.162,11.506,8.706,15.857,16.307,-7.805,3.04,12.277,9.668,5.499,4.841,13.128,14.806,-1.525,16.8,-3.371,0.696,8.733,7.892,11.666,6.791,8.04,1.307,-1.803,7.004,-9.605,-9.511,8.877,12.804,11.786,3.831,21.536,7.618,25.009,35.115,26.692,20.632,22.277,24.365,26.083,33.295,28.121,29.714,19.31,22.314,26.801,25.214,17.852,15.145,10.261,32.397,11.434,29.665,20.489,23.465,25.86,9.132,19.932,21.663,21.831,14.814,10.63,3.071,17.519,19.211,15.822,10.037,13.465,22.524,13.126,19.699,14.873,17.736,17.471,17.373,15.959,1.705,19.778,9.536,13.713,24.226,7.497,20.15,16.394,0.77,6.935,10.51,16.35,18.25,17.412,15.15,19.839,7.91,7.86,-1.631,5.229,12.961,0.531,2.981,-2.26,1.816,16.781,-9.059,17.502,10.352,11.883,4.321,8.923,12.978,5.871,-6.242,15.739,11.076,-1.941,15.621,16.005,12.506,4.876,2.401,18.001,5.759,-4.086,14.116,4.25,-3.267,14.665,18.032,11.228,-0.247,5.777,1.888,9.071,12.778,8.191,5.822,10.064,9.545,12.713,-10.888,11.338,13.428,-0.181,5.331,-8.903,-10.098,2.58,11.969,0.879,5.956,10.532,9.607,7.5,-8.542,-0.566,8.156,7.618,3.505,-0.943,7.967],[26.076,21.209,11.764,33.522,31.443,19.042,26.205,23.672,25.98,7.573,28.54,22.371,20.47,21.624,15.261,18.696,20.151,23.526,11.743,14.235,12.218,19.1,17.165,2.058,10.547,15.872,15.942,6.569,16.787,18.629,0.418,-2.889,6.522,3.193,11.286,8.814,15.816,16.322,-7.831,3.042,12.158,9.82,5.402,4.898,12.985,14.956,-1.383,16.738,-3.503,0.907,8.712,7.826,11.408,6.794,7.968,1.376,-1.445,6.892,-9.479,-9.56,8.8,12.789,11.96,3.749,21.268,7.411,24.649,35.163,26.486,20.443,22.163,24.326,25.552,33.263,27.938,29.307,19.536,21.786,26.821,25.351,17.616,14.826,10.137,32.925,11.271,30.095,20.287,23.232,25.73,9.33,19.688,21.372,21.152,14.655,10.632,3.592,17.097,19.702,16.129,10.251,13.603,23.266,13.203,19.653,15.122,17.872,17.468,18.072,15.971,1.701,19.009,9.322,13.28,24.291,7.002,20.398,16.833,1.216,6.688,10.817,15.826,18.377,17.362,15.049,20.051,7.946,7.625,-1.346,5.127,12.62,0.511,2.896,-2.307,1.814,16.625,-9.013,17.514,10.165,11.919,4.254,8.779,12.575,5.375,-5.964,15.209,10.593,-2.423,15.975,15.713,12.032,4.772,1.885,17.556,5.821,-3.923,14.078,4.848,-3.162,14.798,17.993,11.293,-0.359,5.826,1.764,9.262,12.308,8.346,6.269,10.109,9.56,13.104,-10.775,11.61,13.545,-0.275,5.119,-8.614,-9.916,2.441,11.979,1.809,5.658,10.006,10.104,7.374,-8.589,-0.775,8.761,7.963,3.231,-1.158,8.286],[26.14,21.178,11.713,33.676,31.208,19.2,25.963,23.482,25.78,7.572,28.517,22.266,20.5,21.601,15.205,18.776,20.366,23.632,11.671,14.114,12.175,19.009,17.395,2.232,10.616,15.939,16.102,6.494,16.734,18.346,0.468,-2.931,6.565,3.301,11.266,8.946,15.951,16.291,-7.82,2.998,12.018,9.943,5.241,4.922,12.85,15.124,-1.18,16.602,-3.591,1.134,8.87,7.746,11.163,6.728,7.924,1.364,-1.183,6.972,-9.385,-9.565,8.878,12.775,12.105,3.652,21.812,7.383,24.362,35.102,25.683,20.918,22.467,24.478,24.743,32.736,27.449,29.479,19.327,21.708,27.059,25.447,17.641,14.58,10.181,32.588,11.355,30.25,20.669,22.863,26.114,9.384,19.927,21.205,21.55,14.222,10.792,4.005,17.495,19.924,16.196,10.576,13.865,23.07,13.108,20.018,15.354,17.929,17.156,17.727,16.027,1.804,18.73,9.314,13.054,24.333,6.886,20.161,16.851,1.58,6.295,11.053,15.728,18.391,17.635,15.419,19.997,7.848,7.728,-1.713,4.895,12.925,0.288,2.539,-2.547,1.829,16.972,-8.761,17.401,9.95,11.848,4.484,9.035,12.085,4.789,-6.166,14.965,10.849,-2.623,16.09,15.209,11.885,4.774,2.135,17.593,5.639,-4.1,14.189,4.5,-2.945,15.347,17.636,10.724,-0.1,5.918,2.013,8.919,11.783,7.929,6.626,10.009,9.472,13.285,-10.748,11.841,13.246,-0.04,4.916,-8.207,-9.684,2.835,12.111,1.653,6.182,9.727,9.557,7.29,-8.683,-0.384,8.214,7.646,3.508,-0.544,7.771],[25.995,21.243,11.608,33.856,30.936,19.355,25.674,23.483,25.615,7.622,28.452,22.131,20.633,21.645,15.186,18.716,20.651,23.654,11.575,14.078,12.091,18.956,17.54,2.312,10.462,16.091,16.265,6.39,16.636,18.178,0.523,-3.066,6.479,3.396,11.417,8.935,16.146,16.258,-7.845,3.042,11.861,10.049,5.132,4.906,12.707,15.349,-0.89,16.498,-3.702,1.298,8.916,7.638,10.831,6.679,7.806,1.423,-1.0,7.065,-9.253,-9.626,8.915,12.86,12.146,3.566,22.06,7.268,24.043,35.052,25.334,20.889,22.295,24.332,24.754,32.778,27.372,29.713,19.354,21.84,26.959,25.715,18.277,14.035,10.358,32.386,11.075,29.41,20.972,22.925,25.849,9.314,20.688,21.376,21.96,14.145,10.533,4.009,18.178,19.544,16.493,10.58,13.839,23.183,13.223,20.353,14.957,17.654,17.124,17.204,16.441,1.744,19.081,9.819,13.158,24.469,7.162,20.267,16.536,1.162,6.424,10.9,16.269,18.006,17.856,15.67,19.496,7.764,7.93,-1.519,5.382,13.088,0.356,2.656,-2.78,2.164,16.836,-8.901,17.323,10.298,11.446,4.711,9.318,12.12,4.02,-6.106,15.927,11.235,-2.541,15.957,15.242,12.264,4.841,2.29,17.523,5.191,-4.394,13.819,4.29,-2.692,14.852,17.753,10.137,0.226,5.657,1.859,9.193,12.071,8.011,6.462,10.166,9.251,12.896,-10.864,11.736,13.437,0.082,5.015,-8.213,-9.558,2.952,11.695,1.505,6.527,9.935,9.807,7.19,-8.725,0.254,8.139,7.108,3.424,-0.17,7.787],[25.803,21.533,11.565,34.064,30.646,19.488,25.571,23.576,25.341,7.631,28.357,21.993,20.651,21.766,15.127,18.645,20.841,23.675,11.448,13.969,12.075,19.003,17.671,2.248,10.374,16.449,16.449,6.403,16.422,18.172,0.682,-3.185,6.401,3.565,11.46,8.844,16.303,16.283,-7.98,3.153,11.799,10.169,5.089,4.817,12.491,15.544,-0.58,16.479,-3.826,1.338,8.977,7.554,10.628,6.729,7.552,1.587,-0.928,7.021,-9.15,-9.56,9.002,12.859,12.149,3.436,21.925,7.544,23.975,35.249,25.527,20.328,22.406,24.623,25.196,33.599,27.352,29.345,19.702,21.77,27.011,25.332,18.706,13.627,9.919,31.831,11.17,28.9,21.178,23.418,25.179,9.135,21.016,21.534,21.795,14.745,10.513,3.959,17.768,19.874,16.564,10.51,13.665,23.852,12.868,20.532,14.776,17.572,17.206,17.524,16.311,1.777,19.09,9.11,12.96,24.744,6.909,20.342,16.51,1.028,5.947,10.778,16.093,17.841,18.14,15.616,19.126,7.988,8.068,-1.333,5.008,13.057,0.205,2.776,-2.877,2.392,16.87,-9.044,17.561,10.65,11.519,4.551,9.244,12.348,3.528,-6.093,15.525,10.988,-2.461,15.968,15.392,12.187,4.963,2.299,17.394,5.063,-4.586,13.701,4.364,-2.394,14.78,17.87,9.9,0.357,5.531,2.212,9.192,12.041,8.307,6.805,10.507,9.011,12.653,-10.658,12.073,13.753,0.055,5.103,-8.537,-9.344,2.923,11.62,1.46,5.896,9.19,9.626,7.116,-8.717,0.669,8.174,7.167,3.327,-0.385,8.114],[25.782,21.879,11.489,34.33,30.325,19.699,25.681,23.673,25.107,7.614,28.298,21.901,20.518,21.694,15.129,18.674,20.951,23.929,11.224,13.763,12.119,19.022,17.766,2.133,10.233,16.851,16.575,6.384,16.208,18.273,0.869,-3.233,6.231,3.734,11.357,8.865,16.442,16.287,-8.145,3.257,11.774,10.177,5.067,4.587,12.348,15.536,-0.328,16.492,-3.876,1.349,8.917,7.505,10.357,6.639,7.364,1.836,-0.88,6.928,-9.2,-9.415,9.291,12.926,12.192,3.367,22.414,7.309,24.028,35.791,25.652,20.683,22.137,24.637,24.962,33.685,27.023,29.117,20.01,21.918,26.813,24.577,18.459,13.39,9.733,31.339,11.465,28.931,21.253,23.688,25.557,9.295,20.69,21.524,21.867,14.722,10.265,3.944,17.287,20.118,16.996,10.457,13.487,23.651,12.302,20.443,14.898,17.423,16.998,17.869,17.068,1.474,18.931,8.578,12.882,24.714,6.828,20.421,16.561,0.719,6.201,10.818,15.701,17.779,18.054,15.555,19.557,8.262,7.408,-1.89,4.715,12.761,0.742,2.646,-2.721,2.445,16.443,-9.116,17.702,10.453,12.169,4.358,9.077,12.167,3.834,-6.447,15.618,11.214,-2.68,16.087,15.692,11.91,4.953,2.486,17.54,5.428,-4.585,13.593,4.423,-2.078,15.504,17.53,10.0,0.476,5.566,2.58,9.588,11.946,8.05,7.142,10.451,8.89,12.63,-10.774,11.776,13.993,0.248,4.791,-8.438,-8.938,3.049,11.779,1.367,5.711,9.082,9.386,7.084,-8.601,0.808,8.088,7.075,3.226,-0.922,8.335],[25.628,22.132,11.406,34.583,29.979,19.867,25.856,23.707,25.139,7.626,28.328,21.856,20.329,21.621,15.128,18.74,20.983,24.178,10.855,13.732,12.189,19.049,17.816,1.91,10.14,17.185,16.583,6.434,16.114,18.411,0.942,-3.398,5.999,3.734,11.234,8.914,16.642,16.32,-8.158,3.391,11.793,9.974,5.072,4.456,12.263,15.513,-0.212,16.498,-3.917,1.334,8.872,7.348,10.158,6.461,7.134,1.992,-0.865,6.906,-9.28,-9.321,9.492,13.062,12.301,3.319,22.729,6.964,23.568,35.463,25.232,20.612,22.208,24.827,24.67,33.336,27.368,28.967,20.277,21.965,26.695,25.03,18.623,13.785,9.859,31.398,11.147,28.507,21.166,23.485,26.262,9.422,20.134,21.538,22.103,14.27,10.284,3.661,17.871,20.171,17.463,10.568,13.906,23.956,12.047,20.252,14.726,17.541,16.262,17.52,17.65,1.781,18.861,8.924,12.72,24.686,6.665,20.363,17.281,0.91,6.567,10.856,15.544,17.75,18.552,15.688,19.796,7.975,7.155,-1.978,4.414,12.228,0.502,2.972,-2.493,2.461,16.528,-9.605,17.823,10.213,12.227,4.78,9.456,12.098,4.43,-6.721,16.164,10.684,-3.258,16.322,16.27,11.811,5.125,2.517,17.829,5.674,-4.182,13.462,4.223,-1.991,15.05,17.312,10.249,0.854,5.391,1.927,9.187,11.855,8.283,6.925,10.848,8.595,13.077,-10.727,11.591,13.675,0.43,4.876,-8.422,-9.266,3.274,12.182,1.663,6.045,9.245,9.14,6.987,-8.243,0.669,8.615,7.116,3.166,-0.587,8.075],[25.525,22.281,11.301,34.696,29.831,20.036,26.091,23.654,25.137,7.642,28.465,21.87,20.274,21.625,15.135,18.72,20.913,24.345,10.618,13.65,12.262,19.162,17.958,1.74,10.223,17.469,16.606,6.53,15.939,18.445,0.846,-3.532,5.806,3.756,11.038,8.793,16.904,16.406,-8.119,3.359,11.863,9.689,5.129,4.468,12.26,15.59,-0.123,16.515,-3.989,1.233,8.746,7.158,10.176,6.257,6.898,2.031,-0.911,6.871,-9.413,-9.118,9.65,13.25,12.524,3.381,22.512,6.996,23.786,35.43,25.29,20.403,22.136,24.875,23.816,33.81,27.767,28.937,20.471,21.975,26.778,25.401,18.417,14.168,9.618,31.063,10.907,28.312,21.394,22.929,26.462,9.454,20.162,21.463,22.099,13.899,9.702,3.476,18.136,20.722,17.771,10.506,14.001,24.219,11.91,20.569,14.512,17.551,16.213,17.494,17.706,1.432,19.116,8.549,12.79,24.809,6.831,20.099,17.96,1.37,6.012,11.15,15.367,17.708,19.094,15.592,19.815,7.846,7.348,-1.908,4.111,11.822,0.464,3.229,-2.838,2.387,17.374,-9.642,17.717,10.119,11.816,4.968,9.394,11.772,4.447,-6.642,15.903,10.867,-3.207,16.366,16.341,12.181,5.162,2.556,17.631,5.465,-3.931,13.856,3.713,-1.824,14.676,17.66,10.129,0.883,5.558,1.91,8.628,11.599,8.44,6.518,11.028,8.257,13.768,-10.354,12.001,13.474,0.541,4.727,-8.355,-9.81,3.263,12.224,1.952,5.833,8.874,9.258,6.705,-8.248,0.365,9.04,6.365,3.523,0.039,7.88],[25.188,22.301,11.111,34.725,29.961,20.208,26.297,23.533,25.04,7.593,28.372,21.933,20.417,21.631,15.098,18.643,20.928,24.371,10.544,13.479,12.353,19.159,18.304,1.52,10.278,17.592,16.71,6.562,15.781,18.324,0.858,-3.516,5.64,3.836,10.702,8.407,17.11,16.577,-8.002,3.259,11.923,9.607,5.192,4.513,12.391,15.672,-0.042,16.516,-3.997,1.074,8.554,6.959,10.346,6.142,6.64,2.135,-1.023,6.869,-9.617,-8.902,9.755,13.489,12.8,3.5,22.865,7.397,24.48,35.856,25.158,21.044,22.188,24.645,23.602,34.592,27.752,29.564,20.444,21.777,26.862,25.021,18.629,14.546,9.514,31.188,10.89,28.637,21.708,22.346,26.285,9.479,20.49,21.239,22.569,13.965,9.92,3.363,17.652,20.247,17.7,10.242,13.955,24.428,11.745,20.992,14.704,17.689,16.5,17.483,17.746,1.197,19.158,8.738,12.665,24.963,7.069,20.216,17.652,0.958,6.032,11.19,15.141,17.41,19.23,15.877,19.617,7.447,7.078,-2.034,4.566,11.92,0.345,3.15,-3.172,2.418,17.234,-9.119,17.618,10.177,11.586,4.577,8.822,11.959,4.119,-6.627,15.67,10.878,-2.76,16.449,16.128,12.652,5.104,2.567,17.531,5.184,-3.848,13.521,4.18,-1.911,15.254,17.783,10.116,0.548,4.951,2.094,9.227,11.844,8.027,6.281,11.281,8.159,13.277,-10.101,12.092,14.121,0.366,5.017,-8.792,-9.497,3.089,12.454,2.012,5.498,8.888,9.404,6.59,-7.798,0.108,9.168,5.976,3.014,-0.237,7.958],[24.856,22.328,10.996,34.783,30.179,20.377,26.322,23.342,24.936,7.58,28.056,21.81,20.634,21.891,15.053,18.444,20.977,24.385,10.595,13.502,12.415,19.097,18.601,1.313,10.369,17.55,16.83,6.594,15.811,18.049,0.815,-3.491,5.565,3.826,10.538,8.054,17.17,16.673,-7.823,3.093,12.112,9.573,5.175,4.62,12.617,15.819,-0.035,16.458,-3.955,0.932,8.693,6.694,10.619,6.054,6.617,2.146,-1.19,6.92,-9.951,-8.674,9.99,13.603,13.202,3.468,23.188,7.304,24.262,35.402,25.718,20.922,22.335,24.618,23.557,34.54,27.812,29.139,20.542,21.591,26.901,24.019,19.184,14.44,9.401,31.679,10.4,28.669,21.864,22.954,26.081,9.301,20.796,21.167,22.805,14.583,9.546,3.104,17.733,20.285,17.931,10.247,13.672,24.316,11.748,20.745,14.311,17.913,16.529,17.174,18.222,1.127,19.016,8.897,12.278,24.903,6.871,20.336,17.439,0.466,6.096,10.997,15.687,17.054,19.138,16.151,18.974,7.063,7.14,-1.999,4.815,11.952,0.338,3.106,-2.681,2.861,16.552,-8.95,18.288,9.649,11.555,4.301,8.266,12.08,3.873,-6.43,16.095,10.659,-2.325,16.598,16.173,12.815,4.966,2.283,17.671,4.745,-3.672,13.614,4.267,-1.848,15.063,17.226,10.244,0.382,4.864,1.875,8.753,12.085,7.673,6.594,11.222,8.131,13.135,-10.028,12.231,14.885,0.51,4.464,-8.901,-9.737,2.99,12.762,1.552,5.424,9.359,9.656,6.612,-7.549,0.49,8.755,6.127,3.565,-1.006,8.319],[24.634,22.43,10.787,34.823,30.275,20.548,26.29,23.219,24.986,7.555,27.765,21.689,20.751,22.133,15.102,18.324,21.059,24.438,10.583,13.475,12.263,19.09,18.704,1.257,10.431,17.573,17.049,6.687,15.881,17.714,0.543,-3.431,5.671,3.827,10.77,7.797,17.319,16.612,-7.566,3.025,12.389,9.41,4.994,4.767,12.838,15.924,-0.036,16.311,-3.882,0.665,8.94,6.454,10.909,5.993,6.774,1.981,-1.254,7.051,-10.367,-8.429,10.071,13.606,13.73,3.25,22.941,6.981,23.609,35.532,25.339,20.802,22.518,24.365,23.776,33.936,27.803,28.201,20.615,21.502,26.192,23.667,19.224,14.002,9.217,31.145,10.341,28.896,21.894,23.32,26.155,9.206,20.871,20.778,22.307,14.464,9.316,3.044,17.545,20.932,17.84,10.553,13.682,24.153,11.87,20.033,14.237,17.556,16.611,17.055,18.008,0.916,18.659,8.972,12.646,24.807,6.602,20.352,17.797,0.925,5.918,11.247,16.485,17.327,18.713,15.844,18.99,6.853,7.184,-2.122,4.344,11.755,0.511,2.772,-2.513,3.029,16.737,-9.127,18.185,9.15,11.587,4.46,8.389,12.043,3.761,-6.411,16.421,10.416,-2.171,16.201,16.542,12.483,4.816,2.343,17.522,4.821,-3.789,13.941,4.591,-1.92,15.134,17.258,10.715,0.607,4.991,1.792,9.099,12.483,7.676,7.105,11.627,8.236,13.371,-10.006,12.515,14.862,0.374,4.869,-8.828,-10.503,3.435,13.163,0.918,5.287,9.729,9.624,6.29,-7.766,0.513,8.844,6.43,3.336,-1.395,8.267],[24.656,22.469,10.619,34.801,30.249,20.553,26.306,23.143,24.96,7.467,27.408,21.64,20.77,22.084,15.133,18.245,21.155,24.509,10.463,13.466,12.158,18.954,18.589,1.405,10.51,17.556,17.327,6.714,16.03,17.538,0.291,-3.452,5.761,3.832,11.091,7.534,17.404,16.546,-7.372,3.078,12.597,9.143,4.733,5.019,12.975,15.958,-0.026,16.191,-3.84,0.362,9.21,6.256,11.21,5.919,7.087,1.769,-1.285,7.188,-10.734,-8.324,10.066,13.539,14.239,3.167,22.934,7.258,23.329,35.885,25.626,20.936,22.605,24.207,24.06,33.595,27.697,28.03,20.592,21.411,26.043,23.339,18.985,13.869,8.874,30.919,10.747,28.469,21.876,22.582,25.919,9.101,20.593,20.484,22.832,14.18,9.671,3.259,17.17,20.802,17.826,10.798,13.772,24.199,11.942,19.816,14.46,17.366,16.288,17.19,17.745,0.683,18.368,9.35,12.348,24.878,6.754,20.241,18.053,0.969,6.477,11.546,16.78,17.764,18.461,16.002,19.034,6.627,6.981,-2.002,4.128,11.993,-0.195,2.363,-2.916,3.059,17.195,-9.113,17.916,9.191,12.199,4.573,8.956,12.263,3.849,-6.204,16.346,10.16,-2.356,16.064,16.956,12.652,4.815,2.67,17.341,5.461,-3.694,14.369,4.498,-1.909,15.641,17.533,10.988,0.592,5.119,1.474,9.856,12.632,7.891,7.003,11.843,8.561,13.051,-9.614,12.317,14.838,0.397,4.38,-9.381,-10.613,3.371,13.235,1.282,5.124,10.153,9.39,6.196,-7.503,0.503,9.163,6.234,2.625,-1.292,8.177],[24.823,22.542,10.563,34.725,30.129,20.163,26.367,23.009,24.905,7.445,27.155,21.516,20.726,22.065,15.09,18.254,21.215,24.51,10.466,13.602,12.266,18.696,18.449,1.54,10.749,17.453,17.55,6.753,16.213,17.552,0.026,-3.617,5.848,3.741,11.444,7.438,17.35,16.517,-7.257,3.105,12.711,8.941,4.494,5.263,13.1,15.952,-0.018,16.155,-3.855,0.412,9.477,6.23,11.489,5.839,7.395,1.616,-1.289,7.263,-11.054,-8.301,9.997,13.294,14.545,2.99,22.96,7.279,23.467,35.408,25.563,20.654,22.474,24.213,23.955,33.682,27.909,28.381,20.714,21.361,25.894,23.494,18.602,13.788,8.832,31.186,10.914,28.322,21.49,22.242,26.005,9.372,20.515,20.985,22.966,14.384,9.31,3.311,17.284,20.697,17.902,10.829,13.694,24.399,11.602,20.453,14.201,17.536,16.257,17.025,17.835,1.036,18.481,9.235,12.074,25.173,6.845,20.031,17.328,0.185,6.772,11.111,16.557,17.95,18.667,16.453,18.916,6.49,6.585,-2.189,4.07,12.662,-0.344,2.21,-2.953,3.519,17.043,-8.653,18.112,9.132,12.492,4.616,8.718,12.352,4.411,-6.114,16.265,10.155,-2.392,16.439,16.905,13.467,4.785,2.815,17.15,5.471,-3.135,14.665,4.523,-1.879,15.246,17.221,11.045,0.583,5.151,1.247,9.451,12.626,7.512,6.535,11.859,8.462,12.908,-9.589,11.97,15.498,0.417,4.143,-10.082,-10.564,2.847,13.563,1.271,5.378,10.624,9.927,5.936,-7.175,0.392,9.74,6.498,3.126,-1.177,8.401],[24.955,22.664,10.609,34.558,30.078,19.639,26.449,22.936,24.789,7.512,27.105,21.345,20.708,22.074,15.029,18.344,21.183,24.479,10.437,13.606,12.383,18.406,18.246,1.542,10.901,17.36,17.61,6.906,16.254,17.671,-0.228,-3.805,5.864,3.68,11.857,7.431,17.234,16.512,-7.193,3.178,12.842,8.789,4.336,5.497,13.255,15.848,-0.028,16.081,-3.835,0.52,9.561,6.196,11.757,5.891,7.72,1.457,-1.423,7.245,-11.381,-8.272,10.009,13.023,14.845,2.886,23.417,7.144,24.007,35.775,25.428,20.837,22.449,23.654,23.798,33.929,28.015,28.337,20.817,21.204,26.151,24.428,18.374,13.546,8.789,31.117,10.879,28.464,21.163,22.758,26.135,9.227,20.587,21.489,22.549,14.524,9.138,3.345,17.707,20.557,18.045,10.825,13.782,24.382,11.615,21.072,14.637,17.563,16.782,17.081,17.91,1.749,18.69,9.523,12.542,25.273,6.706,19.983,17.582,0.171,6.271,11.253,16.493,17.658,18.985,16.5,18.729,6.529,6.969,-2.245,4.301,13.194,-0.396,2.306,-2.953,3.816,16.646,-8.534,18.154,9.057,12.236,4.233,8.071,12.245,4.938,-5.811,16.028,10.338,-2.413,16.781,16.655,13.675,5.049,2.485,16.944,4.84,-3.373,14.389,4.637,-1.923,15.035,17.034,10.936,0.528,4.702,1.643,10.051,13.199,7.313,6.865,11.66,8.237,12.765,-9.789,11.485,15.937,0.176,4.193,-10.1,-11.006,2.977,14.009,0.965,5.207,10.592,10.438,6.27,-7.468,0.344,9.346,6.937,3.259,-1.195,8.428],[25.109,22.845,10.758,34.409,30.173,19.289,26.481,22.894,24.715,7.578,27.246,21.265,20.733,21.945,14.969,18.385,21.073,24.502,10.348,13.658,12.49,18.266,18.148,1.595,10.98,17.351,17.635,7.091,16.161,17.782,-0.351,-3.782,5.832,3.698,12.139,7.306,17.158,16.458,-7.176,3.217,12.765,8.683,4.173,5.722,13.316,15.641,-0.097,15.904,-3.845,0.57,9.694,6.231,12.021,5.967,7.918,1.567,-1.593,7.191,-11.514,-8.279,10.01,12.664,15.16,2.851,23.473,7.134,24.561,35.758,25.136,20.777,22.365,23.794,23.985,33.961,27.881,27.825,20.983,21.124,26.053,24.966,18.137,13.647,9.05,31.096,10.945,28.631,20.689,22.883,26.177,9.48,20.638,21.346,22.766,14.716,9.297,3.499,17.548,19.898,18.055,10.725,13.945,24.033,11.445,20.735,14.823,17.06,17.261,17.33,17.97,0.87,18.353,9.736,12.46,25.103,6.632,19.459,17.654,-0.134,6.535,12.167,16.813,17.597,18.612,16.704,19.187,6.707,7.26,-2.332,4.863,13.642,-0.484,2.674,-3.258,3.971,16.853,-8.507,17.478,9.073,12.545,3.646,7.552,12.765,5.396,-6.017,16.094,10.037,-1.954,16.402,16.413,13.703,5.041,2.762,16.954,4.194,-4.328,13.907,4.442,-1.971,15.694,17.314,11.053,0.535,4.84,1.649,10.044,13.509,7.743,7.357,11.357,9.257,12.23,-9.803,11.456,15.699,-0.113,4.472,-10.229,-10.853,2.915,13.797,0.958,5.001,10.584,10.357,6.684,-7.663,0.222,9.212,7.677,2.832,-1.692,8.679],[25.269,23.008,11.006,34.296,30.404,19.093,26.426,22.919,24.792,7.751,27.31,21.283,20.765,21.782,15.001,18.287,20.738,24.523,10.452,13.781,12.607,18.187,18.233,1.52,10.998,17.311,17.856,7.346,16.171,17.991,-0.416,-3.73,5.888,3.816,12.306,7.212,17.005,16.366,-7.36,3.193,12.619,8.652,3.948,5.816,13.237,15.536,-0.245,15.822,-3.867,0.59,9.913,6.424,12.175,6.077,8.142,1.872,-1.757,7.209,-11.498,-8.319,10.027,12.356,15.299,2.879,23.024,7.356,23.81,35.251,25.09,20.536,22.468,24.277,24.368,33.91,27.682,27.684,21.338,21.259,25.966,24.7,17.798,13.733,9.417,31.442,10.798,28.593,20.756,22.506,26.113,9.327,20.911,20.753,22.862,14.747,8.822,3.237,17.186,19.72,17.55,10.703,14.002,24.067,11.267,20.135,14.494,16.554,16.47,17.013,18.093,0.35,18.34,9.529,12.438,25.002,6.697,19.246,17.306,-0.314,6.772,12.061,17.163,17.75,18.827,16.807,19.735,6.576,6.772,-2.177,4.798,13.547,-0.52,2.586,-3.208,4.203,17.343,-8.809,17.031,8.82,12.416,3.643,7.875,13.247,5.752,-6.002,16.394,9.512,-2.446,15.774,16.663,13.427,4.956,3.021,16.592,4.005,-4.366,14.608,4.74,-2.113,15.219,17.174,10.837,0.744,4.856,1.402,9.731,13.192,7.958,7.133,11.319,9.174,11.718,-9.772,11.092,15.602,0.322,4.262,-10.16,-11.09,3.016,14.082,0.751,5.133,10.722,10.345,6.23,-7.574,0.037,9.406,7.825,2.837,-1.879,8.367],[25.383,23.072,11.232,34.175,30.726,19.062,26.267,22.963,24.864,7.897,27.344,21.303,20.829,21.696,15.102,18.024,20.344,24.617,10.446,13.711,12.582,18.032,18.233,1.23,10.932,17.44,18.1,7.557,16.148,18.318,-0.476,-3.715,5.907,3.96,12.369,7.131,16.697,16.286,-7.709,3.173,12.458,8.572,3.637,5.698,13.264,15.454,-0.365,15.711,-3.932,0.466,10.137,6.482,12.277,6.078,8.242,2.12,-1.948,7.146,-11.532,-8.432,10.211,12.077,15.436,3.075,22.967,8.308,24.118,35.497,25.048,20.338,22.492,24.021,24.409,33.831,27.789,27.482,21.187,21.214,25.794,25.035,17.911,13.735,9.887,31.596,11.431,28.86,20.544,22.586,26.249,9.345,20.775,20.434,22.954,14.393,9.178,3.077,17.242,19.86,17.771,10.712,13.726,23.973,11.727,19.788,14.689,16.426,16.131,16.72,17.567,0.837,18.792,9.332,12.901,25.103,7.114,19.326,17.477,0.361,7.043,12.014,17.306,17.852,18.699,16.797,19.808,6.324,6.631,-2.126,4.19,13.473,-0.63,2.598,-2.886,4.03,17.327,-9.15,17.434,8.908,12.167,4.201,8.425,13.349,6.235,-6.124,16.167,10.013,-2.874,15.426,16.312,13.095,4.951,2.798,16.54,4.163,-4.224,14.322,5.455,-2.288,14.878,16.923,10.506,0.17,5.401,1.471,9.999,12.906,7.918,6.607,11.991,9.102,11.868,-9.582,10.614,15.93,0.849,4.197,-10.008,-11.35,3.608,14.507,0.879,5.667,10.847,10.657,6.253,-7.328,-0.28,9.708,7.596,3.003,-1.601,8.072],[25.54,23.154,11.553,34.158,31.056,19.133,26.114,22.929,24.943,8.12,27.349,21.373,20.82,21.685,15.091,17.971,20.049,24.743,10.473,13.639,12.45,17.894,18.129,0.931,10.818,17.514,18.186,7.646,16.174,18.631,-0.46,-3.694,5.863,4.199,12.335,7.185,16.382,16.174,-8.047,3.178,12.33,8.538,3.421,5.615,13.253,15.24,-0.478,15.518,-4.007,0.362,10.365,6.379,12.323,6.131,8.176,2.385,-2.145,6.84,-11.602,-8.526,10.676,11.916,15.672,3.395,23.37,8.676,23.766,35.308,25.074,20.404,22.663,23.705,24.291,33.942,27.631,27.824,21.346,21.403,25.731,25.267,17.965,13.574,10.13,31.828,12.068,29.3,20.759,22.541,26.466,9.623,20.111,20.494,23.156,14.5,9.398,2.593,17.073,19.622,18.275,10.393,13.985,23.7,12.113,19.38,15.088,16.501,16.876,16.669,17.35,1.236,19.553,9.621,12.551,25.683,7.292,19.084,16.956,0.278,7.082,11.987,17.329,17.887,19.111,16.738,19.679,6.39,6.803,-2.302,4.046,13.817,-0.573,2.679,-3.172,3.454,16.989,-9.41,17.441,8.805,12.36,3.651,8.623,13.27,6.242,-6.752,15.766,10.278,-2.941,15.155,15.432,13.186,5.069,2.976,16.676,4.306,-4.436,14.062,5.015,-2.327,14.747,16.802,10.489,-0.08,5.554,1.63,10.567,13.317,7.946,6.815,12.35,9.003,11.914,-9.752,10.011,15.946,1.089,4.153,-10.17,-11.128,4.125,14.525,0.91,5.663,11.013,11.164,6.722,-7.302,-0.673,9.858,7.416,3.206,-1.71,8.422],[25.637,23.346,11.807,34.034,31.361,19.319,26.002,22.858,24.916,8.35,27.468,21.471,20.699,21.814,14.993,18.129,19.846,24.824,10.623,13.747,12.427,17.868,17.96,0.825,10.735,17.527,18.077,7.453,16.54,18.825,-0.451,-3.857,5.742,4.228,12.325,7.337,16.124,15.98,-8.349,3.374,12.485,8.564,3.246,5.527,13.246,14.929,-0.598,15.432,-4.171,0.443,10.661,6.392,12.406,6.228,8.015,2.68,-2.41,6.514,-11.741,-8.62,11.04,11.803,15.804,3.538,23.535,8.18,23.813,35.52,24.999,20.883,22.528,23.934,24.448,34.292,27.147,28.656,21.585,21.203,25.719,25.606,17.907,13.401,10.055,32.461,12.254,29.577,20.753,22.138,26.856,10.162,20.297,20.579,23.065,14.639,9.455,2.618,16.903,19.221,17.477,10.213,14.094,23.727,12.236,19.029,14.792,16.359,17.338,16.969,17.691,0.524,19.469,9.751,12.295,26.251,7.335,18.866,17.011,-0.189,6.617,11.778,17.402,17.812,19.334,17.092,20.264,6.533,6.958,-2.221,4.525,13.73,-0.607,3.418,-3.443,3.501,17.275,-9.695,16.937,8.739,12.595,3.39,7.754,12.694,6.205,-6.755,15.973,10.136,-2.46,14.961,15.347,13.498,5.244,2.741,16.292,4.118,-4.343,14.053,4.547,-2.451,14.614,16.666,10.697,0.108,5.525,1.456,10.535,12.801,7.825,6.576,12.559,8.91,11.834,-10.022,10.103,15.956,1.181,4.768,-10.502,-11.388,3.88,14.574,0.872,5.013,11.233,11.392,6.667,-7.593,-0.856,10.114,7.42,3.362,-1.951,8.172],[25.766,23.519,11.723,33.859,31.717,19.484,25.92,22.755,24.758,8.527,27.673,21.385,20.639,22.158,14.896,18.197,19.672,24.789,10.821,14.009,12.423,17.752,17.699,0.917,10.656,17.52,18.015,7.114,16.927,18.914,-0.542,-4.021,5.621,4.275,12.345,7.442,15.918,15.902,-8.432,3.652,12.696,8.502,3.132,5.547,13.25,14.863,-0.668,15.264,-4.233,0.467,10.895,6.415,12.507,6.249,7.875,2.833,-2.586,6.22,-11.967,-8.776,11.027,11.869,15.784,3.522,23.276,7.837,24.472,35.416,25.059,20.596,22.348,24.125,24.702,33.749,26.731,29.127,21.705,21.217,26.225,26.4,18.098,13.312,9.952,32.706,11.924,29.93,20.944,22.6,26.636,10.276,20.734,20.81,23.648,14.447,9.426,2.71,17.311,19.177,17.022,10.567,13.888,24.688,11.983,19.406,14.948,16.314,17.532,16.957,18.066,0.173,19.043,9.304,13.03,26.447,7.276,18.932,16.927,0.037,6.706,12.603,17.189,18.381,19.006,17.272,20.517,6.888,6.72,-2.368,4.427,13.317,-0.595,3.518,-3.185,3.329,17.277,-9.7,16.438,9.111,12.345,3.742,7.42,12.565,5.77,-6.903,15.801,9.75,-2.635,14.736,15.598,13.632,5.457,2.664,16.035,3.398,-4.233,13.903,4.772,-2.602,15.012,16.701,10.782,-0.06,5.195,1.543,10.144,13.009,7.746,5.914,12.571,9.099,11.19,-10.072,10.632,15.836,1.084,4.987,-10.268,-11.525,3.741,14.935,0.99,4.992,10.935,11.375,6.519,-7.83,-1.173,10.894,7.455,3.817,-1.904,7.495],[26.099,23.516,11.501,33.709,31.969,19.661,25.774,22.698,24.721,8.534,28.027,21.257,20.734,22.455,14.81,18.199,19.62,24.893,10.93,14.337,12.575,17.567,17.478,1.081,10.453,17.438,18.002,6.902,17.21,18.947,-0.508,-4.007,5.531,4.287,12.212,7.506,15.755,15.848,-8.476,3.865,12.634,8.364,3.095,5.666,13.2,15.175,-0.693,15.05,-4.284,0.392,10.878,6.397,12.564,6.183,7.855,2.701,-2.582,5.946,-12.038,-8.781,10.892,11.931,15.677,3.6,23.197,8.478,23.942,34.606,24.778,20.863,22.612,24.056,24.567,33.648,27.184,28.463,21.818,21.257,26.481,26.051,18.214,13.27,9.797,33.097,11.746,30.637,21.258,23.007,26.022,10.254,20.247,21.237,23.824,14.279,9.349,2.883,17.745,19.297,17.389,10.236,14.141,24.856,12.004,19.645,15.767,16.188,17.979,16.686,18.564,0.033,19.022,9.451,13.692,26.211,6.954,18.85,16.395,-0.316,6.305,12.746,16.989,18.663,18.245,17.418,20.528,7.426,6.743,-2.76,4.386,13.818,-0.913,3.229,-3.381,3.14,16.986,-9.691,16.038,8.984,11.883,4.069,7.528,12.835,5.188,-6.869,15.685,9.406,-2.864,14.562,15.448,13.608,5.647,3.345,15.965,3.158,-3.654,14.132,5.299,-2.616,15.181,16.497,11.065,-0.412,5.038,1.868,10.61,13.719,8.068,5.797,12.579,8.877,11.004,-10.501,11.193,15.833,0.899,4.931,-10.579,-11.471,3.756,15.415,1.008,5.311,10.885,11.668,6.236,-7.816,-1.609,10.824,7.056,3.631,-1.45,7.22],[26.289,23.268,11.432,33.542,32.263,19.808,25.704,22.643,24.671,8.464,28.247,21.254,20.758,22.607,14.741,18.212,19.68,25.053,10.917,14.644,12.83,17.498,17.398,1.226,10.146,17.244,18.023,6.659,17.477,18.947,-0.435,-4.074,5.493,4.148,11.923,7.552,15.608,15.976,-8.462,4.004,12.479,8.171,3.219,5.705,13.105,15.523,-0.809,14.923,-4.313,0.498,10.829,6.378,12.634,6.203,7.796,2.44,-2.54,5.799,-12.095,-8.68,10.823,11.91,15.67,3.706,23.49,9.03,23.977,35.078,24.607,21.129,22.561,23.985,24.841,33.577,27.214,28.234,21.528,20.94,26.556,26.091,18.526,13.247,9.762,33.691,11.09,30.903,21.317,22.643,26.195,10.071,20.112,21.709,23.826,14.341,9.652,2.96,17.494,19.128,17.6,9.935,14.27,24.567,12.325,19.189,16.147,15.964,18.092,16.88,18.81,0.568,19.387,9.715,13.335,26.208,6.721,18.384,16.039,-0.174,6.293,12.363,16.947,18.93,18.072,17.338,20.597,6.984,6.383,-2.538,4.027,13.6,-0.915,3.278,-3.583,3.239,17.126,-9.837,16.103,8.839,12.338,3.656,8.001,12.774,4.825,-6.773,15.445,9.805,-2.764,14.41,15.638,13.55,5.739,3.847,15.822,3.914,-3.727,14.034,5.509,-2.574,15.272,16.014,10.924,-0.19,5.123,1.518,10.795,13.574,7.859,5.954,12.481,8.863,11.968,-10.183,11.666,15.883,0.934,4.991,-11.042,-11.595,3.771,14.909,1.287,5.067,10.888,11.942,6.361,-7.562,-1.564,10.119,6.706,3.612,-1.425,7.222],[26.407,23.011,11.313,33.577,32.497,19.895,25.72,22.64,24.597,8.461,28.327,21.353,20.697,22.647,14.724,18.165,19.763,25.367,10.855,14.816,13.02,17.429,17.331,1.273,9.919,17.101,18.075,6.327,17.687,18.993,-0.32,-4.062,5.398,4.043,11.923,7.558,15.422,16.156,-8.485,4.024,12.331,8.109,3.506,5.653,12.974,15.799,-0.904,14.76,-4.332,0.69,10.743,6.378,12.755,6.182,7.671,2.197,-2.559,5.802,-12.107,-8.558,10.645,12.073,15.571,3.738,23.154,8.496,23.362,35.503,24.763,21.004,22.664,23.829,25.052,33.39,26.623,28.293,21.25,20.992,26.458,26.806,18.484,13.147,9.468,33.417,11.235,30.703,21.423,22.239,26.761,9.759,20.371,21.708,24.002,14.044,9.743,3.18,17.171,19.032,17.491,9.567,14.456,24.154,12.352,19.109,15.921,15.762,18.139,16.995,18.392,0.9,19.22,9.369,13.475,25.841,6.73,18.408,16.57,0.283,6.478,12.293,17.154,19.261,18.199,17.068,20.566,6.667,6.566,-2.405,3.959,13.292,-0.394,3.11,-3.57,3.365,17.459,-9.705,16.43,8.645,12.126,3.614,7.804,12.672,4.662,-6.951,16.03,9.895,-2.513,14.508,16.395,13.439,5.759,3.927,15.767,4.139,-4.516,13.98,5.265,-2.852,15.506,16.255,10.986,-0.101,5.622,1.629,10.507,12.985,7.548,5.683,12.328,8.941,11.928,-9.726,11.982,15.824,0.783,5.256,-10.733,-12.135,3.612,14.649,1.443,4.903,11.105,12.098,6.864,-7.371,-1.081,10.04,7.442,3.78,-1.787,7.275],[26.572,22.816,11.122,33.758,32.302,19.816,25.765,22.694,24.552,8.374,28.226,21.529,20.805,22.781,14.61,18.198,19.858,25.482,10.756,14.867,13.101,17.32,17.374,1.29,9.736,17.074,17.989,6.089,17.777,19.061,-0.012,-3.928,5.346,3.808,12.118,7.574,15.193,16.315,-8.536,4.041,12.079,8.081,3.728,5.52,12.86,16.003,-1.029,14.868,-4.372,0.914,10.706,6.352,12.863,6.259,7.774,2.078,-2.61,5.646,-12.166,-8.376,10.447,12.354,15.387,3.716,22.775,8.417,23.553,35.302,24.701,20.912,22.54,24.126,25.203,33.461,26.677,28.783,20.955,21.213,26.669,26.579,18.562,13.422,9.583,33.268,11.785,30.502,21.45,22.319,26.712,9.929,20.233,20.96,23.449,13.878,9.612,3.09,17.514,19.232,17.212,9.19,14.619,24.591,12.282,19.438,15.927,15.811,18.555,16.825,17.9,0.666,19.382,9.268,13.61,26.016,6.541,18.495,16.919,0.013,5.977,12.195,17.23,19.09,18.294,17.292,20.716,6.736,6.712,-2.545,4.056,13.743,-0.471,3.559,-3.485,4.298,17.25,-9.925,16.646,8.865,12.101,3.811,7.232,11.964,4.973,-6.993,16.472,9.974,-2.849,15.061,16.732,13.508,5.683,3.5,15.332,3.993,-4.571,13.725,4.839,-2.849,16.065,16.406,11.072,-0.114,5.577,2.157,9.846,13.097,8.088,5.854,12.224,9.009,11.452,-9.891,12.419,15.78,0.509,5.05,-10.684,-11.826,3.242,14.866,1.394,5.135,11.407,11.973,6.342,-7.775,-1.129,9.84,7.726,3.746,-1.97,7.429],[26.708,22.669,11.06,33.891,31.91,19.728,25.824,22.884,24.566,8.314,28.239,21.621,20.775,22.83,14.459,18.297,19.987,25.538,10.586,14.778,13.069,17.309,17.462,1.146,9.531,17.018,17.69,5.823,17.8,19.317,0.251,-3.746,5.338,3.737,12.204,7.689,15.02,16.47,-8.664,4.011,11.813,8.008,3.83,5.249,12.599,16.199,-1.07,15.014,-4.488,1.154,10.665,6.407,13.019,6.45,8.04,2.08,-2.747,5.478,-12.235,-8.365,10.275,12.667,15.401,3.536,22.949,8.384,23.873,35.097,24.839,21.04,22.574,24.563,25.444,33.872,26.952,29.213,20.912,21.257,26.527,26.196,18.614,13.327,10.142,33.354,11.398,30.488,21.417,23.016,26.278,9.995,20.274,20.813,23.397,14.099,9.438,3.035,17.889,19.767,17.191,9.626,14.608,24.566,12.267,20.019,15.968,15.786,18.564,17.193,18.16,0.496,19.681,8.923,13.936,26.265,6.185,18.483,16.742,-0.012,5.676,12.521,16.912,19.013,18.401,17.676,20.972,7.491,6.501,-2.719,3.954,13.904,-0.199,3.222,-3.09,4.568,17.624,-9.973,16.308,8.727,12.496,4.215,7.438,12.077,6.029,-6.996,16.159,9.79,-3.068,15.629,16.163,13.003,5.692,3.36,15.676,4.503,-4.168,13.631,4.557,-2.857,16.055,16.485,10.754,-0.339,5.141,2.24,9.738,13.349,7.858,5.848,12.037,8.992,11.969,-9.968,12.566,15.392,0.191,5.165,-10.715,-12.009,2.822,14.278,1.732,5.51,11.189,11.804,6.026,-7.598,-1.787,9.919,7.394,3.726,-1.491,7.214],[26.724,22.647,11.002,33.946,31.573,19.78,25.886,23.101,24.624,8.331,28.392,21.725,20.731,22.823,14.349,18.422,20.201,25.47,10.671,14.718,12.965,17.433,17.476,0.996,9.494,17.086,17.469,5.509,17.712,19.735,0.393,-3.602,5.342,3.71,12.204,7.752,14.918,16.602,-8.698,3.941,11.57,7.86,4.02,4.95,12.364,16.258,-0.953,15.079,-4.511,1.302,10.622,6.285,13.081,6.653,8.163,2.033,-2.931,5.406,-12.205,-8.505,10.199,12.999,15.403,3.514,22.99,7.939,23.307,35.634,24.807,21.013,22.243,24.467,25.503,34.222,26.88,29.523,20.833,21.5,26.525,26.476,18.4,12.934,10.049,33.08,11.345,29.935,21.395,23.071,25.609,9.589,20.302,21.271,23.884,13.901,9.641,2.862,17.761,20.233,17.167,10.196,14.686,24.419,11.997,20.529,16.124,15.684,18.427,17.355,18.59,0.387,19.942,8.288,13.781,26.561,5.831,18.285,16.147,0.619,5.978,12.27,16.34,19.085,17.893,16.767,21.452,7.02,6.538,-2.422,3.798,13.642,-0.001,2.987,-2.924,4.205,17.749,-9.813,15.742,9.069,12.697,4.586,8.012,12.122,6.029,-7.152,15.983,9.678,-2.995,15.898,16.308,12.795,5.63,3.622,16.126,4.472,-4.29,13.72,4.578,-2.945,15.652,16.42,10.279,-0.402,5.997,2.012,10.276,13.889,7.638,5.462,11.978,9.39,12.579,-9.92,12.412,15.269,0.41,5.331,-10.692,-12.51,2.806,14.488,2.243,5.432,11.296,11.433,6.764,-7.346,-2.37,9.749,7.061,3.478,-1.348,7.092]]', atom_y='[[15.391,21.452,15.423,1.551,11.821,9.003,-1.143,9.787,9.219,1.356,10.309,27.718,25.781,22.746,8.286,6.304,12.058,19.243,11.95,-0.106,4.649,7.8,4.903,12.601,14.224,-2.911,21.923,23.625,15.361,8.973,2.318,21.534,-2.768,19.67,12.895,3.12,11.842,12.455,21.639,16.372,4.269,21.307,8.343,4.544,9.707,4.878,17.686,15.891,14.903,10.23,14.409,1.342,17.246,15.731,27.833,4.412,11.167,5.534,21.242,4.289,7.908,17.954,1.587,16.589,22.788,2.768,10.141,2.644,9.713,22.898,26.271,8.567,13.609,0.52,-3.02,9.647,21.805,9.484,9.758,15.781,8.788,6.687,14.229,10.281,14.804,12.333,7.795,26.105,-0.747,0.051,26.123,28.539,21.155,8.513,12.922,13.28,5.97,13.539,2.98,12.441,3.688,20.496,13.121,12.099,0.366,7.367,16.908,5.466,-3.91,12.247,10.07,15.173,-0.806,20.149,22.176,6.385,5.608,3.261,24.194,5.055,21.078,15.788,-1.148,21.21,9.784,1.55,-2.374,21.374,-1.201,14.367,2.952,18.297,19.921,18.948,13.107,22.611,11.886,2.681,11.731,9.251,20.186,10.426,4.575,22.046,10.931,22.624,15.739,11.799,6.219,6.028,16.515,14.739,16.322,9.325,13.028,11.247,3.343,16.833,5.725,17.576,3.676,18.365,15.208,8.61,14.762,16.239,2.353,5.506,6.52,28.36,18.845,4.35,16.723,0.453,4.216,15.207,19.539,21.093,2.972,2.925,9.853,17.688,16.73,15.264,0.931,6.112,11.335,8.977,26.845,18.328,11.358,6.119],[15.347,21.192,15.374,1.503,11.828,9.098,-1.05,9.681,9.416,1.211,10.095,28.099,25.85,22.871,8.29,6.502,12.082,19.051,12.001,-0.198,4.644,7.902,5.196,12.503,14.335,-2.799,21.848,23.629,15.353,9.254,2.428,21.201,-2.799,19.474,12.576,3.166,11.824,12.371,21.543,16.205,4.347,21.215,8.575,4.26,9.629,4.846,17.656,16.043,14.878,10.208,14.496,1.354,17.332,15.877,27.923,4.549,11.511,5.357,21.219,4.152,7.707,18.096,1.464,16.54,22.632,2.575,10.231,2.49,9.77,22.591,26.246,8.292,13.432,0.371,-2.741,9.264,21.582,9.57,9.242,15.696,8.576,6.658,14.231,10.412,15.135,12.734,7.687,26.214,-0.061,-0.08,26.017,28.661,21.329,8.335,11.898,14.055,5.62,13.713,3.315,12.607,4.164,20.273,13.328,11.455,0.011,7.502,16.837,6.227,-3.293,12.207,10.079,14.936,-0.901,19.985,21.899,6.49,5.514,2.761,24.374,5.426,20.96,15.817,-1.072,21.997,10.394,1.495,-2.534,21.598,-1.159,14.31,3.113,18.282,19.553,19.132,13.035,22.663,12.019,2.443,11.44,9.803,19.756,10.258,4.377,21.925,10.975,22.563,15.344,11.429,6.34,6.23,16.4,14.516,16.781,9.462,13.064,11.277,3.049,17.341,5.852,17.464,4.009,18.708,14.607,8.409,15.341,16.28,2.647,5.667,6.446,27.851,19.227,3.841,17.089,0.196,4.062,15.267,19.486,21.029,3.342,2.783,10.565,17.54,16.378,15.186,0.862,5.983,10.522,8.677,27.395,18.26,11.544,6.644],[15.209,21.086,15.448,1.372,11.892,9.103,-0.981,9.595,9.455,1.007,9.928,28.374,25.877,22.863,8.226,6.741,12.041,18.928,11.903,-0.25,4.656,8.085,5.32,12.587,14.501,-2.542,21.78,23.797,15.283,9.49,2.43,21.013,-2.919,19.165,12.162,3.169,11.782,12.056,21.367,16.148,4.503,21.298,8.836,3.904,9.664,4.863,17.657,16.176,14.887,10.279,14.602,1.47,17.368,16.07,27.989,4.768,11.85,5.275,21.121,4.059,7.523,18.09,1.471,16.369,22.351,2.321,10.693,1.94,9.467,22.314,25.525,8.514,13.377,0.374,-2.547,9.733,22.051,9.476,8.823,15.426,8.595,6.999,14.116,10.955,14.657,13.118,7.776,26.524,0.403,-0.33,26.772,28.895,21.884,8.657,11.688,14.046,5.302,13.633,3.456,12.752,4.204,20.433,13.603,11.528,0.028,7.761,16.697,6.633,-3.503,11.722,10.277,14.768,-0.793,19.87,22.263,6.349,5.643,3.1,24.254,5.692,20.742,16.144,-0.664,21.78,10.527,2.111,-2.625,21.291,-1.252,13.878,3.5,17.904,19.635,18.859,12.859,22.465,12.332,2.044,11.876,10.291,19.672,10.077,4.215,22.274,10.43,22.446,15.203,10.994,6.169,6.32,16.276,14.637,16.091,9.013,13.197,11.312,3.094,16.909,5.991,18.046,4.304,18.902,14.622,8.444,15.768,16.724,2.506,6.454,6.598,27.268,19.416,3.044,17.532,0.234,3.836,15.105,19.489,21.128,3.635,2.49,10.767,17.433,16.302,14.826,0.072,5.79,10.735,8.317,27.394,18.063,12.111,6.234],[14.925,21.127,15.639,1.161,11.924,9.135,-0.955,9.572,9.453,0.73,9.977,28.5,25.88,22.842,8.206,6.977,12.021,19.017,11.801,-0.275,4.783,8.092,5.372,12.797,14.686,-2.308,21.709,23.906,15.281,9.472,2.518,20.988,-2.983,19.01,11.858,3.305,11.762,11.719,21.262,15.98,4.742,21.462,9.084,3.603,9.734,4.924,17.773,16.121,14.937,10.378,14.658,1.391,17.391,16.095,27.828,4.914,12.177,5.299,21.011,3.839,7.338,17.985,1.545,16.083,22.276,2.328,10.518,2.108,9.517,22.322,25.411,8.953,13.168,0.384,-2.314,9.486,21.879,9.13,8.917,15.193,8.345,7.096,14.353,10.881,15.176,13.358,7.72,26.85,0.818,-0.343,26.939,28.385,22.477,8.796,11.451,13.888,5.182,13.574,3.532,12.977,3.618,20.466,13.308,11.527,0.192,8.179,16.584,7.072,-3.452,12.056,10.334,14.707,-0.698,19.526,22.129,6.391,5.834,3.517,23.985,5.218,20.458,16.196,-0.312,21.027,10.418,2.235,-2.751,20.731,-1.223,13.506,2.836,18.08,19.423,18.488,12.036,22.482,12.31,2.136,12.176,10.542,20.305,10.382,4.187,22.23,10.425,22.832,15.482,10.827,6.145,6.533,16.309,14.538,15.581,8.965,13.12,11.165,2.996,16.517,5.761,18.03,4.517,18.976,14.606,8.665,15.422,16.956,2.215,6.777,6.361,27.995,19.192,3.11,17.933,0.327,4.457,14.684,19.18,20.882,3.816,2.819,10.779,17.603,16.624,15.616,0.21,5.707,11.497,8.464,26.922,17.749,12.4,5.574],[14.767,21.025,16.023,1.067,11.959,9.058,-0.782,9.609,9.334,0.638,10.005,28.453,25.914,22.93,8.23,7.182,12.018,19.101,11.723,-0.174,4.881,7.937,5.422,12.989,14.838,-2.243,21.511,23.758,15.249,9.272,2.563,20.868,-2.923,19.088,11.795,3.504,11.792,11.587,21.285,15.733,4.937,21.717,9.27,3.403,9.84,5.009,17.92,15.829,15.008,10.439,14.685,1.155,17.46,16.011,27.636,5.045,12.191,5.163,20.846,3.735,7.187,17.854,1.576,16.0,22.496,2.151,10.181,2.233,9.734,22.515,25.524,9.295,12.857,0.142,-2.372,9.39,21.323,9.225,8.968,15.162,8.409,6.912,14.423,10.478,15.444,12.99,8.064,27.248,0.292,-0.686,26.601,27.818,22.293,8.809,11.187,14.331,5.398,13.745,3.616,13.104,3.89,20.597,12.792,11.406,-0.283,8.485,16.642,7.01,-3.042,12.808,10.15,14.935,-0.964,19.805,22.0,6.322,5.678,3.467,24.064,4.742,20.612,16.01,-0.331,21.434,10.414,2.236,-2.841,20.786,-1.205,13.378,2.976,17.688,19.845,18.72,11.327,22.553,11.868,2.448,12.142,10.572,20.359,10.575,3.968,21.838,10.047,23.118,15.521,10.755,6.505,6.875,15.912,14.4,16.186,9.547,13.16,11.427,2.484,16.523,5.935,17.331,4.463,19.263,15.355,8.873,15.294,16.488,2.73,6.679,6.418,28.199,18.714,3.446,17.913,0.634,4.257,14.732,19.009,20.851,4.27,3.172,11.174,17.913,16.685,15.734,0.571,5.53,12.681,8.738,26.377,17.797,11.981,5.695],[14.801,20.877,16.253,1.005,11.912,9.068,-0.77,9.751,9.024,0.592,9.872,28.366,25.929,22.917,8.33,7.341,11.939,19.306,11.638,-0.128,4.89,7.87,5.367,13.273,14.953,-2.22,21.399,23.634,15.013,9.111,2.66,20.826,-2.893,19.213,11.795,3.537,11.78,11.408,21.307,15.554,5.028,21.884,9.437,3.228,10.113,5.214,18.08,15.628,15.029,10.559,14.737,1.05,17.503,16.093,27.491,5.161,12.171,4.919,20.763,3.735,7.138,17.658,1.586,16.1,22.213,1.733,10.314,2.235,9.756,23.141,25.596,9.513,12.934,0.093,-2.423,9.43,21.351,9.494,8.913,15.225,8.911,6.436,14.847,10.61,15.529,12.415,7.624,27.533,0.029,-0.743,26.956,27.191,22.063,8.752,10.891,13.945,5.625,13.412,3.694,13.217,4.649,20.47,12.618,11.614,0.317,7.9,16.576,7.11,-3.283,12.517,10.016,15.266,-0.433,20.284,21.927,6.015,5.641,3.097,23.796,5.102,21.175,15.817,-0.356,20.997,10.262,2.46,-2.289,20.762,-1.273,13.361,3.404,17.681,19.44,18.943,11.25,22.641,11.212,2.412,12.659,10.783,20.148,10.303,3.987,21.793,10.149,23.236,15.384,11.052,6.534,6.964,15.157,14.128,16.25,10.169,13.219,11.637,2.251,17.119,6.319,17.192,4.47,19.627,16.03,9.115,15.673,16.503,2.7,6.14,6.476,27.449,18.827,3.946,17.323,0.718,4.105,14.737,19.069,21.035,4.36,3.169,11.475,17.91,17.254,14.886,0.469,5.181,13.156,8.813,26.139,17.544,10.983,6.06],[14.91,20.83,16.208,0.917,11.86,9.212,-0.924,10.036,8.827,0.526,9.757,28.212,26.02,22.821,8.385,7.466,11.868,19.526,11.515,0.134,5.04,7.845,5.234,13.361,15.05,-2.281,21.361,23.614,14.747,9.008,2.932,20.764,-2.884,19.287,11.85,3.324,11.72,11.099,21.414,15.392,5.023,21.984,9.688,3.116,10.367,5.46,18.427,15.641,14.923,10.751,14.753,1.014,17.766,16.202,27.316,5.159,12.164,4.715,20.999,3.674,7.305,17.477,1.563,16.096,21.633,1.683,9.983,2.073,9.178,23.756,25.386,9.431,13.174,0.028,-2.844,9.363,21.73,9.514,8.892,15.5,9.069,6.648,15.131,10.427,15.602,12.754,7.354,27.824,-0.165,-0.836,26.89,26.384,21.851,8.637,10.595,13.937,5.955,13.205,3.398,13.204,4.041,20.737,13.143,11.584,0.078,7.71,16.444,7.085,-3.475,12.284,9.713,15.238,-0.462,20.398,21.875,6.094,5.978,3.013,23.572,5.373,21.17,15.152,-0.485,21.221,10.246,2.731,-2.068,20.788,-1.439,12.765,2.968,17.793,19.346,18.582,11.531,22.407,11.432,1.962,13.221,10.898,20.44,10.577,4.075,21.884,9.812,23.057,15.731,11.046,6.399,6.764,15.359,14.084,15.664,10.168,13.12,11.2,2.414,17.387,6.647,17.541,4.559,19.447,16.111,8.968,15.976,16.664,2.154,5.662,6.147,27.561,18.433,4.262,16.757,0.39,4.485,14.507,19.125,20.79,4.381,3.185,11.494,18.012,17.512,15.045,0.11,5.439,12.982,8.78,26.078,17.54,10.525,5.835],[15.035,20.749,16.054,0.843,11.926,9.449,-1.129,10.226,8.62,0.341,9.753,27.821,26.137,22.79,8.447,7.598,11.799,19.549,11.363,0.415,5.07,7.629,5.165,13.205,15.134,-2.323,21.336,23.607,14.628,8.899,3.011,20.809,-2.935,19.146,11.968,3.155,11.555,10.864,21.511,15.325,4.843,21.985,9.908,2.992,10.365,5.627,18.774,15.759,14.909,10.827,14.791,0.885,18.107,16.362,27.118,5.188,12.095,4.564,21.219,3.65,7.449,17.371,1.552,16.096,21.851,1.908,9.744,1.537,9.394,23.084,25.247,10.211,13.13,-0.327,-2.795,9.595,21.666,9.446,8.952,15.581,8.874,6.542,14.967,10.483,15.928,12.977,7.903,28.925,0.096,-0.675,26.544,26.254,21.86,8.82,10.705,14.296,6.229,13.609,3.327,13.365,4.049,21.071,13.189,11.394,0.565,8.595,16.399,6.512,-3.32,12.692,9.833,15.039,-0.594,20.228,22.029,5.883,5.908,3.89,23.931,5.257,20.679,14.748,-0.833,21.666,10.358,1.994,-2.561,20.83,-1.424,12.222,3.273,17.875,19.845,18.776,10.899,22.489,11.851,1.89,13.476,11.216,20.451,10.831,3.819,22.385,9.522,23.213,15.625,11.322,6.62,6.759,15.741,13.938,15.535,9.923,13.004,11.747,2.723,17.353,6.852,17.424,4.773,19.346,15.43,9.03,16.162,16.755,2.069,5.651,6.46,28.031,17.771,3.894,16.262,0.147,4.477,14.659,19.529,20.799,3.997,2.96,11.604,18.241,17.235,15.561,0.04,5.349,12.995,8.873,26.504,17.577,10.33,5.58],[15.057,20.654,15.958,0.761,12.189,9.657,-1.158,10.319,8.556,0.124,9.805,27.593,26.149,22.737,8.478,7.522,11.827,19.472,11.204,0.697,5.071,7.452,5.188,12.938,15.214,-2.256,21.333,23.689,14.71,8.988,3.014,20.978,-3.065,18.996,12.009,2.91,11.396,10.695,21.567,15.344,4.74,21.847,10.103,2.877,10.294,5.741,19.05,15.896,15.139,10.963,14.913,0.87,18.137,16.571,27.001,5.101,12.051,4.558,21.359,3.589,7.514,17.211,1.455,16.079,21.978,1.598,9.663,1.603,9.506,22.237,25.386,10.446,13.232,-0.194,-2.491,9.461,21.436,9.541,9.075,15.636,9.027,6.793,14.607,10.769,15.711,12.484,8.217,29.285,-0.073,-0.754,26.94,26.233,21.617,8.655,11.085,14.433,6.57,13.412,3.374,13.353,4.82,21.088,12.899,11.323,0.518,7.999,16.48,6.368,-3.471,12.831,9.916,15.603,-0.147,19.946,21.997,5.781,5.914,4.084,23.915,5.091,20.277,14.919,-0.826,21.455,10.035,1.592,-2.814,20.716,-1.242,12.277,3.673,17.43,19.987,18.704,10.329,22.622,11.48,2.018,13.642,11.412,20.259,10.16,3.759,22.322,9.215,23.395,15.301,11.573,6.813,6.544,15.965,13.819,16.18,10.213,13.206,12.093,2.56,17.98,6.875,17.707,4.461,19.678,15.359,9.112,16.074,17.248,2.244,5.742,6.875,26.924,18.076,2.81,16.3,0.427,4.559,14.943,19.748,21.267,3.66,3.072,11.104,18.249,17.721,15.501,0.176,5.324,12.943,9.074,26.287,17.799,10.379,5.538],[15.101,20.618,15.901,0.763,12.32,9.795,-1.053,10.366,8.523,0.004,9.818,27.531,26.143,22.45,8.558,7.362,11.925,19.321,11.245,0.817,5.234,7.263,5.407,12.854,15.193,-2.173,21.23,23.736,14.974,9.046,3.174,21.072,-3.095,18.887,11.991,2.747,11.301,10.56,21.609,15.366,4.711,21.787,10.175,2.792,10.254,5.852,19.258,16.155,15.454,11.064,14.883,1.047,18.18,16.64,26.725,4.907,12.001,4.67,21.467,3.474,7.603,17.195,1.393,16.132,21.732,1.188,9.588,1.991,9.208,21.996,25.255,9.82,13.264,0.13,-2.649,9.772,21.299,10.072,9.122,15.821,9.342,6.88,14.648,10.771,15.42,12.663,8.172,28.848,0.083,-1.199,26.914,26.436,21.657,8.21,10.73,14.263,6.487,13.078,3.503,13.46,4.338,20.879,12.856,11.26,0.28,7.395,16.499,6.217,-3.654,12.407,9.77,15.87,-0.206,19.657,21.987,5.571,5.822,3.184,23.469,5.46,20.134,15.415,-0.488,21.322,10.286,1.334,-2.925,20.868,-1.615,11.927,3.131,17.281,20.002,18.416,10.177,22.817,11.518,1.941,13.424,11.531,20.116,9.88,3.736,21.996,9.08,22.698,15.522,11.172,6.718,6.438,15.926,13.796,16.579,10.169,13.731,11.569,2.27,18.221,7.124,17.68,4.249,20.802,15.964,9.274,15.789,17.243,2.599,5.558,6.712,26.52,17.885,2.105,16.724,0.385,4.732,14.893,19.636,21.465,3.512,3.158,11.224,18.561,17.518,15.782,0.45,5.111,12.976,9.445,25.97,17.784,10.734,5.452],[15.143,20.629,15.879,0.807,12.284,9.918,-0.881,10.387,8.407,-0.15,9.896,27.585,26.052,22.171,8.471,7.165,11.957,19.15,11.399,0.726,5.381,6.946,5.721,12.884,15.256,-2.103,21.072,23.633,15.275,9.025,3.147,21.089,-3.124,18.915,11.782,2.671,11.295,10.534,21.66,15.333,4.706,21.67,10.036,2.759,10.047,6.005,19.402,16.39,15.674,11.043,14.717,1.287,18.28,16.808,26.475,4.713,12.042,4.728,21.446,3.405,7.637,17.229,1.345,16.148,21.754,1.428,9.445,1.608,8.876,21.837,25.278,9.797,13.275,-0.063,-2.509,9.942,21.662,10.177,8.98,15.975,9.146,7.076,14.535,10.978,15.355,13.41,8.295,28.365,-0.193,-1.002,26.922,25.93,21.384,8.195,10.547,14.303,6.166,13.404,3.994,13.44,4.408,20.506,13.03,11.027,0.573,7.864,16.216,6.331,-3.157,12.488,10.013,15.125,-0.154,19.981,22.1,5.338,5.571,3.348,23.371,5.668,19.784,16.464,-0.57,21.039,10.559,1.285,-2.635,21.151,-1.815,11.91,2.764,17.349,20.052,18.578,9.91,22.926,11.499,1.708,13.434,11.265,19.985,10.595,3.333,22.665,9.04,22.668,16.324,10.898,6.896,6.66,15.373,13.947,16.715,10.375,13.778,11.524,1.792,18.299,7.265,17.69,4.485,20.984,16.355,9.223,15.91,17.318,2.874,5.218,7.027,27.193,17.46,1.766,16.735,0.176,4.178,14.554,19.623,21.599,3.881,2.968,12.02,18.731,17.247,15.642,0.458,4.733,13.108,9.418,25.731,17.676,10.753,5.85],[15.115,20.738,15.765,0.677,12.378,9.955,-0.816,10.407,8.241,-0.189,10.031,27.549,25.917,21.999,8.321,6.843,11.907,19.152,11.689,0.692,5.487,6.722,5.922,12.986,15.31,-1.999,20.933,23.561,15.534,9.097,2.973,21.106,-3.059,19.103,11.553,2.562,11.287,10.54,21.846,15.238,4.958,21.678,9.871,2.673,9.949,6.079,19.457,16.469,15.787,10.997,14.688,1.313,18.378,16.965,26.333,4.593,12.124,4.733,21.424,3.268,7.692,17.112,1.262,16.141,21.787,1.32,9.498,1.6,9.095,21.877,25.253,10.271,13.31,-0.04,-2.305,10.09,21.663,9.699,8.675,15.86,9.408,6.616,14.39,10.933,15.869,13.474,8.328,27.913,0.191,-0.756,26.956,25.693,21.102,8.397,10.349,14.148,6.538,13.569,4.276,13.553,4.909,20.156,12.749,11.612,0.312,7.468,15.9,7.007,-3.387,12.38,10.156,15.02,-0.018,19.898,21.919,5.451,5.343,4.081,23.704,5.703,19.636,17.287,-0.311,20.571,10.386,1.178,-2.367,20.95,-1.705,11.968,3.127,17.642,20.197,18.554,10.359,22.689,10.965,1.736,13.16,11.067,19.876,10.693,3.346,23.222,9.009,23.01,16.525,10.721,7.298,6.763,15.52,14.043,17.21,10.125,13.913,11.32,1.533,18.73,7.219,17.869,4.124,19.798,16.527,9.368,15.797,17.296,2.738,5.316,7.647,27.195,16.992,1.721,16.488,0.036,4.057,14.532,20.012,21.398,3.6,2.848,12.0,18.789,17.537,15.331,1.043,4.521,13.304,9.543,26.197,17.431,10.745,5.707],[15.07,20.764,15.748,0.6,12.444,9.863,-0.688,10.426,8.252,-0.182,10.093,27.426,25.722,21.862,8.208,6.636,11.937,19.108,12.023,0.705,5.621,6.537,5.956,13.014,15.377,-1.929,20.819,23.593,15.771,9.189,2.91,21.114,-2.911,19.313,11.272,2.349,11.164,10.598,21.894,15.108,5.073,21.755,9.741,2.671,10.034,6.092,19.45,16.61,15.965,10.958,14.746,1.411,18.326,17.089,26.311,4.529,12.258,4.781,21.538,3.094,7.885,16.934,1.149,16.152,22.149,1.182,9.117,1.605,9.142,22.064,25.123,10.363,13.173,-0.423,-2.001,10.202,21.053,10.124,8.593,15.665,9.303,6.661,14.314,10.635,16.372,13.175,8.405,27.624,0.618,-1.109,26.703,25.631,20.945,7.887,10.301,14.049,6.414,13.56,4.55,13.496,4.852,20.38,13.275,11.95,0.071,7.212,15.741,7.429,-3.399,12.488,10.207,15.906,-0.37,19.847,21.858,5.003,5.592,4.02,23.735,5.493,19.751,17.333,-0.257,20.995,10.176,1.223,-2.653,20.624,-1.344,12.087,3.235,17.588,20.317,19.099,11.025,22.759,10.642,1.525,12.72,11.193,20.127,9.971,3.481,23.233,9.397,23.011,15.889,10.867,7.428,6.947,16.253,13.875,17.565,9.425,14.142,11.103,1.537,19.579,6.785,17.749,4.308,18.846,16.464,9.146,15.718,18.05,2.952,5.313,7.897,27.006,16.417,2.103,16.142,0.287,4.272,14.56,20.324,20.733,3.139,2.966,11.492,18.99,17.131,15.457,0.951,4.307,13.245,9.432,25.633,17.517,10.778,5.222],[15.104,20.589,15.899,0.648,12.209,9.811,-0.532,10.576,8.12,-0.237,10.051,27.211,25.524,21.793,8.105,6.536,12.041,19.106,12.392,0.643,5.577,6.361,5.97,12.995,15.466,-1.894,20.765,23.614,15.826,9.158,2.966,21.097,-2.752,19.433,11.133,2.266,10.881,10.775,21.874,15.068,5.028,21.754,9.636,2.777,10.0,6.017,19.438,16.737,16.067,10.791,14.859,1.538,18.249,17.205,26.261,4.553,12.359,4.861,21.532,2.992,8.037,16.759,1.158,16.074,22.044,1.443,9.201,1.163,9.086,21.749,25.173,10.088,13.272,-0.702,-1.612,9.696,21.654,10.329,8.858,15.546,9.05,6.784,14.425,10.719,16.544,13.003,8.306,28.119,0.787,-1.17,26.73,25.342,21.115,7.846,10.749,14.097,5.875,13.853,4.215,13.591,4.707,20.699,13.632,11.687,0.225,6.955,16.182,7.544,-3.394,12.852,10.262,15.854,-0.164,19.528,21.978,4.744,5.743,3.466,23.55,5.894,20.281,17.362,-0.645,21.482,10.578,0.8,-2.705,21.099,-1.407,12.079,3.037,17.71,19.949,19.545,10.798,23.193,10.68,1.309,12.476,11.123,20.159,10.066,3.641,22.665,9.437,22.83,15.813,11.353,7.452,6.606,15.978,13.498,17.36,9.592,14.584,11.47,1.789,20.185,6.472,17.922,4.713,18.599,16.004,9.11,16.117,17.893,3.019,5.426,8.253,27.344,16.422,2.595,16.138,0.351,4.293,14.671,20.476,20.517,3.145,2.908,11.388,19.14,17.231,15.412,0.747,4.745,13.1,9.204,25.339,17.663,11.174,5.313],[15.264,20.495,16.083,0.633,12.063,9.634,-0.409,10.75,7.802,-0.214,9.925,27.003,25.51,21.866,7.955,6.547,12.17,19.247,12.578,0.604,5.517,6.259,5.875,13.041,15.48,-2.058,20.857,23.483,15.984,9.22,2.945,21.127,-2.618,19.601,11.149,2.312,10.665,10.854,21.908,14.902,4.855,21.618,9.561,3.031,10.029,5.831,19.446,16.786,16.22,10.715,15.069,1.594,18.241,17.018,26.226,4.634,12.426,5.032,21.431,3.141,8.191,16.659,1.207,15.934,21.588,1.454,9.335,1.374,8.621,21.284,25.028,10.205,13.473,0.021,-1.686,9.565,21.459,10.259,8.996,15.167,9.207,6.963,14.649,10.411,16.275,12.758,8.315,28.359,0.965,-0.862,26.778,25.401,20.97,7.526,11.279,14.174,4.992,13.894,4.056,13.697,4.517,20.573,14.006,11.934,0.228,6.577,16.824,7.175,-3.629,12.84,10.136,15.268,0.162,19.181,21.786,4.747,5.647,3.629,23.466,6.139,20.811,17.295,-0.576,21.06,10.683,0.573,-2.548,21.227,-1.499,11.622,3.092,17.963,19.844,19.232,10.686,23.035,10.537,1.805,12.756,11.179,19.961,10.62,3.788,22.644,9.204,22.934,15.676,10.574,7.421,6.667,15.953,13.413,17.342,9.783,14.777,11.498,2.002,20.045,6.413,18.523,4.43,18.13,16.227,8.815,16.326,17.449,2.649,5.26,8.328,27.163,16.599,2.777,16.699,0.173,4.028,14.819,20.254,20.852,3.428,2.881,10.987,19.008,17.507,15.683,0.929,4.822,13.0,8.992,26.058,17.532,11.809,5.757],[15.25,20.341,16.202,0.666,12.161,9.514,-0.399,10.823,7.431,-0.078,9.872,26.937,25.678,21.896,7.819,6.459,12.205,19.289,12.5,0.601,5.517,6.298,5.747,13.218,15.463,-2.372,21.089,23.278,16.34,9.277,2.864,21.157,-2.468,19.648,11.283,2.449,10.592,10.752,21.859,14.716,4.642,21.514,9.591,3.398,10.186,5.771,19.435,16.952,16.261,10.501,15.296,1.689,18.321,16.764,26.435,4.762,12.438,5.201,21.371,3.395,8.333,16.744,1.196,15.749,21.687,1.212,8.495,1.449,8.27,21.224,24.922,10.52,13.357,-0.121,-1.646,10.05,20.946,10.315,8.215,15.481,8.975,6.295,14.835,10.435,15.93,12.653,7.933,28.26,0.811,-1.045,26.673,25.28,21.058,7.259,11.6,14.019,4.94,13.976,4.261,13.725,4.561,20.762,14.174,12.088,0.009,6.616,17.223,6.792,-3.634,12.289,10.077,15.488,-0.177,19.544,21.727,4.647,5.214,3.64,23.664,5.557,20.938,17.432,-0.621,20.919,10.634,1.243,-2.23,20.926,-1.551,11.662,3.124,18.013,20.162,19.27,10.812,22.706,10.402,1.813,12.955,11.132,19.766,10.556,3.68,23.054,9.135,22.723,16.119,10.447,6.767,6.517,15.784,13.568,17.531,9.477,14.418,11.319,2.257,19.823,6.328,18.206,3.995,17.78,16.226,8.649,16.086,18.037,2.691,5.647,7.971,26.486,16.667,2.715,16.214,-0.043,4.034,14.684,19.586,21.377,3.734,2.945,10.842,18.583,17.31,16.015,1.014,4.784,13.042,8.87,25.851,17.407,12.477,5.89],[15.1,20.319,16.285,0.614,12.299,9.504,-0.513,10.944,7.224,-0.028,9.85,26.932,25.751,21.852,7.69,6.379,12.194,19.397,12.334,0.457,5.385,6.552,5.65,13.404,15.387,-2.639,21.415,23.261,16.745,9.16,2.823,21.051,-2.399,19.512,11.472,2.522,10.502,10.541,21.742,14.78,4.493,21.462,9.646,3.665,10.28,5.81,19.354,17.15,16.13,10.191,15.432,1.725,18.391,16.611,26.651,4.916,12.458,5.232,21.226,3.388,8.38,16.86,1.191,15.592,21.94,1.495,8.269,1.533,8.424,21.338,25.273,10.405,13.308,-0.296,-1.695,9.942,21.051,10.146,8.289,15.792,8.727,6.334,14.818,10.673,15.871,12.738,8.058,27.928,0.69,-1.005,26.838,25.135,21.076,7.289,11.495,14.122,5.162,13.954,4.279,13.693,4.83,20.837,14.176,11.637,0.169,7.238,18.227,6.12,-3.304,11.973,10.31,15.684,-0.212,19.545,21.852,4.868,5.2,3.5,23.35,5.967,21.077,17.296,-0.854,21.117,10.443,1.222,-2.316,21.361,-1.179,11.959,2.907,17.767,19.757,19.301,10.761,22.689,10.503,1.39,13.015,11.135,19.675,10.168,4.359,22.973,9.213,22.452,16.691,10.859,6.763,6.054,14.956,13.414,18.338,9.718,14.293,11.093,2.019,19.806,6.157,17.841,3.745,17.45,15.679,8.348,16.516,18.401,3.175,5.905,7.643,26.902,16.169,2.425,15.951,-0.036,4.785,14.31,19.405,21.984,3.535,2.806,11.006,18.429,17.53,15.392,0.914,4.68,13.032,9.008,26.046,17.05,12.775,6.16],[14.887,20.499,16.329,0.618,12.469,9.578,-0.645,10.949,7.368,0.119,9.856,26.909,25.668,21.771,7.645,6.285,12.168,19.492,12.217,0.288,5.43,6.897,5.747,13.627,15.273,-2.722,21.87,23.343,17.18,9.02,2.793,20.929,-2.333,19.265,11.586,2.471,10.403,10.327,21.634,14.923,4.354,21.435,9.75,3.748,10.158,5.875,19.113,17.272,16.059,10.001,15.396,1.717,18.544,16.312,26.954,5.118,12.434,5.202,21.087,3.151,8.419,16.806,1.155,15.402,21.942,1.845,8.672,1.316,8.423,21.969,25.351,10.513,13.466,-0.421,-2.013,9.377,21.026,10.482,8.911,15.44,8.902,6.889,14.927,10.905,15.87,12.682,8.446,27.43,0.448,-0.855,27.102,25.131,20.814,6.877,11.113,14.535,5.283,13.941,4.089,13.382,4.47,21.043,13.755,11.32,0.35,7.351,18.922,5.821,-3.454,11.947,10.373,15.497,-0.085,19.988,21.59,5.173,5.291,3.871,23.494,5.382,20.931,17.418,-1.076,21.451,10.105,0.814,-2.606,21.22,-1.203,11.951,2.851,17.626,19.388,18.852,10.86,22.896,10.571,1.589,13.118,10.87,19.652,10.228,4.894,22.32,8.627,22.544,16.699,10.081,7.242,6.221,15.176,13.302,18.498,10.228,14.193,11.518,2.577,19.718,6.057,18.403,3.701,17.352,15.442,8.179,16.98,17.933,2.999,5.325,7.414,27.279,16.359,2.026,16.341,0.143,4.988,14.219,19.348,22.052,3.489,2.843,10.813,18.221,17.847,15.706,1.029,4.384,13.273,9.236,26.377,16.62,12.753,6.243],[14.73,20.601,16.39,0.749,12.616,9.741,-0.732,10.958,7.557,0.427,9.979,26.819,25.441,21.739,7.698,6.229,12.097,19.647,12.103,0.326,5.472,6.845,5.755,13.879,15.019,-2.711,22.157,23.405,17.628,9.024,2.796,20.746,-2.421,19.009,11.539,2.707,10.228,10.317,21.496,15.055,4.346,21.492,9.88,3.854,10.09,5.944,18.874,17.396,16.07,9.925,15.53,1.702,18.639,16.101,27.3,5.263,12.316,5.029,21.055,2.889,8.475,16.816,1.278,15.094,21.935,2.019,8.68,1.431,8.535,22.397,25.379,10.299,13.053,-0.907,-2.05,9.48,21.264,10.674,9.08,15.431,9.034,6.572,15.087,11.136,15.746,12.639,8.32,26.9,0.049,-0.464,26.899,24.913,20.398,7.293,10.495,15.152,5.32,13.974,3.843,13.222,4.349,21.142,13.726,11.561,0.029,7.206,19.298,5.846,-3.696,12.326,10.162,15.525,-0.623,19.969,21.587,4.947,5.425,3.812,23.609,5.689,20.548,17.275,-0.835,21.447,9.589,1.206,-2.251,21.073,-1.293,12.063,3.07,17.288,19.327,19.018,10.922,22.448,10.461,2.302,13.059,10.727,19.615,10.232,4.891,21.754,8.758,22.645,15.843,10.082,7.057,6.13,15.803,13.277,17.517,10.462,14.249,11.488,2.859,19.48,5.832,18.764,3.759,17.024,15.033,8.093,16.237,17.451,2.486,5.305,7.568,27.011,16.458,2.232,16.455,0.364,4.414,14.141,19.187,21.363,3.899,3.011,10.556,17.522,18.026,15.671,0.779,4.074,13.654,9.777,26.58,16.51,12.558,6.015],[14.684,20.616,16.419,0.925,12.718,9.786,-0.765,11.003,7.63,0.722,10.164,26.564,25.227,21.732,7.881,6.312,12.057,19.841,12.014,0.355,5.469,6.641,5.645,14.172,14.825,-2.657,22.091,23.469,17.835,9.013,2.88,20.546,-2.418,18.96,11.413,3.152,10.064,10.509,21.236,15.018,4.32,21.53,9.965,4.015,10.031,5.848,18.68,17.253,15.988,10.078,15.532,1.552,18.616,15.973,27.511,5.113,12.176,4.927,20.982,2.704,8.621,16.939,1.509,14.756,21.808,2.228,8.401,1.728,8.98,21.758,25.162,10.636,12.901,-0.742,-2.291,10.054,21.552,10.081,8.749,15.443,9.172,6.28,15.102,10.991,15.451,12.91,8.142,27.025,-0.339,-0.473,26.334,24.698,20.714,7.701,10.628,15.236,4.879,13.638,3.901,12.972,4.873,21.15,13.322,11.784,0.18,7.521,19.403,5.901,-3.505,12.723,10.148,14.953,-0.668,19.793,21.891,5.271,5.735,2.961,23.389,6.094,20.684,17.598,-0.719,21.787,10.234,1.698,-2.259,21.038,-1.078,12.071,3.419,17.055,19.167,19.379,10.29,22.369,10.298,2.301,12.963,11.165,19.839,10.036,4.617,21.439,9.213,22.991,15.467,10.47,6.753,6.007,15.867,13.419,17.352,10.203,14.246,11.514,2.685,19.162,6.303,18.581,4.356,16.851,14.768,8.22,16.337,17.645,2.686,5.591,7.689,27.173,16.269,2.342,16.401,0.568,4.02,13.92,19.518,20.81,4.158,2.859,10.504,17.627,17.904,15.438,0.974,3.929,13.364,9.612,27.045,16.378,12.18,5.863],[14.684,20.571,16.304,1.078,12.799,9.68,-0.875,11.0,7.632,0.778,10.126,26.348,25.227,21.663,8.122,6.369,12.063,20.032,11.928,0.444,5.551,6.672,5.536,14.291,14.698,-2.652,22.091,23.507,17.829,9.103,2.953,20.407,-2.407,19.189,11.312,3.29,9.956,10.629,20.899,14.804,4.392,21.556,10.057,4.245,9.966,5.72,18.523,16.922,15.881,10.335,15.396,1.458,18.473,15.942,27.672,4.979,12.117,5.076,20.88,2.561,8.775,17.016,1.55,14.467,21.655,2.49,8.421,1.303,8.992,21.118,24.914,10.614,13.002,0.042,-1.812,10.413,21.432,10.564,8.667,15.338,9.151,6.658,15.245,10.969,15.925,13.204,8.232,27.622,0.024,-0.446,26.362,24.59,20.812,7.839,10.878,15.299,4.782,13.625,3.71,13.009,4.682,21.033,13.631,11.47,0.631,7.546,19.404,6.09,-3.486,13.135,10.176,14.375,-0.554,20.178,22.279,5.66,5.83,3.138,23.477,5.308,20.793,18.029,-0.857,21.631,10.546,2.268,-2.418,20.321,-0.853,11.933,3.377,17.552,19.382,19.117,10.603,22.324,9.944,2.164,12.791,11.738,20.113,10.164,4.628,21.846,9.171,23.153,15.758,10.504,6.958,6.105,15.533,13.929,18.017,10.109,14.194,11.082,3.141,19.199,6.703,18.104,4.198,16.663,14.927,8.556,16.905,17.896,2.476,5.629,7.683,27.588,16.78,2.483,16.175,0.368,4.116,13.553,19.999,20.138,3.622,3.239,10.467,17.749,17.943,15.606,1.058,3.61,12.989,8.997,26.851,16.096,11.328,5.955],[14.746,20.451,16.245,1.211,12.89,9.646,-0.901,11.003,7.548,0.803,10.009,26.399,25.383,21.536,8.405,6.383,12.0,20.189,11.952,0.601,5.442,6.872,5.312,14.218,14.63,-2.734,22.125,23.429,17.75,9.272,2.925,20.303,-2.615,19.488,11.309,3.299,9.825,10.718,20.69,14.554,4.453,21.721,10.217,4.552,9.871,5.695,18.542,16.731,15.906,10.526,15.398,1.401,18.399,15.973,27.769,4.94,12.035,5.396,20.82,2.453,8.793,17.02,1.574,14.259,21.601,2.363,8.63,1.195,8.608,20.723,25.376,10.21,12.91,-0.349,-2.22,9.442,21.202,10.64,9.06,15.21,8.91,7.122,14.856,11.401,16.51,13.229,8.306,27.599,0.55,-0.438,26.738,24.782,20.517,7.894,11.197,14.924,4.952,13.699,3.271,12.859,4.533,21.097,13.734,11.482,0.36,7.546,18.985,6.067,-3.487,13.221,10.164,14.492,-0.124,20.806,22.506,5.31,5.814,3.995,24.423,5.61,21.278,18.371,-1.054,21.252,10.531,2.419,-2.307,20.468,-1.011,11.419,3.435,17.989,19.767,19.117,10.961,21.614,9.776,2.062,13.004,11.887,20.404,10.284,5.096,21.854,9.18,23.104,15.651,10.569,7.099,6.336,15.231,14.185,17.647,10.032,14.142,11.036,3.233,19.356,6.334,17.668,3.817,16.914,15.45,8.682,16.49,17.58,2.646,5.834,7.837,27.113,16.507,2.193,16.04,0.205,4.593,13.044,19.326,20.067,3.529,3.2,10.868,17.723,17.505,14.996,0.824,3.688,12.945,9.03,26.974,15.868,10.746,6.092],[14.78,20.365,16.316,1.187,12.912,9.651,-0.919,10.877,7.478,0.88,9.882,26.534,25.592,21.398,8.621,6.481,11.881,20.332,12.043,0.561,5.368,6.935,5.143,14.006,14.601,-2.82,22.216,23.331,17.525,9.335,3.044,20.279,-2.892,19.697,11.347,3.263,9.695,10.769,20.58,14.481,4.581,21.951,10.276,4.848,9.787,5.621,18.765,16.599,15.982,10.708,15.324,1.33,18.187,15.899,27.742,5.102,11.854,5.688,20.619,2.491,8.766,16.977,1.663,14.119,21.711,2.225,8.174,1.675,8.309,20.23,25.455,10.53,13.055,-0.577,-2.366,9.329,20.747,10.275,8.635,15.3,9.276,7.75,14.993,11.454,16.702,13.212,7.929,27.632,0.365,-0.482,26.939,24.795,20.286,8.065,11.54,14.493,5.265,13.764,3.133,12.778,4.351,21.619,13.914,11.838,0.575,7.779,18.297,5.94,-3.325,12.934,10.322,14.907,0.101,20.873,22.258,5.646,5.413,3.717,24.332,5.465,21.653,19.088,-1.089,21.51,10.443,2.284,-2.686,20.723,-1.281,11.401,3.571,17.972,19.571,19.904,10.662,21.741,10.179,2.119,13.055,11.796,20.188,10.156,5.319,21.676,9.46,23.118,15.551,10.141,7.228,6.277,14.888,13.698,17.231,10.814,14.206,10.655,3.334,19.436,5.947,17.919,4.172,17.162,15.307,8.898,15.877,17.806,2.669,5.846,7.886,27.0,16.471,1.33,16.085,0.522,4.499,12.655,18.841,20.804,3.756,3.239,11.309,17.725,17.098,15.16,0.474,3.993,13.008,9.608,27.267,15.653,10.692,6.493],[14.821,20.328,16.46,1.249,12.905,9.743,-0.968,10.745,7.348,0.998,9.816,26.601,25.754,21.167,8.813,6.714,11.803,20.44,12.268,0.39,5.241,6.851,5.146,13.797,14.654,-2.739,22.373,23.209,17.301,9.285,3.154,20.408,-3.08,19.844,11.38,3.264,9.57,10.766,20.686,14.473,4.733,21.937,10.488,5.066,9.676,5.485,18.852,16.531,16.012,10.883,15.216,1.221,17.916,15.738,27.658,5.263,11.62,5.926,20.436,2.534,8.876,17.031,1.779,14.11,21.623,2.403,8.164,1.899,8.206,20.169,25.406,10.317,13.027,-0.163,-2.357,9.874,20.51,10.22,8.377,15.254,9.423,7.365,15.094,11.096,16.773,13.061,8.062,27.701,0.132,-0.589,26.628,24.864,20.468,8.344,11.208,14.57,5.373,13.513,3.34,12.836,4.782,22.134,13.961,11.812,0.527,7.89,17.617,5.852,-3.154,12.454,10.121,15.129,-0.689,20.509,21.673,6.008,5.365,3.377,23.428,5.234,21.808,18.947,-1.035,22.018,10.7,2.119,-3.048,20.176,-1.564,11.609,4.018,17.937,19.557,20.439,10.681,22.269,10.176,2.145,13.054,11.143,20.259,9.999,5.419,21.317,9.717,23.239,15.608,9.521,7.045,6.46,14.78,13.377,16.962,10.788,14.441,10.354,3.658,19.353,6.108,18.188,4.288,16.924,14.898,9.096,15.941,18.005,2.182,5.931,7.607,27.607,16.774,1.004,16.374,0.81,4.374,12.485,18.848,20.957,3.885,3.442,11.882,17.512,16.993,15.495,0.384,4.012,12.96,9.514,27.18,15.328,10.519,6.953],[14.83,20.212,16.589,1.548,12.963,9.884,-1.103,10.594,7.294,1.077,9.832,26.697,25.743,20.979,8.849,6.867,11.728,20.402,12.525,0.264,5.109,6.742,5.256,13.626,14.832,-2.546,22.546,22.971,16.998,9.244,3.279,20.626,-3.214,19.921,11.409,3.32,9.418,10.724,20.785,14.427,4.738,21.716,10.626,5.165,9.572,5.481,18.713,16.451,15.999,11.001,15.127,1.147,17.729,15.586,27.61,5.324,11.373,6.066,20.357,2.528,8.961,17.269,1.828,14.23,21.324,2.432,8.318,1.982,8.211,20.073,25.424,10.501,12.983,0.129,-2.319,9.362,20.792,10.191,8.755,15.218,9.211,7.366,15.074,11.258,16.826,12.922,8.315,27.442,0.059,-0.422,26.426,25.069,20.266,8.293,11.112,14.546,5.484,13.151,3.478,13.114,4.97,21.69,14.062,11.579,0.611,7.441,17.665,6.283,-2.567,12.622,9.713,14.801,-0.562,20.016,21.482,5.561,5.869,4.023,23.443,5.204,22.114,18.313,-0.864,22.131,10.888,1.908,-3.332,19.785,-1.533,12.148,3.732,18.154,19.479,20.097,11.194,22.184,10.175,2.335,12.928,11.028,20.373,10.19,6.049,21.401,9.857,23.209,15.548,9.559,6.869,6.634,15.116,13.728,16.386,10.145,14.441,10.419,3.793,19.418,6.227,17.988,4.445,17.045,14.444,9.362,16.411,17.288,2.307,6.117,7.477,27.393,17.342,1.135,16.345,1.129,4.519,12.447,19.463,19.984,4.144,3.27,12.158,17.058,17.114,15.404,0.659,3.914,12.807,9.401,26.878,15.152,10.576,7.406],[14.804,20.049,16.744,1.967,13.039,9.879,-1.207,10.483,7.415,1.126,9.842,26.754,25.592,20.914,8.886,6.836,11.542,19.994,12.664,0.333,5.087,6.546,5.456,13.473,15.023,-2.341,22.6,22.709,16.726,9.163,3.448,20.638,-3.296,19.889,11.589,3.433,9.31,10.816,20.757,14.461,4.584,21.613,10.672,5.241,9.594,5.613,18.646,16.136,15.859,11.07,15.161,1.215,17.635,15.348,27.559,5.395,11.333,6.159,20.342,2.523,8.945,17.575,1.841,14.425,20.964,2.678,7.846,2.551,8.162,19.77,25.542,10.306,12.997,0.215,-2.559,9.321,20.695,10.168,8.379,15.286,9.657,7.883,15.677,11.589,16.227,13.33,8.18,27.621,-0.165,-0.239,26.886,24.962,19.985,8.11,11.821,14.497,5.187,13.275,3.482,13.352,4.335,21.557,14.436,11.964,1.157,6.992,18.023,6.366,-2.156,12.812,9.458,14.731,-0.475,20.474,21.901,5.579,5.989,4.047,23.844,5.308,22.495,17.025,-0.633,21.903,10.79,2.262,-3.527,20.442,-1.674,12.162,3.6,18.136,20.08,19.812,11.199,21.899,9.762,2.369,12.944,11.403,19.865,10.268,5.981,21.638,9.614,22.468,15.612,10.008,7.141,6.392,15.168,13.843,16.466,9.474,14.313,10.99,4.057,19.379,6.012,17.843,4.336,16.704,14.293,9.352,16.286,16.789,2.831,6.062,7.743,27.113,17.741,1.316,16.761,0.963,4.825,12.523,19.221,19.916,4.076,3.282,12.053,17.109,17.007,14.868,0.653,3.926,12.767,9.722,26.752,14.932,11.063,6.869],[14.738,19.902,16.797,2.427,13.213,9.897,-1.258,10.434,7.498,1.339,9.703,26.719,25.621,20.858,9.124,6.538,11.431,19.723,12.662,0.554,5.108,6.348,5.649,13.451,15.166,-2.245,22.615,22.627,16.712,9.082,3.541,20.652,-3.351,19.82,11.773,3.554,9.038,10.995,20.603,14.551,4.422,21.589,10.637,5.286,9.716,5.696,18.661,15.855,15.674,11.15,15.216,1.383,17.559,15.137,27.495,5.51,11.638,6.124,20.367,2.456,8.85,17.724,1.911,14.55,20.536,2.703,8.171,2.786,8.388,19.606,25.398,9.733,12.894,0.67,-2.919,9.949,20.474,10.186,8.291,15.387,9.419,7.901,15.387,11.761,16.175,13.058,8.351,27.807,-0.341,-0.263,26.783,24.961,20.09,8.659,12.201,13.787,4.896,13.15,3.84,13.307,4.511,21.339,14.412,11.492,0.293,6.957,17.737,6.253,-2.357,12.573,9.716,15.435,-0.14,19.897,21.577,5.627,5.911,3.707,23.613,5.04,22.114,16.242,-0.555,21.996,10.51,2.831,-3.395,21.131,-1.919,12.127,4.16,18.385,19.862,19.369,10.807,22.14,9.459,2.193,13.367,11.371,19.833,10.222,5.543,21.26,9.379,22.459,15.668,10.442,7.145,6.315,14.618,13.622,16.064,9.586,13.878,11.232,4.03,18.964,6.234,17.448,3.815,16.962,14.665,9.384,16.008,16.859,2.424,6.38,8.117,27.251,17.521,1.967,17.232,0.833,4.876,12.732,19.061,20.346,4.138,3.376,11.607,16.98,16.845,14.851,0.552,4.053,13.171,9.483,26.667,15.041,11.311,6.708],[14.712,19.671,16.711,2.751,13.263,10.032,-1.329,10.435,7.703,1.473,9.597,26.656,25.793,20.834,9.388,6.225,11.358,19.662,12.489,0.7,5.132,6.308,5.741,13.416,15.292,-2.268,22.689,22.668,16.624,9.108,3.59,20.876,-3.375,19.74,11.84,3.61,8.809,11.059,20.457,14.572,4.227,21.713,10.534,5.265,9.804,5.672,18.574,15.541,15.458,11.139,15.319,1.424,17.417,15.053,27.49,5.579,12.064,6.055,20.394,2.398,8.85,17.651,1.931,14.565,19.942,2.872,8.275,3.116,8.427,19.569,25.533,9.259,12.893,0.948,-3.001,10.04,20.678,9.725,8.282,15.079,9.29,7.977,15.068,11.894,16.502,12.844,8.571,27.703,-0.331,0.049,26.338,24.929,20.158,8.722,11.56,13.392,4.838,13.13,4.023,13.582,4.971,21.06,14.31,10.84,0.819,6.897,17.673,6.061,-2.316,13.075,9.985,15.695,-0.437,19.734,21.285,5.062,5.649,3.845,23.452,4.93,21.398,16.622,-0.616,21.945,10.12,2.636,-2.783,20.866,-2.114,12.337,4.602,17.964,19.715,19.454,11.205,21.976,9.868,2.03,13.378,11.148,20.326,10.031,5.849,20.891,9.312,23.176,15.426,9.93,7.143,6.055,14.13,13.618,15.775,10.433,13.752,11.14,3.738,19.232,6.381,17.112,4.172,16.748,14.615,9.273,15.938,16.849,2.494,6.483,7.934,27.239,17.277,2.647,17.018,0.841,5.311,12.851,19.333,20.252,4.746,3.395,11.838,16.964,17.306,15.17,0.462,4.241,13.449,9.527,26.355,15.813,11.746,6.852],[14.711,19.375,16.755,2.922,13.232,10.145,-1.347,10.331,7.917,1.639,9.531,26.509,25.92,20.871,9.447,6.056,11.31,19.78,12.232,0.783,5.21,6.303,5.693,13.391,15.459,-2.252,22.745,22.71,16.441,9.09,3.681,21.132,-3.335,19.52,11.952,3.399,8.741,11.055,20.344,14.581,4.153,21.912,10.377,5.202,9.869,5.642,18.335,15.216,15.172,11.069,15.378,1.279,17.265,15.186,27.543,5.883,12.47,6.106,20.369,2.43,8.95,17.588,1.787,14.578,19.998,3.268,8.182,3.331,8.844,19.511,25.631,9.607,12.865,1.455,-2.862,9.241,20.452,9.67,8.605,14.843,10.005,8.269,15.363,11.767,16.377,13.208,8.46,27.555,-0.077,0.223,26.631,25.115,20.322,8.733,10.937,13.678,4.536,13.015,3.786,13.767,4.702,21.448,13.743,11.15,1.095,7.129,17.347,5.928,-2.221,12.944,9.749,15.05,-0.2,19.625,21.956,5.127,5.681,4.194,23.488,5.591,21.326,17.137,-0.959,22.266,10.262,2.188,-2.815,20.423,-1.901,12.42,4.414,17.761,20.397,19.895,11.506,21.584,9.86,2.282,13.214,11.454,20.689,10.08,6.159,21.301,9.273,23.509,15.148,9.564,6.971,5.918,14.532,13.634,15.619,10.815,13.607,10.576,3.627,19.298,6.407,16.762,4.238,16.636,13.845,9.393,16.151,16.637,2.447,5.755,7.491,27.197,17.276,2.701,16.69,1.018,5.172,13.031,19.275,20.443,4.597,3.449,12.029,16.822,16.935,15.27,0.624,4.1,13.777,9.759,26.45,16.003,12.069,6.564],[14.6,19.061,16.864,2.927,13.35,10.155,-1.199,10.259,8.049,1.836,9.432,26.324,25.978,20.928,9.31,5.932,11.263,19.957,11.876,0.873,5.398,6.367,5.53,13.416,15.486,-2.222,22.84,22.88,16.279,8.967,3.734,21.429,-3.337,19.412,12.149,3.076,8.724,10.875,20.275,14.621,4.227,22.139,10.255,5.087,9.815,5.609,18.105,15.089,14.875,11.083,15.364,1.133,17.109,15.305,27.688,6.159,12.819,6.144,20.399,2.507,9.004,17.606,1.623,14.573,19.972,3.347,8.734,3.32,9.097,19.723,25.943,9.991,12.743,1.413,-3.011,9.421,20.137,9.791,8.27,15.046,10.04,8.058,15.752,11.873,16.6,13.199,8.368,27.696,-0.243,0.211,27.136,24.736,20.31,8.989,11.135,13.862,4.092,12.857,3.632,13.819,4.575,21.636,13.447,11.347,0.855,7.117,17.393,6.083,-2.137,12.351,9.374,15.235,0.025,19.646,22.386,5.639,5.939,4.278,23.52,5.617,21.407,16.817,-0.699,22.54,10.74,1.811,-2.831,20.686,-1.812,12.635,4.346,17.575,20.232,19.54,11.751,21.067,9.483,2.542,13.637,11.445,20.658,10.406,5.827,21.385,9.623,23.246,14.567,9.875,6.909,6.163,15.377,13.359,15.451,9.927,13.209,10.791,4.028,19.005,6.773,16.85,3.581,16.866,13.754,9.842,16.079,16.375,1.884,6.276,7.562,27.258,17.034,2.631,17.194,0.654,5.343,13.115,19.292,20.61,5.155,2.835,12.078,16.908,16.577,15.639,0.048,3.902,14.31,9.441,26.682,15.941,12.321,6.721],[14.448,18.828,16.999,2.841,13.542,9.986,-1.163,10.309,8.225,1.814,9.292,26.17,26.046,20.981,9.173,5.862,11.279,20.101,11.672,0.836,5.678,6.521,5.486,13.394,15.523,-2.03,22.847,23.07,16.221,8.872,3.63,21.66,-3.405,19.269,12.453,3.086,8.772,10.801,20.089,14.733,4.281,22.233,10.148,4.994,9.728,5.62,17.969,15.221,14.649,11.35,15.39,0.961,16.994,15.398,27.871,6.275,13.05,6.379,20.55,2.541,8.938,17.704,1.41,14.473,19.402,3.079,8.543,3.333,9.021,20.009,26.135,9.715,12.569,1.263,-3.005,9.868,20.088,9.2,7.947,15.071,9.416,7.839,15.379,11.94,17.054,13.236,8.392,27.123,-0.155,0.594,27.116,24.466,19.816,8.673,10.971,14.003,4.159,12.698,3.726,13.75,5.026,21.623,13.415,10.742,1.512,7.103,17.561,5.799,-2.399,12.559,9.113,15.764,-0.11,19.547,22.053,5.367,5.592,4.173,23.559,5.359,21.435,15.935,-0.208,22.093,10.595,1.6,-2.545,21.331,-2.014,12.782,4.388,17.901,20.201,19.157,11.178,21.496,9.657,2.401,13.687,10.632,20.93,9.786,5.846,20.92,10.085,23.003,14.314,9.8,6.634,5.973,15.346,13.181,15.362,9.705,12.983,11.001,4.176,18.647,6.825,16.863,3.538,16.603,14.232,9.674,15.662,16.102,2.297,6.405,7.78,27.335,17.309,2.35,17.325,0.324,5.662,13.189,19.357,20.596,5.005,2.858,12.441,17.175,16.73,15.426,0.202,3.968,14.676,9.448,26.781,15.989,12.979,7.209],[14.394,18.716,17.28,2.72,13.46,9.79,-1.142,10.095,8.339,1.817,9.22,26.024,26.209,20.99,9.067,5.833,11.28,20.151,11.64,0.79,5.868,6.494,5.421,13.443,15.624,-1.827,22.551,23.064,16.194,8.807,3.472,21.806,-3.452,19.14,12.525,3.322,8.875,10.79,20.064,14.86,4.232,22.175,9.942,4.978,9.545,5.545,17.856,15.313,14.541,11.647,15.352,0.949,16.969,15.41,28.013,6.294,13.235,6.701,20.716,2.535,8.892,17.92,1.297,14.388,19.119,3.321,8.378,3.395,9.014,20.074,25.87,9.395,12.563,0.981,-2.854,9.075,20.196,9.467,7.993,14.654,9.542,7.966,15.749,11.737,17.241,13.549,8.147,26.797,-0.136,0.139,27.002,24.229,19.602,8.641,10.916,13.908,4.37,12.426,3.761,13.841,5.239,21.709,13.264,10.259,0.612,7.304,17.223,5.353,-2.132,12.86,9.288,15.544,0.23,19.527,21.818,5.371,5.532,4.125,23.716,5.919,21.605,15.339,-0.187,22.351,10.407,2.259,-2.628,21.351,-2.231,12.942,3.994,17.407,20.188,19.249,11.394,21.684,10.247,2.149,13.948,10.559,20.792,9.397,6.176,20.428,9.969,23.582,14.52,9.728,6.509,6.138,14.83,13.749,15.556,10.348,12.799,11.251,3.495,18.619,6.63,17.034,3.682,16.101,14.812,9.793,15.591,16.13,2.252,6.437,7.464,27.457,17.879,2.139,17.036,0.679,5.947,12.802,19.368,20.688,4.749,3.027,12.415,17.168,16.656,15.384,0.385,4.417,14.726,9.988,26.722,15.899,13.144,7.196],[14.385,18.723,17.672,2.594,13.162,9.889,-1.154,9.745,8.307,1.675,9.199,25.923,26.478,20.904,9.057,5.753,11.211,20.129,11.696,0.66,5.748,6.359,5.471,13.5,15.599,-1.652,22.258,22.857,16.162,8.819,3.343,21.704,-3.481,19.096,12.58,3.535,9.015,10.792,20.148,14.857,4.19,22.133,9.724,4.906,9.498,5.357,17.744,15.362,14.547,11.866,15.285,1.099,16.977,15.34,28.06,6.303,13.43,6.952,20.85,2.596,8.876,18.158,1.517,14.253,19.295,3.235,8.969,3.093,8.905,20.209,26.051,9.182,12.51,0.925,-2.708,8.962,20.08,9.202,7.969,14.425,9.518,8.084,16.061,11.857,17.782,13.027,8.284,26.714,0.104,0.47,26.944,24.076,20.001,8.675,11.236,13.878,4.778,12.533,3.73,13.912,5.117,21.708,13.249,10.115,0.837,7.319,16.786,5.016,-1.92,12.606,9.573,15.409,-0.379,19.869,22.015,5.229,5.177,3.682,23.257,5.972,21.582,14.773,0.079,22.182,10.226,2.471,-2.883,21.618,-2.159,12.244,3.888,17.285,20.069,19.489,11.674,21.75,10.327,2.262,14.316,11.177,20.517,9.463,5.887,20.87,9.481,23.602,14.7,10.032,6.349,5.864,14.817,14.268,15.576,10.143,12.85,10.606,3.487,18.416,6.76,17.095,4.289,16.451,14.795,10.11,15.973,16.302,1.899,6.586,7.444,27.374,18.821,2.474,17.504,0.642,6.008,12.933,19.922,21.091,5.13,3.014,12.374,17.227,17.032,15.178,0.11,4.265,14.654,9.968,27.084,15.473,12.577,7.441],[14.307,18.84,17.942,2.523,12.981,10.096,-1.145,9.402,8.216,1.636,9.157,25.855,26.727,20.746,9.043,5.724,11.174,20.158,11.801,0.489,5.497,6.309,5.467,13.469,15.549,-1.464,22.111,22.632,15.998,8.814,3.253,21.566,-3.378,19.218,12.634,3.479,9.09,10.745,20.236,14.757,4.106,22.121,9.539,4.78,9.431,5.325,17.832,15.303,14.63,11.879,15.219,1.19,17.161,15.351,28.126,6.421,13.466,7.097,21.154,2.581,8.898,18.355,1.731,14.145,19.768,3.168,9.057,2.627,8.85,20.499,26.35,9.226,12.508,1.023,-2.896,9.652,19.5,8.45,7.963,14.725,9.588,8.184,16.345,11.533,18.314,12.897,8.619,26.462,0.262,0.404,27.629,24.069,20.582,8.729,11.191,13.395,4.609,12.759,3.803,14.041,4.715,21.76,13.584,9.964,0.942,7.105,16.384,4.758,-1.868,13.186,9.53,15.346,-0.705,19.34,21.659,5.068,5.245,3.124,23.661,5.593,20.84,15.112,0.36,21.688,10.39,1.726,-2.679,21.543,-2.179,12.556,3.939,17.825,20.056,19.769,11.572,21.508,10.478,3.025,14.255,11.23,20.59,9.911,5.977,21.148,9.331,23.48,14.645,9.925,5.869,5.713,14.881,13.858,15.388,9.431,12.862,9.986,3.855,18.466,6.97,17.075,4.762,16.106,14.458,10.471,16.148,16.116,2.166,6.663,7.504,27.149,19.663,3.096,17.616,0.676,5.828,12.493,19.913,21.334,5.108,3.228,12.587,17.073,17.341,15.008,0.615,4.294,14.396,9.873,27.436,15.712,12.398,7.946],[14.284,18.974,18.044,2.401,13.097,10.13,-1.095,9.099,8.142,1.743,9.108,25.786,27.034,20.68,8.981,5.645,11.077,20.185,12.042,0.372,5.374,6.365,5.395,13.337,15.645,-1.28,21.911,22.546,15.836,8.861,3.023,21.656,-3.19,19.326,12.774,3.147,9.111,10.805,20.139,14.634,4.115,22.317,9.356,4.792,9.294,5.455,17.781,15.178,14.605,11.892,15.082,1.43,17.516,15.404,28.281,6.502,13.313,7.227,21.46,2.608,9.002,18.467,1.915,14.066,20.148,3.011,8.766,2.79,8.571,20.811,26.223,9.031,12.53,1.221,-2.953,9.64,19.08,8.512,7.762,14.976,9.756,7.83,16.303,11.56,18.597,12.887,8.418,26.389,-0.524,0.066,27.84,23.93,19.939,8.508,11.047,13.812,4.316,12.563,3.563,13.889,4.222,21.703,13.39,10.532,0.514,7.168,16.271,4.802,-1.396,12.66,9.402,15.292,-0.028,19.338,21.36,5.203,5.637,2.764,23.821,5.456,20.775,15.499,0.458,21.845,10.336,1.366,-2.573,21.275,-2.036,12.833,4.093,18.03,19.994,19.705,11.305,21.647,10.508,3.78,14.056,10.604,20.797,10.193,5.714,20.847,9.195,23.432,14.328,9.453,5.96,5.587,14.751,13.417,15.41,9.579,12.889,9.806,3.822,19.064,6.832,16.738,4.574,16.302,14.255,10.349,15.976,16.357,2.249,6.707,7.579,27.361,19.302,3.329,17.129,0.757,5.804,12.632,19.945,21.49,5.002,2.973,12.849,16.943,17.183,15.377,0.416,3.945,14.445,10.167,27.229,15.477,12.616,7.28],[14.3,19.012,17.997,2.446,13.4,9.91,-1.122,8.821,8.015,1.788,9.053,25.744,27.244,20.566,8.909,5.53,11.086,20.142,12.252,0.345,5.341,6.383,5.319,13.175,15.753,-1.076,21.705,22.42,15.707,8.906,2.637,21.757,-3.032,19.302,12.857,3.008,9.047,10.873,20.136,14.457,4.135,22.472,9.182,4.883,9.172,5.51,17.759,15.06,14.5,11.856,14.873,1.574,17.809,15.386,28.352,6.435,13.147,7.212,21.519,2.552,9.156,18.555,1.956,13.977,19.959,3.221,8.818,3.242,8.371,21.152,26.526,8.613,12.632,1.026,-3.008,9.376,19.61,8.868,7.785,15.277,9.623,7.896,16.325,11.808,18.372,13.119,8.313,26.532,-0.014,0.62,27.573,23.838,19.225,8.31,11.257,13.462,4.058,12.241,3.566,14.011,4.318,21.485,13.162,10.668,0.807,7.221,16.569,4.933,-0.96,12.68,9.19,15.653,-0.208,20.081,21.815,4.988,5.585,2.778,23.308,5.789,21.086,15.37,0.777,22.319,10.61,1.356,-2.595,21.661,-2.295,12.965,4.178,17.501,20.128,19.835,11.3,21.782,10.352,3.422,14.375,10.519,21.374,9.692,5.446,20.532,9.335,23.863,14.238,9.767,6.741,5.97,14.65,13.868,15.223,9.89,12.816,10.477,3.653,18.519,6.812,16.821,3.902,16.606,14.502,10.028,15.902,16.615,2.778,6.705,7.822,27.721,19.3,3.146,17.111,0.663,6.153,12.433,20.362,21.803,5.039,2.965,12.628,17.26,17.948,15.945,0.639,3.683,14.722,9.833,27.371,15.341,12.64,7.258],[14.423,19.044,18.011,2.666,13.667,9.571,-0.945,8.617,7.886,1.931,9.109,25.803,27.29,20.477,8.991,5.429,11.109,20.092,12.289,0.516,5.441,6.266,5.293,13.0,15.891,-0.774,21.579,22.251,15.705,9.03,2.377,21.95,-3.137,19.283,12.846,2.955,9.082,10.882,20.261,14.236,4.22,22.571,9.233,4.938,9.252,5.488,17.664,15.024,14.308,11.692,14.73,1.752,18.074,15.49,28.349,6.405,13.037,7.005,21.436,2.411,9.351,18.799,1.772,13.822,19.766,3.632,8.578,3.405,8.31,20.976,26.682,8.452,12.599,1.249,-2.856,9.178,20.078,8.331,7.627,15.1,9.225,8.224,16.266,12.114,17.803,13.543,8.1,26.487,0.222,0.938,27.641,23.995,19.233,8.297,11.371,12.831,3.866,12.712,3.585,14.13,4.367,21.819,13.741,10.297,0.674,6.887,17.169,5.027,-0.912,12.487,9.107,15.92,-0.275,19.768,21.831,5.19,5.205,2.877,23.723,5.655,20.624,14.899,0.897,22.328,10.672,1.195,-1.893,21.855,-2.431,12.992,3.745,17.427,20.315,19.381,11.623,21.775,10.149,3.76,14.511,10.517,21.236,9.022,5.919,20.927,9.458,23.94,14.5,10.455,6.54,5.818,14.521,13.932,14.959,9.732,12.781,10.781,3.817,18.486,6.915,16.722,3.013,16.139,14.762,9.836,15.619,16.815,2.81,6.726,7.733,27.72,19.714,3.268,17.41,0.747,5.886,12.185,20.356,21.454,4.838,3.23,12.423,17.067,18.017,15.843,0.572,3.591,14.689,9.626,27.39,15.117,12.435,7.968],[14.581,19.094,18.092,2.922,13.752,9.304,-0.679,8.499,7.723,2.149,9.167,25.903,27.237,20.423,9.242,5.366,11.096,20.05,12.149,0.739,5.556,5.989,5.279,12.765,16.032,-0.531,21.62,22.179,15.962,9.073,2.543,22.133,-3.191,19.169,12.735,2.916,9.287,10.914,20.38,14.033,4.156,22.363,9.325,5.006,9.358,5.507,17.432,15.008,14.157,11.433,14.703,1.912,18.144,15.647,28.241,6.361,13.006,6.896,21.225,2.365,9.49,19.001,1.704,13.631,19.744,3.938,8.289,3.641,7.962,20.91,26.288,8.67,12.71,1.396,-2.542,8.986,19.728,8.21,7.743,14.697,8.788,7.911,16.479,12.274,17.641,13.609,8.033,26.666,0.125,0.969,27.823,24.098,20.043,8.785,11.35,13.226,3.962,12.802,3.57,14.368,4.411,21.69,13.726,10.448,1.099,6.797,17.433,4.989,-0.41,12.104,9.733,15.619,0.244,19.2,21.326,5.191,5.178,3.136,23.9,5.528,20.24,15.098,1.037,22.091,10.459,1.22,-2.291,21.56,-2.638,12.909,3.183,17.524,20.409,19.397,11.66,21.665,10.221,2.993,14.427,10.734,20.623,9.248,6.201,21.129,9.389,23.485,14.307,10.527,6.086,5.985,14.275,13.059,14.896,9.879,12.721,10.836,3.691,18.663,6.663,16.843,3.09,16.117,14.723,9.746,15.439,16.8,2.719,6.209,7.848,27.45,20.17,3.084,18.2,1.052,5.841,12.254,20.184,21.177,4.919,3.008,12.511,17.333,18.239,14.947,0.715,3.923,14.057,10.02,27.237,15.022,11.653,7.713],[14.683,18.995,18.254,3.153,13.731,9.116,-0.63,8.477,7.498,2.32,9.18,25.926,27.112,20.498,9.471,5.339,11.078,19.874,11.987,0.912,5.682,5.751,5.356,12.579,16.155,-0.318,21.81,22.045,16.302,8.99,2.865,22.207,-3.274,19.065,12.627,2.724,9.483,10.874,20.391,13.828,4.121,21.934,9.409,5.086,9.496,5.463,17.247,15.054,14.083,11.234,14.584,2.125,18.132,15.735,28.04,6.284,12.902,6.838,21.025,2.404,9.649,19.025,1.841,13.58,19.9,3.931,8.545,3.577,7.81,21.271,26.262,8.875,13.078,1.653,-2.282,9.307,19.235,8.582,7.886,14.527,9.128,8.138,16.569,12.025,17.958,13.786,7.812,26.926,0.644,0.989,27.971,24.222,20.221,8.629,10.993,13.518,4.044,12.623,3.672,14.736,4.313,21.571,13.423,10.164,1.603,6.542,17.857,5.019,-0.157,12.098,9.697,15.36,-0.268,19.773,21.131,4.543,5.42,3.379,23.417,5.832,20.744,15.108,1.364,21.874,10.034,0.921,-2.627,21.566,-2.421,12.462,3.354,17.592,20.622,19.475,11.653,21.72,10.721,2.817,13.945,10.667,20.7,9.792,5.858,21.231,9.353,23.019,14.136,10.161,6.261,5.901,14.597,12.826,15.111,9.889,12.334,10.554,3.968,18.141,6.881,16.749,3.935,15.94,14.888,9.449,16.148,16.711,3.091,6.255,8.075,27.305,20.281,2.978,18.195,0.545,5.992,12.022,19.896,21.361,5.156,2.845,12.415,17.708,18.635,14.526,1.112,3.914,13.634,10.111,27.47,14.694,11.762,6.944],[14.808,18.823,18.317,3.362,13.819,9.015,-0.668,8.503,7.384,2.27,9.156,25.938,26.991,20.697,9.605,5.366,10.987,19.799,11.917,0.962,5.825,5.53,5.611,12.564,16.247,0.011,22.072,21.914,16.554,8.774,3.124,22.193,-3.429,19.012,12.438,2.51,9.561,10.862,20.375,13.737,4.201,21.596,9.405,5.054,9.609,5.46,17.027,15.08,14.057,11.056,14.478,2.522,18.197,15.792,27.961,6.307,12.72,6.855,21.043,2.376,9.757,18.8,2.013,13.575,19.8,3.82,8.422,3.549,7.733,21.963,26.604,8.947,13.388,1.75,-2.505,9.637,19.222,8.556,7.921,14.266,9.311,8.632,16.53,12.088,18.154,13.691,7.706,26.618,0.542,0.754,27.929,24.066,19.43,8.636,10.989,13.008,3.971,12.417,3.775,14.976,4.817,21.657,13.138,9.593,1.106,6.32,17.703,4.994,-0.598,11.761,9.075,15.594,0.184,19.623,20.729,4.313,5.712,3.046,23.158,6.011,21.041,15.95,1.366,22.025,10.119,0.814,-2.844,21.925,-2.228,12.953,4.028,17.204,20.661,19.298,11.557,21.94,10.831,3.259,13.848,10.47,20.486,9.744,6.047,20.952,9.08,23.157,13.662,10.428,6.621,6.007,14.792,13.241,15.028,9.995,12.434,10.501,4.327,17.918,6.802,16.885,4.082,15.564,14.848,9.19,16.152,16.721,3.548,6.593,8.039,27.145,20.052,2.684,17.801,0.53,5.778,11.971,19.81,21.411,5.125,3.063,12.06,17.612,18.335,14.615,1.158,4.106,13.713,10.368,27.257,14.79,12.472,6.854],[14.962,18.662,18.162,3.309,13.976,9.054,-0.699,8.542,7.43,2.012,9.218,25.844,26.919,20.927,9.7,5.437,10.784,19.806,12.023,0.961,5.983,5.349,6.012,12.515,16.243,0.269,22.114,21.866,16.682,8.64,3.176,22.165,-3.549,18.768,12.439,2.657,9.543,10.868,20.415,13.778,4.339,21.528,9.265,5.228,9.628,5.447,16.828,15.086,14.029,11.008,14.484,2.758,18.22,15.711,27.928,6.386,12.63,6.988,21.172,2.171,9.818,18.606,2.216,13.571,19.444,3.781,8.095,3.833,8.012,21.71,26.379,8.622,13.349,1.665,-2.526,8.866,19.475,8.222,7.688,14.336,8.653,8.862,16.559,12.644,18.012,13.358,7.817,26.721,0.213,0.683,27.935,24.031,19.147,8.752,11.033,12.767,4.094,12.042,4.2,14.438,5.36,21.435,13.039,9.582,1.433,6.139,17.265,4.753,-0.254,11.853,8.835,16.191,-0.302,19.257,20.539,4.507,6.033,3.069,23.263,6.134,21.219,16.951,1.146,23.014,10.341,1.065,-3.575,22.163,-2.243,13.133,4.068,17.117,20.485,18.949,10.972,21.879,10.572,2.417,13.987,10.723,20.239,9.484,5.545,20.904,9.068,23.002,13.544,10.521,6.679,6.18,14.302,13.204,14.721,10.05,12.54,10.435,3.859,17.81,6.377,16.785,3.424,15.337,14.767,9.232,15.779,16.761,4.091,6.714,8.095,27.138,19.684,2.588,17.792,1.472,5.681,11.912,20.377,21.303,5.097,3.422,11.999,17.371,18.357,14.525,1.829,3.876,14.191,10.589,27.413,15.042,11.93,7.309],[15.114,18.475,18.045,3.06,14.114,9.051,-0.676,8.584,7.438,1.995,9.154,25.829,26.914,21.013,9.752,5.555,10.627,19.735,12.202,1.036,6.175,5.245,6.339,12.398,16.051,0.414,22.15,21.909,16.717,8.682,3.038,22.052,-3.783,18.514,12.596,2.794,9.48,10.779,20.429,13.722,4.427,21.444,9.126,5.377,9.537,5.319,16.763,14.995,13.95,11.219,14.481,2.974,18.108,15.484,27.971,6.284,12.554,7.168,21.203,1.941,9.896,18.558,2.416,13.534,19.246,3.328,8.646,3.514,7.851,21.721,25.795,8.477,13.457,1.437,-2.315,8.333,19.721,8.475,7.882,14.902,8.925,8.728,16.861,12.793,17.224,13.537,7.868,26.629,0.326,0.467,27.582,24.044,19.352,8.846,11.085,13.181,4.227,11.923,4.47,14.355,4.968,21.61,13.284,9.383,1.253,5.82,17.047,4.535,0.687,11.632,8.896,16.437,-0.038,19.433,20.724,4.453,6.741,3.746,23.261,6.655,21.26,17.487,1.57,23.29,10.437,1.113,-3.294,22.21,-2.721,12.798,3.911,16.805,20.14,18.392,10.637,21.386,10.536,2.164,13.924,10.312,20.584,9.067,6.063,21.441,9.559,22.467,13.699,10.273,6.581,6.083,14.488,12.868,14.652,9.995,12.619,10.843,4.059,17.801,6.362,16.504,3.391,15.336,14.486,9.503,15.539,16.868,4.603,6.707,8.138,26.935,19.702,2.384,17.426,2.499,6.094,12.246,20.431,21.008,5.112,3.734,12.364,17.418,18.526,15.097,2.122,3.693,14.402,10.729,27.844,14.862,11.498,7.718],[15.359,18.349,18.03,2.854,14.2,9.071,-0.539,8.561,7.555,2.021,9.034,25.906,26.842,21.093,9.727,5.597,10.69,19.779,12.415,1.292,6.229,5.197,6.449,12.391,15.774,0.722,22.194,22.095,16.626,8.883,2.926,21.667,-4.169,18.256,12.658,2.709,9.414,10.61,20.34,13.614,4.523,21.411,8.901,5.569,9.388,5.286,16.755,14.766,13.9,11.432,14.509,3.304,18.085,15.332,28.118,6.326,12.473,7.314,20.934,1.815,9.877,18.612,2.473,13.562,19.212,3.373,8.264,3.38,7.321,21.456,25.885,9.113,13.769,0.983,-2.364,8.356,19.776,9.127,8.055,14.837,9.666,8.767,16.498,12.648,17.347,13.825,7.709,26.489,0.458,0.361,27.953,23.994,19.262,8.902,11.327,12.978,4.412,12.315,4.622,13.96,4.829,21.57,13.641,9.437,1.452,5.704,17.088,4.499,0.208,11.863,9.235,16.226,0.318,19.512,20.958,4.279,6.478,3.873,23.286,6.785,21.24,17.972,1.585,22.64,10.292,1.132,-3.099,21.958,-3.091,12.958,3.694,16.609,20.082,18.607,10.626,21.013,10.52,2.937,14.352,10.031,20.189,8.874,6.389,21.169,10.135,22.343,13.718,10.458,6.522,6.352,14.435,12.683,14.803,9.57,12.492,10.916,4.802,18.091,6.536,16.62,3.772,15.383,14.37,9.699,15.89,16.558,4.516,6.896,8.264,27.251,19.755,2.408,17.194,2.535,5.947,12.005,20.123,21.437,4.811,3.533,12.764,17.217,18.137,15.202,2.071,3.415,14.28,10.915,27.588,14.851,11.834,8.018],[15.551,18.396,17.962,2.646,14.171,9.296,-0.469,8.635,7.578,2.013,8.927,25.97,26.815,20.927,9.778,5.587,11.005,19.837,12.65,1.581,6.147,5.198,6.478,12.457,15.506,0.883,22.196,22.269,16.482,9.087,2.89,21.204,-4.449,18.123,12.761,2.635,9.331,10.575,20.057,13.57,4.662,21.404,8.734,5.91,9.222,5.363,16.861,14.529,13.814,11.622,14.661,3.541,18.089,15.251,28.241,6.358,12.548,7.418,20.679,1.754,9.843,18.664,2.34,13.565,18.774,3.309,8.091,3.602,7.846,21.375,26.174,9.224,14.851,1.06,-2.288,8.678,19.223,8.892,8.161,14.611,9.141,8.773,16.294,12.738,17.755,14.044,7.905,26.52,0.365,0.428,28.215,24.192,19.584,8.912,11.752,12.942,4.279,12.201,4.723,13.703,4.723,21.488,14.201,9.445,1.694,5.931,17.734,4.786,0.05,12.274,9.662,15.703,0.521,19.639,21.298,4.435,6.156,3.317,23.459,6.669,20.904,17.789,1.842,22.682,10.427,1.205,-3.458,21.44,-3.492,13.094,3.667,16.701,19.71,18.732,10.326,20.904,10.672,3.097,14.139,9.916,19.938,9.835,5.949,20.942,9.711,22.647,13.727,10.387,6.626,6.528,13.535,13.006,14.51,9.105,12.332,10.187,4.552,17.779,6.173,16.223,4.121,15.404,14.276,9.961,16.078,16.469,4.551,7.452,8.024,27.473,19.809,2.754,17.05,1.488,6.1,11.858,19.708,21.434,4.846,3.662,12.752,16.851,18.471,14.923,1.906,3.118,13.993,10.449,27.849,14.892,12.18,8.047],[15.688,18.339,17.889,2.55,14.033,9.535,-0.548,8.77,7.611,1.955,8.924,25.934,26.882,20.574,9.816,5.627,11.294,19.883,12.988,1.723,6.029,5.337,6.56,12.631,15.319,0.872,22.24,22.394,16.447,9.257,2.815,20.731,-4.678,18.277,12.742,2.649,9.314,10.58,19.789,13.524,4.73,21.417,8.691,6.05,9.139,5.333,17.005,14.156,13.755,11.832,14.842,3.698,18.191,15.025,28.376,6.293,12.726,7.495,20.582,1.781,9.732,18.633,1.992,13.504,18.919,2.976,8.562,3.272,8.038,21.526,26.325,8.578,15.905,0.89,-2.299,8.582,18.807,8.356,7.879,14.396,9.313,8.883,16.353,12.677,17.285,14.038,8.539,26.861,0.259,0.315,28.136,24.049,20.164,9.158,11.888,13.267,4.105,12.392,4.8,13.581,5.103,21.538,14.098,9.682,1.748,6.045,17.778,5.348,1.022,11.86,9.834,15.079,0.727,19.742,21.193,4.94,6.97,2.794,23.679,6.444,20.755,17.279,1.67,22.991,10.83,0.975,-3.785,20.474,-3.502,13.446,3.967,16.686,19.039,18.291,10.237,20.739,10.55,2.799,13.986,10.169,20.525,10.204,6.309,20.718,9.095,23.012,13.579,10.052,6.698,6.403,13.819,12.984,14.156,9.287,12.065,10.365,4.494,18.071,6.275,15.838,3.894,15.526,14.286,9.928,16.201,16.556,4.34,7.754,7.841,27.266,20.073,2.995,17.294,1.191,6.179,12.138,19.563,20.316,5.152,3.349,12.574,16.916,18.628,15.08,2.007,2.759,14.018,10.342,28.225,15.002,12.281,7.971],[15.712,18.133,17.704,2.52,13.915,9.774,-0.655,8.805,7.828,1.749,8.91,25.803,27.017,20.571,9.869,5.779,11.455,19.918,13.267,1.714,5.986,5.598,6.761,12.804,15.216,0.951,22.219,22.33,16.502,9.379,2.777,20.169,-4.804,18.516,12.674,2.677,9.328,10.579,19.738,13.592,4.566,21.54,8.828,6.143,9.297,5.225,17.061,13.807,13.77,11.809,15.12,3.747,18.299,14.81,28.369,6.312,12.912,7.541,20.475,1.874,9.666,18.682,1.749,13.548,19.147,3.074,8.659,2.82,7.577,20.422,26.166,7.955,16.687,0.77,-2.43,8.671,19.043,8.354,7.692,14.475,10.17,8.75,16.476,12.57,16.629,13.427,8.294,26.581,0.288,0.079,27.717,23.994,20.17,9.006,11.729,12.775,4.137,12.759,5.043,13.456,5.146,21.627,13.793,10.004,2.294,6.255,17.612,5.722,0.906,12.196,9.854,15.212,0.571,19.964,20.854,4.48,7.439,2.61,23.221,6.211,20.677,17.17,0.961,22.872,10.806,1.108,-4.192,19.503,-3.606,13.223,4.241,16.684,18.962,18.699,10.511,20.637,10.363,3.274,14.071,10.035,20.348,9.704,6.17,21.037,8.801,23.287,13.606,9.917,6.549,6.222,14.066,12.883,13.674,9.765,12.061,10.356,4.663,18.433,6.316,15.752,3.915,15.761,13.874,10.093,15.923,16.604,4.247,7.432,8.085,27.542,20.068,3.198,17.468,1.518,5.832,11.89,19.88,20.063,4.85,3.317,12.789,16.707,18.248,14.691,2.22,2.666,14.691,10.584,28.003,14.918,12.446,8.151],[15.72,17.959,17.396,2.519,13.806,10.066,-0.701,8.624,8.053,1.579,8.831,25.665,26.959,20.723,9.871,6.032,11.531,20.007,13.281,1.713,5.867,5.754,7.063,12.808,15.238,0.918,22.079,22.091,16.651,9.373,2.905,19.676,-4.905,18.749,12.563,2.946,9.246,10.467,19.973,13.838,4.321,21.571,8.974,6.126,9.482,5.186,17.157,13.534,13.823,11.769,15.406,3.638,18.234,14.59,28.247,6.252,13.173,7.539,20.453,1.972,9.733,18.797,1.723,13.587,18.661,2.867,8.562,2.805,7.827,19.537,26.34,7.953,16.692,0.651,-2.507,9.281,19.047,8.941,7.728,14.475,10.124,8.802,16.131,12.428,16.611,13.261,8.298,26.501,0.356,-0.09,27.658,23.967,20.386,9.06,11.531,12.887,4.287,12.43,5.16,13.465,4.819,21.879,14.279,10.435,1.605,6.712,18.138,6.084,0.099,12.467,9.881,15.436,0.465,19.557,20.624,4.322,7.011,3.317,22.626,6.511,20.776,17.561,1.4,22.483,10.835,1.204,-4.259,18.955,-3.622,13.003,3.904,16.872,18.764,19.026,11.032,20.38,10.807,3.055,14.012,9.961,20.625,9.706,6.227,21.027,8.66,22.942,13.736,9.95,6.75,6.153,14.035,12.859,13.263,9.891,12.355,10.476,4.891,17.927,5.873,15.251,3.612,15.79,13.541,10.03,16.114,16.555,4.541,6.838,8.203,27.246,19.939,3.255,17.452,1.79,6.106,11.803,19.645,20.339,4.771,2.742,12.925,16.202,18.399,14.583,2.099,2.898,15.018,10.804,27.981,14.887,12.572,8.264],[15.751,17.927,17.177,2.543,13.708,10.292,-0.644,8.454,8.24,1.482,8.842,25.623,26.801,20.839,9.729,6.296,11.551,20.152,13.141,1.66,5.772,5.878,7.154,12.763,15.413,0.773,21.865,21.864,17.068,9.321,3.162,19.322,-5.008,18.914,12.542,3.143,9.218,10.306,19.951,14.162,4.142,21.444,9.021,6.046,9.555,5.169,17.173,13.311,13.753,11.719,15.572,3.392,18.123,14.431,28.113,6.251,13.237,7.45,20.401,2.006,9.785,18.921,1.682,13.586,18.721,2.542,8.825,3.156,8.286,19.561,25.937,8.607,15.289,0.749,-2.408,9.944,18.88,8.307,7.448,14.481,9.766,8.897,15.66,12.199,16.871,13.805,8.902,26.747,0.23,-0.118,27.809,23.901,20.407,9.148,11.708,13.074,4.572,12.65,5.326,13.622,4.348,21.691,14.61,10.102,1.277,6.753,18.283,6.18,-0.074,12.091,9.787,15.177,0.717,19.071,20.75,5.271,7.131,3.96,22.593,6.763,21.348,17.697,2.028,22.653,10.902,1.348,-4.261,19.196,-3.799,13.005,3.683,17.22,18.646,18.828,11.063,20.808,10.547,3.104,14.028,10.216,20.719,10.322,6.057,20.833,8.806,23.03,13.485,9.607,6.774,5.978,14.065,13.04,13.344,9.43,12.944,10.75,4.906,18.463,5.749,15.113,3.712,15.822,13.554,9.994,16.894,16.515,4.881,7.055,7.938,27.038,19.975,2.817,17.286,1.999,6.321,12.122,19.351,20.112,5.055,2.802,12.666,16.386,18.726,15.23,1.919,3.503,14.885,10.871,27.688,14.924,12.538,8.105],[15.638,17.894,17.299,2.572,13.562,10.417,-0.558,8.268,8.432,1.463,8.892,25.753,26.567,20.838,9.429,6.483,11.546,20.181,13.0,1.685,5.786,6.064,7.066,12.724,15.565,0.676,21.907,21.806,17.508,9.269,3.388,19.05,-5.133,19.065,12.577,3.254,9.198,10.411,19.674,14.442,4.11,21.373,8.994,5.869,9.665,5.203,17.32,13.271,13.591,11.514,15.706,3.139,18.231,14.567,27.997,6.403,13.009,7.343,20.269,2.12,9.705,18.918,1.605,13.513,18.993,2.079,9.163,3.447,8.437,19.515,25.822,9.24,14.025,0.942,-2.356,10.098,19.062,7.863,7.401,15.254,9.756,8.16,15.693,11.967,16.735,13.949,8.926,26.561,0.25,-0.305,27.652,24.025,20.449,9.321,12.303,12.814,4.825,12.519,5.223,13.923,4.501,21.885,14.757,9.779,1.78,6.838,18.088,6.198,0.059,12.461,9.829,15.364,0.488,19.092,20.846,4.966,7.73,3.738,23.288,6.759,21.074,18.396,2.0,22.689,10.812,1.651,-4.197,19.626,-3.844,13.169,4.232,17.305,18.305,19.289,10.633,21.066,10.261,3.353,14.003,10.103,20.148,10.054,5.981,20.282,8.855,23.058,13.096,9.582,6.572,5.981,13.656,13.656,13.267,9.541,12.956,10.751,4.659,18.449,6.098,15.117,3.749,15.785,13.646,9.668,17.277,16.59,4.665,7.154,8.194,27.156,20.315,2.073,17.468,1.917,6.395,12.226,19.249,19.888,4.979,3.177,12.292,16.285,18.49,15.853,1.773,3.841,14.854,10.531,27.202,15.092,12.987,8.39],[15.458,18.012,17.464,2.598,13.377,10.358,-0.629,8.038,8.636,1.302,8.914,25.991,26.38,20.763,9.154,6.506,11.425,20.276,12.979,1.818,5.858,6.149,6.931,12.879,15.731,0.77,22.123,21.866,17.772,9.219,3.489,18.827,-5.144,19.333,12.635,3.27,9.213,10.655,19.429,14.492,4.14,21.269,8.909,5.689,9.731,5.377,17.339,13.356,13.476,11.211,15.804,2.969,18.466,14.613,27.913,6.478,12.935,7.283,20.229,2.277,9.608,18.92,1.599,13.429,18.689,2.37,8.649,3.413,8.465,19.32,25.866,8.801,13.811,1.369,-2.422,9.906,18.735,8.341,7.658,15.324,10.066,8.079,16.018,11.816,16.71,13.293,8.76,26.454,0.57,-0.38,27.193,24.184,20.449,8.796,12.514,13.055,4.985,12.365,5.163,13.871,5.295,21.984,14.757,9.906,1.595,7.026,18.981,5.939,0.202,12.022,10.234,15.989,0.475,19.289,20.987,4.804,7.836,3.437,23.229,6.59,20.683,18.762,1.111,22.354,10.501,1.521,-3.918,19.46,-4.261,12.65,4.811,17.469,18.449,19.673,10.501,20.469,10.351,3.564,14.101,10.351,20.307,9.897,5.955,20.494,8.91,23.016,12.738,9.891,6.555,5.923,14.327,13.692,13.482,9.619,12.388,10.984,4.102,18.161,6.471,15.007,3.588,15.872,13.858,9.336,17.241,16.708,4.473,7.084,8.047,27.242,20.22,2.03,17.68,1.428,6.52,12.141,19.369,20.2,5.047,2.924,12.126,16.459,18.258,15.788,1.531,4.097,14.86,10.71,27.258,14.982,12.487,8.167],[15.317,18.08,17.419,2.632,13.222,10.291,-0.79,7.71,8.752,1.143,8.982,26.178,26.171,20.625,8.995,6.4,11.307,20.423,13.005,1.919,6.128,6.17,6.751,13.034,15.824,0.795,22.287,21.953,18.079,9.202,3.46,18.676,-5.16,19.531,12.57,3.227,9.259,10.874,19.295,14.452,4.15,21.212,8.911,5.533,9.792,5.608,17.258,13.494,13.371,10.898,15.882,2.939,18.51,14.754,27.932,6.304,12.945,7.147,20.381,2.547,9.568,18.98,1.587,13.292,18.394,2.469,9.087,3.196,8.137,19.314,25.737,7.961,14.105,1.246,-2.334,9.027,18.941,8.633,8.38,14.698,9.789,8.481,16.071,11.914,17.181,12.784,8.854,26.969,0.602,-0.43,26.986,24.38,20.401,8.326,12.109,13.141,4.985,12.102,4.899,14.213,5.332,22.236,14.733,9.704,1.486,7.055,19.519,5.915,0.304,12.019,10.127,16.649,0.642,19.914,21.15,5.364,7.684,3.863,22.606,5.791,21.173,18.781,1.035,22.849,10.451,1.423,-4.013,18.71,-4.263,13.024,4.347,17.761,18.361,19.752,10.87,19.935,10.69,3.054,14.294,10.196,20.943,10.051,6.091,20.696,9.295,22.966,13.044,10.181,6.793,5.994,14.924,13.423,13.933,9.607,11.819,11.343,3.93,18.229,6.71,15.233,3.614,15.869,13.35,9.369,16.909,16.864,4.207,7.144,7.834,27.381,19.957,2.536,18.179,0.867,5.998,11.827,19.492,20.466,5.295,3.263,12.212,16.488,18.379,15.579,1.29,4.339,14.643,10.492,27.517,14.654,12.002,7.833],[15.245,18.128,17.409,2.552,13.202,10.32,-0.87,7.394,8.732,1.112,9.168,26.363,26.002,20.55,8.902,6.331,11.13,20.649,13.06,1.755,6.232,6.242,6.571,12.98,16.019,0.712,22.487,22.123,18.383,9.192,3.258,18.639,-5.242,19.598,12.547,3.156,9.425,11.063,19.331,14.47,4.246,21.441,8.931,5.413,9.902,5.775,17.204,13.774,13.388,10.836,16.023,2.916,18.323,14.784,28.096,5.98,12.856,7.007,20.541,2.904,9.479,19.126,1.526,13.054,18.538,2.584,9.642,3.211,8.303,19.126,25.181,7.942,14.42,1.26,-2.454,8.302,19.259,7.724,8.219,14.083,9.66,7.706,15.856,11.727,16.657,13.155,8.817,27.311,0.302,-0.412,27.083,24.568,20.133,8.809,11.927,13.453,4.585,12.053,4.669,14.278,5.473,22.382,14.58,9.542,1.879,7.103,19.542,6.236,0.365,12.424,9.654,16.881,1.178,20.159,20.859,5.212,7.218,3.657,22.388,6.265,21.694,18.563,1.481,23.163,10.854,1.552,-4.201,17.841,-3.838,13.097,4.156,17.76,18.069,19.738,10.969,20.209,10.507,2.561,14.049,10.103,20.441,9.895,6.049,20.28,10.061,23.017,13.117,10.087,7.015,6.054,14.656,13.231,13.97,9.679,11.708,11.245,4.105,18.078,6.742,15.232,3.888,15.516,13.599,9.078,16.714,16.656,3.941,6.599,7.779,27.416,19.982,3.1,18.429,1.177,5.093,11.573,19.535,20.117,4.524,3.095,12.039,16.437,18.493,15.56,1.177,4.617,14.726,10.5,27.366,14.502,12.296,7.879],[15.192,18.256,17.318,2.378,13.224,10.543,-0.952,7.169,8.775,1.283,9.237,26.45,25.948,20.492,8.85,6.16,10.957,20.834,13.133,1.584,6.13,6.264,6.476,12.858,16.168,0.667,22.698,22.142,18.562,9.251,3.077,18.583,-5.238,19.518,12.52,3.164,9.591,11.147,19.538,14.431,4.409,21.73,8.916,5.336,9.879,5.81,17.131,14.073,13.481,10.871,16.242,2.675,18.155,14.753,28.229,5.668,12.901,6.735,20.43,3.237,9.459,19.171,1.511,12.768,19.165,2.492,8.843,3.156,8.486,19.034,25.015,8.275,14.526,0.823,-2.711,8.211,18.987,6.695,8.172,13.941,9.906,7.473,15.949,11.455,16.661,13.42,8.863,27.693,0.275,-0.354,27.251,24.91,19.899,8.72,12.166,13.324,4.559,12.138,4.572,14.34,5.183,22.583,14.867,9.294,1.035,7.51,19.011,6.178,-0.236,11.779,9.745,16.618,0.767,20.196,21.331,5.05,6.459,3.47,22.835,6.807,21.567,18.535,1.232,22.977,10.905,1.598,-4.302,18.027,-3.903,13.077,3.829,17.691,18.129,19.849,11.476,20.108,10.292,2.827,13.925,10.523,20.69,10.135,5.675,20.619,10.837,23.198,12.954,10.072,6.749,6.145,14.266,13.669,14.153,9.423,11.91,11.247,4.142,18.154,6.921,15.64,3.867,15.604,13.996,9.035,16.62,16.269,3.773,6.84,7.817,27.497,20.009,3.598,19.116,1.75,4.95,11.578,19.649,20.16,4.34,2.835,11.568,16.642,18.379,15.458,1.101,4.904,14.687,10.184,27.576,14.516,12.244,7.921],[15.147,18.45,17.208,2.064,13.169,10.829,-1.056,7.026,8.814,1.262,9.244,26.471,25.996,20.343,8.816,5.989,10.761,20.903,13.361,1.252,5.989,6.234,6.377,12.636,16.163,0.631,22.708,22.226,18.667,9.37,2.939,18.585,-5.101,19.378,12.542,3.361,9.566,11.314,19.716,14.414,4.589,21.994,8.904,5.252,9.754,5.746,17.157,14.309,13.527,10.861,16.353,2.231,18.068,14.809,28.292,5.534,12.936,6.487,20.409,3.519,9.587,19.174,1.553,12.6,19.419,2.85,8.903,2.752,8.132,19.183,25.749,7.777,14.247,0.64,-2.745,8.32,18.972,6.501,8.317,14.107,10.456,7.787,15.62,11.652,17.498,13.144,9.312,27.889,0.042,-0.062,27.068,25.096,19.834,8.389,12.456,13.097,4.362,11.936,4.509,14.346,4.539,22.546,15.217,9.188,1.061,7.582,18.68,5.935,-0.491,11.853,10.146,16.255,-0.042,20.432,21.68,5.392,6.217,3.787,23.203,6.465,21.351,18.159,1.214,23.188,10.735,1.767,-4.071,18.771,-3.993,13.254,3.806,17.824,18.201,20.079,12.006,19.655,10.722,2.617,13.949,10.352,21.279,10.221,5.3,20.96,10.791,23.64,12.741,10.728,6.631,6.409,14.364,13.686,14.635,9.385,12.341,11.218,4.058,18.05,6.81,15.809,3.837,15.545,14.054,9.015,17.289,16.471,3.888,6.8,7.643,27.702,20.499,3.872,19.267,1.717,4.934,11.472,19.084,20.135,4.346,3.115,11.545,16.7,18.025,15.46,1.15,5.109,14.768,10.097,27.295,14.265,12.309,7.292],[15.038,18.651,17.113,1.834,13.061,11.119,-1.216,6.759,8.835,1.28,9.147,26.434,26.11,20.196,8.817,5.833,10.626,20.809,13.682,0.989,5.843,6.432,6.081,12.468,16.091,0.657,22.687,22.483,18.581,9.45,3.002,18.74,-4.878,19.413,12.689,3.46,9.66,11.55,19.739,14.414,4.762,22.17,8.757,5.133,9.641,5.762,17.136,14.549,13.568,10.859,16.422,1.846,18.088,14.926,28.182,5.439,13.019,6.292,20.566,3.69,9.695,19.395,1.54,12.601,19.021,2.807,9.184,2.383,8.654,19.14,25.749,7.695,13.593,0.009,-2.523,8.504,19.306,7.231,8.682,14.726,10.299,7.697,15.419,11.552,17.46,12.574,9.603,27.55,0.195,-0.044,27.449,24.839,19.832,8.682,12.946,13.293,4.257,11.877,4.211,14.465,4.52,22.461,15.508,8.859,1.067,7.179,19.551,5.551,-0.283,11.924,10.192,16.067,0.161,20.307,21.471,5.47,6.573,3.315,23.241,6.056,21.298,18.163,1.425,22.818,10.921,2.022,-3.294,18.862,-4.015,13.049,4.234,17.496,18.2,19.85,12.095,19.527,10.557,2.512,14.139,10.091,21.16,9.888,5.705,20.702,10.852,23.793,12.711,10.597,6.811,6.628,14.701,13.545,14.886,9.293,12.297,11.274,3.535,18.202,6.761,15.445,4.302,15.497,13.743,9.075,17.215,16.47,3.597,6.041,8.022,27.665,20.595,4.126,18.732,1.442,4.741,11.159,19.151,19.96,4.033,3.017,11.815,16.599,17.672,15.955,0.831,5.328,14.855,10.734,27.045,13.927,11.969,6.514],[14.897,18.742,17.203,1.594,12.774,11.151,-1.159,6.623,8.992,1.277,9.034,26.278,26.272,20.113,8.84,5.602,10.57,20.615,13.984,1.087,5.847,6.643,5.764,12.482,16.026,0.69,22.666,22.655,18.414,9.485,3.131,18.946,-4.568,19.42,12.91,3.38,9.753,11.829,19.549,14.384,4.916,22.207,8.606,4.996,9.628,5.868,17.086,14.798,13.639,10.866,16.423,1.612,18.001,15.0,27.957,5.282,13.061,6.083,20.572,3.807,9.835,19.726,1.389,12.608,19.361,2.867,9.077,2.422,8.308,18.936,25.292,7.325,13.046,-0.106,-2.876,8.802,19.492,7.511,8.242,14.981,10.204,7.454,15.683,11.081,16.613,12.657,9.781,27.52,0.33,-0.252,27.603,24.587,19.927,8.584,13.392,12.976,4.258,11.809,3.897,14.644,5.046,22.139,15.785,8.939,0.839,7.722,20.036,5.159,-0.228,11.428,9.872,15.763,0.197,20.128,21.278,5.561,5.843,3.471,23.044,5.626,21.403,18.866,1.618,23.096,11.177,2.151,-3.064,18.65,-4.345,13.119,3.971,17.642,18.168,19.919,12.314,20.111,10.809,2.493,14.462,10.082,21.336,9.57,5.574,21.033,10.957,23.909,13.178,10.275,6.975,6.743,14.785,13.779,14.933,9.117,12.055,11.302,3.659,17.957,6.983,15.265,4.388,15.444,13.863,9.13,16.86,16.342,2.948,6.159,8.154,27.417,20.742,3.94,18.442,1.22,4.747,11.235,19.794,20.214,3.895,3.216,11.896,16.686,18.205,16.116,0.078,5.301,14.851,11.025,27.349,14.165,12.042,5.981],[14.666,18.85,17.316,1.615,12.481,11.026,-1.043,6.51,9.113,1.116,8.935,26.124,26.429,20.085,8.699,5.382,10.615,20.479,14.051,1.067,5.96,6.799,5.558,12.421,15.968,0.799,22.547,22.689,18.469,9.544,3.271,19.077,-4.357,19.409,13.159,3.305,9.886,12.122,19.533,14.456,4.954,22.327,8.638,4.815,9.684,5.883,16.867,15.07,13.741,10.827,16.358,1.371,17.885,15.084,27.76,5.062,13.138,5.966,20.551,3.753,9.918,19.982,1.304,12.697,19.687,2.856,9.721,2.285,8.476,18.758,25.265,7.305,12.909,0.089,-2.687,9.061,18.832,7.127,7.391,14.806,10.559,7.431,16.072,11.197,16.475,13.069,9.482,27.466,0.061,-0.05,27.169,24.535,19.794,8.376,13.516,13.363,4.25,11.665,3.799,14.523,5.294,22.049,15.868,8.969,1.209,8.388,19.901,5.011,-0.181,11.92,9.8,15.518,0.224,20.077,21.405,5.721,5.472,4.255,23.75,6.183,21.899,18.908,1.664,23.608,11.284,1.786,-3.505,19.263,-4.475,13.574,3.637,17.892,18.105,20.302,12.631,20.204,11.029,2.434,14.576,10.054,21.029,9.566,4.943,20.67,11.136,23.698,13.336,9.948,7.132,6.737,14.515,13.767,14.627,9.415,12.12,11.34,4.02,17.822,6.858,14.919,4.119,15.345,13.992,9.074,16.998,16.149,2.485,5.774,8.188,26.805,21.08,3.364,18.677,1.269,4.794,11.54,19.856,19.987,3.903,3.097,11.793,17.034,18.069,15.954,-0.253,5.114,14.766,10.758,27.573,14.341,12.327,5.795],[14.43,18.838,17.455,1.661,12.41,10.926,-0.947,6.4,9.333,1.008,8.841,26.006,26.517,19.97,8.562,5.179,10.659,20.572,14.025,0.895,6.15,6.894,5.557,12.537,15.889,0.904,22.74,22.684,18.548,9.618,3.443,19.055,-4.236,19.503,13.24,3.208,10.054,12.393,19.606,14.499,4.901,22.434,8.802,4.61,9.825,5.78,16.578,15.289,13.721,10.809,16.447,1.222,17.855,15.076,27.612,4.924,13.207,5.858,20.547,3.497,9.948,19.935,1.387,12.834,19.434,2.699,9.564,2.699,8.87,18.98,25.534,7.211,12.751,0.652,-2.495,9.113,18.833,6.914,7.173,14.187,10.513,7.317,15.74,11.181,17.085,12.841,9.106,27.416,0.221,-0.351,27.222,24.698,19.706,8.481,12.912,13.369,4.223,11.662,3.863,14.087,5.05,22.198,15.718,8.659,0.615,8.289,19.999,5.074,-0.081,11.914,10.03,15.805,0.316,19.899,21.945,5.811,5.654,4.397,23.119,6.697,21.434,18.864,1.732,22.305,11.239,1.956,-3.222,20.119,-4.375,13.816,3.848,17.603,18.479,19.96,12.645,20.244,11.079,2.239,14.574,10.085,21.065,9.808,4.917,20.836,11.382,23.774,13.068,9.986,6.804,6.687,14.819,13.9,14.501,9.48,12.44,11.032,4.099,17.869,6.712,14.72,4.265,15.184,14.178,8.974,16.946,16.194,2.186,5.751,8.071,26.882,21.334,3.686,18.646,1.418,4.3,11.576,19.399,20.071,3.451,2.974,11.276,17.015,17.652,16.154,-0.348,4.767,15.038,10.827,27.641,14.357,12.612,5.336],[14.138,18.609,17.449,1.83,12.437,10.822,-0.882,6.314,9.487,0.849,8.742,26.032,26.585,19.816,8.563,4.99,10.646,20.787,13.909,0.691,6.322,6.9,5.717,12.679,15.849,0.769,22.794,22.69,18.449,9.697,3.598,19.169,-4.039,19.525,13.185,3.165,10.067,12.589,19.765,14.534,4.949,22.57,8.946,4.473,9.835,5.692,16.449,15.393,13.708,10.7,16.699,1.138,17.847,15.095,27.642,4.752,13.346,5.666,20.435,3.244,9.881,19.658,1.428,12.95,19.38,2.475,9.245,2.578,8.4,18.793,25.72,7.352,12.845,0.273,-2.524,8.794,19.626,7.134,7.875,13.596,10.208,7.21,15.687,11.009,17.849,12.288,9.272,27.451,0.522,-0.605,27.912,24.939,19.795,8.494,12.92,13.536,3.875,11.735,3.793,14.128,5.38,22.318,15.492,9.004,0.75,7.927,20.178,5.338,0.232,12.031,10.329,15.916,0.133,19.795,21.822,5.599,5.562,4.132,23.135,6.093,21.334,18.901,1.981,23.032,11.215,2.089,-2.568,19.568,-4.248,14.011,4.172,17.847,18.154,20.043,13.03,20.299,11.346,1.949,14.726,10.332,21.432,10.886,5.002,21.002,11.748,24.087,13.255,10.638,6.532,6.76,14.884,13.911,14.893,9.225,12.206,10.49,3.513,17.654,6.757,14.804,4.189,14.998,13.853,8.898,16.897,16.552,2.004,6.047,8.0,27.218,20.836,3.836,18.257,1.638,4.109,11.605,19.367,20.02,3.261,2.949,11.124,16.686,18.106,16.267,-0.044,4.444,15.208,10.668,27.001,14.456,12.453,5.394],[13.834,18.416,17.477,1.858,12.411,10.79,-0.812,6.328,9.367,0.725,8.629,26.184,26.797,19.758,8.603,4.86,10.677,20.925,13.783,0.718,6.512,6.81,5.667,12.819,15.895,0.613,22.779,22.718,18.301,9.76,3.748,19.264,-3.758,19.501,13.426,3.197,10.033,12.824,19.795,14.638,5.035,22.721,8.972,4.364,9.82,5.676,16.521,15.402,13.836,10.551,16.908,1.205,17.906,15.128,27.746,4.69,13.422,5.49,20.347,3.062,9.65,19.335,1.402,13.039,18.907,2.323,9.463,2.464,7.983,18.178,25.445,7.477,13.071,0.131,-2.268,8.044,19.091,7.292,8.984,13.312,10.069,7.095,15.783,11.029,17.559,12.577,9.5,27.825,0.514,-0.565,28.079,25.348,19.408,9.036,13.088,13.701,3.315,11.881,3.782,14.22,5.743,22.416,15.624,8.977,0.64,7.544,19.769,5.59,-0.009,11.92,10.331,15.552,0.239,19.707,21.457,5.958,5.741,4.029,23.592,5.947,21.77,18.225,1.907,23.606,11.27,1.593,-2.577,18.835,-4.174,13.457,4.171,17.93,17.966,20.035,13.248,20.575,11.053,2.299,14.679,10.519,21.531,11.043,4.865,20.922,11.878,24.242,13.796,10.862,6.655,6.718,14.557,14.101,15.534,9.481,12.243,10.418,2.788,17.495,6.846,15.082,3.883,15.109,13.802,8.74,17.352,16.3,2.107,5.427,7.97,27.106,20.379,3.667,18.057,1.432,3.831,11.431,19.473,19.965,3.579,3.176,11.313,16.769,17.624,16.168,-0.275,4.059,15.245,10.538,26.864,14.51,12.564,5.535],[13.575,18.187,17.361,1.755,12.517,10.904,-0.739,6.434,9.215,0.663,8.562,26.419,27.067,19.548,8.723,4.811,10.647,20.895,13.782,0.889,6.739,6.767,5.524,12.955,15.86,0.569,22.86,22.753,18.045,9.761,3.83,19.369,-3.575,19.428,13.63,3.175,9.953,13.015,19.754,14.766,5.006,22.774,9.016,4.174,9.825,5.82,16.608,15.481,14.037,10.414,17.042,1.267,17.813,15.076,27.743,4.872,13.358,5.273,20.268,2.858,9.475,19.13,1.334,13.104,18.932,2.332,9.507,2.244,8.089,17.776,25.605,7.172,13.67,0.006,-2.547,7.367,18.793,6.965,9.155,13.104,10.067,7.089,15.812,10.83,16.595,12.73,9.492,28.008,0.167,-0.572,27.695,25.649,19.427,8.997,13.079,13.491,3.012,11.911,3.721,14.27,5.709,22.434,15.569,9.115,0.598,7.662,19.406,5.513,-0.432,11.59,10.097,15.224,0.148,19.545,21.664,5.783,5.976,4.208,23.357,6.724,22.06,18.209,1.455,23.133,11.378,1.669,-2.6,18.963,-3.641,13.845,4.136,17.639,18.171,19.974,13.772,20.582,10.973,2.722,15.2,10.314,21.461,10.64,4.97,20.869,11.791,24.314,13.908,10.515,7.219,6.924,14.879,14.382,15.54,9.469,12.321,11.022,2.387,17.995,6.712,15.147,4.181,15.098,14.33,8.759,17.921,16.463,2.478,4.84,7.491,27.245,20.213,4.104,17.989,1.383,3.992,11.511,19.285,20.068,3.313,3.102,11.483,17.051,17.594,16.153,-0.356,3.826,15.272,10.283,27.304,14.204,12.478,5.542],[13.408,18.101,16.905,1.515,12.684,11.051,-1.0,6.404,9.129,0.661,8.44,26.653,27.213,19.2,8.885,4.798,10.629,20.823,13.768,0.941,6.979,6.853,5.628,12.918,15.644,0.493,22.957,22.697,18.073,9.734,3.855,19.611,-3.426,19.381,13.805,3.106,9.866,13.078,19.786,14.861,5.037,22.67,8.987,3.999,10.005,6.06,16.704,15.55,14.211,10.316,17.289,1.37,17.724,15.088,27.832,4.994,13.123,5.057,20.234,2.847,9.354,19.11,1.242,13.148,19.054,2.295,9.426,2.4,8.397,17.733,25.975,7.084,13.763,-0.007,-2.642,6.949,18.902,7.167,9.137,13.217,10.433,7.064,15.393,11.251,16.493,12.439,9.42,27.866,0.385,-0.623,27.936,25.806,19.603,8.908,12.685,13.423,3.121,11.654,3.792,14.147,6.071,22.443,15.178,8.739,1.079,7.766,18.384,5.071,-0.304,11.979,10.006,15.314,0.117,19.604,21.726,5.244,5.478,4.583,23.279,6.741,21.58,18.069,1.77,23.056,11.388,1.91,-2.462,19.821,-3.182,14.378,4.203,17.633,18.445,19.747,13.607,20.35,11.453,3.101,15.425,10.42,21.613,10.481,4.63,21.069,12.067,24.173,13.845,10.07,7.525,6.879,14.884,14.139,15.16,9.472,12.56,11.432,2.332,17.748,6.605,15.183,4.388,15.434,14.161,8.559,17.293,16.517,2.482,5.068,7.487,27.569,20.276,3.322,17.96,1.641,4.875,11.641,19.091,19.944,3.465,2.872,11.292,16.993,18.231,16.201,-0.065,3.871,15.042,9.582,26.799,14.427,12.334,5.464],[13.351,18.141,16.393,1.382,12.812,11.15,-1.345,6.385,9.149,0.79,8.264,26.865,27.315,18.898,9.094,4.785,10.505,20.781,13.546,0.929,7.111,6.916,5.762,12.798,15.457,0.508,22.951,22.575,18.115,9.761,4.004,19.954,-3.237,19.477,13.963,3.107,9.899,13.076,19.828,14.768,5.044,22.56,8.948,3.776,10.241,6.172,16.877,15.572,14.292,10.197,17.451,1.508,17.755,15.08,27.799,5.156,12.81,4.979,20.103,2.905,9.296,19.199,1.341,13.165,19.035,2.279,9.248,2.217,8.317,17.404,26.307,7.008,12.985,-0.589,-2.595,6.842,18.436,6.989,9.046,13.39,10.717,7.521,14.891,11.236,16.529,12.656,9.694,27.826,0.456,-0.803,28.576,25.638,19.529,8.754,12.539,13.867,3.765,11.515,3.815,13.871,6.373,22.403,15.167,8.63,0.449,8.119,18.098,4.687,0.158,11.967,10.418,15.266,0.419,20.026,21.22,5.591,5.807,4.369,22.851,6.624,21.317,18.419,1.857,23.047,11.234,1.391,-2.66,20.298,-3.111,14.492,3.956,17.791,18.915,19.907,13.167,20.408,11.351,2.494,15.637,10.322,21.402,10.485,4.783,20.905,12.219,23.963,13.926,9.803,7.268,6.905,14.727,14.009,14.89,9.674,13.056,11.809,2.463,17.777,7.071,15.042,4.244,15.343,13.812,8.423,17.402,16.489,2.594,5.303,7.662,28.029,20.513,3.139,17.948,1.393,5.25,11.683,18.821,20.401,3.582,3.024,10.956,16.634,17.806,16.631,0.141,4.312,14.616,9.887,26.577,14.685,12.076,4.826],[13.278,18.195,16.191,1.394,12.672,11.075,-1.49,6.346,9.235,0.755,7.988,27.095,27.565,18.576,9.315,4.753,10.394,20.717,13.326,0.929,7.159,7.03,5.802,12.72,15.536,0.66,22.721,22.345,18.082,9.853,4.132,20.271,-3.045,19.631,14.052,2.995,9.896,12.953,19.768,14.55,5.007,22.494,8.983,3.567,10.439,6.117,16.987,15.514,14.329,10.079,17.656,1.619,17.787,15.006,27.7,5.329,12.568,5.014,19.882,3.033,9.382,19.332,1.505,13.152,18.634,2.425,9.544,2.167,8.061,17.031,26.272,6.917,12.93,-0.417,-3.018,7.049,18.096,6.74,9.095,13.304,10.798,7.808,14.663,11.102,15.716,12.75,9.588,28.086,-0.283,-0.538,28.489,25.866,19.028,9.288,12.735,13.693,4.595,11.481,3.949,13.775,6.213,22.455,15.151,8.693,0.822,7.833,18.846,4.721,-0.297,11.945,10.58,15.219,0.357,20.107,21.429,6.052,5.987,4.365,23.312,6.851,21.903,18.519,1.628,22.905,11.178,1.913,-2.556,20.204,-3.381,14.594,3.966,17.745,19.043,20.008,13.797,20.609,11.22,2.026,15.687,10.621,21.006,10.647,5.064,20.82,12.098,23.918,13.88,9.994,7.057,6.851,14.644,14.372,14.818,9.374,12.796,11.736,2.306,18.462,7.145,15.103,4.319,15.87,13.827,8.347,18.177,16.794,2.936,4.784,7.564,28.1,20.668,3.433,17.895,1.259,4.748,11.784,18.423,20.148,3.633,3.093,10.743,16.715,16.73,16.557,0.243,4.513,14.358,10.594,26.924,14.67,11.484,5.514],[13.161,18.064,16.116,1.779,12.282,10.978,-1.706,6.24,9.448,0.676,7.764,27.374,27.858,18.212,9.444,4.765,10.437,20.665,13.294,1.136,7.027,7.128,5.694,12.717,15.701,0.723,22.53,22.356,18.013,9.99,4.222,20.253,-2.908,19.694,14.181,2.866,9.855,12.8,19.695,14.439,5.019,22.422,9.04,3.445,10.491,5.985,17.19,15.408,14.183,10.011,17.875,1.798,17.723,15.014,27.814,5.33,12.411,5.137,19.616,3.216,9.541,19.488,1.616,13.272,18.823,2.297,9.373,1.985,8.559,16.517,26.208,7.342,13.679,0.007,-3.012,6.798,18.336,6.552,9.136,12.558,10.385,7.658,14.656,10.93,16.006,12.163,9.27,28.516,-0.102,-0.539,28.385,26.368,18.831,9.874,12.586,13.133,4.51,11.317,3.757,14.052,6.239,22.017,14.937,8.55,0.975,8.291,19.426,4.985,-0.548,11.871,10.155,15.446,0.025,19.668,21.281,5.712,5.602,4.784,23.107,7.154,21.774,18.826,1.995,23.077,11.387,2.382,-2.0,20.127,-3.394,14.342,3.989,18.113,19.143,19.834,13.719,20.598,11.471,1.368,15.673,10.594,21.137,11.106,4.939,21.04,12.17,23.851,14.175,10.123,6.854,6.881,14.363,13.966,14.894,9.588,12.621,11.375,2.611,18.047,7.009,15.224,4.36,16.316,14.098,8.221,18.159,16.605,2.967,5.182,7.898,27.087,20.346,3.637,17.852,1.146,4.549,11.573,18.495,19.624,3.999,3.371,11.04,16.859,17.246,16.621,0.201,4.05,14.163,10.391,26.654,14.319,11.363,5.807],[12.985,17.824,16.027,2.212,11.88,10.976,-1.814,6.21,9.841,0.631,7.622,27.582,28.013,17.916,9.392,4.84,10.445,20.503,13.329,1.185,6.865,7.135,5.575,12.619,15.81,0.8,22.479,22.558,18.072,10.182,4.258,20.157,-2.799,19.64,14.233,2.73,9.882,12.676,19.631,14.348,5.141,22.409,9.098,3.441,10.374,5.9,17.394,15.22,13.937,9.964,17.968,1.861,17.769,15.089,27.886,5.251,12.193,5.36,19.541,3.353,9.685,19.534,1.63,13.427,18.657,2.085,9.68,2.451,8.52,16.058,26.496,7.201,13.088,0.295,-3.195,6.578,18.526,6.866,8.972,12.035,10.259,7.677,14.608,10.638,16.115,11.853,9.464,29.187,-0.138,-0.985,28.92,26.728,18.528,9.588,12.23,13.36,4.118,11.619,3.621,14.043,5.882,22.056,15.034,8.643,1.034,8.622,19.28,5.137,-0.235,11.868,10.29,15.895,0.863,19.306,21.239,5.65,5.433,4.796,23.268,6.643,21.331,18.673,2.058,23.029,11.814,1.539,-1.99,20.185,-3.264,14.318,4.009,17.96,19.251,19.591,13.051,20.279,11.432,1.45,15.899,10.138,21.44,10.99,4.606,20.997,11.94,23.985,14.268,10.223,6.785,6.944,14.616,13.843,15.182,9.899,12.528,10.878,2.488,18.267,6.981,15.411,4.22,16.036,14.044,8.603,18.542,16.245,3.321,5.483,7.844,27.329,20.584,3.796,18.136,1.724,4.589,11.827,18.117,19.873,4.078,3.123,11.006,16.998,17.757,16.961,0.438,4.023,14.059,10.08,27.245,14.453,11.724,5.113],[12.632,17.532,15.836,2.537,11.608,10.993,-1.776,6.391,10.209,0.57,7.551,27.713,28.119,17.681,9.218,4.923,10.49,20.25,13.492,1.125,6.864,7.119,5.637,12.559,15.876,0.933,22.487,22.749,18.036,10.431,4.02,20.26,-2.746,19.463,14.206,2.546,10.01,12.454,19.665,14.401,5.249,22.573,9.055,3.51,10.062,5.944,17.436,15.028,13.738,9.994,18.102,1.946,17.888,15.193,27.982,5.173,12.048,5.5,19.689,3.444,9.722,19.511,1.523,13.633,18.204,1.775,10.504,3.195,8.637,15.804,26.55,7.274,12.524,0.807,-3.259,6.49,18.304,7.192,8.592,11.529,10.504,7.675,14.143,10.746,15.688,11.586,9.446,29.196,-0.685,-1.021,29.237,26.62,18.131,9.027,12.253,13.405,4.141,11.64,3.845,14.077,5.619,21.939,15.155,8.891,0.877,8.373,18.958,5.091,-0.048,11.93,10.665,15.889,0.225,19.545,21.624,5.855,5.76,4.554,23.346,6.311,22.01,19.03,1.714,22.694,11.98,1.118,-2.492,20.392,-2.785,14.68,4.269,17.549,19.179,19.774,13.243,20.524,11.397,1.986,15.723,10.397,21.31,10.594,4.164,20.857,11.848,23.906,13.851,10.27,7.096,7.02,14.709,14.046,15.236,9.828,12.269,10.57,2.397,18.45,6.567,15.623,4.154,16.067,13.922,8.149,17.949,16.334,3.175,5.56,7.849,27.93,21.034,3.988,18.179,2.218,4.079,12.1,18.178,20.059,3.924,3.133,10.795,17.001,17.651,17.09,0.335,4.517,13.913,10.248,27.448,15.082,11.505,4.874],[12.213,17.266,15.656,2.691,11.533,11.103,-1.62,6.754,10.388,0.467,7.549,27.705,28.111,17.462,9.105,5.009,10.616,20.028,13.713,0.935,6.77,7.229,5.754,12.606,15.791,1.028,22.625,22.798,17.926,10.497,3.695,20.517,-2.718,19.305,14.207,2.525,10.221,12.246,19.814,14.623,5.162,22.529,9.004,3.709,9.738,6.084,17.392,14.835,13.707,9.975,18.087,1.99,17.73,15.288,28.103,5.002,11.964,5.458,19.88,3.546,9.735,19.486,1.481,13.84,17.983,1.998,10.522,3.567,9.096,15.67,26.859,7.765,12.55,0.89,-3.291,6.544,17.341,7.248,7.786,11.058,10.528,7.444,14.019,10.211,15.698,11.561,9.472,28.57,-0.432,-0.95,28.617,26.38,17.887,9.106,12.875,12.904,4.666,11.656,4.071,14.498,5.915,21.752,15.255,8.709,0.758,8.136,19.031,4.915,-0.103,11.841,10.906,15.829,0.282,19.579,21.657,5.84,6.229,4.456,23.528,7.221,21.52,19.391,1.788,23.291,11.762,1.157,-2.443,20.666,-2.403,14.676,3.751,17.91,19.202,19.712,13.689,20.347,11.544,1.971,15.793,10.522,21.325,10.713,3.719,21.116,11.666,24.247,13.667,10.024,7.559,6.987,14.615,13.959,15.178,9.31,12.455,10.521,2.171,18.357,6.53,15.977,4.246,16.004,14.282,8.232,17.493,16.524,2.963,5.557,8.194,27.976,20.599,4.33,18.067,1.773,4.129,12.36,18.366,20.17,3.704,3.189,10.621,16.959,16.939,17.409,0.509,4.605,13.654,10.646,27.279,15.155,11.03,5.887],[12.028,16.992,15.581,2.571,11.447,11.264,-1.454,7.212,10.385,0.474,7.528,27.556,27.951,17.189,9.097,5.143,10.611,19.891,13.828,0.769,6.716,7.205,5.963,12.649,15.726,1.133,22.692,22.763,18.069,10.391,3.544,20.805,-2.63,19.295,14.286,2.615,10.389,12.218,19.934,14.787,4.902,22.402,8.912,3.847,9.702,6.287,17.303,14.655,13.781,9.985,17.963,2.023,17.434,15.357,28.173,4.849,11.851,5.345,20.03,3.665,9.893,19.442,1.483,13.963,18.12,2.06,10.561,3.419,9.548,15.362,26.569,7.937,11.847,0.724,-3.078,6.649,16.919,7.249,7.319,10.817,10.816,7.375,14.377,10.397,15.288,11.764,9.598,28.419,-0.094,-0.908,28.491,26.322,17.538,9.483,13.238,13.112,4.741,11.817,4.167,14.208,5.464,21.283,15.74,9.036,0.941,8.525,18.688,4.881,-0.141,11.682,10.874,15.681,0.006,19.123,21.592,5.924,5.793,4.105,23.779,7.06,21.358,19.264,2.469,23.25,11.882,1.743,-2.049,20.71,-2.24,14.115,3.9,17.893,19.715,19.452,12.705,20.087,11.837,1.269,15.872,10.207,21.284,10.427,3.801,21.299,11.117,24.103,13.702,10.061,7.528,6.729,15.043,14.119,15.097,9.41,12.826,10.428,2.099,18.359,7.048,16.365,4.112,15.885,14.601,8.086,18.02,16.158,3.5,5.197,8.334,28.236,20.802,4.664,17.918,1.743,4.529,12.394,18.571,20.394,3.443,3.141,10.49,17.065,16.855,17.457,0.612,4.291,13.708,10.333,27.473,15.172,10.946,6.296],[11.916,16.79,15.629,2.256,11.429,11.306,-1.35,7.639,10.387,0.631,7.471,27.372,27.695,16.854,9.133,5.31,10.62,19.685,13.938,0.586,6.638,7.111,6.035,12.761,15.655,1.338,22.746,22.704,18.206,10.294,3.565,21.169,-2.545,19.356,14.184,2.669,10.618,12.085,19.868,14.938,4.61,22.208,8.781,3.918,9.746,6.404,17.2,14.638,13.736,9.87,17.907,2.109,17.428,15.515,28.281,4.8,11.798,5.09,20.189,3.768,9.978,19.469,1.565,13.99,17.846,2.036,10.641,2.835,9.311,14.932,26.054,8.161,11.824,0.862,-2.941,6.553,17.047,7.686,7.723,10.83,10.845,7.408,14.094,10.628,15.141,11.449,9.778,28.463,-0.109,-0.904,28.663,26.034,17.443,9.86,12.902,13.421,4.284,12.011,4.36,13.853,5.314,21.172,15.573,9.01,0.713,8.49,18.97,5.2,0.19,11.414,10.464,15.769,-0.235,18.629,21.497,6.14,5.666,4.0,23.478,6.225,21.203,19.437,2.647,23.264,11.82,1.882,-1.99,21.003,-1.466,14.364,4.179,17.53,19.896,19.11,12.607,20.943,12.184,1.33,15.855,10.364,20.624,10.458,4.49,21.119,11.323,23.872,14.046,10.563,7.559,6.389,14.855,14.505,14.578,9.571,12.435,10.257,2.179,18.124,7.463,16.387,3.751,16.039,14.364,8.109,17.848,16.264,3.876,5.245,8.429,28.078,20.958,4.47,17.878,2.028,4.512,12.471,18.797,20.338,3.426,3.27,10.661,17.356,17.116,17.03,1.403,4.262,13.67,10.773,27.605,15.226,11.272,6.095],[11.733,16.634,15.693,1.952,11.405,11.165,-1.201,7.926,10.439,0.798,7.503,27.155,27.487,16.562,9.269,5.45,10.61,19.435,14.027,0.328,6.486,6.996,5.954,12.937,15.68,1.508,22.744,22.54,18.437,10.092,3.635,21.487,-2.361,19.309,14.084,2.616,11.027,12.0,19.854,14.953,4.432,21.932,8.82,4.044,9.699,6.481,17.235,14.628,13.571,9.761,17.762,2.377,17.678,15.705,28.403,4.786,11.875,4.793,20.251,3.821,10.048,19.46,1.689,13.921,17.603,2.368,10.887,2.557,9.087,14.754,26.044,8.544,12.743,0.221,-3.069,6.071,17.108,7.75,8.16,11.152,10.284,7.424,14.197,10.031,15.765,11.563,9.729,28.562,-0.49,-0.694,28.019,26.128,17.239,9.706,12.733,13.092,4.116,12.181,4.295,13.887,5.648,21.142,15.268,9.128,0.287,8.492,18.767,5.589,0.568,11.65,10.604,15.607,0.006,18.558,21.343,6.044,6.009,4.155,23.427,6.079,21.538,19.621,2.811,23.639,11.807,1.518,-1.924,21.374,-1.111,14.612,3.591,17.836,20.011,19.574,13.208,21.088,12.073,1.771,15.602,10.332,20.78,10.658,4.58,21.067,11.37,23.642,14.078,10.489,7.85,6.2,15.402,14.382,14.598,9.268,12.653,10.062,2.634,18.328,6.915,16.39,3.494,15.741,14.344,7.939,17.426,16.186,3.847,5.331,8.343,27.775,20.721,3.885,18.239,1.95,4.382,12.465,18.642,20.688,3.525,3.356,10.638,17.466,17.265,16.913,1.938,4.787,13.667,10.557,27.657,14.916,11.174,5.944],[11.624,16.694,15.868,1.692,11.379,11.005,-1.08,7.936,10.727,0.836,7.542,27.035,27.265,16.34,9.314,5.606,10.608,19.182,14.049,0.126,6.261,6.903,5.825,13.04,15.68,1.674,22.756,22.408,18.555,10.024,3.57,21.484,-2.103,19.431,14.121,2.577,11.349,12.09,20.007,14.937,4.294,21.841,8.906,4.187,9.553,6.426,17.336,14.633,13.624,9.645,17.442,2.728,17.795,15.896,28.49,4.783,11.859,4.756,20.211,3.842,10.111,19.423,1.835,13.726,17.575,2.269,11.358,2.783,9.798,14.622,26.213,8.307,12.316,0.096,-2.909,6.242,16.574,7.807,8.545,11.287,10.618,7.561,14.25,10.463,16.174,11.404,9.277,28.652,0.054,-0.703,27.654,26.409,17.206,9.184,12.812,13.578,4.245,12.127,3.969,14.143,5.53,20.86,15.716,9.273,0.422,8.29,19.087,5.636,0.443,11.838,10.323,15.29,-0.727,18.617,21.299,5.674,6.334,4.336,23.525,6.798,21.931,19.715,2.145,23.266,11.57,1.392,-2.177,21.994,-1.087,14.405,3.879,17.646,19.836,19.685,12.987,21.153,11.991,1.576,15.549,10.338,20.583,10.412,4.054,20.881,11.204,23.514,13.76,10.112,7.94,6.156,15.273,13.947,14.83,9.279,12.249,9.954,3.575,18.369,6.807,16.149,3.357,15.8,14.64,7.889,17.557,16.288,3.083,5.093,8.248,27.766,20.588,3.37,18.242,1.772,4.331,12.295,18.731,20.94,3.462,3.47,10.352,17.541,17.272,17.353,2.145,5.581,13.729,10.303,27.81,15.045,10.952,6.008],[11.52,16.841,16.17,1.616,11.365,10.965,-0.86,7.941,11.045,0.665,7.611,27.093,27.094,16.106,9.188,5.735,10.6,18.993,14.131,-0.133,6.04,6.794,5.68,13.115,15.618,1.645,22.675,22.505,18.544,10.011,3.598,21.297,-1.8,19.568,14.139,2.528,11.411,12.187,20.147,14.832,4.159,21.761,8.979,4.344,9.328,6.339,17.449,14.685,13.823,9.589,17.174,2.946,17.795,16.055,28.612,4.709,11.708,4.95,20.247,3.906,10.069,19.391,1.901,13.549,17.917,1.983,12.077,2.779,10.137,14.343,25.609,7.971,12.243,0.503,-2.423,6.195,16.688,7.669,8.28,10.656,10.873,7.36,14.55,10.642,15.906,11.295,9.169,28.234,0.449,-0.938,27.981,26.01,17.035,9.61,13.261,14.174,4.639,12.075,3.859,14.323,4.901,20.405,15.899,9.076,0.537,7.714,19.475,5.353,0.342,11.853,10.319,15.065,-0.943,18.4,21.061,5.319,6.223,3.768,23.417,6.538,22.055,19.775,2.408,23.193,11.468,1.826,-1.957,21.594,-0.887,14.47,3.848,17.828,19.641,18.785,12.849,21.265,12.641,1.035,15.632,10.459,20.565,10.025,4.308,21.399,10.989,23.435,13.794,10.322,7.314,5.931,15.264,13.98,14.938,9.816,12.619,10.253,3.991,18.172,7.51,15.903,3.667,15.931,14.84,7.728,17.72,16.61,2.929,5.335,8.533,27.855,20.898,3.365,17.908,2.011,4.365,11.972,18.726,20.822,3.308,3.692,9.838,17.718,17.156,16.817,2.216,5.592,13.584,10.727,28.013,15.072,11.024,6.004],[11.397,16.93,16.319,1.717,11.308,11.127,-0.661,7.972,11.366,0.404,7.624,27.185,27.033,15.82,9.027,5.862,10.688,18.796,14.263,-0.338,5.756,6.519,5.51,13.257,15.541,1.458,22.605,22.721,18.424,9.912,3.576,21.172,-1.581,19.425,14.209,2.586,11.396,12.181,20.174,14.754,4.018,21.624,9.143,4.592,9.225,6.394,17.41,14.793,14.21,9.571,16.955,2.888,17.785,16.199,28.812,4.58,11.601,5.145,20.375,3.998,10.04,19.48,1.932,13.488,18.299,2.017,12.051,2.853,9.904,14.12,25.406,7.967,12.175,0.337,-2.109,6.232,16.906,7.712,7.746,10.188,10.333,7.245,15.191,10.184,15.788,11.665,9.463,28.334,0.9,-1.062,28.012,25.442,17.015,10.053,13.284,13.464,4.719,11.931,3.647,13.821,5.023,20.214,15.872,8.895,-0.016,7.918,19.161,5.134,0.368,12.008,10.504,15.281,-0.471,18.176,21.507,5.319,5.728,3.869,23.812,5.715,21.419,19.921,2.811,23.4,11.503,1.666,-1.228,21.081,-0.108,14.349,3.762,17.956,19.699,19.36,13.005,21.556,12.804,1.248,15.784,10.654,20.602,9.507,4.649,21.302,11.444,23.409,13.747,10.73,7.11,5.927,15.169,14.031,15.09,9.74,13.219,9.924,3.194,18.36,7.458,15.938,3.628,15.814,15.044,7.952,17.629,17.171,3.556,5.584,8.345,28.271,20.786,3.458,17.957,1.654,4.284,12.221,18.675,20.899,3.152,3.771,9.552,17.77,17.186,16.374,1.944,5.156,13.435,10.519,28.111,14.728,11.048,6.12],[11.282,16.985,16.385,1.746,11.238,11.213,-0.432,7.871,11.705,0.243,7.566,27.352,27.124,15.572,8.941,5.973,10.694,18.681,14.212,-0.368,5.473,6.217,5.223,13.283,15.444,1.202,22.479,23.008,18.296,9.925,3.491,21.117,-1.253,19.371,14.289,2.703,11.34,12.106,20.186,14.719,4.05,21.601,9.373,4.773,9.081,6.443,17.258,14.939,14.511,9.698,16.771,2.737,17.879,16.299,28.938,4.449,11.564,5.296,20.502,3.917,10.059,19.535,1.951,13.544,18.406,1.933,11.564,2.933,10.207,13.943,25.656,8.332,11.489,0.406,-2.17,6.236,16.714,8.18,7.522,10.31,10.159,7.153,14.774,10.323,15.793,11.312,10.156,28.144,0.914,-0.98,27.461,25.597,16.679,9.725,13.144,13.656,4.722,11.993,3.424,13.622,5.146,19.961,16.072,9.102,-0.178,7.782,18.663,5.11,0.267,11.918,10.118,15.578,-1.068,17.896,22.099,5.119,5.21,3.754,23.985,5.435,21.267,19.754,2.087,23.121,11.369,1.208,-1.517,21.783,-0.207,14.464,4.395,17.552,19.415,19.575,13.394,21.423,12.834,2.094,15.73,10.855,20.74,9.748,4.653,20.822,12.425,23.433,14.946,11.071,7.579,5.968,15.053,13.958,14.983,9.943,13.794,9.569,3.039,18.529,7.298,16.069,3.045,16.049,15.2,7.943,17.135,17.235,3.365,5.759,8.243,28.168,20.678,3.731,18.051,2.028,4.724,11.991,19.117,20.929,2.941,3.78,9.436,17.811,17.741,16.635,1.276,5.423,13.373,10.063,28.387,14.452,11.111,6.227],[11.112,16.953,16.3,1.672,11.24,11.247,-0.289,7.914,11.863,0.435,7.481,27.462,27.187,15.319,8.866,6.068,10.648,18.577,14.01,-0.353,5.243,5.99,4.797,13.133,15.378,0.823,22.397,23.234,18.272,9.928,3.467,21.15,-0.939,19.428,14.322,2.579,11.252,12.166,20.187,14.663,4.145,21.652,9.642,4.89,9.031,6.497,17.238,15.1,14.886,9.835,16.588,2.502,18.135,16.379,28.854,4.362,11.56,5.392,20.437,3.859,10.064,19.477,2.106,13.703,18.12,1.878,12.348,3.064,11.014,13.915,26.181,8.703,11.525,0.614,-1.779,5.864,17.087,7.359,7.648,10.298,9.713,7.084,14.546,10.208,16.316,11.037,10.924,28.054,1.063,-0.942,27.62,25.794,16.667,9.324,13.434,14.221,4.916,12.266,2.926,13.807,4.424,19.817,15.784,9.283,-0.076,7.061,18.921,5.212,0.339,12.005,10.145,15.328,-1.43,17.914,21.859,4.952,5.107,3.683,23.935,5.454,21.297,19.769,1.772,22.837,11.461,1.43,-1.949,21.817,-0.494,14.631,4.37,17.649,19.615,18.928,13.026,21.7,13.05,2.363,15.638,11.041,20.797,10.236,4.617,21.093,12.496,23.385,14.89,10.849,7.836,5.884,15.538,13.692,14.735,10.07,13.717,9.404,3.333,18.108,7.248,16.386,3.406,15.592,14.968,8.154,16.865,17.028,2.913,5.912,8.307,28.158,20.784,3.794,17.956,2.355,4.354,12.349,18.882,20.999,3.047,3.679,10.136,17.794,17.693,17.056,1.247,5.27,13.412,10.657,28.152,14.635,11.066,6.229],[10.988,16.775,16.234,1.588,11.269,11.286,-0.136,8.115,12.039,0.801,7.289,27.302,27.252,15.2,8.803,6.14,10.636,18.47,14.019,-0.422,5.042,5.906,4.404,13.02,15.197,0.598,22.392,23.161,18.424,9.829,3.436,21.286,-0.756,19.335,14.318,2.568,11.308,12.233,20.344,14.696,4.196,21.642,9.867,4.976,9.127,6.566,17.189,15.262,15.243,10.1,16.411,2.245,18.384,16.46,28.674,4.343,11.63,5.402,20.234,3.797,10.269,19.367,2.351,13.909,18.47,2.215,12.208,2.945,10.226,13.731,25.993,8.296,11.348,0.533,-1.666,5.918,16.505,7.905,7.931,9.845,9.634,7.155,14.362,10.116,16.469,11.344,10.738,28.43,1.427,-0.748,27.498,26.006,16.67,8.616,12.719,13.684,4.807,12.169,2.512,14.624,3.943,20.143,15.647,9.196,-0.006,6.916,19.141,5.485,-0.182,11.865,10.239,15.133,-0.741,17.831,21.974,4.938,5.121,4.066,24.084,5.176,21.274,19.671,1.752,22.862,11.534,1.115,-2.262,21.462,-0.455,14.712,3.568,18.044,19.901,19.01,13.357,21.542,12.694,1.369,15.688,11.194,21.028,9.993,4.5,21.684,11.944,23.421,14.634,10.681,7.759,6.053,15.346,13.66,14.814,9.905,13.696,9.683,3.852,17.897,7.444,16.582,3.567,15.392,15.096,8.231,17.467,17.174,2.356,5.835,8.639,28.538,20.723,3.383,17.808,1.897,3.611,12.405,18.667,20.909,2.98,4.114,10.617,17.93,17.544,16.419,1.427,5.256,13.508,10.779,27.742,15.059,10.879,6.355],[10.792,16.407,16.181,1.416,11.369,11.151,-0.039,8.225,12.023,1.169,7.127,27.1,27.186,15.12,8.655,6.095,10.665,18.491,14.087,-0.515,4.796,6.02,4.27,12.855,14.963,0.483,22.327,22.988,18.516,9.746,3.208,21.422,-0.823,19.169,14.469,2.571,11.355,12.17,20.569,14.833,4.277,21.794,9.953,5.1,9.294,6.677,17.085,15.413,15.515,10.374,16.215,1.892,18.659,16.447,28.531,4.267,11.731,5.382,20.161,3.688,10.548,19.275,2.596,14.233,18.187,2.719,12.549,2.589,10.481,13.584,25.81,8.26,11.705,0.48,-1.702,5.999,15.924,7.779,8.306,9.538,10.121,7.217,14.54,10.669,16.08,11.405,10.329,28.128,1.413,-0.231,27.274,25.883,16.507,7.687,12.692,13.692,4.636,11.911,2.339,14.801,4.351,19.994,15.62,8.991,-0.176,7.501,19.239,5.499,-0.42,11.657,10.351,15.478,-1.244,17.868,21.902,4.483,4.628,3.443,24.262,4.43,21.294,19.899,1.926,23.038,11.311,1.157,-2.149,21.601,0.373,14.531,3.72,17.677,19.81,18.96,13.244,21.934,12.68,1.619,15.649,11.192,20.645,9.692,4.417,21.41,12.058,23.114,15.407,10.725,7.695,6.24,15.112,14.059,15.146,10.573,14.379,10.066,4.38,18.204,7.77,16.157,3.569,15.807,15.506,8.627,17.712,17.937,2.547,5.854,8.842,27.875,20.359,3.548,17.585,2.236,3.824,12.618,18.581,20.724,2.878,4.367,10.422,18.165,17.622,16.117,0.871,5.4,13.571,10.604,27.953,15.247,11.025,6.216],[10.673,16.179,16.106,1.337,11.543,10.993,-0.218,8.109,12.076,1.379,7.124,26.812,26.997,15.173,8.443,5.906,10.675,18.586,14.145,-0.744,4.557,6.195,4.271,12.737,14.895,0.464,22.171,22.98,18.544,9.804,2.825,21.357,-0.957,18.933,14.636,2.643,11.353,12.022,20.781,15.042,4.305,21.757,10.004,5.328,9.429,6.885,17.174,15.5,15.951,10.471,16.099,1.621,18.916,16.385,28.5,4.181,11.681,5.433,20.21,3.783,10.605,19.153,2.745,14.65,17.177,2.99,12.655,2.51,11.266,13.366,25.85,8.612,11.978,-0.051,-1.483,5.542,15.901,7.428,8.164,9.648,10.332,7.472,14.635,10.541,15.786,11.295,9.632,28.038,1.376,0.254,27.488,25.557,15.904,7.409,13.212,13.638,4.673,12.13,2.313,13.792,4.664,19.792,15.674,9.15,-0.382,7.534,19.037,5.141,0.06,11.821,10.378,15.644,-1.088,17.826,21.377,5.106,4.69,3.417,23.745,4.242,21.037,20.056,1.951,22.218,10.908,1.343,-1.521,21.847,0.647,14.554,3.962,17.472,19.848,18.781,12.947,22.444,13.104,1.917,15.621,11.176,20.748,10.282,4.708,21.052,12.342,23.596,15.583,11.09,7.737,6.235,15.642,14.047,15.356,11.158,14.349,9.944,4.386,18.261,7.753,15.881,3.777,15.591,15.621,8.728,17.038,18.09,2.461,5.786,8.844,27.9,20.412,3.829,17.538,2.421,4.125,12.815,18.775,20.814,2.516,4.383,10.443,18.152,18.554,16.118,0.587,5.253,13.559,11.003,27.946,15.805,11.253,5.843],[10.702,16.176,16.06,1.405,11.616,10.858,-0.319,7.948,12.236,1.405,7.136,26.586,26.744,15.188,8.328,5.599,10.8,18.546,14.252,-0.924,4.5,6.414,4.254,12.743,14.844,0.542,21.88,22.914,18.522,9.955,2.602,21.165,-1.099,18.802,14.778,2.717,11.443,11.962,20.849,15.201,4.364,21.786,10.095,5.546,9.517,7.04,17.226,15.528,16.408,10.47,16.016,1.462,19.075,16.433,28.563,4.099,11.494,5.644,20.305,4.046,10.529,19.116,2.781,14.997,17.355,3.013,12.622,2.589,10.651,13.374,25.953,7.916,12.023,-0.107,-1.979,5.481,16.037,7.972,7.534,10.132,10.009,7.294,14.313,10.532,15.988,11.268,9.177,27.702,1.103,-0.069,27.323,25.218,15.959,7.149,13.234,13.437,4.874,12.143,2.432,13.216,4.317,20.221,16.007,9.106,-0.397,7.752,18.822,4.932,0.063,12.044,10.262,15.538,-1.577,17.973,21.683,5.578,4.915,3.361,23.677,4.59,20.738,20.168,0.829,22.254,11.234,1.56,-0.85,21.48,0.568,14.842,3.659,17.415,19.422,18.651,12.818,22.551,12.985,1.542,15.185,11.186,20.602,10.468,5.018,21.511,12.509,23.492,15.96,11.513,7.67,6.158,15.499,13.846,15.172,11.089,14.974,10.188,4.647,18.68,7.799,16.313,3.569,15.877,15.388,8.722,16.645,17.941,2.091,5.602,8.772,27.993,20.247,3.701,17.4,2.29,4.213,13.513,19.113,20.591,2.328,4.451,10.661,18.094,18.845,16.355,0.573,5.467,13.377,11.01,27.481,15.788,10.593,5.116],[10.85,16.297,16.166,1.442,11.574,10.727,-0.231,7.819,12.34,1.091,7.152,26.403,26.423,15.257,8.24,5.341,10.885,18.447,14.311,-0.925,4.63,6.558,4.191,12.839,14.655,0.408,21.57,22.83,18.47,10.193,2.589,20.895,-1.16,18.87,14.847,2.677,11.462,12.017,20.905,15.122,4.423,21.745,10.115,5.658,9.582,7.067,17.321,15.563,16.715,10.553,15.952,1.388,18.96,16.494,28.542,3.997,11.252,5.782,20.445,4.271,10.412,19.131,2.9,15.162,17.78,2.77,12.697,2.804,10.547,13.541,25.715,7.575,11.887,0.3,-1.932,5.403,16.101,7.042,7.158,10.791,9.901,7.181,14.344,10.457,16.475,11.398,9.559,27.674,1.069,-0.181,26.994,25.621,16.394,6.84,13.393,13.692,4.693,12.218,2.35,13.673,3.44,20.194,15.849,9.38,-0.064,8.191,18.548,4.722,0.192,11.585,10.572,15.624,-1.35,17.56,21.485,5.428,4.807,3.269,23.801,4.641,20.505,20.184,1.355,22.285,11.659,1.461,-1.136,20.845,0.22,14.688,3.676,17.636,19.268,18.454,13.031,22.196,13.232,1.715,15.18,11.325,20.657,9.873,4.951,21.553,12.454,23.214,16.964,11.689,7.667,6.289,15.512,13.97,15.421,10.857,14.984,10.234,5.031,18.835,8.17,16.603,3.635,15.961,15.476,8.763,17.517,18.367,1.877,5.803,9.131,28.004,19.582,4.052,17.585,2.255,4.394,13.72,18.683,20.801,2.134,4.445,10.691,18.136,18.182,16.389,0.546,5.701,12.964,10.461,27.618,16.097,10.258,5.215],[11.074,16.35,16.424,1.432,11.46,10.883,-0.087,7.54,12.483,0.691,6.985,26.347,26.238,15.437,8.048,5.243,10.955,18.277,14.287,-0.668,4.708,6.508,4.088,12.901,14.397,0.39,21.246,22.804,18.392,10.502,2.635,20.704,-1.149,19.006,14.93,2.582,11.526,12.122,20.9,14.974,4.473,21.734,10.081,5.694,9.523,7.034,17.411,15.659,16.847,10.613,16.047,1.323,18.837,16.556,28.491,3.867,11.047,5.708,20.597,4.445,10.402,19.009,3.134,15.292,17.907,2.375,12.207,2.804,10.923,13.987,25.07,8.094,11.739,0.113,-1.378,5.501,15.893,7.499,7.475,11.158,9.974,7.55,14.624,10.35,16.626,11.347,9.748,28.078,1.606,-0.537,26.674,25.568,16.942,6.675,13.083,13.842,4.271,12.259,2.142,14.34,3.827,19.705,15.829,9.281,-0.295,8.273,18.518,4.543,-0.357,11.775,10.825,15.622,-1.14,17.194,21.222,5.644,4.342,3.539,23.379,4.879,20.675,19.999,1.46,21.807,11.85,1.503,-1.78,20.65,-0.038,14.611,3.744,17.55,19.406,18.679,13.373,22.062,13.253,1.76,15.517,11.615,21.21,9.869,4.952,21.911,11.834,23.299,16.965,11.204,8.116,6.458,15.348,14.084,15.598,10.456,15.116,9.86,4.796,18.297,8.137,16.567,4.036,15.537,15.774,8.867,17.661,17.98,2.218,5.465,9.077,27.904,19.441,4.359,17.913,2.485,4.061,13.682,18.886,20.904,2.158,4.384,10.889,18.283,17.879,15.908,0.579,5.741,12.87,10.435,27.713,16.408,10.389,5.874],[11.366,16.267,16.563,1.46,11.398,11.12,0.092,7.433,12.47,0.439,6.815,26.465,26.177,15.73,7.894,5.13,10.903,18.079,14.284,-0.585,4.816,6.522,3.989,12.987,14.187,0.311,20.917,22.837,18.257,10.693,2.669,20.632,-1.069,19.135,15.055,2.615,11.491,12.169,20.903,14.906,4.664,21.919,10.098,5.731,9.332,6.999,17.271,15.806,16.804,10.655,16.192,1.293,18.932,16.568,28.405,3.642,11.011,5.492,20.636,4.545,10.471,18.983,3.285,15.483,17.684,1.982,12.389,2.362,11.465,14.169,24.989,8.578,11.904,-0.061,-1.355,5.576,16.269,7.378,7.743,10.466,9.898,7.05,14.754,10.199,16.513,11.043,9.738,27.628,1.727,-1.028,26.611,25.137,17.031,6.431,12.934,13.806,3.742,12.362,2.092,13.996,4.339,19.863,15.812,9.555,-0.076,7.963,18.592,4.937,-0.014,12.266,11.108,15.612,-1.013,17.386,21.418,5.647,3.772,3.17,23.127,4.952,20.76,19.979,0.91,21.858,12.341,1.253,-2.471,21.095,-0.276,14.933,3.69,17.705,19.099,18.583,13.307,22.428,13.418,1.399,15.525,11.295,20.975,10.352,5.397,21.795,11.516,23.479,16.463,11.327,8.436,6.571,15.186,13.539,15.325,9.833,15.455,10.49,4.757,18.207,7.711,16.472,3.882,15.57,15.989,8.92,16.949,18.346,2.32,5.568,8.677,27.619,19.795,4.14,17.404,2.787,4.031,13.661,19.297,20.687,1.977,4.766,10.641,18.392,18.051,16.114,0.595,5.844,12.901,10.534,27.598,16.381,10.765,5.969],[11.557,16.166,16.478,1.538,11.356,11.01,0.287,7.441,12.53,0.488,6.704,26.497,26.063,15.971,7.64,5.058,10.911,18.045,14.383,-0.651,5.099,6.56,3.973,13.051,13.943,0.141,20.771,22.836,18.148,10.835,2.692,20.584,-1.141,19.331,15.145,2.489,11.585,12.029,20.978,14.895,4.612,22.143,9.971,5.859,9.433,6.99,17.259,15.834,16.764,10.787,16.203,1.316,19.023,16.524,28.203,3.442,11.171,5.229,20.357,4.572,10.32,19.068,3.432,15.586,17.515,2.115,12.143,2.124,11.181,14.322,25.755,8.679,12.576,-0.201,-1.186,5.308,16.611,7.196,7.43,10.779,10.172,6.641,14.642,10.467,16.556,10.958,9.748,27.607,1.681,-0.856,27.184,25.145,17.109,6.575,13.358,13.677,3.53,12.001,2.187,13.069,4.131,19.829,15.899,9.756,-0.498,7.663,18.443,4.72,0.345,11.941,11.209,15.393,-1.092,17.403,21.618,5.56,3.573,3.171,23.318,4.609,20.286,19.6,1.206,21.507,12.596,1.572,-2.393,21.192,0.244,14.846,3.781,18.074,19.308,18.594,13.151,22.51,13.333,1.849,15.896,11.068,20.745,10.43,5.233,21.139,11.878,23.284,16.145,11.532,8.447,6.447,15.283,13.77,15.571,9.928,15.587,10.165,5.005,18.614,7.386,16.288,3.898,15.609,15.978,8.934,17.272,19.209,2.652,5.577,8.455,27.789,19.601,4.308,17.364,2.617,3.632,13.831,19.125,20.6,1.799,4.871,10.337,18.219,18.304,16.602,1.098,5.823,12.996,10.739,27.938,16.336,10.789,5.518],[11.674,16.15,16.301,1.627,11.432,10.682,0.383,7.509,12.478,0.724,6.567,26.361,26.084,16.153,7.426,5.086,10.847,18.084,14.575,-0.815,5.385,6.481,4.005,12.918,13.776,0.186,20.707,22.79,17.995,10.911,2.712,20.634,-1.223,19.543,15.232,2.463,11.692,12.005,20.836,15.048,4.43,22.113,9.741,5.925,9.552,7.003,17.489,15.832,16.799,10.785,16.244,1.544,19.236,16.486,28.248,3.319,11.422,5.014,19.989,4.686,10.077,19.086,3.577,15.578,17.485,2.086,12.157,2.291,10.887,14.362,25.352,8.389,12.602,-0.118,-0.974,5.067,16.577,7.364,7.042,11.279,9.978,6.53,14.526,10.748,16.737,10.989,9.475,27.882,2.138,-0.699,27.36,25.403,17.15,6.488,13.281,13.924,3.716,12.413,2.317,12.479,4.38,19.703,16.075,9.635,-0.45,7.834,18.355,4.402,-0.374,12.011,11.164,15.089,-0.634,17.062,21.781,5.595,3.672,3.487,23.863,5.021,19.925,19.219,0.818,21.266,12.408,1.171,-2.111,20.884,0.569,14.6,4.101,18.081,19.083,18.846,13.319,22.245,13.4,2.201,15.797,11.021,21.339,9.896,4.921,21.684,12.034,23.647,16.526,11.682,8.344,6.23,15.337,14.09,15.669,10.501,15.405,9.97,5.502,18.311,7.513,16.263,3.535,15.914,15.642,9.2,17.677,18.56,2.842,5.072,8.258,27.589,19.711,4.571,17.836,2.623,3.426,13.777,18.468,20.585,1.505,4.823,10.85,18.264,18.157,16.227,0.865,5.867,13.194,10.571,27.796,16.5,10.229,4.85],[11.885,16.195,16.252,1.839,11.561,10.332,0.361,7.518,12.32,0.854,6.465,26.237,26.041,16.218,7.349,5.108,10.884,17.95,14.643,-0.815,5.7,6.413,4.029,12.825,13.633,0.183,20.672,22.936,17.756,10.777,2.932,20.76,-1.319,19.664,15.295,2.497,11.8,12.139,20.741,15.297,4.247,22.104,9.556,5.912,9.473,7.013,17.524,15.934,16.834,10.881,16.325,1.782,19.282,16.285,28.389,3.174,11.513,4.776,19.614,5.051,9.932,19.179,3.733,15.542,17.661,2.238,11.958,2.258,10.769,14.547,25.003,8.311,11.913,-0.008,-1.07,4.908,16.213,7.575,6.548,11.01,9.028,6.338,14.493,10.289,16.366,11.463,8.814,27.617,2.048,-0.863,26.931,25.349,17.454,6.19,13.012,13.769,3.772,12.346,2.155,12.447,4.793,19.706,15.875,9.317,-0.01,7.949,18.529,5.03,-0.281,11.838,11.3,14.782,-1.228,17.025,21.655,5.424,4.178,3.17,23.923,5.929,20.118,19.088,0.798,21.807,12.212,0.872,-1.524,20.638,0.34,14.951,4.236,18.227,19.523,19.174,13.314,22.159,13.573,1.825,15.618,10.883,21.409,10.02,5.165,21.556,12.099,23.78,17.028,11.489,8.334,6.15,15.44,14.013,15.51,10.21,15.057,10.29,5.405,18.468,8.138,16.761,3.225,15.848,16.07,9.069,17.718,18.581,3.156,5.002,8.063,27.566,19.858,4.616,17.883,2.864,3.57,13.662,18.241,20.189,1.37,4.999,11.21,17.989,18.327,15.965,0.888,6.185,13.368,10.051,27.452,16.33,10.331,4.417],[11.995,16.124,16.3,2.147,11.626,9.875,0.335,7.602,12.099,0.734,6.371,26.133,25.937,16.286,7.2,5.19,10.958,17.788,14.484,-0.712,5.991,6.351,4.142,12.706,13.403,0.186,20.673,23.241,17.579,10.605,3.231,20.883,-1.336,19.737,15.339,2.399,11.842,12.287,20.722,15.487,4.104,22.136,9.363,5.943,9.351,7.126,17.479,16.117,16.834,11.045,16.375,1.983,19.187,16.05,28.353,3.076,11.499,4.586,19.405,5.384,9.826,19.439,3.968,15.451,17.663,2.32,12.049,2.194,10.57,14.663,25.416,8.292,12.152,0.235,-1.12,4.787,16.255,6.773,6.511,10.801,9.298,6.547,14.479,10.144,16.046,11.748,8.701,27.584,1.766,-0.599,26.736,25.193,17.493,5.86,12.995,13.827,3.782,12.219,2.336,12.521,5.174,19.608,15.639,9.493,0.01,7.982,18.442,5.107,0.54,11.872,10.629,14.484,-1.45,16.905,22.02,5.082,4.059,3.058,24.053,5.857,20.7,18.907,1.111,21.698,12.117,0.883,-1.537,20.715,-0.386,14.897,4.228,18.39,19.549,18.74,13.487,22.395,13.655,1.644,16.172,10.687,21.168,10.419,4.942,21.161,12.425,23.735,17.078,11.271,8.24,6.033,15.229,14.414,16.124,9.812,15.167,10.273,5.102,18.218,8.137,16.778,3.529,15.734,16.103,9.168,17.489,18.522,3.006,4.732,8.013,27.56,19.586,4.985,17.811,3.21,3.614,13.742,18.069,19.814,1.314,5.178,10.965,17.84,18.403,16.409,1.443,6.139,13.381,10.466,27.41,16.089,10.911,4.463],[12.023,15.889,16.256,2.443,11.649,9.82,0.407,7.669,11.97,0.597,6.284,25.974,25.997,16.464,6.965,5.242,11.071,17.689,14.104,-0.605,6.09,6.333,4.238,12.733,13.201,0.247,20.669,23.634,17.412,10.403,3.488,20.881,-1.369,19.783,15.53,2.24,11.805,12.561,20.643,15.573,4.144,22.224,9.07,5.845,9.233,7.156,17.342,16.303,16.78,11.084,16.524,2.152,19.217,15.954,28.077,3.034,11.589,4.448,19.336,5.594,9.958,19.565,4.246,15.377,17.342,2.049,12.059,2.725,10.41,14.767,24.972,7.962,12.046,0.598,-1.355,4.771,16.331,6.396,6.814,10.81,9.228,6.495,14.36,10.464,16.266,11.359,8.46,27.613,1.849,-0.805,26.867,25.216,17.291,5.478,12.712,13.594,4.195,12.297,2.511,11.741,5.402,19.448,15.508,9.398,-0.617,7.695,18.249,4.905,0.447,12.06,10.285,14.292,-0.537,16.823,22.451,5.176,3.915,3.875,24.446,5.274,20.926,18.682,1.016,21.418,12.069,1.267,-1.775,21.092,-0.947,14.908,4.347,18.531,19.526,18.614,13.474,22.337,13.74,1.631,15.945,10.751,21.172,10.106,4.801,20.868,12.606,23.804,16.708,11.513,8.417,5.938,15.355,14.604,16.809,9.604,14.813,10.17,5.956,18.163,8.081,16.354,3.626,15.769,15.253,9.448,17.688,18.317,2.94,4.748,8.099,27.573,20.346,4.979,17.903,3.669,3.447,13.549,18.217,19.798,1.441,5.349,11.007,17.764,18.411,16.116,1.47,6.424,13.398,10.262,27.554,16.018,11.045,4.393],[11.922,15.691,16.007,2.765,11.641,9.732,0.465,7.659,11.915,0.404,6.278,25.911,26.089,16.686,6.773,5.277,11.095,17.681,13.607,-0.539,6.037,6.323,4.19,12.866,13.041,0.22,20.775,23.929,17.311,10.267,3.788,20.92,-1.412,19.842,15.725,2.188,11.837,12.848,20.543,15.623,4.276,22.388,8.831,5.896,9.293,7.106,17.213,16.402,16.579,11.097,16.584,2.217,19.476,15.812,27.85,2.982,11.606,4.318,19.379,5.542,10.118,19.679,4.552,15.255,16.999,1.693,11.697,3.46,10.4,14.881,25.017,7.765,11.882,0.927,-1.089,4.881,16.221,6.747,6.821,10.972,8.929,6.053,14.64,10.463,16.543,11.396,8.606,27.281,1.9,-1.22,27.36,25.281,17.166,5.391,12.17,13.065,4.703,12.369,2.366,11.363,5.464,19.204,14.974,9.611,-0.086,7.582,18.391,5.011,-0.012,12.363,10.54,14.062,-0.694,16.78,22.768,5.466,4.264,4.261,25.378,5.417,20.463,18.484,0.738,21.512,12.011,0.942,-1.953,21.011,-1.398,14.92,4.364,18.49,19.646,19.178,13.877,22.07,13.526,1.563,15.924,10.259,21.352,9.373,4.619,21.072,12.531,23.8,16.446,11.624,8.418,6.198,15.812,14.557,16.921,9.244,14.569,9.797,5.804,18.391,8.018,16.405,3.214,15.665,15.323,9.264,17.984,18.111,3.202,4.649,8.38,27.255,20.403,5.161,18.261,3.666,3.873,13.455,18.22,20.189,1.575,5.631,11.238,17.58,18.528,16.193,1.25,6.705,13.442,10.101,26.955,16.046,10.624,4.299],[11.761,15.717,15.925,3.175,11.532,9.395,0.449,7.506,11.828,0.166,6.339,25.959,26.239,16.828,6.682,5.401,11.047,17.754,13.275,-0.512,6.119,6.409,4.071,12.883,12.814,0.035,20.952,24.223,17.306,10.208,4.073,21.054,-1.542,19.965,15.889,2.037,11.816,13.071,20.566,15.733,4.346,22.543,8.574,5.972,9.245,7.08,17.299,16.405,16.487,11.061,16.592,2.056,19.703,15.697,27.723,2.947,11.448,4.127,19.488,5.41,10.211,19.912,4.769,15.139,17.004,1.468,11.704,3.614,10.36,15.157,25.602,7.616,12.036,1.311,-0.833,4.869,16.186,6.96,6.574,11.255,8.468,5.492,14.195,10.235,16.049,11.57,8.03,27.213,2.046,-1.42,27.52,25.417,17.281,5.693,11.689,13.263,4.735,12.21,2.382,11.481,5.263,19.186,14.721,9.321,-0.013,7.624,18.35,4.907,0.442,12.36,10.882,13.946,-0.697,16.901,22.71,5.062,4.223,3.948,25.664,5.288,20.165,18.139,0.653,21.701,11.688,0.724,-2.079,20.971,-1.647,14.702,4.646,18.298,19.532,19.606,14.199,22.083,13.564,1.417,16.149,9.906,22.003,10.315,4.747,21.616,12.688,24.177,16.445,11.497,8.568,6.131,15.839,14.781,16.389,9.291,14.762,10.423,5.377,18.085,7.517,17.017,3.487,15.585,15.32,9.196,17.754,18.475,3.056,4.593,8.388,26.668,19.753,5.4,18.411,3.978,4.121,13.302,18.137,20.185,1.723,5.892,11.176,17.492,19.097,16.532,1.605,6.283,12.987,10.724,26.894,15.995,10.024,3.999],[11.678,15.944,15.985,3.532,11.254,9.034,0.678,7.255,11.789,-0.061,6.366,26.145,26.492,16.93,6.722,5.53,10.837,17.954,13.232,-0.522,5.983,6.444,3.981,12.778,12.51,-0.079,21.095,24.301,17.295,10.215,4.201,21.142,-1.767,20.151,15.928,1.899,11.854,13.239,20.745,15.926,4.3,22.775,8.366,5.953,9.469,7.079,17.397,16.377,16.66,10.964,16.609,1.837,19.794,15.72,27.691,2.786,11.118,3.927,19.517,5.379,10.354,20.022,4.773,15.065,16.955,1.29,11.567,3.56,10.401,15.135,25.346,6.955,11.911,1.793,-1.139,5.185,16.565,6.413,6.568,11.393,8.531,5.561,14.02,9.616,16.061,11.434,7.857,27.131,2.027,-1.569,27.104,25.342,17.14,5.812,11.697,13.839,4.45,12.083,2.083,11.536,5.336,19.751,14.364,9.281,-0.762,7.46,18.489,4.933,-0.06,12.209,10.521,14.029,-0.745,16.947,22.912,4.9,4.223,4.173,25.357,5.51,20.402,17.863,0.534,21.849,11.762,0.441,-1.832,21.43,-1.597,14.907,5.042,18.579,20.037,19.455,14.07,21.833,13.736,1.737,16.249,9.609,22.118,10.795,4.929,21.669,12.912,24.636,16.527,11.21,8.582,6.161,15.657,14.791,15.913,9.307,14.925,10.045,5.863,18.05,7.552,16.746,3.675,15.683,14.794,9.305,17.742,18.5,2.694,4.436,8.538,26.429,20.529,5.581,18.722,4.182,3.92,13.392,18.147,20.022,2.036,5.932,10.85,17.501,19.71,16.183,1.635,6.18,12.639,10.888,27.23,15.955,9.73,3.725],[11.763,16.171,15.995,3.768,10.983,8.993,0.888,6.984,11.829,-0.197,6.368,26.353,26.517,16.932,6.856,5.52,10.609,18.274,13.212,-0.764,5.658,6.483,4.016,12.759,12.241,-0.175,21.263,24.18,17.245,10.279,4.291,21.349,-2.016,20.296,15.933,1.925,11.866,13.327,20.68,16.009,4.329,23.091,8.232,5.973,9.678,7.037,17.423,16.287,16.832,10.863,16.544,1.792,19.79,15.735,27.668,2.536,10.818,3.727,19.389,5.456,10.425,20.192,4.702,15.133,17.418,0.989,11.718,3.858,10.307,15.074,25.068,6.198,11.337,1.929,-0.928,5.662,16.515,6.187,6.618,10.84,8.786,5.729,14.293,9.293,16.206,10.797,7.844,27.362,1.95,-1.818,27.467,25.385,17.064,5.87,11.811,13.895,4.469,11.926,2.148,11.01,5.712,19.891,14.727,8.974,-0.612,7.037,18.624,5.279,-0.123,11.996,10.214,13.892,-0.501,17.512,22.712,4.915,3.967,4.388,25.343,4.821,20.889,17.779,0.73,21.672,11.778,0.367,-1.305,21.343,-1.143,15.156,4.676,19.235,20.344,19.215,14.366,22.257,13.694,1.493,16.517,9.676,21.895,10.487,4.963,21.718,12.657,24.577,16.492,11.545,8.416,6.21,15.554,15.515,15.716,8.922,14.776,10.437,6.001,18.011,7.739,16.412,3.455,16.103,14.992,9.074,18.114,18.339,2.515,4.356,8.626,26.826,21.014,5.675,18.547,4.473,3.839,13.24,18.041,19.943,2.087,5.676,10.82,17.577,19.658,16.455,1.637,6.077,12.721,10.724,26.837,16.064,9.933,4.06],[11.794,16.336,15.933,3.913,10.988,9.078,0.899,6.661,11.87,-0.233,6.324,26.612,26.522,16.823,6.694,5.471,10.264,18.523,13.251,-0.852,5.486,6.466,4.01,12.806,11.925,-0.212,21.513,23.977,17.245,10.318,4.32,21.623,-2.149,20.39,16.135,1.998,11.926,13.343,20.633,16.068,4.367,23.35,8.204,5.926,9.853,7.034,17.46,16.125,16.719,10.789,16.609,1.851,19.818,15.907,27.638,2.31,10.71,3.653,19.208,5.558,10.35,20.289,4.613,15.315,17.804,0.991,11.872,4.348,10.464,15.177,25.027,5.85,11.591,2.081,-0.571,6.107,16.627,6.715,6.693,10.743,8.774,5.741,14.187,9.734,16.374,10.339,7.809,27.854,2.452,-2.048,27.191,25.43,16.877,5.486,11.875,13.571,4.445,11.612,2.427,10.664,5.145,20.014,14.905,8.854,-0.578,7.399,18.655,5.208,0.407,11.976,10.429,13.584,-0.6,17.991,22.64,4.946,3.689,4.788,25.241,4.474,20.798,18.145,0.915,21.295,11.51,0.762,-1.338,21.293,-0.752,14.74,4.491,18.953,20.21,19.765,14.406,22.609,13.672,1.376,16.234,9.681,22.27,10.286,4.927,20.932,12.363,24.918,16.613,11.586,8.448,5.886,15.607,15.398,15.924,8.605,14.921,10.685,5.618,18.004,7.658,16.601,3.412,15.962,15.074,8.932,17.911,18.636,2.835,4.37,8.687,27.038,20.333,5.794,18.677,4.498,3.684,13.569,17.711,20.03,1.838,5.553,10.747,17.739,19.25,16.389,1.456,5.966,12.581,10.244,26.582,15.828,10.417,3.811],[11.882,16.512,15.938,3.931,11.154,9.107,0.925,6.508,11.874,-0.272,6.371,26.869,26.556,16.734,6.217,5.389,9.986,18.659,13.253,-0.653,5.328,6.447,3.966,12.765,11.669,-0.09,21.61,23.876,17.396,10.42,4.381,21.885,-2.106,20.313,16.218,2.21,12.023,13.292,20.599,16.042,4.39,23.432,8.165,5.728,9.978,7.051,17.362,16.034,16.552,10.64,16.665,1.866,19.791,16.146,27.632,2.134,10.777,3.63,19.109,5.614,10.217,20.143,4.487,15.34,17.311,1.054,11.772,4.537,10.793,14.974,25.127,5.905,11.602,2.031,-0.472,6.178,16.62,6.37,6.644,10.985,8.591,5.707,14.015,9.894,16.107,10.939,7.91,28.17,2.664,-1.692,26.703,25.631,16.666,4.938,11.965,13.697,4.486,11.29,2.067,10.298,4.974,20.149,14.688,8.216,-0.914,7.627,18.512,5.059,0.316,12.238,10.456,13.184,-0.48,17.768,22.697,4.885,3.952,4.62,24.974,5.086,20.85,18.279,1.012,21.287,10.977,0.87,-2.074,21.35,-0.566,14.976,5.313,18.551,20.348,20.211,14.479,22.324,13.886,1.746,16.367,9.712,22.895,11.275,4.65,20.852,12.365,25.171,16.248,11.188,8.621,6.006,16.121,14.924,15.807,8.993,15.086,10.644,5.712,18.805,7.533,17.082,3.216,16.206,15.2,9.014,18.002,18.671,3.045,4.187,8.633,26.609,20.542,5.822,19.168,3.969,3.325,14.032,17.689,20.088,1.432,5.767,10.829,18.001,19.328,16.208,1.066,6.323,12.625,9.799,26.85,16.249,10.318,3.684],[11.942,16.528,15.975,3.729,11.335,9.072,0.935,6.573,11.852,-0.241,6.466,27.001,26.55,16.636,5.83,5.318,9.756,18.806,13.189,-0.474,5.275,6.44,3.881,12.756,11.518,0.15,21.528,23.838,17.507,10.634,4.577,22.13,-2.042,20.208,16.212,2.414,12.003,13.251,20.656,15.93,4.475,23.353,8.258,5.634,10.18,7.016,17.557,16.124,16.49,10.451,16.676,1.767,19.738,16.32,27.638,1.958,11.017,3.451,19.135,5.655,10.117,20.213,4.376,15.287,17.35,0.951,12.077,4.305,10.542,14.923,24.925,5.865,11.458,1.785,-0.399,5.74,16.739,5.683,6.387,11.158,8.135,5.343,14.273,9.855,15.78,11.256,7.921,28.387,2.535,-1.743,26.869,26.075,16.819,4.778,12.078,13.629,4.659,10.848,2.306,10.05,5.321,20.041,14.734,8.057,-0.401,7.689,18.435,5.006,0.077,12.472,10.146,12.736,-0.14,17.788,22.42,4.997,4.29,4.778,24.876,4.76,21.129,18.899,1.052,21.705,10.963,0.82,-2.292,21.923,-0.481,15.46,5.329,18.65,20.529,19.551,14.45,22.199,13.956,2.112,16.544,8.999,23.109,11.653,4.442,21.502,12.482,24.96,15.9,11.168,8.612,6.186,16.465,14.626,15.402,9.392,14.658,10.354,5.32,18.38,7.608,16.86,3.36,16.233,15.368,8.722,18.26,18.567,2.608,4.37,8.373,26.374,20.361,5.612,18.453,3.915,3.308,13.508,17.989,19.614,1.165,5.531,10.904,18.108,19.467,16.426,1.608,6.317,12.705,9.712,26.851,16.072,10.138,3.606],[11.877,16.472,16.026,3.398,11.484,9.006,0.901,6.665,11.797,-0.296,6.445,27.036,26.488,16.625,5.674,5.412,9.592,18.786,13.244,-0.288,5.277,6.47,3.844,13.005,11.499,0.392,21.569,23.754,17.679,10.773,4.78,22.36,-1.95,20.163,16.162,2.469,11.907,13.295,20.777,15.823,4.631,23.314,8.316,5.584,10.276,6.997,17.761,16.12,16.369,10.304,16.765,1.665,19.722,16.516,27.658,1.857,11.281,3.273,19.194,5.644,10.017,20.237,4.223,15.024,17.587,1.156,11.732,3.813,10.178,15.203,24.983,5.748,11.781,1.463,-0.58,4.916,16.881,6.409,6.273,10.976,8.238,5.053,14.349,10.274,16.387,11.315,7.738,28.312,2.397,-1.989,26.995,26.041,16.586,4.715,12.106,13.663,4.409,10.662,2.143,9.661,5.212,20.403,14.502,7.857,0.018,7.867,18.501,4.839,0.498,11.831,10.424,12.186,-0.397,18.027,22.57,5.041,4.217,4.73,24.788,4.114,20.869,18.975,1.17,22.17,11.457,0.853,-2.206,22.173,-0.541,15.013,4.872,18.714,20.824,19.696,14.141,21.78,13.563,2.107,16.57,8.827,22.301,11.085,4.245,22.18,12.546,24.922,16.196,11.528,8.351,6.527,15.757,14.475,15.895,9.691,14.672,10.861,5.112,17.844,7.446,16.693,4.034,16.099,15.557,8.457,17.883,18.498,2.473,4.074,8.38,26.696,20.261,5.187,18.74,4.196,3.527,13.233,17.931,19.319,1.205,5.456,10.113,18.246,19.568,16.753,1.689,6.013,12.998,10.092,26.531,15.948,10.207,3.246],[11.936,16.483,16.214,3.209,11.537,8.986,0.807,6.866,11.601,-0.385,6.328,26.959,26.153,16.705,5.708,5.442,9.391,18.841,13.29,-0.071,5.221,6.506,3.701,13.395,11.434,0.766,21.753,23.761,17.892,10.761,4.804,22.413,-1.949,20.167,16.05,2.487,11.886,13.21,20.745,15.735,4.921,23.243,8.303,5.339,10.345,6.951,17.671,16.1,16.324,10.052,16.82,1.622,19.704,16.786,27.684,1.964,11.55,3.201,19.181,5.484,10.037,20.135,4.094,14.752,17.306,0.888,11.616,3.223,10.043,15.12,25.117,5.9,11.894,1.417,-0.899,4.774,16.393,6.962,6.421,10.885,8.362,4.911,14.311,10.583,16.889,11.43,7.879,27.92,2.242,-1.8,27.296,25.716,15.937,4.834,11.873,14.056,4.627,10.8,2.063,9.596,5.204,20.251,14.606,7.969,-0.647,7.915,18.714,5.314,0.664,11.936,10.919,12.254,-0.084,18.111,22.539,5.146,3.56,4.832,24.703,3.7,20.894,18.996,1.03,22.245,11.286,0.965,-1.533,21.956,-0.574,14.976,5.153,18.574,21.033,19.817,14.425,21.755,13.71,1.939,16.115,9.148,22.031,10.762,4.223,21.605,12.671,24.804,16.119,11.021,8.523,6.763,15.662,14.51,15.919,9.639,14.777,10.818,5.417,18.161,7.498,16.738,4.137,16.294,15.826,8.315,17.838,18.307,2.791,3.929,8.132,27.089,20.646,5.143,18.784,3.751,3.611,13.107,17.756,19.496,1.181,5.554,10.142,18.325,19.572,16.992,0.978,6.248,13.392,10.32,26.821,15.631,10.705,3.308],[12.206,16.446,16.334,3.162,11.568,9.092,0.617,7.179,11.357,-0.492,6.263,26.978,25.792,16.574,5.834,5.482,9.326,18.898,13.217,0.011,5.145,6.552,3.573,13.668,11.399,0.876,21.911,23.689,18.079,10.676,4.741,22.316,-2.002,20.081,15.972,2.555,11.906,13.128,20.614,15.716,5.204,23.141,8.283,5.166,10.313,7.003,17.612,16.081,16.326,9.832,16.8,1.607,19.776,17.06,27.796,2.216,11.82,3.299,19.108,5.278,9.991,20.066,4.013,14.536,17.441,0.626,11.43,3.071,10.242,15.111,24.521,6.35,11.69,1.45,-0.863,5.052,16.798,6.308,6.2,11.088,8.352,4.816,14.671,10.332,16.796,11.428,7.869,28.081,2.169,-2.005,27.05,25.919,16.035,4.784,12.257,14.139,4.463,10.849,1.888,10.1,5.37,20.334,15.021,7.774,-0.025,7.656,18.946,5.869,0.966,12.852,10.669,12.452,-0.325,18.143,22.402,5.106,3.253,5.312,24.932,3.395,21.368,19.329,1.329,22.02,11.213,1.453,-1.269,21.797,-0.499,14.672,5.048,18.445,20.715,19.778,14.381,22.037,13.82,1.682,16.172,9.176,22.203,11.401,3.927,21.415,12.351,24.894,15.736,11.056,8.435,6.933,16.174,14.208,15.518,9.291,14.53,10.708,5.068,17.993,7.646,16.833,4.275,16.059,15.608,7.985,18.405,18.315,2.98,4.109,8.191,26.999,20.479,5.249,18.302,3.333,3.627,13.205,18.032,19.986,1.366,5.103,10.464,18.574,19.075,16.909,0.828,6.209,13.559,10.638,27.032,15.126,10.716,3.437],[12.499,16.617,16.367,3.042,11.627,9.257,0.467,7.367,11.217,-0.606,6.263,27.155,25.49,16.53,5.945,5.576,9.33,18.947,13.306,0.019,5.006,6.43,3.381,13.635,11.412,0.84,22.039,23.53,18.257,10.616,4.664,22.087,-1.972,19.959,15.786,2.683,11.925,13.029,20.52,15.691,5.487,23.05,8.308,5.017,10.275,7.038,17.79,15.974,16.11,9.769,16.85,1.654,19.906,17.255,27.922,2.383,11.885,3.452,19.138,4.996,9.896,19.958,3.845,14.314,17.205,1.001,11.263,3.619,9.918,14.88,24.213,7.179,11.566,1.194,-0.974,5.318,16.822,6.599,5.742,11.348,8.307,5.656,14.629,10.063,16.769,11.734,8.047,28.676,2.016,-2.152,26.068,26.27,16.695,4.543,12.077,14.504,4.11,10.681,2.165,9.975,5.131,20.66,14.976,7.826,-0.035,7.986,19.052,5.783,0.372,13.171,10.071,12.757,-0.229,18.017,22.14,5.238,3.673,5.21,24.655,4.037,21.098,19.63,1.543,22.292,11.548,1.551,-1.929,22.009,-0.738,14.537,4.748,18.227,20.431,19.73,13.953,22.325,13.666,1.884,16.454,8.916,22.379,11.249,3.767,21.562,12.255,24.761,15.823,11.15,8.395,7.29,16.42,14.383,15.727,9.163,14.548,11.076,4.542,18.235,7.846,16.909,4.427,16.163,15.904,8.046,18.316,18.649,2.656,4.485,7.989,27.521,20.42,5.164,18.586,3.227,3.48,12.79,18.15,20.204,2.415,5.287,9.868,18.67,18.938,17.053,1.242,6.129,13.798,10.668,26.81,15.216,10.989,3.383],[12.54,16.886,16.403,2.912,11.669,9.343,0.411,7.387,11.286,-0.62,6.293,27.401,25.315,16.795,6.075,5.658,9.411,18.939,13.435,-0.024,4.902,6.302,3.359,13.591,11.441,0.761,22.118,23.358,18.352,10.562,4.556,21.858,-2.112,19.793,15.572,2.784,11.946,12.859,20.749,15.66,5.581,22.903,8.368,4.843,10.408,7.091,17.919,15.852,15.912,9.756,16.979,1.644,19.856,17.344,28.121,2.451,11.847,3.648,19.309,4.673,9.824,20.024,3.652,14.116,17.804,0.887,11.161,3.563,9.742,15.135,23.968,7.586,12.154,1.053,-1.237,5.057,16.76,7.194,6.017,11.363,8.382,6.553,14.459,10.622,16.876,11.591,8.018,28.411,2.038,-1.988,25.468,26.107,16.57,4.793,12.169,14.216,4.343,10.513,1.95,9.711,4.838,20.645,15.063,7.662,-0.596,8.003,18.915,5.276,0.492,12.551,9.975,12.641,-0.224,18.051,22.138,5.088,3.577,4.933,24.47,4.664,21.057,19.817,1.249,22.929,11.818,1.334,-1.679,22.243,-0.702,15.035,5.064,18.183,20.226,19.384,13.903,21.634,13.838,2.083,15.941,8.749,22.187,10.815,4.029,21.43,12.318,24.718,15.577,11.078,8.528,7.56,16.4,14.947,15.65,9.664,14.432,10.851,4.285,18.782,7.668,16.985,4.72,16.488,15.904,8.193,18.085,18.605,2.72,4.4,8.104,27.823,20.653,5.189,18.318,3.695,3.648,12.702,18.071,20.081,2.96,5.069,9.699,18.608,19.362,17.341,0.929,5.871,13.751,10.516,27.213,15.063,11.262,3.249],[12.568,17.038,16.534,2.833,11.564,9.315,0.329,7.396,11.408,-0.634,6.391,27.505,25.154,17.059,6.328,5.607,9.532,18.771,13.623,-0.202,4.925,6.203,3.46,13.581,11.517,0.713,22.189,23.149,18.36,10.457,4.477,21.836,-2.248,19.658,15.429,2.809,11.937,12.729,20.951,15.719,5.563,22.803,8.475,4.816,10.472,7.146,17.715,15.787,15.833,9.745,16.986,1.548,19.697,17.34,28.424,2.57,11.883,3.815,19.575,4.52,9.803,20.124,3.54,14.018,18.407,0.89,11.513,3.066,10.059,15.837,24.106,7.478,12.318,1.041,-1.193,4.825,17.278,6.323,6.605,11.422,8.671,6.453,14.858,11.664,16.772,11.267,7.825,28.232,1.797,-2.008,26.164,26.1,16.378,4.898,12.378,13.74,4.938,10.823,1.658,9.618,4.873,20.399,14.882,7.78,-0.364,7.532,19.059,4.897,0.587,11.993,10.398,11.889,-0.701,18.506,21.986,5.037,3.445,4.996,24.442,4.501,21.576,19.77,1.081,22.723,11.882,1.287,-1.404,21.847,-1.015,15.08,4.496,18.382,20.114,19.308,13.732,22.147,13.753,2.056,16.085,8.277,21.736,11.302,3.738,21.991,11.998,24.623,15.126,11.514,8.78,7.55,15.865,14.414,15.13,10.237,14.075,11.252,4.429,19.069,7.603,16.919,4.751,16.4,16.018,8.02,18.282,18.074,2.747,4.478,7.973,27.79,20.658,4.913,18.451,3.161,3.314,12.42,18.008,20.069,2.9,4.999,10.133,18.755,19.377,17.757,0.734,5.888,13.753,10.627,27.508,15.014,11.251,3.421],[12.668,17.183,16.675,2.675,11.493,9.321,0.176,7.357,11.578,-0.414,6.521,27.422,25.137,17.326,6.545,5.492,9.871,18.618,13.698,-0.538,5.015,6.197,3.574,13.58,11.443,0.733,22.317,23.071,18.348,10.283,4.31,21.786,-2.403,19.691,15.425,2.722,12.116,12.677,21.101,15.625,5.534,22.84,8.601,4.846,10.475,7.205,17.414,15.685,15.68,9.807,16.972,1.43,19.56,17.337,28.651,2.567,11.977,3.933,19.708,4.473,9.905,20.007,3.461,13.919,17.919,1.086,11.786,2.778,10.042,16.344,24.164,7.054,12.224,0.968,-1.361,4.756,17.229,6.181,6.632,11.499,8.646,6.053,15.219,11.071,16.836,11.175,7.885,28.477,1.626,-2.096,26.74,26.178,16.232,4.948,12.509,13.884,5.098,10.652,2.063,9.759,5.227,20.161,14.85,8.075,-0.304,7.385,18.949,4.602,0.068,11.841,10.646,11.75,-0.267,18.273,21.989,5.403,3.599,5.295,24.245,3.589,21.334,20.039,1.315,22.636,11.53,1.754,-1.5,21.691,-1.084,14.65,4.415,18.167,20.389,19.14,13.828,23.077,13.869,1.809,15.713,7.895,21.689,11.243,3.637,21.463,11.999,24.527,15.288,11.169,8.581,7.243,16.31,14.488,15.164,10.306,14.191,11.187,4.469,18.314,7.935,16.397,4.441,16.191,16.26,7.964,18.622,18.11,2.465,4.689,8.17,28.185,20.783,4.973,18.403,3.097,3.407,12.501,18.75,20.76,2.748,5.186,9.938,18.791,18.755,17.422,0.775,5.669,13.777,10.468,27.523,14.995,11.079,3.84],[12.693,17.235,16.711,2.51,11.46,9.489,-0.057,7.305,11.649,-0.038,6.513,27.224,25.267,17.519,6.568,5.322,10.145,18.351,13.666,-0.649,5.065,6.321,3.782,13.671,11.342,0.786,22.432,23.051,18.497,10.178,4.223,21.798,-2.36,19.69,15.388,2.608,12.274,12.713,21.168,15.652,5.524,22.963,8.769,4.868,10.332,7.24,17.049,15.459,15.673,9.785,16.82,1.479,19.393,17.364,28.779,2.492,12.043,4.124,19.799,4.445,10.162,19.789,3.51,13.845,17.366,1.418,11.624,2.391,10.136,16.445,24.377,6.653,12.605,0.812,-1.645,4.982,17.557,6.982,6.804,11.865,8.297,5.798,14.865,11.117,16.972,11.004,8.257,28.038,1.559,-1.732,26.453,26.285,16.399,5.122,12.337,14.273,4.87,11.121,2.119,9.526,4.914,19.999,15.02,8.328,-0.656,7.861,18.253,4.51,0.261,12.179,10.347,12.043,-0.975,17.852,21.962,5.184,3.758,4.851,24.128,3.538,21.292,20.231,0.959,22.946,11.216,1.567,-2.151,21.598,-1.485,14.613,4.728,18.125,20.466,19.596,13.877,22.487,14.174,1.589,15.566,7.797,22.084,10.804,4.067,21.43,12.3,24.692,14.965,11.306,8.575,7.022,16.388,14.502,15.739,10.201,14.327,11.162,4.461,18.019,7.795,16.299,4.16,16.17,16.13,7.961,18.535,18.378,2.169,4.652,8.584,28.242,20.464,4.833,18.112,3.265,3.542,12.598,18.72,20.687,2.774,4.813,10.256,18.971,18.433,16.937,0.479,5.616,13.766,10.117,27.409,14.919,11.492,4.004],[12.748,17.12,16.458,2.413,11.505,9.71,-0.222,7.231,11.633,0.177,6.512,27.11,25.356,17.599,6.451,5.108,10.294,18.062,13.571,-0.713,4.917,6.216,3.937,13.932,11.338,0.8,22.471,23.116,18.634,10.269,4.266,21.761,-2.381,19.745,15.252,2.466,12.325,12.817,20.988,15.861,5.348,22.973,8.882,5.039,10.137,7.195,16.838,15.289,15.688,9.817,16.536,1.495,19.175,17.374,28.813,2.51,12.121,4.42,20.007,4.375,10.416,19.594,3.535,13.747,18.095,1.736,11.996,2.153,10.188,16.9,24.729,6.926,12.691,0.835,-1.63,5.337,17.506,7.474,6.41,12.001,8.543,5.598,14.61,11.247,17.068,10.995,8.514,27.762,1.219,-1.167,26.469,26.209,16.675,5.259,12.837,14.147,4.537,11.638,2.058,9.479,5.133,19.751,15.224,8.606,-0.365,7.666,18.225,4.829,0.287,12.695,10.357,12.053,-0.579,17.816,21.786,5.219,4.012,4.612,23.807,4.126,21.784,20.481,1.234,23.016,11.514,1.175,-2.029,21.748,-0.972,14.63,4.367,18.32,20.278,19.419,13.506,22.229,14.016,1.597,15.827,7.665,21.974,10.599,3.816,22.049,12.065,24.86,14.634,11.64,8.7,7.274,16.141,14.344,15.476,10.583,14.327,10.986,4.588,18.229,7.814,16.615,4.678,15.594,15.684,8.259,17.923,17.788,2.243,4.801,8.71,28.059,20.278,4.842,17.986,3.088,3.24,12.641,18.341,20.443,2.686,5.072,10.111,18.811,18.658,16.976,0.835,5.77,13.913,10.466,27.384,14.927,11.519,3.877],[12.811,17.016,16.268,2.396,11.583,9.913,-0.237,7.285,11.695,0.467,6.541,26.967,25.503,17.749,6.384,4.941,10.31,17.927,13.725,-0.605,4.833,5.89,3.972,14.315,11.393,0.811,22.552,23.108,18.798,10.457,4.337,21.597,-2.367,19.785,15.049,2.364,12.3,12.832,20.856,15.997,5.183,22.873,9.047,5.213,9.909,7.222,16.675,15.115,15.499,9.956,16.408,1.577,18.993,17.181,28.84,2.457,12.126,4.698,20.137,4.203,10.611,19.5,3.572,13.797,18.643,1.896,11.766,2.156,10.151,17.252,24.616,7.042,12.421,0.702,-1.956,5.428,16.955,6.804,6.212,12.076,9.077,5.578,14.537,10.653,16.531,11.185,8.585,28.027,0.923,-1.09,26.363,25.989,16.788,4.959,12.804,13.763,3.827,11.919,2.029,9.716,4.812,19.618,15.324,9.147,-0.251,7.574,19.012,5.281,-0.088,12.819,10.802,11.73,-0.547,17.566,21.942,5.115,4.415,4.619,23.992,4.927,21.559,20.532,1.825,23.094,11.627,1.513,-1.446,21.811,-1.027,14.605,4.808,18.241,19.94,18.898,13.748,22.462,13.79,1.646,15.304,7.754,21.623,11.055,4.256,21.555,11.797,24.538,14.974,11.182,8.627,7.241,16.49,15.008,14.642,10.723,13.988,10.817,4.565,17.882,7.946,16.24,4.492,15.694,15.717,8.4,17.885,17.551,2.065,5.29,8.705,28.274,20.208,4.814,17.819,3.106,3.208,12.447,18.915,20.74,2.799,5.157,9.57,18.427,18.328,17.113,0.558,5.546,14.016,11.042,27.558,14.686,11.402,3.883],[12.807,16.962,16.363,2.365,11.533,9.962,-0.353,7.339,11.7,0.619,6.57,26.85,25.697,17.903,6.396,4.899,10.347,17.812,14.068,-0.544,4.946,5.675,4.16,14.461,11.443,0.779,22.652,23.028,19.024,10.642,4.356,21.415,-2.324,19.764,14.886,2.455,12.006,12.853,20.828,16.019,5.176,22.711,9.165,5.409,9.808,7.332,16.621,14.798,15.29,9.98,16.531,1.557,18.739,16.909,29.003,2.381,12.104,4.929,20.274,3.984,10.624,19.419,3.645,14.003,17.892,2.294,11.981,2.113,10.002,17.434,24.561,6.718,12.386,0.611,-1.987,5.429,17.063,6.502,6.372,12.116,9.106,6.173,14.586,10.877,16.233,11.491,8.553,28.005,1.153,-0.824,26.262,25.538,16.551,4.863,12.61,14.119,3.661,12.032,2.204,9.661,4.577,19.693,15.598,9.321,0.015,7.305,19.39,4.809,-0.133,12.832,10.902,10.959,-0.904,17.436,21.782,4.671,4.509,4.93,24.29,4.603,21.576,20.312,1.415,23.262,11.295,1.268,-1.441,21.248,-1.255,14.298,4.793,18.201,19.659,19.275,13.711,22.192,13.911,1.415,15.267,8.222,21.629,11.019,4.517,21.217,12.431,24.376,14.882,11.341,8.453,6.723,16.646,14.833,14.185,10.805,13.721,10.727,4.778,17.885,8.237,15.643,3.589,15.872,15.714,8.412,18.29,17.576,2.141,5.3,8.891,28.258,20.251,4.853,17.965,3.172,3.035,12.516,18.932,20.781,3.111,4.891,9.873,18.603,18.047,16.773,1.046,5.361,14.004,11.118,27.575,14.657,11.384,4.236],[12.759,16.754,16.617,2.255,11.414,9.831,-0.44,7.213,11.754,0.701,6.534,26.772,25.837,18.027,6.693,4.863,10.415,17.734,14.331,-0.577,5.078,5.517,4.33,14.544,11.331,0.609,22.715,22.925,19.063,10.772,4.289,21.161,-2.375,19.693,14.871,2.294,11.797,12.944,20.684,16.094,5.065,22.606,9.299,5.611,9.782,7.328,16.632,14.349,15.128,10.075,16.755,1.574,18.518,16.665,29.19,2.349,12.225,5.191,20.294,3.938,10.535,19.445,3.748,14.138,17.414,2.329,11.478,2.299,10.155,17.624,24.49,6.719,12.62,0.735,-2.049,5.834,17.699,6.693,6.41,11.714,8.754,6.455,14.872,11.362,16.842,11.826,8.41,27.733,0.972,-0.515,26.64,25.758,16.609,5.027,13.198,14.582,4.084,12.087,2.521,9.679,5.158,19.523,15.957,9.12,-0.391,7.038,19.908,4.77,-0.052,12.85,10.284,11.069,-0.823,17.745,22.126,4.676,5.001,5.065,24.216,4.695,21.863,20.459,1.08,23.111,11.449,1.234,-1.926,20.542,-0.913,14.651,4.603,17.934,19.671,19.739,13.207,22.132,13.678,1.467,15.408,8.782,21.602,10.841,4.162,21.598,13.069,24.436,14.184,11.253,8.643,6.62,15.829,14.819,14.027,11.044,13.721,10.649,5.323,17.897,8.408,15.663,3.863,15.62,15.909,8.4,18.455,17.301,2.546,5.32,8.658,28.291,20.208,4.353,17.637,2.756,2.82,12.995,18.913,20.695,3.039,5.226,10.0,18.295,18.067,16.687,0.367,5.089,13.788,11.061,27.621,14.961,11.552,4.255],[12.61,16.614,17.055,2.12,11.439,9.738,-0.494,6.93,11.748,0.624,6.429,26.743,25.907,18.25,7.148,4.914,10.43,17.774,14.618,-0.646,5.338,5.481,4.474,14.701,11.325,0.386,22.719,22.99,19.082,10.7,4.261,20.916,-2.468,19.759,14.92,1.921,11.724,12.928,20.485,16.257,4.929,22.521,9.53,5.659,9.841,7.319,16.67,14.032,14.903,10.259,16.883,1.554,18.414,16.424,29.286,2.357,12.385,5.321,20.181,3.841,10.364,19.541,3.878,14.147,17.87,2.28,11.365,2.193,10.173,17.709,24.742,6.961,12.918,0.532,-2.346,6.199,17.007,6.555,6.245,11.696,8.562,6.718,15.33,10.737,17.26,11.77,8.621,27.159,0.743,-0.563,26.947,26.231,16.994,5.441,13.481,14.258,4.254,11.869,2.557,9.585,5.013,19.599,16.325,9.091,-0.109,7.061,19.281,5.125,-0.103,13.129,10.417,11.312,-0.771,17.329,21.816,4.537,4.833,4.049,24.289,4.967,21.669,20.755,1.441,23.035,11.587,1.219,-2.156,20.402,-0.854,14.694,4.991,18.388,19.522,18.83,13.65,21.895,13.383,1.105,15.856,9.012,21.541,10.577,4.537,21.366,12.205,24.261,14.139,11.163,8.809,6.792,15.516,14.982,13.319,11.382,13.689,10.472,5.26,17.944,8.066,15.621,4.39,15.84,16.273,8.379,18.323,17.077,2.531,5.746,8.719,28.534,20.495,4.392,17.762,2.936,3.107,13.05,19.29,20.536,2.519,5.1,10.303,17.752,17.993,17.319,0.554,5.22,14.099,10.461,27.971,15.164,11.631,4.332],[12.487,16.762,17.463,1.935,11.576,9.978,-0.562,6.732,11.636,0.486,6.323,26.737,25.897,18.502,7.42,5.061,10.458,17.78,14.921,-0.61,5.538,5.442,4.538,14.895,11.37,0.38,22.607,23.035,19.105,10.574,4.098,20.826,-2.579,19.833,15.08,1.689,11.722,12.765,20.204,16.479,4.846,22.417,9.685,5.687,9.79,7.372,16.901,13.844,14.737,10.454,16.916,1.578,18.289,16.279,29.37,2.489,12.219,5.437,20.175,3.735,10.271,19.588,3.949,14.043,18.28,2.053,11.864,1.653,9.808,17.719,25.064,6.794,13.184,0.182,-2.215,5.828,16.632,6.26,5.599,11.834,9.057,6.768,15.653,10.433,17.678,11.481,8.724,27.315,0.894,-0.957,27.282,25.289,17.085,5.94,13.392,13.963,4.18,11.651,2.628,9.6,5.032,19.618,16.313,8.692,-0.183,7.293,18.607,5.508,-0.421,13.542,10.523,11.244,-0.941,17.234,21.794,4.55,4.415,4.209,24.356,5.239,21.722,20.828,1.286,23.152,11.32,0.775,-2.276,20.709,-0.921,14.963,4.982,18.619,19.043,18.646,13.853,21.504,13.61,0.678,15.764,9.188,21.491,10.447,4.371,20.933,12.006,24.168,14.398,11.446,8.477,6.791,15.716,14.824,12.844,11.571,13.354,10.827,5.08,18.275,8.043,15.156,4.14,15.89,16.3,8.746,18.25,17.155,2.038,5.837,8.409,28.493,20.633,4.368,18.272,3.391,3.122,12.981,18.762,20.443,1.745,5.371,10.838,17.68,18.084,17.359,0.92,4.99,14.14,10.002,28.004,15.02,12.004,4.377],[12.443,16.963,17.665,1.706,11.787,10.442,-0.542,6.619,11.544,0.355,6.12,26.658,25.942,18.541,7.476,5.227,10.37,17.718,15.184,-0.546,5.614,5.437,4.523,15.043,11.357,0.453,22.48,22.978,19.045,10.397,3.933,20.82,-2.587,19.909,15.348,1.59,12.022,12.577,19.945,16.542,4.89,22.328,9.702,5.761,9.65,7.412,16.963,13.699,14.639,10.803,16.874,1.592,18.2,16.319,29.279,2.442,11.968,5.543,20.163,3.526,10.161,19.671,4.054,14.124,18.194,1.655,11.858,1.419,9.74,18.179,24.953,6.657,13.285,-0.056,-2.112,5.472,17.397,6.049,5.651,11.628,9.986,6.398,15.885,10.899,18.187,11.407,8.724,27.656,0.775,-1.006,26.871,24.901,17.662,6.259,13.366,14.395,4.046,11.26,2.764,9.822,5.255,19.519,15.787,8.614,-0.634,7.063,18.574,5.746,-0.365,13.738,10.189,11.357,-1.019,17.704,22.153,4.468,4.339,4.58,24.418,5.641,21.593,20.935,1.147,22.868,11.323,0.642,-2.212,20.607,-0.99,15.249,4.475,18.394,19.172,19.414,13.519,21.163,13.759,0.986,15.646,8.792,21.39,10.689,4.506,21.155,12.432,24.09,14.179,11.279,8.244,6.576,16.22,15.167,12.797,11.447,13.295,10.281,5.307,17.929,8.575,15.037,3.569,16.121,15.759,9.034,18.594,17.136,1.853,5.398,8.545,28.029,20.319,4.118,17.99,3.306,2.807,13.034,19.052,20.708,1.795,5.58,10.626,17.749,18.208,16.801,0.537,4.709,13.682,10.12,28.185,14.858,11.827,4.526],[12.395,17.127,17.843,1.6,11.989,10.853,-0.524,6.52,11.54,0.195,5.929,26.577,25.974,18.676,7.42,5.293,10.124,17.809,15.271,-0.608,5.749,5.519,4.537,15.183,11.505,0.435,22.274,23.035,19.114,10.142,3.821,20.812,-2.476,20.053,15.514,1.641,12.321,12.563,19.869,16.56,4.834,22.287,9.566,5.904,9.47,7.481,16.806,13.722,14.522,11.033,16.813,1.565,18.176,16.324,28.996,2.211,11.715,5.584,20.181,3.212,10.176,19.655,4.179,14.312,17.897,1.71,11.637,1.471,9.865,18.472,24.951,6.401,13.307,-0.012,-2.355,5.217,18.157,6.058,6.287,11.42,10.532,6.365,15.949,11.772,18.208,11.92,9.151,27.55,0.719,-1.047,26.231,24.837,17.242,6.374,13.494,14.737,4.643,10.596,2.705,9.844,5.001,19.041,15.982,8.432,-0.345,6.987,18.751,5.517,0.278,13.513,9.954,11.186,-0.809,17.471,21.885,4.238,4.601,4.487,24.357,5.334,21.22,20.883,1.358,22.741,11.18,0.682,-2.048,20.275,-0.844,15.366,4.362,18.415,19.565,19.266,13.292,21.151,14.151,1.139,16.358,8.427,21.139,10.448,4.947,21.032,11.785,24.004,13.862,11.747,8.315,6.494,16.438,15.091,12.514,11.434,13.542,10.315,5.49,17.636,8.552,14.969,3.505,16.216,15.243,9.264,18.56,16.997,1.966,5.2,8.34,27.9,20.387,3.917,17.999,3.089,2.745,13.366,19.196,20.887,2.305,5.201,11.168,17.892,18.366,16.746,0.686,4.441,13.36,10.256,27.9,14.842,11.417,4.498],[12.31,17.242,17.907,1.816,12.394,11.091,-0.532,6.4,11.624,0.116,5.857,26.51,25.907,18.866,7.406,5.322,9.753,17.836,15.267,-0.588,5.756,5.51,4.508,15.221,11.581,0.37,22.038,23.062,19.294,9.889,3.655,20.797,-2.338,20.017,15.618,1.856,12.47,12.421,19.986,16.685,4.596,22.366,9.464,6.142,9.375,7.582,16.69,13.766,14.437,11.195,16.921,1.521,18.286,16.293,28.74,2.011,11.581,5.502,20.175,3.064,10.229,19.674,4.262,14.479,18.11,1.776,11.796,1.23,9.924,18.612,25.121,6.094,13.079,0.175,-2.439,5.45,17.916,6.369,5.924,11.66,10.493,6.737,16.341,11.628,17.921,12.069,9.55,27.336,0.478,-0.98,26.422,25.013,17.073,5.923,13.498,14.737,4.401,10.752,2.597,9.895,5.469,19.355,16.187,8.156,-0.638,7.322,18.618,5.31,0.38,13.532,9.403,11.556,-0.876,17.429,21.827,4.438,4.754,3.748,24.147,5.252,21.106,21.091,1.451,22.685,10.776,0.666,-2.179,20.784,-0.663,15.737,4.703,18.583,19.18,19.113,13.646,20.934,14.332,0.991,15.804,8.307,21.318,9.965,4.767,20.64,11.922,23.872,13.728,12.419,8.239,6.348,16.25,14.948,12.958,11.027,13.35,10.531,5.704,16.968,8.113,14.9,4.011,15.783,14.822,9.407,18.218,16.92,2.467,5.46,8.366,27.983,20.603,3.725,18.163,3.104,2.657,13.243,19.657,20.391,2.009,5.285,11.594,17.744,18.2,17.065,0.601,4.363,13.136,10.081,27.169,15.169,10.894,4.544],[12.275,17.277,17.928,1.966,12.896,11.146,-0.616,6.308,11.678,0.164,5.888,26.366,25.873,18.956,7.417,5.268,9.462,17.807,15.153,-0.579,5.758,5.449,4.426,15.137,11.602,0.407,21.831,22.99,19.423,9.538,3.47,20.714,-2.238,19.938,15.581,2.05,12.498,12.361,20.076,16.706,4.349,22.444,9.317,6.359,9.264,7.583,16.537,13.804,14.361,11.328,17.16,1.519,18.409,16.198,28.54,1.943,11.446,5.307,20.139,3.064,10.254,19.848,4.463,14.514,18.551,1.77,12.143,1.677,9.815,19.083,25.006,5.846,12.295,0.075,-2.323,6.025,17.562,6.108,5.199,11.987,10.035,6.993,16.281,11.772,18.119,11.905,9.833,27.338,0.544,-0.968,26.978,25.282,17.52,5.787,14.39,14.695,3.995,10.892,2.527,9.767,5.271,19.704,16.441,7.902,-0.663,7.301,19.359,5.421,-0.406,13.671,9.285,11.93,-0.977,17.889,22.283,4.497,4.279,3.292,24.152,5.461,21.291,21.232,1.37,22.199,10.779,0.806,-2.186,20.613,-0.481,15.201,4.824,18.741,19.326,19.129,13.446,20.945,14.257,1.37,15.982,8.378,21.698,9.889,4.984,21.103,12.203,24.317,13.752,12.114,8.115,6.28,16.659,15.211,13.318,11.039,13.171,10.404,5.784,16.981,8.509,15.241,3.688,15.684,14.696,9.44,18.585,16.972,2.671,5.664,8.669,28.029,20.356,3.68,18.349,3.391,2.068,13.13,19.508,20.246,1.714,5.739,11.377,17.572,18.27,17.523,0.265,4.354,13.338,10.211,27.27,15.343,10.778,4.706],[12.359,17.279,17.921,1.893,13.241,11.076,-0.728,6.235,11.678,0.372,5.962,26.156,25.951,19.057,7.452,5.12,9.327,17.948,14.921,-0.613,5.821,5.344,4.308,15.128,11.521,0.395,21.688,23.031,19.585,9.266,3.406,20.647,-2.348,19.924,15.498,2.118,12.398,12.429,20.143,16.699,4.112,22.52,9.263,6.55,9.074,7.513,16.455,13.909,14.282,11.263,17.504,1.526,18.49,16.131,28.521,2.031,11.37,5.08,20.064,2.996,10.349,20.037,4.827,14.413,18.331,1.865,11.927,1.725,9.864,19.542,25.03,5.963,12.081,0.227,-2.365,6.165,17.514,5.734,5.916,11.618,10.027,7.371,16.14,12.863,18.462,12.346,9.943,27.34,0.78,-1.095,26.907,25.279,17.519,5.622,15.37,14.346,4.152,10.951,2.59,9.709,4.727,19.412,16.536,7.922,-0.722,7.024,20.063,5.361,-0.352,13.608,9.315,12.13,-0.925,17.62,22.045,4.219,4.152,3.843,24.374,5.417,20.934,21.22,1.321,22.429,10.539,0.868,-1.715,20.666,-0.899,15.055,4.484,18.672,19.241,18.735,13.196,21.224,14.346,1.535,16.388,8.367,21.911,10.239,5.596,21.556,11.984,24.317,13.909,11.768,8.329,5.889,16.722,15.276,13.35,10.865,13.186,9.997,5.936,17.468,8.476,15.533,2.979,15.968,14.558,9.497,19.034,17.118,2.757,5.59,8.459,27.918,20.194,3.693,18.408,3.666,2.629,13.393,18.882,20.8,1.417,5.96,11.853,17.508,18.385,17.829,0.48,4.248,13.167,10.476,27.025,14.806,10.724,4.852],[12.311,17.181,17.989,1.835,13.526,10.997,-0.722,6.237,11.679,0.639,6.17,25.962,26.153,19.145,7.484,4.836,9.345,17.989,14.759,-0.763,5.754,5.411,4.286,15.139,11.357,0.345,21.734,23.176,19.765,9.199,3.502,20.712,-2.353,19.844,15.563,1.907,12.335,12.52,20.181,16.708,3.957,22.734,9.27,6.655,8.823,7.451,16.499,13.972,14.308,11.397,17.682,1.619,18.525,16.085,28.609,2.142,11.439,4.899,19.906,2.826,10.292,20.119,5.042,14.267,17.945,1.846,11.6,1.187,9.967,19.225,25.505,6.072,12.764,0.366,-2.513,6.133,18.036,6.191,5.96,11.565,9.812,7.332,16.101,12.645,18.556,12.741,9.999,27.25,0.113,-0.881,26.463,24.693,17.487,5.776,15.693,14.272,4.386,10.803,2.521,9.491,5.136,19.636,15.857,8.068,-0.485,6.82,20.403,5.314,0.539,13.585,9.012,11.637,-0.543,17.541,21.844,4.207,4.658,3.937,24.197,5.52,20.62,20.838,0.863,22.595,10.512,0.453,-1.951,20.415,-0.746,15.07,4.296,18.266,18.988,19.456,13.645,21.137,14.184,1.286,16.014,8.355,21.62,10.083,5.67,21.149,11.908,24.251,13.863,11.692,8.82,5.557,16.229,15.163,14.01,10.799,13.247,9.753,6.42,17.9,7.921,15.422,2.676,16.035,14.47,9.466,19.14,17.097,2.503,5.339,8.514,27.613,20.682,3.257,18.388,3.922,2.812,13.198,19.188,20.063,1.92,6.145,11.694,17.455,18.633,17.795,0.4,4.341,13.123,10.508,27.196,14.638,10.671,4.384],[12.308,17.04,18.118,1.847,13.669,10.874,-0.739,6.358,11.672,0.741,6.424,25.827,26.458,19.143,7.551,4.561,9.413,18.056,14.564,-0.874,5.661,5.487,4.421,15.111,11.11,0.341,21.932,23.273,19.792,9.284,3.734,20.643,-2.071,19.843,15.739,1.517,12.272,12.631,20.053,16.532,3.754,22.828,9.295,6.674,8.59,7.365,16.623,14.009,14.269,11.607,17.46,1.771,18.628,16.026,28.735,2.279,11.669,4.757,19.78,2.573,10.191,20.159,5.221,14.118,17.947,1.978,11.543,1.119,9.988,18.831,25.566,6.133,12.853,0.087,-2.539,6.03,18.054,6.349,5.597,11.545,9.586,6.97,16.548,12.26,18.343,12.976,9.896,26.926,0.238,-0.316,26.556,24.228,17.44,5.928,15.799,14.375,3.847,10.963,2.518,9.286,5.716,19.783,15.424,8.253,-0.152,6.931,19.949,4.555,0.363,13.947,8.807,11.303,-0.953,17.895,21.964,4.289,4.965,3.386,23.842,5.325,20.955,21.185,0.745,22.151,10.588,0.203,-2.099,20.497,-0.289,15.014,4.628,18.323,19.12,19.333,13.577,21.166,14.14,1.067,16.191,8.079,21.843,9.759,5.294,21.243,12.198,24.437,13.918,12.051,8.716,5.619,16.259,15.083,14.264,10.883,13.077,9.751,6.334,17.776,8.1,15.609,3.114,16.229,14.507,9.664,18.93,16.921,2.361,4.623,8.545,27.773,20.958,3.2,18.493,3.778,2.187,12.828,19.406,19.81,2.979,6.179,11.706,17.323,18.644,17.805,0.572,3.878,13.313,10.113,27.593,14.901,10.567,3.538],[12.399,17.01,18.182,1.742,13.643,10.747,-0.848,6.458,11.563,0.591,6.389,25.796,26.75,18.995,7.574,4.228,9.514,18.278,14.427,-0.906,5.606,5.358,4.563,15.141,11.076,0.392,21.973,23.194,19.799,9.448,3.95,20.639,-1.834,19.871,15.988,1.505,12.191,12.679,20.016,16.255,3.581,22.819,9.279,6.597,8.559,7.253,16.719,14.02,14.224,11.785,17.171,2.042,18.737,15.999,28.962,2.552,11.931,4.532,19.844,2.286,10.117,20.109,5.343,14.035,17.913,2.083,11.643,1.78,9.788,18.537,25.629,6.137,12.307,0.023,-2.518,6.225,17.486,6.135,5.726,11.416,9.599,7.151,16.541,12.885,18.349,13.118,9.631,26.553,0.487,-0.868,26.879,24.121,17.658,5.884,15.443,14.39,3.504,11.235,2.772,9.178,5.3,19.682,15.072,8.438,-0.706,6.978,19.841,4.978,-0.543,13.814,8.961,11.538,-0.9,17.799,21.745,4.355,4.968,3.727,23.567,5.111,20.876,21.343,0.653,22.426,10.681,0.588,-1.493,20.783,-0.166,15.543,5.279,18.322,19.272,18.936,13.355,20.797,14.057,1.06,16.508,8.128,22.225,9.021,5.182,21.498,12.21,24.571,13.667,12.141,8.168,5.493,16.162,14.942,13.755,10.823,12.974,9.779,6.158,17.252,8.349,15.617,2.974,16.01,14.51,10.019,18.57,17.098,2.521,4.054,8.506,28.308,20.433,2.81,18.668,3.874,2.366,13.157,19.376,20.105,3.542,6.314,12.471,17.362,18.526,17.693,0.627,3.607,13.465,9.915,27.685,14.656,11.087,3.371],[12.453,16.962,18.237,1.642,13.59,10.674,-0.847,6.506,11.384,0.119,6.202,25.772,26.757,18.741,7.65,4.105,9.629,18.459,14.307,-0.9,5.484,5.197,4.687,15.04,11.211,0.343,21.875,22.977,19.759,9.541,4.132,20.689,-1.652,19.701,16.307,1.774,12.034,12.576,20.055,16.085,3.576,22.992,9.279,6.585,8.518,7.187,16.626,13.939,14.233,12.057,17.055,2.311,18.655,16.007,29.248,2.886,12.198,4.387,19.936,2.11,10.108,19.973,5.413,14.026,17.954,1.507,11.643,2.084,9.665,18.059,25.705,6.11,12.122,0.022,-2.675,6.549,17.245,6.241,5.795,11.716,9.868,7.631,16.428,12.434,18.811,13.104,9.964,26.704,0.022,-1.161,27.361,24.194,17.789,5.921,15.064,14.407,3.334,11.373,2.992,9.347,4.655,20.034,14.816,8.869,-0.407,6.608,19.674,5.563,-0.642,13.579,9.125,12.142,-0.848,18.127,21.582,4.056,4.691,4.188,23.635,5.546,20.867,21.329,1.203,22.734,10.654,0.396,-0.837,20.52,-0.329,15.831,5.472,18.101,19.178,19.571,13.564,20.646,13.845,1.282,16.477,8.082,22.155,9.125,5.153,21.138,11.964,24.493,13.266,11.741,8.044,5.282,15.656,14.61,13.407,10.848,13.196,9.951,6.158,17.349,8.12,15.732,2.203,15.808,14.604,10.146,18.382,16.896,3.078,3.746,8.278,28.162,20.318,2.58,18.618,3.802,3.177,13.277,19.312,20.371,3.089,6.43,12.756,17.544,18.549,17.315,0.921,3.743,13.852,10.025,27.965,14.623,11.87,3.64],[12.575,16.929,18.299,1.716,13.501,10.732,-0.848,6.472,11.24,-0.217,6.159,25.762,26.596,18.451,7.822,4.112,9.673,18.71,14.187,-0.78,5.421,5.054,4.82,14.839,11.319,0.384,21.706,22.875,19.645,9.399,4.236,20.498,-1.502,19.595,16.405,1.849,11.808,12.334,20.109,15.913,3.543,23.258,9.274,6.695,8.445,7.149,16.496,13.932,14.062,12.233,17.03,2.642,18.524,16.003,29.32,3.133,12.493,4.339,19.961,2.144,10.247,19.977,5.409,13.98,18.099,1.203,11.208,1.8,9.538,17.841,25.462,6.713,12.582,-0.033,-2.509,6.259,17.391,6.522,5.536,11.578,9.419,7.572,16.606,11.932,18.93,13.002,10.675,26.878,0.07,-1.276,27.218,24.442,17.511,6.026,15.236,13.893,3.301,11.477,3.354,9.803,5.206,20.169,14.744,8.808,-1.32,6.486,19.843,5.862,-0.366,13.677,9.086,12.67,-0.435,18.356,21.618,3.819,4.773,4.558,23.401,5.169,21.079,21.418,1.947,22.152,10.6,0.251,-0.918,20.723,-0.114,15.546,5.127,17.859,19.116,19.229,13.851,21.286,13.685,1.188,16.892,8.399,22.067,9.822,5.435,20.939,12.006,24.762,13.322,11.375,8.47,5.444,15.502,14.359,13.305,10.607,12.924,9.526,6.263,17.61,7.748,15.693,2.688,16.182,14.795,10.304,18.292,16.926,3.785,3.988,8.475,28.18,20.615,2.708,18.425,3.915,3.333,13.116,19.401,20.206,2.904,6.092,12.723,17.53,18.42,16.471,1.202,3.328,14.302,10.453,28.269,14.605,12.094,3.509],[12.751,17.126,18.314,1.727,13.356,10.863,-0.873,6.493,11.073,-0.336,6.19,25.792,26.488,18.213,7.805,4.12,9.582,18.858,14.142,-0.709,5.444,4.991,4.966,14.65,11.457,0.486,21.493,22.807,19.574,9.196,4.355,20.447,-1.378,19.638,16.292,1.695,11.626,12.192,20.201,15.617,3.704,23.428,9.203,6.896,8.47,7.113,16.501,13.932,13.808,12.25,16.954,2.969,18.585,15.925,29.358,3.221,12.651,4.331,19.888,2.173,10.489,20.174,5.378,13.772,18.172,1.287,10.765,2.052,9.328,17.755,24.997,6.871,12.523,-0.003,-2.696,5.84,17.253,6.23,5.86,11.764,9.61,7.623,16.545,12.442,18.631,12.931,11.092,26.953,0.129,-1.394,26.588,24.785,16.996,6.141,15.481,13.4,3.509,11.323,3.302,10.214,5.731,20.311,14.464,8.522,-0.948,6.646,19.713,5.803,0.249,13.835,8.82,12.816,-0.469,18.511,21.624,3.867,5.114,4.746,23.126,5.086,20.607,21.278,2.314,21.929,10.613,0.599,-1.215,20.658,0.218,15.395,4.892,18.075,18.777,18.994,13.398,21.146,13.453,1.214,16.718,8.82,22.009,9.553,5.839,21.293,11.95,25.117,13.48,11.4,8.268,5.554,15.647,14.296,13.785,10.817,12.535,9.21,6.597,17.633,7.774,15.721,3.272,15.858,15.232,10.5,17.946,16.927,4.075,4.234,8.72,28.332,20.395,2.56,18.537,3.723,2.78,13.03,19.417,20.004,3.639,6.004,12.794,17.61,18.199,16.606,1.724,3.489,14.213,10.589,28.275,14.682,11.64,3.406],[12.904,17.271,18.225,1.663,13.27,11.032,-0.81,6.432,10.835,-0.252,6.222,25.851,26.454,17.932,7.75,4.07,9.451,18.881,14.14,-0.609,5.487,5.168,5.093,14.453,11.619,0.658,21.338,22.636,19.44,8.985,4.557,20.488,-1.237,19.682,16.093,1.583,11.527,12.12,20.154,15.298,4.026,23.379,9.187,7.229,8.489,6.969,16.56,13.96,13.686,12.269,16.792,3.343,18.536,15.983,29.478,3.295,12.617,4.413,19.788,2.18,10.713,20.263,5.376,13.505,18.017,1.236,10.777,1.928,9.155,17.691,24.818,6.297,12.164,-0.034,-2.449,5.98,17.733,6.312,6.046,12.372,10.063,7.455,16.591,12.7,18.453,13.032,11.434,26.59,0.126,-1.547,26.252,24.828,16.224,6.144,15.557,13.205,3.547,10.855,3.364,9.912,5.327,20.361,14.187,8.036,-0.188,6.664,19.73,5.438,0.429,13.625,8.657,12.86,-0.528,18.46,21.408,4.35,5.325,4.129,23.658,5.397,20.552,20.779,2.271,22.12,10.502,0.289,-1.12,20.776,0.46,15.466,5.596,18.02,18.784,19.754,13.036,20.728,13.26,1.136,16.262,8.905,22.757,9.019,6.07,21.49,12.015,25.25,12.904,11.641,7.85,5.773,15.501,14.35,14.095,10.984,12.412,9.85,6.544,17.893,7.899,15.747,2.621,15.608,15.255,10.314,18.017,16.673,4.05,4.113,8.851,28.055,20.46,2.934,18.947,3.791,2.393,12.578,19.26,20.224,3.54,6.234,12.665,17.64,18.899,16.936,1.767,3.72,14.309,10.903,28.521,14.615,11.487,3.53],[12.964,17.387,18.138,1.513,13.329,11.23,-0.582,6.164,10.678,-0.167,6.296,25.789,26.568,17.542,7.728,3.895,9.331,18.935,14.143,-0.332,5.518,5.346,5.141,14.253,11.678,0.836,21.358,22.552,19.193,8.869,4.669,20.602,-1.018,19.637,15.945,1.55,11.551,12.095,19.891,15.058,4.089,23.375,9.225,7.46,8.593,6.791,16.643,14.021,13.667,12.276,16.674,3.584,18.424,16.063,29.656,3.323,12.565,4.465,19.786,2.357,10.888,20.347,5.471,13.286,18.445,1.125,10.885,2.102,8.815,17.912,25.14,6.159,12.731,-0.241,-2.329,6.544,17.305,6.362,5.767,12.267,10.363,7.045,16.323,11.955,18.252,12.994,11.563,26.83,0.225,-1.421,26.177,24.86,15.959,6.143,15.38,13.444,3.454,10.929,3.243,9.895,4.972,19.974,14.26,7.876,-0.632,6.738,19.771,5.02,0.441,13.253,8.578,12.558,-0.516,18.166,21.314,4.132,5.234,4.284,23.74,5.779,20.707,20.371,2.104,22.029,10.379,-0.085,-0.612,21.073,0.566,15.301,6.371,17.837,19.049,19.286,13.416,20.915,13.215,0.841,16.279,8.433,22.934,9.197,6.221,21.237,12.133,24.611,13.068,11.928,7.295,5.908,14.969,14.361,13.622,10.972,12.26,9.635,6.598,17.676,7.712,15.864,2.883,16.052,14.916,10.354,17.731,16.604,4.623,4.447,9.152,28.225,20.471,3.208,18.916,3.888,2.603,12.031,19.442,20.026,2.929,6.443,12.663,17.61,18.588,16.613,2.029,3.661,14.2,11.27,28.977,14.332,11.475,3.863],[12.901,17.387,17.968,1.387,13.325,11.457,-0.441,5.817,10.558,-0.232,6.495,25.832,26.731,17.152,7.676,3.653,9.282,18.822,14.105,-0.076,5.547,5.243,5.078,14.122,11.774,0.982,21.46,22.575,18.901,8.962,4.71,20.77,-0.744,19.294,15.898,1.513,11.616,12.189,19.804,14.921,3.993,23.381,9.218,7.523,8.737,6.615,16.632,14.043,13.742,12.318,16.578,3.794,18.225,15.97,29.881,3.266,12.557,4.482,19.927,2.647,11.078,20.346,5.626,13.15,18.43,1.122,10.521,2.203,8.761,17.742,25.577,6.223,13.31,-0.079,-2.286,6.23,17.267,5.898,5.962,12.31,10.287,7.04,16.121,11.773,18.414,12.774,11.494,26.814,0.655,-1.052,26.903,25.557,15.776,6.415,15.323,13.459,3.326,10.774,3.237,9.863,5.15,20.174,14.279,7.854,-0.338,6.532,19.6,5.074,0.024,12.858,8.476,11.576,-0.03,18.896,21.515,3.81,5.29,4.625,23.114,5.848,20.46,20.143,1.918,22.149,10.423,0.587,-0.465,21.046,0.828,15.232,6.301,17.715,19.191,18.789,13.641,21.101,13.488,0.61,16.436,7.848,22.386,10.071,6.146,20.712,11.958,25.215,13.268,11.701,7.05,5.883,14.895,13.713,13.217,10.819,12.419,9.197,6.991,17.354,7.779,15.965,3.308,15.649,14.828,10.48,17.557,16.912,4.66,4.405,9.281,28.718,20.622,3.298,18.74,3.894,3.125,12.243,18.821,20.192,3.176,6.343,12.988,17.439,18.071,16.475,2.658,3.79,14.224,10.999,29.131,14.005,11.691,4.29],[12.819,17.379,17.764,1.291,13.209,11.657,-0.429,5.595,10.412,-0.254,6.71,26.137,26.927,16.717,7.661,3.482,9.188,18.86,14.046,0.134,5.491,4.997,5.065,13.943,11.748,1.006,21.621,22.587,18.631,9.035,4.707,20.977,-0.613,18.791,16.017,1.628,11.646,12.269,19.896,14.768,4.036,23.478,9.178,7.465,8.935,6.53,16.519,13.91,13.735,12.398,16.565,4.052,18.127,15.822,30.133,3.321,12.674,4.541,20.086,2.823,11.141,20.216,5.762,13.059,18.24,0.853,10.213,2.163,8.884,17.378,25.633,5.875,13.238,0.012,-2.168,6.342,17.393,5.998,5.851,12.804,10.277,7.244,15.861,12.114,18.104,12.619,11.538,26.352,0.672,-1.408,27.726,25.381,16.025,6.148,15.438,13.206,3.132,10.801,3.299,10.025,5.743,20.327,14.217,7.907,0.12,6.644,19.167,5.016,0.39,12.658,8.742,11.685,-0.042,18.651,20.936,4.121,5.533,4.894,23.3,5.966,20.531,19.881,2.236,22.052,10.445,0.335,-0.358,21.45,0.96,15.384,5.61,17.288,19.275,18.697,13.616,21.081,13.457,0.988,16.071,7.651,22.049,9.91,5.978,20.771,12.151,25.116,13.271,11.514,7.052,5.514,15.162,13.519,13.729,10.461,12.401,10.007,7.084,17.171,7.808,15.541,2.733,15.643,14.78,10.57,17.563,16.368,3.932,3.883,9.483,28.927,20.901,3.382,18.778,4.072,3.265,12.506,19.31,20.405,3.599,6.161,13.289,17.367,18.104,16.536,2.604,4.291,14.351,11.268,29.32,14.248,11.389,4.54],[12.93,17.417,17.643,1.302,13.017,11.768,-0.424,5.59,10.316,-0.269,6.785,26.453,27.094,16.386,7.668,3.338,9.172,18.961,14.054,0.182,5.505,4.936,5.305,13.669,11.816,0.921,21.715,22.485,18.333,8.932,4.783,21.178,-0.7,18.472,16.152,1.715,11.566,12.244,19.985,14.515,4.052,23.469,9.167,7.357,9.051,6.542,16.513,13.605,13.556,12.496,16.588,4.043,18.132,15.761,30.302,3.533,12.679,4.623,20.162,2.851,11.244,20.141,5.844,13.054,18.334,1.056,10.241,2.041,8.608,17.274,25.57,6.007,12.845,-0.406,-2.135,6.99,17.113,6.18,6.013,12.834,10.402,7.832,16.177,12.341,17.36,12.786,11.85,27.162,0.336,-1.422,27.529,25.236,15.988,5.961,15.402,13.009,2.834,10.595,3.277,9.955,5.957,20.444,14.395,7.807,0.099,6.45,18.924,4.994,0.458,13.315,8.634,12.363,0.161,18.645,21.258,3.953,5.608,4.657,23.525,5.634,20.505,19.899,2.551,22.404,10.501,0.518,-0.242,21.664,0.823,15.561,5.392,16.692,19.435,18.387,13.818,21.075,13.402,0.906,16.44,7.516,22.434,9.767,6.117,21.163,12.277,24.978,13.11,11.353,7.453,5.663,14.765,13.892,13.853,10.331,12.133,10.457,6.822,17.462,7.798,15.435,2.586,15.316,14.732,10.577,17.891,16.269,4.132,3.663,9.581,28.988,20.674,3.657,18.522,3.935,3.183,12.423,19.991,20.584,3.539,6.3,13.102,17.432,18.692,16.441,2.448,3.999,14.398,10.976,29.516,13.888,11.503,4.542],[13.076,17.361,17.59,1.29,12.936,11.837,-0.498,5.643,10.165,-0.167,6.961,26.882,27.101,16.24,7.856,3.187,9.125,19.016,14.222,0.193,5.629,5.007,5.545,13.46,12.013,0.751,21.825,22.468,18.072,8.741,4.829,21.313,-0.891,18.414,16.159,1.641,11.431,12.294,20.08,14.022,4.181,23.531,9.235,7.45,8.945,6.769,16.516,13.363,13.395,12.482,16.697,3.925,18.377,15.765,30.34,3.633,12.646,4.616,20.294,2.816,11.283,20.295,5.702,12.915,18.495,1.142,10.395,2.021,8.357,17.287,25.361,6.707,12.685,-0.105,-2.337,6.528,17.047,6.102,6.36,12.663,10.185,8.064,16.21,11.701,17.36,12.885,12.126,27.834,0.264,-1.028,27.178,25.512,15.317,6.238,15.472,13.024,2.977,10.725,3.801,10.168,5.148,20.477,14.414,8.077,-0.177,6.358,18.694,4.817,0.14,13.145,7.92,12.376,0.075,18.74,20.869,3.73,5.714,4.312,23.352,5.424,20.479,19.55,2.544,22.711,10.191,0.637,-0.92,21.799,0.785,15.22,6.105,16.901,19.488,18.156,13.654,20.946,13.266,0.553,16.498,7.623,22.657,10.084,6.341,20.952,12.08,25.394,12.512,11.316,7.356,6.106,14.355,13.442,13.24,10.266,11.875,10.06,6.699,17.518,7.986,15.215,3.232,15.65,14.942,10.643,18.024,16.608,4.713,4.093,9.535,29.093,20.503,3.666,18.71,3.984,3.264,12.46,19.786,20.956,3.403,6.58,12.775,17.304,18.45,16.417,2.443,3.51,14.365,10.766,29.437,14.1,12.165,4.382],[12.987,17.238,17.584,1.277,12.942,11.949,-0.676,5.664,9.919,0.019,7.124,27.356,26.934,16.285,8.039,3.115,9.095,18.933,14.446,0.207,5.612,5.211,5.685,13.415,12.106,0.671,21.856,22.387,17.902,8.484,4.857,21.425,-1.063,18.408,16.001,1.438,11.334,12.375,20.079,13.536,4.52,23.668,9.394,7.662,8.784,7.019,16.542,13.24,13.269,12.362,16.764,3.724,18.572,15.793,30.26,3.57,12.655,4.606,20.52,2.711,11.178,20.554,5.474,12.775,18.577,1.107,10.33,2.066,8.188,17.051,25.577,6.363,13.141,0.306,-2.36,6.403,17.358,6.271,6.417,13.194,10.158,8.197,15.711,11.373,17.533,12.905,12.239,27.466,0.154,-1.161,27.334,25.717,14.938,6.324,15.887,12.914,3.212,10.879,3.842,10.324,4.972,20.423,14.097,8.083,-0.12,6.598,18.705,4.821,-0.388,12.54,8.192,12.631,-0.116,18.736,20.948,4.048,5.853,4.66,22.894,6.01,20.632,19.166,2.327,22.598,9.911,0.413,-1.103,21.873,0.709,15.272,6.369,16.723,19.624,18.487,13.458,21.199,13.182,0.559,16.033,8.48,22.424,9.985,6.452,20.865,12.328,25.417,12.256,11.248,7.251,6.231,13.946,13.0,12.622,10.707,12.234,9.737,6.77,17.558,8.439,14.849,3.391,15.739,14.737,10.463,18.258,17.175,4.93,4.214,9.582,29.041,20.841,3.225,18.986,3.885,3.231,12.15,19.341,20.689,3.731,6.594,12.95,17.33,18.035,16.788,3.037,3.866,14.441,11.279,29.23,14.108,12.578,3.992],[12.884,17.303,17.418,1.287,13.01,12.315,-0.781,5.653,9.7,0.193,7.184,27.561,26.76,16.509,7.943,3.261,9.024,18.718,14.43,0.162,5.513,5.227,5.679,13.515,12.214,0.612,21.809,22.406,17.96,8.542,4.952,21.502,-1.102,18.303,15.797,1.337,11.305,12.459,20.009,13.147,4.773,23.702,9.808,7.591,8.711,7.151,16.603,13.133,13.205,12.227,16.794,3.563,18.559,15.769,30.085,3.512,12.667,4.611,20.598,2.629,11.208,20.597,5.346,12.723,18.419,1.027,9.659,1.651,8.408,17.054,25.831,5.951,13.225,-0.113,-2.501,7.03,16.966,6.258,6.594,12.953,10.692,8.339,15.738,11.553,17.851,12.556,12.544,28.017,0.175,-0.965,27.295,26.225,14.793,6.32,16.053,13.084,3.205,10.693,3.69,10.278,5.567,20.261,14.474,7.945,0.162,6.192,19.19,4.636,-0.421,12.678,8.67,12.526,0.485,18.98,20.725,4.401,5.733,5.183,23.371,6.567,20.74,18.886,1.994,22.486,9.749,0.391,-0.512,21.764,0.423,15.246,5.894,16.604,19.858,18.194,13.65,21.368,13.099,0.404,16.112,9.196,22.802,9.478,6.41,20.869,12.643,25.209,12.12,11.349,7.654,6.145,13.899,12.762,12.303,11.349,12.473,10.047,7.026,17.365,8.049,14.848,3.224,15.467,14.638,10.395,18.089,17.154,4.752,3.758,9.309,29.231,21.247,3.484,19.084,3.578,3.267,11.874,19.401,21.481,3.908,6.347,13.156,17.402,18.053,16.873,3.267,4.082,14.411,11.324,28.963,13.649,12.678,3.734],[12.799,17.34,17.232,1.142,13.16,12.712,-0.798,5.698,9.584,0.338,7.212,27.512,26.699,16.727,7.77,3.37,8.777,18.53,14.31,0.202,5.572,5.156,5.533,13.722,12.313,0.62,21.799,22.395,18.294,8.81,5.086,21.632,-1.121,18.128,15.675,1.452,11.327,12.592,20.071,12.985,4.809,23.831,10.149,7.207,8.72,7.176,16.602,13.132,13.193,12.209,16.73,3.496,18.215,15.724,30.009,3.539,12.743,4.518,20.658,2.8,11.145,20.512,5.41,12.878,18.434,0.963,9.533,1.534,8.067,17.152,25.627,5.801,13.065,-0.302,-2.522,6.794,17.515,6.089,6.823,11.935,10.89,8.09,16.055,11.83,17.642,12.463,13.129,28.469,0.466,-0.685,27.2,26.426,14.953,6.571,15.829,13.41,3.351,10.6,3.893,10.472,5.648,20.209,14.376,7.768,0.338,6.23,19.507,4.882,-0.103,13.103,8.45,12.356,0.327,18.568,20.719,3.779,5.483,5.053,23.619,6.703,20.882,18.741,1.272,22.477,9.796,0.72,-0.628,21.622,0.3,14.867,5.71,16.41,19.676,18.078,13.739,20.836,12.891,0.248,16.204,9.307,22.672,9.873,6.02,21.035,12.287,25.572,12.124,11.741,8.531,6.328,13.712,12.721,12.285,11.06,12.061,9.74,6.825,16.9,7.972,14.881,3.408,15.869,14.618,10.374,18.185,16.588,4.466,3.607,9.367,29.166,20.855,3.712,19.063,3.656,3.094,11.926,19.816,21.359,3.663,6.157,13.085,17.236,18.163,16.741,2.708,3.629,14.448,11.358,28.891,13.902,12.636,3.894],[12.614,17.475,17.2,0.954,13.3,12.946,-0.85,5.806,9.546,0.424,7.18,27.462,26.651,16.951,7.677,3.468,8.375,18.359,14.235,0.293,5.736,5.123,5.443,13.875,12.237,0.534,21.893,22.241,18.578,9.013,5.092,21.584,-1.275,17.956,15.691,1.608,11.31,12.734,20.08,13.025,4.79,24.003,10.314,6.77,8.779,7.259,16.756,13.168,13.018,12.261,16.665,3.447,17.843,15.705,30.009,3.522,12.805,4.455,20.692,2.957,11.043,20.322,5.541,13.097,18.867,1.623,9.817,1.666,7.907,17.307,25.796,5.99,12.537,-0.171,-2.469,6.668,17.751,6.177,6.553,11.981,11.069,7.893,15.731,12.159,16.875,13.328,13.356,27.962,0.11,-0.814,27.283,26.141,15.126,6.227,15.933,13.713,3.584,10.14,3.543,10.553,5.501,20.067,13.854,7.538,-0.009,6.277,19.629,5.209,0.406,13.297,8.605,13.159,-0.148,17.898,21.046,3.698,5.384,4.933,22.941,6.548,20.394,18.595,0.992,22.168,10.311,1.003,-0.943,21.94,0.477,14.808,6.253,16.271,19.875,18.335,13.834,21.301,13.075,0.458,15.985,9.252,22.83,10.204,5.785,20.964,12.528,25.738,12.567,11.685,8.487,6.621,13.136,12.904,12.467,11.279,11.844,9.472,6.116,17.25,8.028,15.142,3.785,15.758,14.397,10.448,18.338,16.119,4.402,3.721,9.363,28.832,20.657,4.104,18.727,3.851,3.541,12.639,20.116,20.834,3.648,6.444,12.525,17.18,17.559,16.428,2.283,3.66,14.641,11.214,28.992,14.088,12.607,3.643],[12.448,17.717,17.157,0.831,13.443,13.063,-0.923,5.95,9.7,0.572,7.076,27.347,26.677,17.172,7.656,3.796,7.915,18.174,14.219,0.173,5.828,5.091,5.331,13.966,12.174,0.439,21.832,22.096,18.58,9.112,5.175,21.498,-1.382,17.969,15.855,1.618,11.282,12.884,19.997,13.17,5.014,23.973,10.38,6.556,8.841,7.353,17.106,13.248,12.69,12.155,16.608,3.383,17.592,15.692,30.001,3.458,12.894,4.335,20.648,3.056,11.009,20.133,5.546,13.192,18.881,1.894,9.856,1.73,7.936,17.609,25.218,6.498,12.004,-0.003,-2.72,6.845,17.603,6.289,6.335,12.489,11.256,7.793,15.984,11.935,16.53,13.604,13.069,27.59,-0.198,-0.727,27.03,25.88,15.302,6.057,15.871,13.691,3.017,9.792,3.433,10.265,5.653,19.999,13.358,7.133,0.308,6.856,19.567,5.5,0.162,13.215,8.378,13.506,0.539,18.317,20.469,4.387,5.471,4.825,22.565,6.31,20.346,18.998,1.398,22.173,10.45,0.84,-0.93,21.797,0.239,14.778,5.635,16.329,19.845,18.105,14.113,21.399,13.082,0.714,16.199,9.569,23.308,10.282,5.519,20.493,12.828,25.785,12.435,11.302,8.16,6.56,12.974,12.579,12.619,11.504,11.785,9.818,6.332,17.875,8.705,14.963,3.531,16.006,14.586,10.307,18.241,15.933,4.495,4.096,9.421,28.892,20.831,3.891,18.517,3.807,3.83,12.813,19.78,20.808,3.973,6.662,12.38,17.446,17.493,16.476,2.097,4.36,14.539,11.068,29.34,14.626,12.755,3.413],[12.364,17.917,17.167,0.745,13.517,13.013,-1.098,6.192,9.944,0.75,7.08,27.146,26.695,17.362,7.742,4.051,7.532,18.191,14.193,0.136,5.773,5.198,5.237,14.01,12.128,0.426,21.721,21.849,18.538,9.054,5.172,21.465,-1.389,18.093,16.085,1.47,11.246,12.941,19.821,13.402,5.238,23.902,10.388,6.546,8.975,7.724,17.507,13.215,12.307,11.824,16.597,3.291,17.539,15.797,30.087,3.395,12.995,4.282,20.529,3.177,11.021,20.081,5.387,13.187,18.569,1.916,10.033,1.601,8.493,17.914,25.168,6.727,12.501,-0.228,-2.844,6.49,18.408,6.091,6.236,11.659,11.189,7.622,15.967,11.791,16.513,13.325,13.223,27.59,0.304,-0.578,26.703,26.044,15.676,6.382,15.678,13.856,2.98,9.201,3.535,10.268,5.513,19.671,13.048,6.777,0.305,6.754,19.102,5.71,-0.44,13.301,8.013,12.754,-0.017,18.436,20.463,4.572,5.548,5.744,22.683,6.654,20.465,19.486,1.859,22.213,10.345,0.467,-0.839,21.445,0.113,15.132,5.963,16.416,19.711,17.722,14.222,20.983,13.072,0.632,16.154,10.338,22.462,10.046,5.419,20.471,13.051,25.605,11.964,10.881,7.362,6.561,13.141,12.47,12.775,11.447,11.302,10.149,6.127,18.423,8.78,15.067,3.51,16.771,14.431,9.972,18.207,15.914,4.42,4.232,9.282,28.998,20.611,3.785,18.64,3.591,3.6,12.567,19.283,21.001,3.74,6.376,12.783,17.2,17.809,16.868,2.568,4.272,14.718,11.374,29.353,14.966,13.163,2.867],[12.308,18.09,17.188,0.638,13.485,12.854,-1.268,6.419,10.112,0.917,7.091,27.06,26.704,17.591,7.896,4.0,7.432,18.254,14.165,0.074,5.59,5.235,5.114,14.083,12.069,0.464,21.527,21.567,18.497,8.832,5.271,21.49,-1.41,18.196,16.122,1.3,11.203,13.039,19.662,13.744,5.267,23.639,10.427,6.65,9.05,8.096,17.879,13.133,12.015,11.522,16.675,3.203,17.635,15.909,30.152,3.304,13.136,4.194,20.404,3.179,11.045,20.256,5.057,13.095,19.404,1.876,10.26,1.438,8.588,17.647,25.495,6.574,12.551,-0.474,-2.491,6.684,18.137,6.429,6.386,11.324,10.982,7.403,15.627,12.376,16.908,12.909,13.328,27.424,0.215,-0.557,26.874,25.541,16.393,6.64,15.631,14.386,3.815,9.383,3.278,10.259,5.796,19.867,13.144,6.592,0.099,6.755,18.809,5.499,-0.651,13.15,8.412,11.898,-0.33,18.616,20.893,4.305,5.216,5.849,22.574,6.696,20.789,19.484,1.82,22.628,10.306,0.299,-0.547,21.593,0.042,15.375,5.736,16.567,20.067,18.053,14.191,20.623,13.07,0.207,16.372,11.043,22.172,10.215,5.537,20.691,13.098,24.934,11.755,10.679,8.253,6.81,13.266,12.6,12.883,11.189,11.529,10.173,5.939,18.75,8.436,14.99,4.039,16.725,14.27,9.723,18.098,15.777,4.577,4.029,9.357,28.691,20.519,4.285,18.691,3.478,3.651,12.771,19.522,20.801,3.557,6.174,12.301,16.942,17.788,16.544,3.148,4.274,14.871,11.406,29.655,14.792,13.287,2.422],[12.29,18.29,17.226,0.488,13.407,12.59,-1.318,6.626,10.196,1.016,7.132,26.907,26.705,17.75,8.048,4.007,7.585,18.408,14.217,-0.205,5.433,5.176,4.92,14.22,11.918,0.533,21.445,21.467,18.339,8.743,5.424,21.671,-1.382,18.475,16.007,1.158,11.174,13.279,19.658,14.038,5.318,23.206,10.506,6.621,9.081,8.385,18.071,13.133,12.005,11.362,16.746,3.22,17.615,15.913,30.125,3.18,13.313,3.876,20.532,3.283,11.03,20.481,4.783,13.019,18.871,1.841,10.329,1.084,8.546,17.932,25.627,6.603,12.359,-0.209,-3.003,6.646,18.114,6.745,6.112,11.995,10.834,7.248,15.892,12.21,17.345,13.1,12.92,27.619,0.015,-0.293,26.965,25.617,17.064,6.67,15.814,14.737,3.799,9.265,3.34,10.004,5.478,20.162,13.357,6.536,0.359,6.441,19.48,5.233,-0.399,13.027,8.36,12.646,-0.162,18.126,20.136,3.648,4.435,5.177,22.242,6.62,20.328,19.088,1.404,22.323,10.172,0.399,-0.852,21.426,0.099,15.098,5.671,16.858,20.072,18.658,14.247,20.463,12.982,-0.027,16.421,10.439,22.311,10.662,5.596,20.196,12.996,25.062,11.217,10.619,9.304,6.875,13.676,13.123,12.78,11.412,11.651,9.7,6.117,18.427,8.606,14.761,3.767,16.892,14.27,9.498,18.122,15.882,4.297,4.176,9.484,28.553,21.004,4.191,18.621,3.087,3.499,12.948,19.199,20.391,4.121,6.074,11.816,17.267,17.316,16.834,3.345,4.446,15.105,11.468,30.291,14.803,13.106,2.006],[12.383,18.319,17.285,0.313,13.393,12.383,-1.351,6.83,10.215,1.087,7.138,26.719,26.569,17.958,8.028,4.055,7.78,18.501,14.324,-0.531,5.351,4.928,4.729,14.384,11.961,0.537,21.422,21.33,18.229,8.795,5.397,21.774,-1.415,18.728,15.891,1.045,11.234,13.525,19.658,14.326,5.198,22.915,10.491,6.406,9.172,8.636,17.984,13.073,12.1,11.408,16.837,3.229,17.441,15.836,30.116,3.205,13.448,3.518,20.711,3.383,11.131,20.657,4.625,13.159,19.157,1.956,10.082,0.925,8.808,18.3,25.506,6.941,12.444,-0.17,-3.083,6.462,18.63,6.549,6.289,11.889,10.628,7.293,15.722,11.756,16.756,13.247,12.445,27.742,-0.538,-0.301,27.141,25.879,16.928,6.656,15.916,14.912,3.186,9.569,3.11,10.058,5.207,20.187,13.636,6.707,-0.398,6.364,19.68,5.74,0.088,13.032,7.967,12.922,-0.849,18.598,20.392,3.682,4.608,5.215,21.914,6.136,20.054,19.082,1.406,21.668,9.898,0.168,-1.374,21.553,0.391,14.888,6.173,16.876,20.224,19.319,14.343,21.16,12.982,0.182,16.263,9.892,22.354,10.762,5.225,20.505,12.771,24.71,10.967,10.389,8.709,6.763,14.05,13.725,12.868,11.777,11.521,9.894,5.775,18.808,9.075,14.815,3.659,17.169,14.287,9.546,18.366,16.158,3.945,3.961,9.23,28.742,20.938,4.021,19.043,2.956,3.439,12.642,19.645,21.563,3.393,5.875,11.944,17.24,17.099,16.57,3.306,4.575,15.157,11.56,30.455,14.865,13.259,1.748],[12.507,18.361,17.142,0.119,13.39,12.315,-1.433,6.979,10.179,1.102,7.116,26.531,26.322,18.169,7.844,4.118,7.96,18.538,14.312,-0.898,5.313,4.652,4.545,14.599,12.213,0.528,21.339,21.351,18.266,8.681,5.308,21.862,-1.541,18.999,15.897,1.021,11.325,13.687,19.807,14.632,4.939,22.678,10.49,6.139,9.29,8.686,17.922,13.059,12.111,11.519,16.863,3.217,17.361,15.735,30.115,3.256,13.525,3.18,21.082,3.478,11.225,20.726,4.694,13.316,19.697,2.189,9.95,1.017,9.007,18.11,25.094,7.159,12.608,-0.512,-2.99,6.992,18.627,6.733,6.215,12.272,10.575,7.523,15.77,11.896,16.312,13.421,12.316,27.357,-0.681,-0.292,27.242,25.519,16.632,6.364,15.696,15.288,3.488,9.734,2.717,10.28,5.237,19.958,13.907,6.969,-0.064,6.372,19.398,5.757,0.166,13.204,8.199,12.612,-1.405,19.378,20.428,4.013,5.17,5.445,21.844,5.213,20.105,18.988,1.562,21.81,10.381,-0.212,-1.757,21.984,0.249,15.332,5.854,17.262,20.211,18.928,14.657,20.924,12.858,0.276,15.961,9.965,22.414,10.502,5.188,20.153,12.952,24.573,11.392,10.563,8.329,6.47,14.479,13.652,12.871,11.717,12.118,10.31,5.335,18.867,9.696,14.541,3.657,17.158,14.025,9.755,18.807,15.854,3.501,2.965,9.541,28.918,20.682,4.258,19.172,2.991,3.473,12.612,19.732,22.132,2.581,5.788,12.429,16.973,17.378,16.46,2.943,4.657,15.189,11.469,30.249,15.097,13.335,1.343],[12.839,18.387,16.968,0.06,13.439,12.228,-1.532,7.063,10.082,1.234,7.195,26.293,26.1,18.319,7.705,4.256,8.175,18.586,14.133,-1.145,5.284,4.556,4.388,14.858,12.35,0.566,21.226,21.422,18.314,8.526,5.195,21.901,-1.69,19.184,16.133,1.08,11.458,13.779,19.814,14.869,4.719,22.56,10.584,5.957,9.406,8.755,17.946,13.05,12.215,11.653,16.82,3.18,17.425,15.586,30.145,3.152,13.602,2.768,21.342,3.558,11.313,20.594,4.806,13.36,19.933,2.381,10.301,0.521,8.97,17.986,24.642,7.045,12.896,-0.748,-3.292,6.739,18.748,7.095,5.943,12.266,10.649,7.33,15.926,12.087,15.994,13.241,12.323,26.52,-0.289,0.004,26.772,25.104,16.502,6.026,15.788,15.914,3.582,9.845,2.644,10.703,5.427,19.891,13.88,6.963,-0.213,6.051,19.396,5.502,-0.38,13.551,8.141,12.418,-0.937,18.39,20.346,3.905,5.085,5.306,22.139,4.513,20.563,19.451,1.384,22.451,10.058,0.042,-1.175,21.481,0.013,15.084,5.19,17.585,20.181,19.069,14.601,20.498,13.019,0.19,16.264,10.231,22.036,10.574,5.289,20.651,13.73,24.382,11.995,10.835,8.459,6.23,14.889,13.284,12.627,11.739,12.124,10.352,5.435,18.591,9.282,14.333,3.272,16.739,14.051,9.889,18.619,15.952,3.246,3.056,9.679,28.98,21.025,4.106,19.016,3.082,3.298,13.107,19.721,21.426,3.146,6.139,12.522,16.82,17.39,16.748,2.29,4.879,15.339,11.451,29.897,15.124,13.368,1.201],[13.252,18.427,16.88,0.048,13.431,12.124,-1.62,7.125,10.047,1.512,7.184,25.883,25.876,18.353,7.562,4.374,8.325,18.505,13.978,-1.285,5.186,4.462,4.263,15.168,12.434,0.526,21.371,21.569,18.237,8.373,5.018,21.528,-1.715,19.315,16.431,1.174,11.643,13.879,19.761,15.019,4.473,22.598,10.738,5.968,9.494,8.925,17.963,12.959,12.483,11.768,16.704,3.034,17.551,15.508,30.234,2.91,13.706,2.676,21.372,3.462,11.304,20.5,4.823,13.333,19.618,2.174,10.227,0.777,8.785,18.286,24.396,7.059,13.513,-0.46,-3.018,6.848,18.535,6.885,6.186,11.998,10.337,6.933,15.539,12.098,16.073,12.982,12.383,26.415,-0.069,0.369,26.342,25.704,16.893,6.025,15.786,16.381,3.59,10.023,2.695,10.544,5.298,20.093,13.707,6.99,-0.529,5.906,19.206,5.982,-1.057,13.705,8.127,12.628,-1.163,17.822,21.136,3.52,4.461,4.638,22.058,4.577,20.538,19.449,1.518,22.377,9.737,0.515,-1.021,21.373,-0.19,15.169,5.374,17.742,19.987,18.966,14.548,20.994,13.491,-0.069,16.769,10.551,21.672,10.939,4.852,20.649,13.657,24.453,12.175,11.052,8.752,6.168,14.96,13.302,12.452,11.757,12.053,10.108,5.522,18.633,9.129,14.373,3.093,16.856,13.925,9.908,18.293,16.15,3.248,3.223,9.835,29.068,20.624,3.9,18.822,3.371,3.723,13.078,19.897,21.174,3.387,6.309,12.42,16.966,17.095,16.828,1.929,5.005,15.372,11.853,29.25,15.151,13.927,0.85],[13.564,18.311,16.865,0.162,13.264,12.03,-1.505,7.119,10.07,1.763,7.132,25.591,25.705,18.425,7.377,4.502,8.252,18.344,13.902,-1.548,5.031,4.399,4.198,15.491,12.451,0.435,21.691,21.741,18.159,8.308,4.744,21.155,-1.647,19.332,16.574,1.27,11.718,13.908,19.782,15.114,4.279,22.779,10.941,6.097,9.543,9.173,17.978,12.912,12.794,11.815,16.662,2.839,17.609,15.581,30.22,2.724,13.893,2.725,21.318,3.31,11.283,20.383,4.728,13.245,19.372,2.502,10.367,1.113,8.833,18.446,24.346,7.412,13.09,-0.048,-3.067,6.843,18.287,6.715,6.138,13.047,10.303,6.406,15.565,11.809,16.439,13.162,12.361,26.548,-0.033,0.41,26.209,25.361,17.097,6.157,15.318,16.599,3.61,9.995,3.017,10.551,4.859,19.692,13.59,7.133,-0.16,5.807,18.85,6.166,-0.806,13.948,8.485,13.16,-1.252,18.485,20.764,3.323,3.687,4.184,22.451,5.136,20.567,19.09,1.101,22.27,9.912,0.218,-1.598,21.071,0.021,15.532,5.796,17.577,19.663,19.142,15.099,20.571,13.513,0.177,16.694,10.966,22.089,11.134,4.626,20.386,13.202,24.572,12.154,11.117,9.423,5.857,15.077,13.435,12.281,11.937,12.169,9.856,5.492,19.033,8.933,14.618,3.095,16.682,14.099,9.961,18.161,16.411,3.564,3.094,9.577,29.374,20.956,3.789,18.899,3.465,3.284,12.72,19.925,21.613,3.107,6.277,12.058,16.933,16.919,16.27,1.803,4.561,15.615,11.986,28.804,15.006,14.055,1.119],[13.804,18.138,16.957,0.348,13.023,12.007,-1.369,7.08,10.171,1.972,7.041,25.514,25.579,18.521,7.164,4.637,8.114,18.206,13.836,-1.932,4.863,4.383,4.31,15.72,12.392,0.296,22.081,21.877,18.113,8.443,4.384,21.115,-1.739,19.063,16.406,1.273,11.511,13.854,19.76,15.184,4.162,22.969,11.136,6.255,9.555,9.413,17.814,12.96,12.956,11.831,16.667,2.729,17.7,15.742,30.115,2.666,14.107,2.811,21.354,3.092,11.26,20.455,4.61,13.18,19.2,3.144,10.747,1.252,8.838,18.435,24.402,7.091,12.853,-0.136,-3.043,6.343,18.248,6.96,6.195,13.673,10.531,5.886,15.484,11.708,16.679,13.109,11.702,25.936,-0.26,0.431,26.239,24.221,17.063,6.163,15.307,16.732,3.614,9.964,3.028,10.598,4.603,19.172,13.473,7.092,-0.619,6.079,18.581,5.978,0.206,13.905,7.954,13.271,-1.271,19.001,20.814,3.439,3.838,4.397,22.453,5.581,20.804,19.197,0.921,22.84,10.133,-0.068,-1.534,20.75,0.074,15.821,5.473,17.47,19.517,19.651,15.097,20.773,13.376,0.709,16.673,11.101,22.426,11.132,5.301,20.289,13.204,24.851,12.43,11.101,9.034,5.993,15.087,14.197,12.552,12.222,12.377,10.155,5.327,19.218,9.299,14.627,3.029,17.401,14.037,10.059,18.444,16.074,3.833,3.062,9.656,29.324,21.109,3.644,19.105,3.178,2.965,12.463,19.74,21.286,3.171,6.178,11.94,17.072,17.553,16.543,1.62,4.478,15.724,11.858,28.9,14.794,13.602,0.956],[13.959,18.093,17.065,0.577,12.82,11.993,-1.27,7.028,10.383,2.108,6.953,25.336,25.5,18.623,6.974,4.832,8.026,18.137,13.751,-2.343,4.752,4.461,4.542,15.891,12.238,0.364,22.399,21.918,18.1,8.601,4.084,21.204,-1.842,18.937,16.213,1.401,11.209,13.796,19.717,15.117,4.308,23.115,11.261,6.434,9.552,9.47,17.717,13.037,12.981,11.87,16.821,2.708,17.947,15.935,29.995,2.717,14.079,2.809,21.431,2.899,11.317,20.567,4.491,13.145,19.072,2.937,10.583,1.03,8.916,18.738,24.324,6.672,13.738,-0.556,-2.945,6.211,18.442,6.681,5.921,12.938,10.502,5.696,15.71,11.369,16.432,12.838,11.604,26.296,-0.29,0.73,26.065,23.606,17.097,6.014,15.432,16.756,3.485,9.672,3.161,10.44,4.357,19.072,13.409,6.652,-0.915,5.999,19.04,6.022,-0.327,14.212,7.93,12.738,-1.468,18.156,20.704,3.414,4.132,4.659,21.944,5.699,21.004,19.38,1.123,22.796,10.252,0.53,-1.119,21.065,-0.375,15.567,4.903,17.35,19.626,18.965,14.331,21.102,12.76,0.162,16.568,10.688,22.039,10.735,6.089,20.559,13.582,24.892,13.013,10.854,8.902,5.964,15.391,15.08,13.068,12.197,11.892,10.537,5.666,18.627,10.25,14.363,2.872,17.188,14.324,9.993,18.755,16.264,3.674,3.311,9.51,29.082,20.798,3.47,18.93,2.98,3.09,12.833,19.81,21.303,3.032,5.811,12.192,17.222,17.824,16.576,1.598,4.366,15.561,11.574,28.935,14.944,13.706,1.157],[14.012,18.077,17.098,0.688,12.649,11.965,-1.346,6.8,10.469,2.097,6.896,25.146,25.466,18.878,6.791,4.921,8.126,17.963,13.671,-2.567,4.703,4.707,4.67,15.984,12.049,0.506,22.442,21.618,18.153,8.72,4.071,21.308,-1.824,19.021,15.981,1.614,10.823,13.674,19.712,14.945,4.565,23.026,11.429,6.679,9.516,9.402,17.713,13.053,13.082,11.923,16.948,2.688,18.204,16.126,29.883,2.799,13.837,2.885,21.613,2.87,11.386,20.406,4.413,13.092,19.05,2.509,10.912,1.101,8.84,18.798,23.993,6.849,13.531,-0.546,-2.968,6.456,18.826,6.628,5.764,12.635,10.268,6.018,15.66,11.237,16.286,12.483,12.191,26.271,0.193,0.899,25.903,23.382,17.0,5.556,15.224,16.942,3.741,9.657,3.188,10.165,4.036,18.897,13.476,6.577,-0.952,6.148,18.913,6.524,-0.66,14.415,8.778,12.112,-1.983,18.102,20.564,3.584,4.347,4.375,22.516,5.624,21.31,19.19,1.042,22.846,10.514,0.53,-1.315,21.333,-0.409,15.082,4.932,17.173,19.763,18.752,14.406,20.582,12.073,0.577,16.269,10.38,22.047,10.402,6.122,20.779,14.176,24.817,12.8,10.413,9.58,6.354,15.801,14.472,13.274,11.853,11.867,10.24,6.27,18.311,10.436,14.591,3.481,17.114,14.529,10.406,18.736,16.655,2.721,3.567,9.704,28.803,21.308,3.69,18.936,2.958,3.205,12.55,19.976,21.889,2.51,5.753,12.392,17.433,17.824,16.61,2.149,4.129,15.214,11.222,28.803,14.893,13.953,1.339],[14.015,18.138,17.057,0.743,12.509,11.926,-1.493,6.503,10.449,1.921,6.886,24.988,25.394,19.059,6.66,4.964,8.416,17.744,13.631,-2.585,4.608,4.955,4.713,16.035,11.727,0.625,22.307,21.409,18.085,9.017,4.197,21.492,-1.796,19.116,15.762,1.892,10.39,13.548,19.688,14.781,4.735,22.763,11.569,6.932,9.373,9.181,17.823,13.101,13.269,12.108,16.921,2.596,18.38,16.227,29.816,2.925,13.491,2.952,21.89,3.028,11.382,20.162,4.493,12.78,18.953,3.086,10.564,1.038,8.759,19.115,23.942,6.844,13.081,-0.298,-2.471,6.504,18.408,6.431,5.913,13.183,10.16,6.332,15.641,11.76,16.626,12.275,12.28,25.505,-0.067,0.578,25.886,23.124,17.227,4.892,15.266,17.098,4.098,10.112,3.088,9.885,4.769,18.957,13.393,7.234,-1.177,6.562,18.455,6.366,-0.355,14.522,9.006,12.133,-2.042,18.295,20.775,4.173,4.4,4.138,22.632,5.233,20.869,19.028,0.825,23.15,10.523,0.704,-1.602,21.393,-0.127,14.902,5.522,17.504,19.816,19.038,14.492,20.688,11.569,0.879,16.101,11.009,22.109,10.287,5.839,20.453,14.532,24.535,12.416,10.335,10.02,6.663,15.506,14.082,13.095,12.249,12.89,10.045,6.135,18.888,10.574,14.767,4.121,17.331,14.624,10.429,18.779,16.606,2.919,4.11,9.717,29.096,21.053,3.552,18.853,3.281,3.128,12.387,20.115,22.134,2.674,5.839,12.038,17.531,18.005,16.811,1.881,4.197,14.901,11.35,28.959,14.595,14.318,1.507],[13.992,18.193,17.134,0.735,12.467,11.874,-1.424,6.236,10.465,1.766,6.855,24.731,25.31,19.114,6.552,5.041,8.681,17.713,13.564,-2.545,4.553,5.235,4.768,16.095,11.399,0.737,22.159,21.468,17.872,9.461,4.337,21.691,-1.762,19.2,15.643,2.157,9.924,13.44,19.592,14.602,4.702,22.601,11.756,7.069,9.332,8.972,17.972,13.198,13.526,12.18,16.828,2.489,18.498,16.385,29.99,3.058,13.181,2.996,22.027,3.103,11.29,19.921,4.694,12.507,18.721,2.95,9.78,1.297,9.047,19.309,24.138,6.489,13.306,0.112,-3.077,5.993,18.127,5.917,6.203,13.802,10.103,6.622,15.614,11.682,16.713,12.062,11.965,25.257,-0.46,0.335,25.759,22.995,17.725,4.793,15.324,17.031,3.498,10.419,3.584,9.563,4.89,18.933,13.413,7.745,-1.353,6.858,18.455,6.325,0.309,14.709,9.243,12.322,-1.525,17.921,20.721,4.235,4.496,4.39,22.298,5.142,20.813,19.075,1.226,22.716,10.747,0.986,-1.64,21.437,-0.077,14.739,5.697,17.717,20.191,18.792,13.95,21.023,11.218,1.224,16.217,11.881,21.841,10.132,6.016,20.096,14.119,24.401,12.723,10.373,9.475,6.587,15.065,14.453,12.689,12.133,12.796,10.531,6.048,18.492,10.192,14.788,3.557,17.608,14.591,10.497,18.689,16.839,3.673,4.134,9.656,29.363,20.276,3.969,18.398,3.46,3.144,12.4,20.254,22.247,3.508,6.352,12.22,17.388,18.352,16.848,1.508,4.329,14.482,11.344,28.886,14.265,14.229,1.805],[14.068,18.165,17.266,0.832,12.512,11.783,-1.294,6.078,10.419,1.682,6.558,24.452,25.443,19.147,6.601,4.976,8.908,17.772,13.467,-2.548,4.593,5.503,4.902,16.189,11.423,0.863,21.969,21.668,17.73,9.851,4.454,21.815,-1.665,19.145,15.558,2.291,9.431,13.338,19.539,14.527,4.504,22.624,11.936,7.127,9.507,8.784,17.973,13.206,13.718,12.165,16.749,2.5,18.511,16.538,30.273,3.198,12.975,3.085,21.904,3.122,11.244,19.655,4.937,12.407,18.178,2.349,9.746,1.218,9.25,19.143,23.867,6.044,12.77,0.111,-3.039,5.575,18.888,5.603,6.203,13.439,10.055,6.446,15.767,11.433,16.402,11.692,11.748,25.339,-0.315,0.233,25.563,22.816,17.46,4.975,14.97,17.026,3.52,10.735,3.65,9.656,3.908,18.741,13.364,7.944,-1.109,6.915,18.689,6.335,0.887,14.498,9.501,12.239,-1.72,17.914,20.815,4.281,4.587,4.802,22.074,4.786,21.485,18.796,1.104,22.777,11.524,0.869,-1.413,21.162,0.04,14.825,5.615,17.415,20.537,18.681,14.351,20.884,11.047,1.377,15.888,12.127,21.675,10.802,6.41,20.275,13.226,24.357,12.832,9.774,9.389,6.236,14.81,14.08,13.006,11.591,12.72,10.189,6.178,18.834,10.054,15.041,3.501,17.544,15.043,10.292,18.276,16.647,3.494,3.994,9.458,29.343,20.481,3.799,18.266,3.493,3.289,12.198,20.168,22.392,3.911,6.353,12.41,17.608,18.738,16.66,1.337,4.263,14.512,10.952,28.839,14.148,13.408,2.024],[14.026,18.152,17.271,0.921,12.581,11.7,-1.184,5.922,10.377,1.423,6.251,24.181,25.495,19.144,6.812,4.865,9.113,17.806,13.32,-2.507,4.375,5.608,5.08,16.147,11.541,0.944,21.995,21.945,17.691,10.197,4.471,21.864,-1.548,18.907,15.474,2.276,9.007,13.29,19.661,14.557,4.314,22.632,11.883,7.208,9.623,8.836,17.971,13.226,13.739,12.056,16.567,2.613,18.551,16.626,30.34,3.408,12.801,3.182,21.738,3.089,11.181,19.522,4.925,12.346,17.75,2.209,10.067,1.582,8.71,19.017,24.168,6.31,13.083,0.132,-2.083,5.785,18.945,5.908,5.576,12.947,9.944,6.353,15.815,11.595,16.661,11.704,11.576,25.396,0.057,0.582,25.596,23.088,17.433,5.128,14.978,17.133,3.637,10.825,3.397,9.666,4.548,19.003,13.162,7.671,-0.883,7.497,18.294,6.251,0.998,14.55,9.61,12.14,-2.282,18.027,20.881,4.868,5.114,5.363,22.714,4.997,21.099,18.693,1.296,22.712,11.888,0.9,-1.166,21.777,0.043,14.576,5.479,17.361,20.1,19.025,14.478,20.702,10.593,1.484,16.011,12.641,21.542,11.103,6.395,20.255,12.526,24.402,12.762,9.068,9.354,6.144,14.695,13.758,13.611,12.347,13.132,10.165,6.16,18.683,10.204,14.889,3.574,17.282,14.868,10.576,18.425,16.689,2.97,4.047,9.928,29.436,20.238,3.334,18.223,3.302,3.596,12.113,19.868,22.353,3.497,6.126,12.555,17.984,18.891,16.888,1.123,4.079,14.516,10.677,29.547,14.061,12.608,2.143],[13.938,18.161,17.156,1.117,12.717,11.549,-0.934,5.778,10.281,1.224,6.119,24.044,25.524,19.135,7.032,4.844,9.03,17.764,13.191,-2.403,4.209,5.732,5.371,15.957,11.597,0.912,22.052,22.249,17.551,10.465,4.534,22.098,-1.496,18.768,15.368,2.254,8.726,13.297,19.71,14.57,4.18,22.557,11.953,7.322,9.587,9.006,17.778,13.423,13.671,12.004,16.559,2.719,18.72,16.631,30.397,3.649,12.586,3.294,21.771,2.977,11.177,19.462,4.687,12.422,17.403,2.175,10.109,1.867,8.652,19.164,24.123,6.687,13.949,-0.109,-2.18,5.697,18.403,6.049,5.281,12.956,9.895,6.669,15.442,11.624,16.984,11.892,11.992,25.01,0.228,0.214,25.886,22.555,17.419,5.52,14.877,17.122,3.513,10.632,3.763,9.726,4.814,19.075,12.898,7.754,-0.813,7.63,18.555,6.178,1.321,14.706,9.63,11.587,-1.991,18.046,20.999,4.849,4.846,5.468,23.072,5.055,20.512,18.895,1.542,22.828,12.064,1.228,-1.208,22.132,0.186,14.398,5.303,17.133,20.357,18.601,13.844,20.663,9.684,1.037,15.69,12.254,21.592,10.751,6.106,20.976,11.956,24.296,13.036,9.235,9.653,6.057,14.869,14.111,13.457,12.135,12.768,10.727,6.421,18.554,10.19,14.766,3.419,17.263,15.121,10.524,18.212,17.03,2.954,3.855,9.605,29.431,20.176,3.684,17.847,3.468,3.705,12.109,20.003,21.744,3.611,6.263,12.324,17.591,18.623,16.631,1.534,4.004,14.484,10.782,30.223,14.135,12.257,1.761],[14.046,18.174,17.032,1.391,12.873,11.484,-0.733,5.768,10.166,1.29,6.093,23.937,25.587,19.12,7.163,4.843,8.768,17.595,13.191,-2.488,4.221,5.807,5.616,15.81,11.603,0.812,22.035,22.583,17.507,10.625,4.664,22.472,-1.398,18.714,15.156,2.223,8.515,13.074,19.778,14.538,4.1,22.479,12.068,7.424,9.638,9.081,17.516,13.558,13.548,11.93,16.514,2.871,18.829,16.573,30.536,3.855,12.47,3.354,21.786,2.951,11.227,19.406,4.605,12.555,17.487,1.937,9.571,1.833,8.77,19.312,24.302,5.949,13.501,0.546,-2.289,5.235,17.749,5.541,5.704,13.089,9.602,6.848,15.415,11.621,16.571,12.167,12.009,24.13,0.332,0.544,25.72,22.264,17.437,5.597,14.889,16.966,3.496,10.537,4.36,9.855,4.005,18.77,12.87,7.775,-0.953,7.344,18.338,6.128,1.734,14.367,10.003,11.234,-1.756,18.13,21.193,4.527,4.841,5.333,23.494,5.287,20.992,18.586,1.214,23.042,11.77,1.074,-1.824,21.911,0.465,14.212,5.223,17.089,20.897,17.963,13.99,20.847,8.588,0.836,15.83,11.887,21.419,10.367,6.281,20.877,12.137,24.135,12.938,9.54,10.327,5.944,15.164,14.126,13.078,12.225,12.51,10.444,6.398,18.325,10.348,15.221,3.423,16.852,15.179,10.099,18.0,17.091,3.243,3.9,9.353,29.194,20.328,3.465,17.925,3.389,3.708,12.196,20.169,21.863,4.189,5.873,12.408,17.587,18.856,16.548,1.77,4.235,14.14,11.181,30.345,14.045,11.799,1.616],[14.115,18.177,17.008,1.602,12.928,11.455,-0.612,5.71,9.996,1.589,6.133,23.855,25.592,19.118,7.082,4.829,8.74,17.5,13.276,-2.744,4.229,5.848,5.714,15.709,11.595,0.711,22.096,22.684,17.479,10.627,4.626,22.751,-1.312,18.721,15.084,2.322,8.272,12.678,19.888,14.487,4.096,22.477,12.205,7.448,9.56,9.202,17.349,13.568,13.396,11.907,16.474,3.046,18.826,16.466,30.549,4.03,12.337,3.529,21.765,2.973,11.397,19.356,4.667,12.558,17.483,1.088,9.158,2.308,8.704,19.048,24.59,6.075,13.203,1.249,-1.887,5.305,17.845,5.787,6.084,13.221,9.867,6.974,15.954,11.802,16.05,12.723,11.28,23.349,0.561,1.11,25.388,22.137,17.404,5.349,14.778,16.127,3.419,10.183,4.326,9.677,3.771,18.783,13.293,7.438,-1.238,7.21,18.057,6.181,1.501,13.899,10.077,12.092,-2.123,17.613,21.215,4.403,4.933,5.208,23.094,5.525,20.995,18.586,1.034,23.016,12.165,0.864,-1.898,22.27,0.518,14.155,5.363,17.064,21.107,18.501,13.706,21.16,8.811,1.246,15.509,12.524,21.203,10.898,6.47,20.358,12.491,23.878,12.576,9.062,10.307,5.883,14.802,14.061,12.974,12.731,12.817,10.432,6.382,17.75,9.901,14.872,3.531,17.132,14.81,10.266,17.728,16.964,3.543,4.235,9.85,29.355,19.904,3.475,17.682,3.316,3.887,12.181,20.015,22.055,3.897,5.94,12.271,17.788,19.219,16.84,1.635,4.009,13.995,11.053,30.269,14.122,11.734,2.08],[14.124,18.122,17.119,1.847,13.006,11.446,-0.482,5.788,9.853,1.725,6.33,23.706,25.48,19.017,6.976,4.889,8.708,17.359,13.376,-2.849,4.237,5.897,5.603,15.601,11.585,0.565,22.061,22.485,17.335,10.625,4.415,22.909,-1.194,18.791,15.002,2.573,8.06,12.249,19.912,14.385,4.172,22.439,12.464,7.343,9.515,9.307,17.352,13.535,13.39,11.891,16.489,3.249,18.77,16.353,30.525,4.073,12.225,3.725,21.747,2.943,11.575,19.245,4.875,12.482,17.959,0.528,9.172,2.476,8.387,19.108,24.153,6.724,13.549,0.792,-1.632,5.961,18.443,5.754,5.921,13.259,9.801,6.726,15.923,11.808,16.122,12.607,11.26,23.632,0.38,1.645,25.827,22.172,17.14,5.156,14.712,15.667,3.486,10.263,4.016,9.711,4.157,18.558,13.639,7.465,-1.541,7.522,17.896,6.004,1.188,13.889,9.552,12.364,-2.385,17.723,20.806,4.578,5.294,5.019,22.53,4.892,20.516,18.771,1.558,23.043,12.156,1.244,-1.444,22.575,0.482,14.256,5.592,17.033,21.534,19.165,13.175,21.114,9.488,1.712,15.625,13.116,21.264,10.883,6.249,20.89,12.554,24.134,12.363,8.573,9.733,6.037,14.298,14.049,12.984,12.505,12.387,10.251,6.64,18.072,9.282,14.797,3.639,16.993,14.84,10.294,17.822,16.956,3.796,4.542,10.405,30.012,19.972,3.583,17.452,3.497,3.921,12.273,20.087,21.917,4.016,6.345,12.048,17.661,19.452,16.754,1.748,4.01,13.895,10.34,29.591,14.202,12.072,2.746],[14.18,18.156,17.276,2.037,13.048,11.399,-0.364,6.031,9.739,1.772,6.614,23.588,25.384,18.868,6.775,5.066,8.567,17.198,13.474,-2.795,4.289,6.04,5.349,15.407,11.618,0.444,21.991,22.369,17.146,10.48,4.225,23.004,-1.086,18.756,14.868,2.655,7.989,11.931,20.023,14.354,4.37,22.395,12.642,7.233,9.447,9.278,17.576,13.509,13.457,11.812,16.538,3.479,18.717,16.248,30.494,3.973,12.179,3.948,21.647,2.896,11.618,19.146,5.221,12.448,18.1,0.579,9.13,2.591,8.281,19.219,23.883,6.401,13.357,1.056,-1.811,5.9,18.87,5.791,6.011,13.12,9.517,7.077,15.684,11.748,16.981,12.396,11.99,24.295,0.29,1.707,25.704,21.939,17.017,5.243,14.972,16.509,3.462,10.336,4.166,9.723,4.296,18.402,13.117,7.757,-1.141,7.867,18.306,5.879,1.374,13.684,9.753,11.563,-2.446,17.48,21.157,5.07,5.195,4.48,23.266,4.781,20.548,17.962,1.567,22.676,12.01,1.405,-0.935,22.415,0.405,14.161,5.519,16.91,21.417,18.417,13.034,21.009,9.24,1.651,15.586,12.994,21.768,10.146,6.03,21.015,11.958,24.17,13.001,8.53,9.523,6.184,14.249,13.953,13.05,12.634,12.026,10.656,6.509,18.51,8.918,15.06,3.583,16.757,14.907,9.923,18.02,16.865,3.532,4.784,10.463,29.792,20.251,3.349,17.614,3.963,4.066,12.285,20.014,22.13,4.559,6.571,12.139,17.712,19.123,16.531,2.253,4.006,13.86,10.402,29.269,14.154,12.098,2.8],[14.107,18.29,17.518,2.29,13.019,11.288,-0.368,6.114,9.731,1.755,6.762,23.532,25.277,18.888,6.671,5.159,8.514,17.118,13.385,-2.681,4.323,6.259,5.168,15.174,11.572,0.349,21.91,22.519,17.053,10.294,4.041,22.939,-0.998,18.543,14.759,2.586,7.996,11.705,20.198,14.343,4.471,22.479,12.778,7.009,9.297,9.118,17.921,13.363,13.572,11.777,16.572,3.668,18.667,16.167,30.409,3.94,12.159,4.114,21.537,2.846,11.528,19.285,5.472,12.522,17.625,0.866,9.096,2.83,8.383,19.129,24.083,6.412,13.402,1.482,-1.912,5.947,18.426,6.383,6.374,13.4,9.565,7.383,15.791,11.714,17.521,12.634,11.839,24.532,0.533,1.863,25.62,21.862,17.096,4.784,15.071,16.761,3.428,9.985,3.848,9.749,4.258,18.642,13.203,7.544,-0.962,7.629,17.914,6.225,1.513,13.963,9.917,11.577,-2.208,17.415,21.37,5.033,4.915,4.159,23.755,5.112,21.018,18.522,0.69,22.583,11.894,1.178,-1.073,22.364,0.686,14.03,5.223,17.37,21.421,17.643,12.709,21.339,8.649,1.442,15.209,12.641,21.231,10.254,6.071,20.867,11.033,24.261,12.937,8.586,10.192,6.35,14.587,14.232,13.37,12.741,12.369,10.723,6.383,18.729,9.173,14.671,4.092,16.834,15.163,9.978,18.327,16.976,3.701,5.002,10.103,29.527,19.65,3.543,17.569,4.323,3.726,12.227,20.05,22.247,4.461,7.026,12.223,17.499,18.543,16.659,2.224,3.772,13.916,10.684,30.0,14.348,12.025,2.421],[14.028,18.339,17.737,2.618,13.101,11.077,-0.446,6.147,9.691,1.55,6.875,23.551,25.145,18.982,6.646,5.223,8.428,17.099,13.236,-2.495,4.419,6.255,5.155,15.067,11.586,0.235,21.961,22.69,17.263,10.194,3.777,22.851,-0.847,18.487,14.59,2.346,7.981,11.538,20.356,14.395,4.5,22.454,12.812,6.711,9.312,9.291,18.202,13.094,13.564,11.88,16.673,3.828,18.653,16.163,30.41,3.941,12.24,4.048,21.524,2.775,11.302,19.372,5.505,12.696,18.01,1.175,9.336,3.172,8.338,19.182,23.705,6.525,13.412,1.485,-1.725,6.102,18.148,5.964,6.523,13.312,9.259,7.342,16.471,11.703,17.031,12.805,11.395,24.501,0.511,2.252,25.464,22.003,17.387,4.843,14.708,16.406,3.484,9.428,3.549,9.72,3.996,18.616,13.286,7.247,-1.28,7.736,17.298,6.275,1.446,13.561,9.708,12.111,-1.802,17.545,21.633,5.134,4.946,3.996,23.645,4.923,20.805,18.946,-0.031,22.339,11.664,1.01,-1.348,22.602,0.938,13.597,5.086,17.121,21.448,17.806,12.368,21.506,8.237,1.429,15.457,12.986,21.364,10.574,5.793,21.403,10.319,24.199,12.722,8.779,10.583,6.379,14.707,14.221,14.041,12.74,12.952,9.977,6.371,18.913,9.532,14.242,4.324,17.108,15.043,10.279,18.294,16.904,4.016,4.859,9.768,29.447,19.939,4.037,17.953,4.248,3.612,12.3,20.213,21.9,4.054,7.049,12.186,17.533,18.395,16.645,2.287,3.742,13.985,11.157,30.529,14.281,12.207,2.54],[13.966,18.371,17.783,2.815,13.335,10.857,-0.456,6.024,9.556,1.26,6.961,23.702,24.902,19.072,6.668,5.169,8.324,17.092,13.169,-2.338,4.44,6.134,5.203,14.983,11.801,0.071,21.94,22.807,17.432,10.172,3.476,22.817,-0.704,18.582,14.406,2.139,7.911,11.441,20.533,14.532,4.558,22.334,12.786,6.481,9.293,9.52,18.36,12.907,13.519,12.095,16.681,3.947,18.638,16.182,30.504,3.953,12.428,3.826,21.596,2.797,11.172,19.44,5.518,12.801,18.411,0.682,9.23,3.449,8.243,19.169,23.819,6.497,13.195,2.104,-1.823,5.917,18.473,6.061,6.737,13.218,9.276,7.156,16.801,11.842,16.751,13.106,10.366,23.988,0.17,2.053,25.444,22.267,17.434,4.873,14.576,15.714,3.743,9.214,3.755,9.979,3.935,18.059,12.705,7.195,-1.17,7.669,17.86,6.437,1.057,13.366,9.913,12.422,-1.249,17.625,21.507,4.588,5.293,3.846,24.152,4.737,20.523,18.628,0.51,22.443,11.758,0.715,-1.257,22.454,1.099,13.917,4.632,16.925,21.316,18.158,12.589,21.483,8.106,1.416,14.93,13.224,21.745,10.382,5.664,21.772,10.139,24.077,12.712,8.823,10.875,6.395,14.675,14.045,14.151,12.955,13.023,10.572,6.518,19.276,10.057,13.756,3.614,17.538,15.108,10.549,18.433,16.856,4.1,4.534,9.592,29.511,20.792,4.257,17.961,4.334,3.55,12.328,20.121,21.67,4.092,6.878,11.944,17.605,19.015,16.825,2.565,3.707,13.859,10.862,30.266,14.661,11.828,2.367],[13.9,18.397,17.723,3.03,13.656,10.574,-0.443,5.761,9.426,1.078,7.034,23.871,24.878,19.099,6.572,5.095,8.284,17.042,13.091,-2.165,4.273,5.855,5.289,14.951,12.189,-0.069,21.884,22.928,17.523,10.143,3.347,22.781,-0.713,18.759,14.324,2.028,7.845,11.424,20.616,14.731,4.467,22.175,12.861,6.416,9.267,9.524,18.505,12.745,13.509,12.237,16.662,4.064,18.657,16.258,30.566,3.998,12.511,3.521,21.605,2.907,11.133,19.527,5.633,12.95,18.692,0.249,9.08,3.523,8.354,18.895,23.708,6.29,13.639,2.174,-2.073,6.232,18.938,6.173,6.467,13.284,9.05,6.582,16.353,11.993,17.032,13.523,10.328,23.177,0.373,1.248,25.623,22.34,17.448,5.069,14.428,15.086,3.76,9.837,3.633,10.275,4.114,17.347,12.77,7.411,-0.91,7.535,18.435,6.329,0.953,13.563,10.701,12.309,-1.692,17.597,21.529,4.577,5.29,3.726,23.952,4.891,20.289,18.909,0.586,22.821,11.776,0.663,-0.886,22.584,1.112,14.016,4.313,17.225,21.15,18.458,12.572,21.742,8.374,1.182,15.159,12.515,20.899,10.061,5.788,21.513,10.097,23.942,12.995,8.452,10.696,6.205,14.684,14.228,13.844,13.37,12.454,10.802,6.374,19.281,10.399,14.027,3.66,17.543,14.856,10.429,18.258,16.957,4.082,4.31,9.893,29.525,20.586,3.985,17.968,4.531,3.778,12.226,20.202,21.982,4.102,7.006,12.648,17.709,19.749,17.053,2.73,3.594,13.938,10.28,30.223,14.743,11.745,1.921],[14.052,18.548,17.664,3.155,13.957,10.403,-0.365,5.642,9.459,1.024,7.098,23.834,25.039,19.032,6.386,5.042,8.37,16.778,13.015,-2.122,4.191,5.547,5.325,14.853,12.51,-0.119,21.861,22.975,17.671,10.1,3.37,22.681,-0.797,19.021,14.482,2.037,7.896,11.396,20.553,14.975,4.285,21.937,12.982,6.499,9.232,9.378,18.593,12.817,13.417,12.344,16.678,4.191,18.714,16.341,30.589,4.058,12.486,3.213,21.516,2.794,11.156,19.484,5.823,13.123,18.582,0.949,8.876,3.764,8.145,18.949,23.719,6.074,13.783,1.981,-2.112,6.421,18.535,5.488,6.197,12.935,8.547,6.348,16.128,12.514,17.468,13.511,10.75,23.013,0.7,1.042,25.051,22.438,17.384,4.813,14.545,15.357,3.704,9.959,3.775,10.84,3.915,17.559,13.011,7.361,-0.592,7.097,18.081,6.259,0.668,14.097,10.965,11.958,-1.688,17.772,21.838,4.739,5.059,3.537,24.017,4.879,20.504,19.255,0.566,22.597,11.391,0.609,-0.915,22.619,0.873,13.432,4.647,17.659,21.168,18.168,12.25,21.879,8.603,1.085,15.333,12.801,20.526,10.122,5.684,21.307,10.184,23.267,13.151,8.198,9.462,6.041,14.758,14.745,12.762,13.054,12.33,10.209,6.13,18.914,10.294,14.246,3.498,17.469,14.966,10.524,18.159,17.05,3.736,3.805,10.27,29.887,20.261,3.613,17.8,4.525,4.271,12.437,19.979,22.233,4.077,7.372,13.114,17.766,19.862,17.096,2.705,4.03,14.01,9.641,30.44,14.95,12.526,1.655],[14.247,18.791,17.707,3.139,14.117,10.489,-0.255,5.633,9.554,1.242,7.037,23.726,25.077,18.785,6.096,4.998,8.33,16.586,13.007,-2.188,4.166,5.298,5.306,14.891,12.613,-0.185,21.807,22.97,17.727,9.992,3.397,22.528,-0.9,19.248,14.565,2.051,7.956,11.351,20.404,15.231,4.054,21.693,13.064,6.594,9.103,9.225,18.497,12.901,13.31,12.499,16.706,4.22,18.793,16.355,30.709,4.099,12.484,2.928,21.398,2.524,11.204,19.169,5.992,13.33,18.35,1.271,9.153,3.941,8.346,19.243,23.712,6.387,13.877,2.045,-1.826,6.389,18.327,5.986,6.571,13.259,8.649,6.721,16.34,12.587,17.59,13.515,10.803,23.288,0.846,1.42,25.146,22.424,17.186,4.185,14.703,15.875,3.962,9.93,3.797,10.898,3.819,17.853,12.863,7.601,-1.218,6.605,17.965,6.109,0.684,13.682,10.212,12.027,-1.235,17.372,22.099,4.1,5.47,3.652,24.301,4.453,20.812,19.35,0.884,22.548,11.607,0.667,-1.356,22.16,0.697,13.475,4.692,18.126,21.111,18.995,12.621,21.547,8.586,1.312,15.081,13.681,20.724,10.359,5.565,21.519,10.359,23.363,13.413,8.495,8.113,5.92,14.934,15.428,12.933,12.974,12.262,10.142,6.551,19.16,9.826,14.392,3.389,17.527,15.563,10.723,18.221,17.138,4.196,3.75,10.296,29.769,20.083,3.372,17.512,4.898,4.416,12.503,20.002,21.825,4.166,7.501,13.128,18.066,19.391,17.247,2.87,3.762,14.258,10.094,30.024,14.998,12.16,1.541],[14.402,18.998,17.824,3.097,14.089,10.644,-0.239,5.777,9.76,1.547,7.061,23.714,24.957,18.598,5.986,4.95,8.139,16.682,13.063,-2.3,4.051,5.067,5.404,15.064,12.497,-0.19,21.803,23.029,17.634,9.779,3.407,22.329,-1.089,19.606,14.438,1.989,8.029,11.398,20.433,15.621,3.923,21.647,13.227,6.675,9.041,9.077,18.315,13.002,13.309,12.58,16.756,4.199,18.871,16.337,30.895,4.12,12.356,2.745,21.388,2.322,11.389,18.801,6.157,13.407,18.547,0.915,9.294,3.414,8.601,18.863,23.433,6.563,14.047,1.906,-1.472,6.389,18.525,6.337,6.193,13.488,8.909,6.44,16.494,12.485,17.502,13.776,10.849,23.333,0.672,1.994,26.115,21.93,16.863,4.129,14.588,16.083,3.986,9.87,3.919,10.658,3.802,17.687,12.792,7.462,-0.991,6.656,18.025,6.424,0.763,14.097,9.556,12.733,-1.264,17.554,21.805,3.787,5.71,3.801,24.095,4.751,20.443,19.025,0.534,22.661,11.603,0.608,-1.486,22.228,0.435,13.812,4.521,17.94,20.784,19.801,12.725,21.367,8.401,1.229,15.455,13.078,20.984,9.977,5.931,21.667,10.335,23.345,13.339,8.581,7.7,5.746,14.94,15.882,13.219,13.628,12.178,10.63,6.939,19.031,9.051,14.672,3.346,17.298,15.394,10.796,18.412,17.122,4.537,3.693,10.049,29.623,19.421,3.535,17.046,5.021,4.293,13.168,20.282,21.042,3.964,7.346,13.45,18.118,19.044,17.075,2.621,3.48,14.024,10.559,29.886,15.12,11.36,1.184],[14.273,19.137,17.892,2.988,14.023,10.635,-0.292,5.939,9.984,1.727,7.136,23.591,24.84,18.634,6.071,4.848,7.938,16.84,13.138,-2.24,4.055,4.944,5.652,15.327,12.386,-0.223,21.777,23.144,17.437,9.541,3.41,22.184,-1.322,19.943,14.242,1.769,8.083,11.381,20.7,15.973,3.905,21.767,13.416,6.793,9.16,8.844,18.092,13.162,13.32,12.745,16.885,4.051,18.853,16.253,31.019,4.108,12.214,2.664,21.437,2.371,11.59,18.584,6.292,13.544,19.052,0.899,9.093,3.198,8.722,18.568,23.625,6.609,13.94,1.673,-1.754,6.207,18.867,5.961,5.946,13.129,8.88,5.768,16.53,12.474,17.508,13.678,11.201,23.756,0.513,2.014,25.556,21.952,16.928,4.397,14.582,16.457,3.948,9.732,3.942,10.544,3.753,17.871,13.053,7.29,-0.873,6.643,17.839,6.267,1.191,13.964,9.108,12.926,-1.954,17.726,21.644,4.141,5.632,3.434,23.945,4.722,20.332,18.724,0.35,22.579,11.331,0.382,-1.505,22.032,0.454,13.733,4.577,18.266,20.762,19.771,12.276,21.717,8.249,1.04,14.994,12.628,20.476,9.881,6.291,21.571,10.843,23.249,12.87,8.601,8.042,5.724,15.17,15.782,13.303,13.274,12.242,10.508,6.974,18.721,8.629,14.614,2.989,16.98,14.947,11.159,18.692,17.244,4.105,3.176,10.346,29.997,19.418,3.634,16.72,4.81,3.986,13.602,20.349,20.964,3.765,7.524,12.994,17.919,18.762,16.637,2.497,3.397,13.692,10.555,30.509,15.267,11.715,1.042],[13.959,19.265,17.886,2.78,13.978,10.643,-0.366,5.999,10.095,1.769,7.053,23.484,24.644,18.714,6.09,4.696,7.86,16.941,13.283,-2.254,4.177,4.945,5.855,15.548,12.32,-0.192,21.653,23.184,17.194,9.352,3.346,22.064,-1.462,20.177,13.893,1.507,8.068,11.394,20.908,16.147,3.819,21.857,13.298,6.967,9.305,8.506,17.895,13.333,13.211,12.91,16.969,3.794,18.778,16.185,31.249,4.032,12.136,2.594,21.567,2.513,11.663,18.515,6.373,13.745,19.421,1.237,9.286,3.55,8.698,19.305,23.839,6.657,13.556,1.508,-1.945,6.098,18.957,6.292,6.471,12.98,8.866,5.254,16.483,12.603,17.591,13.231,10.974,24.137,0.541,1.815,25.148,21.981,17.065,4.921,14.877,16.798,3.749,9.409,4.289,10.513,4.178,18.165,13.321,7.235,-0.655,6.749,17.902,5.614,1.343,13.931,8.918,12.416,-1.802,17.615,22.455,3.964,5.839,3.146,24.275,4.521,20.518,18.709,0.049,22.6,10.888,0.02,-1.536,21.504,0.155,13.486,4.431,18.749,20.841,19.683,11.804,22.202,7.902,1.104,14.749,13.562,20.425,10.421,6.159,21.718,11.416,23.234,12.828,8.919,8.933,5.665,16.046,15.762,14.024,13.293,12.402,10.44,6.715,18.871,8.646,14.364,2.943,17.03,15.044,11.542,18.778,17.081,3.646,2.978,10.71,30.029,19.422,3.545,16.855,4.852,3.607,13.55,20.177,21.305,4.127,7.74,12.89,17.84,18.622,16.769,2.666,3.52,13.676,10.517,30.521,15.578,11.764,0.994],[13.82,19.455,17.825,2.629,14.03,10.638,-0.377,5.989,10.048,1.77,7.036,23.533,24.356,18.795,6.059,4.468,7.731,16.874,13.477,-2.272,4.36,5.064,6.023,15.747,12.061,-0.136,21.494,23.392,17.07,9.089,3.185,21.888,-1.597,20.402,13.448,1.388,8.024,11.428,20.873,16.157,3.621,21.994,13.12,7.012,9.488,8.132,17.979,13.55,13.158,13.087,17.01,3.672,18.639,16.288,31.424,3.923,12.088,2.438,21.756,2.645,11.582,18.514,6.402,13.966,19.267,1.138,9.278,3.641,8.837,19.63,23.798,6.992,13.489,1.204,-2.042,6.087,18.617,6.692,6.379,12.751,8.969,5.216,16.38,12.789,17.537,13.109,11.27,23.949,0.645,1.802,25.133,22.211,17.082,5.287,14.988,17.026,3.687,9.424,4.626,10.467,4.078,18.392,13.701,7.758,-0.757,5.772,17.682,5.627,1.667,14.507,9.655,11.889,-1.58,17.8,22.485,3.797,6.173,3.492,24.558,5.381,20.353,18.516,-0.107,22.414,10.85,-0.145,-0.855,21.598,-0.18,13.251,4.362,18.963,20.362,19.789,12.137,22.01,8.076,0.776,14.748,13.437,20.336,10.56,6.162,21.997,12.344,23.328,13.138,8.593,9.604,5.459,16.685,16.298,14.923,13.34,12.142,10.811,6.927,19.118,8.672,14.287,3.262,16.857,15.108,11.455,18.615,16.917,3.373,3.27,10.506,30.157,19.187,3.636,16.88,5.122,3.438,13.561,20.198,21.515,4.304,7.598,13.411,17.944,18.936,16.987,2.299,3.982,13.674,10.617,30.423,15.761,11.552,0.864],[13.938,19.592,17.777,2.627,14.191,10.613,-0.456,5.963,9.963,1.731,7.083,23.693,24.027,18.807,6.091,4.353,7.595,16.839,13.621,-2.303,4.612,4.952,6.34,15.989,11.651,-0.021,21.236,23.652,17.073,9.073,3.087,21.686,-1.696,20.576,13.165,1.387,7.92,11.535,20.743,16.309,3.566,22.116,13.067,6.9,9.588,7.877,18.219,13.833,13.182,13.284,17.112,3.63,18.492,16.51,31.436,3.833,12.111,2.333,21.869,2.825,11.438,18.436,6.464,14.13,19.015,1.192,9.08,3.164,8.541,18.986,23.717,7.043,13.562,1.073,-1.919,6.264,19.098,6.774,6.214,12.86,8.964,5.476,16.5,12.71,17.356,13.425,11.872,23.561,0.643,1.612,25.14,22.063,16.95,5.125,15.036,17.525,3.462,9.316,4.426,9.949,3.799,17.745,13.778,7.72,-0.825,6.29,17.519,5.431,1.625,14.597,9.937,11.531,-1.877,17.953,22.524,3.756,6.3,3.467,24.752,5.795,20.144,18.567,0.118,22.284,9.791,-0.068,-1.065,21.567,-0.294,12.77,4.259,19.088,20.114,20.316,12.337,21.607,8.493,0.801,14.069,12.523,20.801,10.252,6.274,21.84,12.887,23.68,13.193,8.624,9.143,5.341,15.836,16.027,14.689,13.295,11.735,11.149,7.506,19.295,8.127,14.692,2.886,16.996,15.435,11.627,17.868,16.828,3.216,2.982,10.531,29.917,19.498,3.698,17.202,5.023,3.598,13.936,20.568,21.879,3.664,7.051,13.787,18.243,19.28,16.884,2.119,4.162,13.801,10.367,30.833,15.914,11.563,0.901],[14.221,19.733,17.802,2.665,14.318,10.671,-0.497,5.929,9.846,1.662,6.993,23.787,23.793,18.569,6.159,4.227,7.469,16.756,13.592,-2.459,4.827,4.875,6.594,16.186,11.299,0.093,21.07,23.762,17.25,9.052,3.109,21.621,-1.757,20.809,12.861,1.382,7.841,11.571,20.772,16.352,3.587,22.19,13.003,6.832,9.539,7.633,18.376,14.027,13.12,13.495,17.153,3.483,18.431,16.611,31.342,3.728,12.303,2.26,21.955,3.017,11.265,18.457,6.466,14.268,19.217,1.396,8.954,3.036,8.647,18.346,23.522,7.089,13.287,1.159,-1.999,6.443,19.236,6.59,6.204,13.359,8.918,6.086,16.561,12.715,17.238,13.908,11.592,23.24,0.428,1.5,25.091,22.366,16.986,4.643,15.188,17.884,3.39,9.118,4.876,9.694,4.182,17.843,13.823,7.105,-0.894,6.379,17.552,5.329,1.763,14.895,10.56,11.548,-1.879,17.985,22.691,3.692,6.575,3.039,24.87,5.785,19.824,18.779,0.451,22.193,9.336,-0.155,-2.467,21.072,-0.037,13.393,4.391,18.955,20.381,20.991,12.231,21.814,8.027,1.193,13.78,13.186,21.278,10.45,5.805,21.946,13.03,23.802,12.85,8.615,8.377,5.363,15.805,15.962,13.957,13.227,12.023,10.891,7.224,19.047,8.066,15.215,2.554,17.219,15.531,11.607,17.056,16.631,3.554,2.726,10.217,30.004,19.494,3.957,17.502,4.791,3.699,14.218,20.565,21.953,3.29,6.991,14.223,18.357,18.906,17.127,2.51,3.965,13.452,10.504,31.276,16.058,11.483,0.55],[14.371,19.833,17.87,2.687,14.409,10.754,-0.48,5.806,9.871,1.648,6.829,23.815,23.717,18.251,6.187,4.12,7.368,16.894,13.551,-2.595,5.012,4.871,6.746,16.446,11.171,0.276,21.042,23.85,17.479,9.123,3.275,21.759,-1.919,20.987,12.593,1.318,7.666,11.559,21.058,16.259,3.635,22.114,12.976,6.685,9.527,7.415,18.359,13.952,13.103,13.682,17.141,3.376,18.302,16.506,31.259,3.554,12.413,2.093,21.957,3.184,11.172,18.496,6.377,14.372,19.778,1.614,8.91,3.207,8.695,18.41,23.34,6.774,13.782,1.146,-2.21,5.958,19.383,6.591,5.706,13.038,8.955,6.641,16.389,12.742,17.618,14.074,11.444,22.84,0.335,1.755,24.886,22.749,16.86,4.298,15.024,17.663,3.474,8.948,5.073,9.704,4.605,17.811,13.693,7.266,-1.064,6.342,17.696,5.35,1.649,15.457,10.718,11.52,-1.746,17.486,22.718,3.31,6.996,3.115,24.551,5.564,20.105,19.208,0.274,22.32,9.702,-0.264,-2.838,21.098,-0.166,13.253,4.659,19.362,20.557,21.027,11.858,22.079,7.415,0.938,14.119,13.358,21.328,10.647,5.592,22.202,13.112,23.818,12.202,8.242,7.243,5.346,16.316,16.405,14.462,13.149,12.282,10.604,7.031,19.486,8.457,15.192,2.571,17.441,15.343,11.933,16.435,16.606,3.909,3.036,9.975,29.8,19.369,4.533,17.82,4.825,3.566,13.905,20.359,21.87,3.503,7.255,14.117,18.158,18.249,17.238,2.564,3.873,13.41,10.657,32.0,16.182,11.982,0.485],[14.304,19.929,18.011,2.632,14.372,10.836,-0.521,5.625,9.943,1.761,6.57,23.735,23.709,18.152,6.159,4.114,7.38,17.023,13.522,-2.533,5.114,4.975,6.722,16.811,11.18,0.424,21.077,23.882,17.695,9.246,3.414,22.04,-2.134,21.041,12.439,1.152,7.356,11.51,21.382,16.287,3.673,22.019,12.911,6.65,9.519,7.28,18.486,13.769,13.093,13.915,17.074,3.376,18.188,16.424,31.265,3.278,12.536,2.027,21.752,3.369,11.111,18.556,6.289,14.264,20.175,1.56,9.194,2.976,8.739,18.399,23.346,6.405,14.383,1.116,-2.013,5.783,19.182,6.045,5.644,12.806,9.099,7.139,16.416,12.701,17.839,13.884,11.056,22.21,0.592,2.019,24.97,23.134,16.464,4.444,14.94,17.52,3.736,9.075,5.006,9.535,4.75,17.848,13.562,7.673,-1.196,6.014,18.128,5.408,2.122,15.548,10.929,11.328,-2.05,17.975,23.116,3.268,7.52,3.542,25.11,5.829,20.533,18.936,0.425,22.351,9.865,-0.415,-2.886,21.517,-0.373,12.321,4.701,19.755,20.306,20.446,11.909,22.123,7.448,0.84,14.313,12.601,21.062,10.419,5.448,22.49,13.046,23.764,12.272,8.225,6.417,5.499,15.983,16.197,15.046,13.702,12.035,10.84,6.85,19.569,8.456,14.603,2.922,17.688,15.182,12.114,16.099,16.323,3.65,2.612,9.956,29.607,19.225,4.784,17.93,4.865,3.014,14.054,20.426,22.027,3.324,7.519,13.84,18.056,18.157,17.144,2.196,4.025,13.975,10.457,32.357,16.036,11.856,0.502],[14.199,20.066,18.169,2.605,14.216,10.721,-0.538,5.31,9.913,1.97,6.346,23.62,23.801,18.211,6.245,4.159,7.56,17.082,13.444,-2.505,5.159,5.057,6.625,17.14,11.163,0.653,21.139,24.022,17.81,9.411,3.288,22.243,-2.247,21.01,12.294,1.06,7.262,11.476,21.493,16.333,3.777,21.96,12.82,6.873,9.42,7.138,18.715,13.579,12.992,13.961,17.0,3.42,18.095,16.404,31.328,2.787,12.693,1.955,21.515,3.438,10.976,18.64,6.308,14.161,20.088,0.8,8.928,2.872,8.687,18.042,23.482,6.302,13.985,1.077,-1.706,6.091,19.229,5.787,5.954,12.717,9.038,7.204,16.715,12.689,17.983,13.866,11.245,22.114,0.856,2.307,25.277,23.195,16.751,4.426,14.775,18.12,4.046,9.188,4.989,9.523,4.63,17.87,13.841,8.091,-0.844,6.224,17.953,5.551,2.186,15.91,11.133,11.245,-1.987,18.379,22.958,3.377,7.636,3.702,25.296,6.059,19.831,19.073,0.471,22.362,9.475,-0.344,-3.327,21.677,-0.51,11.621,4.691,19.297,21.003,20.406,12.167,22.404,7.583,0.571,14.085,12.537,20.873,10.206,5.519,22.554,13.031,23.468,12.787,8.008,6.427,5.551,16.587,16.067,14.526,13.227,12.139,10.727,6.884,19.68,8.009,14.599,2.969,18.094,15.217,12.233,16.234,16.264,3.339,1.794,10.061,29.824,19.604,4.746,18.081,5.163,2.695,14.366,20.332,22.038,2.879,7.048,14.247,18.027,18.65,16.458,1.779,4.133,14.423,10.134,32.671,15.756,12.428,0.77],[14.036,20.31,18.225,2.654,14.152,10.593,-0.428,5.041,9.783,2.062,6.373,23.553,23.958,18.176,6.359,4.194,7.964,17.063,13.405,-2.388,5.187,5.116,6.536,17.493,11.154,0.683,21.11,24.106,17.745,9.264,3.082,22.356,-2.425,20.757,12.07,1.121,7.41,11.556,21.454,16.401,3.878,21.903,12.672,7.14,9.12,6.99,18.98,13.618,12.969,13.951,16.849,3.439,18.046,16.441,31.444,2.355,12.919,1.927,21.534,3.338,10.753,18.802,6.396,14.143,20.058,1.493,8.674,2.99,8.744,17.766,23.303,5.941,13.257,1.538,-1.799,6.27,19.307,5.563,6.096,12.873,8.929,6.832,16.801,12.454,17.837,13.698,11.894,22.062,1.029,2.415,25.611,22.666,16.662,4.594,14.972,19.052,4.283,9.39,4.916,9.509,4.361,18.316,13.823,8.034,-0.998,5.926,17.685,5.401,2.256,16.177,11.08,11.092,-1.677,18.37,22.888,3.75,7.535,3.456,24.946,5.782,19.656,19.51,0.851,22.212,9.533,-0.158,-3.164,21.523,-0.758,11.714,4.38,19.113,21.131,21.321,12.321,21.764,7.476,0.829,13.971,13.413,20.673,10.063,5.867,22.503,12.468,23.571,12.377,8.058,6.599,5.534,16.617,16.142,14.258,12.848,11.791,10.37,7.339,19.979,7.485,14.909,2.922,18.457,15.154,12.287,16.784,16.39,3.195,2.09,10.057,30.0,20.035,4.677,18.159,5.176,2.918,14.151,20.276,21.981,2.38,6.848,14.26,18.082,18.624,16.468,2.004,3.987,14.371,10.073,32.692,15.524,12.336,0.481],[13.747,20.499,18.059,2.694,14.085,10.614,-0.37,4.828,9.717,2.245,6.61,23.487,24.067,17.927,6.411,4.214,8.452,17.192,13.453,-2.21,5.139,5.187,6.446,17.861,11.112,0.629,20.982,24.069,17.641,8.938,2.888,22.36,-2.743,20.708,11.955,1.294,7.576,11.45,21.281,16.378,3.869,21.961,12.589,7.431,8.82,6.777,19.237,13.847,12.835,13.94,16.709,3.509,18.078,16.491,31.559,2.163,12.962,1.988,21.714,3.241,10.504,18.988,6.568,14.056,20.391,2.025,8.808,3.38,8.516,18.211,23.573,5.815,12.99,1.479,-1.903,5.886,19.521,5.632,6.117,12.883,8.997,6.706,16.498,12.389,17.643,13.78,11.931,22.456,0.772,1.912,25.766,22.471,16.443,4.549,15.206,19.418,3.893,9.999,4.878,9.517,4.032,18.137,13.476,8.108,-1.022,5.676,17.771,5.797,1.887,16.486,10.608,11.171,-1.882,18.339,22.971,3.605,7.164,3.262,24.65,5.757,20.058,19.102,1.139,22.329,9.474,-0.125,-2.747,21.713,-0.982,12.01,3.967,18.955,20.847,20.967,12.145,22.061,7.819,1.178,13.565,13.338,21.219,9.97,5.89,22.481,12.665,23.495,12.537,8.063,7.181,5.705,16.628,16.275,14.327,12.729,11.615,9.884,7.409,20.076,7.556,15.048,2.94,18.184,15.408,12.605,17.486,16.215,3.452,2.561,9.974,30.197,19.545,4.505,18.294,4.851,2.72,13.946,20.248,22.559,2.258,7.174,14.205,18.11,18.226,16.608,2.429,3.967,14.624,9.851,32.587,15.82,12.108,0.306],[13.511,20.473,17.785,2.701,14.062,10.806,-0.519,4.838,9.64,2.395,6.702,23.499,24.267,17.758,6.433,4.295,8.879,17.324,13.483,-2.174,4.939,5.32,6.38,18.05,11.253,0.496,20.798,23.811,17.546,8.692,2.795,22.375,-2.966,20.826,11.884,1.388,7.699,11.266,21.12,16.273,3.772,22.005,12.532,7.594,8.76,6.643,19.314,13.983,12.63,13.971,16.552,3.652,18.151,16.625,31.497,1.972,12.867,2.165,21.919,3.259,10.346,19.167,6.678,13.996,20.816,1.464,9.346,3.399,8.406,18.255,24.033,6.11,12.729,1.151,-1.874,5.99,19.845,5.755,6.4,12.118,8.969,6.367,16.358,12.729,17.835,13.445,11.476,22.51,0.84,2.237,25.744,22.77,16.436,4.781,15.248,19.662,3.234,10.557,4.797,9.511,4.228,18.129,13.487,8.816,-0.435,5.331,17.847,5.909,1.959,16.666,10.366,11.522,-1.868,18.552,22.701,3.569,6.743,3.136,25.236,5.905,20.15,18.579,0.604,22.368,8.888,-0.145,-2.578,21.658,-1.609,12.672,3.783,19.183,21.087,20.375,11.57,22.369,8.037,0.986,13.185,12.637,21.214,9.796,6.255,22.111,12.719,23.692,12.721,7.968,7.736,5.505,17.272,16.527,15.04,13.062,12.097,9.752,7.511,19.994,7.506,14.803,2.765,18.07,15.007,12.822,18.318,16.379,3.903,2.94,9.459,30.374,19.144,4.588,17.91,5.082,2.686,13.758,20.461,22.827,2.685,7.846,14.159,18.23,17.967,16.515,2.845,3.85,14.558,9.608,32.941,15.787,12.316,0.38],[13.38,20.482,17.658,2.79,14.042,11.004,-0.716,5.072,9.685,2.506,6.629,23.591,24.538,17.731,6.49,4.276,9.23,17.385,13.504,-2.245,4.756,5.343,6.38,18.096,11.451,0.258,20.731,23.499,17.466,8.54,2.997,22.477,-3.132,20.839,11.915,1.416,7.829,10.987,21.087,16.299,3.587,21.888,12.469,7.632,8.786,6.559,19.261,14.053,12.615,14.068,16.486,3.923,18.235,16.643,31.313,1.774,12.821,2.467,22.041,3.448,10.159,19.065,6.891,14.005,20.488,1.784,8.96,2.671,8.625,17.817,24.025,6.291,12.704,1.386,-2.191,6.204,19.59,5.724,6.817,12.044,9.304,6.043,16.202,12.612,17.26,13.229,11.324,22.23,0.699,2.372,25.948,22.439,15.942,4.773,14.774,19.668,2.936,10.61,5.03,9.632,4.573,18.514,13.845,8.91,-0.704,5.473,18.305,5.841,1.982,16.758,10.338,11.737,-1.772,18.573,22.784,3.941,6.443,3.186,25.375,5.468,19.567,19.013,0.672,21.555,8.729,-0.115,-2.245,21.574,-2.039,12.882,3.548,19.152,21.157,20.894,11.207,21.684,7.844,0.506,13.238,12.527,20.843,9.747,6.312,21.931,12.47,23.671,12.415,8.071,7.546,5.414,17.131,16.517,15.337,12.999,11.727,10.126,7.531,20.022,7.412,14.894,2.877,18.076,15.252,13.043,18.059,16.658,3.793,3.289,8.901,30.533,19.825,4.988,17.902,5.29,2.379,13.135,20.67,22.978,2.696,8.056,14.268,18.254,18.094,16.591,2.804,4.045,14.471,10.025,33.064,15.917,12.392,0.789],[13.45,20.401,17.638,2.838,13.891,11.152,-0.941,5.184,9.801,2.578,6.642,23.532,24.875,17.643,6.47,4.149,9.263,17.455,13.493,-2.304,4.717,5.366,6.531,18.078,11.468,0.051,20.71,23.402,17.523,8.594,3.281,22.587,-3.264,20.742,12.095,1.261,7.859,10.652,21.034,16.528,3.5,21.698,12.448,7.574,8.788,6.477,19.171,14.135,12.592,14.197,16.378,4.161,18.326,16.591,31.23,1.575,13.059,2.885,22.031,3.743,9.945,18.968,7.033,13.986,19.911,1.841,8.871,2.79,8.58,17.772,23.928,6.116,13.103,1.822,-2.349,5.873,19.422,5.856,6.631,12.067,9.431,5.98,16.407,12.308,16.822,13.759,11.106,22.503,0.464,2.656,25.762,22.717,15.844,5.153,14.97,19.258,2.907,10.821,4.892,9.63,4.048,18.766,13.961,8.486,-0.863,5.456,17.713,5.689,1.539,16.719,10.248,11.889,-2.033,18.279,22.452,3.95,6.631,3.424,25.064,5.462,19.159,18.947,0.503,21.787,8.934,0.427,-2.155,21.809,-2.143,12.636,3.599,19.206,21.256,20.758,11.436,21.709,8.144,0.692,13.726,12.846,20.64,9.844,6.282,22.38,12.056,23.464,12.832,8.621,6.978,5.332,16.277,16.107,14.589,12.498,11.081,10.114,7.558,20.14,7.16,15.392,2.68,18.343,15.275,13.085,17.339,16.95,3.728,3.279,8.664,30.443,19.705,4.925,17.891,5.828,2.489,13.027,20.392,22.858,2.52,8.025,14.401,18.19,18.283,16.907,2.573,4.326,14.713,10.04,32.927,15.665,12.653,1.205],[13.431,20.188,17.679,2.926,13.843,11.13,-1.11,4.992,9.823,2.548,6.674,23.451,25.309,17.606,6.538,3.961,9.184,17.646,13.483,-2.321,4.575,5.327,6.799,18.092,11.506,-0.235,20.776,23.462,17.371,8.787,3.382,22.789,-3.355,20.556,12.347,1.266,7.92,10.51,21.116,16.585,3.531,21.626,12.402,7.492,8.697,6.248,19.072,14.183,12.465,14.234,16.274,4.283,18.429,16.525,31.342,1.489,13.447,3.263,21.827,3.858,9.807,18.83,7.152,13.838,19.969,1.476,9.272,3.634,8.468,17.77,24.055,6.229,12.755,1.714,-2.373,5.743,19.273,5.75,6.502,12.191,9.412,5.652,16.067,12.283,17.172,13.446,11.289,22.216,0.539,3.022,25.688,22.907,16.021,5.199,15.083,18.732,3.267,10.884,5.126,9.889,4.342,18.789,13.715,8.203,-0.822,5.541,17.943,5.685,1.087,16.483,10.21,11.936,-1.635,18.433,22.35,3.766,7.134,3.412,24.468,5.906,19.79,18.634,0.337,21.869,9.037,-0.111,-3.102,22.111,-2.688,12.392,4.218,18.997,21.368,20.472,11.392,22.001,8.304,0.747,13.983,12.641,20.753,9.593,6.039,22.081,11.523,23.306,13.147,8.784,7.114,5.321,16.698,16.357,14.291,12.586,11.887,9.678,7.768,19.843,7.466,15.842,2.461,18.193,15.071,13.196,17.54,16.91,4.065,3.528,8.735,29.937,19.49,5.13,18.109,5.823,2.518,13.07,20.319,22.772,2.657,7.994,13.883,18.229,18.389,16.401,2.732,4.61,15.013,9.678,32.766,15.705,12.615,1.528],[13.259,19.986,17.597,2.997,13.834,11.026,-1.039,4.744,9.847,2.432,6.742,23.364,25.676,17.674,6.537,3.923,9.155,18.026,13.422,-2.276,4.509,5.253,7.11,18.073,11.644,-0.572,20.908,23.503,17.21,9.043,3.42,22.952,-3.633,20.403,12.525,1.236,8.022,10.415,21.142,16.496,3.601,21.627,12.349,7.422,8.528,6.147,18.924,14.207,12.364,14.067,16.231,4.357,18.432,16.472,31.442,1.447,13.639,3.537,21.669,3.867,9.71,18.823,7.201,13.695,20.148,1.976,9.116,4.103,8.457,17.858,24.308,5.842,12.762,1.995,-2.522,5.848,18.922,5.286,6.286,11.926,9.252,5.645,16.18,12.307,17.353,13.58,11.62,21.96,0.433,2.471,26.09,22.371,16.059,5.14,14.785,18.902,3.443,10.562,5.53,9.913,4.508,19.148,13.598,8.261,-0.645,5.627,17.943,5.711,0.866,16.501,10.43,11.691,-1.554,18.633,22.774,3.382,7.805,3.45,24.66,5.523,20.195,18.63,0.516,21.684,8.726,-0.596,-3.091,22.968,-2.244,13.078,4.621,18.536,21.348,20.5,11.125,21.802,8.499,1.48,13.926,12.09,21.143,9.484,6.108,21.692,11.288,23.417,13.326,8.126,7.502,5.327,17.379,16.671,14.831,12.773,11.993,9.833,7.68,19.753,6.982,15.74,2.604,17.831,15.061,13.705,17.568,16.851,4.155,3.877,9.15,30.151,19.076,5.42,17.753,5.456,2.382,13.146,20.293,23.031,2.686,8.307,13.924,17.996,18.42,16.213,2.768,4.402,15.213,9.63,32.7,15.457,12.962,1.726],[13.101,19.858,17.504,3.161,13.932,10.891,-0.877,4.356,9.825,2.352,6.778,23.227,25.958,17.647,6.498,4.034,9.152,18.486,13.363,-2.147,4.504,5.169,7.336,18.057,11.759,-0.717,20.849,23.661,17.229,9.277,3.433,23.144,-3.808,20.49,12.618,1.292,8.142,10.29,20.943,16.26,3.685,21.837,12.222,7.301,8.49,6.162,18.652,14.302,12.38,13.952,16.21,4.375,18.368,16.462,31.499,1.415,13.705,3.763,21.749,3.757,9.714,18.879,7.217,13.578,19.758,1.773,8.922,3.882,8.619,18.057,24.372,5.186,13.115,1.946,-2.345,6.272,18.949,5.18,6.165,11.584,9.346,5.641,16.141,12.276,16.947,13.626,12.034,22.43,0.553,1.972,26.544,21.976,15.972,5.192,15.038,19.35,3.813,10.651,6.012,9.962,3.553,19.695,13.471,8.27,-0.67,5.653,17.432,5.079,0.513,16.552,10.989,11.653,-2.018,19.054,22.42,3.384,8.186,3.798,24.993,5.633,19.913,18.683,0.306,21.621,8.477,-0.26,-3.611,23.419,-2.165,13.415,4.702,18.726,21.372,20.396,10.964,21.897,8.637,1.067,13.939,12.382,20.947,9.366,6.413,22.215,10.994,23.486,12.975,7.949,7.814,5.25,16.63,16.426,15.263,12.337,11.045,9.934,7.714,19.851,6.376,15.351,2.543,17.956,14.961,13.585,17.444,16.725,3.885,4.073,8.732,30.352,19.168,5.29,17.525,5.634,2.143,13.297,20.13,22.788,2.967,8.043,14.269,18.007,18.186,16.251,2.761,4.162,15.436,9.719,32.943,15.494,12.893,2.017],[13.207,19.804,17.374,3.287,14.07,11.026,-0.77,3.988,9.706,2.213,6.828,23.26,26.098,17.546,6.594,4.151,9.163,18.846,13.447,-2.179,4.443,5.256,7.423,17.968,11.734,-0.845,20.703,23.829,17.331,9.476,3.365,23.373,-3.942,20.594,12.595,1.302,8.174,10.175,20.867,15.961,3.674,22.026,12.071,7.043,8.616,6.209,18.328,14.408,12.301,14.129,16.158,4.218,18.333,16.358,31.48,1.425,13.706,4.005,21.868,3.528,9.689,18.902,7.205,13.541,19.17,1.418,9.212,3.733,8.548,17.868,24.49,4.925,12.775,1.984,-1.764,6.363,18.952,4.897,6.245,11.892,9.344,5.792,15.878,12.546,16.662,13.799,11.928,22.555,0.935,2.06,26.479,21.954,15.662,5.169,15.029,19.346,3.876,10.981,6.02,10.057,3.74,20.206,13.458,8.518,-0.583,5.231,18.079,4.579,0.382,16.602,11.264,11.727,-1.746,18.931,22.559,3.377,8.487,3.911,24.996,5.559,19.438,18.698,0.031,21.198,8.562,0.117,-3.981,23.555,-2.573,12.586,4.579,19.28,21.508,20.817,10.998,21.584,8.7,0.547,13.982,12.641,20.998,9.455,7.039,22.063,10.302,23.6,12.262,8.765,7.846,5.503,16.031,15.599,15.387,12.471,11.399,9.705,7.751,19.333,6.707,15.358,2.561,18.267,15.144,12.991,17.558,16.593,3.885,4.65,8.6,30.267,19.796,5.064,17.92,5.694,1.874,13.247,20.386,22.536,2.843,8.52,14.038,18.186,17.993,16.099,2.786,4.153,15.459,9.626,33.147,15.416,12.865,2.383],[13.409,19.634,17.236,3.454,14.121,11.298,-0.74,3.852,9.732,2.073,6.882,23.432,25.979,17.553,6.768,4.187,9.248,18.901,13.494,-2.237,4.407,5.289,7.376,17.849,11.52,-1.105,20.594,23.767,17.539,9.58,3.357,23.539,-4.119,20.715,12.396,1.241,8.167,9.978,20.79,15.659,3.699,22.178,12.098,6.851,8.744,6.316,18.043,14.536,12.267,14.307,16.123,3.972,18.256,16.203,31.387,1.228,13.755,4.33,22.07,3.472,9.652,19.058,7.283,13.517,19.427,1.208,9.029,3.439,8.45,17.713,24.91,5.227,12.681,2.253,-1.678,5.861,18.562,4.477,6.605,11.943,9.426,6.358,16.364,12.628,16.536,13.982,11.764,22.04,0.968,2.203,25.844,22.887,15.695,5.225,15.044,19.281,3.461,11.064,5.692,9.666,4.355,20.431,14.071,8.711,-0.593,5.409,18.086,4.799,0.382,16.503,11.352,12.057,-1.597,19.149,23.539,3.525,8.367,3.47,25.37,5.724,19.081,18.769,-0.151,21.148,9.114,-0.441,-3.822,23.638,-2.976,12.764,4.033,18.932,21.978,20.848,10.935,21.617,9.008,0.901,14.101,12.21,21.398,9.707,7.068,22.021,9.539,23.764,12.157,8.755,7.41,5.502,16.086,15.788,15.361,12.239,11.692,9.983,7.239,19.016,7.437,16.03,2.938,17.964,15.094,13.563,17.18,16.574,3.978,5.542,8.992,30.039,19.726,4.832,17.755,5.844,2.04,13.259,20.395,22.519,2.729,8.811,13.932,18.016,18.339,15.698,2.746,4.084,15.486,9.421,32.688,15.239,12.926,2.866],[13.374,19.444,17.318,3.688,14.127,11.625,-0.879,3.98,9.962,1.936,6.879,23.654,25.822,17.747,6.884,4.152,9.27,18.793,13.532,-2.177,4.493,5.189,7.168,17.826,11.294,-1.289,20.489,23.757,17.712,9.611,3.328,23.773,-4.349,20.713,12.374,1.084,8.208,9.692,20.679,15.444,3.812,22.293,12.187,6.687,8.844,6.498,17.926,14.875,12.308,14.343,15.952,3.74,18.162,16.068,31.189,1.039,13.878,4.764,22.211,3.566,9.652,19.165,7.32,13.352,19.318,1.45,8.828,3.682,8.778,17.889,24.193,5.421,12.754,2.465,-1.86,5.762,18.748,4.263,6.233,12.234,9.937,6.677,16.248,12.394,16.572,13.823,11.677,22.005,0.577,2.12,25.901,23.008,15.954,5.25,14.876,19.239,3.27,10.973,5.493,9.506,4.263,20.134,13.866,9.048,-0.906,6.09,18.129,5.41,0.126,16.518,11.363,12.194,-1.619,19.28,23.023,3.629,8.179,3.343,25.259,5.737,19.029,19.066,-0.638,21.404,9.789,-0.615,-3.433,23.487,-3.05,13.018,3.895,19.062,22.158,20.849,10.608,21.879,8.802,1.166,13.515,12.318,21.626,9.416,6.272,21.781,8.915,23.907,12.354,8.222,7.344,5.593,16.25,15.974,14.937,12.516,11.211,10.246,6.728,18.958,7.819,16.455,3.008,17.633,14.699,14.111,17.155,16.63,3.849,5.866,9.137,29.988,19.063,5.215,18.372,6.499,1.615,13.231,20.648,22.618,2.45,9.091,14.391,17.674,18.421,16.101,2.378,3.832,15.466,9.569,32.124,15.233,13.2,3.652],[13.284,19.358,17.439,3.878,14.102,11.886,-1.084,4.1,10.091,1.881,6.774,23.749,25.8,17.964,6.944,4.122,9.263,18.649,13.579,-2.125,4.631,4.958,6.933,17.826,11.321,-1.351,20.296,23.731,17.788,9.762,3.22,23.911,-4.45,20.71,12.452,1.036,8.221,9.412,20.612,15.47,3.98,22.426,12.333,6.436,8.778,6.751,17.97,15.063,12.31,14.435,15.807,3.506,18.134,15.963,30.984,0.935,13.959,5.172,22.035,3.607,9.72,19.228,7.46,13.188,18.739,1.428,9.235,3.882,8.973,17.9,24.407,5.374,12.339,2.831,-2.272,5.77,19.148,4.716,5.915,12.438,10.15,6.38,16.08,12.487,17.219,14.21,11.607,22.887,0.625,1.822,26.396,22.422,16.193,5.34,15.084,19.409,3.226,11.027,5.39,9.685,4.013,19.629,13.737,9.089,-0.597,6.26,18.02,5.928,0.165,16.554,11.141,11.662,-1.694,19.096,22.392,3.538,7.513,3.824,24.834,5.488,19.226,18.94,-0.598,21.53,9.498,-0.533,-3.373,23.349,-3.504,12.846,4.562,19.084,22.489,20.729,9.952,21.521,8.297,1.042,13.402,12.671,21.94,9.279,5.746,21.564,8.582,24.085,12.481,8.44,7.955,5.594,15.778,15.179,15.342,12.406,11.483,10.22,6.827,18.704,7.667,16.844,2.567,17.988,14.463,13.897,16.996,16.339,3.648,6.198,9.157,29.694,19.735,5.094,17.83,6.686,1.616,13.02,20.474,23.018,2.491,9.259,14.498,17.501,18.011,16.226,2.078,3.88,15.72,9.886,32.261,15.145,13.686,3.803],[13.327,19.399,17.613,4.046,14.255,11.951,-1.221,4.123,10.107,1.907,6.579,23.718,25.959,17.999,6.99,4.124,9.354,18.415,13.639,-2.068,4.79,4.738,6.63,17.83,11.405,-1.176,20.27,23.575,17.755,9.872,3.198,24.002,-4.591,20.767,12.375,0.994,8.157,9.101,20.442,15.476,4.022,22.583,12.435,6.204,8.619,7.088,18.053,15.167,12.374,14.594,15.837,3.302,17.963,15.765,30.893,1.053,14.129,5.428,21.726,3.503,9.865,19.248,7.682,13.006,18.956,1.468,9.47,3.623,8.734,18.269,24.528,5.35,12.318,3.397,-2.248,5.854,18.614,5.078,5.789,11.993,10.22,5.943,16.376,12.782,17.436,14.018,12.046,23.419,0.339,1.385,26.622,22.055,16.153,5.628,15.314,19.414,3.09,11.219,5.521,9.63,3.645,19.552,13.921,8.937,-0.514,5.787,18.53,5.744,0.174,16.554,11.486,11.649,-1.349,19.211,22.824,2.986,6.446,3.874,24.79,5.338,19.157,19.015,-0.253,21.655,9.366,-0.259,-3.673,23.464,-3.288,13.018,4.354,19.056,22.5,20.537,9.816,20.735,7.736,0.66,13.775,12.782,21.674,9.583,6.039,22.126,8.564,24.107,12.367,9.072,8.777,5.578,15.713,15.634,15.666,12.443,11.71,9.883,6.924,18.861,7.46,16.456,2.661,17.876,14.82,13.566,16.587,16.197,3.435,7.144,8.877,29.799,19.742,4.73,17.601,6.7,1.632,13.044,20.07,22.801,2.619,9.512,14.118,17.611,18.07,15.206,1.727,4.277,15.901,9.61,32.357,14.778,13.513,4.07],[13.329,19.519,17.596,4.203,14.503,11.957,-1.275,3.983,10.082,1.972,6.488,23.683,26.128,17.826,6.95,4.078,9.53,18.375,13.717,-1.941,4.829,4.591,6.276,17.89,11.403,-0.86,20.534,23.48,17.815,10.039,3.002,24.029,-4.765,20.824,12.216,0.971,8.081,8.875,20.181,15.505,3.814,22.604,12.467,6.128,8.585,7.361,18.143,15.041,12.47,14.566,15.798,3.119,17.765,15.714,31.055,1.296,14.131,5.663,21.725,3.235,10.014,19.236,7.902,12.861,19.361,1.21,9.342,4.397,8.694,18.095,24.442,5.266,12.933,3.304,-2.118,5.632,18.675,4.398,5.702,11.992,10.038,6.23,16.553,12.799,17.127,14.119,12.398,23.018,0.311,1.079,26.344,22.256,15.953,5.617,15.336,19.574,2.985,11.511,4.835,9.6,3.562,19.65,13.812,8.787,-0.381,5.174,18.462,5.473,0.57,16.505,11.869,12.336,-1.584,18.664,22.64,2.83,6.483,4.082,25.176,5.555,19.144,19.051,0.046,21.439,9.496,-0.594,-3.951,24.046,-3.458,12.636,3.977,19.201,22.369,21.084,10.173,20.975,7.922,0.619,13.593,12.387,21.854,9.18,6.169,21.533,8.568,24.128,12.437,9.109,8.876,5.635,16.445,15.333,15.465,12.435,11.563,9.865,6.764,19.026,7.801,16.582,3.303,17.999,14.796,13.841,17.008,15.999,3.236,7.331,8.666,30.123,19.41,4.403,18.258,6.77,1.89,12.567,20.152,22.197,2.76,9.441,14.575,17.438,18.17,15.01,1.473,3.866,15.584,9.743,32.358,14.644,13.698,4.931],[13.163,19.76,17.373,4.423,14.722,11.973,-1.253,3.751,10.064,1.894,6.563,23.585,25.993,17.715,6.929,4.187,9.609,18.32,13.662,-1.828,4.699,4.459,5.938,18.02,11.49,-0.581,20.837,23.452,17.935,10.262,2.796,23.975,-4.85,20.845,11.996,0.992,8.02,8.871,20.08,15.663,3.689,22.407,12.348,6.204,8.605,7.464,18.271,14.859,12.435,14.5,15.771,3.034,17.685,15.651,31.233,1.562,14.08,5.855,21.961,2.9,10.152,19.248,7.951,12.78,19.226,1.156,8.942,4.577,9.042,17.495,24.719,5.165,12.81,2.847,-2.264,5.796,18.975,4.355,5.986,12.214,10.221,6.384,16.501,12.904,16.586,14.753,12.203,22.266,0.165,1.077,26.433,22.548,15.925,5.346,15.367,19.593,2.511,11.569,4.398,9.848,3.826,19.496,13.785,9.044,-0.05,5.092,18.389,5.313,0.743,16.691,12.133,12.147,-1.716,18.849,22.695,2.691,6.985,3.79,24.948,5.597,19.752,19.085,0.228,21.368,9.529,-0.729,-4.095,24.399,-3.831,12.244,4.13,19.296,22.469,21.255,10.095,21.441,8.513,0.591,13.462,12.67,22.156,8.75,6.065,20.744,8.606,24.018,12.331,8.914,8.597,5.527,16.696,15.442,15.138,12.224,11.697,10.199,7.177,18.721,8.342,16.564,3.19,18.238,14.409,13.806,16.813,15.874,2.873,7.666,9.034,30.422,19.833,4.048,18.064,6.682,2.149,11.693,20.375,22.867,3.166,9.469,15.133,17.273,17.807,15.525,1.466,3.238,15.742,9.685,32.489,14.64,13.69,5.309],[12.918,20.064,17.185,4.495,15.002,11.998,-1.221,3.843,10.096,1.708,6.77,23.323,25.823,17.732,6.941,4.352,9.52,18.277,13.481,-1.729,4.483,4.375,5.855,18.128,11.531,-0.668,21.147,23.417,18.043,10.295,2.715,23.912,-4.852,20.785,11.859,0.985,7.935,8.928,20.028,15.94,3.606,22.09,12.188,6.362,8.651,7.528,18.336,14.766,12.325,14.546,15.681,2.954,17.623,15.51,31.352,1.883,14.204,6.093,22.329,2.552,10.301,19.325,8.01,12.733,19.428,1.495,8.927,4.13,9.026,17.607,24.411,5.03,12.286,3.163,-2.778,6.023,19.195,5.009,5.781,11.938,10.111,6.235,16.081,13.213,16.59,15.027,12.22,22.172,-0.225,0.774,26.498,22.516,16.068,5.307,15.254,19.671,2.595,11.347,4.488,9.856,4.4,19.354,13.562,9.353,-0.201,5.703,18.681,4.912,0.806,16.931,11.989,11.838,-1.315,19.084,22.583,2.837,7.217,2.998,24.866,5.05,19.967,19.413,0.443,22.055,10.106,-0.239,-3.867,24.324,-4.149,12.622,4.231,18.961,22.816,20.89,9.685,21.19,8.625,0.575,12.937,13.096,21.657,9.129,5.785,21.227,9.024,23.755,11.717,8.763,8.42,5.361,16.322,15.603,15.301,12.598,11.622,10.142,7.604,18.911,8.434,16.195,2.54,18.116,13.995,13.634,16.678,15.78,3.181,7.579,8.92,30.186,19.934,3.597,17.731,6.876,2.06,11.591,20.803,23.104,3.446,9.671,14.586,16.95,17.733,15.913,1.76,3.09,15.81,9.4,32.838,14.368,13.699,4.875],[12.672,20.304,17.196,4.324,15.153,11.906,-1.396,4.249,10.082,1.478,6.931,23.193,25.755,17.772,6.909,4.535,9.402,18.353,13.344,-1.693,4.305,4.465,5.975,18.137,11.402,-0.775,21.455,23.357,18.24,10.095,2.567,23.903,-4.826,20.632,11.844,0.98,7.991,9.008,20.073,16.09,3.493,21.725,12.155,6.483,8.729,7.543,18.34,14.757,12.208,14.612,15.569,3.031,17.56,15.346,31.382,2.102,14.246,6.16,22.585,2.245,10.267,19.456,8.217,12.708,19.91,1.129,9.262,4.476,8.739,18.025,24.516,5.178,12.563,3.985,-2.929,6.298,19.074,5.222,5.691,12.002,10.04,6.797,16.162,13.532,16.817,14.704,12.283,22.268,-0.303,0.614,25.773,21.923,15.891,5.331,15.176,19.79,2.701,11.159,5.021,9.601,4.706,19.301,13.659,9.409,-0.421,5.857,18.275,4.393,0.421,17.093,11.841,12.053,-0.967,19.396,22.309,3.092,6.555,2.985,24.875,4.535,19.93,19.195,0.287,22.128,10.776,-0.157,-3.523,24.009,-4.269,12.452,4.181,18.889,23.366,20.837,9.262,20.368,8.272,0.247,12.929,12.676,20.999,9.61,6.366,21.604,9.363,23.352,12.005,8.038,8.843,5.147,17.097,15.542,15.514,12.369,11.559,9.711,7.032,19.197,8.267,16.084,2.274,18.271,14.175,13.552,16.502,15.767,3.39,7.189,8.958,29.908,20.116,3.266,18.073,7.128,2.146,12.053,21.043,23.428,3.875,9.894,14.456,16.918,17.93,15.33,1.523,2.958,15.86,9.642,32.886,14.618,13.914,4.901],[12.664,20.328,17.461,4.289,15.067,11.862,-1.793,4.604,9.987,1.28,6.956,23.262,25.746,17.76,6.926,4.603,9.294,18.551,13.305,-1.707,4.097,4.691,6.136,18.185,11.366,-0.748,21.625,23.268,18.337,9.999,2.414,23.925,-4.831,20.497,11.843,0.86,8.04,9.057,20.075,16.232,3.383,21.357,12.115,6.468,8.71,7.579,18.347,14.787,12.27,14.716,15.401,3.222,17.578,15.228,31.236,2.138,14.15,6.172,22.634,2.025,10.24,19.59,8.418,12.81,19.795,0.306,9.244,4.848,8.645,17.669,24.668,5.916,12.122,3.55,-2.784,6.188,19.077,5.188,6.03,11.656,10.065,7.092,16.75,13.298,16.803,14.765,11.996,22.233,-0.412,0.443,25.697,22.311,15.917,5.141,15.037,19.922,3.049,11.038,4.994,9.601,4.6,19.601,13.652,9.091,-0.147,5.679,19.024,4.063,0.456,17.055,11.453,11.834,-1.352,19.401,22.536,3.3,5.956,3.174,24.736,4.981,20.102,19.389,0.101,22.122,10.403,-0.558,-3.357,23.774,-4.081,11.912,3.798,18.983,23.488,21.004,9.923,20.695,8.553,0.532,13.205,12.075,20.944,9.753,7.685,21.447,9.394,22.97,12.052,7.94,9.005,5.199,16.899,15.718,15.438,12.264,11.337,9.891,6.986,18.864,8.086,16.171,2.443,18.366,14.391,13.59,16.323,16.003,3.066,7.42,9.04,29.64,20.696,2.705,18.209,7.376,2.33,12.508,21.124,23.956,3.932,10.02,14.793,17.077,17.554,14.858,1.505,3.298,15.681,9.772,32.347,14.621,13.882,5.427],[12.645,20.29,17.831,4.277,14.87,11.848,-2.122,4.897,9.822,1.195,6.862,23.274,25.736,17.671,6.936,4.598,9.178,18.674,13.329,-1.64,3.93,4.755,6.112,18.311,11.429,-0.672,21.593,23.254,18.38,9.943,2.22,23.888,-4.882,20.517,11.847,0.926,8.134,9.134,20.007,16.366,3.359,21.091,12.023,6.512,8.614,7.671,18.24,14.728,12.385,14.744,15.242,3.348,17.535,15.171,30.927,2.127,14.014,6.338,22.533,1.881,10.387,19.87,8.673,13.004,19.399,0.582,8.955,4.844,8.501,17.349,24.641,6.331,12.267,2.793,-3.529,5.853,19.438,5.677,6.093,11.541,9.973,6.795,16.841,13.133,17.024,15.155,12.158,21.873,-0.783,0.398,26.339,22.767,16.102,5.155,15.179,19.907,3.294,11.003,4.553,9.654,4.485,20.292,13.353,8.718,-0.155,5.656,19.129,4.096,0.719,16.936,11.39,11.959,-1.536,19.003,22.389,3.283,6.557,2.885,24.79,5.215,20.331,19.683,0.495,22.304,10.824,-0.282,-3.915,24.325,-3.633,12.364,3.564,18.789,23.042,21.115,10.634,21.139,8.709,0.446,13.31,12.467,20.67,8.974,7.976,21.287,9.193,22.785,11.943,8.981,8.764,5.135,16.889,15.414,15.155,12.517,11.422,10.223,7.009,18.872,8.444,16.419,2.745,18.08,14.366,14.079,16.268,16.153,3.107,7.657,8.864,29.212,20.479,1.916,18.068,7.721,2.463,12.336,21.408,23.686,3.621,10.14,15.244,16.972,17.478,14.694,1.726,3.581,15.545,9.614,31.824,14.806,13.255,6.145],[12.503,20.229,18.115,4.094,14.802,11.842,-2.217,5.18,9.629,1.337,6.718,23.258,25.799,17.718,6.865,4.501,9.031,18.641,13.47,-1.611,3.857,4.678,6.029,18.439,11.529,-0.463,21.417,23.25,18.351,10.106,1.974,23.846,-4.992,20.647,12.064,1.136,8.33,9.173,19.949,16.307,3.428,20.973,12.088,6.482,8.439,7.799,18.081,14.621,12.484,14.731,15.145,3.159,17.338,15.19,30.772,2.243,13.917,6.506,22.309,1.761,10.471,20.042,8.878,13.213,19.478,1.143,8.633,4.717,8.584,17.435,24.771,6.085,12.54,3.168,-3.932,5.75,19.266,5.941,5.788,12.256,10.017,6.723,16.952,12.977,17.466,14.87,12.287,21.796,-1.235,0.465,26.238,22.573,15.994,5.375,15.373,20.015,4.101,10.911,4.441,9.78,4.448,20.347,13.448,8.77,-0.174,6.055,18.983,4.399,0.833,17.055,11.67,12.402,-1.163,18.801,22.3,3.116,7.06,2.393,24.999,4.939,20.257,19.48,0.495,22.117,10.94,-0.003,-4.546,24.759,-3.531,12.341,3.569,18.842,22.489,20.783,10.08,20.594,8.93,0.419,13.349,12.557,20.954,8.707,8.091,21.228,8.883,22.548,11.842,8.98,8.421,5.162,17.365,15.557,15.017,12.458,12.009,9.904,7.028,18.745,9.403,16.263,2.564,18.422,14.0,14.28,16.325,15.589,3.331,7.234,9.17,29.023,20.097,1.884,18.255,8.23,2.392,12.05,20.937,23.643,4.021,10.413,14.695,16.708,18.009,14.701,2.01,3.211,15.444,9.506,32.005,14.992,13.138,6.697],[12.552,20.048,18.379,3.99,14.646,11.901,-2.237,5.395,9.567,1.59,6.619,23.349,25.807,17.816,6.921,4.477,8.919,18.512,13.621,-1.65,3.767,4.732,5.967,18.618,11.661,-0.232,21.18,23.303,18.311,10.343,1.726,23.854,-5.229,20.638,12.269,1.272,8.564,9.101,19.763,16.19,3.38,21.002,12.129,6.442,8.276,8.033,18.126,14.541,12.586,14.681,15.25,2.833,17.081,15.209,30.841,2.437,13.852,6.582,22.129,1.679,10.479,20.02,9.16,13.285,19.707,1.032,8.704,4.327,8.269,17.67,24.75,6.065,11.972,2.798,-3.765,5.797,19.001,5.66,5.446,12.236,10.061,6.629,16.838,12.718,18.062,14.675,12.143,21.974,-1.387,0.666,26.066,22.45,16.021,5.335,15.556,20.084,4.894,10.532,4.676,9.883,4.732,19.624,13.702,9.385,-0.418,6.105,19.004,4.287,0.854,17.152,11.766,12.131,-0.863,19.022,22.454,3.403,7.454,2.224,24.6,4.708,19.918,19.379,0.465,22.075,10.568,-0.362,-4.521,24.547,-3.911,12.854,3.409,19.129,22.26,20.734,9.339,20.216,9.129,0.773,12.927,12.222,21.234,9.368,7.843,21.246,8.615,22.541,11.561,7.973,8.413,5.244,16.929,16.221,15.201,12.894,12.438,9.441,7.053,18.653,9.782,15.765,2.474,18.265,13.708,13.809,16.265,15.388,2.913,7.406,9.187,29.285,20.718,1.929,18.631,7.961,2.652,12.342,20.793,23.069,4.214,10.728,14.533,16.799,18.149,14.845,1.492,2.875,15.318,9.641,32.337,15.074,13.24,6.809],[12.701,19.886,18.582,3.815,14.409,11.913,-2.246,5.545,9.545,1.653,6.605,23.506,25.751,17.827,7.004,4.564,8.959,18.219,13.676,-1.706,3.695,4.891,6.054,18.646,11.548,-0.08,21.012,23.29,18.423,10.32,1.635,23.934,-5.468,20.496,12.265,1.315,8.7,8.933,19.483,16.162,3.197,21.214,12.006,6.419,8.235,8.285,18.307,14.487,12.575,14.639,15.462,2.506,17.146,15.287,31.005,2.529,13.807,6.609,22.027,1.534,10.504,20.04,9.375,13.291,19.41,0.991,9.122,4.001,8.325,17.692,24.482,6.066,12.771,2.869,-3.573,5.378,18.795,5.574,5.807,11.831,10.083,7.338,17.132,12.665,18.206,14.585,12.33,22.443,-1.172,1.041,25.97,22.555,16.034,5.157,15.598,20.279,5.296,10.501,4.952,9.837,4.94,18.865,13.694,9.64,-0.296,6.2,18.891,3.879,1.284,17.304,11.904,12.084,-1.214,19.199,22.243,3.296,7.328,2.41,24.681,4.681,19.577,19.403,0.916,22.017,11.242,-0.176,-4.126,24.435,-4.634,12.949,2.679,18.817,22.337,21.202,9.571,20.388,9.355,0.898,13.171,12.777,20.796,9.128,7.275,21.03,8.071,22.687,11.402,7.832,8.926,5.019,16.598,15.414,15.37,12.401,12.394,9.424,6.991,18.852,9.621,15.879,2.556,18.473,14.065,13.469,16.279,15.603,2.236,7.67,9.131,29.354,20.848,1.915,18.548,8.145,3.163,12.7,21.026,22.949,3.787,10.934,14.573,16.955,17.375,15.165,0.92,3.092,14.852,9.812,32.037,15.112,13.581,6.531],[12.938,19.811,18.689,3.649,14.332,11.95,-2.23,5.666,9.472,1.706,6.585,23.69,25.693,17.727,7.063,4.698,9.159,17.847,13.698,-1.758,3.587,5.176,6.287,18.579,11.291,0.209,20.985,23.158,18.513,10.335,1.684,24.028,-5.547,20.376,12.139,1.34,8.822,8.685,19.431,16.041,2.964,21.399,11.805,6.365,8.203,8.461,18.514,14.539,12.561,14.636,15.625,2.226,17.345,15.312,30.996,2.515,13.738,6.608,22.089,1.381,10.586,20.016,9.466,13.291,19.126,1.238,9.039,3.918,8.489,17.368,24.037,6.326,12.424,2.778,-3.583,4.985,18.704,6.136,6.144,12.147,10.154,7.821,17.039,12.468,18.297,14.516,12.42,22.49,-0.819,0.938,25.936,22.496,16.132,5.514,15.555,20.195,5.626,11.011,5.193,9.609,4.792,18.791,13.499,9.011,-0.278,6.249,19.421,3.662,1.115,17.297,11.994,12.014,-1.497,18.365,21.987,3.578,7.023,2.261,24.635,4.639,19.654,19.604,0.941,21.773,11.171,0.01,-4.065,24.71,-4.959,12.291,2.749,18.558,22.647,20.769,10.218,20.129,9.285,0.619,13.649,12.502,21.107,8.219,6.535,20.763,8.08,22.828,11.783,8.765,9.748,4.746,16.622,15.38,14.86,12.483,11.752,9.885,7.453,19.177,9.253,16.209,2.424,18.607,14.296,13.921,16.505,15.739,2.194,7.093,9.067,29.247,20.227,1.567,18.245,8.885,3.056,12.383,20.778,23.109,4.135,10.93,14.722,17.004,17.204,15.073,0.643,3.015,14.72,9.93,32.202,15.093,13.814,6.397],[13.113,19.614,18.566,3.46,14.403,12.032,-2.218,5.815,9.383,1.799,6.563,23.721,25.605,17.654,7.202,4.889,9.298,17.52,13.65,-1.874,3.428,5.48,6.622,18.484,10.988,0.581,20.955,22.929,18.667,10.361,1.809,24.038,-5.511,20.265,12.043,1.423,8.993,8.44,19.595,15.764,2.72,21.487,11.667,6.33,8.174,8.655,18.738,14.568,12.458,14.755,15.677,2.054,17.5,15.309,30.833,2.56,13.745,6.639,22.252,1.217,10.598,19.891,9.526,13.328,19.314,1.552,8.373,3.811,8.441,17.322,24.428,6.608,12.09,2.649,-3.424,4.915,19.144,6.568,6.055,12.333,10.307,7.739,17.083,12.531,18.123,14.399,12.324,22.487,-0.943,0.844,25.853,22.648,15.917,5.459,15.468,20.065,6.041,11.026,5.13,9.343,4.451,19.052,13.679,9.349,-0.12,6.479,19.164,3.921,0.726,17.041,12.034,11.751,-1.649,18.277,22.143,3.95,6.709,2.362,24.471,4.672,20.17,19.744,0.884,21.865,10.563,-0.106,-4.345,24.68,-4.558,11.88,3.432,18.624,23.003,20.463,10.022,19.876,9.057,0.707,13.302,11.77,21.615,8.449,6.159,21.029,8.225,23.102,11.917,9.174,10.051,4.593,16.519,15.664,14.93,12.326,11.728,9.826,7.54,19.25,8.348,16.058,2.222,18.627,13.818,13.857,16.47,15.949,2.117,6.812,9.134,29.119,20.087,1.224,18.351,9.145,2.411,12.14,20.787,23.313,4.379,11.183,14.74,16.987,18.178,15.418,0.67,2.868,15.372,9.916,32.224,15.016,13.383,5.942],[13.054,19.453,18.326,3.311,14.538,12.072,-2.213,5.936,9.32,1.925,6.532,23.59,25.674,17.744,7.299,5.199,9.299,17.451,13.603,-1.984,3.284,5.647,6.783,18.388,10.693,0.912,21.019,22.856,18.798,10.28,2.109,23.936,-5.391,20.251,11.924,1.594,9.126,8.232,19.63,15.544,2.644,21.568,11.528,6.275,8.087,8.754,18.963,14.559,12.353,14.8,15.627,1.953,17.756,15.346,30.594,2.403,13.87,6.613,22.538,1.065,10.51,19.82,9.629,13.378,19.475,1.874,8.332,3.446,8.191,17.838,24.476,6.806,12.437,2.533,-3.471,5.008,18.769,6.718,6.16,12.456,10.414,7.577,17.011,12.763,17.542,14.358,12.424,22.262,-1.464,0.813,25.681,23.019,15.875,5.505,15.434,19.971,6.355,11.035,5.299,8.9,4.105,18.699,13.697,9.813,-0.409,6.947,18.809,4.482,0.547,17.035,12.034,11.577,-1.729,17.997,21.94,4.146,7.261,2.132,24.296,4.757,20.164,19.776,0.992,22.044,10.701,0.108,-4.59,24.99,-4.414,12.54,3.845,18.631,23.109,20.599,9.325,20.695,9.302,0.875,12.999,11.963,21.37,8.659,6.139,20.878,8.075,23.168,11.283,8.545,10.276,4.467,16.335,14.998,15.18,12.475,11.924,9.307,7.221,18.811,8.207,15.625,1.917,18.912,13.964,13.552,16.066,16.327,1.911,7.875,9.14,28.943,20.323,1.573,18.183,9.358,2.422,12.267,21.316,23.326,4.074,11.119,14.54,16.942,18.616,15.599,0.749,2.642,15.295,9.637,31.626,15.053,13.394,5.46],[12.993,19.389,18.177,3.226,14.615,12.044,-2.226,6.041,9.373,2.067,6.502,23.428,25.799,17.819,7.276,5.528,9.301,17.465,13.732,-2.074,3.191,5.76,6.805,18.32,10.441,1.171,21.223,22.936,18.764,10.243,2.464,23.81,-5.315,20.3,11.837,1.737,9.143,8.102,19.54,15.394,2.669,21.581,11.504,6.187,7.898,8.786,19.126,14.51,12.272,14.588,15.495,1.87,18.074,15.372,30.271,2.177,13.814,6.439,22.84,1.023,10.395,19.731,9.659,13.429,19.05,1.651,8.802,2.686,8.284,18.27,24.583,6.271,12.236,2.52,-3.576,5.0,18.312,6.856,6.169,12.195,10.352,7.855,16.711,12.805,17.345,14.625,12.435,21.91,-1.074,1.168,25.968,22.919,16.036,5.646,15.469,19.932,6.627,11.114,5.642,8.829,3.935,18.86,13.41,9.451,-0.559,6.977,19.197,5.337,0.684,17.2,11.431,11.403,-1.733,18.3,22.105,4.305,8.11,2.463,24.213,4.557,19.715,19.701,1.434,22.346,11.104,0.39,-4.527,24.705,-4.347,12.918,3.904,18.573,22.723,20.383,8.611,20.448,9.9,1.048,12.972,11.816,20.972,8.381,6.501,20.973,7.265,23.26,11.298,8.094,10.646,4.47,16.319,14.999,15.054,12.17,11.635,9.126,6.839,19.542,8.463,15.383,1.942,18.724,14.141,14.035,16.412,16.367,2.106,8.24,9.031,28.535,20.549,1.588,18.151,9.769,2.405,12.541,21.196,23.811,3.977,11.099,14.882,16.915,18.613,15.013,0.952,2.436,15.15,9.594,31.469,15.295,13.799,6.096],[12.932,19.31,18.114,3.066,14.579,11.981,-2.229,5.997,9.625,2.099,6.43,23.244,25.936,17.818,7.299,5.937,9.334,17.662,13.901,-2.108,3.144,5.836,6.813,18.209,10.357,1.52,21.406,23.007,18.643,10.194,2.801,23.7,-5.299,20.289,11.854,1.81,9.219,7.691,19.55,15.324,2.843,21.554,11.514,6.001,7.756,8.884,19.265,14.309,12.208,14.458,15.385,1.832,18.358,15.286,29.983,2.039,13.625,6.147,23.146,1.091,10.305,19.649,9.777,13.504,18.824,1.56,8.649,2.668,8.628,18.119,24.843,6.098,11.621,2.471,-3.177,4.766,18.759,7.224,6.321,11.927,10.207,7.703,16.64,12.749,17.796,14.587,12.364,21.73,-0.881,1.984,25.957,22.466,16.0,5.712,15.715,19.495,6.399,10.849,5.751,8.593,4.029,18.925,13.908,9.623,-0.338,7.059,19.209,5.605,1.218,17.111,11.001,11.299,-1.731,18.721,22.168,4.182,8.383,3.252,24.654,4.407,20.037,19.751,1.398,22.423,11.482,0.429,-4.065,24.077,-4.264,12.447,3.893,18.616,22.099,20.544,9.344,19.758,10.346,1.149,12.979,11.797,21.241,7.669,6.668,20.921,7.284,23.131,11.236,7.455,10.704,4.437,16.179,15.445,14.586,11.424,11.475,8.817,6.872,19.799,8.427,15.739,2.164,18.948,13.902,14.543,16.52,16.606,1.863,7.688,8.758,28.304,20.547,1.461,18.007,9.776,2.109,12.689,21.373,24.041,3.735,11.003,14.664,17.016,18.289,15.635,0.449,2.847,15.329,9.904,31.265,15.24,13.265,6.91],[12.695,19.309,18.158,2.923,14.515,11.865,-2.232,5.871,9.82,2.146,6.397,23.001,26.0,17.858,7.434,6.284,9.39,17.823,14.076,-2.007,3.118,5.909,6.807,18.009,10.245,1.79,21.503,23.114,18.585,10.173,3.095,23.603,-5.262,20.176,11.822,1.825,9.278,7.332,19.619,15.314,3.014,21.54,11.409,5.762,7.54,9.019,19.366,14.137,12.163,14.461,15.582,1.658,18.51,15.294,29.88,1.867,13.54,5.846,23.479,1.345,10.257,19.575,9.945,13.509,19.242,1.232,9.002,2.604,8.53,18.106,24.761,6.194,11.631,1.965,-3.099,4.59,18.811,7.414,6.468,12.334,10.077,7.487,16.686,12.866,18.245,14.127,12.616,21.692,-0.871,2.373,26.201,22.422,15.979,5.985,15.745,18.873,5.982,11.136,5.377,8.542,4.437,19.058,14.285,9.731,-0.322,7.131,18.715,5.643,2.028,16.737,11.355,11.355,-1.937,18.449,22.01,4.422,8.041,3.601,24.157,4.154,20.618,19.715,1.836,22.603,11.341,0.521,-3.913,24.042,-4.421,12.317,3.878,18.622,21.839,20.926,9.033,20.077,10.268,0.865,13.336,12.055,21.265,7.527,6.298,20.825,7.488,23.216,11.196,7.796,10.848,4.717,16.0,14.912,14.16,11.279,11.42,8.874,6.955,19.534,8.794,15.771,2.621,18.82,13.799,14.727,15.927,17.008,1.494,6.886,8.495,28.199,20.154,1.661,18.035,9.903,2.293,12.545,21.677,24.135,3.358,11.123,14.589,16.824,18.277,15.449,0.134,3.06,14.871,10.063,31.0,15.329,12.968,6.832],[12.522,19.367,18.216,2.712,14.584,11.854,-2.246,5.952,9.833,2.182,6.551,22.838,26.09,17.891,7.51,6.406,9.568,17.798,14.179,-1.93,3.171,5.952,6.695,17.763,10.171,1.884,21.523,22.981,18.6,10.315,3.28,23.544,-5.252,20.032,11.722,1.982,9.351,7.044,19.719,15.274,3.016,21.523,11.274,5.596,7.518,9.203,19.362,14.049,12.194,14.515,15.783,1.477,18.539,15.256,29.934,1.668,13.494,5.523,23.804,1.535,10.271,19.456,10.102,13.488,19.734,1.494,9.166,2.217,8.553,17.997,25.047,6.121,11.93,1.881,-3.231,4.85,18.545,7.094,6.574,11.788,10.073,7.429,17.153,12.987,18.401,14.298,12.463,21.296,-0.813,1.752,26.059,22.067,16.113,5.726,15.76,18.526,5.921,10.925,5.458,8.543,4.628,19.023,13.674,9.149,-0.411,7.064,18.646,5.798,2.593,16.427,12.067,11.154,-1.383,18.3,22.199,4.569,7.739,3.156,24.348,4.092,21.222,19.731,2.267,22.602,10.54,0.614,-3.976,24.224,-4.341,12.599,4.291,18.34,21.66,20.397,8.415,20.549,10.251,1.107,13.178,11.36,21.503,7.365,5.486,20.999,7.5,23.27,11.319,7.833,10.549,4.881,15.864,15.073,14.511,11.608,11.456,9.146,7.092,19.587,9.087,15.388,2.531,18.809,13.883,14.698,16.853,17.017,1.82,6.828,8.852,27.987,19.981,1.986,18.344,9.709,1.989,12.31,21.975,24.285,3.351,11.276,14.617,16.651,18.652,15.248,0.234,3.027,14.725,9.836,30.502,15.154,13.081,6.571],[12.385,19.487,18.394,2.556,14.793,11.981,-2.202,6.194,9.813,2.11,6.788,22.587,26.25,17.792,7.274,6.295,9.558,17.658,14.112,-1.931,3.174,5.957,6.558,17.699,10.265,2.004,21.591,22.905,18.674,10.456,3.368,23.538,-5.074,19.867,11.614,2.2,9.391,6.896,19.846,15.344,2.84,21.554,11.047,5.586,7.718,9.374,19.286,14.001,12.197,14.341,15.967,1.496,18.49,15.233,29.85,1.391,13.537,5.427,24.123,1.53,10.19,19.348,10.102,13.488,19.472,1.574,8.949,1.844,8.777,18.285,25.189,6.52,11.584,1.297,-3.068,5.046,19.021,6.834,6.663,11.668,10.162,7.553,17.263,12.996,17.927,14.94,12.002,21.369,-0.979,1.821,26.222,22.002,15.936,5.66,15.805,18.729,6.055,11.248,5.451,8.797,4.223,18.794,13.563,9.216,-0.291,6.976,18.945,6.202,2.127,16.286,12.13,11.123,-1.435,18.467,21.738,4.337,7.923,3.046,24.239,4.489,21.266,19.88,1.86,22.567,10.536,0.98,-3.912,23.85,-4.355,12.836,4.226,18.076,21.75,19.715,8.359,20.357,10.151,1.2,12.518,11.332,22.074,7.806,4.552,21.171,6.692,23.089,11.337,7.732,10.355,4.585,16.006,15.245,14.648,12.172,11.847,8.926,7.384,19.697,9.044,15.247,2.257,19.172,13.67,14.705,16.945,16.754,2.117,6.708,8.909,28.035,20.158,2.334,17.896,9.695,1.14,12.156,22.311,24.516,3.202,11.781,14.345,16.796,18.581,15.792,0.371,3.156,15.141,9.925,30.743,15.048,13.145,6.434],[12.235,19.646,18.565,2.241,14.893,11.972,-2.065,6.432,9.855,2.072,6.918,22.411,26.34,17.692,7.083,6.091,9.538,17.611,14.039,-1.924,3.075,5.962,6.532,17.876,10.422,2.014,21.776,22.833,18.762,10.507,3.331,23.555,-4.941,19.665,11.445,2.257,9.405,6.805,19.908,15.525,2.741,21.662,10.882,5.627,7.813,9.391,19.183,13.975,12.271,14.028,16.005,1.685,18.3,15.334,29.839,1.016,13.671,5.494,24.358,1.554,9.998,19.273,10.057,13.546,19.184,1.268,8.678,2.028,9.1,18.189,25.647,6.448,11.482,1.58,-3.236,5.312,19.177,6.993,6.715,12.197,10.18,7.465,17.161,13.092,17.832,15.136,12.348,21.191,-0.849,2.19,26.593,21.893,15.864,5.547,15.795,18.665,6.324,11.04,5.35,9.102,4.046,18.628,14.055,9.659,-0.148,6.82,19.068,6.454,1.405,16.454,11.675,11.398,-2.036,18.462,21.78,4.313,7.935,3.512,23.924,4.364,20.768,20.127,2.145,22.699,11.369,1.145,-3.561,23.513,-4.009,12.632,4.405,18.029,21.71,20.007,8.608,20.21,9.897,1.144,12.603,11.745,22.029,8.643,4.101,21.257,6.83,23.296,11.119,7.564,10.5,4.462,16.047,14.834,14.171,11.565,12.021,8.822,7.025,19.452,9.628,15.575,1.869,19.209,13.783,14.357,16.982,16.562,1.99,5.746,8.442,28.164,19.707,2.072,17.984,10.389,1.165,12.175,22.54,24.654,2.797,11.539,14.568,16.83,18.473,16.178,0.139,3.042,15.254,9.755,31.124,15.265,13.247,6.653],[12.296,19.751,18.672,1.957,14.883,11.905,-1.99,6.572,9.963,2.147,6.934,22.298,26.402,17.591,7.258,5.832,9.604,17.723,14.099,-1.947,2.936,5.926,6.6,18.056,10.554,1.927,21.898,22.68,18.768,10.527,3.173,23.557,-4.806,19.665,11.383,2.119,9.341,6.812,19.865,15.483,2.799,21.847,10.753,5.485,7.853,9.448,18.96,14.005,12.481,13.89,16.104,1.872,17.973,15.418,29.928,0.763,13.702,5.474,24.496,1.635,9.807,19.225,10.033,13.583,19.923,0.888,9.012,1.779,9.011,17.973,25.488,6.425,11.775,1.626,-3.148,5.646,18.549,7.245,7.01,11.593,10.072,7.1,17.112,13.197,18.361,14.899,12.669,20.687,-0.541,2.136,25.957,22.108,15.705,5.684,15.76,18.592,6.579,10.872,5.294,9.116,4.141,18.852,13.774,9.553,-0.332,7.004,18.786,6.432,1.117,16.629,11.544,11.638,-1.32,18.549,21.892,4.631,7.303,3.958,23.773,4.166,20.854,19.891,2.48,23.281,11.855,1.026,-3.67,23.598,-3.993,11.792,4.583,18.01,21.816,20.308,8.462,20.621,9.654,1.147,13.092,11.371,21.616,8.903,4.281,20.977,7.122,23.698,11.317,8.214,10.09,4.577,16.048,15.433,14.121,11.562,11.679,9.004,7.113,19.544,10.188,15.408,1.782,19.037,14.0,13.862,16.776,16.383,1.949,4.938,7.975,28.22,19.961,1.965,18.04,10.972,1.072,12.641,22.765,24.441,2.4,11.216,14.142,16.772,18.46,15.852,0.623,3.317,14.978,9.459,31.237,15.341,13.217,7.015],[12.439,19.792,18.725,1.743,14.799,11.845,-2.04,6.585,10.157,2.216,6.968,22.303,26.327,17.385,7.624,5.642,9.593,17.832,14.069,-1.809,2.843,5.871,6.541,18.128,10.713,1.886,22.057,22.551,18.661,10.53,3.048,23.548,-4.8,19.786,11.454,1.88,9.232,6.758,19.839,15.355,2.987,22.017,10.72,5.434,7.926,9.533,18.675,13.988,12.604,13.752,16.136,1.969,17.622,15.462,30.006,0.677,13.612,5.364,24.429,1.952,9.66,19.235,10.238,13.611,20.493,1.235,9.469,1.29,8.618,17.855,25.557,6.49,12.097,0.866,-3.04,5.238,19.18,7.841,6.799,10.971,10.443,7.256,17.68,13.34,18.854,14.323,12.648,20.718,-0.569,2.234,26.137,21.769,15.497,6.089,15.868,18.876,6.223,11.283,5.52,9.487,4.05,18.777,13.666,9.299,-0.304,7.152,18.982,5.86,0.987,16.951,11.928,11.516,-0.975,18.7,21.582,4.875,7.246,3.507,23.493,4.091,21.224,19.627,2.158,23.299,11.142,0.774,-3.575,23.827,-3.77,11.866,4.198,18.037,21.68,20.166,8.302,20.927,10.174,1.024,13.145,11.444,21.351,8.612,4.004,20.887,6.723,23.804,11.908,8.624,10.053,4.726,15.833,15.727,14.193,11.645,11.853,9.182,7.009,19.534,10.444,15.678,2.228,18.988,14.092,13.904,16.888,16.323,2.342,4.778,8.278,28.165,20.446,2.297,18.071,10.301,0.595,12.598,22.692,24.308,2.501,10.845,13.828,17.037,17.727,15.484,1.254,3.559,15.099,9.39,30.98,15.465,13.434,6.836],[12.44,19.965,18.964,1.4,14.72,11.832,-2.033,6.534,10.255,2.365,6.902,22.387,26.292,17.32,7.925,5.478,9.381,17.793,13.97,-1.554,2.92,5.859,6.47,18.213,10.859,1.828,22.277,22.442,18.598,10.401,2.929,23.363,-4.876,19.727,11.626,1.591,9.199,6.595,19.861,15.274,3.259,21.998,10.795,5.239,7.962,9.536,18.465,13.96,12.729,13.636,16.048,2.03,17.301,15.488,30.055,0.776,13.653,5.275,24.295,2.269,9.797,19.474,10.304,13.615,20.447,1.538,9.835,1.048,9.016,17.364,25.75,6.862,12.302,0.865,-3.282,5.262,18.865,8.234,6.519,11.613,10.556,7.98,17.72,13.403,18.311,14.107,12.708,21.41,-0.57,2.009,26.111,21.701,15.432,6.366,15.749,19.273,5.496,11.115,5.257,9.37,3.99,19.176,13.684,9.041,0.02,7.066,18.931,5.027,1.009,16.886,12.101,11.413,-1.48,18.639,21.44,4.54,7.84,3.316,23.593,4.119,21.084,19.982,2.178,23.277,10.669,0.626,-3.738,23.812,-3.68,12.572,4.125,18.069,21.62,20.317,8.287,20.826,10.133,0.607,13.106,11.389,21.537,8.399,4.145,20.85,6.561,23.735,12.147,8.456,10.488,5.112,15.674,15.183,14.316,11.876,12.353,9.498,6.999,18.896,10.817,15.567,2.749,18.897,14.196,14.127,17.076,16.194,2.331,4.752,8.362,28.218,20.04,2.902,18.335,9.708,0.642,12.418,22.541,24.178,2.615,11.626,14.229,17.26,17.175,15.772,1.149,3.805,15.328,8.997,30.983,15.37,13.555,6.587],[12.495,20.057,19.038,1.218,14.753,11.963,-2.011,6.57,10.34,2.446,6.743,22.639,26.413,17.268,8.153,5.298,9.017,17.867,13.961,-1.433,3.031,5.787,6.499,18.212,10.959,1.759,22.329,22.41,18.581,10.169,2.81,23.182,-4.955,19.746,11.687,1.375,9.354,6.533,19.802,15.186,3.426,21.763,11.021,5.057,8.068,9.552,18.393,13.935,12.907,13.858,16.215,1.965,17.096,15.458,30.085,0.941,13.818,5.218,24.057,2.489,10.061,19.743,10.212,13.402,20.155,1.216,9.339,0.644,9.606,17.528,25.255,6.922,11.843,0.243,-3.202,5.29,18.879,8.111,6.444,11.688,10.147,8.391,17.882,13.294,18.462,14.538,12.443,21.218,-0.707,2.179,26.542,21.965,15.411,6.456,15.665,19.329,4.736,10.626,5.197,9.239,3.971,19.392,13.302,8.818,0.342,6.991,18.889,4.524,1.382,16.832,11.771,11.563,-1.364,18.267,21.553,4.191,8.116,3.841,23.327,4.373,21.579,20.03,2.127,23.329,10.569,0.561,-3.822,23.494,-3.975,12.481,3.989,17.952,21.434,20.409,8.314,20.411,9.254,0.155,13.228,11.737,21.969,8.606,4.565,21.103,6.701,23.488,12.093,7.81,10.414,5.298,15.478,15.091,14.257,12.047,12.208,9.534,6.945,18.826,10.705,15.246,2.836,18.705,14.249,13.668,16.687,15.541,2.517,4.913,8.409,28.317,20.161,2.72,18.162,10.314,1.45,12.408,22.283,24.343,2.389,11.738,14.262,17.009,17.593,16.335,0.7,4.154,15.309,9.362,31.286,15.212,13.522,6.502],[12.576,20.149,19.126,1.078,14.866,12.083,-1.957,6.622,10.341,2.355,6.559,22.807,26.669,17.196,8.188,5.047,8.623,17.971,13.889,-1.399,3.226,5.605,6.719,18.151,10.924,1.71,22.277,22.409,18.637,9.936,2.878,22.934,-5.007,19.84,11.54,1.273,9.37,6.638,19.699,15.045,3.479,21.609,11.418,5.037,8.245,9.508,18.384,13.847,12.98,14.174,16.415,1.83,17.102,15.389,30.245,1.013,13.956,5.322,23.648,2.622,10.163,19.998,10.14,13.11,19.708,1.472,9.145,0.523,9.777,18.085,25.457,6.723,12.119,0.578,-3.33,5.145,18.954,8.286,6.52,11.45,10.404,8.0,17.858,13.257,18.73,15.126,12.572,21.321,-0.695,1.685,26.578,22.197,15.238,6.407,15.656,18.739,4.45,10.362,5.137,9.314,4.263,19.227,13.601,8.716,0.256,6.713,19.337,4.335,1.896,16.874,11.353,11.859,-1.284,18.798,21.344,3.965,8.124,3.346,23.675,4.582,22.361,19.615,2.4,23.199,10.599,0.416,-3.73,23.293,-4.411,11.833,3.23,18.034,21.132,20.397,8.287,20.544,9.42,0.103,13.284,12.206,21.428,9.207,4.5,20.701,6.686,23.165,11.921,7.755,9.833,5.243,15.102,15.342,14.181,12.167,11.6,9.45,6.893,19.203,11.061,15.462,2.564,18.617,13.827,13.294,17.06,15.735,2.384,5.403,8.67,28.393,20.599,2.529,18.576,10.625,2.004,12.14,21.964,24.288,2.473,11.2,14.628,17.053,17.73,16.34,0.446,4.025,15.225,9.684,31.182,14.899,13.228,6.102],[12.561,20.137,19.215,1.125,14.967,12.165,-1.903,6.535,10.327,2.157,6.441,22.915,26.93,17.336,8.014,4.822,8.31,18.215,13.903,-1.463,3.545,5.333,6.96,18.107,10.918,1.779,22.249,22.428,18.663,9.849,2.796,22.773,-5.019,19.792,11.316,1.314,9.45,6.699,19.68,14.9,3.385,21.523,11.815,5.04,8.435,9.556,18.385,13.755,12.75,14.324,16.486,1.712,17.326,15.344,30.294,1.08,13.974,5.515,23.31,2.657,10.122,20.272,10.021,12.909,20.077,1.878,9.173,0.793,9.949,17.914,25.663,6.946,12.297,0.524,-3.559,4.865,18.732,8.159,6.327,11.619,10.563,7.685,17.969,13.459,18.383,15.105,13.111,21.608,-0.729,1.211,26.954,22.185,15.433,6.46,15.786,18.446,4.458,10.021,5.443,9.413,4.902,19.33,13.844,8.672,-0.014,6.102,19.309,3.943,1.973,16.695,11.206,11.761,-1.07,19.092,21.452,4.023,8.136,2.92,23.156,4.443,22.495,19.69,2.621,22.883,10.63,0.143,-3.772,22.787,-3.787,11.62,3.635,18.177,20.882,20.796,8.44,20.872,9.823,0.53,13.145,12.355,20.996,9.639,3.851,20.562,6.755,23.15,12.485,7.46,9.129,5.244,14.877,15.102,14.14,12.052,11.513,9.389,6.787,19.103,11.15,15.226,2.379,18.735,13.782,13.937,17.268,16.17,2.201,6.056,8.982,28.579,20.781,3.007,19.02,10.053,1.517,11.921,21.497,23.522,2.77,11.508,14.311,16.78,17.419,15.93,0.743,4.355,15.412,9.08,31.609,14.795,13.193,5.82],[12.559,19.971,18.99,1.265,14.953,12.261,-1.836,6.374,10.389,1.922,6.364,22.927,27.158,17.518,7.94,4.609,8.135,18.464,14.058,-1.553,3.908,5.127,7.278,18.196,10.939,1.924,22.159,22.435,18.587,9.892,2.688,22.591,-4.889,19.738,11.215,1.429,9.43,6.751,19.677,14.806,3.239,21.546,11.936,4.922,8.655,9.486,18.353,13.682,12.57,14.05,16.416,1.702,17.554,15.282,30.406,1.175,13.983,5.684,23.027,2.709,9.929,20.372,9.877,12.837,20.814,1.884,9.878,1.241,9.199,17.687,25.747,6.794,11.919,0.015,-3.228,4.71,19.32,7.995,6.117,11.677,10.472,7.482,17.969,13.596,18.597,14.607,12.71,22.168,-0.168,1.378,27.215,22.253,15.994,6.255,15.816,18.813,4.56,9.477,5.649,9.526,5.29,19.59,13.511,8.477,0.031,5.775,19.236,3.366,1.992,16.496,11.336,11.443,-1.068,19.06,21.329,3.46,7.525,3.724,23.216,4.671,22.141,20.074,2.474,23.125,10.731,0.332,-3.965,22.714,-3.577,11.476,3.795,18.127,20.898,20.415,8.581,20.598,10.074,0.517,12.905,12.351,21.531,9.298,3.595,20.953,6.662,23.265,12.669,7.821,9.071,5.145,14.572,15.003,14.079,12.521,11.307,9.525,6.611,18.663,11.217,15.031,2.689,18.941,14.138,15.075,17.346,16.142,2.272,6.142,8.59,28.835,21.085,2.802,18.873,10.015,1.197,11.856,21.57,23.625,2.762,11.574,14.503,16.936,17.671,16.192,0.854,4.312,15.423,8.926,31.769,14.585,13.816,6.301],[12.541,19.988,18.634,1.429,14.883,12.294,-1.539,6.294,10.437,1.776,6.3,22.877,27.082,17.75,7.933,4.337,8.018,18.486,14.073,-1.612,4.222,5.039,7.453,18.337,10.91,2.073,22.06,22.427,18.588,10.032,2.706,22.436,-4.846,19.63,11.209,1.358,9.359,6.866,19.601,14.748,3.331,21.856,11.956,4.718,8.725,9.277,18.261,13.698,12.633,13.906,16.285,1.84,17.683,15.396,30.554,1.263,14.076,5.857,23.084,2.526,9.655,20.464,9.757,12.935,20.692,2.172,9.691,1.283,9.08,17.731,25.755,6.567,12.049,0.084,-2.77,4.756,19.146,7.869,5.732,12.197,10.653,7.838,17.645,13.757,18.523,14.552,12.393,22.175,0.055,0.992,27.166,22.105,16.018,6.111,15.681,18.889,4.974,9.572,5.811,9.143,5.257,19.989,13.599,8.274,-0.115,6.621,19.119,3.046,2.283,16.566,11.375,11.517,-1.463,19.11,21.418,3.566,7.694,3.494,23.652,5.478,21.995,19.909,2.571,23.33,10.792,0.555,-3.725,23.045,-4.157,11.507,3.562,17.894,20.664,20.079,8.656,19.893,10.239,0.175,12.975,12.584,21.896,8.948,3.768,21.216,6.508,23.184,11.662,7.731,9.369,5.055,14.154,14.739,14.067,12.453,11.245,10.294,6.584,18.854,10.854,15.205,2.653,18.761,14.01,15.093,16.993,16.339,2.114,5.641,8.088,28.949,20.755,2.734,18.765,10.497,1.987,11.734,21.489,23.743,2.768,10.861,14.004,17.079,17.657,16.379,0.533,4.104,15.475,9.322,31.966,14.682,13.756,6.487],[12.608,20.1,18.443,1.601,14.876,12.258,-1.296,6.289,10.363,1.77,6.192,22.787,26.844,17.85,7.906,4.159,8.049,18.415,14.041,-1.807,4.542,5.135,7.512,18.402,10.824,2.23,21.989,22.475,18.556,10.233,2.685,22.393,-4.988,19.539,11.385,1.206,9.173,6.954,19.399,14.588,3.531,22.202,12.013,4.528,8.726,8.999,18.148,13.774,12.625,13.767,16.119,1.893,17.763,15.57,30.661,1.523,14.228,5.945,23.193,2.326,9.49,20.493,9.619,13.051,20.148,2.171,9.41,0.904,9.607,18.069,25.228,6.992,12.145,0.547,-2.734,4.812,18.95,7.695,5.548,11.937,10.553,7.865,16.844,13.333,18.047,15.014,12.393,21.991,0.163,0.765,27.072,21.632,16.145,6.244,15.471,18.996,5.219,9.793,5.823,9.165,5.212,20.01,13.622,8.429,-0.204,6.827,19.591,2.635,2.891,16.671,11.712,11.601,-1.402,18.761,21.527,4.148,8.116,2.88,23.656,6.074,22.011,19.253,2.608,23.094,10.916,0.134,-3.41,22.962,-4.655,11.885,3.729,17.972,20.567,20.154,8.741,20.135,10.101,0.178,13.018,12.376,22.08,9.127,4.316,20.859,6.81,23.853,11.775,7.891,9.615,5.277,14.009,15.009,13.953,12.392,12.0,10.141,6.389,18.951,10.467,15.627,2.348,18.58,14.11,14.872,16.766,15.897,2.621,5.149,8.156,28.891,20.731,2.704,19.034,10.559,2.264,11.882,21.439,23.787,3.061,10.585,13.969,17.106,17.671,15.601,0.619,3.84,15.71,8.791,31.926,14.934,13.408,6.717],[12.72,20.016,18.267,1.713,14.932,12.12,-1.33,6.295,10.134,1.914,6.163,22.619,26.608,17.877,7.819,4.009,8.304,18.348,13.957,-2.029,4.886,5.25,7.472,18.274,10.816,2.399,21.959,22.541,18.389,10.425,2.692,22.389,-5.195,19.468,11.626,0.992,9.068,7.099,19.317,14.347,3.773,22.421,12.055,4.552,8.712,8.769,18.075,13.97,12.696,13.727,15.879,2.025,17.758,15.659,30.723,1.859,14.354,6.03,23.008,2.331,9.373,20.499,9.488,13.155,19.744,1.514,9.423,1.595,9.313,18.3,25.311,7.067,12.122,0.545,-2.695,4.559,19.385,7.485,5.802,11.46,10.189,7.652,16.696,13.15,18.078,14.932,12.749,21.723,-0.084,1.267,27.157,21.762,16.221,6.081,15.583,19.525,5.139,10.001,5.729,9.326,5.791,19.632,13.637,8.533,-0.502,6.56,19.285,2.547,3.42,17.08,11.845,11.38,-1.271,18.43,21.622,4.234,8.423,3.828,23.564,6.04,22.402,19.67,2.584,22.882,11.262,-0.071,-3.618,23.012,-4.695,12.158,3.699,18.175,20.678,20.052,8.799,20.645,9.756,0.36,13.071,12.079,22.321,9.48,3.746,20.081,6.916,24.078,12.021,7.741,9.541,5.506,14.153,14.914,13.969,12.611,12.028,9.521,5.977,18.458,9.997,15.615,2.625,18.493,14.48,14.83,16.978,15.929,2.714,5.275,8.541,28.927,20.988,2.68,18.92,9.955,1.766,12.151,21.515,23.852,3.535,10.8,14.128,17.137,18.329,16.014,0.86,3.645,15.767,7.995,31.554,14.91,13.742,6.685],[12.752,19.825,18.236,1.838,14.956,12.019,-1.535,6.174,9.706,2.076,6.32,22.452,26.474,17.896,7.636,3.873,8.646,18.303,13.985,-2.089,5.172,5.318,7.316,18.206,10.822,2.522,22.035,22.498,18.201,10.533,2.984,22.456,-5.39,19.426,11.601,0.944,8.995,7.372,19.382,14.118,4.063,22.539,11.999,4.476,8.696,8.589,18.029,14.182,12.793,13.855,15.893,2.405,17.972,15.761,30.675,2.048,14.318,6.154,22.72,2.326,9.295,20.399,9.403,13.235,19.728,1.216,8.957,2.562,8.87,18.255,25.12,6.851,12.282,0.615,-2.918,4.657,19.278,7.678,6.525,11.841,10.406,7.589,16.76,13.277,18.111,14.955,12.68,21.455,-0.121,1.479,27.246,21.958,16.365,5.925,15.64,19.752,5.22,10.336,5.813,9.107,6.267,19.505,13.809,8.87,-1.247,5.8,18.791,2.282,3.785,16.994,11.878,11.495,-1.511,18.639,21.594,3.681,8.459,3.941,23.431,6.267,22.111,19.655,2.501,23.215,11.627,-0.033,-3.931,23.033,-4.956,12.244,3.652,18.034,20.711,19.781,9.202,20.542,9.974,0.042,13.204,12.7,21.909,9.616,3.293,20.48,6.735,23.845,11.673,7.929,9.447,5.778,13.99,14.318,14.339,12.257,11.738,9.733,6.289,18.46,9.5,15.824,3.024,18.479,14.158,14.562,16.549,16.236,2.347,5.848,8.479,28.803,20.845,2.663,18.653,9.197,2.192,11.919,21.207,23.542,3.557,10.979,14.299,17.179,18.033,15.915,1.116,3.678,15.677,8.141,31.445,14.902,13.677,6.685],[12.808,19.639,18.26,2.021,14.93,12.0,-1.699,6.06,9.237,2.167,6.648,22.33,26.415,17.913,7.517,3.757,9.044,18.392,14.119,-2.169,5.338,5.183,7.128,18.192,10.845,2.583,22.221,22.371,17.979,10.665,3.16,22.442,-5.593,19.395,11.392,1.056,9.103,7.747,19.584,13.911,4.272,22.487,11.864,4.386,8.803,8.419,18.05,14.393,12.829,14.011,16.124,2.748,18.173,15.703,30.553,2.097,14.078,6.346,22.378,2.294,9.313,20.167,9.267,13.094,19.601,1.322,8.681,2.931,8.273,17.893,24.777,6.623,12.126,0.997,-3.026,4.969,18.864,7.405,6.448,12.197,10.299,7.368,17.177,13.648,17.827,14.592,12.182,21.248,-0.144,1.503,27.06,21.293,16.251,5.875,15.484,19.623,5.03,10.799,5.816,9.083,6.482,19.544,14.084,9.404,-0.938,5.75,19.011,2.284,3.404,16.838,12.177,11.164,-1.415,18.834,21.445,3.529,7.968,3.745,23.662,6.247,21.311,18.703,2.823,23.577,11.062,-0.084,-3.864,23.466,-5.113,11.651,4.348,17.818,20.67,19.794,9.521,20.177,9.92,-0.026,12.926,12.503,22.021,9.046,4.085,20.878,7.156,24.021,12.107,7.51,9.164,5.983,13.576,14.723,14.721,12.501,11.49,10.393,6.317,18.774,8.861,16.027,3.35,18.324,14.168,14.731,16.394,16.314,3.128,6.028,8.204,28.69,20.914,2.779,18.807,9.454,2.46,11.98,20.892,23.621,3.606,10.638,14.158,17.299,18.407,15.519,1.284,3.769,15.572,8.5,31.887,14.97,13.486,7.02],[13.005,19.346,18.219,2.298,14.896,11.896,-1.708,5.87,8.827,2.207,6.808,22.204,26.31,17.76,7.389,3.685,9.441,18.474,14.128,-2.18,5.316,4.955,6.948,18.173,10.932,2.703,22.345,22.415,17.742,10.737,3.238,22.418,-5.653,19.436,11.156,1.207,9.181,8.26,19.673,13.777,4.388,22.366,11.763,4.596,8.879,8.134,18.13,14.67,12.825,14.142,16.148,2.92,18.195,15.568,30.626,2.228,13.799,6.542,22.055,2.283,9.434,20.19,9.222,12.963,19.503,1.269,8.366,2.933,7.871,17.971,24.81,6.624,11.982,1.004,-2.945,5.452,18.917,7.276,6.109,11.979,10.286,8.001,16.995,13.465,17.938,14.256,11.903,21.02,-0.264,1.486,27.024,21.127,15.94,5.617,15.133,19.397,4.755,11.192,5.449,9.351,6.474,19.678,14.242,9.586,-0.636,5.97,18.58,2.046,3.019,16.759,12.505,11.527,-1.574,19.084,21.33,3.463,6.908,4.046,23.683,6.174,21.026,18.743,2.49,23.784,10.814,0.287,-3.985,23.473,-5.503,11.128,4.246,17.776,20.908,19.81,9.831,20.512,9.914,0.264,12.845,12.123,22.233,8.831,4.2,20.961,7.807,24.155,12.818,7.644,9.426,6.35,13.345,14.793,14.569,12.254,11.521,10.489,6.411,18.937,8.684,16.352,3.535,18.18,14.607,14.792,16.848,16.461,3.412,5.697,8.0,29.003,20.798,2.727,18.538,9.569,1.999,11.814,21.003,23.293,3.847,10.637,14.28,17.295,18.494,16.168,1.387,3.649,15.436,8.998,32.029,14.715,13.299,7.653],[13.165,19.139,18.114,2.423,14.723,11.704,-1.548,5.704,8.522,2.16,6.778,22.12,26.099,17.588,7.359,3.599,9.569,18.409,13.837,-2.124,5.223,4.697,6.63,18.051,11.262,2.697,22.384,22.641,17.651,10.81,3.171,22.392,-5.614,19.539,11.057,1.465,9.269,8.703,19.652,13.73,4.481,22.269,11.708,4.965,8.946,7.895,18.162,14.919,12.875,14.25,16.087,2.952,18.099,15.614,30.848,2.275,13.839,6.742,21.927,2.163,9.646,20.244,9.332,12.829,19.08,1.505,8.394,2.577,8.127,18.015,24.757,6.688,12.717,1.542,-2.974,5.492,18.621,6.806,6.098,11.62,9.996,7.734,16.712,13.131,18.008,14.292,11.885,20.89,-0.259,1.488,27.112,21.39,15.811,5.505,15.391,19.378,4.522,11.395,5.117,9.617,6.494,20.012,14.066,9.26,-0.488,6.137,18.532,2.074,3.437,16.632,12.584,12.142,-1.786,18.68,21.619,3.696,6.621,3.924,23.847,6.242,21.128,19.137,2.702,23.711,11.031,0.551,-3.989,23.71,-5.309,11.687,3.961,18.043,21.379,19.803,10.192,20.582,10.042,0.521,12.641,12.245,21.874,9.24,3.687,20.82,8.172,23.765,12.472,7.31,9.351,6.3,13.621,13.89,14.646,12.441,11.446,10.124,6.784,18.603,8.489,16.56,3.428,18.555,14.134,14.919,16.696,16.298,3.089,5.603,8.345,29.116,20.731,2.577,18.886,9.608,2.633,11.692,20.755,22.99,3.921,10.804,14.683,17.107,17.924,15.777,1.538,3.561,15.363,9.298,31.997,14.56,13.489,7.827],[13.232,19.004,17.978,2.5,14.489,11.54,-1.51,5.631,8.432,2.089,6.809,22.166,26.009,17.574,7.336,3.501,9.375,18.295,13.486,-2.026,5.238,4.61,6.271,17.946,11.724,2.72,22.324,22.828,17.825,10.89,2.991,22.376,-5.517,19.659,11.231,1.761,9.2,8.963,19.671,13.635,4.459,22.062,11.757,5.208,9.083,7.762,18.089,15.001,12.796,14.364,15.872,2.871,17.871,15.552,30.927,2.333,14.125,6.842,21.864,2.01,9.885,20.218,9.599,12.837,18.437,1.321,8.337,2.521,8.079,17.593,24.404,6.57,12.787,1.766,-2.937,5.148,18.56,6.633,6.376,11.819,9.845,7.08,16.772,12.791,17.324,14.414,11.997,20.982,-0.089,1.304,26.719,21.44,15.807,5.609,15.221,19.379,4.363,11.13,4.744,10.019,6.449,19.455,13.757,9.252,-0.604,5.516,18.509,2.186,3.936,16.429,12.342,11.92,-1.615,17.995,22.028,3.602,6.717,3.904,24.169,5.889,21.327,19.004,2.853,23.739,11.601,0.499,-3.96,23.739,-4.683,12.291,3.923,18.464,22.118,20.054,10.165,20.377,9.943,0.8,12.556,12.524,21.828,9.29,4.057,20.862,8.718,23.562,12.107,7.504,9.038,6.034,13.949,13.888,14.994,12.201,11.495,9.846,6.694,18.695,8.147,16.706,3.395,18.455,13.964,15.553,16.504,16.137,3.647,6.543,8.538,29.431,21.315,2.59,19.055,9.919,2.583,11.684,20.37,23.074,4.104,10.922,14.362,16.862,18.365,15.835,1.551,3.255,15.826,9.267,32.46,14.566,13.655,7.709],[13.269,18.871,17.839,2.645,14.201,11.408,-1.675,5.541,8.516,1.908,6.924,22.265,26.063,17.659,7.149,3.385,9.14,18.066,13.453,-1.953,5.125,4.601,5.916,18.038,12.039,2.772,22.397,23.087,17.978,10.908,2.786,22.462,-5.422,19.806,11.465,1.922,9.237,9.189,19.766,13.56,4.418,21.895,11.875,5.294,9.158,7.765,17.93,14.983,12.577,14.512,15.614,2.861,17.773,15.407,30.939,2.397,14.313,6.976,21.813,1.848,9.984,20.277,9.998,12.913,18.417,0.881,8.048,3.374,8.122,17.636,24.208,6.177,12.264,1.402,-2.853,5.354,18.836,7.0,6.548,12.029,9.867,7.287,16.373,12.539,17.319,14.259,11.944,20.902,-0.34,1.108,26.34,21.603,15.793,5.5,14.897,19.251,3.91,10.597,4.57,10.274,6.632,19.593,13.423,9.569,-0.558,4.876,18.914,2.717,3.962,16.518,12.359,11.789,-1.273,18.407,21.97,3.387,6.422,3.611,24.103,5.633,21.339,18.826,2.521,23.631,11.674,0.801,-4.003,23.486,-4.377,12.006,4.053,18.722,22.319,20.593,9.941,20.516,9.545,1.058,12.646,12.81,21.786,9.546,4.736,21.104,8.586,23.71,12.287,7.239,8.936,6.185,13.908,14.263,15.121,12.396,11.466,10.078,7.141,18.833,7.431,16.444,3.34,17.463,14.231,15.352,16.411,15.932,3.582,7.215,8.381,29.753,21.047,2.225,18.587,10.246,1.673,11.903,20.603,23.055,4.033,11.435,13.919,17.013,18.612,15.931,1.341,3.298,15.809,9.654,32.548,14.655,13.497,7.537],[13.16,18.966,17.77,2.813,13.867,11.244,-1.833,5.48,8.698,1.582,7.121,22.277,26.102,17.789,7.027,3.283,9.063,17.999,13.588,-1.813,4.93,4.576,5.685,18.176,12.086,2.782,22.498,23.272,18.086,10.848,2.653,22.57,-5.475,19.943,11.506,2.022,9.178,9.351,19.985,13.659,4.363,21.92,12.078,5.542,9.21,7.732,17.712,14.845,12.418,14.518,15.526,2.942,17.82,15.459,30.915,2.255,14.103,7.182,21.862,1.632,9.965,20.233,10.401,12.985,18.772,0.716,8.26,3.509,7.674,18.104,24.547,6.023,12.328,1.444,-3.385,5.702,18.396,6.924,6.329,12.219,9.715,7.329,16.444,12.287,17.674,13.793,11.539,20.67,-0.646,1.384,26.594,21.882,16.041,5.213,15.233,19.791,3.261,10.515,4.179,10.566,6.564,19.532,13.733,9.588,-0.316,5.2,19.237,3.591,3.563,16.867,12.642,12.437,-1.498,18.08,21.738,3.633,6.01,3.265,24.182,5.386,21.991,19.173,2.575,23.604,11.267,0.858,-3.886,23.796,-5.06,12.06,3.801,19.171,21.657,20.909,10.09,20.621,9.994,0.93,12.889,12.379,21.597,9.844,4.422,21.018,8.133,23.65,12.099,7.494,9.044,6.302,13.14,14.262,14.973,12.261,11.565,10.309,7.064,18.668,7.348,16.337,3.576,17.555,14.273,15.183,16.434,15.885,3.133,7.025,8.857,29.391,20.587,2.245,18.53,9.989,2.207,11.984,20.459,22.72,3.44,12.09,14.275,17.06,17.761,15.082,1.388,2.999,15.66,9.462,32.317,14.834,13.948,7.484],[13.032,19.31,17.882,2.944,13.543,11.012,-2.002,5.345,8.763,1.334,7.202,22.185,26.153,17.873,6.937,3.134,9.123,17.887,13.812,-1.593,4.718,4.59,5.437,18.375,12.057,2.749,22.574,23.172,18.232,10.689,2.64,22.696,-5.644,20.023,11.562,2.09,9.15,9.434,20.216,13.824,4.373,21.965,12.143,5.734,9.263,7.669,17.565,14.72,12.422,14.541,15.552,3.086,17.66,15.523,30.79,2.08,13.765,7.295,21.865,1.447,9.886,20.02,10.576,12.985,18.999,0.46,8.852,2.888,8.305,18.161,24.624,6.481,11.932,1.619,-3.445,6.065,18.909,6.364,6.352,12.521,9.437,7.062,16.288,11.854,17.586,13.392,11.297,20.536,-0.541,1.421,27.202,21.855,16.026,5.233,15.228,20.129,3.282,10.776,4.196,10.926,6.294,19.437,14.347,9.124,0.031,5.915,18.77,4.43,3.426,17.299,12.541,12.709,-1.332,18.165,22.35,3.619,5.776,3.403,24.609,5.106,22.571,19.641,2.826,24.018,10.939,1.053,-3.986,23.582,-5.587,11.943,3.748,19.052,21.016,20.611,10.42,20.877,10.378,0.9,12.892,12.011,21.768,9.697,4.564,21.263,8.415,23.423,11.965,7.566,9.026,6.145,12.523,14.457,14.742,12.72,11.235,10.479,7.385,18.635,8.13,16.376,3.605,17.938,14.377,15.524,16.253,15.955,3.256,6.962,8.81,29.153,21.096,1.885,18.798,10.625,2.061,11.806,20.462,23.261,3.91,12.335,14.291,17.23,17.657,14.973,1.547,2.715,15.355,9.119,32.068,14.684,13.421,7.737],[12.969,19.765,17.963,2.955,13.369,10.716,-2.032,5.15,8.813,1.319,7.258,22.042,26.299,17.898,6.911,3.069,9.144,17.813,13.942,-1.467,4.532,4.703,5.214,18.598,12.031,2.826,22.822,23.186,18.253,10.492,2.705,22.769,-5.843,20.033,11.631,2.082,9.107,9.513,20.304,13.935,4.4,21.98,12.042,5.883,9.274,7.772,17.653,14.682,12.379,14.701,15.632,3.193,17.415,15.695,30.667,1.981,13.402,7.357,21.984,1.291,9.709,19.918,10.644,12.894,19.016,0.694,7.963,2.92,8.433,17.992,24.539,6.263,11.513,1.911,-3.466,5.916,19.513,6.434,6.319,12.134,9.349,7.274,16.344,11.827,17.723,13.17,11.683,20.495,-0.675,0.895,26.473,22.08,16.042,5.33,15.557,20.217,3.524,10.866,4.088,11.514,6.007,19.212,14.214,9.199,-0.267,5.959,18.624,4.767,3.223,17.318,12.123,12.191,-0.947,18.12,22.358,3.535,5.967,3.515,24.732,5.163,22.229,19.664,2.77,23.951,10.856,1.238,-4.211,23.625,-5.576,11.802,4.15,18.909,21.047,20.512,10.378,21.033,10.253,0.945,12.873,12.564,21.328,9.777,5.33,21.473,8.924,23.642,12.871,8.244,8.999,6.008,12.601,14.662,14.617,12.594,11.12,10.265,7.767,18.132,8.433,16.328,3.381,18.34,14.602,15.462,16.111,15.523,3.573,6.603,8.251,29.191,20.993,1.721,18.598,11.024,1.677,11.524,20.692,23.43,3.709,12.194,14.123,17.502,18.055,15.61,1.58,2.784,14.824,9.395,32.175,14.488,12.675,8.145],[12.762,20.137,17.98,2.952,13.381,10.546,-1.932,5.003,8.681,1.456,7.352,21.952,26.287,17.908,6.862,3.115,9.182,17.752,13.979,-1.588,4.343,4.887,5.135,18.743,12.109,2.974,22.887,23.362,18.218,10.398,2.852,22.941,-5.99,20.003,11.649,2.181,9.054,9.643,20.232,14.01,4.401,22.013,11.937,6.123,9.207,7.988,17.76,14.569,12.507,14.824,15.815,3.188,17.249,15.928,30.616,1.888,13.014,7.39,22.225,1.207,9.499,19.896,10.731,12.734,19.705,0.788,8.124,3.554,7.733,17.912,24.685,5.215,11.421,1.579,-3.503,5.895,19.376,6.637,6.521,11.862,8.977,7.4,16.431,11.75,17.733,13.143,11.609,20.341,-1.105,0.45,26.427,22.289,16.191,5.64,15.802,20.256,3.472,10.758,3.774,12.119,5.852,18.957,13.485,9.625,-0.385,5.528,18.747,4.379,3.531,17.161,12.039,10.994,-0.768,18.305,21.966,3.667,6.218,3.65,24.491,5.011,21.725,19.525,3.086,24.024,10.687,0.835,-4.54,23.48,-5.477,12.173,4.136,18.971,21.05,20.775,9.854,20.899,10.217,1.103,13.018,12.195,21.308,9.939,5.178,21.439,8.649,23.695,12.344,8.153,8.99,6.25,13.56,14.73,14.749,12.353,11.058,10.184,7.891,18.609,7.93,16.317,3.354,18.126,14.731,15.567,16.654,15.374,3.451,6.272,8.257,29.24,20.424,1.919,18.192,11.119,1.632,11.69,20.555,23.118,3.497,12.121,14.325,17.56,17.875,15.645,1.689,2.641,14.614,9.104,32.17,14.639,12.392,8.446],[12.444,20.333,17.944,2.921,13.426,10.39,-1.875,4.823,8.575,1.457,7.46,21.935,26.248,17.901,6.657,3.11,9.176,17.708,13.78,-1.67,4.186,4.981,5.14,18.802,12.162,3.302,22.56,23.525,18.189,10.416,3.037,23.052,-6.077,19.899,11.673,2.292,9.012,9.743,20.211,14.114,4.45,22.11,11.79,6.202,9.095,8.111,17.853,14.456,12.474,14.981,15.996,3.102,17.209,15.999,30.553,1.892,12.888,7.317,22.348,1.188,9.368,19.756,10.829,12.722,20.473,0.929,8.228,3.762,7.575,17.729,24.613,4.855,11.395,1.609,-3.358,5.882,19.519,6.562,7.033,11.502,8.901,7.278,16.387,11.794,17.44,13.25,11.515,20.346,-0.799,0.665,26.433,22.116,16.16,5.06,15.473,20.288,4.124,10.724,4.241,12.669,5.618,18.773,13.704,9.206,-0.075,5.431,18.483,3.678,3.818,17.216,12.195,10.781,-1.213,18.601,22.255,3.912,5.944,3.74,24.309,4.807,22.294,19.867,2.921,24.063,10.322,1.006,-4.26,23.451,-5.989,12.536,3.97,19.47,21.322,20.693,9.481,20.835,9.774,1.651,12.932,12.248,21.617,9.687,5.141,21.546,8.5,23.555,11.88,8.141,9.093,6.227,14.247,14.693,14.662,12.104,11.338,10.369,7.724,19.289,7.707,15.959,3.803,17.704,14.991,15.787,16.589,15.482,3.663,6.582,8.203,29.15,20.629,2.021,18.224,11.229,2.039,11.683,20.776,23.573,3.598,12.543,14.234,17.678,17.682,16.143,1.865,2.354,14.425,8.866,31.944,14.435,12.37,8.61],[12.122,20.436,17.803,2.924,13.429,10.106,-1.811,4.622,8.378,1.483,7.658,21.982,26.038,17.845,6.406,3.063,8.91,17.671,13.552,-1.586,4.112,4.987,5.072,19.025,12.273,3.623,22.337,23.682,18.197,10.406,3.143,23.076,-6.037,19.818,11.671,2.387,9.044,9.681,20.354,14.281,4.572,22.147,11.679,6.087,9.019,8.057,17.977,14.368,12.343,15.15,16.08,3.068,17.165,16.026,30.398,2.165,13.051,7.183,22.47,1.161,9.293,19.672,10.998,12.715,20.934,0.775,8.281,3.604,8.245,17.609,24.213,5.527,10.836,1.843,-3.156,6.096,19.301,6.019,6.965,11.104,8.768,6.781,16.293,12.114,17.475,13.146,11.105,20.417,-0.531,0.792,26.591,22.257,16.098,4.701,15.15,20.271,4.321,10.586,4.844,13.02,5.445,18.398,13.77,9.088,0.166,6.13,18.153,3.311,3.741,17.533,12.24,11.742,-1.68,18.596,22.49,4.365,6.103,3.889,24.872,4.714,22.384,19.632,3.207,23.741,10.773,1.128,-4.255,23.693,-6.733,12.304,4.437,19.503,21.474,20.249,9.793,21.309,9.528,1.614,12.778,12.486,21.652,9.413,5.064,21.419,9.163,23.797,12.484,8.103,9.269,6.168,14.299,14.71,14.821,11.707,11.39,10.427,7.698,18.65,8.306,15.772,3.618,18.051,15.136,15.659,16.538,15.562,3.536,7.603,8.037,28.974,20.594,2.022,18.588,11.101,1.856,11.682,20.988,23.885,3.96,12.666,14.23,17.772,17.853,16.14,1.644,2.555,14.563,9.111,31.798,14.39,12.523,8.117],[11.696,20.412,17.748,3.04,13.344,9.759,-1.689,4.609,8.31,1.64,7.848,22.079,25.809,17.672,6.399,3.109,8.66,17.563,13.437,-1.621,4.055,5.057,5.086,19.536,12.572,3.783,22.242,23.728,18.173,10.451,3.319,23.077,-6.03,19.731,11.592,2.323,9.055,9.599,20.559,14.452,4.614,22.109,11.611,5.954,8.994,8.071,17.855,14.376,12.417,15.1,16.078,3.042,17.107,16.004,30.222,2.44,13.242,7.175,22.601,1.207,9.203,19.755,11.157,12.722,21.329,0.787,8.101,4.017,7.468,17.996,24.111,5.599,10.581,1.682,-3.192,6.826,19.287,5.568,6.87,11.253,8.367,5.99,16.043,12.217,17.514,12.913,10.454,20.518,-0.461,0.397,26.208,22.259,15.786,4.803,15.034,20.443,3.528,10.086,4.578,13.25,5.363,18.279,13.544,9.377,-0.117,6.643,18.654,2.65,3.87,17.767,12.226,11.777,-1.005,18.605,22.472,4.173,5.891,3.986,24.967,4.935,21.898,19.529,3.623,23.747,11.012,1.378,-4.141,23.918,-6.231,11.774,4.682,19.194,21.799,20.572,10.066,21.19,9.982,1.177,13.214,11.96,21.723,9.631,5.143,21.93,9.517,23.95,12.202,8.341,9.294,6.535,14.374,15.028,14.831,12.347,11.1,10.141,7.715,18.746,8.653,15.987,3.664,18.671,15.042,15.675,16.711,15.328,3.238,7.511,8.119,28.767,20.065,2.155,18.197,10.705,1.685,11.697,21.08,23.812,4.206,12.394,14.767,17.878,17.536,15.426,1.489,2.266,14.816,8.918,31.779,14.623,12.592,7.138],[11.396,20.378,17.755,3.261,13.217,9.371,-1.583,4.615,8.23,1.731,8.088,22.195,25.594,17.393,6.37,3.065,8.505,17.437,13.366,-1.602,4.003,5.096,5.052,20.027,12.901,3.977,22.175,23.633,18.156,10.6,3.533,23.25,-5.812,19.733,11.515,2.18,9.142,9.611,20.788,14.672,4.595,22.155,11.582,6.01,9.028,8.169,17.707,14.443,12.384,15.111,15.874,3.021,17.024,15.913,30.162,2.506,13.329,7.094,22.696,1.203,9.016,19.718,11.115,12.803,21.386,1.569,7.917,4.582,6.991,18.201,24.598,5.312,9.703,2.066,-3.379,6.833,19.598,6.142,6.892,11.218,8.249,6.09,16.138,11.832,17.435,12.955,10.589,20.633,-0.778,0.15,25.844,21.738,15.644,4.787,14.849,20.909,3.418,9.501,4.186,13.701,5.277,18.702,13.67,9.16,-0.388,6.875,18.871,2.147,3.645,18.202,12.138,11.273,-0.664,18.466,21.981,3.99,5.924,4.438,24.805,4.885,21.719,19.68,2.975,23.711,11.084,1.165,-4.334,23.826,-5.581,11.119,4.541,18.951,21.881,20.398,10.09,21.345,10.138,1.165,13.276,11.666,21.344,9.996,4.727,22.196,9.203,23.866,12.532,8.557,9.399,6.486,14.246,15.197,14.471,12.051,10.97,10.083,7.752,18.976,8.597,16.204,3.812,18.774,14.968,15.833,16.727,15.228,3.436,6.585,7.816,28.663,20.525,2.23,18.156,10.658,2.291,11.769,20.958,23.737,4.298,12.252,14.647,17.795,17.361,15.593,1.393,2.399,14.858,8.825,31.557,14.545,12.835,7.217],[11.23,20.37,17.827,3.481,13.018,9.163,-1.594,4.69,8.074,1.893,8.099,22.193,25.44,17.106,6.21,2.929,8.353,17.418,13.31,-1.543,3.946,5.148,4.976,20.365,13.256,3.966,22.177,23.421,18.057,10.723,3.796,23.421,-5.47,19.701,11.311,2.055,9.271,9.717,20.947,14.94,4.646,22.115,11.519,6.071,9.123,8.268,17.8,14.416,12.168,15.261,15.734,2.945,17.093,15.834,30.103,2.4,13.304,6.938,22.671,1.202,8.733,19.794,10.907,12.785,21.472,1.765,8.481,5.009,7.527,18.006,23.99,4.818,9.798,2.573,-3.038,6.896,19.49,6.296,6.943,10.361,8.358,6.179,16.185,11.345,17.61,13.194,10.49,20.83,-0.813,0.281,26.04,21.531,15.417,4.754,14.966,21.53,3.934,9.5,4.164,13.62,5.2,18.773,13.638,9.07,-0.136,6.784,18.17,2.066,3.988,18.782,12.122,11.513,-1.07,18.247,22.038,4.406,5.961,4.111,24.777,4.853,22.336,19.29,3.096,23.835,11.399,0.569,-3.734,24.686,-5.424,10.723,4.455,18.588,22.326,20.254,9.886,21.92,10.153,1.481,12.847,11.907,21.6,9.606,4.917,22.073,8.939,23.687,13.012,8.574,9.784,6.196,13.777,15.085,14.391,11.796,11.19,10.29,7.668,18.668,8.347,16.124,3.494,18.839,14.802,15.858,16.491,15.265,3.909,6.66,7.634,28.663,20.801,2.032,18.494,10.914,2.092,11.657,21.103,23.993,4.07,12.489,14.133,17.539,17.57,15.399,1.622,2.6,14.709,8.686,31.491,14.567,13.45,7.771],[11.192,20.37,17.975,3.62,12.806,9.102,-1.539,4.611,8.136,1.991,7.994,22.12,25.374,16.834,6.066,2.795,8.317,17.478,13.283,-1.563,3.953,5.307,4.867,20.692,13.501,3.791,22.44,23.365,17.823,10.815,3.859,23.674,-5.182,19.58,11.009,1.982,9.424,9.894,20.878,15.115,4.667,22.045,11.45,6.121,9.044,8.389,18.004,14.288,12.065,15.331,15.662,2.867,17.286,15.804,30.101,2.083,13.201,6.929,22.652,1.274,8.481,19.908,10.817,12.73,21.409,1.983,8.193,5.084,7.67,17.654,23.821,5.242,10.622,3.01,-3.05,6.821,19.224,6.037,6.913,9.727,8.273,5.872,16.294,10.977,17.581,12.908,10.392,21.007,-0.727,1.067,25.353,21.608,15.038,4.384,14.969,21.815,4.173,9.77,3.938,14.13,5.652,18.792,13.384,8.983,0.224,6.612,18.004,2.076,4.007,19.16,12.369,11.998,-1.369,18.309,22.242,4.222,6.251,4.378,24.477,4.523,22.502,18.953,3.75,24.028,11.301,0.519,-3.446,25.074,-5.309,10.971,4.988,18.196,22.647,20.184,9.199,21.819,10.584,1.499,12.278,11.892,21.934,9.683,5.128,21.888,9.44,23.759,12.542,7.936,9.994,6.321,13.651,15.46,14.796,12.101,10.908,10.356,7.864,18.744,8.228,15.722,3.489,19.048,14.735,16.099,16.601,15.403,3.579,6.883,7.699,28.525,20.315,2.314,18.661,11.032,1.878,11.581,21.101,23.969,4.016,12.405,14.524,17.617,17.652,15.389,1.515,2.324,14.793,7.931,31.446,14.575,13.704,7.711],[11.217,20.352,18.076,3.69,12.595,9.199,-1.489,4.54,8.183,2.117,8.095,22.048,25.357,16.57,5.929,2.699,8.322,17.581,13.165,-1.593,4.051,5.414,4.697,21.118,13.709,3.62,22.789,23.423,17.603,10.809,3.888,23.89,-4.987,19.351,10.724,2.055,9.524,10.169,20.7,15.282,4.66,22.165,11.431,6.238,8.921,8.489,18.206,14.16,12.054,15.423,15.643,2.745,17.457,15.818,30.161,1.858,13.118,7.013,22.669,1.399,8.244,19.902,10.896,12.676,21.24,1.809,8.069,5.05,7.394,17.216,23.564,5.599,10.715,3.425,-3.031,6.467,19.175,5.734,7.252,9.783,7.693,5.913,16.541,10.881,17.562,12.663,9.97,20.994,-0.587,1.324,25.267,21.852,14.781,4.219,14.969,21.857,3.623,9.953,4.062,14.272,5.604,18.628,13.131,8.995,-0.097,6.662,18.198,2.29,3.454,19.239,12.337,12.286,-1.662,18.745,21.79,3.85,6.219,4.455,24.543,4.297,22.315,19.213,3.066,24.334,11.167,0.883,-3.565,24.775,-5.286,11.154,4.927,18.361,22.935,20.048,9.018,21.126,10.165,0.939,12.328,11.785,21.689,9.758,5.137,21.669,9.568,24.105,12.071,7.716,10.208,6.471,13.856,15.651,14.866,12.091,10.819,9.829,8.0,18.838,8.463,15.452,3.82,19.488,14.597,16.213,16.381,15.669,2.805,6.826,7.191,28.617,20.893,2.491,18.116,10.878,1.638,11.921,20.999,23.624,3.631,12.13,14.657,17.732,17.892,15.822,1.278,2.241,14.75,7.91,31.561,14.512,13.435,7.163],[11.282,20.356,18.088,3.805,12.442,9.107,-1.528,4.519,7.933,2.212,8.28,21.962,25.196,16.323,5.798,2.567,8.442,17.626,12.994,-1.703,4.055,5.368,4.52,21.497,13.86,3.345,23.061,23.25,17.599,10.636,3.955,23.972,-5.01,19.186,10.635,2.163,9.455,10.442,20.512,15.5,4.597,22.372,11.467,6.337,8.862,8.588,18.431,14.042,12.181,15.492,15.577,2.577,17.635,15.733,30.295,1.856,13.047,7.081,22.579,1.51,7.935,19.978,11.08,12.746,21.439,1.576,9.033,4.996,7.428,16.453,23.607,5.288,10.299,3.303,-3.205,6.744,19.123,6.006,7.444,10.124,8.249,6.34,16.643,10.887,17.597,12.454,10.316,20.924,-0.444,1.05,26.047,22.147,14.779,4.101,14.735,21.576,3.175,9.82,4.429,13.914,5.771,18.656,12.932,8.817,-0.19,6.73,17.807,2.999,3.671,19.672,11.879,12.349,-1.553,18.735,21.895,4.212,5.848,4.097,24.747,4.205,22.302,19.233,2.619,24.573,11.49,1.225,-3.399,24.181,-4.709,10.903,4.725,18.264,23.203,19.838,9.948,21.42,9.796,0.909,12.171,11.742,21.388,9.554,5.074,21.662,9.54,24.052,11.894,7.537,10.05,6.332,14.255,15.198,14.667,11.884,11.319,9.884,7.892,18.646,8.937,15.472,3.667,19.82,15.001,16.248,16.534,15.94,2.869,6.832,7.185,28.698,20.95,2.265,18.286,10.317,1.332,11.367,20.918,23.901,3.678,12.393,14.634,17.488,17.928,15.525,1.0,2.582,14.719,8.501,31.648,14.461,13.076,6.948],[11.294,20.427,17.962,3.907,12.304,9.007,-1.623,4.651,7.673,2.207,8.416,21.932,25.134,15.937,5.825,2.426,8.56,17.626,12.795,-1.788,4.075,5.339,4.451,21.752,13.854,3.246,23.102,22.948,17.675,10.413,3.973,23.875,-5.024,19.136,10.595,2.296,9.341,10.725,20.448,15.561,4.324,22.436,11.509,6.27,8.957,8.606,18.614,13.868,12.425,15.503,15.459,2.512,17.847,15.534,30.355,1.96,12.944,7.151,22.464,1.534,7.727,20.122,11.3,12.774,21.647,1.486,9.283,5.483,7.121,16.543,23.578,4.917,10.056,3.346,-3.142,7.372,19.102,6.182,7.262,10.521,8.783,5.938,16.676,10.635,17.761,12.586,10.454,20.551,-0.602,0.839,26.057,21.771,14.477,4.35,14.414,21.803,3.486,10.283,3.82,13.906,5.782,18.701,13.211,8.848,-0.187,7.063,17.113,3.544,3.515,19.997,11.476,12.189,-1.212,18.532,22.177,4.512,5.528,4.512,24.552,4.554,22.267,19.656,2.702,24.368,11.595,1.132,-3.307,24.156,-4.769,10.904,4.818,18.223,23.732,19.785,11.018,21.341,9.853,1.607,12.356,11.897,21.758,9.679,5.308,21.616,9.694,24.032,11.898,7.537,10.081,5.998,15.061,15.085,14.496,12.084,11.884,10.207,7.929,18.627,8.94,15.493,3.4,20.185,15.033,16.396,16.558,16.055,3.123,6.814,7.552,28.759,20.872,2.525,18.655,10.227,1.786,11.306,20.907,23.989,3.916,12.942,14.755,17.403,17.79,15.066,0.912,2.755,14.588,8.217,31.548,14.252,13.101,7.192],[11.282,20.485,17.861,4.036,12.228,8.963,-1.576,4.806,7.48,1.901,8.551,21.845,25.194,15.488,5.957,2.454,8.654,17.575,12.691,-1.741,4.206,5.457,4.407,21.914,13.795,3.108,22.876,22.809,17.875,10.327,4.005,23.764,-5.04,19.154,10.715,2.557,9.35,10.996,20.339,15.527,4.031,22.52,11.63,6.216,9.223,8.515,18.733,13.706,12.769,15.573,15.308,2.529,17.909,15.346,30.376,2.157,13.018,7.257,22.417,1.578,7.661,20.15,11.471,12.81,22.043,1.624,8.864,5.74,6.618,16.723,23.623,5.623,10.142,3.973,-3.132,7.617,19.18,6.144,7.011,10.391,8.425,5.694,16.368,10.395,17.571,12.312,10.024,20.31,-0.778,0.998,25.801,21.54,13.761,4.319,14.289,22.381,3.485,10.425,3.504,13.604,5.599,18.756,13.069,8.523,-0.294,7.135,16.52,3.301,3.526,20.169,11.06,12.251,-1.172,18.54,21.567,4.618,5.663,4.41,24.101,4.55,22.395,19.14,2.799,24.254,11.263,1.27,-3.55,24.241,-5.093,10.983,4.904,18.23,23.544,20.11,11.524,21.263,9.825,1.525,12.587,12.06,22.414,9.78,5.408,21.334,10.262,24.23,12.277,7.439,10.088,5.821,15.583,15.546,14.156,12.292,11.581,10.184,8.081,19.189,8.802,15.285,3.126,20.258,14.435,16.403,16.303,16.108,2.828,6.936,7.701,28.533,21.055,2.413,18.748,11.07,2.054,11.228,21.003,23.64,3.871,13.028,14.33,17.294,18.003,15.292,1.076,2.531,14.707,7.495,31.715,13.949,12.509,7.085],[11.18,20.551,17.743,4.111,12.159,8.931,-1.457,5.018,7.385,1.598,8.585,21.753,25.333,14.966,5.892,2.467,8.503,17.566,12.605,-1.702,4.239,5.604,4.434,22.06,13.668,2.914,22.692,22.655,18.079,10.244,3.987,23.724,-5.175,19.178,10.949,2.698,9.385,11.374,20.149,15.529,3.94,22.684,11.838,6.313,9.361,8.46,18.814,13.51,13.011,15.596,15.175,2.539,17.9,15.246,30.389,2.243,13.144,7.271,22.443,1.554,7.623,20.197,11.628,12.736,22.172,1.319,8.679,5.646,6.696,16.61,23.646,6.338,10.164,4.758,-3.197,7.864,19.357,5.98,7.292,10.099,7.511,6.134,16.236,10.423,17.066,12.273,9.898,20.472,-0.573,0.392,26.054,21.181,14.032,4.175,14.162,22.966,3.512,10.357,3.856,13.484,5.798,18.452,12.597,8.33,-0.283,7.204,16.489,3.021,3.648,20.29,11.551,12.139,-1.092,18.34,21.596,4.607,5.841,4.164,24.178,4.81,22.189,18.314,2.635,23.654,11.321,1.431,-3.503,23.939,-4.968,11.177,4.935,18.036,23.107,20.029,11.563,21.315,9.741,1.625,12.662,12.546,22.057,10.179,5.191,21.08,10.212,24.549,12.658,7.581,9.848,5.571,15.726,16.184,14.095,12.391,11.321,10.154,8.031,19.743,8.585,15.101,3.287,20.299,13.912,16.388,16.21,16.027,2.784,7.42,6.92,28.841,20.601,2.348,18.615,11.849,1.901,11.09,20.723,23.19,4.095,13.057,14.439,16.907,18.494,15.117,1.224,2.742,14.894,8.096,31.77,14.261,12.583,7.361],[10.972,20.467,17.581,4.07,12.216,8.82,-1.405,5.235,7.453,1.442,8.634,21.648,25.479,14.588,5.827,2.568,8.334,17.597,12.493,-1.718,4.365,5.692,4.513,22.189,13.426,2.712,22.492,22.588,18.189,10.362,4.04,23.581,-5.24,19.221,11.048,2.699,9.448,11.726,20.018,15.662,4.069,22.701,12.024,6.47,9.305,8.572,18.981,13.357,13.077,15.627,15.193,2.414,18.002,15.113,30.491,2.125,13.132,7.359,22.295,1.577,7.726,20.182,11.762,12.667,22.346,0.843,8.646,5.419,7.001,16.287,23.97,6.018,10.117,4.936,-2.849,7.721,19.771,6.305,7.432,9.687,8.007,6.356,16.049,10.434,16.899,12.654,9.693,20.928,-0.117,0.284,25.74,20.802,13.702,3.973,14.002,23.485,3.196,10.109,3.539,13.973,5.862,18.192,12.459,8.254,-0.226,7.285,16.815,2.364,3.186,20.678,11.771,11.804,-1.107,18.007,21.986,4.554,5.887,4.176,24.07,4.92,21.911,18.634,2.498,23.408,11.116,1.472,-3.483,24.174,-5.027,11.16,5.001,18.114,23.439,19.8,11.214,20.908,10.005,1.918,12.731,12.833,22.109,10.444,5.201,21.228,10.414,24.227,12.478,7.607,9.223,5.902,15.49,15.77,14.113,12.607,11.674,10.392,7.924,19.503,8.824,14.822,3.422,20.15,14.079,16.418,16.567,16.069,2.827,7.011,6.387,28.853,20.608,2.379,18.313,11.872,2.095,11.284,20.599,23.059,3.921,13.094,14.825,16.81,18.428,15.071,1.29,2.918,14.607,7.93,32.137,14.065,13.473,7.016],[10.805,20.368,17.385,3.946,12.499,8.714,-1.262,5.224,7.702,1.224,8.591,21.528,25.37,14.22,6.103,2.615,8.222,17.656,12.412,-1.65,4.556,5.769,4.541,22.392,13.302,2.509,22.326,22.737,18.203,10.398,4.103,23.441,-5.151,19.285,10.942,2.659,9.521,11.888,19.935,15.741,4.353,22.638,12.123,6.632,9.295,8.68,18.998,13.32,13.07,15.729,15.435,2.347,18.072,15.101,30.656,1.95,13.034,7.364,22.089,1.748,7.831,20.085,11.812,12.626,22.158,0.857,8.155,5.505,6.756,15.971,23.661,6.004,10.331,4.157,-2.887,7.576,20.023,6.683,7.133,9.305,8.154,6.149,15.878,10.639,16.663,12.482,10.268,20.721,-0.142,0.992,25.7,20.887,13.041,4.438,13.704,23.738,3.207,9.838,3.416,13.781,5.888,17.988,12.747,8.401,-0.306,7.299,16.862,2.018,2.68,20.787,11.248,11.5,-1.345,18.248,21.662,4.688,5.735,3.906,23.969,4.763,21.702,19.717,2.358,23.59,11.613,1.201,-3.574,24.109,-4.998,10.908,5.007,18.685,24.027,19.864,11.035,20.867,10.039,1.657,12.72,12.341,21.832,10.215,5.065,20.98,10.807,24.077,12.172,8.069,9.246,6.223,15.617,15.146,13.84,12.3,11.87,10.422,7.984,19.114,9.535,14.764,3.749,20.575,14.349,16.313,16.652,16.229,2.795,7.154,6.286,29.011,20.857,2.54,18.385,11.386,2.017,11.271,20.677,23.256,3.814,13.065,14.554,16.959,18.214,15.074,0.77,3.144,14.143,7.827,31.848,14.299,13.48,7.133],[10.76,20.309,17.136,3.742,12.749,8.852,-1.119,5.202,8.01,1.152,8.51,21.387,25.115,13.714,6.331,2.6,8.165,17.728,12.45,-1.611,4.78,5.732,4.568,22.662,13.291,2.329,22.231,22.998,18.148,10.352,4.084,23.472,-5.029,19.449,10.884,2.512,9.57,11.814,19.839,15.761,4.731,22.435,12.05,6.661,9.348,8.85,18.981,13.31,13.052,15.776,15.674,2.352,18.1,15.183,30.7,1.879,12.803,7.331,22.037,1.976,7.939,20.023,11.749,12.666,22.138,0.152,7.745,5.504,6.796,15.36,23.88,6.307,10.187,2.961,-2.774,7.642,19.53,6.3,7.251,9.144,7.617,6.536,15.863,11.143,16.42,12.464,9.943,20.063,-0.069,0.793,25.517,20.489,12.718,4.59,13.68,23.434,3.5,9.766,3.631,13.504,6.339,17.98,12.56,8.563,-0.161,7.237,17.335,2.315,2.526,20.886,10.478,11.428,-1.103,18.737,21.873,4.913,5.345,4.364,24.012,4.463,22.028,19.783,1.768,23.382,12.093,1.227,-3.435,23.323,-4.827,10.573,4.649,18.177,23.701,20.008,11.173,20.987,10.028,1.455,12.621,12.1,22.082,10.17,5.638,20.822,11.157,24.227,12.445,7.883,9.668,6.314,15.67,15.268,13.736,12.318,11.74,10.291,8.53,19.14,9.172,15.0,3.73,20.776,14.43,16.494,16.353,16.264,2.977,7.415,6.455,28.928,20.73,2.811,18.556,11.009,1.538,11.057,20.367,23.207,3.663,13.374,14.734,17.001,18.156,15.343,0.578,3.025,14.133,8.058,31.791,14.246,12.942,7.805],[10.737,20.266,16.897,3.454,12.924,8.82,-1.035,5.195,8.184,1.146,8.586,21.076,24.952,13.117,6.299,2.609,8.267,17.716,12.479,-1.584,4.884,5.607,4.61,22.875,13.425,2.076,22.241,23.108,18.08,10.2,4.009,23.435,-4.955,19.582,10.915,2.503,9.371,11.703,19.785,15.723,4.959,22.379,11.91,6.796,9.4,8.961,18.938,13.316,13.032,15.79,15.79,2.405,18.086,15.364,30.586,1.849,12.539,7.428,22.057,2.099,8.15,20.013,11.697,12.676,21.928,-0.401,8.081,5.07,7.759,14.979,23.689,6.336,10.003,3.062,-2.435,7.765,19.481,6.064,7.331,9.425,7.725,6.94,15.818,11.27,16.645,12.804,10.132,19.888,0.252,0.607,24.901,20.378,12.141,4.473,13.901,23.143,3.583,10.016,3.65,13.649,6.428,17.751,12.741,8.645,-0.245,7.265,17.782,2.766,2.796,21.037,10.407,11.7,-0.797,19.142,22.219,4.623,4.804,4.855,24.596,5.085,21.787,19.528,1.572,23.036,11.79,1.357,-3.378,23.236,-4.812,10.94,5.161,18.053,23.402,20.175,10.828,20.973,9.928,1.398,12.593,12.509,21.711,10.458,6.542,21.014,10.671,24.096,13.291,7.703,10.033,6.752,16.024,15.799,14.087,12.424,11.639,10.429,8.636,19.048,8.993,14.822,3.866,20.531,14.049,17.004,16.886,16.31,3.232,6.718,6.742,28.952,20.223,3.022,18.626,10.937,1.652,11.214,20.372,23.26,3.338,13.263,15.186,16.937,17.967,15.637,1.002,3.319,13.885,7.971,31.961,13.934,12.614,7.137],[10.728,20.264,16.88,3.271,13.03,8.672,-0.96,5.161,8.332,1.058,8.636,20.721,24.85,12.676,6.223,2.639,8.323,17.521,12.536,-1.556,5.0,5.501,4.765,22.91,13.794,1.744,22.265,23.149,18.041,9.906,4.021,23.336,-4.9,19.664,11.032,2.701,9.258,11.512,19.856,15.777,4.881,22.505,11.834,6.971,9.635,8.945,18.682,13.41,13.06,15.878,15.904,2.621,18.116,15.562,30.559,1.769,12.442,7.375,22.07,2.226,8.181,19.93,11.632,12.718,21.951,0.047,8.123,5.126,8.541,14.477,23.211,5.982,10.357,3.1,-2.288,8.072,19.343,6.659,7.124,9.461,7.917,6.922,15.305,11.422,16.518,12.567,10.037,19.553,0.315,1.025,24.767,20.226,12.101,4.44,14.116,23.41,3.284,10.067,3.33,13.369,5.669,17.465,13.002,8.347,-0.195,7.09,17.937,3.305,3.025,21.089,11.123,12.109,-0.938,19.127,21.996,4.286,4.53,4.399,24.306,5.609,21.256,19.564,2.06,23.263,10.809,1.537,-3.147,23.939,-4.685,11.476,5.424,18.663,23.569,20.19,10.519,20.863,9.666,1.491,12.71,12.609,21.459,10.431,6.469,21.017,10.164,24.061,13.217,7.382,10.156,6.788,16.145,15.898,14.309,12.568,11.476,10.668,8.734,18.782,9.387,14.405,4.378,20.388,14.029,16.878,16.717,16.487,3.15,6.713,7.145,28.95,20.711,2.984,18.074,11.483,2.345,11.036,20.489,23.204,3.214,13.031,15.197,17.239,17.664,15.604,1.427,3.572,13.657,8.195,31.777,13.944,12.152,7.326],[10.795,20.266,16.852,3.392,13.079,8.55,-0.904,5.23,8.604,0.953,8.531,20.409,24.886,12.519,6.186,2.633,8.097,17.231,12.688,-1.568,5.044,5.359,5.015,22.899,14.148,1.594,22.308,23.022,17.962,9.674,4.025,23.276,-4.818,19.751,11.175,2.901,9.308,11.302,19.968,15.893,4.716,22.614,11.824,7.059,9.916,9.008,18.4,13.529,13.0,15.909,15.833,2.862,18.214,15.773,30.515,1.82,12.404,7.193,21.922,2.446,8.109,19.908,11.609,12.781,21.62,-0.101,7.705,5.172,8.351,14.299,23.574,5.85,10.367,2.757,-2.558,8.271,19.893,6.522,6.894,9.031,7.586,6.107,15.452,11.736,16.127,12.43,9.674,19.745,0.152,1.491,24.424,19.605,12.1,4.684,14.395,23.62,3.463,9.71,3.354,13.384,5.439,17.541,12.887,7.733,-0.184,6.666,18.058,3.871,2.734,21.156,10.779,12.671,-0.999,18.707,22.126,4.401,4.358,4.403,24.072,5.244,21.444,19.412,1.327,23.168,10.919,1.307,-3.171,24.403,-4.366,11.45,4.98,18.198,23.447,20.055,11.031,20.763,9.306,2.127,12.944,12.257,21.974,10.644,5.851,21.263,10.344,24.313,12.369,7.581,9.286,6.537,15.83,15.785,14.386,12.519,11.696,10.825,8.857,18.703,9.4,14.719,4.154,20.054,14.575,16.566,16.829,16.535,3.121,7.531,7.383,28.847,20.475,3.154,18.217,11.62,2.159,11.111,20.368,23.246,3.324,13.427,15.966,17.37,17.731,15.712,1.457,3.428,13.895,8.174,32.148,14.345,11.826,7.719],[10.693,20.227,16.775,3.637,13.249,8.389,-0.93,5.23,8.789,0.918,8.402,20.246,24.911,12.63,5.997,2.731,7.628,16.962,12.832,-1.651,5.001,5.171,5.18,22.84,14.424,1.516,22.319,22.937,17.881,9.563,4.051,23.286,-4.679,19.758,11.296,2.965,9.497,11.228,20.06,15.942,4.629,22.721,11.762,6.987,10.043,9.113,18.215,13.667,12.825,16.142,15.706,2.874,18.254,15.934,30.611,1.954,12.285,7.015,21.754,2.618,8.123,19.932,11.631,12.913,21.856,-0.547,8.482,5.496,8.125,14.487,23.729,6.211,10.358,2.656,-2.527,8.065,19.644,6.561,6.912,9.039,8.052,6.22,15.755,11.839,15.91,12.422,9.601,19.568,-0.099,1.435,24.254,19.338,11.852,4.244,14.453,23.914,3.526,9.401,4.061,13.88,5.566,17.94,12.912,7.772,-0.512,6.785,17.7,3.858,2.566,21.237,10.187,13.029,-0.731,18.001,21.671,4.333,4.426,4.561,24.493,4.986,21.472,19.416,0.718,23.092,11.036,1.358,-3.228,24.161,-4.555,11.369,4.77,18.295,23.009,20.175,11.463,21.286,9.341,2.652,13.0,12.7,21.853,10.773,5.791,21.455,10.042,24.562,12.031,7.956,7.722,6.453,15.627,15.423,14.047,12.233,11.808,10.888,8.575,18.772,9.472,15.301,3.734,19.631,14.88,17.157,16.762,16.512,3.566,7.273,7.481,28.82,20.537,3.558,18.537,11.341,1.698,11.744,20.079,22.931,3.781,13.288,15.834,17.651,18.224,15.801,1.422,3.617,14.048,7.542,31.992,14.556,12.303,7.261],[10.598,20.15,16.822,3.889,13.396,8.233,-1.029,5.194,8.935,0.8,8.298,20.23,24.804,12.759,5.834,2.815,7.282,16.768,12.873,-1.72,4.893,5.067,5.307,22.779,14.638,1.443,22.344,23.07,17.882,9.552,4.086,23.281,-4.533,19.645,11.33,2.947,9.749,11.264,20.224,15.73,4.721,22.801,11.672,6.745,9.978,9.113,18.136,13.804,12.784,16.542,15.7,2.867,18.208,16.062,30.689,2.113,12.095,6.888,21.567,2.76,8.023,19.947,11.609,13.093,21.933,-0.409,9.314,5.503,8.14,14.495,23.574,6.065,9.989,2.955,-2.35,7.565,19.162,6.6,6.757,9.26,7.844,6.184,15.721,12.055,16.048,12.781,9.81,19.095,0.232,1.105,24.356,19.611,12.054,3.969,14.701,24.3,3.566,8.981,4.584,14.474,6.087,17.703,13.171,7.481,-0.601,6.851,17.673,3.622,2.059,21.473,9.542,12.987,-0.68,17.924,22.046,4.096,4.472,4.445,24.457,5.194,21.289,19.33,1.571,23.496,11.028,1.433,-2.944,23.537,-4.639,11.878,4.847,18.44,23.084,20.603,10.896,20.958,9.567,2.019,12.933,12.325,21.805,10.605,6.334,21.482,9.909,24.001,12.099,8.337,7.308,6.561,15.941,15.574,13.868,12.414,11.527,10.643,8.545,18.494,9.61,15.546,3.962,19.789,14.753,17.249,16.515,16.409,3.388,6.193,7.829,28.949,21.042,3.466,18.314,10.817,1.887,12.089,20.162,22.475,3.818,13.261,15.746,17.837,18.467,15.787,1.687,3.865,13.714,7.633,31.902,14.931,12.281,6.794],[10.614,20.092,16.959,4.101,13.486,8.152,-1.092,5.108,9.08,0.631,8.098,20.281,24.647,12.785,5.795,2.764,7.178,16.758,12.953,-1.679,4.855,5.074,5.448,22.821,14.766,1.395,22.525,23.404,17.902,9.421,4.031,23.184,-4.477,19.66,11.327,2.751,9.959,11.256,20.246,15.49,4.948,22.782,11.535,6.536,9.724,9.157,18.215,13.94,12.854,16.848,15.784,3.002,18.16,16.14,30.681,2.091,11.871,6.622,21.394,2.886,7.9,19.853,11.451,13.326,21.813,-0.272,9.386,5.444,8.434,14.66,23.268,5.854,9.925,2.845,-2.545,7.78,19.204,6.462,6.627,9.393,7.127,5.779,15.693,12.134,16.534,12.989,9.691,18.959,0.397,0.938,24.348,19.973,12.242,4.098,14.785,24.464,3.795,8.804,4.296,15.008,6.341,16.712,12.685,7.312,-0.507,6.549,18.545,3.223,2.004,21.581,9.558,13.06,-0.856,18.168,22.138,4.173,4.489,4.491,24.189,5.14,21.579,19.1,2.414,23.064,11.158,1.499,-2.986,23.579,-4.169,12.0,4.3,18.032,22.747,20.044,10.546,20.966,9.915,1.58,12.898,11.993,21.853,10.657,6.912,21.183,10.244,24.463,12.349,8.266,7.328,6.698,16.028,16.178,13.72,12.212,11.739,10.616,8.312,18.441,9.671,15.766,4.337,20.015,14.712,17.258,17.107,16.466,3.197,6.399,7.674,29.09,20.52,3.41,18.585,10.973,2.535,12.353,19.94,22.697,3.813,13.372,16.047,17.493,17.775,15.661,1.402,4.103,13.074,7.844,32.266,15.08,11.45,7.2],[10.749,20.092,17.125,4.187,13.618,8.168,-1.188,5.033,9.21,0.542,8.003,20.36,24.478,12.828,5.683,2.549,7.177,16.746,12.88,-1.656,4.789,5.135,5.459,22.915,14.826,1.435,22.554,23.508,17.894,9.265,3.836,22.974,-4.403,19.603,11.399,2.775,10.106,11.167,20.181,15.351,5.175,22.787,11.422,6.539,9.515,9.264,18.482,14.011,13.01,17.086,15.98,3.112,18.07,16.138,30.735,1.974,11.518,6.475,21.321,2.986,7.841,19.708,11.242,13.482,21.815,-0.521,9.009,5.601,8.267,14.57,22.907,5.867,9.756,2.929,-2.651,7.403,19.328,6.423,6.603,9.256,7.088,5.965,15.541,12.066,16.921,12.964,9.725,19.296,0.162,0.667,24.198,20.108,12.258,3.794,14.685,24.47,3.563,8.841,3.907,15.73,6.287,16.647,12.89,7.68,-0.477,6.727,18.736,2.969,1.877,21.564,9.335,13.286,-1.073,18.583,22.098,4.101,4.829,4.693,24.908,5.197,21.606,19.201,2.156,22.688,11.036,1.564,-2.823,24.24,-4.165,11.7,4.933,18.005,22.772,20.118,10.719,21.183,10.761,1.754,13.049,12.369,21.853,10.101,6.512,21.523,10.542,24.665,12.584,8.266,7.707,6.988,16.031,16.163,13.931,12.532,12.035,10.323,7.681,18.977,9.52,15.811,4.337,19.968,14.433,17.545,16.85,16.618,3.516,6.446,7.192,29.086,20.415,3.672,18.123,11.088,2.413,12.279,19.941,22.849,3.446,12.91,16.171,17.39,17.254,16.265,1.371,4.013,12.74,7.505,32.005,15.177,11.569,7.258],[10.848,20.178,17.271,4.127,13.698,8.349,-1.354,5.046,9.156,0.462,7.902,20.436,24.297,12.777,5.522,2.161,7.236,16.765,12.736,-1.618,4.847,5.26,5.345,23.072,14.954,1.531,22.337,23.526,17.771,9.125,3.717,22.857,-4.297,19.514,11.483,3.054,10.246,11.078,20.245,15.387,5.167,22.869,11.545,6.499,9.494,9.334,18.78,14.038,13.223,17.249,16.215,3.145,17.91,16.118,30.728,1.766,11.315,6.514,21.362,3.024,7.783,19.485,11.01,13.552,22.011,-0.567,8.738,5.723,8.034,14.698,23.038,5.971,10.1,3.427,-2.453,7.256,19.348,6.365,6.392,9.718,7.586,6.033,15.987,12.13,16.685,13.087,9.953,19.719,0.122,0.682,23.734,19.876,12.564,3.526,14.523,24.332,3.354,8.891,4.007,15.852,5.702,16.96,13.105,7.509,-0.269,6.853,18.316,2.727,2.239,21.411,9.345,13.359,-0.901,18.488,22.247,4.086,4.992,4.279,24.936,5.269,21.185,19.422,1.016,23.304,10.673,1.863,-2.927,24.393,-4.239,11.558,4.902,18.165,22.974,20.362,10.926,20.928,11.395,1.911,13.245,12.064,21.647,10.452,5.676,21.518,10.015,24.309,12.614,8.612,8.106,6.912,15.86,15.514,14.451,12.174,11.825,10.156,8.016,19.593,9.188,15.611,4.199,20.018,14.371,17.617,17.128,16.417,3.781,6.634,7.471,29.22,20.749,3.614,18.148,10.908,1.761,12.166,20.002,22.421,3.403,12.409,16.28,17.46,17.964,16.196,1.725,4.021,12.825,7.093,32.151,15.195,11.743,6.737],[11.1,20.246,17.414,4.058,13.724,8.599,-1.404,5.128,8.908,0.441,7.758,20.503,24.076,12.757,5.496,1.775,7.149,16.763,12.587,-1.428,4.838,5.306,5.232,23.27,15.039,1.597,22.194,23.624,17.646,9.006,3.621,22.828,-4.256,19.54,11.621,3.173,10.417,11.028,20.336,15.513,4.904,22.81,11.654,6.465,9.606,9.351,18.931,14.048,13.303,17.358,16.44,3.157,17.792,16.014,30.777,1.545,11.52,6.558,21.402,2.901,7.683,19.302,10.843,13.53,22.082,-0.621,8.812,5.844,7.664,14.435,23.31,5.946,10.16,3.536,-2.831,7.3,19.657,6.453,6.435,9.907,7.838,5.644,16.424,12.156,16.253,13.19,9.818,19.638,0.062,0.988,23.302,19.756,12.578,3.919,14.47,24.047,3.066,8.77,4.313,16.157,6.21,17.331,12.493,7.167,-0.54,6.744,17.974,2.574,2.756,21.501,9.945,13.501,-0.295,18.047,22.139,4.523,4.733,4.204,24.367,5.156,21.66,18.945,0.546,23.382,10.488,1.92,-2.635,23.878,-4.5,11.843,4.029,18.198,23.509,19.978,10.765,21.009,11.399,2.036,13.401,12.409,21.864,10.395,5.681,21.462,9.374,24.296,12.646,8.712,7.833,6.735,15.865,14.897,14.683,12.541,12.069,10.715,8.373,19.535,8.888,15.514,4.352,20.371,14.837,17.334,17.3,16.24,3.679,6.524,7.544,29.139,20.251,3.621,18.421,10.418,1.507,12.58,20.086,22.398,3.472,11.891,16.399,17.6,18.368,16.2,2.312,4.18,13.087,7.582,32.242,15.311,11.367,6.754],[11.334,20.218,17.506,4.021,13.697,8.698,-1.475,5.267,8.615,0.518,7.714,20.631,23.97,12.667,5.473,1.619,7.006,16.661,12.431,-1.256,4.885,5.248,5.107,23.583,15.146,1.614,22.262,23.732,17.494,9.035,3.443,22.799,-4.338,19.565,11.949,3.012,10.532,10.992,20.426,15.663,4.735,22.673,11.814,6.559,9.704,9.27,18.986,14.014,13.321,17.391,16.556,3.206,17.745,15.934,30.837,1.427,11.905,6.568,21.396,2.741,7.641,19.153,10.678,13.655,22.009,-0.692,8.775,5.646,7.202,14.387,22.902,5.937,10.35,3.444,-3.123,6.746,19.639,6.837,6.548,9.723,8.014,5.292,16.23,12.467,16.581,12.972,10.487,19.67,-0.032,0.936,23.196,19.868,12.378,3.939,14.352,23.657,2.618,8.73,4.127,16.401,6.596,17.43,11.667,7.277,-0.567,6.837,18.327,2.023,3.258,21.746,9.944,13.441,0.037,17.844,22.172,4.32,4.119,4.255,24.223,4.724,21.629,18.689,0.823,23.371,10.414,1.506,-2.657,23.498,-4.437,12.073,4.461,17.934,23.326,20.06,10.756,21.539,10.743,2.276,13.602,12.579,21.529,10.44,5.651,21.664,9.716,23.914,12.986,8.821,7.61,6.561,16.08,14.597,14.581,12.541,12.239,10.813,8.075,19.311,9.238,15.446,4.203,20.25,15.083,17.387,17.497,16.145,3.47,6.292,7.263,29.285,20.057,3.426,18.139,10.475,1.836,12.869,20.586,22.639,3.11,12.237,16.51,17.76,18.059,16.573,2.578,4.113,13.304,8.008,32.229,15.485,10.951,6.984],[11.292,20.045,17.49,3.874,13.626,8.816,-1.58,5.48,8.519,0.697,7.62,20.833,23.922,12.596,5.235,1.596,7.005,16.541,12.272,-1.167,5.003,5.179,4.843,23.879,15.27,1.684,22.445,23.815,17.448,9.054,3.382,22.867,-4.496,19.586,12.191,2.648,10.526,11.13,20.635,15.685,4.738,22.396,11.959,6.645,9.738,9.257,18.881,13.916,13.453,17.37,16.717,3.271,17.631,16.068,30.824,1.442,12.148,6.447,21.392,2.685,7.733,18.924,10.653,13.895,21.959,-0.537,8.104,5.426,7.038,14.145,22.857,6.31,10.743,3.555,-3.035,6.419,19.212,6.89,6.522,10.08,8.007,5.556,16.18,13.11,17.024,12.7,10.461,19.743,-0.124,0.667,23.828,20.213,12.671,3.35,13.98,23.589,2.881,8.711,3.622,16.166,6.435,17.143,11.657,7.29,-0.001,6.567,18.419,1.48,2.88,22.3,9.01,14.153,-0.219,17.93,22.209,3.933,4.25,3.942,24.865,4.821,21.342,18.883,1.642,23.106,10.676,1.23,-2.948,22.875,-4.38,12.25,4.241,18.126,22.502,20.225,11.233,21.247,10.848,2.026,13.964,12.39,21.398,10.11,5.95,22.086,9.805,24.065,12.855,8.902,7.389,6.57,16.335,14.725,14.607,12.453,12.158,10.644,7.796,19.619,9.525,15.341,3.818,20.075,14.612,18.029,17.502,16.53,3.631,6.67,7.213,29.579,20.385,3.132,17.909,10.357,2.154,12.769,20.209,22.8,2.811,12.267,16.045,17.671,17.549,16.498,2.346,3.856,13.667,7.285,32.399,15.622,11.099,6.926],[11.223,19.839,17.364,3.767,13.562,8.772,-1.757,5.582,8.497,0.94,7.502,21.076,23.999,12.738,4.925,1.585,7.048,16.467,12.22,-1.197,5.061,5.033,4.569,24.156,15.253,1.801,22.538,24.012,17.629,8.774,3.378,22.868,-4.619,19.7,12.24,2.234,10.522,11.36,20.834,15.587,4.789,22.104,11.961,6.729,9.649,9.203,18.738,13.84,13.527,17.318,16.956,3.321,17.572,16.282,30.905,1.5,12.171,6.23,21.437,2.738,7.788,18.775,10.612,14.119,21.686,-0.004,7.823,4.891,7.197,14.494,22.582,6.564,10.274,3.129,-2.866,6.475,18.96,6.742,6.459,9.779,7.87,5.708,16.401,13.593,17.116,13.151,9.874,19.961,-0.011,1.095,24.271,20.25,12.641,3.176,14.113,23.826,3.028,8.74,3.258,16.666,6.389,16.773,11.569,7.536,-0.067,6.401,17.872,1.823,2.592,22.527,9.223,14.513,-0.572,18.102,22.355,4.086,4.211,3.937,24.891,5.44,21.457,18.995,2.058,23.343,10.344,1.112,-3.059,22.232,-4.734,12.13,4.1,18.17,22.108,20.32,11.776,20.984,11.447,1.099,14.086,12.992,21.549,10.682,6.171,22.134,9.729,23.927,12.872,9.171,7.483,6.597,16.229,15.063,14.631,12.789,12.41,10.317,8.37,19.71,9.592,15.007,3.886,19.788,14.595,18.035,17.496,16.324,4.011,6.778,7.511,29.233,20.099,3.299,18.468,10.395,1.894,12.862,19.792,22.781,2.895,12.242,15.812,17.328,17.11,16.837,2.188,3.863,13.729,6.868,32.364,15.645,11.773,7.097],[10.981,19.677,17.217,3.639,13.568,8.512,-1.771,5.486,8.392,1.214,7.462,21.275,24.034,12.985,4.944,1.549,7.099,16.447,12.252,-1.403,5.13,4.852,4.428,24.401,15.274,1.886,22.455,24.073,17.712,8.516,3.391,22.659,-4.789,19.752,12.293,1.971,10.629,11.577,20.898,15.507,4.842,22.103,12.032,7.054,9.632,9.186,18.581,13.723,13.55,17.211,17.204,3.362,17.435,16.459,31.017,1.429,12.172,6.078,21.421,2.875,7.774,18.911,10.644,14.238,21.462,-0.026,8.349,4.169,7.345,14.537,22.837,6.559,9.798,2.359,-3.173,6.425,19.0,6.733,6.332,9.691,7.818,5.272,16.537,13.644,16.455,13.258,9.929,20.63,-0.301,2.06,24.065,20.074,12.622,3.288,14.035,24.125,2.795,8.4,3.271,16.496,6.268,16.921,11.876,7.832,-0.315,6.338,18.045,2.374,3.187,22.869,9.288,13.876,-0.199,18.019,22.429,3.884,4.026,4.054,25.24,5.246,22.209,19.189,1.654,23.853,10.095,0.866,-3.442,22.004,-5.009,12.067,4.184,18.112,22.314,20.363,11.896,21.736,11.522,1.037,14.175,12.442,21.341,10.691,6.127,22.235,10.222,23.407,12.805,9.629,7.429,6.629,16.186,15.262,14.707,12.778,12.351,10.353,8.189,19.532,9.305,14.922,3.801,19.747,14.668,17.753,17.702,16.218,3.861,6.003,7.674,29.313,20.264,3.55,18.18,10.121,2.026,13.176,20.177,22.804,3.065,12.049,16.089,17.835,17.288,17.144,2.22,4.277,13.384,7.23,32.387,15.914,12.106,7.254],[10.663,19.571,17.033,3.426,13.634,8.262,-1.7,5.496,8.331,1.308,7.413,21.435,23.874,13.133,5.179,1.534,7.19,16.437,12.337,-1.459,5.127,4.615,4.518,24.611,15.258,1.929,22.522,24.026,17.809,8.592,3.464,22.353,-4.974,19.673,12.35,1.952,10.859,11.747,20.998,15.494,4.846,22.14,12.099,7.53,9.655,9.103,18.558,13.626,13.319,17.245,17.355,3.372,17.336,16.624,31.065,1.335,12.127,5.972,21.411,2.999,7.677,19.143,10.544,14.207,21.432,0.303,8.394,3.472,6.897,14.72,23.081,6.282,9.543,2.218,-3.181,6.554,18.809,6.936,6.113,9.826,7.497,5.244,16.754,13.288,16.211,12.993,9.894,20.523,-0.14,2.572,23.978,20.15,12.715,3.525,14.038,24.506,2.709,8.778,3.168,16.062,6.458,17.098,12.239,7.816,-0.46,6.051,18.779,2.514,3.632,23.083,8.568,13.479,-0.439,17.682,22.633,3.516,4.155,4.207,25.259,4.723,21.819,19.169,1.671,23.403,10.237,0.706,-3.329,21.699,-5.153,12.364,3.744,18.069,22.612,20.044,11.598,21.68,11.278,1.6,14.153,12.584,21.089,10.339,5.971,22.326,10.412,23.666,12.963,9.696,7.428,6.587,16.244,14.887,14.448,12.798,12.014,10.671,7.905,19.227,8.78,14.857,3.918,19.942,15.448,17.991,17.796,16.073,3.483,6.152,8.047,29.722,20.399,3.41,18.262,10.227,1.681,13.475,20.288,22.925,3.118,12.114,15.793,18.354,17.652,16.798,2.774,3.991,13.37,7.669,32.562,15.919,11.777,6.994],[10.524,19.527,16.848,3.145,13.539,8.068,-1.604,5.745,8.309,1.375,7.247,21.366,23.738,13.232,5.179,1.471,7.59,16.377,12.522,-1.508,4.948,4.322,4.658,24.634,15.237,1.967,22.538,24.006,18.007,8.68,3.504,22.04,-5.075,19.576,12.358,2.15,11.032,11.761,21.186,15.425,4.87,22.233,12.106,7.86,9.636,8.9,18.56,13.551,13.06,17.38,17.239,3.377,17.352,16.881,31.133,1.373,11.996,5.899,21.36,2.88,7.59,19.424,10.392,14.168,21.256,0.316,7.788,3.837,6.917,14.441,22.749,6.628,9.051,2.68,-3.177,6.89,18.651,6.928,5.736,10.0,7.074,5.917,16.717,12.859,16.602,13.158,9.747,20.433,-0.022,1.951,23.772,20.607,13.015,3.623,14.18,25.093,2.777,9.202,3.467,16.078,6.462,17.244,11.772,7.695,-0.011,5.928,18.531,2.415,3.316,23.941,9.047,13.533,-0.928,17.642,22.505,3.481,4.067,4.126,24.899,5.031,21.604,19.348,1.705,23.456,10.373,0.754,-3.398,21.23,-5.655,12.388,4.524,17.978,22.551,19.956,11.895,21.543,11.349,1.218,14.199,12.841,21.222,10.568,6.509,22.318,10.236,23.89,12.856,9.542,7.189,6.558,16.431,14.403,14.214,12.807,11.834,10.881,8.735,19.517,9.144,14.82,4.134,19.664,15.789,18.171,17.93,15.593,3.733,7.15,7.812,29.799,20.524,3.115,18.913,10.284,1.623,13.654,20.137,22.755,2.828,12.129,15.802,18.474,17.597,17.166,2.923,3.984,13.695,8.08,32.756,15.806,11.162,6.403],[10.528,19.558,16.784,2.992,13.23,8.161,-1.611,6.031,8.298,1.41,7.075,21.195,23.769,13.249,4.999,1.424,8.055,16.365,12.635,-1.444,4.802,4.169,4.596,24.663,15.385,2.046,22.51,23.834,18.011,8.726,3.602,21.749,-5.106,19.661,12.385,2.224,11.122,11.663,21.331,15.262,5.03,22.455,12.05,8.162,9.732,8.919,18.496,13.559,12.992,17.599,17.065,3.528,17.307,17.15,31.213,1.298,11.914,6.043,21.257,2.677,7.416,19.694,10.337,14.245,21.214,0.305,7.379,4.321,7.147,14.092,22.465,7.066,9.095,2.384,-3.036,6.432,18.676,7.235,5.608,9.635,7.153,5.614,16.151,12.795,16.375,13.174,9.499,20.221,-0.193,1.133,23.272,20.387,13.149,3.211,14.367,25.052,2.496,9.819,3.718,16.247,5.869,17.147,11.409,8.159,0.012,5.911,18.169,2.219,2.711,24.616,9.359,13.53,-0.832,17.858,22.188,3.513,3.602,4.209,24.595,5.424,21.77,19.694,1.715,23.768,10.419,1.175,-3.354,21.144,-5.592,12.364,4.359,17.787,22.153,20.36,11.871,22.013,11.781,1.048,14.175,12.543,21.511,10.69,6.732,22.651,10.115,23.971,12.244,9.615,7.1,6.786,16.02,14.152,14.148,12.798,11.745,10.457,9.486,19.772,9.298,14.555,3.911,19.289,15.539,18.474,17.471,15.81,3.984,6.716,7.37,29.572,21.066,3.275,19.006,9.692,1.908,13.525,19.981,22.674,2.992,12.103,16.108,18.646,17.313,17.043,2.561,4.021,13.243,8.341,32.689,15.965,10.734,6.48],[10.411,19.597,16.759,2.773,12.982,8.303,-1.691,6.229,8.286,1.391,6.952,20.995,23.811,13.305,4.708,1.412,8.447,16.395,12.642,-1.323,4.74,4.173,4.371,24.83,15.562,2.075,22.668,23.588,17.876,8.79,3.709,21.543,-5.072,19.825,12.308,2.163,11.31,11.526,21.463,14.971,5.239,22.713,11.984,8.269,9.8,9.047,18.372,13.629,12.996,17.797,16.906,3.765,17.286,17.209,31.194,1.272,11.895,6.151,21.113,2.646,7.234,19.879,10.351,14.317,21.295,-0.156,7.609,4.57,7.078,13.566,22.564,7.056,9.448,2.573,-2.988,6.396,18.415,7.407,5.498,9.232,7.05,5.225,16.029,12.837,16.099,12.734,9.741,19.879,-0.119,1.22,23.143,20.134,12.812,3.028,14.443,24.276,2.19,9.998,3.226,16.433,5.699,16.773,11.89,8.824,-0.198,5.67,18.535,1.73,3.2,24.777,9.145,13.815,-0.256,17.751,21.885,3.459,3.582,4.665,24.446,5.28,21.904,19.397,1.385,23.504,10.27,1.352,-3.229,21.457,-5.386,12.7,3.952,18.181,21.248,20.573,11.731,21.792,12.381,1.148,13.989,12.514,21.708,10.808,7.456,22.737,10.005,23.843,11.89,10.044,7.239,6.982,16.058,14.57,14.038,13.085,12.096,10.334,9.191,19.408,9.115,14.253,3.999,19.582,15.704,18.784,17.489,16.183,4.524,6.436,7.538,29.629,20.725,3.31,18.874,9.182,1.802,13.19,19.824,22.342,2.976,12.011,16.217,18.732,16.628,17.43,2.222,4.342,13.013,7.938,32.56,15.921,10.615,6.68],[10.203,19.586,16.757,2.661,12.894,8.281,-1.796,6.31,8.138,1.103,7.061,20.776,23.799,13.325,4.599,1.341,8.669,16.256,12.652,-1.219,4.674,4.201,4.277,25.051,15.718,2.057,22.725,23.48,17.778,8.692,3.842,21.416,-5.009,19.926,12.168,2.17,11.663,11.369,21.513,14.865,5.521,22.852,11.902,8.18,9.818,8.952,18.242,13.787,13.077,17.976,16.933,4.066,17.29,17.171,31.121,1.268,12.032,6.177,21.01,2.79,7.143,20.025,10.432,14.376,21.31,0.147,7.893,4.297,6.574,13.856,22.609,7.019,9.012,2.298,-2.894,6.209,18.414,7.355,5.811,9.179,7.438,5.052,16.153,13.036,16.371,12.307,9.853,19.765,0.019,2.043,22.851,19.831,12.5,3.146,14.467,23.98,2.266,9.893,2.965,16.583,6.305,16.97,12.15,9.316,-0.534,5.68,18.721,1.57,3.781,24.256,9.146,13.993,-0.113,17.57,22.145,3.365,3.355,4.669,24.715,4.839,22.17,19.031,1.673,23.831,10.263,0.851,-3.321,21.309,-4.903,12.306,4.412,18.344,20.116,20.665,11.464,21.733,12.162,1.121,14.092,12.575,21.901,10.498,7.803,21.708,9.735,24.125,12.069,10.173,7.097,7.095,15.788,14.404,13.66,13.063,12.454,10.863,9.267,19.221,9.203,14.021,4.489,19.535,15.912,18.654,17.578,16.377,4.526,6.367,7.594,29.77,20.479,3.099,18.618,9.535,1.802,13.19,19.352,22.153,2.594,12.011,16.311,18.836,16.684,17.064,2.148,3.904,13.435,7.239,32.713,15.995,10.994,6.304],[10.04,19.493,16.763,2.582,12.933,8.175,-1.833,6.254,7.884,0.931,7.215,20.541,23.64,13.319,4.771,1.237,8.638,16.055,12.651,-1.367,4.735,4.209,4.185,25.164,15.845,2.088,22.758,23.596,17.814,8.524,4.044,21.16,-4.819,19.877,12.104,2.151,11.959,11.137,21.543,14.846,5.742,22.904,11.808,8.115,9.846,8.731,18.118,13.983,13.256,18.031,17.01,4.284,17.397,17.028,31.143,1.161,12.271,6.01,20.93,2.751,7.016,19.988,10.665,14.435,21.325,-0.183,7.808,3.861,6.639,14.014,22.488,7.2,8.564,1.956,-2.895,6.413,18.672,7.463,6.009,9.244,8.191,5.271,16.223,13.235,16.783,12.394,9.874,20.222,-0.154,2.178,22.629,19.782,12.69,3.092,14.117,24.495,2.518,10.154,3.252,17.035,5.993,16.993,12.25,9.35,-0.609,5.939,18.444,1.791,3.796,23.712,8.999,14.193,-0.162,17.273,22.2,3.473,4.006,4.984,24.724,4.37,21.928,18.622,2.127,24.097,10.226,0.82,-3.295,20.972,-4.74,11.524,4.47,18.111,19.95,20.404,11.425,21.615,11.584,1.376,13.996,12.824,22.162,10.498,7.043,22.462,9.644,24.684,12.201,10.37,7.053,7.358,16.083,14.324,13.178,12.677,12.362,11.055,9.269,19.346,9.323,14.145,4.751,19.241,15.823,18.558,17.23,16.119,3.973,6.422,7.182,29.654,21.052,3.748,19.06,10.154,2.078,13.144,19.577,22.201,2.394,11.737,16.42,18.59,17.555,16.892,2.732,3.885,13.967,7.486,32.729,15.823,11.294,6.925],[9.927,19.383,16.853,2.649,13.027,8.15,-1.872,6.2,7.801,0.924,7.23,20.332,23.456,13.243,4.898,1.204,8.605,15.84,12.547,-1.704,4.768,4.219,4.285,25.062,15.957,2.151,22.813,23.759,17.797,8.516,4.409,20.806,-4.568,19.731,11.934,2.263,12.052,11.05,21.695,14.919,5.816,22.947,11.71,8.022,9.989,8.68,18.028,14.194,13.41,18.067,17.04,4.413,17.644,16.834,31.21,1.103,12.452,5.846,20.852,2.76,6.836,19.989,10.936,14.319,21.217,-0.428,6.873,2.942,6.817,13.908,22.386,7.301,8.659,1.802,-3.383,6.652,18.822,7.154,5.768,9.146,8.466,5.911,16.627,13.393,16.656,13.044,9.663,20.05,-0.316,1.411,22.82,19.757,13.162,3.304,14.229,25.214,2.286,10.274,2.812,17.104,5.458,16.842,12.11,8.738,-0.482,5.868,18.514,2.219,3.497,23.588,8.48,14.889,-0.83,17.008,21.968,3.794,3.847,5.175,24.496,4.631,21.846,19.244,2.446,23.488,10.135,1.193,-2.824,20.467,-5.092,11.716,4.795,17.991,20.712,20.239,11.359,22.088,11.847,1.454,13.834,12.623,22.277,10.706,6.17,22.563,9.523,24.597,12.422,10.731,7.109,7.374,16.31,14.863,12.868,12.533,12.591,10.689,8.741,19.41,8.975,14.503,4.608,18.834,15.565,18.304,17.369,15.984,4.528,7.102,7.553,29.807,20.72,3.474,19.004,10.065,1.744,13.57,19.845,22.14,2.651,12.516,16.387,18.377,17.759,17.415,2.833,4.221,13.843,7.771,32.497,15.903,11.537,6.642],[9.926,19.315,17.025,2.531,13.258,8.124,-1.914,6.121,7.73,0.897,7.063,20.215,23.457,13.162,5.046,1.235,8.558,15.651,12.45,-2.021,4.733,4.142,4.417,24.869,16.02,2.249,22.677,23.697,17.871,8.534,4.631,20.422,-4.438,19.528,11.884,2.636,12.052,11.164,21.85,15.152,5.754,22.98,11.567,7.868,10.038,8.666,18.063,14.437,13.466,18.132,17.084,4.546,17.871,16.809,31.281,1.126,12.62,5.808,20.761,2.83,6.63,20.011,11.224,14.219,21.047,-0.299,6.843,3.276,7.015,14.07,22.467,7.317,9.021,1.948,-3.332,7.295,18.357,6.903,5.272,8.534,8.221,6.047,16.708,13.058,16.543,13.417,9.555,19.361,-0.215,0.742,22.789,19.4,13.224,3.755,14.317,25.409,1.98,10.242,3.158,17.202,5.792,16.347,11.834,8.58,-0.745,5.873,18.592,2.667,2.819,23.897,8.776,15.577,-1.203,16.977,22.184,3.714,3.944,5.338,24.631,5.008,22.086,19.434,2.495,23.61,9.98,1.455,-2.756,20.088,-4.606,12.344,5.469,17.665,20.979,20.265,11.108,21.675,12.25,1.38,13.649,12.265,22.067,10.799,6.204,22.019,9.471,24.641,12.75,10.695,6.944,7.279,16.467,14.636,12.755,12.507,12.397,10.957,8.494,19.361,8.844,14.615,4.531,18.9,15.269,18.437,17.952,16.431,5.098,7.241,7.19,29.788,20.586,2.946,18.609,10.129,1.313,13.681,19.318,22.144,2.694,12.839,16.471,18.201,17.672,17.184,2.863,4.044,13.573,7.685,32.725,15.75,11.045,5.712],[9.931,19.17,17.069,2.441,13.577,8.078,-1.837,5.961,7.743,0.816,6.941,20.096,23.52,13.089,5.249,1.341,8.57,15.502,12.436,-2.079,4.839,3.958,4.57,24.752,16.099,2.251,22.637,23.479,17.778,8.617,4.722,20.153,-4.396,19.268,12.021,2.882,12.0,11.256,21.865,15.435,5.746,23.042,11.469,7.873,9.919,8.721,18.124,14.639,13.477,18.203,17.082,4.586,17.936,16.878,31.332,1.04,12.6,5.668,20.714,2.732,6.21,19.985,11.48,14.135,20.796,-0.602,7.458,3.85,6.629,14.181,22.404,6.874,9.058,2.122,-2.857,7.738,18.071,7.16,5.175,8.735,7.416,6.237,17.092,12.345,16.77,13.191,9.97,19.392,-0.136,1.158,22.68,19.838,13.224,3.982,14.189,24.6,1.969,10.273,3.232,17.371,6.139,15.94,11.86,8.867,-0.831,5.675,18.697,2.739,2.817,24.239,8.875,15.729,-1.371,17.178,22.104,3.396,3.884,5.5,24.537,4.892,21.656,18.845,2.247,23.757,10.232,1.553,-2.658,20.126,-4.06,12.085,5.013,17.763,20.233,20.104,11.181,21.505,11.854,1.937,13.792,12.313,22.125,10.965,6.681,21.803,9.777,24.836,12.583,10.417,7.029,7.317,16.551,14.766,12.848,12.443,12.749,10.916,8.836,19.324,9.156,14.721,4.531,19.112,15.229,18.907,17.511,16.46,5.476,6.425,6.961,29.712,21.173,3.388,18.978,10.256,1.759,13.601,19.239,22.141,2.55,12.845,16.808,17.956,17.519,17.112,2.777,4.309,13.617,7.347,32.825,15.671,10.933,5.61],[10.028,19.086,17.018,2.576,13.683,7.985,-1.707,5.942,7.898,0.797,7.028,20.09,23.582,13.134,5.45,1.478,8.681,15.406,12.545,-2.002,4.935,3.752,4.505,24.629,16.144,2.173,22.674,23.142,17.448,8.75,4.797,20.052,-4.318,19.19,12.125,2.933,11.874,11.47,21.706,15.663,5.92,23.139,11.471,8.041,9.733,8.954,18.141,14.749,13.47,18.355,17.066,4.464,17.826,16.965,31.261,0.993,12.382,5.51,20.672,2.723,5.767,20.113,11.454,14.141,20.794,-0.435,7.042,4.088,6.701,14.099,22.421,6.612,8.649,2.204,-2.839,7.094,18.255,7.264,5.399,9.225,7.198,6.65,17.547,12.199,16.666,13.155,9.765,19.25,0.063,1.594,22.588,19.543,12.472,3.677,13.997,23.912,2.359,10.388,3.217,17.374,6.489,15.89,12.292,8.611,-0.924,5.438,18.366,2.453,3.537,24.354,8.599,16.077,-1.09,17.056,21.807,3.251,3.488,5.454,23.947,4.577,21.675,18.381,1.643,23.568,10.386,1.638,-2.634,20.312,-4.322,11.696,4.822,17.683,19.242,20.033,11.588,21.951,11.49,2.213,14.008,12.007,22.195,10.709,7.672,22.259,9.867,24.941,12.288,10.261,7.315,7.587,16.531,15.578,13.022,12.565,12.879,10.567,9.043,19.391,9.197,14.778,4.77,18.957,15.149,18.699,17.23,16.427,5.02,5.42,6.649,29.901,20.971,3.544,19.018,10.929,1.985,13.732,19.727,22.319,2.299,13.093,16.656,18.121,17.491,17.391,3.14,3.843,13.898,6.604,32.585,15.654,11.179,6.185],[10.204,19.095,16.988,2.716,13.571,7.817,-1.679,5.883,8.021,0.918,6.952,20.108,23.627,13.132,5.678,1.549,8.678,15.301,12.615,-1.962,4.914,3.688,4.216,24.556,16.205,2.145,22.727,22.758,17.072,8.68,4.799,19.978,-4.247,19.347,12.115,2.964,11.667,11.674,21.55,15.826,6.079,23.237,11.474,8.434,9.547,9.205,18.215,14.736,13.325,18.254,17.125,4.372,17.737,17.098,31.094,1.124,12.228,5.347,20.694,2.797,5.411,20.252,11.454,14.273,20.947,-0.516,7.095,3.753,7.546,13.903,22.687,7.132,9.011,2.225,-2.977,7.166,18.662,6.717,5.581,9.193,7.131,6.584,17.209,12.224,16.543,13.037,9.5,19.623,0.069,1.501,22.751,19.086,12.642,3.945,14.434,23.422,2.315,10.392,2.987,17.329,6.221,16.147,12.272,8.654,-0.956,5.459,18.041,2.377,3.515,24.103,9.049,16.067,-0.927,16.67,21.35,3.444,3.917,5.512,23.873,5.209,21.798,18.445,1.347,23.355,10.435,1.62,-2.673,19.691,-4.644,12.132,5.307,17.599,19.369,20.173,12.189,21.913,11.762,1.778,13.959,12.411,22.665,10.386,7.671,22.262,10.246,24.743,12.535,10.676,7.461,7.705,17.356,15.52,13.34,12.273,12.45,10.616,9.195,19.363,9.362,14.971,5.107,18.778,15.462,18.767,17.55,16.294,4.322,5.09,6.052,30.035,20.642,3.781,19.367,10.674,1.613,14.079,19.961,22.247,2.461,13.083,16.488,18.306,17.607,17.126,2.699,3.876,13.911,6.502,32.812,15.435,10.994,6.073],[10.463,19.159,16.903,2.829,13.374,7.682,-1.797,5.706,8.173,0.84,6.974,20.118,23.65,13.076,6.025,1.526,8.562,15.236,12.577,-1.945,5.02,3.836,4.24,24.507,16.337,2.205,22.697,22.48,17.0,8.623,4.828,19.9,-4.31,19.581,12.205,2.83,11.47,11.9,21.463,15.88,6.054,23.395,11.51,8.947,9.51,9.244,18.363,14.736,13.155,18.138,17.187,4.148,17.696,17.228,31.05,1.158,12.186,5.284,20.729,2.949,5.173,20.314,11.56,14.459,20.923,-0.266,7.403,3.382,7.401,13.981,22.539,6.995,9.72,1.947,-2.713,7.391,19.145,6.538,5.042,8.832,7.254,6.633,16.818,12.045,16.692,12.723,9.445,19.796,-0.058,1.455,23.263,19.258,13.035,4.167,14.326,23.454,1.949,10.301,2.762,17.16,5.302,15.968,11.744,8.811,-0.625,5.602,17.936,2.678,2.698,23.59,9.156,15.531,-1.037,16.511,20.95,3.518,3.899,5.694,23.706,5.045,21.755,18.162,1.377,23.862,9.937,1.702,-2.481,19.48,-4.15,12.387,4.582,17.794,19.525,20.19,12.05,21.563,11.947,1.559,13.707,12.341,22.817,10.468,7.557,21.404,10.412,24.899,12.632,11.005,7.388,7.564,17.221,15.452,13.444,12.665,12.41,10.546,9.91,19.474,9.486,14.769,4.955,18.942,15.86,18.47,17.765,16.086,4.567,5.427,5.666,29.628,21.203,3.763,19.34,10.365,1.591,13.694,19.924,22.127,2.791,12.915,16.417,18.634,17.437,17.378,2.348,4.329,13.365,6.532,32.679,15.742,10.766,4.809],[10.662,19.277,16.749,2.879,13.173,7.703,-1.814,5.502,8.203,0.629,7.066,20.144,23.79,13.058,6.167,1.485,8.495,15.14,12.312,-1.864,4.968,4.03,4.492,24.399,16.411,2.167,22.74,22.35,17.11,8.488,4.936,19.853,-4.264,19.73,12.253,2.613,11.374,12.081,21.332,15.824,5.856,23.504,11.571,9.538,9.617,9.012,18.593,14.795,13.056,17.928,17.221,3.802,17.69,17.322,31.032,1.04,12.133,5.338,20.796,2.958,5.019,20.421,11.692,14.617,21.054,-0.372,7.144,3.273,7.412,13.767,22.299,6.19,10.139,2.131,-2.462,7.274,18.931,7.047,5.385,9.134,7.537,6.717,16.853,11.678,16.829,13.13,9.397,19.577,-0.085,1.422,23.546,19.76,12.89,4.418,13.695,23.984,2.13,10.066,3.067,17.315,5.925,15.65,12.371,8.7,-0.511,5.631,18.266,2.789,2.397,22.883,9.168,14.914,-1.093,16.773,21.3,3.423,3.711,5.707,23.495,4.49,21.845,18.063,1.662,23.757,9.936,1.561,-2.605,20.003,-3.856,12.248,5.154,17.897,19.482,20.087,12.219,21.511,11.492,1.588,14.121,11.838,22.332,10.742,7.912,21.63,10.582,25.282,12.187,10.717,7.176,7.388,16.135,15.335,13.282,12.844,12.236,10.581,9.945,19.851,9.237,14.629,4.469,19.224,15.876,18.132,17.796,16.2,4.95,5.601,5.571,29.388,21.011,3.575,18.982,10.689,1.618,13.532,19.352,22.224,2.72,13.239,16.492,18.734,17.083,17.682,2.06,4.3,13.312,6.598,32.059,16.134,10.598,4.716],[10.813,19.409,16.601,2.909,13.065,7.877,-1.703,5.361,8.097,0.551,7.292,20.28,24.079,12.97,6.089,1.558,8.476,15.078,12.043,-1.823,4.916,4.108,4.592,24.201,16.432,2.045,22.756,22.501,17.324,8.407,5.072,19.919,-4.086,19.696,12.369,2.393,11.304,12.222,21.258,15.577,5.617,23.42,11.535,9.855,9.801,8.858,18.914,14.805,12.897,17.598,17.22,3.52,17.686,17.335,30.947,0.905,12.123,5.323,20.758,2.838,4.975,20.344,11.963,14.666,21.021,-0.987,7.044,3.311,7.344,13.858,22.929,5.641,9.935,2.155,-2.728,6.778,18.473,6.966,5.778,9.751,7.564,6.839,16.965,11.688,16.754,12.998,9.582,19.203,0.146,1.029,23.51,20.075,13.077,4.314,13.647,24.424,2.288,9.956,3.283,17.429,6.35,15.283,12.44,8.889,-0.852,5.825,18.609,2.375,3.124,22.365,8.486,14.75,-0.799,16.717,21.392,3.563,4.043,5.962,23.81,5.021,21.715,18.065,1.786,23.513,10.417,1.126,-2.605,20.526,-3.761,11.509,5.207,18.428,19.201,20.421,12.095,21.724,11.034,1.278,14.161,11.882,22.78,10.832,8.145,21.684,10.519,25.22,12.078,10.787,7.092,7.156,16.609,15.33,13.085,12.641,12.228,10.692,10.65,19.747,9.19,14.722,4.299,19.443,15.649,18.423,17.549,16.282,4.413,6.072,5.467,29.241,20.989,3.883,19.411,10.855,1.501,14.085,19.201,21.764,2.389,13.313,16.036,18.475,16.973,17.219,2.11,3.874,13.488,6.402,32.0,16.172,11.077,5.897],[10.873,19.412,16.499,2.91,13.102,7.878,-1.624,5.159,7.954,0.415,7.542,20.485,24.509,12.931,5.963,1.63,8.541,14.999,12.121,-1.863,5.021,4.042,4.493,23.948,16.435,2.066,22.623,22.805,17.55,8.522,5.174,20.041,-3.911,19.701,12.321,2.137,11.246,12.218,21.128,15.579,5.433,23.273,11.459,9.952,9.95,8.975,19.107,14.746,12.778,17.347,17.114,3.362,17.688,17.245,30.73,0.718,12.174,5.523,20.69,2.797,4.967,20.364,12.167,14.706,21.218,-0.678,7.389,3.142,7.21,14.437,23.209,5.989,9.724,1.993,-2.927,7.462,18.614,6.435,5.927,10.286,7.194,6.703,16.714,11.621,16.41,12.519,9.701,18.93,0.068,1.081,23.458,19.903,13.43,4.166,13.905,24.654,2.495,10.222,3.097,17.814,5.918,15.012,12.083,8.954,-0.783,5.898,18.541,2.389,3.301,22.442,8.121,14.811,-0.583,16.804,21.343,3.799,4.067,5.614,24.097,4.902,21.829,18.727,1.413,24.017,10.147,1.249,-2.457,20.303,-3.174,11.315,5.166,17.998,18.543,20.901,12.343,21.321,10.618,0.782,14.179,12.19,23.211,11.276,8.124,21.949,10.532,24.928,11.977,11.119,7.08,6.925,16.724,15.334,13.02,12.61,12.073,10.566,11.11,20.103,9.314,14.643,4.289,19.454,15.416,17.829,17.844,15.974,3.965,6.15,5.637,29.339,21.348,3.791,19.317,10.942,1.627,14.525,19.479,21.412,1.89,13.478,15.483,17.982,17.617,17.129,2.016,3.991,13.669,6.19,32.449,16.041,11.016,5.4],[10.854,19.465,16.41,2.784,13.094,7.564,-1.673,5.019,7.833,0.401,7.877,20.586,24.752,13.078,5.879,1.662,8.753,14.968,12.552,-1.868,5.065,3.943,4.291,23.691,16.442,2.17,22.727,23.003,17.775,8.607,5.152,20.031,-3.915,19.773,12.163,1.958,11.225,12.153,20.947,15.789,5.312,23.371,11.521,9.928,10.103,9.172,19.132,14.713,12.671,17.093,17.023,3.32,17.738,16.999,30.4,0.5,12.16,5.722,20.668,2.852,4.851,20.368,12.247,14.774,21.324,-0.484,7.598,3.244,7.003,14.065,23.304,6.642,9.689,2.003,-3.004,8.321,19.252,5.834,6.085,10.444,7.225,6.223,16.736,11.391,16.135,12.917,9.36,19.169,-0.166,0.975,24.408,20.04,13.764,4.107,14.378,24.966,2.286,10.231,2.615,17.938,6.255,14.877,12.16,8.893,-0.865,5.584,18.574,2.866,2.711,22.53,9.205,14.901,-0.995,16.654,21.557,3.774,3.933,5.148,24.333,4.755,22.085,19.031,1.782,23.764,10.053,0.833,-2.376,19.86,-3.058,12.33,5.407,17.935,18.898,20.268,12.588,21.185,10.526,0.942,13.915,11.899,22.669,11.122,8.329,22.033,10.682,25.009,11.77,10.475,7.535,6.858,16.138,15.581,13.056,12.53,11.975,10.61,10.631,20.228,9.427,14.515,3.928,19.603,15.236,17.838,18.117,15.874,3.486,6.379,5.698,29.96,21.013,3.792,19.0,10.978,1.467,14.1,19.289,21.721,1.974,13.602,15.361,18.15,17.962,17.611,1.895,3.901,13.721,6.605,32.241,16.414,11.044,4.857],[10.799,19.65,16.327,2.777,12.975,7.43,-1.788,4.98,7.712,0.416,8.232,20.637,24.857,13.216,5.893,1.584,8.789,14.947,13.076,-1.985,5.153,3.914,4.078,23.639,16.452,2.313,22.908,22.952,17.885,8.782,5.027,19.955,-4.064,19.918,12.135,1.919,11.125,12.126,20.743,15.9,5.127,23.552,11.618,9.679,10.209,9.371,19.089,14.761,12.544,17.022,17.117,3.368,17.776,16.808,30.231,0.479,12.192,5.841,20.708,2.838,4.928,20.127,12.252,14.841,21.356,-0.813,7.264,3.566,7.149,13.664,23.13,6.314,9.47,1.74,-3.214,8.447,19.66,5.751,6.495,10.634,7.171,6.454,17.01,11.653,15.904,12.786,9.059,19.467,0.024,1.153,24.673,19.887,14.271,3.934,14.703,24.766,1.939,10.415,2.748,17.659,6.12,15.219,13.113,8.887,-1.237,5.478,18.885,2.929,2.726,22.495,9.295,15.274,-1.093,16.463,21.889,3.257,3.644,5.481,24.286,5.087,21.631,18.883,2.234,23.728,10.436,0.735,-2.394,19.722,-3.685,12.902,5.132,18.411,19.04,19.236,11.899,21.346,11.14,0.888,13.603,11.748,22.932,10.604,8.093,21.493,10.842,25.232,11.579,10.34,7.544,6.779,16.427,15.397,13.199,12.764,12.058,11.237,10.635,19.796,9.583,14.506,4.052,19.744,15.296,17.573,17.679,16.183,3.608,6.649,5.05,29.106,21.3,3.824,19.251,11.265,1.005,13.823,19.253,21.991,2.064,13.619,15.464,18.211,17.411,16.923,1.641,3.884,13.67,6.583,31.823,16.415,11.089,5.205],[10.669,19.733,16.265,2.949,12.845,7.456,-1.786,4.933,7.648,0.302,8.41,20.532,24.71,13.382,6.069,1.492,8.635,14.984,13.53,-2.098,5.394,3.872,4.222,23.658,16.507,2.517,23.025,22.841,17.862,8.926,4.777,19.884,-4.242,19.783,12.242,1.942,11.026,12.094,20.491,15.922,5.124,23.66,11.793,9.356,10.204,9.376,19.067,14.74,12.544,17.06,17.035,3.407,17.625,16.626,30.064,0.624,12.261,5.882,20.754,2.685,4.992,19.984,12.39,14.777,21.503,-1.165,6.943,3.882,6.779,14.178,23.074,5.67,9.85,1.945,-2.815,8.044,19.615,6.321,6.843,10.728,7.009,7.03,17.151,11.49,15.615,12.215,9.212,19.154,-0.241,0.895,24.686,19.78,14.168,4.259,15.224,24.418,2.163,10.284,2.583,17.559,5.483,15.801,13.695,9.092,-1.162,5.695,18.706,2.517,3.458,22.421,9.17,15.092,-0.827,16.434,22.237,3.163,3.73,5.77,24.235,4.426,21.992,19.25,1.93,24.086,10.412,1.017,-2.651,20.155,-3.902,12.477,5.49,18.773,18.397,19.388,11.833,20.85,11.654,0.697,14.019,12.038,23.059,10.98,7.776,21.706,10.732,25.335,11.643,10.528,7.575,6.581,16.841,15.589,13.876,12.771,11.724,11.131,10.72,19.9,9.841,14.987,3.744,19.494,15.236,17.244,17.671,16.265,4.22,7.128,5.17,28.715,21.283,3.663,19.033,11.164,1.168,13.809,19.607,22.102,1.937,13.504,15.386,18.094,17.03,17.01,1.862,3.941,13.566,6.386,31.128,16.025,11.462,5.748],[10.404,19.717,16.195,3.377,12.611,7.553,-1.76,4.977,7.595,0.069,8.362,20.323,24.509,13.526,6.306,1.465,8.499,15.201,13.785,-1.908,5.519,3.921,4.449,23.6,16.463,2.795,23.1,22.959,17.955,8.993,4.526,19.838,-4.458,19.583,12.483,1.932,10.843,12.129,20.204,15.949,5.209,23.603,11.984,9.124,10.172,9.241,19.057,14.838,12.665,16.953,16.893,3.439,17.432,16.46,29.905,0.828,12.352,5.968,20.953,2.52,4.964,19.943,12.565,14.551,21.606,-0.976,7.145,4.066,7.057,14.141,23.068,5.411,10.715,2.138,-2.923,7.578,19.223,6.719,7.1,10.999,6.918,6.965,16.726,11.126,15.791,12.646,9.273,18.638,-0.245,0.526,24.047,19.777,14.408,4.441,15.553,23.852,2.607,9.907,2.846,17.946,5.874,16.067,13.145,8.872,-1.031,5.644,18.36,2.356,3.433,22.018,9.335,14.897,-1.092,16.58,21.708,3.456,4.023,5.211,24.48,4.729,22.345,19.418,2.021,24.357,10.496,1.013,-2.779,20.124,-3.892,12.485,5.9,18.103,18.849,20.081,12.285,20.792,11.501,0.929,14.291,12.409,23.025,11.398,7.739,21.436,10.518,25.276,11.771,10.769,7.497,6.889,16.546,15.788,14.732,12.696,11.833,10.798,10.307,19.992,9.58,14.889,3.829,19.222,14.812,17.605,17.653,15.666,4.435,7.016,5.661,28.41,20.813,3.503,18.687,11.382,1.802,13.755,19.684,22.107,1.705,13.677,15.197,17.811,17.076,16.812,2.079,3.578,13.394,6.436,31.127,16.21,11.686,6.077],[10.309,19.716,16.078,3.772,12.461,7.658,-1.881,5.033,7.7,-0.077,8.321,20.099,24.459,13.679,6.198,1.527,8.41,15.513,13.752,-1.673,5.482,4.064,4.566,23.57,16.314,3.102,22.933,23.101,18.19,9.002,4.294,19.758,-4.579,19.391,12.65,2.059,10.621,12.222,20.083,15.965,5.38,23.418,12.072,9.011,10.073,9.155,18.977,14.999,12.881,16.868,16.82,3.317,17.256,16.119,29.814,0.951,12.374,6.212,21.151,2.538,5.029,19.937,12.597,14.346,21.564,-1.3,7.207,4.345,7.317,14.02,23.386,5.606,10.339,2.524,-3.389,7.66,18.905,6.375,6.667,10.971,7.249,6.783,16.403,10.553,16.629,12.831,9.465,18.401,-0.364,0.637,23.195,19.896,14.841,4.287,15.217,23.118,2.172,10.079,3.29,17.805,6.464,16.05,12.995,8.731,-0.955,5.765,18.699,2.625,3.216,22.401,9.417,15.036,-0.799,16.944,21.7,3.662,4.428,4.629,24.385,5.48,22.787,19.431,2.397,24.401,10.516,0.776,-3.141,19.955,-4.022,13.31,5.869,18.126,18.683,20.45,12.47,20.605,11.057,0.949,14.173,12.606,22.717,11.189,7.847,21.316,10.755,25.135,11.695,10.559,7.3,7.087,16.342,15.117,15.219,12.807,12.139,10.685,10.462,19.816,9.293,14.9,4.383,19.599,14.525,17.455,17.549,15.494,4.084,6.659,5.92,28.87,21.048,3.305,18.978,11.665,1.709,13.545,19.797,22.171,1.751,14.093,15.355,17.465,17.172,16.497,2.317,3.697,13.497,6.144,31.465,16.099,11.521,5.382],[10.307,19.728,16.005,4.013,12.226,7.879,-2.231,5.031,7.887,-0.059,8.281,20.01,24.557,13.784,5.9,1.523,8.384,15.831,13.612,-1.608,5.521,4.201,4.65,23.607,16.238,3.214,22.773,23.12,18.433,9.013,4.111,19.712,-4.621,19.276,12.761,2.232,10.308,12.267,20.032,15.843,5.569,23.148,12.08,9.081,9.802,9.169,18.869,15.128,13.008,16.701,16.81,3.123,17.264,15.725,29.876,1.031,12.349,6.425,21.209,2.548,5.07,20.032,12.6,14.135,21.395,-1.483,7.206,4.55,6.842,14.394,23.186,6.248,9.179,3.251,-3.479,8.022,19.269,6.094,6.629,11.238,7.496,6.688,16.911,10.432,16.226,12.694,9.717,18.563,-0.721,0.852,23.484,19.673,15.063,4.134,15.17,22.86,1.872,10.038,3.062,17.83,5.917,16.273,13.905,8.792,-0.462,6.032,19.045,2.873,3.798,22.734,9.433,14.865,-0.557,17.446,22.418,3.883,4.411,4.653,24.536,5.245,23.049,19.573,2.979,24.083,10.316,1.13,-3.061,19.989,-4.182,13.436,5.804,18.655,18.533,20.321,12.467,20.703,11.055,1.031,14.179,12.79,22.314,10.747,7.664,21.329,11.108,24.928,11.837,10.152,7.554,7.304,16.143,15.132,15.111,12.901,11.948,11.044,10.298,19.606,9.517,15.269,4.651,19.281,14.48,17.56,17.457,15.73,3.918,7.252,5.659,29.115,21.259,3.202,18.889,11.464,1.676,13.207,20.105,22.418,2.086,13.74,15.184,17.196,16.845,16.432,2.511,3.893,13.655,6.381,31.625,15.847,11.275,5.011],[10.246,19.669,15.977,4.192,11.932,8.229,-2.644,5.231,7.834,0.168,8.223,20.177,24.635,13.825,5.715,1.488,8.402,16.156,13.654,-1.545,5.463,4.327,4.629,23.694,16.207,3.204,22.785,23.241,18.648,9.077,4.079,19.645,-4.539,19.353,12.852,2.342,9.916,12.255,20.014,15.731,5.723,22.856,12.133,9.106,9.623,9.346,18.666,15.198,12.904,16.477,16.888,3.004,17.441,15.453,29.981,1.17,12.296,6.658,21.192,2.387,5.086,20.174,12.506,13.968,21.457,-1.046,7.829,4.645,6.885,14.663,23.23,6.702,9.335,3.162,-3.532,8.475,19.51,6.194,6.534,11.706,7.395,6.341,17.403,10.096,15.345,12.389,9.626,18.493,-0.766,1.24,23.98,19.724,15.056,3.777,15.363,23.324,2.412,9.936,3.007,17.658,5.931,16.667,13.395,8.654,-1.149,5.956,19.051,2.769,4.066,22.293,9.376,14.905,-1.201,17.668,22.286,3.851,4.472,4.963,24.769,4.88,22.762,19.884,3.186,23.954,10.614,1.408,-2.883,19.93,-4.011,13.027,5.454,18.383,18.543,19.453,12.064,20.481,11.245,1.376,14.544,12.133,22.144,10.528,7.931,21.21,10.79,24.457,12.067,9.909,7.522,7.308,15.922,15.424,14.836,12.566,11.982,10.645,10.427,19.584,9.61,14.97,4.478,19.122,14.197,17.231,17.502,16.003,3.897,7.864,5.217,29.467,20.564,3.149,18.901,11.58,1.976,13.163,20.457,22.861,2.594,13.606,14.749,16.924,16.701,16.334,2.275,3.643,13.824,6.657,31.794,15.589,11.441,5.536],[10.302,19.737,15.899,4.251,11.615,8.528,-2.867,5.648,7.737,0.589,8.207,20.314,24.545,13.818,5.776,1.574,8.428,16.452,13.679,-1.522,5.416,4.34,4.556,23.776,16.071,3.117,22.835,23.385,18.693,9.232,4.094,19.525,-4.338,19.418,12.933,2.408,9.702,12.059,20.024,15.718,5.637,22.587,11.951,9.239,9.721,9.467,18.43,15.205,12.703,16.153,17.018,3.007,17.612,15.269,30.106,1.409,12.276,6.864,21.342,2.081,5.099,20.23,12.373,13.791,21.454,-0.832,7.735,4.293,7.035,14.528,23.205,6.411,9.532,2.82,-4.103,8.675,19.083,6.695,6.691,11.882,7.695,6.306,17.082,9.963,15.678,11.967,9.807,18.763,-1.221,0.875,23.891,19.806,15.232,3.84,15.376,23.775,2.797,9.859,3.149,17.59,6.125,17.342,13.187,8.88,-1.201,6.138,18.992,2.384,4.033,22.341,9.727,15.069,-0.907,17.451,22.137,3.819,4.541,5.123,24.543,5.127,22.375,20.055,2.853,24.262,10.775,1.188,-3.197,20.017,-3.639,13.213,4.852,17.924,18.337,18.825,12.237,19.956,10.492,1.287,14.593,12.275,21.884,11.077,7.914,21.469,10.711,24.146,11.888,9.476,7.718,7.262,16.128,14.873,14.556,12.33,11.693,10.044,10.715,19.358,9.6,15.073,4.369,19.016,14.128,16.958,17.773,16.138,3.956,7.5,5.161,29.159,20.539,3.011,19.11,11.312,1.797,12.856,20.551,22.741,3.017,13.851,14.464,16.905,17.054,16.397,2.159,3.229,13.762,6.508,31.888,15.481,11.431,6.687],[10.485,19.886,15.849,4.134,11.445,8.747,-3.005,5.794,7.807,0.942,8.377,20.351,24.411,13.816,5.997,1.577,8.437,16.704,13.613,-1.478,5.448,4.375,4.564,23.877,15.984,3.078,22.848,23.374,18.554,9.423,3.925,19.437,-4.275,19.435,12.994,2.257,9.553,11.954,19.951,15.689,5.488,22.399,11.659,9.248,9.929,9.506,18.227,15.189,12.493,15.905,17.168,3.128,17.702,15.287,30.145,1.675,12.204,7.037,21.532,1.783,5.159,20.204,12.314,13.513,21.751,-0.587,6.886,3.714,6.941,14.441,22.865,6.51,9.793,3.157,-4.226,8.105,18.885,7.294,6.581,11.581,7.53,6.774,16.852,10.152,15.893,11.848,10.553,19.001,-1.391,1.201,23.557,19.826,15.148,4.18,15.132,24.112,2.694,10.034,3.352,17.516,6.502,18.053,13.514,9.001,-0.139,6.259,18.874,2.636,3.862,22.715,9.97,14.619,-0.789,17.487,22.137,3.813,4.126,4.668,24.71,5.087,22.41,19.897,2.072,24.275,10.745,1.317,-3.061,19.927,-3.199,13.723,4.779,17.835,17.972,19.084,12.156,20.271,9.687,1.243,14.464,12.438,21.878,11.11,7.713,21.594,10.611,24.21,11.467,10.04,7.927,7.228,15.999,14.506,14.704,12.613,11.398,10.487,10.571,19.029,9.473,15.465,4.461,18.743,13.901,16.679,17.876,16.135,4.111,7.093,6.0,28.847,21.581,2.776,19.104,11.439,1.524,12.508,20.257,22.899,3.147,13.509,14.237,16.689,17.041,16.612,2.35,3.276,13.643,6.091,31.833,15.305,10.918,6.429],[10.738,20.014,15.792,3.917,11.535,8.803,-3.074,5.794,7.94,1.218,8.468,20.428,24.323,13.785,6.277,1.612,8.504,17.03,13.578,-1.273,5.433,4.513,4.65,24.032,15.819,3.037,22.889,23.319,18.323,9.565,3.567,19.376,-4.242,19.446,13.029,2.001,9.352,11.94,19.852,15.533,5.441,22.366,11.465,9.035,10.103,9.518,17.959,15.238,12.247,15.69,17.239,3.315,17.696,15.436,30.094,1.889,12.015,6.932,21.58,1.683,5.314,20.364,12.42,13.163,21.822,-0.221,7.216,3.544,6.905,14.864,23.087,6.633,9.837,3.237,-3.999,7.824,19.608,7.014,7.171,11.579,8.399,6.703,17.271,9.699,15.331,12.163,10.688,18.853,-1.242,1.963,23.39,20.281,14.9,4.478,15.145,24.266,2.401,10.173,3.161,17.335,6.933,18.695,13.238,8.648,0.021,6.153,18.947,2.858,3.526,22.896,9.717,14.351,-1.161,17.66,21.981,3.975,4.388,4.2,24.728,4.931,22.23,19.536,2.21,24.273,11.328,0.841,-2.916,19.786,-3.254,13.591,5.203,17.947,18.007,19.984,12.096,20.293,9.958,1.084,14.495,11.903,21.585,11.033,7.799,21.262,10.367,24.008,11.501,9.838,7.726,7.06,15.705,14.798,15.39,12.314,11.051,10.726,9.967,18.789,9.542,15.39,4.195,18.472,13.901,16.362,18.148,16.128,4.19,7.647,6.393,28.904,21.343,2.14,19.143,11.817,2.023,12.326,20.169,23.037,3.35,13.844,13.973,16.888,17.026,17.05,2.542,3.243,13.171,6.337,31.611,14.884,10.469,5.974],[10.821,20.131,15.642,3.734,11.716,8.916,-2.973,5.675,8.071,1.348,8.547,20.542,24.373,13.948,6.344,1.794,8.517,17.445,13.511,-1.191,5.349,4.624,4.836,24.143,15.592,2.974,22.813,23.26,18.219,9.732,3.296,19.353,-4.223,19.371,13.005,1.771,9.127,11.887,19.756,15.559,5.375,22.388,11.146,8.856,10.145,9.386,17.705,15.417,12.061,15.563,17.186,3.457,17.641,15.736,30.011,2.106,11.79,6.647,21.502,1.651,5.605,20.562,12.643,12.887,22.014,0.31,8.041,3.854,6.963,14.959,23.247,6.93,10.355,2.608,-3.906,8.035,19.963,6.471,7.08,12.078,8.472,6.932,16.866,9.944,15.275,12.338,10.396,18.694,-1.311,2.156,23.673,20.559,14.785,4.494,15.304,24.205,2.546,10.168,3.391,16.96,6.158,18.935,13.393,8.826,-0.197,6.361,18.975,2.647,3.691,22.836,9.583,14.187,-0.54,17.855,21.832,4.013,4.856,3.759,24.481,5.393,22.186,19.423,2.357,24.179,11.07,0.877,-2.814,19.584,-3.765,13.15,4.744,18.876,18.407,20.385,11.923,19.826,10.597,0.824,14.672,11.939,21.934,11.128,7.316,20.952,10.522,24.174,11.72,9.093,7.843,6.965,15.159,14.612,15.81,11.677,10.734,10.648,10.097,18.472,9.848,15.36,4.314,18.299,14.259,15.721,17.916,16.173,4.201,7.623,5.791,28.905,21.123,2.209,19.229,11.553,2.35,12.253,20.588,22.749,3.847,13.57,13.86,17.084,16.901,17.022,2.635,3.136,13.259,6.781,31.783,14.501,10.565,6.467],[10.888,20.31,15.395,3.693,11.943,8.889,-2.914,5.482,8.112,1.382,8.595,20.616,24.473,14.22,6.212,1.942,8.566,17.779,13.46,-1.175,5.181,4.725,5.141,24.046,15.378,3.007,22.664,23.186,18.38,9.678,3.128,19.426,-4.392,19.372,12.953,1.87,9.008,11.823,19.611,15.564,5.266,22.553,10.772,8.666,10.046,9.373,17.538,15.628,11.992,15.437,17.058,3.584,17.56,16.019,29.942,2.304,11.813,6.533,21.462,1.687,5.912,20.602,12.756,12.682,22.197,0.529,7.864,3.685,7.498,14.578,23.056,6.865,10.952,2.33,-3.906,8.463,19.345,6.569,6.954,12.095,8.187,6.678,16.292,10.123,15.206,12.332,10.562,18.974,-1.104,1.733,23.664,20.333,14.803,4.358,15.205,24.645,3.302,9.863,3.981,16.924,6.037,19.227,13.8,9.412,-0.19,6.542,18.972,2.797,3.825,22.226,10.139,14.267,0.16,18.531,21.821,3.97,4.324,3.724,24.562,4.973,22.222,19.216,1.996,23.868,11.064,0.607,-2.918,19.609,-3.685,13.096,4.814,19.217,18.216,19.743,12.097,19.836,10.432,0.869,14.64,11.568,22.384,10.977,7.666,21.277,10.419,24.272,11.774,8.299,7.604,7.118,15.183,14.39,16.021,11.677,10.663,10.487,10.436,18.396,9.35,16.001,4.261,17.94,14.742,15.464,17.945,16.702,4.126,6.899,5.434,29.077,21.487,2.3,19.704,11.337,2.348,12.351,20.568,22.924,3.941,13.774,13.675,17.285,16.638,16.279,2.637,3.103,13.071,7.082,31.684,14.39,10.854,6.041],[10.96,20.43,15.138,3.656,12.111,8.834,-2.935,5.396,8.063,1.382,8.585,20.641,24.411,14.413,5.988,2.148,8.674,18.128,13.501,-1.035,5.018,4.855,5.267,23.847,15.232,3.039,22.518,23.082,18.437,9.716,3.266,19.399,-4.538,19.38,12.928,2.143,8.87,11.834,19.656,15.442,5.087,22.684,10.457,8.408,9.797,9.424,17.445,15.931,12.018,15.333,16.918,3.637,17.568,16.156,29.824,2.328,11.932,6.405,21.493,1.792,6.032,20.643,12.89,12.643,22.127,0.606,7.632,3.451,6.973,14.847,23.181,6.219,11.08,2.602,-4.022,8.989,19.145,6.679,6.773,11.968,7.777,6.124,16.718,10.371,14.756,12.262,10.488,19.305,-1.113,1.2,23.553,20.34,15.018,4.152,15.224,24.728,3.393,9.874,3.946,17.038,6.513,19.209,13.236,9.339,0.068,6.507,19.448,3.203,3.768,22.124,9.704,14.165,-0.506,19.372,21.795,3.911,4.611,3.485,24.73,4.886,21.397,19.478,2.281,24.028,11.187,0.937,-3.386,20.392,-3.526,13.306,4.658,19.011,17.948,19.407,11.938,20.011,9.829,1.033,14.539,11.034,22.372,10.989,7.767,21.189,10.541,24.25,11.569,8.957,7.775,6.774,15.608,14.199,15.943,11.459,10.647,10.219,10.15,18.517,9.533,16.63,4.102,17.803,15.07,15.094,17.433,17.225,4.44,6.954,6.561,29.079,21.484,2.179,19.458,11.777,2.634,12.14,20.155,23.028,4.0,13.97,13.726,17.564,16.567,15.953,2.718,3.37,13.084,7.227,31.654,14.419,11.142,6.295],[11.044,20.436,15.063,3.44,12.192,8.76,-3.001,5.356,7.895,1.257,8.579,20.645,24.312,14.525,5.612,2.383,8.671,18.547,13.481,-1.046,4.999,4.989,5.308,23.784,15.105,3.078,22.37,22.938,18.434,9.704,3.371,19.36,-4.753,19.397,12.886,2.337,8.726,11.954,19.845,15.238,4.978,22.726,10.095,8.292,9.473,9.609,17.454,16.358,12.023,15.287,16.727,3.723,17.681,16.102,29.846,2.245,12.04,6.393,21.53,1.947,6.297,20.772,12.939,12.707,22.278,1.105,7.424,4.033,6.946,14.796,23.272,5.973,10.471,2.626,-4.168,8.86,19.644,6.662,6.836,11.926,7.768,6.587,16.654,10.654,14.526,12.519,10.411,18.96,-1.291,1.965,23.533,20.495,15.641,3.765,15.374,24.63,2.865,10.363,4.019,16.865,6.649,19.665,13.079,8.971,0.617,6.615,19.259,3.667,3.767,22.092,9.572,14.27,-1.116,19.541,21.802,4.151,5.082,3.633,24.317,5.093,21.724,19.816,2.709,23.863,11.378,1.519,-3.475,20.533,-3.766,13.264,5.084,18.23,17.94,19.839,11.665,20.374,9.703,1.122,14.325,11.082,22.218,10.501,6.839,21.092,10.373,24.048,11.588,9.288,8.138,6.563,15.382,14.357,16.221,11.236,10.815,9.853,9.747,18.226,9.872,16.708,3.895,18.368,15.407,14.408,17.535,16.927,3.841,7.196,6.592,28.572,21.415,2.226,19.242,12.343,2.905,11.851,20.585,22.952,3.618,14.159,14.095,17.643,16.487,16.276,2.94,3.221,13.407,7.254,31.292,14.5,10.614,6.436],[11.03,20.536,15.149,3.219,12.263,8.711,-3.115,5.315,7.648,1.303,8.604,20.638,24.202,14.464,5.524,2.584,8.715,18.942,13.437,-1.106,5.029,5.105,5.399,23.946,15.078,3.178,22.206,22.727,18.384,9.64,3.489,19.321,-4.943,19.388,12.745,2.449,8.695,11.835,19.999,15.056,4.757,22.624,9.932,8.272,9.19,9.956,17.67,16.784,12.058,15.254,16.596,3.719,17.824,16.033,29.84,2.135,12.121,6.462,21.687,2.014,6.502,20.816,12.982,12.804,22.215,1.225,7.182,3.984,6.688,14.598,23.129,6.538,10.123,2.058,-4.119,7.986,19.99,6.364,7.088,12.219,7.996,6.137,16.203,10.496,14.867,12.32,10.465,19.152,-1.31,2.435,23.287,20.757,15.798,3.554,15.261,24.451,3.28,10.311,4.44,16.862,6.13,20.338,13.487,8.961,-0.158,6.822,19.206,3.833,3.741,22.022,9.898,13.992,-0.201,19.616,21.648,4.754,4.433,3.856,24.13,5.045,21.92,19.869,3.131,23.646,11.418,1.31,-3.523,19.595,-4.144,12.956,5.114,17.889,18.245,19.939,12.175,20.366,9.814,1.224,14.254,10.8,22.022,10.364,6.754,21.374,10.435,24.428,11.698,8.628,8.43,6.646,14.95,14.186,16.768,11.062,10.684,9.325,8.974,18.329,9.538,17.223,3.95,18.199,15.225,14.521,17.46,16.905,4.142,7.122,6.516,28.196,21.411,2.584,19.613,12.013,3.118,11.825,20.543,23.133,2.996,13.798,14.0,17.673,16.731,16.23,3.08,3.036,13.204,7.842,31.205,14.487,10.509,6.408],[10.98,20.726,15.276,2.912,12.142,8.699,-3.207,5.404,7.289,1.492,8.498,20.839,24.007,14.214,5.535,2.784,8.832,19.254,13.387,-0.987,5.007,5.317,5.528,24.03,15.081,3.271,22.113,22.541,18.246,9.739,3.667,19.148,-5.047,19.386,12.521,2.379,8.696,11.639,20.024,14.847,4.573,22.532,9.906,8.1,8.96,10.087,17.944,17.181,12.05,15.256,16.595,3.652,18.082,16.102,29.781,2.093,12.167,6.544,21.839,1.943,6.682,20.794,13.067,12.915,22.61,1.251,7.017,3.207,6.474,14.358,23.008,6.996,10.42,1.944,-3.754,8.105,19.773,5.851,7.061,12.441,7.66,5.712,16.393,10.305,15.225,12.204,10.407,19.714,-1.329,1.719,23.174,20.421,15.422,3.675,15.238,24.856,3.615,10.163,4.388,16.892,5.798,21.02,13.048,9.14,-0.062,7.079,19.319,4.063,4.023,22.277,10.06,14.04,0.553,19.656,21.16,4.985,4.592,3.508,24.08,5.118,20.862,19.178,3.253,23.686,11.1,1.078,-3.692,19.93,-4.251,12.836,5.579,17.69,18.411,20.292,12.094,20.132,10.042,1.143,14.196,10.69,22.103,10.396,7.371,21.456,10.424,24.345,12.006,8.648,8.558,6.341,14.939,13.95,16.62,11.127,10.726,9.529,8.606,18.981,9.608,17.953,3.758,17.849,14.556,14.783,17.035,16.889,4.463,7.024,6.979,28.223,21.488,2.496,19.777,12.046,2.882,12.011,20.355,23.124,2.775,13.3,13.751,17.428,17.007,15.87,2.835,3.316,12.991,7.932,31.027,14.486,10.292,6.487],[10.924,20.966,15.508,2.696,11.926,8.595,-3.141,5.562,6.975,1.65,8.468,21.014,23.929,14.032,5.432,2.851,8.929,19.668,13.232,-0.587,4.871,5.597,5.623,24.106,15.17,3.329,21.976,22.439,18.085,9.858,3.819,19.158,-5.103,19.411,12.331,2.092,8.778,11.536,19.892,14.647,4.405,22.461,10.0,7.935,8.965,9.987,18.145,17.422,12.083,15.24,16.552,3.511,18.273,16.153,29.806,2.125,12.059,6.651,21.794,1.838,6.941,20.794,13.121,13.005,22.584,1.528,6.611,2.778,6.433,14.493,23.241,6.981,10.726,1.81,-3.761,8.535,19.838,5.962,6.598,12.185,7.55,5.932,16.762,10.084,14.933,12.345,10.325,19.703,-1.343,1.495,22.863,20.747,14.618,3.598,15.097,25.021,3.702,10.397,4.345,16.787,6.268,21.46,12.788,9.184,0.155,7.038,19.06,4.294,4.186,22.245,9.924,13.996,0.122,19.255,20.753,4.421,5.055,3.078,23.471,5.617,21.337,18.847,2.897,23.777,11.33,1.203,-3.701,20.287,-4.336,12.58,5.725,17.746,17.816,20.587,11.536,20.088,10.182,0.861,14.024,10.792,22.257,9.896,7.085,21.382,10.094,24.252,11.943,8.571,8.279,6.058,14.802,14.179,16.805,11.23,10.728,9.252,8.801,18.997,9.8,17.945,3.419,18.464,14.477,15.037,17.441,17.158,4.051,6.82,6.584,28.434,21.579,2.581,19.181,12.339,1.577,12.663,20.756,23.219,2.73,13.424,13.889,16.848,17.421,15.981,2.279,3.162,13.297,7.829,31.085,14.902,10.723,6.434],[10.934,21.136,15.831,2.504,11.789,8.526,-3.014,5.626,6.789,1.751,8.487,21.133,24.015,13.949,5.286,2.804,8.963,20.036,12.921,-0.315,4.968,5.625,5.74,24.191,15.232,3.391,21.858,22.234,17.962,9.837,3.764,19.3,-5.051,19.432,12.352,1.733,8.751,11.299,19.71,14.551,4.215,22.445,10.154,7.768,8.939,9.806,18.265,17.481,12.146,15.197,16.466,3.196,18.469,16.179,29.773,2.079,11.958,6.714,21.744,1.734,7.086,20.749,13.119,13.274,23.008,1.728,6.218,3.034,5.986,14.83,22.817,7.159,9.983,2.09,-3.849,8.887,20.068,6.406,6.581,11.689,7.505,5.888,16.94,10.097,15.075,11.87,10.022,19.817,-1.112,2.807,23.347,21.342,15.089,3.472,14.711,24.802,3.971,10.377,4.477,16.916,5.955,21.76,13.029,9.622,1.053,7.374,19.109,4.062,4.079,22.35,10.182,13.908,-0.227,19.685,20.97,4.435,4.818,3.691,23.576,4.644,21.859,18.992,2.731,23.619,11.44,0.705,-3.717,19.955,-4.25,12.675,5.559,17.955,17.562,20.362,11.604,20.286,10.057,0.366,13.688,11.16,22.079,9.995,6.66,20.687,10.042,24.161,11.512,7.867,8.419,5.957,14.427,14.169,17.439,11.257,10.831,9.385,9.168,19.028,9.428,18.344,3.244,18.885,14.307,15.356,17.452,17.676,3.586,7.055,7.418,28.729,21.08,2.837,18.999,11.969,0.878,12.588,20.675,23.272,2.67,13.797,13.755,16.626,17.268,16.502,2.319,2.747,13.576,8.199,31.424,15.291,10.923,7.077],[10.906,21.345,16.122,2.414,11.692,8.4,-2.939,5.66,6.707,2.055,8.578,21.274,24.11,14.165,5.161,2.862,9.009,20.355,12.617,-0.137,4.998,5.435,5.699,24.362,15.26,3.491,21.742,22.035,17.969,9.86,3.567,19.384,-4.98,19.455,12.531,1.338,8.568,11.125,19.511,14.51,4.068,22.545,10.368,7.683,8.89,9.674,18.291,17.599,12.129,15.076,16.442,2.884,18.675,16.148,29.863,2.014,11.876,6.85,21.679,1.793,7.219,20.52,13.084,13.622,23.08,1.61,6.358,3.061,5.855,14.39,22.844,7.028,9.602,2.177,-3.324,8.487,20.746,6.111,6.882,11.286,7.395,5.755,17.274,9.972,15.432,11.854,9.968,19.99,-0.933,2.686,23.499,21.277,15.593,3.251,14.251,24.513,3.593,10.206,4.849,17.042,6.026,22.056,12.636,9.946,1.185,7.339,19.04,4.093,3.499,22.563,9.595,14.083,0.299,20.628,20.986,5.014,4.563,4.023,23.555,4.009,21.149,18.954,3.272,23.684,11.654,0.164,-3.636,19.948,-4.12,12.663,5.369,17.788,18.219,19.989,11.264,20.197,9.805,0.132,13.477,11.33,21.661,10.026,6.725,20.578,9.773,24.205,11.27,8.458,8.165,5.805,14.578,13.923,17.678,11.549,11.169,9.601,9.35,18.951,9.087,18.37,3.236,18.75,14.386,15.53,16.581,17.615,3.414,7.202,7.338,29.006,20.974,2.221,19.254,11.78,0.955,12.352,20.669,23.101,2.196,13.83,13.772,16.771,17.63,16.646,2.557,3.062,13.648,8.016,31.381,15.439,10.931,6.721],[10.764,21.563,16.364,2.488,11.663,8.168,-2.822,5.49,6.708,2.34,8.588,21.301,24.055,14.44,5.224,2.865,9.045,20.669,12.389,0.085,4.978,5.265,5.655,24.52,15.293,3.456,21.682,21.751,17.977,9.89,3.316,19.483,-5.037,19.455,12.556,0.989,8.511,11.009,19.333,14.508,3.987,22.715,10.616,7.68,8.866,9.459,18.357,17.787,12.133,15.142,16.39,2.709,18.826,16.13,30.012,1.847,11.894,6.965,21.688,2.063,7.208,20.286,13.034,13.705,23.461,1.86,6.734,3.242,6.288,14.256,22.877,7.059,10.42,1.626,-3.242,8.328,20.616,5.864,6.725,11.431,7.224,5.8,17.102,9.947,15.763,11.411,9.923,20.032,-0.871,1.989,23.397,21.116,15.797,3.291,14.234,24.568,3.453,10.29,4.646,16.883,6.262,22.279,12.254,9.167,0.389,6.922,18.929,4.495,3.74,22.642,9.596,14.165,0.255,20.855,20.826,5.165,4.679,3.403,23.281,4.774,20.581,19.274,4.191,23.418,11.787,-0.173,-3.842,20.302,-4.02,12.211,5.025,17.743,18.37,19.469,10.671,19.753,9.514,-0.013,14.164,11.104,21.774,9.786,6.724,20.942,10.218,24.373,11.544,9.293,7.844,5.683,14.641,14.237,17.59,12.066,10.968,9.238,9.489,18.721,9.463,18.232,2.935,18.679,14.282,15.066,17.029,17.328,3.315,6.901,7.097,28.879,21.289,2.486,18.863,12.036,1.804,12.832,20.643,23.121,2.168,13.216,13.617,17.123,18.106,15.958,2.199,3.384,13.391,8.141,31.625,15.441,10.432,6.515],[10.684,21.722,16.427,2.557,11.625,7.928,-2.662,5.239,6.845,2.479,8.536,21.047,23.996,14.719,5.461,2.852,8.918,20.847,12.22,0.179,5.087,5.135,5.577,24.573,15.328,3.531,21.61,21.52,18.094,9.849,3.088,19.587,-5.161,19.391,12.374,0.848,8.582,10.998,19.187,14.544,3.877,22.887,10.817,7.728,8.793,9.339,18.468,17.964,12.092,15.216,16.396,2.547,18.825,15.972,30.297,1.781,11.853,7.022,21.87,2.316,7.098,20.074,12.909,13.67,23.403,1.722,6.711,3.334,6.09,15.067,23.0,6.681,10.335,1.741,-3.336,8.419,20.301,5.851,6.767,11.749,6.982,6.031,17.119,9.935,16.201,11.618,9.511,19.905,-0.825,2.778,23.181,21.55,15.564,3.501,14.027,25.12,3.845,10.604,4.299,16.851,6.09,22.524,12.278,9.406,0.009,6.942,18.797,4.324,3.724,22.747,10.037,13.767,0.123,21.215,20.468,4.768,4.492,3.043,23.189,5.375,21.138,19.064,4.045,23.257,11.399,-0.181,-3.923,20.411,-4.092,12.332,4.875,17.557,18.021,19.535,11.202,19.433,9.828,-0.523,13.913,11.506,22.031,9.695,6.786,20.727,9.743,24.593,12.157,8.954,7.904,5.512,14.889,14.0,17.196,12.065,10.479,9.56,9.444,19.441,9.223,18.381,2.747,18.939,14.637,14.845,17.591,17.336,3.049,6.923,7.49,28.56,20.94,2.845,18.64,11.837,2.279,13.102,20.532,22.947,2.081,13.174,13.904,17.458,18.521,16.053,2.359,3.456,13.312,8.467,31.625,15.457,10.305,6.354],[10.703,21.665,16.318,2.591,11.653,7.658,-2.613,5.237,6.971,2.604,8.449,20.804,24.056,14.918,5.605,3.061,8.972,20.99,12.194,0.135,5.322,4.971,5.439,24.692,15.392,3.592,21.613,21.446,18.16,9.831,3.017,19.624,-5.094,19.297,12.036,0.707,8.671,11.068,19.113,14.568,3.653,23.022,10.976,7.779,8.751,9.349,18.663,18.052,12.044,15.35,16.467,2.356,18.843,15.844,30.67,1.779,11.87,6.96,22.013,2.28,7.065,19.952,12.716,13.67,23.383,1.756,6.62,2.693,6.04,15.658,23.13,6.652,9.75,2.359,-2.968,8.311,20.605,5.931,6.735,11.839,6.774,6.487,17.571,9.931,16.015,11.914,9.282,19.59,-0.751,2.75,23.022,21.372,15.751,3.779,13.678,25.312,3.693,10.355,4.432,16.352,5.749,22.73,12.472,9.535,-0.064,6.754,18.823,4.383,3.611,22.782,9.687,13.646,0.098,21.236,20.228,4.745,4.452,2.97,23.029,4.987,21.871,18.892,3.305,23.064,11.442,-0.513,-4.144,20.027,-4.24,12.679,4.836,17.523,18.169,20.009,11.272,19.676,10.119,-0.404,13.587,11.715,22.213,9.785,7.051,20.52,9.806,24.695,12.012,8.231,7.805,5.525,14.51,14.024,17.168,11.762,10.554,9.672,9.658,19.479,8.675,18.564,3.103,19.03,14.375,15.512,16.917,17.15,2.641,7.245,7.454,28.951,20.6,2.499,18.618,11.214,2.184,12.749,20.946,23.261,2.123,13.631,13.706,17.134,18.246,16.151,2.576,3.47,13.262,8.011,31.634,15.55,10.279,6.679],[10.708,21.611,16.235,2.507,11.795,7.503,-2.615,5.355,7.014,2.775,8.336,20.726,24.27,14.958,5.587,3.085,9.115,21.029,12.228,0.007,5.395,4.897,5.419,24.815,15.428,3.546,21.663,21.387,18.052,9.885,3.081,19.619,-4.997,19.26,11.809,0.499,8.694,11.033,19.133,14.543,3.507,23.007,11.15,8.057,8.745,9.162,18.829,18.059,12.067,15.49,16.307,2.117,18.753,15.685,30.889,1.837,11.835,6.845,22.078,2.249,7.152,20.005,12.624,13.626,23.376,1.596,6.75,2.748,6.518,15.604,23.261,6.796,9.788,2.877,-3.055,8.165,20.836,5.787,6.433,11.945,6.777,6.482,17.059,10.026,15.822,11.948,9.069,19.42,-0.789,2.249,23.246,20.808,15.858,3.828,13.598,25.276,3.611,10.361,4.551,16.188,6.157,22.74,12.26,9.773,0.206,6.725,19.084,4.637,3.536,22.983,9.63,13.661,0.12,20.969,20.392,4.451,4.35,2.844,22.986,4.478,21.924,19.323,3.263,23.079,11.661,-0.694,-3.671,20.372,-3.984,12.027,4.806,17.512,18.139,20.497,10.855,20.344,9.726,-0.485,13.667,11.549,22.204,9.693,7.12,20.273,9.967,24.702,11.271,7.65,7.633,5.456,14.173,14.457,17.515,12.152,11.089,9.385,9.29,18.729,9.182,18.882,3.21,19.133,13.97,16.042,17.299,17.403,2.506,7.18,7.621,29.412,20.616,2.495,18.739,11.342,1.767,12.752,21.025,23.563,2.164,13.531,13.952,16.729,17.708,16.032,2.489,3.256,13.497,7.743,32.2,15.269,10.715,7.083],[10.642,21.555,16.044,2.527,12.004,7.561,-2.656,5.364,7.088,2.842,8.292,20.788,24.547,14.837,5.563,2.907,9.286,20.908,12.111,-0.028,5.235,4.96,5.437,24.913,15.404,3.329,21.694,21.278,17.985,10.028,3.135,19.742,-4.634,19.374,11.593,0.226,8.674,10.855,19.201,14.497,3.532,22.939,11.377,8.522,8.673,8.994,18.839,18.1,12.084,15.539,16.156,1.922,18.647,15.502,31.023,1.917,11.848,6.806,22.066,2.369,7.372,20.181,12.653,13.577,23.314,1.512,6.804,2.964,6.531,15.078,23.383,7.084,10.083,2.443,-3.414,7.932,20.672,5.945,6.493,11.856,7.005,6.102,16.809,10.533,15.702,11.877,9.476,19.087,-0.836,2.481,23.395,20.626,15.888,3.577,13.743,25.267,3.848,10.513,4.486,16.476,6.307,22.644,12.162,9.645,0.373,6.739,18.652,4.433,3.935,23.041,9.733,13.796,-0.391,20.982,20.706,4.075,4.164,2.993,22.762,3.907,21.691,19.411,4.262,23.485,11.669,-0.672,-3.447,20.579,-3.914,11.427,4.91,17.536,18.069,20.104,10.852,19.924,9.271,-1.055,13.443,11.921,21.763,9.553,7.004,20.309,9.57,24.422,11.054,7.456,7.409,5.279,14.598,14.389,17.644,12.752,11.583,9.475,8.641,19.001,8.976,19.186,2.761,19.266,13.556,16.478,17.015,17.564,2.387,7.284,7.512,29.58,20.828,2.902,18.794,11.517,1.447,12.716,21.002,23.355,2.407,13.309,14.618,16.058,17.762,16.264,2.085,3.3,13.471,8.62,32.548,15.002,10.83,6.589],[10.648,21.439,15.873,2.702,12.345,7.866,-2.75,5.488,7.179,2.799,8.2,20.864,24.652,14.752,5.624,2.92,9.437,20.725,12.024,0.011,4.969,5.121,5.415,24.906,15.294,3.221,21.865,21.164,17.885,10.101,3.182,19.978,-4.244,19.496,11.262,-0.066,8.607,10.667,19.053,14.485,3.507,22.871,11.649,8.806,8.547,8.887,18.785,18.117,12.137,15.705,16.154,1.78,18.554,15.273,31.133,2.019,11.82,6.768,22.045,2.577,7.535,20.123,12.764,13.484,23.07,1.306,6.953,2.649,6.527,14.497,23.5,7.171,9.835,1.883,-3.191,8.2,19.983,5.814,6.475,11.381,6.727,6.144,16.793,10.518,15.079,12.191,9.516,19.124,-0.885,2.69,23.977,21.247,15.525,3.758,13.874,25.338,3.657,10.496,4.317,16.719,5.97,22.373,11.77,9.891,0.059,7.002,18.486,4.249,3.5,23.131,10.033,13.985,-0.574,21.188,20.474,4.444,4.207,3.603,22.774,3.514,20.957,19.311,3.579,23.634,11.828,-1.043,-2.8,20.289,-3.449,11.587,4.82,17.844,18.465,19.699,10.732,19.979,9.21,-1.345,12.882,11.934,21.691,9.436,7.626,20.192,9.746,24.462,11.792,7.717,7.467,5.407,14.727,13.996,17.922,13.101,11.064,9.699,8.43,19.302,8.151,18.895,2.707,19.233,13.533,16.62,16.645,17.216,2.31,7.606,7.767,29.741,20.88,3.131,19.147,11.19,1.23,12.633,20.767,22.989,2.743,13.196,14.178,15.937,18.105,15.805,1.683,3.65,13.15,8.801,32.656,15.372,10.663,6.971],[10.708,21.246,15.759,2.783,12.515,7.976,-2.661,5.617,7.239,2.579,8.073,20.853,24.686,14.706,5.786,3.055,9.573,20.594,12.081,0.02,4.815,5.307,5.516,24.769,15.21,3.048,22.095,20.939,17.84,10.149,3.277,20.132,-3.903,19.562,10.976,-0.31,8.568,10.564,18.866,14.467,3.466,22.902,11.811,8.949,8.414,8.654,18.638,18.126,12.176,15.98,16.082,1.695,18.453,15.05,31.291,2.052,11.784,6.798,21.944,2.819,7.647,19.813,12.829,13.421,22.747,1.427,7.098,2.87,6.607,14.663,23.423,7.316,9.77,2.499,-3.136,8.256,19.95,5.689,6.215,10.779,7.342,6.449,16.562,10.704,15.3,12.868,9.571,19.03,-0.824,2.778,23.844,21.864,15.768,4.011,13.74,25.506,3.783,10.484,4.402,16.636,5.378,22.235,11.866,9.966,-0.125,7.116,18.356,4.614,3.603,23.146,9.952,13.861,-0.539,20.852,20.698,4.932,4.474,3.816,22.799,3.519,20.514,18.453,2.95,23.712,11.903,-1.458,-2.552,20.774,-3.226,11.483,4.793,17.723,18.553,19.656,10.349,19.601,9.575,-1.454,12.726,12.158,21.877,9.259,7.635,19.69,9.562,24.719,12.201,8.076,7.227,5.264,14.699,13.72,17.443,13.08,10.474,9.573,8.741,18.866,8.678,18.382,2.744,19.512,13.342,16.69,17.105,16.876,2.729,7.494,8.155,29.785,21.024,2.915,19.635,11.418,1.384,13.228,20.713,23.367,3.39,13.26,14.571,16.36,17.522,15.545,1.509,3.798,13.18,8.275,32.659,15.259,10.149,7.257],[10.681,21.04,15.679,2.884,12.703,7.919,-2.411,5.653,7.186,2.294,7.937,20.698,24.621,14.798,5.951,3.364,9.606,20.397,12.289,-0.01,4.622,5.448,5.752,24.777,15.181,2.845,22.254,20.787,17.647,10.32,3.413,20.217,-3.627,19.634,10.827,-0.424,8.577,10.426,18.588,14.375,3.506,23.016,11.922,8.895,8.38,8.493,18.43,17.926,12.144,16.221,15.94,1.691,18.177,14.85,31.473,2.148,11.843,6.889,21.88,3.004,7.608,19.584,12.804,13.449,22.682,1.316,7.316,2.691,6.438,15.225,23.5,7.179,9.943,2.502,-3.259,7.801,20.193,6.214,6.089,10.641,7.497,6.86,16.731,11.056,15.627,12.671,9.7,19.288,-0.701,2.707,23.742,22.042,16.079,4.151,13.41,25.533,3.648,10.998,4.548,16.403,5.747,21.992,12.56,9.842,-0.101,7.32,18.748,4.736,3.712,22.898,9.41,13.535,-0.471,20.668,20.489,4.916,4.657,3.441,22.088,4.081,21.345,17.979,3.615,23.828,11.844,-1.487,-2.535,20.823,-2.963,11.124,4.899,17.811,18.603,20.238,10.121,19.25,9.633,-1.588,12.455,12.111,22.034,9.124,7.652,19.684,9.253,24.698,12.12,8.511,7.254,5.32,14.423,14.085,16.602,12.773,10.667,9.269,9.409,18.734,8.695,18.865,2.787,19.463,13.573,16.988,17.43,16.804,2.164,7.578,8.361,29.771,20.756,2.937,19.627,11.621,1.543,13.473,20.901,23.516,3.855,13.598,15.125,16.325,17.669,15.538,1.435,3.817,13.098,8.642,32.659,15.164,10.139,6.751],[10.511,20.888,15.768,2.997,12.954,7.904,-2.191,5.686,7.112,2.026,7.605,20.551,24.538,14.961,6.108,3.649,9.678,20.143,12.526,-0.105,4.665,5.572,5.904,24.835,15.083,2.856,22.429,20.709,17.377,10.413,3.488,20.223,-3.36,19.691,10.753,-0.41,8.651,10.236,18.265,14.296,3.46,23.025,11.942,8.826,8.436,8.575,18.281,17.585,12.206,16.372,15.777,1.453,17.932,14.712,31.597,2.323,11.838,6.991,21.987,3.014,7.478,19.523,12.935,13.535,22.595,1.091,7.259,2.556,6.603,15.659,23.87,7.302,10.149,2.639,-3.081,7.801,20.305,6.391,5.904,11.2,7.033,6.563,16.722,11.356,15.413,12.245,9.314,19.103,-0.271,2.267,24.077,21.99,16.231,4.197,14.022,25.53,3.953,11.227,4.772,15.63,5.761,21.933,12.619,10.256,0.087,7.235,18.877,5.167,3.507,22.985,9.921,13.362,-0.322,20.294,20.003,4.539,4.752,3.746,22.3,3.659,21.801,18.098,3.726,24.147,12.175,-1.57,-2.065,20.56,-2.667,10.974,5.095,18.225,18.902,20.918,10.276,19.225,9.104,-1.481,12.538,12.151,21.999,9.363,7.49,19.363,9.189,24.808,11.4,8.541,7.409,5.342,14.227,14.295,16.1,12.854,11.086,9.415,10.169,18.233,7.831,18.665,3.052,18.969,13.594,17.544,16.885,16.652,2.227,7.632,8.084,29.921,20.305,3.493,19.597,11.192,1.514,13.445,20.609,23.117,4.099,13.449,15.133,16.23,17.394,15.676,1.843,4.205,13.069,8.616,32.734,15.252,10.568,7.024],[10.336,20.759,15.926,3.03,13.08,7.756,-2.02,5.821,7.117,1.787,7.39,20.439,24.562,15.244,6.003,3.807,9.861,19.994,12.717,-0.185,4.751,5.531,5.931,24.888,14.768,2.952,22.578,20.653,17.209,10.692,3.619,20.205,-3.093,19.709,10.814,-0.419,8.699,10.138,18.01,14.252,3.47,22.999,11.936,8.863,8.469,8.688,18.174,17.088,12.349,16.525,15.469,1.229,17.762,14.589,31.635,2.486,11.847,7.213,22.058,3.033,7.353,19.596,13.033,13.646,22.6,0.861,6.912,3.086,6.737,15.236,24.029,7.401,9.786,2.729,-2.343,7.463,20.04,5.682,5.517,11.769,7.181,6.963,16.243,11.487,15.341,13.063,9.599,18.981,-0.08,1.928,24.16,21.831,16.121,4.137,14.527,25.862,4.452,11.295,4.495,15.598,5.515,21.736,12.732,10.292,0.266,7.3,18.525,5.209,3.996,23.34,10.177,12.998,-0.402,19.934,20.145,4.6,5.187,3.728,22.187,3.576,21.742,18.125,3.195,24.206,12.287,-1.481,-1.854,20.526,-2.859,11.017,5.232,18.415,18.877,21.305,10.237,19.395,9.168,-1.406,12.565,12.068,21.881,9.373,7.524,19.046,8.887,24.67,11.212,8.024,7.33,5.291,14.702,13.58,15.693,13.443,11.18,9.669,10.143,18.024,8.488,18.404,3.375,18.928,14.107,17.571,16.573,16.277,2.236,7.651,7.761,30.125,20.615,3.373,19.346,11.422,1.392,13.519,20.427,23.18,4.115,13.353,15.3,15.68,16.611,15.797,1.829,4.081,13.248,8.345,32.851,15.241,10.378,7.307],[10.192,20.699,15.954,3.074,13.191,7.63,-1.869,5.768,7.067,1.66,7.27,20.43,24.61,15.352,5.996,3.856,9.988,19.913,12.816,-0.218,4.862,5.522,5.859,25.069,14.394,2.976,22.681,20.65,17.152,11.024,3.699,20.169,-3.0,19.698,10.974,-0.476,8.715,10.025,17.897,14.138,3.599,22.98,12.042,8.862,8.527,8.856,18.168,16.666,12.389,16.703,15.148,1.094,17.483,14.533,31.543,2.571,12.043,7.504,22.031,3.054,7.226,19.76,13.074,13.568,22.189,0.586,7.326,3.495,6.419,15.132,23.425,7.463,9.592,2.114,-2.214,7.17,19.401,5.746,5.504,12.063,7.238,7.036,16.524,11.5,15.301,13.193,9.418,18.613,-0.152,1.989,23.981,21.258,16.021,4.215,14.576,25.777,4.962,11.363,4.295,15.809,5.663,21.543,12.735,10.61,0.592,7.331,18.217,4.455,4.002,23.166,10.13,12.752,-0.592,20.214,20.189,4.957,5.38,3.667,21.541,3.651,21.527,17.632,3.083,24.094,12.458,-1.38,-1.849,20.679,-2.622,11.392,5.344,18.761,19.032,21.266,9.875,19.091,9.621,-1.467,12.556,12.256,21.911,8.871,7.706,18.442,8.945,24.671,11.702,7.998,7.549,5.386,14.888,13.92,15.314,13.685,11.316,9.745,10.463,18.786,8.859,17.96,3.168,19.229,14.32,17.52,16.504,16.306,1.608,7.897,7.801,30.243,20.905,3.188,19.416,11.689,1.367,13.243,20.747,23.461,4.068,13.837,15.388,15.06,17.068,15.387,1.663,3.863,13.07,8.531,33.282,15.305,10.512,7.373],[10.216,20.626,15.911,2.998,13.208,7.565,-1.874,5.568,7.047,1.634,7.295,20.33,24.441,15.424,6.176,3.787,10.19,19.844,12.902,-0.211,4.904,5.519,5.757,25.054,14.216,2.921,22.707,20.504,17.1,11.186,3.703,20.144,-3.019,19.664,11.173,-0.566,8.759,9.755,17.788,14.002,3.61,22.986,12.301,8.867,8.577,9.099,18.282,16.425,12.425,16.878,14.901,0.99,17.464,14.563,31.392,2.615,12.283,7.898,22.0,3.028,7.168,19.957,13.121,13.443,22.158,0.989,7.636,3.584,6.245,15.011,23.372,7.099,9.547,2.696,-2.638,6.939,19.236,6.264,5.793,11.785,6.692,6.691,16.848,11.499,15.202,13.144,9.449,18.741,0.011,2.064,23.916,20.37,16.111,4.197,14.321,26.34,5.135,11.218,4.216,15.394,5.924,21.426,12.271,10.841,0.987,7.366,18.461,4.521,3.371,23.324,10.763,12.624,-0.265,20.395,20.152,5.239,5.103,4.041,22.066,4.11,21.176,17.604,3.394,23.976,12.897,-1.569,-1.996,20.995,-2.11,11.685,5.432,18.624,19.153,21.367,9.899,18.799,9.268,-1.655,12.905,12.258,21.957,9.099,8.449,18.27,8.599,24.696,11.682,7.658,7.791,5.391,14.767,13.91,15.203,14.003,11.42,9.505,10.556,18.69,8.784,17.795,3.15,19.277,14.11,18.056,16.768,15.833,1.616,8.144,7.469,30.396,20.885,3.413,20.192,11.425,1.524,13.293,20.768,23.592,3.692,13.417,15.513,14.724,16.86,15.003,1.592,4.037,13.197,8.046,33.191,15.086,10.535,7.521],[10.304,20.648,15.959,2.887,13.167,7.562,-1.991,5.413,7.139,1.72,7.377,20.166,24.326,15.551,6.187,3.712,10.36,19.765,12.905,-0.125,4.885,5.514,5.623,25.217,14.178,2.844,22.562,20.33,17.136,11.313,3.839,20.223,-2.937,19.6,11.279,-0.674,8.596,9.37,17.641,13.794,3.553,23.086,12.612,8.867,8.651,9.283,18.293,16.449,12.459,17.148,15.038,1.002,17.435,14.568,31.315,2.62,12.396,8.348,22.016,3.106,6.983,20.153,12.877,13.372,22.32,1.13,7.376,3.607,6.628,14.98,23.558,6.988,9.751,2.75,-3.002,7.16,19.525,5.967,5.585,11.092,6.916,6.516,16.385,11.261,15.111,13.071,9.052,18.702,-0.14,2.194,23.814,19.541,15.963,4.323,13.741,26.398,4.827,11.051,4.363,14.849,5.624,21.542,12.701,10.802,1.067,7.304,18.56,4.699,2.905,23.558,11.118,12.413,0.062,19.958,19.904,5.277,4.733,3.871,22.009,4.914,21.554,17.684,3.932,23.65,13.014,-1.722,-1.94,20.514,-2.61,12.11,5.313,18.973,19.072,20.854,9.896,19.064,9.301,-1.76,12.69,12.282,21.834,9.342,9.098,18.61,8.431,24.881,11.265,7.413,7.68,5.33,14.996,13.729,15.186,14.294,11.482,9.571,10.714,18.312,8.988,17.659,2.916,19.067,13.836,18.199,16.572,15.869,2.308,8.277,7.339,30.047,20.955,3.332,20.82,11.259,1.622,13.352,20.527,23.355,3.592,13.433,15.608,14.871,16.731,15.084,1.134,3.982,13.725,8.316,32.898,14.869,10.784,7.959],[10.304,20.696,15.969,2.869,13.178,7.636,-2.268,5.428,7.254,1.83,7.311,20.099,24.314,15.556,6.007,3.732,10.408,19.631,12.781,-0.087,4.818,5.528,5.488,25.517,14.116,2.784,22.52,20.152,17.182,11.442,3.847,20.302,-2.871,19.611,11.379,-0.725,8.348,9.154,17.709,13.614,3.459,23.197,12.737,8.936,8.773,9.246,18.127,16.637,12.445,17.462,15.203,1.071,17.454,14.508,31.226,2.62,12.536,8.615,21.94,3.202,6.856,20.286,12.799,13.326,22.58,0.83,7.272,3.335,7.062,15.005,23.736,7.199,10.261,1.62,-2.844,7.488,20.265,5.101,5.499,9.682,7.06,6.899,16.662,11.421,15.541,13.066,8.897,18.547,-0.566,2.454,23.991,19.397,15.944,4.188,14.0,26.233,3.974,11.204,3.911,14.899,5.747,21.484,12.806,11.049,0.718,7.315,18.391,4.712,3.16,23.708,10.822,12.287,-0.365,19.422,19.837,5.009,4.933,3.418,21.596,5.249,21.738,17.836,3.404,23.437,13.025,-1.706,-1.536,20.26,-3.112,12.015,5.617,19.275,19.423,19.991,9.506,19.061,9.501,-1.965,12.816,12.97,22.457,8.941,9.83,18.364,7.99,25.032,11.447,7.655,7.755,5.366,15.358,13.804,15.218,14.636,11.284,9.617,10.439,18.486,9.057,17.318,2.737,18.977,14.031,18.26,16.902,16.038,2.178,8.63,7.345,29.712,21.008,3.562,20.74,11.249,1.854,12.945,20.411,23.142,2.792,13.275,15.794,15.284,17.085,15.504,1.294,3.906,13.775,8.346,32.898,14.69,10.77,8.026],[10.165,20.792,16.011,2.737,13.391,7.7,-2.594,5.46,7.468,1.777,7.239,20.24,24.375,15.365,5.844,3.749,10.412,19.385,12.754,-0.172,4.836,5.518,5.412,25.661,14.048,2.672,22.583,19.991,17.297,11.325,3.739,20.416,-2.846,19.604,11.462,-0.779,8.184,8.998,17.783,13.603,3.36,23.291,12.811,9.09,8.845,9.101,18.067,16.792,12.44,17.86,15.422,1.101,17.635,14.476,31.097,2.571,12.568,8.625,21.791,3.29,6.831,20.367,12.97,13.196,22.564,1.011,7.276,3.029,6.596,14.734,23.627,7.153,9.96,1.377,-2.83,7.51,20.42,5.283,5.589,9.642,6.826,6.749,17.28,11.792,15.45,13.601,9.4,18.619,-0.779,2.128,23.951,19.724,16.301,4.125,14.048,26.585,3.254,11.642,3.795,15.165,5.409,21.144,12.544,11.371,0.433,7.275,18.195,4.782,3.623,23.874,10.974,12.335,-0.362,19.542,19.737,4.853,4.986,3.576,21.742,5.218,22.009,17.843,3.147,23.615,12.727,-1.601,-1.952,20.684,-2.671,12.211,5.565,19.033,19.269,19.565,8.924,18.738,9.669,-2.131,13.092,12.945,22.881,9.162,10.174,18.544,7.945,25.139,11.817,7.735,7.451,5.065,15.344,13.689,15.384,14.623,10.968,9.43,9.91,18.265,8.971,17.761,2.359,18.588,14.168,18.58,17.11,15.915,1.87,8.834,7.278,30.02,21.026,3.684,20.524,11.611,2.201,12.708,20.308,23.271,2.142,12.555,16.183,15.975,17.149,15.561,1.934,4.12,13.495,7.627,32.838,14.713,11.176,7.739],[9.898,20.822,16.066,2.575,13.735,7.739,-2.754,5.429,7.734,1.524,7.299,20.428,24.356,15.172,5.698,3.7,10.465,19.238,12.711,-0.421,4.814,5.464,5.384,25.6,13.986,2.677,22.66,19.968,17.383,11.096,3.686,20.55,-2.945,19.517,11.683,-0.774,8.185,8.871,17.807,13.682,3.211,23.396,12.789,8.984,8.804,9.11,18.012,16.96,12.476,18.154,15.623,1.102,17.732,14.572,31.08,2.465,12.547,8.556,21.725,3.391,6.678,20.421,13.045,13.062,22.631,0.83,7.339,2.401,6.545,14.669,23.524,7.177,9.358,1.65,-3.325,7.316,19.884,5.7,5.5,10.757,6.687,7.033,17.05,11.975,15.108,13.979,9.449,18.596,-0.908,1.841,23.894,20.461,15.551,3.893,14.115,27.181,3.19,11.591,4.018,15.475,5.604,20.95,12.957,11.059,0.689,7.34,18.69,4.209,3.421,24.168,10.794,12.658,-0.225,19.604,19.677,4.81,4.689,3.703,21.728,5.384,22.207,17.876,3.621,23.641,12.762,-1.662,-1.742,20.999,-2.119,12.383,5.138,18.983,19.704,19.753,8.952,18.39,9.652,-2.059,12.982,12.6,23.049,9.518,10.25,18.578,8.241,25.253,11.818,7.519,7.683,4.954,15.532,13.174,15.874,14.297,10.951,9.248,10.304,18.237,8.931,18.095,2.446,19.174,13.998,18.992,17.267,16.246,2.007,8.406,7.131,30.168,21.218,3.407,20.39,11.342,2.492,12.17,20.347,23.239,2.651,13.182,16.252,16.171,16.914,15.055,2.109,4.44,13.566,7.988,32.871,14.893,10.879,7.799],[9.729,20.85,16.059,2.332,14.015,7.72,-2.781,5.462,7.986,1.185,7.371,20.476,24.257,15.046,5.639,3.456,10.467,19.288,12.692,-0.674,4.879,5.364,5.297,25.643,14.003,2.811,22.721,19.989,17.545,10.957,3.586,20.864,-3.029,19.33,11.941,-0.673,8.241,8.841,17.724,13.763,3.203,23.503,12.57,8.87,8.728,9.306,18.018,17.123,12.469,18.416,15.615,1.105,17.701,14.688,31.176,2.468,12.488,8.362,21.772,3.486,6.525,20.533,13.212,12.979,22.238,0.387,7.785,1.914,6.878,14.42,23.492,7.008,8.885,2.401,-3.768,7.523,19.396,5.859,5.613,10.81,6.868,6.872,16.614,12.288,14.9,13.941,9.388,18.653,-1.322,1.873,23.819,21.093,15.621,3.824,14.329,27.135,3.741,11.498,3.801,15.724,5.911,21.072,12.758,10.683,0.448,7.02,19.242,4.183,3.262,24.271,10.347,12.671,-0.385,19.384,19.837,4.529,4.5,3.801,21.641,5.832,22.165,17.701,3.797,23.848,12.436,-1.659,-1.603,20.745,-2.387,12.448,5.096,19.496,19.874,20.322,9.445,19.11,9.442,-1.921,13.418,12.47,22.812,8.991,9.63,18.282,8.158,25.3,11.643,7.493,7.695,4.88,15.554,13.486,16.015,14.219,11.55,9.004,10.429,18.12,9.041,17.59,2.001,19.428,13.824,19.083,17.404,16.432,1.985,8.67,6.787,29.845,20.771,3.618,20.601,11.783,2.487,11.952,20.196,23.121,2.277,13.547,16.663,16.216,17.049,15.532,1.795,4.07,13.648,8.203,32.933,14.659,10.67,8.244],[9.707,20.843,15.888,2.117,14.133,7.719,-2.785,5.444,8.222,0.942,7.48,20.429,24.075,14.989,5.709,3.1,10.409,19.357,12.606,-0.984,5.115,5.169,5.1,25.687,14.099,3.023,22.786,19.92,17.817,10.874,3.518,21.26,-3.093,19.207,12.117,-0.614,8.301,8.872,17.735,13.809,3.148,23.483,12.247,8.865,8.583,9.509,18.033,17.264,12.507,18.68,15.557,1.22,17.67,14.886,31.238,2.423,12.432,8.285,21.766,3.594,6.433,20.583,13.535,12.984,22.29,0.422,8.037,1.169,7.093,14.365,23.714,6.955,9.084,3.064,-4.264,7.606,19.41,5.911,5.677,9.602,7.017,6.434,16.828,12.932,15.086,13.638,9.476,18.572,-1.559,1.216,23.5,21.04,15.758,3.936,14.515,26.8,4.021,11.19,3.534,15.625,5.679,21.182,12.512,10.552,0.055,6.806,19.371,4.445,3.587,24.1,10.141,12.79,-0.437,19.274,19.672,4.114,4.625,3.411,21.642,5.834,22.227,17.843,3.402,24.007,12.547,-1.546,-1.634,20.957,-2.948,12.85,5.32,19.235,20.383,20.489,10.174,18.789,9.201,-2.095,13.699,12.681,22.764,8.455,9.45,18.315,8.35,25.378,11.228,7.684,7.766,4.828,15.466,14.05,15.721,13.847,12.066,8.593,10.387,17.867,9.353,17.621,1.877,19.178,13.472,19.522,17.319,15.951,2.106,8.645,7.079,29.941,20.778,3.413,21.39,12.129,2.282,12.102,20.226,23.113,2.611,13.172,17.027,16.286,17.342,15.846,1.16,3.762,13.667,7.598,32.87,14.695,11.102,7.946],[9.679,21.015,15.71,1.828,14.238,7.722,-2.953,5.298,8.393,0.812,7.613,20.375,23.977,15.016,5.774,2.667,10.197,19.343,12.6,-1.264,5.281,5.033,4.997,25.813,14.289,3.109,22.855,19.822,18.15,10.797,3.493,21.498,-3.143,19.131,12.17,-0.868,8.406,9.074,17.693,13.783,3.088,23.409,12.043,9.026,8.428,9.544,17.963,17.288,12.656,19.0,15.603,1.3,17.543,15.079,31.215,2.4,12.494,8.253,21.69,3.583,6.415,20.661,13.804,13.15,22.756,0.063,8.239,1.231,7.482,14.528,23.783,7.086,9.233,2.835,-3.954,7.199,19.804,5.389,6.05,9.213,6.69,6.434,16.997,13.536,15.154,13.416,9.596,18.575,-1.507,0.766,23.168,20.473,15.543,3.912,14.308,26.711,3.552,10.988,3.511,15.639,5.764,21.062,12.651,11.094,-0.362,6.702,19.355,3.748,4.277,23.99,10.519,12.701,-0.811,19.449,18.974,4.147,4.247,3.103,21.761,5.718,22.555,18.269,3.526,24.021,12.413,-1.731,-1.724,21.515,-2.889,12.957,5.316,18.968,20.527,20.226,10.04,18.204,8.822,-2.268,13.633,12.174,23.089,8.695,10.019,18.827,8.456,25.149,11.333,7.659,8.284,4.729,15.351,13.95,16.355,13.569,11.844,7.773,10.361,18.177,9.447,18.171,1.78,18.711,13.745,19.751,17.309,15.665,2.547,8.099,7.171,30.01,21.231,3.311,21.888,12.253,2.165,12.111,20.324,23.126,2.833,13.579,17.342,16.253,17.281,15.494,1.251,4.466,13.355,7.859,32.93,14.559,11.154,7.332],[9.605,21.377,15.614,1.537,14.436,7.657,-3.133,5.227,8.47,0.686,7.663,20.296,23.991,15.062,5.774,2.236,9.985,19.312,12.671,-1.37,5.255,5.078,4.926,26.01,14.451,3.222,23.016,19.749,18.244,10.8,3.416,21.51,-3.012,18.974,12.11,-1.306,8.497,9.316,17.634,13.68,3.041,23.31,12.007,9.311,8.2,9.584,17.813,17.359,12.727,19.227,15.686,1.381,17.368,15.262,31.104,2.482,12.523,8.182,21.636,3.598,6.41,20.871,14.061,13.29,23.193,0.09,8.846,1.469,7.301,14.857,23.704,6.767,9.478,2.257,-3.974,7.776,20.574,4.313,5.925,9.903,6.839,6.776,16.881,13.39,15.176,13.991,9.33,18.599,-1.569,0.919,22.929,20.046,15.544,3.952,14.365,27.244,3.141,11.058,3.844,15.652,6.294,21.216,13.126,10.771,-0.485,6.888,19.456,3.152,3.435,24.338,10.658,12.743,-0.942,19.005,19.098,4.117,3.885,3.433,21.587,6.22,22.122,18.615,3.821,24.216,12.157,-2.208,-2.342,21.565,-2.445,12.7,5.059,19.404,20.406,19.762,9.926,18.399,8.745,-2.658,13.514,11.857,22.929,9.037,10.424,18.625,8.516,25.14,12.162,7.471,8.026,4.872,15.516,13.409,16.417,13.236,11.589,7.81,10.68,18.156,9.258,18.125,1.866,18.758,13.846,19.777,17.327,15.876,2.007,8.052,6.972,29.69,21.42,3.48,21.591,12.492,1.802,11.998,20.083,23.177,2.65,13.89,17.492,16.444,17.114,15.323,1.963,4.525,13.532,7.815,32.666,14.643,11.113,6.895],[9.698,21.483,15.585,1.288,14.689,7.657,-3.164,5.09,8.564,0.712,7.762,20.141,23.955,15.046,5.786,2.224,9.69,19.196,12.852,-1.233,5.328,5.157,4.919,26.181,14.542,3.323,23.185,19.699,18.043,10.823,3.368,21.39,-2.819,18.819,12.095,-1.661,8.527,9.521,17.614,13.606,2.954,23.148,11.968,9.63,7.984,9.572,17.788,17.411,12.687,19.263,15.598,1.462,17.328,15.316,30.957,2.489,12.639,8.067,21.599,3.647,6.272,21.088,14.206,13.288,23.142,-0.324,8.268,1.767,7.226,14.559,23.62,6.831,9.182,1.434,-4.219,8.075,20.142,3.952,5.937,10.132,6.868,6.942,16.849,13.312,15.286,14.62,9.171,18.243,-1.978,0.914,23.594,20.804,15.924,4.166,14.579,27.477,3.286,11.18,3.644,15.835,5.904,21.049,13.316,10.299,-0.584,6.803,19.405,3.396,2.674,24.705,10.37,12.934,-0.423,18.551,19.549,4.028,3.879,3.333,21.331,6.49,21.869,18.214,4.176,24.577,12.473,-2.354,-1.7,21.794,-2.695,13.036,4.619,19.34,20.887,18.968,10.041,18.641,8.86,-3.133,13.321,12.205,22.386,8.791,10.522,18.117,8.498,24.902,12.074,7.609,7.994,4.597,15.534,13.381,16.271,13.184,11.981,8.296,10.844,17.47,9.208,18.03,1.748,19.134,14.358,20.097,17.392,15.931,2.241,8.898,7.048,29.553,21.678,3.483,21.21,12.972,1.363,11.714,20.012,22.86,2.863,13.994,17.454,17.027,16.574,15.792,2.499,4.179,13.69,7.448,32.476,14.874,10.895,7.564],[9.898,21.266,15.641,1.144,14.858,7.665,-3.107,4.916,8.543,0.703,7.845,19.999,23.917,15.024,5.778,2.668,9.481,18.979,13.053,-1.115,5.376,5.099,4.886,26.238,14.586,3.43,23.22,19.677,17.826,10.88,3.278,21.436,-2.604,18.605,12.285,-1.809,8.55,9.721,17.52,13.661,2.748,23.047,12.06,9.906,7.875,9.53,17.845,17.346,12.617,19.366,15.495,1.594,17.307,15.449,30.84,2.406,12.757,8.091,21.501,3.642,6.135,21.106,14.282,13.14,22.674,0.074,7.789,0.695,7.408,14.298,23.418,6.734,9.043,1.72,-4.018,7.733,19.675,4.386,6.261,9.964,6.713,7.159,16.844,13.328,15.024,14.669,9.482,18.275,-2.074,0.944,24.506,20.888,15.623,4.075,14.838,27.611,3.799,10.965,3.302,16.067,5.527,20.769,13.124,10.071,-0.478,6.852,19.269,3.768,2.86,24.748,10.108,13.236,-0.526,18.551,19.537,4.148,4.429,2.998,21.452,6.611,21.987,18.055,4.164,24.903,12.583,-2.685,-1.308,22.053,-2.359,12.888,4.547,19.229,20.384,18.254,10.074,18.301,9.126,-3.303,13.835,12.181,21.979,8.366,10.755,18.112,8.789,24.794,11.339,7.539,8.179,4.665,15.243,13.529,16.391,13.065,11.955,8.357,11.262,17.448,9.169,17.866,1.574,19.387,14.711,20.08,17.064,15.626,2.288,8.829,6.792,29.518,22.304,3.477,21.433,12.703,1.523,11.815,20.031,22.946,2.865,13.857,17.664,17.071,16.557,15.656,2.784,4.188,13.379,7.382,32.478,14.614,11.3,8.281],[10.078,21.186,15.633,1.175,14.791,7.702,-3.031,4.801,8.458,0.599,7.922,19.873,23.973,14.913,5.807,3.091,9.416,18.775,13.102,-1.225,5.467,4.999,4.804,26.159,14.583,3.76,23.107,19.748,17.865,10.87,3.094,21.636,-2.294,18.329,12.535,-1.781,8.53,9.933,17.365,13.598,2.63,23.052,12.159,10.276,7.677,9.522,17.788,17.232,12.38,19.549,15.358,1.63,17.244,15.711,30.769,2.372,12.868,8.131,21.393,3.68,6.081,21.066,14.178,13.039,22.359,0.06,8.019,0.493,7.753,14.799,23.543,6.648,9.843,2.028,-4.131,7.658,19.564,4.371,6.224,9.687,6.843,6.459,16.45,13.673,14.772,14.411,9.5,18.046,-1.983,1.525,24.553,20.543,15.228,3.861,14.964,27.821,4.053,10.591,3.36,16.372,5.382,20.691,13.092,10.13,-0.415,6.756,19.289,3.875,3.119,24.854,10.332,13.54,-1.301,18.379,19.33,4.24,4.601,2.919,21.517,6.355,22.248,18.22,3.763,24.755,12.645,-2.323,-1.659,22.069,-1.932,12.528,4.808,18.915,20.995,18.329,10.237,18.104,9.463,-3.188,13.842,11.942,22.184,8.715,11.333,18.312,9.322,24.85,11.428,7.685,7.792,4.607,15.508,13.35,15.958,13.33,11.588,7.802,11.542,18.001,9.564,17.547,1.521,19.145,14.227,20.338,17.247,15.544,1.853,8.616,6.624,29.533,21.763,3.168,21.59,12.613,1.576,11.507,20.137,22.79,2.713,13.534,17.674,16.925,17.45,15.365,2.917,3.969,13.321,7.463,32.44,14.443,11.377,8.395],[10.16,21.255,15.498,1.321,14.713,7.818,-3.022,4.706,8.433,0.485,8.085,19.848,24.17,14.804,5.691,3.361,9.371,18.678,13.065,-1.568,5.456,4.897,4.784,26.124,14.665,3.933,22.877,19.782,18.096,10.87,2.941,21.846,-2.083,18.111,12.605,-1.618,8.533,10.272,17.311,13.498,2.539,23.076,12.165,10.716,7.43,9.482,17.665,17.061,12.164,19.69,15.43,1.608,17.303,15.858,30.727,2.345,12.826,8.002,21.359,3.689,6.119,20.949,13.857,12.915,22.607,0.033,8.345,1.36,7.631,14.379,23.708,6.425,10.077,2.128,-4.246,8.101,19.759,3.962,6.58,10.086,7.091,5.812,16.706,13.779,14.798,14.165,9.427,17.951,-2.084,1.905,23.936,20.143,15.518,3.842,14.754,27.777,3.959,10.645,3.311,16.469,6.06,20.433,13.049,10.17,-0.591,6.715,19.394,3.818,3.597,25.019,10.874,13.883,-1.501,18.365,19.023,4.282,3.966,2.658,21.676,6.408,22.543,18.359,4.544,24.504,12.146,-2.303,-1.187,22.347,-1.861,12.933,4.79,18.894,21.206,18.687,10.366,18.073,9.864,-3.169,13.909,12.286,22.817,8.539,11.451,18.277,9.265,24.776,11.53,7.791,7.68,4.364,15.35,13.331,16.31,13.552,10.987,7.239,11.689,17.84,9.48,17.704,1.419,18.829,14.211,20.6,16.713,15.535,1.903,9.354,6.875,29.701,20.822,3.099,21.201,12.534,1.603,11.563,19.846,22.685,2.445,13.495,17.942,16.923,17.147,15.42,2.588,4.027,14.113,7.286,32.482,14.543,11.526,8.17],[10.205,21.432,15.46,1.556,14.707,8.06,-3.161,4.709,8.458,0.502,8.285,19.812,24.452,14.718,5.353,3.449,9.351,18.71,12.969,-1.984,5.435,4.785,4.636,26.124,14.866,4.131,22.678,19.702,18.287,10.9,2.855,21.986,-1.952,17.98,12.65,-1.483,8.618,10.574,17.392,13.47,2.349,23.25,12.172,11.163,7.147,9.456,17.544,17.029,12.019,19.801,15.581,1.559,17.255,15.875,30.823,2.309,12.752,8.004,21.362,3.645,6.257,20.688,13.569,12.806,22.987,-0.084,8.656,1.838,7.035,13.797,23.675,6.322,9.95,2.219,-3.763,8.822,20.423,3.65,6.776,10.285,7.213,6.452,16.906,13.678,14.953,13.883,9.6,17.969,-2.059,1.275,23.646,20.431,15.338,3.73,14.699,27.846,4.001,10.568,3.383,16.593,6.504,20.554,13.304,10.164,-0.959,6.594,19.437,4.122,3.897,25.044,10.364,13.604,-1.561,18.277,19.2,4.351,3.801,2.327,21.612,6.435,21.876,18.37,4.365,24.257,12.664,-2.279,-1.248,22.194,-2.24,13.385,4.529,18.661,21.139,18.746,10.676,17.637,9.715,-2.91,13.998,12.08,23.22,8.329,11.176,18.092,9.488,25.045,11.402,7.441,7.867,4.086,14.951,13.097,15.786,13.828,10.638,7.561,11.779,17.387,8.828,17.776,1.284,18.942,14.491,20.602,16.678,16.005,2.208,9.093,6.646,29.459,21.194,3.234,20.898,11.893,1.597,11.391,19.86,22.688,2.04,13.394,18.232,17.348,16.282,16.133,2.202,4.379,14.319,7.397,32.498,14.305,11.63,7.457],[10.204,21.786,15.507,1.8,14.74,8.357,-3.319,4.78,8.429,0.511,8.569,19.732,24.642,14.687,5.28,3.392,9.416,18.866,12.986,-2.258,5.339,4.663,4.41,26.054,15.061,4.252,22.541,19.6,18.215,10.839,2.816,21.967,-2.022,17.907,12.692,-1.39,8.596,10.802,17.448,13.363,2.064,23.602,12.262,11.464,7.052,9.277,17.474,17.001,11.869,19.865,15.796,1.464,17.18,15.91,30.949,2.242,12.723,8.047,21.303,3.647,6.371,20.488,13.331,12.747,23.533,-0.037,8.474,1.708,6.936,14.478,23.564,6.442,9.81,2.765,-4.058,8.87,20.94,3.47,6.769,10.479,7.15,6.449,16.54,13.595,15.441,13.828,10.013,17.958,-2.227,0.797,23.525,20.455,15.581,3.677,14.376,27.826,4.529,10.563,3.298,16.48,6.486,20.597,13.542,9.818,-1.328,6.382,19.434,4.185,3.838,25.15,10.142,13.481,-1.43,18.028,19.247,4.645,3.995,2.717,21.33,6.637,21.724,18.39,4.419,24.273,12.503,-2.29,-1.6,21.696,-2.38,13.248,4.068,18.917,21.469,18.163,11.128,17.808,9.832,-2.599,13.958,11.918,22.822,8.426,12.107,18.294,9.728,25.439,11.477,6.909,7.746,3.914,15.167,13.05,15.38,13.212,10.664,7.455,11.811,17.171,8.775,17.423,1.159,19.054,15.004,20.476,16.709,16.175,1.969,8.58,6.879,29.609,21.297,2.876,20.824,11.674,1.081,11.291,19.867,22.679,2.248,13.18,18.049,17.379,16.091,16.312,2.317,4.429,13.792,7.822,32.626,14.064,11.151,7.379],[10.133,22.29,15.516,2.086,14.874,8.571,-3.494,4.873,8.382,0.411,8.873,19.686,24.564,14.863,5.466,3.357,9.496,18.915,13.163,-2.416,5.306,4.607,4.282,25.969,15.189,4.214,22.533,19.563,17.989,10.673,2.779,21.859,-2.192,18.001,12.683,-1.27,8.532,10.962,17.523,13.24,1.882,23.851,12.313,11.698,7.073,8.893,17.403,16.927,11.781,19.735,15.97,1.305,17.12,15.974,31.074,2.153,12.584,8.053,21.234,3.67,6.47,20.389,13.163,12.796,23.959,-0.131,7.794,1.611,7.132,14.756,23.691,6.571,9.992,3.232,-4.864,8.839,20.845,3.825,7.181,10.837,7.551,6.189,16.647,13.53,15.235,14.3,10.048,17.837,-2.216,1.71,23.872,20.394,15.471,3.75,14.669,27.823,4.769,10.757,3.151,16.76,6.037,20.815,12.99,10.243,-1.593,6.012,19.219,4.022,3.59,25.176,9.855,13.778,-1.306,18.309,19.049,4.782,3.422,2.702,21.517,6.72,22.022,18.394,4.731,24.221,12.023,-2.123,-1.202,21.531,-2.469,12.902,3.762,18.768,21.059,17.544,11.533,17.852,9.545,-2.738,14.399,12.161,22.722,8.248,12.357,18.449,9.859,25.521,11.164,6.903,7.083,3.754,15.018,13.145,15.816,12.573,10.547,7.102,12.259,17.143,8.891,17.491,0.93,18.997,15.0,20.532,17.037,15.95,1.291,8.607,7.098,30.134,20.45,2.859,21.016,11.646,0.462,11.303,19.62,22.554,2.465,13.104,17.942,17.295,16.667,16.01,2.425,4.324,13.44,7.427,32.838,14.233,11.05,7.663],[10.01,22.665,15.508,2.339,15.108,8.62,-3.762,5.061,8.293,0.362,9.135,19.736,24.445,14.94,5.644,3.38,9.693,18.998,13.353,-2.561,5.315,4.557,4.082,25.941,15.287,4.12,22.638,19.64,17.739,10.447,2.715,21.62,-2.272,18.043,12.713,-1.285,8.434,11.041,17.694,13.228,1.79,23.948,12.223,11.844,7.142,8.555,17.341,17.04,11.677,19.518,16.105,1.112,16.942,15.997,31.218,2.131,12.439,8.003,21.229,3.714,6.47,20.266,13.034,12.88,24.182,0.146,7.417,1.895,7.673,14.818,23.629,6.54,10.255,3.375,-4.737,9.412,21.261,3.935,7.389,11.074,8.241,6.194,16.689,13.808,15.018,14.494,10.241,18.106,-2.554,1.56,24.157,20.638,15.168,4.006,14.95,27.648,5.078,10.615,2.804,16.996,5.879,20.855,13.283,10.524,-1.578,6.121,18.876,3.764,3.678,24.796,9.919,14.21,-1.475,18.588,19.123,4.87,3.682,2.117,21.435,6.443,21.944,18.228,4.046,23.976,12.224,-1.849,-0.927,21.947,-2.681,13.006,3.319,18.609,20.869,17.828,11.96,17.776,9.451,-2.979,14.459,12.288,22.922,7.968,11.799,18.031,10.412,25.501,10.918,7.082,6.899,3.467,14.984,12.625,15.798,13.036,10.447,7.147,12.3,17.592,7.958,17.743,0.737,18.454,14.539,20.361,17.281,15.214,0.908,9.405,7.05,29.955,20.687,3.552,20.936,11.35,0.695,11.597,19.754,22.781,2.119,12.709,17.664,17.319,16.749,16.359,2.306,4.302,13.247,7.547,33.025,14.597,11.037,7.799],[9.919,22.842,15.521,2.53,15.181,8.722,-4.045,5.202,8.22,0.405,9.352,19.924,24.407,14.9,5.773,3.487,9.907,19.054,13.54,-2.658,5.293,4.632,3.9,25.844,15.313,3.947,22.676,19.615,17.528,10.282,2.627,21.394,-2.224,18.003,12.79,-1.396,8.356,11.155,17.861,13.158,1.647,23.991,12.176,11.896,7.088,8.418,17.307,17.224,11.573,19.408,16.211,1.004,16.564,15.978,31.248,2.101,12.358,7.976,21.373,3.874,6.452,20.221,12.794,12.921,24.218,-0.034,8.024,2.325,7.077,15.027,23.37,6.573,10.182,3.376,-5.018,9.479,21.556,4.098,7.578,11.349,8.133,6.136,16.277,14.217,15.309,14.105,10.33,18.223,-2.672,1.074,24.427,20.758,15.877,4.173,14.806,27.597,5.102,10.88,2.467,17.119,6.27,20.856,13.43,9.656,-1.3,6.417,18.77,3.745,3.763,24.677,9.94,14.559,-2.192,18.35,19.231,4.712,3.657,2.061,21.428,6.253,22.055,18.07,3.887,24.232,12.053,-1.885,-1.674,22.145,-2.986,13.485,3.09,18.901,20.605,18.689,11.699,17.985,9.208,-2.851,14.017,12.103,23.116,8.529,11.849,18.372,10.442,25.518,10.786,7.188,6.774,3.396,15.087,12.879,15.596,13.199,10.405,7.774,12.244,18.725,7.905,17.793,0.691,18.212,14.582,20.167,17.762,14.939,0.952,9.581,7.086,29.97,21.07,3.45,20.836,10.868,1.194,11.861,19.949,22.774,2.416,13.009,17.718,17.158,16.634,16.478,2.183,4.497,13.358,7.87,32.945,14.793,11.034,7.47],[9.928,22.92,15.511,2.604,15.084,8.865,-4.294,5.244,8.111,0.357,9.394,20.165,24.465,15.028,5.868,3.608,9.924,19.013,13.547,-2.679,5.302,4.879,3.748,25.693,15.448,3.701,22.736,19.54,17.393,10.169,2.496,21.281,-2.182,18.029,12.896,-1.546,8.295,11.238,18.12,13.158,1.508,24.041,12.233,11.919,7.174,8.334,17.493,17.303,11.512,19.396,16.304,0.974,16.214,15.996,31.197,2.195,12.356,7.885,21.529,4.002,6.453,20.249,12.61,13.006,24.453,-0.242,8.474,2.908,6.78,14.891,23.537,6.819,10.051,3.747,-5.323,9.628,21.766,4.06,7.478,11.188,7.827,6.349,16.561,14.109,14.914,13.946,10.391,18.31,-2.598,1.718,24.226,21.096,15.958,3.936,14.945,27.385,5.286,11.137,2.839,16.962,6.968,20.89,13.214,10.311,-0.902,6.696,18.583,3.961,3.578,24.637,9.392,14.402,-2.826,18.225,18.996,4.424,3.013,2.189,21.323,5.734,22.111,18.161,4.484,24.466,11.739,-2.198,-2.175,21.539,-3.304,13.772,3.646,18.207,20.857,19.148,11.051,18.077,9.011,-3.077,13.826,12.002,23.064,8.549,12.08,18.424,10.383,25.572,10.459,7.12,6.656,3.359,14.803,13.523,15.764,13.041,10.691,7.31,12.419,18.451,8.191,17.569,0.886,18.599,14.647,20.12,17.819,14.58,1.349,9.017,6.795,30.109,20.831,3.38,20.824,10.774,0.887,12.18,19.867,22.938,2.426,12.729,17.719,17.199,15.998,16.437,1.828,5.03,13.697,7.905,32.97,14.664,10.788,8.032],[9.98,22.988,15.54,2.561,14.92,8.956,-4.282,5.285,7.993,0.311,9.256,20.406,24.611,15.103,5.874,3.982,9.955,18.969,13.393,-2.549,5.426,5.099,3.613,25.603,15.534,3.652,22.838,19.44,17.459,10.102,2.461,21.323,-2.296,17.859,12.968,-1.713,8.246,11.112,18.371,13.337,1.595,24.022,12.413,11.838,7.254,8.141,17.745,17.287,11.435,19.348,16.313,0.953,15.781,15.961,31.054,2.195,12.39,7.774,21.561,4.191,6.455,20.221,12.536,13.114,24.626,-0.307,8.335,3.031,7.074,15.34,23.829,6.683,10.094,4.074,-5.564,9.801,21.582,3.992,7.427,10.943,7.77,7.034,16.562,13.69,14.83,14.003,10.701,18.682,-3.047,1.279,23.562,21.255,15.556,4.084,14.805,27.431,5.493,11.057,2.57,17.05,6.978,20.789,13.211,10.64,-0.694,6.909,18.504,4.033,3.551,24.61,9.351,14.228,-2.923,18.299,18.994,4.613,3.01,1.404,21.221,5.901,22.222,18.045,4.193,24.279,11.619,-2.276,-1.068,21.12,-2.782,13.502,3.862,18.273,20.677,18.949,11.01,18.249,9.232,-3.34,14.6,12.23,22.791,8.487,12.257,18.329,10.532,25.608,10.755,6.82,6.65,3.285,15.112,13.315,15.83,12.394,10.52,7.21,12.155,17.756,7.908,17.686,0.3,19.298,14.84,20.117,17.725,14.189,1.478,8.536,7.105,30.001,21.45,3.639,20.435,11.145,1.163,11.826,20.03,22.962,2.276,12.185,17.678,17.364,15.596,16.189,1.624,4.691,13.554,7.691,32.83,14.776,10.829,8.09],[10.017,22.994,15.628,2.447,14.762,9.065,-4.079,5.165,7.902,0.135,9.126,20.639,24.744,15.144,6.083,4.38,9.938,18.898,13.208,-2.31,5.585,5.371,3.454,25.614,15.478,3.727,23.075,19.372,17.61,10.111,2.349,21.462,-2.323,17.77,13.105,-1.872,8.187,10.848,18.625,13.337,1.608,23.992,12.51,11.596,7.214,7.935,17.863,17.166,11.355,19.259,16.385,0.913,15.331,15.969,30.911,2.185,12.336,7.558,21.517,4.433,6.514,20.126,12.59,13.168,24.52,-0.413,7.752,2.743,6.862,15.226,24.172,6.691,9.943,3.572,-5.777,9.393,21.679,3.911,7.316,11.099,8.238,6.994,16.638,13.469,15.611,13.818,10.47,18.963,-3.117,1.444,23.272,21.807,15.686,4.37,14.572,27.454,5.696,11.159,2.264,17.123,6.961,20.687,12.866,10.167,-0.607,6.879,18.736,4.941,4.16,24.764,9.28,14.455,-2.743,18.277,18.845,4.819,2.793,1.323,21.255,6.671,22.024,18.256,4.105,24.722,11.785,-2.21,-0.634,21.403,-2.879,12.858,3.881,18.584,20.882,18.641,11.696,17.901,9.522,-3.444,14.691,12.346,22.702,8.826,12.433,18.768,9.943,25.371,10.957,6.673,6.218,3.194,15.225,13.119,15.851,13.067,9.901,7.655,12.44,18.408,7.612,17.716,0.309,19.372,14.738,20.054,17.257,13.621,1.226,8.847,7.407,29.791,20.982,3.438,20.779,10.822,1.542,11.506,20.145,23.028,2.016,12.556,17.476,17.419,15.223,16.311,1.962,4.597,13.234,7.384,32.714,14.555,11.042,7.316],[10.019,23.02,15.821,2.349,14.582,9.158,-3.999,4.972,7.756,0.069,8.965,20.81,24.835,15.154,6.42,4.715,9.87,18.834,13.02,-2.278,5.699,5.624,3.181,25.641,15.39,4.025,23.208,19.381,17.793,10.133,2.246,21.653,-2.461,18.072,13.086,-1.948,8.088,10.657,18.857,13.039,1.478,23.951,12.5,11.486,7.211,7.806,17.886,17.064,11.035,19.228,16.471,0.924,15.153,16.14,30.953,2.202,12.135,7.248,21.42,4.436,6.605,20.073,12.644,13.106,24.796,-0.606,7.181,2.021,7.062,15.086,24.057,6.506,10.102,3.251,-5.553,9.134,21.746,3.907,7.058,11.252,8.388,6.701,16.718,13.37,16.061,13.848,10.645,19.246,-2.735,1.67,23.533,22.065,16.044,4.529,14.555,27.464,5.345,10.647,2.069,16.988,6.634,20.613,12.941,9.902,-0.615,7.201,19.078,5.466,4.119,25.108,9.57,14.67,-1.947,18.117,18.853,4.915,2.957,1.417,21.29,7.062,22.66,18.394,4.481,24.706,11.954,-2.291,-1.334,21.825,-2.4,13.542,3.846,18.251,21.078,19.13,11.84,17.989,9.53,-3.646,14.61,12.527,22.685,8.64,11.965,18.955,9.82,25.577,10.357,6.733,6.103,3.253,14.949,13.147,15.374,13.274,9.607,7.289,11.985,18.586,7.632,17.199,0.614,19.083,14.562,19.792,17.59,13.576,1.062,8.915,6.919,29.988,20.883,3.671,20.915,10.678,1.664,12.084,20.274,22.75,2.046,13.013,17.558,17.211,15.381,16.211,2.255,5.344,13.588,8.14,32.701,14.724,10.699,7.517],[10.0,23.147,16.003,2.267,14.451,9.189,-3.906,4.92,7.528,0.178,8.826,20.905,24.949,15.134,6.56,4.9,9.774,18.772,13.024,-2.329,5.752,5.807,2.863,25.66,15.351,4.274,23.293,19.341,17.986,10.248,2.224,21.815,-2.54,18.319,13.094,-1.971,7.966,10.531,19.09,12.835,1.365,23.895,12.445,11.356,7.062,7.846,17.767,16.904,10.533,19.223,16.567,1.033,15.269,16.346,31.064,2.169,11.973,7.044,21.371,4.367,6.766,20.157,12.587,13.121,24.865,-0.689,7.2,2.056,7.044,15.437,24.145,6.479,9.903,3.713,-5.41,9.442,22.296,3.79,7.044,11.294,8.332,7.36,16.871,13.268,15.699,13.451,10.859,19.307,-2.708,1.303,24.122,21.978,15.931,4.745,14.715,27.613,5.131,10.957,2.053,16.939,6.978,20.509,12.805,10.079,-1.029,7.432,19.351,5.67,4.12,25.12,9.821,14.27,-1.145,17.983,19.283,5.336,2.998,1.356,21.068,6.321,22.842,18.273,4.211,24.783,11.793,-2.255,-2.021,22.101,-3.317,14.166,3.775,18.652,21.088,19.626,11.398,18.234,9.347,-3.614,14.391,12.129,22.819,8.252,12.047,19.128,10.057,25.467,10.056,6.476,6.244,3.237,14.647,12.819,15.134,12.467,9.601,7.429,11.34,18.551,7.724,17.283,0.798,19.174,14.79,19.715,17.95,13.799,1.163,8.23,6.924,30.237,20.993,3.91,20.646,10.954,1.324,12.479,20.527,22.481,2.053,12.685,17.515,17.486,15.302,16.387,2.142,5.238,13.392,8.479,32.874,15.088,10.69,7.282],[9.932,23.315,16.052,2.376,14.342,9.242,-3.796,4.931,7.305,0.261,8.955,20.876,25.107,15.161,6.664,4.907,9.848,18.627,13.189,-2.341,5.792,5.929,2.722,25.607,15.332,4.181,23.315,19.383,18.096,10.392,2.324,21.913,-2.684,18.539,13.3,-1.94,7.818,10.527,19.344,12.706,1.429,23.751,12.342,11.134,6.823,7.969,17.725,16.703,10.136,19.227,16.611,1.117,15.38,16.523,31.156,2.028,12.062,6.87,21.455,4.318,6.991,20.335,12.47,13.187,25.033,0.161,7.576,2.16,6.584,15.429,24.429,6.283,9.643,4.007,-5.606,9.27,22.733,3.612,7.103,11.543,8.202,7.38,16.978,13.083,15.128,13.329,10.827,19.25,-2.648,0.804,24.724,22.038,15.652,4.783,15.026,27.457,5.343,10.776,2.296,16.637,7.194,20.46,12.724,10.396,-1.312,7.45,19.19,5.228,4.604,24.805,9.63,13.685,-1.085,18.193,19.106,5.944,2.358,1.494,21.335,6.065,22.584,18.537,4.527,25.014,12.141,-2.205,-1.662,22.377,-3.638,14.019,3.242,19.022,20.886,19.018,10.68,18.244,8.707,-3.545,14.243,11.219,22.745,8.115,11.857,19.014,9.441,25.433,9.83,6.181,6.317,2.97,14.486,12.551,15.87,12.552,9.357,7.608,11.759,18.328,7.346,17.326,0.244,19.311,15.174,19.839,18.229,13.782,1.543,7.964,7.19,30.266,21.22,3.821,20.412,10.754,0.851,12.393,20.276,22.558,1.917,12.243,17.416,17.701,15.152,16.582,1.88,4.548,13.193,8.276,33.019,14.942,10.466,7.195],[9.868,23.427,15.949,2.589,14.261,9.266,-3.732,4.915,7.195,0.3,8.955,20.825,25.35,15.203,6.606,4.795,10.062,18.588,13.346,-2.245,5.889,6.173,2.682,25.421,15.133,4.131,23.368,19.609,17.923,10.623,2.399,22.018,-2.799,18.638,13.499,-1.841,7.514,10.474,19.507,12.658,1.469,23.642,12.313,10.921,6.693,7.823,17.854,16.666,9.907,19.177,16.567,1.158,15.313,16.589,31.195,1.742,12.137,6.783,21.607,4.24,7.198,20.48,12.373,13.234,25.221,0.109,7.246,2.133,6.785,15.239,24.623,5.716,10.106,3.929,-5.518,9.284,22.259,3.329,6.994,11.44,8.474,7.255,17.021,12.905,15.434,13.709,10.786,18.977,-2.593,1.277,24.47,21.822,15.471,4.721,15.097,27.089,5.503,11.007,2.515,16.474,7.11,20.37,13.186,10.446,-1.053,7.418,19.222,4.689,3.931,24.148,9.558,13.666,-1.391,18.094,19.063,6.324,2.659,1.911,21.462,6.181,22.414,18.624,4.121,24.659,12.024,-1.985,-1.159,22.488,-2.719,13.277,2.676,18.803,20.855,18.739,10.648,18.437,7.952,-3.458,14.795,11.586,22.61,8.149,11.928,19.441,9.663,24.949,8.918,6.075,6.392,2.9,14.619,12.592,15.78,12.57,8.991,6.841,11.66,18.012,7.456,17.185,-0.075,19.254,15.541,19.851,18.282,13.77,1.855,8.203,7.851,30.261,21.556,3.683,20.527,10.537,0.367,11.98,20.21,22.973,2.249,12.338,17.502,17.686,15.258,16.823,1.441,5.101,13.49,8.108,33.003,14.701,10.523,7.0],[9.836,23.256,15.849,2.8,14.34,9.315,-3.657,4.819,7.206,0.347,8.894,20.737,25.345,15.144,6.596,4.583,10.262,18.685,13.282,-1.949,5.922,6.329,2.777,25.167,14.889,3.835,23.433,19.89,17.687,10.825,2.406,22.078,-2.76,18.519,13.446,-1.746,7.071,10.425,19.637,12.785,1.511,23.562,12.39,10.817,6.658,7.597,17.904,16.705,9.674,19.047,16.648,1.139,15.16,16.588,31.206,1.463,12.274,6.743,21.8,4.281,7.331,20.574,12.376,13.238,24.993,-0.405,6.778,2.501,6.947,15.014,25.033,5.678,10.056,3.791,-5.196,9.029,22.38,3.245,7.094,11.593,8.605,7.204,16.376,12.999,16.084,13.574,10.77,18.953,-2.375,1.823,24.096,21.455,15.95,4.657,15.059,26.987,5.53,11.537,2.446,16.586,7.042,20.315,13.05,10.483,-0.47,7.987,19.14,4.698,4.513,23.985,10.154,13.839,-1.813,17.74,19.618,6.498,3.086,2.475,21.722,6.628,22.779,17.931,3.98,24.861,12.113,-1.756,-1.482,22.686,-2.68,13.542,2.132,18.745,21.052,19.129,11.433,18.259,8.265,-3.511,14.965,12.044,22.554,7.982,11.688,19.845,9.943,25.112,8.739,5.613,6.122,2.978,14.439,12.872,15.021,13.016,9.543,6.68,11.409,18.651,7.577,17.178,0.036,19.302,15.078,19.482,18.448,13.587,1.584,7.963,7.592,30.206,21.231,3.673,21.139,10.708,-0.202,11.753,20.43,23.358,2.039,12.356,17.28,17.73,15.113,16.336,1.451,5.536,13.396,8.265,32.968,14.829,10.937,7.144],[10.032,23.024,15.784,3.063,14.472,9.241,-3.511,4.642,7.352,0.334,8.832,20.612,25.11,14.995,6.711,4.311,10.465,18.698,12.996,-1.779,5.823,6.401,3.022,25.119,14.795,3.574,23.603,20.103,17.661,11.013,2.363,22.041,-2.867,18.348,13.286,-1.694,6.718,10.441,19.704,12.918,1.577,23.581,12.606,10.751,6.706,7.524,17.962,16.724,9.576,18.858,16.805,1.262,14.986,16.459,31.161,1.214,12.392,6.586,22.04,4.261,7.359,20.705,12.372,13.333,24.704,-0.001,6.999,2.452,6.975,14.95,24.572,5.803,9.65,4.279,-5.313,9.291,22.273,3.597,6.989,11.785,8.48,7.706,16.39,13.132,15.597,13.722,10.926,18.818,-2.377,1.772,24.218,21.648,16.142,4.94,14.756,26.929,5.304,11.106,2.225,16.539,7.096,20.548,12.702,10.629,0.088,8.124,19.179,5.056,4.565,24.312,10.673,13.666,-1.651,18.115,19.595,6.633,3.144,2.42,22.011,6.964,22.811,17.555,4.007,25.042,12.729,-1.795,-1.285,23.149,-3.318,13.884,1.762,18.723,20.844,19.602,11.719,18.329,8.064,-3.476,14.54,11.797,22.611,7.695,11.563,19.802,9.745,25.217,9.096,5.285,5.746,2.999,14.831,13.009,15.037,13.394,9.082,7.408,11.251,18.985,7.082,17.2,0.382,19.254,14.888,19.114,18.322,13.478,1.277,7.595,7.458,30.018,21.196,4.134,21.852,10.599,-0.508,12.262,20.825,23.416,1.094,12.484,17.096,17.737,14.648,16.355,1.774,5.61,13.495,8.564,32.897,15.077,10.772,7.442],[10.234,22.822,15.665,3.332,14.406,8.989,-3.458,4.551,7.643,0.38,8.748,20.517,24.793,14.993,6.945,4.048,10.611,18.692,12.949,-1.729,5.804,6.338,3.221,25.271,14.801,3.599,23.637,20.131,17.71,11.268,2.268,22.004,-3.198,18.308,13.136,-1.635,6.499,10.527,19.688,13.099,1.577,23.665,12.771,10.653,6.858,7.518,18.098,16.708,9.614,18.804,16.783,1.61,14.788,16.44,31.107,1.048,12.414,6.437,22.203,4.268,7.394,20.973,12.285,13.568,24.512,0.084,7.21,2.449,6.571,14.945,24.34,5.542,9.99,4.528,-5.241,9.253,21.934,3.278,6.849,12.049,8.188,7.497,16.593,13.082,14.98,13.756,10.309,18.916,-2.619,1.122,24.531,21.785,15.614,5.013,14.454,26.899,5.012,11.225,1.981,16.248,6.936,20.476,12.515,11.169,0.152,7.828,19.114,5.119,4.059,24.015,10.398,13.385,-1.638,18.414,19.228,6.989,3.379,1.917,22.015,7.011,22.931,18.133,3.59,24.801,12.459,-2.197,-1.555,22.856,-3.051,13.749,1.845,18.415,20.949,19.313,10.864,18.324,7.694,-3.176,14.566,11.931,22.971,8.036,11.7,19.782,9.592,25.574,9.215,4.892,6.012,3.179,14.974,12.853,15.981,12.717,8.29,7.771,11.606,18.563,7.414,17.454,0.459,19.211,14.851,19.536,18.376,13.52,1.478,7.924,7.418,29.975,21.574,3.461,21.893,10.472,-0.506,12.808,21.325,23.73,0.687,12.573,16.989,17.562,14.535,16.934,1.942,5.294,13.504,8.713,32.787,15.439,10.732,6.54],[10.391,22.673,15.499,3.511,14.173,8.54,-3.455,4.453,7.794,0.395,8.67,20.517,24.592,15.084,6.985,3.847,10.755,18.715,12.994,-1.772,5.888,6.194,3.353,25.223,14.83,3.612,23.548,20.092,17.845,11.387,2.058,21.906,-3.567,18.282,13.053,-1.605,6.367,10.477,19.52,13.277,1.576,23.884,12.808,10.702,7.21,7.787,18.291,16.877,9.631,18.911,16.757,1.925,14.704,16.498,31.14,1.039,12.42,6.396,22.368,4.067,7.274,21.349,12.184,13.858,24.407,-0.487,7.521,3.429,7.201,15.392,24.225,5.72,10.403,4.027,-5.248,8.703,21.718,3.181,6.934,11.893,8.166,7.317,16.338,12.858,14.925,13.585,10.256,18.723,-2.786,1.156,24.4,21.53,15.432,5.218,14.407,26.985,4.711,11.573,2.369,15.833,6.784,20.509,12.83,10.992,-0.217,7.561,18.702,4.779,4.351,24.052,10.037,13.222,-1.533,18.525,19.607,6.809,3.277,1.854,21.937,6.823,23.146,18.297,3.789,25.188,11.997,-2.394,-2.167,22.409,-3.185,12.976,1.94,18.537,20.746,18.945,10.614,18.181,7.143,-3.11,14.396,11.861,23.211,8.476,11.34,19.937,9.504,25.446,9.551,4.522,6.136,3.276,15.013,13.225,15.975,13.011,8.612,7.195,11.808,18.45,7.701,17.255,0.36,19.791,15.226,19.35,18.34,13.35,2.147,7.908,7.413,29.862,22.056,3.226,21.05,10.802,-0.626,12.517,21.326,23.759,0.951,12.113,17.14,17.593,14.242,16.771,2.168,4.965,13.405,8.921,32.846,15.446,10.78,6.593],[10.471,22.564,15.308,3.639,13.947,8.27,-3.54,4.452,7.903,0.28,8.579,20.475,24.527,15.227,6.896,3.738,10.833,18.827,13.024,-1.925,5.8,6.039,3.504,25.112,14.881,3.7,23.663,20.095,17.835,11.44,1.841,21.849,-3.916,18.28,12.861,-1.691,6.263,10.328,19.318,13.372,1.719,24.097,12.809,10.836,7.524,8.059,18.504,17.034,9.732,18.916,16.636,2.107,14.737,16.608,31.14,1.172,12.415,6.503,22.48,3.742,7.13,21.643,12.156,14.027,24.193,-0.399,7.506,3.213,7.562,14.748,24.127,5.631,10.56,4.455,-5.31,8.21,21.613,3.398,6.927,12.219,7.81,7.276,16.226,12.656,15.157,13.901,10.023,18.611,-2.462,1.514,23.722,21.253,15.607,4.968,14.642,26.827,4.716,11.561,2.434,15.735,7.046,20.577,12.707,10.95,-0.243,7.742,19.153,4.467,4.097,24.274,9.793,13.09,-1.365,18.342,19.868,6.356,3.638,1.49,21.887,6.912,22.668,18.098,3.88,25.204,11.303,-1.738,-2.154,22.763,-3.783,12.93,1.603,18.576,20.844,19.449,11.127,17.682,6.344,-3.381,14.405,11.934,23.129,8.708,11.358,19.607,9.15,25.572,10.053,4.471,6.596,3.109,15.151,13.783,15.415,13.722,8.654,7.197,11.547,19.053,8.128,17.484,0.65,19.87,15.583,18.863,18.29,12.991,2.801,7.731,7.47,30.146,22.066,3.433,20.601,10.604,-0.757,12.686,21.086,23.641,1.254,11.683,17.34,17.53,14.454,16.431,2.644,4.753,13.488,8.535,32.887,15.638,10.883,6.794],[10.647,22.538,15.194,3.746,13.924,8.148,-3.622,4.589,7.938,0.151,8.414,20.432,24.557,15.354,6.624,3.849,10.806,18.948,13.103,-1.98,5.705,5.908,3.755,25.095,14.809,3.91,23.766,20.13,17.755,11.383,1.624,22.018,-4.144,18.378,12.665,-1.732,6.157,10.167,19.042,13.382,1.931,24.205,12.95,10.901,7.836,8.19,18.601,17.113,9.864,18.781,16.425,2.217,14.762,16.811,31.186,1.305,12.499,6.611,22.426,3.467,6.969,21.884,12.03,14.225,24.043,-0.228,7.392,2.908,7.048,15.39,23.749,5.382,10.166,4.712,-5.383,8.163,21.151,3.223,6.689,12.531,7.55,7.353,15.958,12.697,15.402,13.463,9.886,18.585,-2.463,1.473,23.284,21.171,15.553,4.886,14.765,26.869,4.368,11.458,2.532,15.668,6.924,20.68,12.593,11.426,-0.416,7.654,19.419,3.641,3.479,24.158,10.509,13.0,-1.53,18.364,19.541,6.106,4.188,1.082,22.018,6.463,22.854,17.984,3.592,25.348,11.577,-1.754,-2.37,23.048,-4.318,13.052,1.336,18.408,21.043,19.614,11.087,17.333,5.607,-3.591,14.088,12.368,23.305,8.586,11.453,19.337,9.245,25.887,9.491,4.516,6.48,3.345,15.283,13.644,15.249,13.026,8.749,7.847,12.137,19.025,8.224,17.271,0.605,19.93,15.208,19.237,17.897,13.289,2.663,8.3,7.405,30.247,22.09,2.713,20.617,10.469,-0.303,13.188,21.239,23.705,1.195,12.18,17.032,17.535,14.892,16.588,3.186,4.388,13.558,8.08,32.968,16.073,10.984,6.919],[10.744,22.488,15.266,3.814,14.151,8.133,-3.621,4.675,7.775,0.217,8.144,20.447,24.46,15.612,6.288,3.775,10.853,18.995,13.277,-1.81,5.497,5.828,4.06,25.202,14.683,3.989,23.879,20.202,17.628,11.593,1.269,22.267,-4.182,18.328,12.358,-1.721,6.111,10.017,18.704,13.496,2.055,24.263,13.061,11.038,8.141,8.224,18.627,16.972,9.885,18.623,16.237,2.228,14.914,16.95,31.412,1.324,12.484,6.737,22.232,3.148,6.774,22.116,11.903,14.385,24.027,-0.646,7.077,2.991,7.004,15.246,24.036,5.897,9.983,4.525,-5.44,8.691,21.079,3.342,6.515,12.513,7.265,7.444,16.273,12.699,14.999,13.608,9.822,18.634,-2.945,1.233,23.823,21.437,15.479,4.547,14.779,27.034,4.706,11.48,2.927,15.451,6.353,20.752,12.424,10.857,-0.712,7.377,19.455,3.112,3.54,23.975,10.102,12.986,-1.314,18.931,19.399,6.209,4.336,1.776,22.026,6.749,23.256,17.853,4.118,25.044,11.841,-2.367,-2.404,22.965,-4.947,13.134,1.344,18.56,21.041,19.234,10.581,16.975,5.399,-3.39,13.815,12.545,23.658,8.746,10.759,19.165,9.266,26.018,9.72,4.739,6.607,3.753,15.195,13.572,15.275,13.324,8.701,8.379,12.008,19.129,8.194,17.501,0.796,19.904,15.274,19.198,17.517,13.248,2.09,8.33,7.039,29.984,22.26,2.497,20.968,10.406,-0.316,13.122,21.139,23.889,1.12,12.617,16.793,18.147,14.548,16.502,3.352,4.078,13.566,8.025,32.928,15.998,10.732,6.838],[10.723,22.383,15.481,3.81,14.37,8.109,-3.558,4.797,7.449,0.46,8.061,20.577,24.409,15.705,6.034,3.422,10.783,18.992,13.437,-1.65,5.355,5.919,4.21,25.354,14.466,3.919,23.957,20.25,17.504,11.692,1.009,22.296,-4.175,18.254,11.93,-1.777,6.222,9.884,18.45,13.572,2.225,24.209,13.117,10.975,8.33,8.344,18.79,16.719,9.907,18.615,16.093,2.107,15.012,17.108,31.595,1.213,12.408,6.774,22.067,2.986,6.611,22.319,11.849,14.357,23.806,-0.386,7.529,3.295,6.42,15.366,24.428,6.135,10.096,4.366,-5.42,8.623,21.207,3.458,6.256,12.42,7.515,7.61,16.548,13.045,14.42,13.829,9.586,18.73,-2.814,1.382,24.278,21.494,16.028,4.658,14.97,27.119,4.597,11.882,3.05,15.747,6.406,20.753,12.844,11.158,-0.119,7.251,18.725,3.388,4.153,24.335,10.565,12.674,-0.688,18.857,19.772,6.764,3.925,1.503,22.13,6.477,22.907,17.928,4.105,25.143,11.941,-2.298,-2.633,23.239,-4.442,12.497,0.873,18.667,21.179,18.924,10.556,17.116,5.776,-3.245,13.293,12.435,23.933,9.265,11.209,19.097,8.817,26.13,9.727,4.672,6.687,3.849,15.26,13.865,15.347,13.943,8.906,8.785,11.995,18.675,8.513,17.69,1.222,19.933,15.676,18.738,17.181,13.269,2.018,8.162,6.954,30.108,22.333,1.896,21.781,10.624,-0.563,12.934,20.616,23.582,1.23,12.1,16.853,18.506,14.542,16.439,2.962,3.879,13.392,8.096,32.976,15.874,10.768,6.628],[10.607,22.25,15.616,3.733,14.355,8.072,-3.485,4.937,7.175,0.818,8.028,20.815,24.449,15.65,5.973,3.113,10.805,18.943,13.44,-1.426,5.442,6.139,4.141,25.559,14.303,3.758,23.952,20.359,17.473,11.738,0.68,22.222,-4.11,18.366,11.553,-1.758,6.406,9.868,18.393,13.456,2.459,24.042,13.284,10.885,8.564,8.661,18.889,16.547,9.961,18.779,15.837,1.904,15.045,17.27,31.626,1.015,12.389,6.785,21.895,2.878,6.488,22.52,11.84,14.212,23.858,-0.392,7.264,3.153,6.093,15.21,24.572,5.584,10.245,4.413,-5.288,8.026,21.016,3.397,6.365,12.283,7.344,7.59,16.789,13.221,14.49,14.097,9.766,18.968,-2.385,1.33,24.247,21.536,16.235,5.043,14.705,27.275,4.238,11.329,2.992,15.225,6.471,20.827,13.275,11.132,0.244,7.566,18.572,3.753,4.349,24.541,10.556,12.531,-1.091,18.665,19.862,7.136,4.003,1.065,22.213,6.102,22.782,17.955,4.15,25.233,12.745,-1.984,-2.465,22.803,-3.651,12.209,0.523,18.679,21.243,19.164,9.842,17.842,6.201,-3.593,13.002,12.484,23.566,8.785,11.754,19.12,8.723,25.895,9.772,4.671,6.905,3.972,15.371,13.636,15.231,13.482,8.953,8.503,12.058,18.687,8.473,17.755,1.322,20.374,15.817,18.833,17.204,13.685,2.003,8.356,7.134,30.272,22.661,2.22,22.582,10.635,-0.819,12.82,20.6,23.259,1.363,11.47,17.3,18.415,14.855,16.279,2.458,3.897,13.376,7.971,33.219,15.818,10.62,6.942],[10.428,22.129,15.642,3.514,14.399,8.135,-3.458,5.014,6.952,0.82,7.938,21.116,24.517,15.623,6.036,3.135,10.738,18.94,13.186,-1.388,5.462,6.44,4.302,25.814,14.211,3.744,23.978,20.46,17.583,11.809,0.274,22.184,-3.984,18.644,11.39,-1.819,6.52,9.675,18.539,13.325,2.625,23.922,13.311,10.99,8.59,8.811,18.918,16.651,9.937,18.917,15.523,1.642,15.151,17.432,31.513,0.888,12.248,6.899,21.673,2.875,6.525,22.843,11.797,13.977,23.864,-0.187,6.397,3.307,6.594,15.125,24.121,5.405,10.162,4.488,-5.179,7.578,20.861,3.45,6.251,12.251,7.081,7.633,16.853,13.05,15.187,13.654,9.896,19.264,-2.65,1.278,24.307,21.628,15.953,4.78,14.704,27.495,3.909,10.995,3.022,14.879,6.638,20.719,12.681,11.209,0.235,7.856,19.15,3.416,3.613,24.408,10.393,12.426,-1.132,18.636,19.558,6.963,4.417,1.137,22.171,6.361,22.863,17.955,4.101,24.948,13.265,-1.847,-2.389,23.008,-3.402,12.04,0.709,18.47,20.903,19.494,9.901,17.918,6.902,-3.552,12.936,12.909,23.26,9.023,10.846,19.213,8.558,25.55,10.407,4.824,7.251,4.367,14.973,13.511,14.913,13.818,8.916,8.285,11.967,19.367,8.893,17.03,1.305,20.082,15.717,19.357,17.08,13.872,2.083,8.443,6.903,30.819,22.926,2.051,22.478,10.545,-0.9,12.921,20.861,23.287,1.213,11.801,17.338,18.315,15.026,16.112,2.498,4.173,13.511,7.828,33.404,15.649,10.687,6.939],[10.403,22.166,15.645,3.344,14.438,8.255,-3.367,5.04,6.775,0.568,7.737,21.305,24.502,15.61,6.179,3.207,10.554,18.883,12.778,-1.49,5.355,6.595,4.639,25.929,14.143,3.694,23.966,20.405,17.824,11.885,0.051,22.256,-3.871,18.791,11.325,-1.789,6.584,9.483,18.725,13.256,2.72,23.902,13.3,10.99,8.496,8.904,18.893,16.704,9.914,18.846,15.322,1.507,15.241,17.49,31.431,0.972,12.1,7.028,21.504,2.897,6.587,23.152,11.788,13.921,23.676,-0.314,6.824,3.133,6.34,15.194,24.091,5.83,9.691,3.971,-5.262,7.708,20.936,3.517,6.181,12.176,7.15,7.517,16.768,13.398,15.448,13.414,10.047,19.475,-2.759,1.582,24.5,21.798,16.661,4.841,14.608,27.66,4.361,11.184,3.333,15.245,6.729,20.504,12.178,10.906,0.088,8.066,19.447,2.821,3.306,24.884,10.939,12.321,-0.887,19.195,19.657,6.545,4.256,0.75,22.118,6.231,22.627,17.951,4.201,25.284,12.705,-1.908,-2.545,22.675,-3.413,12.192,0.733,18.803,20.977,19.772,10.016,17.212,7.728,-3.532,12.593,13.035,23.611,9.09,10.525,19.549,8.344,25.684,10.345,5.15,7.114,4.29,15.058,13.315,15.348,13.721,8.494,8.34,11.849,19.891,8.888,16.863,1.806,19.966,16.086,19.522,16.539,13.96,2.32,8.576,6.718,31.628,23.391,1.887,22.04,10.615,-0.65,12.6,20.591,22.989,0.53,12.16,17.282,18.491,15.001,15.709,2.764,4.117,12.981,8.115,33.206,15.74,10.398,6.949],[10.51,22.377,15.599,3.15,14.49,8.292,-3.234,5.163,6.769,0.39,7.544,21.313,24.486,15.644,6.297,3.236,10.36,18.89,12.492,-1.523,5.092,6.533,4.773,25.984,14.153,3.595,24.012,20.302,17.993,11.991,-0.07,22.334,-3.806,18.845,11.213,-1.7,6.672,9.375,18.875,13.289,2.732,24.04,13.418,10.954,8.394,9.118,18.848,16.865,9.828,18.711,15.178,1.57,15.242,17.46,31.452,1.061,11.881,7.22,21.245,2.818,6.628,23.387,11.837,14.0,23.969,-0.348,6.997,2.497,5.76,15.072,24.698,5.672,9.791,3.993,-5.051,7.819,21.039,3.506,5.858,12.095,7.748,7.785,16.351,13.341,14.903,14.025,10.152,19.522,-2.513,1.227,24.043,22.121,15.987,5.229,14.072,27.705,4.843,11.001,3.311,15.056,6.236,20.602,12.398,10.704,-0.017,8.157,19.526,2.775,3.871,25.203,11.103,12.337,-0.866,18.902,20.015,6.29,4.488,0.507,22.1,5.914,22.469,18.324,4.002,25.184,12.354,-1.979,-2.337,22.745,-3.593,12.053,0.219,19.058,21.344,19.643,9.562,17.144,8.265,-3.288,12.385,12.235,23.754,8.576,11.459,19.349,8.54,25.594,9.76,5.438,7.374,4.358,15.082,13.502,15.724,13.096,8.343,8.034,11.579,19.289,8.922,16.856,1.783,20.203,16.082,19.0,16.653,13.769,2.237,8.443,7.154,31.92,23.761,2.263,22.173,10.826,-0.742,12.561,20.641,22.728,0.947,12.158,17.415,18.812,14.969,15.756,2.918,3.991,12.647,8.082,33.128,15.505,10.039,7.223],[10.604,22.637,15.302,2.892,14.561,8.215,-3.118,5.248,6.822,0.211,7.443,21.221,24.64,15.519,6.465,3.28,10.252,18.933,12.585,-1.242,4.862,6.376,4.843,26.086,14.151,3.546,24.129,20.391,17.895,11.978,-0.066,22.459,-3.806,18.874,11.197,-1.537,6.765,9.262,18.929,13.385,2.607,24.057,13.419,11.095,8.209,9.279,18.689,17.009,9.598,18.699,15.154,1.593,15.238,17.307,31.521,1.124,11.651,7.351,20.928,2.867,6.742,23.512,12.041,13.986,24.203,-0.367,6.831,2.593,5.341,15.488,24.545,5.757,10.065,3.601,-4.904,7.577,21.329,3.641,5.833,12.389,7.637,7.855,16.738,13.078,14.703,13.958,9.679,19.398,-2.272,1.218,23.651,22.021,15.48,5.023,13.715,27.834,4.856,10.743,3.482,14.81,5.981,20.734,12.347,11.178,-0.115,8.068,19.543,2.693,4.559,24.792,10.874,12.39,-1.288,18.298,19.835,6.193,4.473,0.381,22.182,5.903,22.669,18.467,4.244,24.621,12.931,-1.761,-1.976,23.068,-3.806,11.257,0.238,18.955,21.181,19.119,9.047,17.226,8.503,-3.367,12.612,12.084,23.812,8.372,11.321,19.259,8.197,25.73,10.145,6.057,7.616,4.366,15.132,13.695,16.116,13.659,8.265,7.676,12.197,18.552,9.036,17.509,1.814,20.036,16.009,18.902,16.708,13.653,2.169,8.499,7.162,31.643,23.561,2.025,22.535,11.137,-0.636,12.769,20.51,22.494,1.329,11.976,17.196,19.025,15.053,15.877,3.01,3.23,12.927,7.7,33.185,15.606,10.081,7.041],[10.72,22.785,14.949,2.609,14.456,7.951,-3.132,5.415,6.735,0.102,7.438,21.061,24.847,15.429,6.65,3.278,10.393,18.919,12.623,-0.901,4.846,6.24,4.915,26.192,14.124,3.687,24.063,20.631,17.831,11.93,-0.033,22.528,-3.79,18.761,11.135,-1.361,6.873,9.044,18.869,13.498,2.507,23.969,13.421,11.407,7.824,9.262,18.357,17.148,9.435,18.818,15.272,1.502,15.293,17.117,31.529,1.24,11.644,7.304,20.683,2.876,6.706,23.52,12.374,13.975,24.532,-0.444,7.205,2.862,5.311,14.921,24.89,6.051,9.889,3.478,-5.007,7.491,21.609,3.598,5.787,12.598,7.211,7.58,16.446,13.197,14.458,13.719,9.743,19.347,-2.143,1.264,23.745,21.688,16.431,4.813,13.977,27.717,3.983,10.85,3.529,14.925,5.784,20.815,12.601,10.739,-0.0,8.052,19.351,3.073,4.371,24.738,10.938,12.321,-1.208,18.362,19.533,6.577,4.324,0.818,22.31,5.961,22.531,18.036,4.275,25.025,13.329,-1.552,-2.261,23.11,-3.626,11.708,0.605,18.845,21.087,18.884,9.21,17.513,8.716,-3.037,12.736,12.874,23.382,8.633,10.827,19.831,8.091,25.675,9.953,6.667,7.868,4.359,15.306,13.426,16.075,13.732,8.096,8.238,12.205,18.802,9.015,18.029,1.721,19.928,16.136,19.23,16.667,13.708,1.847,8.882,7.063,31.263,23.298,1.65,22.888,11.039,-0.501,12.635,20.057,22.093,1.175,12.13,17.162,18.814,14.866,15.594,2.919,3.217,12.774,7.967,33.426,15.755,10.071,7.332],[10.809,22.822,14.553,2.448,14.367,7.701,-3.245,5.589,6.634,0.177,7.571,20.859,25.1,15.547,6.779,3.073,10.56,18.852,12.63,-0.722,4.889,6.244,4.884,26.242,14.084,3.839,23.998,20.821,17.794,11.815,0.06,22.417,-3.787,18.515,11.153,-1.117,7.027,8.908,18.964,13.592,2.466,23.801,13.392,11.599,7.559,9.079,18.174,17.35,9.423,19.003,15.337,1.375,15.292,16.89,31.637,1.321,11.677,7.265,20.399,2.852,6.644,23.448,12.709,13.866,24.309,-0.041,6.745,2.15,5.303,14.522,24.438,6.151,9.743,3.708,-5.079,7.6,21.69,3.956,5.851,12.518,7.285,6.881,15.761,13.278,14.537,13.554,9.515,19.004,-2.275,0.814,24.408,21.804,16.288,4.961,14.463,27.868,4.068,11.226,3.786,15.047,5.959,20.745,12.584,11.289,0.343,7.737,19.453,3.779,4.156,25.184,11.351,12.24,-0.679,18.545,19.707,6.989,4.488,1.104,22.582,6.046,22.611,17.898,4.656,25.253,13.232,-1.7,-2.299,23.414,-3.438,12.095,0.455,18.676,21.385,18.843,9.208,17.926,8.533,-2.627,12.359,13.669,23.767,8.054,11.115,19.759,8.216,25.307,9.236,7.138,7.576,4.343,15.344,13.384,15.928,13.67,7.835,7.914,12.287,18.832,9.136,17.569,1.466,19.471,16.201,19.393,16.985,13.72,1.932,8.854,7.233,30.79,23.756,1.802,22.61,11.441,-0.333,12.502,20.086,21.44,1.655,12.704,17.621,18.814,14.831,15.595,2.23,3.821,12.712,8.033,33.483,15.396,9.992,7.35],[10.873,22.801,14.415,2.398,14.466,7.586,-3.373,5.692,6.455,0.377,7.693,20.722,25.321,15.627,6.766,2.974,10.758,18.688,12.683,-0.662,5.031,6.319,4.843,26.238,14.04,4.049,24.061,20.775,17.737,11.738,0.21,22.252,-3.8,18.272,11.252,-0.888,7.124,8.884,19.257,13.666,2.423,23.73,13.463,11.563,7.31,8.929,18.193,17.527,9.382,19.241,15.363,1.379,15.137,16.739,31.791,1.487,11.611,7.254,20.038,2.947,6.65,23.363,13.084,13.539,24.034,0.011,6.75,1.975,4.986,15.165,24.729,6.105,9.873,3.331,-5.207,7.415,21.84,4.163,6.418,12.531,7.403,7.146,15.424,13.325,14.264,13.525,9.198,19.11,-2.622,1.113,24.86,21.381,16.053,4.968,14.502,28.137,4.143,11.376,3.544,14.763,5.89,20.527,12.481,11.435,0.331,7.711,19.64,3.728,4.147,25.398,11.034,12.262,-0.398,18.499,19.843,7.003,4.301,0.611,22.571,6.203,22.496,18.032,4.845,25.02,12.803,-1.758,-2.044,23.247,-3.569,11.33,0.045,18.808,21.774,18.536,8.476,18.193,8.787,-2.431,12.759,13.702,24.084,7.681,11.682,19.793,8.257,25.198,10.297,7.428,7.387,4.227,15.441,13.831,15.972,13.539,8.089,7.465,12.478,18.318,8.793,17.437,1.539,19.078,15.844,19.277,16.876,13.603,2.458,8.734,7.186,30.458,24.253,1.817,22.163,11.66,0.09,12.425,20.072,20.335,1.725,13.067,17.744,18.472,15.3,15.735,1.295,4.128,12.33,7.858,33.441,15.183,9.719,6.702],[11.157,22.751,14.366,2.255,14.674,7.503,-3.565,5.755,6.289,0.571,7.715,20.716,25.482,15.575,6.754,2.972,10.906,18.556,12.683,-0.765,5.172,6.398,4.682,26.135,13.968,4.301,24.174,20.553,17.712,11.583,0.19,22.183,-3.795,18.137,11.336,-0.873,7.256,8.837,19.56,13.751,2.397,23.797,13.564,11.472,7.126,8.902,18.112,17.6,9.469,19.392,15.47,1.509,14.999,16.563,31.732,1.696,11.496,7.166,19.685,3.088,6.633,23.328,13.413,13.235,24.608,0.405,6.832,2.451,4.863,15.443,25.471,5.934,9.917,3.554,-5.503,7.388,21.914,4.1,6.157,12.712,7.388,7.852,15.751,13.458,13.966,13.714,9.366,18.808,-2.542,1.361,25.04,21.46,16.285,5.088,14.301,28.051,4.445,11.54,3.199,14.646,6.349,20.372,12.535,11.294,-0.034,7.882,19.202,3.509,4.06,25.376,10.626,12.2,-0.323,18.176,19.585,7.15,4.079,1.232,22.243,6.108,22.393,18.08,4.716,24.52,12.69,-1.423,-2.58,22.921,-3.642,11.448,-0.168,18.923,21.53,18.292,8.113,18.474,8.947,-2.424,13.046,13.385,23.593,7.856,11.31,20.054,8.151,25.463,10.498,7.148,7.744,4.275,15.631,13.695,16.593,13.635,8.516,7.671,12.205,18.671,8.188,17.745,1.388,19.677,15.471,19.442,17.021,13.8,2.149,8.876,7.203,30.74,24.53,2.194,22.01,11.954,0.2,12.153,19.77,18.815,1.885,13.044,17.85,18.258,14.767,15.591,0.83,4.032,12.14,7.834,33.532,14.94,9.713,7.286],[11.667,22.78,14.29,2.146,14.832,7.576,-3.784,5.751,6.31,0.761,7.638,20.665,25.618,15.6,6.897,3.154,10.844,18.524,12.624,-0.988,5.349,6.482,4.503,26.072,13.852,4.36,24.221,20.224,17.614,11.353,0.135,22.246,-3.766,18.141,11.357,-0.952,7.452,8.772,19.828,13.751,2.365,23.767,13.696,11.342,7.224,8.898,18.149,17.786,9.657,19.433,15.675,1.561,14.79,16.386,31.578,1.842,11.456,7.185,19.367,3.379,6.692,23.34,13.643,13.079,24.373,0.074,6.371,2.49,5.045,14.687,24.907,5.979,10.36,3.404,-5.607,7.501,21.836,3.952,6.286,12.71,6.717,8.149,16.135,13.824,14.137,13.685,9.256,19.282,-2.535,1.467,25.303,21.419,16.084,5.476,14.088,27.776,4.104,11.39,3.005,15.037,6.486,20.419,12.842,11.953,-0.193,8.184,19.214,3.218,4.661,24.706,10.629,11.989,-0.674,18.033,19.742,6.894,3.766,1.307,22.006,6.07,22.485,17.925,4.774,24.779,12.779,-1.106,-2.266,22.905,-3.697,12.165,-0.2,18.902,20.937,18.341,8.032,18.419,8.944,-2.732,12.762,12.982,23.76,7.947,11.18,20.3,7.942,25.494,9.641,6.769,7.502,4.209,15.511,13.366,16.564,13.068,8.465,7.602,12.435,19.104,8.346,17.817,1.221,19.382,15.077,19.872,17.022,13.914,1.748,8.831,7.184,31.189,24.511,1.894,21.975,12.248,0.321,11.828,19.323,17.589,2.148,13.395,17.73,17.931,14.788,15.725,0.533,3.937,12.334,7.963,33.376,14.712,9.644,7.268],[12.211,22.798,14.266,2.04,14.822,7.712,-3.923,5.804,6.496,0.823,7.678,20.673,25.657,15.546,7.082,3.351,10.779,18.606,12.544,-1.259,5.495,6.551,4.325,25.817,13.684,4.308,24.124,19.966,17.511,11.229,0.015,22.219,-3.58,18.293,11.489,-0.971,7.559,8.681,19.992,13.614,2.304,23.713,13.693,11.446,7.442,8.858,18.143,17.871,9.57,19.39,15.879,1.337,14.605,16.131,31.481,1.802,11.502,7.131,19.08,3.514,6.813,23.31,13.856,12.977,24.215,0.066,6.799,1.873,4.944,14.926,24.947,6.282,10.88,3.133,-5.776,7.698,21.716,4.101,6.45,12.779,6.119,8.409,16.043,13.954,14.154,13.422,9.147,18.773,-3.115,1.536,25.496,21.159,15.756,5.735,14.055,27.616,3.941,10.931,3.361,14.9,6.518,20.463,13.084,12.096,-0.199,8.291,19.299,3.213,5.105,24.615,10.603,11.932,-1.209,18.176,19.527,6.322,3.47,0.603,21.831,6.067,22.402,17.689,5.144,25.439,13.066,-1.247,-1.909,23.339,-3.398,12.014,-0.008,18.8,21.176,18.122,8.155,18.347,8.976,-2.832,12.713,12.665,23.894,7.795,11.718,20.829,8.165,25.314,9.964,7.148,7.483,4.073,15.398,13.286,16.431,13.365,9.085,7.499,11.947,18.811,8.57,17.902,1.334,19.311,14.987,19.869,17.315,13.539,2.175,8.554,6.98,31.544,24.779,2.563,22.161,12.215,0.264,12.087,19.356,17.32,2.276,13.9,17.906,17.861,14.792,16.022,1.136,4.333,12.014,7.802,33.275,14.742,9.636,7.116],[12.556,22.724,14.213,1.832,14.675,7.799,-4.082,6.02,6.784,0.802,7.892,20.603,25.721,15.495,7.148,3.5,10.761,18.75,12.471,-1.442,5.511,6.501,4.172,25.433,13.583,4.391,24.069,19.859,17.406,11.319,-0.126,22.152,-3.167,18.381,11.76,-0.894,7.607,8.603,20.014,13.454,2.252,23.754,13.711,11.675,7.634,8.919,17.965,17.759,9.488,19.291,15.989,1.078,14.445,15.905,31.454,1.712,11.494,6.955,18.999,3.604,6.955,23.292,13.946,13.126,24.406,0.559,7.043,1.216,5.295,14.676,24.916,6.347,11.511,3.414,-6.024,7.78,21.93,4.42,6.303,13.422,6.735,8.399,15.94,13.447,13.971,13.594,9.253,18.786,-2.986,1.38,25.326,20.748,16.44,5.859,13.977,27.367,4.014,11.317,3.677,14.365,6.679,20.534,12.998,11.736,-0.762,8.358,19.107,3.573,4.689,25.083,10.365,11.9,-1.343,18.452,18.801,5.797,3.322,0.17,21.555,6.201,22.399,17.391,5.415,25.258,12.942,-1.387,-2.136,23.33,-3.438,11.696,0.481,18.576,21.971,18.227,8.335,18.217,9.298,-2.392,13.334,12.304,23.365,7.598,11.756,20.505,8.116,25.075,10.452,7.235,7.725,4.059,15.096,13.336,16.485,13.637,9.306,7.345,12.107,18.816,8.357,18.189,1.419,19.609,15.076,19.597,17.657,13.83,2.014,8.59,6.834,31.846,24.798,2.728,22.674,12.265,0.171,11.961,18.911,17.402,1.533,13.724,18.114,17.446,14.291,16.179,1.963,4.768,12.194,7.532,33.083,14.826,9.55,7.463],[12.863,22.638,14.253,1.579,14.513,7.924,-4.295,6.258,7.003,0.75,8.125,20.548,25.77,15.518,7.056,3.625,10.822,18.939,12.415,-1.575,5.49,6.335,4.142,25.175,13.458,4.441,24.054,19.697,17.142,11.432,-0.129,22.165,-2.925,18.273,12.086,-0.704,7.717,8.586,19.86,13.344,2.29,23.815,13.773,11.691,7.575,9.078,17.86,17.768,9.398,19.204,16.093,0.956,14.211,15.65,31.48,1.718,11.577,7.002,19.048,3.698,7.08,23.303,13.808,13.464,24.361,0.602,6.881,0.961,5.653,14.838,25.181,6.456,12.048,3.224,-5.975,7.927,22.177,4.507,6.768,13.903,7.456,8.169,15.089,13.355,13.758,13.717,9.736,18.785,-3.011,1.273,25.345,20.919,16.282,5.721,14.087,27.067,4.203,11.861,3.494,14.496,6.493,20.799,12.489,11.65,-1.026,7.883,18.829,3.87,4.977,24.292,10.655,11.553,-1.341,18.582,18.572,5.717,3.041,-0.451,21.268,6.465,22.225,17.532,5.617,24.641,12.512,-1.481,-1.704,23.283,-3.572,11.953,0.4,18.941,21.73,18.421,7.96,18.553,9.555,-2.152,13.778,12.263,23.608,8.183,12.082,19.696,7.757,24.821,10.533,7.185,7.648,4.001,15.123,13.352,16.361,13.526,9.648,7.713,12.49,18.82,8.662,17.737,1.205,19.119,15.222,19.554,17.439,14.184,1.528,8.56,6.929,31.652,24.763,2.298,22.433,12.421,0.124,11.907,18.914,17.454,1.163,13.356,17.5,17.062,14.266,16.076,2.239,5.021,12.222,7.56,33.285,14.976,9.749,7.208],[13.124,22.504,14.341,1.223,14.506,8.134,-4.391,6.371,7.054,0.667,8.28,20.545,25.786,15.619,6.895,3.744,10.956,19.096,12.443,-1.716,5.508,6.142,4.148,24.931,13.316,4.544,23.953,19.499,16.851,11.569,-0.153,22.183,-2.959,18.084,12.452,-0.559,7.87,8.551,19.602,13.358,2.276,23.974,13.804,11.574,7.448,9.185,17.74,17.712,9.512,19.062,16.192,0.97,13.96,15.433,31.647,1.8,11.837,7.067,19.167,3.756,7.15,23.326,13.572,13.734,24.406,0.566,7.242,1.25,5.619,14.891,25.483,6.973,12.436,2.651,-6.202,7.994,22.526,4.594,7.325,14.391,7.717,8.152,14.534,13.232,14.044,13.531,9.789,18.654,-3.327,1.575,25.655,21.033,15.962,5.463,14.287,26.635,4.151,11.849,3.046,14.462,6.138,20.931,11.727,11.857,-0.83,7.899,18.74,3.784,5.387,23.74,10.651,11.567,-1.172,18.391,18.6,5.741,3.129,-0.599,21.357,6.707,22.097,17.373,5.032,24.578,11.9,-1.216,-2.336,23.388,-2.875,12.871,0.253,18.628,21.042,18.482,7.309,18.852,9.642,-2.232,13.756,12.661,24.153,8.197,11.555,19.64,8.093,25.331,9.947,7.4,8.027,4.12,15.073,13.387,16.492,13.878,9.22,7.856,12.029,18.344,8.404,18.012,1.425,19.017,15.098,19.792,17.556,13.429,1.401,8.538,7.258,31.233,24.466,2.422,21.902,12.055,0.186,12.374,18.919,17.756,1.741,13.134,17.325,16.635,14.432,15.942,2.243,5.009,11.959,8.057,33.4,15.291,10.094,7.177],[13.327,22.439,14.402,0.881,14.548,8.311,-4.495,6.416,7.13,0.681,8.417,20.611,25.879,15.698,6.789,3.797,11.088,19.121,12.411,-1.815,5.466,6.096,4.114,24.732,13.352,4.613,23.863,19.4,16.709,11.557,-0.189,22.155,-3.067,17.786,12.736,-0.541,8.026,8.413,19.41,13.413,2.255,24.269,13.821,11.259,7.379,9.068,17.608,17.687,9.531,18.905,16.19,1.001,13.753,15.242,31.876,2.002,12.016,7.061,19.291,3.779,7.225,23.297,13.405,13.911,24.031,0.14,7.215,1.153,5.705,14.586,25.023,6.841,12.478,2.276,-6.381,8.365,22.726,4.768,7.185,14.461,7.415,8.364,14.765,13.14,14.07,13.744,9.896,18.733,-3.569,1.609,25.666,20.804,16.448,5.448,14.109,26.465,4.223,11.614,2.867,14.595,6.424,20.922,11.855,12.42,-0.959,7.802,18.508,3.984,5.067,23.819,10.868,11.898,-1.29,18.118,19.137,5.621,3.333,-0.479,21.127,6.603,22.177,16.997,5.069,24.939,12.744,-0.88,-1.642,23.075,-3.346,13.439,0.364,18.156,21.018,18.824,6.947,18.568,9.688,-2.016,14.219,13.079,24.116,7.557,11.773,19.216,8.362,25.711,9.778,7.817,7.851,4.067,14.812,13.99,16.1,13.978,8.945,7.777,11.757,18.419,7.97,18.498,1.642,19.365,14.66,19.846,17.604,13.234,2.032,8.608,7.791,30.986,24.189,2.837,21.886,11.575,0.207,12.521,18.671,18.156,2.413,13.272,17.54,16.513,14.132,16.041,1.739,5.094,12.468,8.448,33.662,15.375,10.042,7.353],[13.35,22.376,14.482,0.573,14.511,8.367,-4.722,6.46,7.199,0.685,8.557,20.76,25.959,15.878,6.808,3.824,11.282,18.99,12.315,-1.914,5.375,6.119,4.058,24.699,13.556,4.652,23.894,19.294,16.762,11.477,-0.139,22.004,-3.083,17.553,12.97,-0.527,8.179,8.144,19.21,13.485,2.312,24.572,13.763,10.959,7.213,8.777,17.734,17.629,9.441,18.901,16.217,1.032,13.672,15.076,32.184,2.239,12.116,6.996,19.265,3.867,7.337,23.242,13.378,14.005,24.052,0.142,6.923,0.394,5.934,14.969,24.916,6.469,12.514,2.232,-6.506,8.63,22.741,4.762,6.901,14.645,7.326,8.394,15.798,13.679,13.571,13.791,9.926,19.019,-3.777,1.45,25.494,20.856,16.245,5.596,13.831,26.507,4.749,11.43,2.79,14.994,6.772,20.791,12.873,12.647,-1.432,7.904,18.332,4.382,4.894,23.918,10.924,11.807,-1.532,18.261,19.082,5.859,3.231,-0.798,21.223,6.272,22.304,17.007,5.565,25.3,13.057,-1.103,-1.631,23.222,-3.706,13.178,0.402,17.979,21.178,19.132,7.651,17.885,9.818,-2.19,14.439,13.247,24.324,7.69,11.927,19.27,8.01,25.992,9.457,8.105,7.462,4.074,15.126,13.956,16.059,13.587,8.919,8.061,11.901,18.51,8.062,18.074,1.413,18.977,14.742,19.669,17.949,13.531,1.921,8.233,8.2,30.838,23.656,2.696,22.101,11.554,0.424,12.571,18.772,18.242,2.371,13.622,17.008,16.4,13.488,15.646,0.964,5.395,12.848,8.664,33.805,15.486,10.386,7.218],[13.251,22.303,14.61,0.361,14.419,8.371,-4.858,6.577,7.164,0.611,8.606,20.942,25.989,16.145,6.889,3.99,11.451,18.805,12.447,-2.025,5.271,6.306,3.866,24.749,13.714,4.725,24.002,19.323,16.86,11.196,-0.072,21.919,-3.039,17.606,13.045,-0.583,8.364,8.014,19.002,13.609,2.279,24.816,13.683,10.869,7.131,8.586,17.854,17.481,9.175,18.851,16.271,0.836,13.558,14.988,32.494,2.337,12.254,6.676,19.127,3.939,7.51,23.124,13.451,14.012,23.81,0.755,6.985,-0.267,5.719,15.274,25.096,6.938,12.225,2.133,-6.721,8.724,22.568,4.932,7.117,14.663,7.357,8.388,15.655,12.945,13.927,13.765,9.31,19.106,-3.895,1.424,25.875,21.346,16.731,5.651,13.728,26.692,4.644,11.438,3.162,14.499,6.425,20.629,13.082,12.854,-1.173,8.155,18.651,4.095,5.071,24.311,10.903,12.101,-1.724,18.499,18.431,5.772,3.157,-0.919,21.298,6.13,22.216,17.261,5.903,25.395,12.981,-1.34,-1.695,23.431,-3.327,12.875,0.728,18.03,21.22,18.945,8.013,17.382,10.15,-2.005,14.396,12.618,24.503,7.738,11.223,19.478,7.705,26.275,9.599,8.091,7.522,4.081,15.104,13.581,16.314,13.776,9.298,8.051,11.66,18.566,7.568,17.627,1.357,18.995,14.591,19.557,18.097,13.252,1.427,8.096,8.538,31.034,23.487,2.794,22.486,11.723,0.678,12.577,18.73,18.166,2.086,13.178,17.321,16.545,13.807,15.673,1.112,5.664,13.098,8.565,33.951,15.509,10.523,6.818],[13.099,22.18,14.764,0.247,14.213,8.245,-4.847,6.77,7.094,0.552,8.681,21.144,26.125,16.398,6.934,4.177,11.57,18.646,12.638,-2.007,5.073,6.502,3.674,24.973,13.819,4.847,24.059,19.339,16.867,10.987,0.037,22.008,-2.86,17.684,13.015,-0.576,8.584,8.032,18.886,13.724,2.104,24.987,13.61,10.659,7.146,8.565,17.974,17.426,9.033,18.896,16.282,0.522,13.395,15.015,32.741,2.375,12.368,6.254,19.07,4.021,7.699,23.001,13.38,13.931,24.035,0.512,7.161,0.096,5.549,15.909,25.409,7.299,11.846,1.69,-6.729,8.559,22.271,5.144,7.159,14.267,7.609,8.498,15.22,12.997,14.562,13.439,9.766,19.241,-4.574,1.584,25.98,21.631,16.543,5.811,13.877,26.694,4.604,11.868,3.28,14.552,5.704,20.569,12.938,12.856,-1.025,8.295,18.714,3.823,5.636,24.004,10.113,11.95,-2.016,18.222,18.332,5.966,2.806,-0.692,21.175,6.465,22.33,17.307,5.318,25.014,12.286,-1.157,-1.407,22.946,-3.29,13.105,0.818,18.454,20.943,18.595,7.847,17.168,10.388,-2.246,14.327,12.16,24.548,7.179,11.159,19.143,7.837,26.361,9.552,8.143,7.453,3.912,14.869,13.772,15.955,13.413,9.008,8.127,11.36,18.497,7.779,17.483,1.409,19.351,14.296,19.495,17.586,13.333,1.209,7.826,8.606,31.334,24.03,2.842,22.139,11.75,0.78,12.824,18.733,17.664,1.856,13.144,17.185,16.483,14.087,16.103,1.666,5.783,12.968,8.637,34.265,15.524,10.525,6.582],[12.826,22.215,14.962,0.325,14.015,8.112,-4.931,6.953,7.079,0.511,8.694,21.37,26.243,16.605,6.992,4.347,11.67,18.619,12.864,-2.055,4.849,6.605,3.55,25.109,13.815,5.067,24.089,19.135,16.754,10.757,0.223,22.005,-2.661,17.803,13.119,-0.637,8.648,8.139,18.761,13.806,1.908,25.031,13.464,10.329,7.131,8.594,18.171,17.322,8.994,18.99,16.316,0.364,13.371,15.157,32.888,2.413,12.246,5.977,19.092,3.933,7.881,22.871,13.235,13.863,23.839,-0.088,6.762,0.789,5.814,15.415,25.346,7.509,11.686,1.475,-6.783,8.3,21.835,5.363,7.388,14.063,7.815,8.532,15.972,13.063,14.387,13.496,9.96,19.567,-4.257,1.67,26.271,21.372,16.911,6.024,14.533,26.849,4.871,12.485,2.84,14.868,5.534,20.418,12.566,12.719,-1.668,8.282,18.516,4.301,5.589,23.826,10.001,12.102,-1.545,18.049,18.717,5.86,2.332,-0.609,20.8,6.437,22.328,17.183,4.758,25.343,11.73,-0.935,-1.704,22.702,-2.888,13.406,0.573,18.479,20.833,18.004,8.097,17.416,10.435,-2.201,14.17,12.256,24.453,7.279,11.278,18.68,7.848,26.369,9.74,8.312,7.196,3.742,15.298,13.82,15.823,13.167,8.405,8.388,11.146,18.723,8.001,18.068,0.945,19.628,14.619,19.621,17.742,13.675,1.227,6.966,8.746,31.7,23.684,3.305,21.791,11.429,0.836,12.67,18.779,17.508,2.036,13.597,17.034,16.434,12.926,15.878,1.061,5.674,13.082,8.61,34.503,15.572,10.514,6.872],[12.518,22.233,15.128,0.46,13.846,8.094,-4.916,7.081,7.106,0.463,8.637,21.574,26.281,16.658,7.069,4.563,11.719,18.677,13.09,-2.247,4.78,6.5,3.418,25.034,13.769,5.215,24.125,18.959,16.823,10.58,0.381,21.884,-2.494,17.954,13.226,-0.705,8.57,8.352,18.693,13.853,1.711,25.045,13.341,10.084,7.152,8.469,18.463,17.327,8.881,18.957,16.368,0.254,13.394,15.302,32.988,2.474,12.148,5.864,19.222,3.795,8.053,22.786,13.149,13.834,23.884,0.04,6.362,0.619,5.724,15.36,25.293,6.917,12.024,1.982,-6.737,8.293,21.292,5.503,7.594,14.048,7.619,8.658,15.526,12.823,14.295,13.475,9.567,19.722,-3.873,1.565,26.8,21.822,16.805,6.209,14.592,26.667,5.187,12.278,2.137,14.921,5.702,20.518,12.735,12.732,-1.717,8.178,18.704,4.403,5.12,23.859,10.508,12.031,-1.792,18.357,18.945,5.7,2.401,-0.495,20.8,5.894,22.288,17.163,5.194,25.482,11.809,-0.787,-1.15,23.245,-2.695,13.574,0.589,18.207,21.049,17.512,8.151,17.307,10.067,-2.412,14.601,12.168,24.071,7.662,11.064,18.226,7.871,25.776,10.116,8.425,7.324,3.576,15.169,14.121,15.662,13.468,8.321,8.149,11.049,18.504,7.721,17.754,1.001,20.017,15.448,19.982,18.14,13.136,1.148,6.92,8.854,32.026,23.716,3.269,21.6,11.35,0.973,12.482,18.696,17.702,2.576,13.362,17.032,16.29,12.44,15.993,0.156,5.684,13.051,8.553,34.78,15.346,10.128,6.786],[12.225,22.187,15.107,0.51,13.715,8.015,-4.742,7.154,7.068,0.38,8.61,21.759,26.257,16.53,7.086,4.813,11.71,18.762,13.218,-2.382,4.846,6.286,3.261,24.716,13.693,5.251,24.176,18.802,16.872,10.586,0.536,21.902,-2.297,18.069,13.286,-0.793,8.416,8.655,18.619,13.806,1.612,24.94,13.392,10.034,7.139,8.39,18.62,17.326,8.772,18.951,16.524,0.033,13.443,15.461,33.051,2.585,12.008,5.789,19.435,3.669,8.196,22.701,12.998,13.894,23.795,-0.007,7.149,0.526,5.454,16.111,25.432,6.807,11.913,2.33,-6.581,8.694,21.109,5.409,7.485,13.961,7.491,8.844,15.834,12.521,14.327,13.196,9.63,19.905,-3.92,1.631,26.981,22.559,16.575,6.151,14.519,26.541,5.366,12.029,1.89,14.775,6.097,20.697,13.734,12.707,-1.261,8.002,18.697,3.734,5.426,23.945,9.748,12.055,-2.185,18.543,18.547,5.554,2.477,-0.047,20.631,5.798,22.42,17.438,5.799,25.271,12.302,-0.984,-0.688,23.604,-2.659,13.571,1.04,18.206,21.013,17.29,8.057,16.904,10.304,-2.608,14.448,11.762,24.056,7.749,10.501,18.468,8.11,25.855,9.525,8.315,6.974,3.292,15.215,14.134,15.743,13.114,8.713,7.938,11.028,19.112,7.476,17.599,1.063,19.638,15.714,19.542,18.193,12.485,1.008,7.449,8.883,32.705,23.614,2.759,21.403,11.316,1.131,12.631,18.524,18.111,3.399,13.041,17.242,16.691,12.886,16.218,0.489,5.466,12.779,8.577,34.865,15.542,10.319,6.238],[11.919,22.054,15.032,0.659,13.603,8.006,-4.511,7.161,7.185,0.266,8.689,21.926,26.175,16.384,6.927,4.943,11.813,18.822,13.343,-2.235,4.947,6.137,3.177,24.468,13.767,5.249,24.22,18.691,16.888,10.525,0.774,22.067,-2.266,18.062,13.315,-0.93,8.421,8.895,18.535,13.666,1.577,24.961,13.347,10.146,6.997,8.14,18.622,17.296,8.662,18.962,16.708,-0.17,13.375,15.624,33.188,2.77,11.799,5.796,19.544,3.447,8.345,22.526,12.966,14.116,23.824,0.183,7.331,0.424,5.477,15.848,25.345,7.547,11.353,2.104,-6.385,8.512,21.018,5.271,7.21,13.491,7.438,8.724,15.714,12.499,14.485,13.106,9.717,20.037,-3.814,1.775,27.206,22.574,16.784,6.242,14.498,26.223,5.201,11.987,1.951,14.561,5.699,20.692,13.705,12.393,-1.23,7.922,18.474,4.004,5.9,23.399,9.499,12.043,-1.965,18.532,18.167,5.644,2.318,0.212,20.319,6.476,22.506,17.267,6.013,25.455,12.261,-1.299,-0.97,23.202,-2.454,13.159,1.505,18.542,21.083,17.472,8.613,16.739,10.264,-2.61,14.44,11.83,24.131,7.815,9.897,18.789,8.5,26.167,9.078,7.783,6.869,3.437,15.306,13.553,16.029,13.116,8.969,7.922,11.474,19.494,7.631,17.577,0.599,20.094,15.632,19.413,18.197,13.016,0.652,7.352,8.586,33.047,23.355,2.738,21.566,11.38,1.157,12.86,19.43,18.245,3.966,12.783,17.01,16.849,13.825,16.302,0.674,5.079,12.772,8.478,34.836,15.805,10.099,5.548],[11.57,21.854,14.978,0.785,13.634,8.05,-4.332,7.094,7.359,0.23,8.667,21.878,26.034,16.319,6.73,4.897,11.907,18.804,13.363,-2.108,4.986,6.1,3.212,24.232,13.989,5.303,24.337,18.766,16.877,10.376,1.038,22.19,-2.484,18.024,13.189,-1.06,8.635,9.054,18.496,13.551,1.602,25.079,13.341,10.23,6.872,7.859,18.827,17.33,8.54,18.884,16.775,-0.391,13.447,15.571,33.332,3.004,11.709,5.725,19.734,3.29,8.516,22.386,12.975,14.261,23.769,0.017,6.923,0.379,5.645,15.334,25.417,8.099,11.084,2.193,-6.002,8.28,21.246,5.412,7.432,12.578,7.604,8.406,15.602,12.663,14.649,12.764,9.86,20.093,-3.181,1.663,27.244,22.287,16.35,6.02,14.86,25.961,5.304,12.089,2.03,15.014,5.065,20.573,13.072,12.439,-1.433,7.898,18.491,4.853,5.634,23.32,9.748,12.18,-2.174,18.413,17.75,5.817,2.176,0.113,20.427,6.565,22.669,17.499,5.816,25.457,12.097,-1.077,-0.785,23.174,-2.375,13.478,1.773,18.728,21.015,17.619,9.272,16.659,10.35,-2.906,14.337,12.271,24.549,7.45,9.632,18.586,8.481,26.374,9.722,8.008,6.585,3.298,15.028,13.87,15.823,12.77,8.971,7.919,11.509,18.906,7.659,17.514,0.406,20.192,15.24,19.534,18.47,13.681,0.508,7.397,8.229,33.722,23.654,2.87,22.088,11.302,1.267,13.29,19.851,17.95,3.881,12.948,16.965,16.866,13.449,16.561,0.346,4.858,12.633,8.105,34.913,16.062,9.765,5.513],[11.181,21.77,14.944,0.893,13.71,8.157,-4.11,7.095,7.332,0.194,8.607,21.684,25.818,16.125,6.491,4.838,11.96,18.754,13.345,-2.252,4.857,6.129,3.348,24.165,14.282,5.342,24.481,18.718,17.007,10.315,1.243,22.045,-2.575,17.955,13.153,-1.26,8.953,9.254,18.445,13.674,1.611,25.259,13.331,10.061,6.799,7.646,18.989,17.214,8.59,18.797,16.736,-0.575,13.59,15.403,33.545,3.262,11.792,5.68,19.908,3.306,8.616,22.508,12.931,14.318,23.518,-0.33,6.563,0.812,6.001,15.77,25.296,7.879,10.931,2.224,-5.745,8.21,20.796,5.638,7.372,12.001,7.727,8.277,15.691,12.643,14.569,13.136,9.984,19.755,-2.876,0.991,27.328,21.998,16.502,5.798,14.718,25.997,5.232,12.643,2.08,15.525,5.609,20.656,12.715,12.43,-1.292,7.787,18.637,4.607,5.637,23.478,9.278,12.69,-2.514,18.416,17.892,6.055,2.326,0.369,20.538,6.348,22.656,17.589,5.618,25.667,11.74,-1.021,-1.016,23.576,-2.347,13.517,1.698,18.289,20.841,18.004,8.851,16.611,10.681,-3.052,14.496,12.32,24.528,6.789,9.495,18.72,8.673,26.645,9.579,8.54,5.988,3.425,15.071,14.023,15.802,13.491,8.245,7.82,11.096,19.396,7.202,17.799,0.718,20.406,14.777,19.399,18.493,13.891,0.604,7.311,7.994,34.222,23.306,2.811,22.459,11.111,1.442,13.46,19.675,18.238,3.456,13.445,17.146,16.663,13.101,16.443,0.025,4.97,12.366,8.147,35.06,16.177,10.018,5.903],[10.888,21.776,14.949,1.041,13.782,8.263,-3.942,7.142,7.169,0.06,8.473,21.422,25.749,15.98,6.299,4.723,12.015,18.773,13.252,-2.604,4.899,6.139,3.529,24.335,14.615,5.304,24.511,18.443,17.188,10.243,1.308,21.863,-2.475,17.857,13.458,-1.476,8.97,9.405,18.43,13.77,1.74,25.337,13.336,9.797,6.699,7.412,19.249,17.076,8.578,18.674,16.626,-0.571,13.694,15.319,33.772,3.367,12.025,5.65,20.076,3.444,8.613,22.708,12.93,14.346,23.294,-0.689,6.679,1.023,6.273,15.681,24.941,7.992,10.502,2.659,-5.551,8.378,20.269,5.689,7.066,12.083,7.69,8.034,15.885,12.579,14.45,13.466,10.091,19.609,-2.85,0.898,26.51,21.876,16.27,5.801,14.389,26.044,5.067,12.571,2.372,15.787,6.12,20.672,13.154,12.152,-1.108,7.864,18.718,3.67,5.841,23.337,9.15,12.915,-2.48,18.559,18.682,6.53,2.687,0.891,20.104,5.781,22.972,17.512,5.466,25.991,11.55,-1.628,-0.962,22.86,-2.37,13.414,1.841,18.294,20.675,18.458,8.871,16.513,10.7,-3.359,14.718,12.159,24.514,6.673,9.794,18.684,9.08,26.547,9.051,8.69,6.056,3.565,15.32,14.007,16.002,13.685,8.028,7.914,11.245,19.707,6.646,17.496,0.742,20.354,14.387,19.307,18.089,13.982,0.236,6.984,8.041,34.531,23.712,3.14,22.129,11.118,2.136,13.338,19.459,18.762,3.102,13.252,16.847,16.092,13.82,16.01,-0.283,5.136,12.674,8.517,35.043,16.186,10.372,6.617],[10.695,21.831,15.029,1.259,13.886,8.465,-3.737,7.281,7.094,-0.121,8.275,21.105,25.563,15.8,6.227,4.432,11.994,18.804,13.105,-2.943,5.005,6.173,3.728,24.521,14.908,5.226,24.485,18.18,17.226,10.189,1.394,21.699,-2.464,17.887,13.828,-1.772,8.808,9.601,18.347,13.716,1.83,25.38,13.314,9.733,6.624,7.243,19.549,16.909,8.394,18.479,16.523,-0.651,13.943,15.255,33.935,3.368,12.311,5.633,20.313,3.63,8.545,22.907,12.962,14.366,23.285,-0.516,7.036,0.947,5.88,15.588,25.397,8.18,10.127,2.637,-5.681,8.487,20.311,5.874,6.934,12.515,7.242,7.875,15.946,12.531,14.962,13.238,9.883,19.288,-3.278,1.321,26.149,21.908,15.681,5.503,14.662,26.271,4.916,12.133,2.417,15.638,6.187,20.459,13.351,11.75,-1.538,7.752,18.708,3.712,5.153,23.252,9.516,13.005,-2.07,19.023,18.252,6.913,2.822,1.034,19.721,6.25,23.262,17.892,5.5,26.191,11.555,-2.054,-0.717,22.725,-2.519,14.128,1.898,18.205,20.286,18.824,9.481,16.521,10.648,-3.411,14.608,12.082,24.439,7.365,10.109,18.7,8.625,26.132,9.766,8.385,6.132,3.633,15.192,14.009,15.652,12.761,8.679,7.628,11.279,19.834,6.433,17.239,0.754,20.371,14.285,19.441,18.259,13.603,0.749,6.804,8.145,34.916,23.926,3.295,21.806,11.141,2.273,13.31,19.901,18.642,3.18,12.775,16.639,15.978,14.026,16.043,-0.033,5.412,13.328,8.713,35.178,16.173,10.608,6.607],[10.76,21.936,15.396,1.39,13.818,8.58,-3.652,7.435,7.162,-0.141,8.142,20.729,25.437,15.559,6.194,4.028,11.86,18.881,12.977,-3.111,5.22,6.226,3.779,24.692,15.0,4.98,24.579,17.96,17.275,10.257,1.563,21.534,-2.558,17.962,13.956,-1.968,8.811,9.796,18.315,13.477,1.849,25.416,13.18,9.835,6.735,7.295,19.663,16.558,8.481,18.373,16.605,-0.734,14.267,15.234,34.001,3.34,12.486,5.664,20.434,3.812,8.483,22.966,12.854,14.319,23.6,-0.361,7.021,1.497,5.365,15.547,24.991,8.239,9.83,2.427,-5.411,8.595,20.71,5.822,6.942,12.538,7.372,7.762,16.063,12.852,15.088,13.505,10.089,18.859,-3.318,1.395,26.409,21.625,15.95,5.383,14.516,26.334,4.701,11.969,2.252,15.781,5.924,20.537,13.145,11.328,-1.719,7.779,18.478,4.184,4.721,23.572,9.135,13.189,-2.175,18.954,17.193,6.585,3.057,0.702,19.771,6.412,22.871,17.875,5.736,25.73,11.728,-2.46,-0.786,23.0,-2.541,14.589,2.103,18.143,20.368,19.006,9.522,16.452,10.426,-3.448,15.272,11.605,24.441,7.77,10.069,18.663,8.745,26.302,9.126,8.236,5.838,3.507,15.141,13.654,15.423,12.876,8.359,7.627,10.943,20.272,6.611,17.026,0.709,20.876,14.946,19.05,18.324,13.398,0.242,6.954,8.139,34.97,23.747,3.039,22.016,11.147,1.756,13.63,21.002,18.923,3.659,13.09,16.564,16.381,13.76,16.165,0.216,5.566,13.292,8.459,35.169,16.13,10.731,6.248],[10.757,22.112,15.786,1.47,13.707,8.658,-3.593,7.51,7.178,0.04,8.18,20.312,25.439,15.431,6.106,3.715,11.599,18.92,12.893,-3.14,5.384,6.241,3.759,24.843,14.907,4.609,24.503,17.873,17.333,10.334,1.749,21.535,-2.607,18.113,13.976,-2.051,8.927,9.966,18.308,13.231,1.769,25.454,12.851,9.936,6.937,7.369,19.745,16.145,8.618,18.338,16.863,-0.871,14.571,15.317,34.013,3.298,12.581,5.794,20.609,3.896,8.372,22.88,12.712,14.295,23.905,-1.035,6.975,1.479,5.462,15.112,24.648,8.255,10.056,2.821,-5.517,8.409,21.208,5.632,6.598,12.62,7.815,7.672,16.679,12.585,15.409,13.268,10.433,18.577,-2.816,0.662,26.836,21.062,15.407,5.561,14.022,26.534,4.641,12.297,2.259,16.158,6.128,20.717,12.791,11.328,-1.597,8.016,18.57,3.576,5.236,23.76,9.208,13.145,-2.851,18.888,16.555,6.061,3.241,0.714,19.105,6.745,22.56,18.084,5.608,25.552,11.927,-2.627,-1.168,22.79,-2.485,14.797,2.273,18.108,20.703,18.201,9.404,16.5,10.769,-3.639,15.007,11.556,24.72,7.972,9.477,18.979,9.17,26.724,9.527,8.418,5.981,3.265,14.924,13.368,15.161,13.505,8.048,7.986,11.12,20.402,7.024,16.87,0.575,19.998,15.537,18.865,18.462,13.713,-0.026,7.069,7.816,34.558,23.714,3.338,22.233,10.875,1.461,13.698,20.965,18.772,3.816,12.803,16.742,16.511,14.067,16.258,-0.092,5.424,13.366,8.618,35.393,16.21,10.689,6.62],[10.811,22.328,16.156,1.578,13.64,8.625,-3.492,7.515,7.179,-0.074,8.284,20.048,25.519,15.221,6.05,3.532,11.3,18.93,12.898,-3.186,5.558,6.214,3.89,24.916,14.741,4.372,24.262,17.784,17.5,10.398,1.905,21.629,-2.608,18.028,14.016,-2.172,9.191,10.069,18.272,13.143,1.638,25.444,12.542,9.878,7.14,7.442,19.525,15.695,8.715,18.402,17.132,-1.033,14.944,15.43,34.047,3.19,12.531,6.081,20.559,3.816,8.244,22.796,12.445,14.398,24.122,-0.837,6.892,0.901,5.665,14.997,25.066,7.997,10.529,3.06,-5.516,8.454,21.732,5.763,6.574,12.287,7.941,7.664,16.778,12.266,15.583,13.196,10.161,18.209,-2.639,1.142,26.662,20.601,15.262,5.316,14.548,26.682,4.459,12.364,2.81,15.933,6.52,20.531,12.707,11.324,-1.269,7.97,18.807,3.037,5.26,23.546,9.585,13.045,-3.312,19.373,16.592,5.549,2.737,0.91,19.064,6.878,22.643,18.17,5.362,25.833,12.023,-2.749,-1.107,22.848,-1.921,14.412,2.165,18.552,20.579,17.995,9.55,16.8,10.819,-3.528,14.906,11.767,24.979,7.985,9.154,19.377,9.208,26.747,9.499,8.577,6.144,3.175,14.785,13.26,15.062,13.151,9.171,8.468,11.208,20.371,6.861,16.923,0.543,20.241,15.616,19.187,18.492,13.955,-0.059,7.0,7.271,33.991,23.576,3.923,22.131,10.902,1.673,13.261,20.351,18.797,3.958,12.249,16.703,16.369,14.296,16.588,-0.126,5.504,13.667,9.222,35.791,16.19,10.84,7.076],[11.0,22.54,16.435,1.551,13.626,8.386,-3.321,7.594,7.192,-0.233,8.477,19.919,25.697,14.909,6.059,3.424,11.043,18.987,13.106,-3.207,5.716,6.134,4.064,24.827,14.601,4.276,24.2,17.832,17.679,10.473,2.077,21.815,-2.422,17.818,14.036,-2.268,9.564,10.101,18.296,13.129,1.608,25.41,12.447,9.684,7.239,7.542,19.264,15.284,8.81,18.569,17.329,-1.092,15.342,15.369,34.196,3.082,12.478,6.365,20.422,3.951,8.194,22.841,12.163,14.399,24.329,-0.577,7.038,1.376,5.804,14.846,25.08,7.077,10.287,3.023,-5.125,8.431,21.949,5.766,6.786,11.751,7.157,7.675,16.629,12.153,15.507,13.155,10.252,18.072,-2.733,1.042,25.919,21.021,14.865,4.971,14.818,26.519,4.437,11.81,2.917,15.748,6.688,20.55,13.029,10.583,-1.445,7.739,19.041,2.907,4.753,23.78,9.265,12.894,-3.379,19.245,17.22,5.198,2.877,0.913,19.459,6.876,22.849,18.328,4.958,25.532,12.192,-3.067,-0.672,22.955,-1.979,13.78,1.949,18.14,20.46,18.496,10.028,16.999,10.753,-3.405,15.229,10.82,24.578,8.312,9.063,19.042,9.077,26.615,9.358,8.855,6.375,3.039,14.909,13.443,15.133,13.141,9.093,8.521,11.1,19.848,6.578,16.485,0.398,20.573,15.758,19.047,18.822,14.121,-0.238,7.608,6.919,33.471,22.926,3.41,21.499,10.638,2.162,13.352,19.848,18.902,3.893,12.117,16.672,16.272,14.295,16.428,-0.207,5.524,13.522,9.407,35.596,16.176,10.799,6.904],[11.111,22.745,16.289,1.538,13.545,8.074,-2.986,7.501,7.197,-0.298,8.573,19.826,25.779,14.572,6.057,3.347,10.749,18.961,13.351,-3.235,5.92,5.952,4.26,24.712,14.545,4.143,24.158,18.116,17.884,10.425,2.19,22.041,-2.174,17.597,14.133,-2.422,9.791,10.029,18.32,13.153,1.646,25.351,12.443,9.56,7.288,7.61,19.221,14.867,8.679,18.567,17.411,-1.066,15.533,15.235,34.196,2.967,12.373,6.544,20.564,4.128,8.107,22.838,12.009,14.249,24.388,-1.077,7.365,1.957,5.537,14.742,25.102,7.053,10.116,3.0,-4.838,8.336,21.861,6.083,7.351,12.168,6.799,7.626,16.941,12.323,15.634,13.066,9.737,18.294,-2.431,0.531,26.063,21.273,14.475,5.104,14.925,26.51,4.259,11.043,2.653,15.72,6.512,20.723,12.9,10.782,-1.531,7.771,19.144,2.917,4.823,23.94,9.124,12.766,-3.203,18.802,17.873,5.503,3.61,1.012,19.665,6.948,22.594,18.509,4.5,25.358,12.216,-3.16,-0.404,22.982,-2.446,13.624,2.53,17.908,20.91,18.607,10.075,16.808,11.714,-3.806,15.337,10.679,24.318,8.389,8.583,18.991,9.34,26.414,10.001,9.219,6.163,3.247,14.666,13.733,15.25,13.045,8.163,8.322,11.002,19.029,7.035,16.11,0.328,19.903,15.859,19.385,19.137,14.174,0.225,7.977,6.556,33.466,22.71,3.26,21.244,10.171,2.748,13.787,20.403,18.85,3.754,12.234,16.915,15.887,14.616,16.709,-0.502,5.918,13.511,9.239,35.584,16.055,10.696,7.224],[11.291,22.849,16.102,1.69,13.519,7.738,-2.626,7.448,7.141,-0.354,8.572,19.853,25.763,14.355,5.888,3.223,10.6,18.803,13.372,-3.201,6.091,5.922,4.385,24.777,14.589,3.962,24.152,18.476,18.086,10.149,2.334,22.211,-2.19,17.574,14.321,-2.634,9.953,9.961,18.268,13.075,1.817,25.293,12.598,9.605,7.198,7.591,19.131,14.733,8.402,18.538,17.515,-0.959,15.535,15.146,34.062,2.831,12.23,6.6,20.717,4.206,7.94,22.86,11.951,14.095,24.694,-1.298,7.48,1.486,5.345,14.653,25.569,7.273,10.395,2.881,-4.597,8.22,21.75,5.696,7.389,12.672,6.708,7.262,16.847,12.328,15.274,12.894,9.339,18.128,-1.703,0.861,26.919,20.946,14.302,5.497,15.002,26.545,4.129,11.118,2.736,15.764,6.758,20.616,13.284,10.289,-1.577,7.649,19.199,3.181,5.208,23.717,9.14,12.865,-2.954,19.034,17.943,5.765,3.958,1.314,20.002,7.528,22.784,18.575,3.929,25.178,11.924,-3.397,-0.425,23.348,-2.193,14.228,3.096,17.681,21.113,17.867,9.771,16.593,11.791,-3.95,15.777,10.875,24.566,8.101,8.823,19.586,8.993,26.612,9.282,9.381,5.928,3.16,14.595,13.358,14.585,13.028,8.267,8.436,10.755,19.235,7.427,16.303,0.432,20.044,15.607,19.648,19.141,14.34,0.262,7.71,6.167,33.813,22.897,4.047,21.411,10.27,3.454,13.178,21.171,18.856,3.523,12.181,17.249,15.904,14.822,16.705,-0.34,6.1,13.168,9.003,35.482,15.975,10.621,7.41],[11.398,22.901,15.919,1.797,13.476,7.471,-2.333,7.447,7.098,-0.332,8.408,19.825,25.93,14.408,5.552,3.124,10.605,18.794,13.258,-3.121,6.344,6.075,4.345,24.935,14.631,3.807,24.269,18.631,18.2,9.655,2.533,22.38,-2.325,17.541,14.501,-2.779,10.002,9.803,18.309,12.877,1.914,25.354,12.834,9.717,7.061,7.634,19.06,14.714,8.307,18.637,17.684,-0.705,15.6,15.111,34.029,2.752,11.995,6.487,20.788,4.148,7.754,22.915,11.994,13.929,24.63,-0.678,7.172,1.377,5.491,14.159,25.179,7.569,10.878,2.953,-4.055,8.199,21.977,5.704,6.946,12.632,6.549,7.111,16.845,12.586,15.611,13.009,9.31,17.941,-1.489,0.536,26.861,20.545,14.363,5.036,15.011,26.535,3.98,11.154,2.673,15.997,6.646,20.384,13.437,10.336,-1.327,7.658,19.361,3.234,4.797,23.737,9.007,13.187,-3.019,18.669,18.077,6.048,3.858,1.988,20.145,7.593,22.761,18.596,3.617,25.482,11.428,-3.413,-0.765,23.366,-1.73,15.036,2.549,18.467,21.258,17.801,9.592,16.648,11.611,-3.717,15.952,11.521,24.468,8.032,9.298,19.356,9.14,26.824,9.291,9.374,6.09,3.543,14.59,13.128,14.021,12.875,8.329,8.028,11.249,19.381,7.331,16.326,0.737,20.422,15.12,19.343,19.106,14.376,0.528,7.438,6.184,33.725,23.355,3.751,21.75,10.349,4.096,12.517,20.945,19.121,3.136,12.14,17.062,16.329,14.695,16.564,-0.107,5.689,12.972,8.196,35.453,15.445,10.528,7.285],[11.523,22.93,15.802,1.806,13.457,7.438,-2.163,7.553,7.086,-0.25,8.148,19.739,26.057,14.569,5.123,3.095,10.606,18.76,13.096,-2.962,6.512,6.315,4.062,25.041,14.757,3.743,24.386,18.669,18.304,9.277,2.735,22.54,-2.349,17.566,14.632,-2.687,10.003,9.64,18.359,12.84,2.092,25.411,13.088,9.805,6.849,7.756,19.056,14.532,8.349,18.758,17.808,-0.444,15.673,15.137,34.045,2.803,11.717,6.305,20.794,3.969,7.623,22.953,12.118,13.631,24.655,-1.152,6.783,2.277,5.594,14.221,24.929,7.926,11.606,3.227,-4.042,7.769,22.14,5.685,6.522,12.049,6.187,6.922,17.047,12.166,15.43,13.306,9.086,17.948,-1.571,0.889,26.747,20.285,14.409,4.519,14.776,26.805,3.934,11.142,2.621,16.251,6.734,20.516,12.916,10.031,-1.116,7.595,19.361,3.066,4.054,24.049,8.493,13.037,-3.466,18.75,18.244,6.448,3.301,2.412,20.256,7.635,22.959,18.771,3.448,25.902,11.132,-3.569,-0.862,23.663,-1.981,15.016,1.74,18.562,21.166,18.255,10.018,16.498,11.679,-3.77,15.755,11.417,24.554,7.967,9.318,19.102,9.057,26.829,9.467,9.252,6.253,3.802,14.463,13.428,13.939,12.741,7.88,7.943,11.18,18.931,7.322,15.884,1.019,20.288,14.427,19.301,19.178,14.922,0.474,7.681,6.587,33.609,23.213,3.021,22.108,10.249,4.455,12.497,20.887,18.957,2.527,12.32,16.932,16.444,15.105,17.076,0.415,5.732,13.222,7.695,35.69,15.345,10.212,6.856],[11.732,22.894,15.686,1.954,13.405,7.461,-2.252,7.674,7.062,-0.15,7.848,19.674,25.992,14.617,4.787,3.195,10.452,18.765,12.815,-2.815,6.553,6.423,3.592,25.281,14.91,3.711,24.471,18.725,18.429,9.091,2.921,22.659,-2.282,17.691,14.669,-2.588,10.097,9.635,18.35,12.883,2.289,25.448,13.132,9.896,6.802,7.707,19.04,14.179,8.28,18.814,17.946,-0.249,15.924,15.072,34.072,2.928,11.521,6.114,20.755,3.832,7.594,22.947,12.244,13.426,24.739,-1.323,6.901,1.753,5.505,14.827,25.288,7.82,12.184,3.026,-4.177,7.155,21.876,5.88,6.539,12.131,6.05,6.643,16.771,11.759,14.914,13.363,9.048,17.804,-1.662,0.725,27.027,20.599,14.791,4.233,14.633,26.992,4.551,10.998,2.124,15.976,7.221,20.495,12.735,10.6,-1.13,7.806,19.769,2.737,3.739,24.33,8.654,13.174,-3.23,18.867,18.151,6.692,2.966,2.955,20.335,7.877,23.067,18.811,3.687,26.114,10.866,-3.838,-0.532,23.622,-2.114,14.607,1.876,18.24,21.499,18.47,9.546,16.495,11.488,-3.484,16.129,11.663,24.671,7.338,8.765,18.946,8.665,26.645,9.081,9.07,6.116,3.932,14.392,13.103,14.119,12.682,8.254,8.094,10.901,19.052,7.214,15.693,0.989,19.916,14.767,19.918,19.245,15.242,0.367,7.775,6.345,33.682,23.379,3.144,21.844,10.768,4.514,12.457,20.816,19.12,1.988,12.751,17.105,15.86,15.21,17.133,0.734,5.334,13.034,7.999,35.601,15.229,10.001,6.445],[12.002,22.704,15.462,1.976,13.384,7.394,-2.527,7.788,6.963,-0.151,7.588,19.619,25.906,14.743,4.701,3.32,10.255,18.729,12.633,-2.633,6.616,6.497,3.213,25.541,14.975,3.746,24.593,18.798,18.514,9.236,3.191,22.718,-2.044,17.81,14.715,-2.572,10.128,9.552,18.369,12.817,2.234,25.403,13.072,9.865,6.902,7.5,18.933,13.997,8.203,18.853,18.042,-0.169,16.214,14.912,34.059,3.067,11.471,6.01,20.704,3.762,7.593,22.98,12.468,13.312,24.389,-0.626,7.393,1.735,5.272,14.701,25.373,7.059,12.42,3.313,-4.303,6.691,21.578,6.275,6.429,12.822,6.395,6.564,16.793,11.828,14.921,13.376,9.231,18.072,-1.745,0.824,26.581,20.852,14.344,3.918,13.995,27.288,4.417,10.744,1.798,16.079,7.139,20.484,12.339,10.612,-0.777,7.915,19.738,2.914,3.781,24.448,8.393,13.258,-3.137,18.88,18.285,6.037,2.614,2.904,20.391,7.712,23.166,18.776,3.968,25.619,11.054,-3.4,-0.434,23.548,-1.806,14.032,2.283,18.205,21.508,18.496,9.57,16.644,11.703,-3.74,15.683,11.748,24.577,7.756,8.472,18.699,8.977,26.973,9.367,9.53,5.818,3.972,14.659,12.809,13.74,12.802,8.284,8.096,11.182,19.125,7.441,15.674,1.058,20.146,15.571,20.14,19.489,15.312,1.211,7.547,5.98,33.728,23.688,3.567,21.345,10.828,4.249,12.278,20.739,19.02,1.707,12.681,17.313,15.909,14.973,16.911,0.439,5.585,12.652,8.505,35.446,14.999,9.959,6.129],[12.339,22.431,15.351,1.999,13.376,7.302,-2.608,7.799,6.8,-0.216,7.405,19.644,25.781,14.849,4.665,3.356,10.037,18.64,12.342,-2.489,6.628,6.444,3.078,25.57,14.933,3.868,24.679,18.819,18.417,9.46,3.529,22.63,-1.778,17.892,14.65,-2.474,10.243,9.553,18.397,12.846,2.081,25.353,13.042,9.767,7.084,7.329,18.807,13.963,8.406,18.929,18.077,-0.141,16.231,14.974,33.942,3.136,11.383,6.095,20.593,3.798,7.531,23.08,12.547,13.195,23.995,-0.908,7.741,2.472,5.07,14.856,25.696,7.108,12.48,3.553,-4.395,6.586,21.371,6.384,6.163,13.472,7.011,6.495,16.719,11.974,15.12,13.987,9.164,18.013,-2.215,1.272,26.745,20.788,13.865,4.185,13.666,27.224,4.201,10.601,1.742,16.397,6.71,20.103,12.586,9.537,-0.614,7.838,19.179,2.952,4.416,24.379,8.331,13.309,-2.886,18.881,18.861,6.085,2.369,2.625,20.68,7.733,23.01,18.74,4.073,25.168,11.354,-2.86,-0.074,24.009,-1.882,13.986,2.558,18.538,21.107,18.633,9.847,16.473,11.832,-3.823,15.522,11.373,24.798,8.22,9.034,19.233,8.866,26.896,9.552,9.45,5.394,3.884,14.618,12.74,13.661,12.924,8.153,8.277,11.127,18.855,7.247,15.482,0.85,20.419,15.425,19.902,19.325,14.996,0.995,7.416,6.203,33.833,23.264,3.321,21.35,10.714,4.248,11.968,20.812,18.837,1.455,13.066,17.424,16.098,15.224,16.94,0.696,5.584,12.902,8.777,35.493,14.831,9.975,6.555],[12.697,22.151,15.429,2.125,13.463,7.257,-2.53,7.642,6.78,-0.273,7.368,19.737,25.782,14.881,4.619,3.276,9.743,18.476,12.139,-2.479,6.62,6.32,3.003,25.399,14.87,4.066,24.617,18.854,18.106,9.507,3.752,22.476,-1.773,17.969,14.579,-2.295,10.389,9.672,18.503,12.946,1.946,25.414,13.006,9.767,7.205,7.269,18.716,13.986,8.733,19.002,18.104,-0.077,15.982,15.21,33.892,3.173,11.303,6.366,20.452,3.793,7.447,23.238,12.55,13.149,23.92,-1.153,7.815,2.18,5.0,14.564,25.382,7.674,12.771,3.675,-4.453,6.723,20.965,6.018,5.928,13.31,6.801,6.273,16.271,12.248,15.506,13.69,9.178,17.979,-2.256,0.656,26.192,20.614,14.659,4.66,13.51,26.987,4.56,10.222,1.627,16.13,6.986,20.237,12.832,9.743,-0.822,7.821,19.312,2.598,5.189,24.102,8.787,13.158,-2.843,18.54,18.594,6.77,2.45,3.05,20.564,7.862,22.752,18.452,4.165,25.136,11.386,-2.962,-0.192,23.557,-1.52,13.854,2.773,18.784,21.269,18.774,9.384,16.677,11.943,-3.357,15.764,11.506,25.005,7.81,9.695,19.249,8.728,26.807,9.693,9.809,5.582,3.564,14.668,13.016,13.977,12.936,8.531,8.446,10.741,18.774,7.213,15.404,0.674,20.255,14.916,20.047,19.424,15.162,0.428,7.432,6.396,33.53,23.128,3.259,21.49,10.664,4.018,11.838,20.649,18.626,1.397,12.69,17.442,16.305,15.117,17.235,0.993,5.383,12.768,8.985,35.558,14.721,9.768,6.923],[13.057,21.913,15.485,2.233,13.604,7.25,-2.514,7.59,6.91,-0.456,7.46,19.858,25.68,14.83,4.479,3.129,9.477,18.349,12.171,-2.588,6.527,6.463,2.947,25.221,14.717,4.31,24.377,18.869,17.748,9.53,3.839,22.211,-1.866,18.065,14.54,-2.025,10.464,9.726,18.59,13.035,1.81,25.582,13.101,9.946,7.213,7.501,18.63,14.192,9.013,19.11,18.149,-0.016,15.8,15.444,33.856,3.187,11.273,6.525,20.34,3.749,7.422,23.366,12.396,13.27,23.411,-0.902,7.286,1.775,5.371,14.875,25.23,7.68,12.72,3.546,-4.319,7.03,20.768,5.702,5.93,13.309,5.949,5.976,16.842,12.123,15.722,12.653,8.992,18.08,-1.959,0.63,26.413,20.766,14.829,4.412,13.401,27.02,3.902,9.898,1.75,15.751,7.223,20.177,12.379,9.486,-0.712,7.851,19.267,2.508,5.003,24.144,8.471,12.966,-3.067,18.211,17.907,6.649,2.35,3.357,20.508,7.928,22.854,17.944,4.356,25.528,11.174,-2.833,-0.348,23.141,-1.404,13.604,3.248,18.402,21.28,18.723,9.527,17.049,12.306,-3.422,15.629,11.492,24.578,7.279,9.611,19.045,8.794,26.675,10.453,10.228,5.706,3.503,14.608,13.724,13.739,12.779,8.627,8.316,11.18,18.825,7.355,15.771,0.502,19.775,14.849,19.903,19.381,15.212,0.967,7.539,6.451,33.433,23.754,3.692,21.989,10.671,3.331,11.92,20.187,18.664,1.55,12.765,17.441,16.609,14.736,17.108,0.669,5.487,12.204,8.74,35.783,14.99,9.621,7.049],[13.336,21.744,15.526,2.124,13.61,7.124,-2.615,7.641,7.035,-0.6,7.691,20.098,25.576,14.84,4.258,2.932,9.266,18.252,12.251,-2.636,6.45,6.598,2.888,25.099,14.585,4.384,24.239,18.888,17.536,9.502,3.891,21.841,-1.875,17.979,14.564,-1.854,10.493,9.707,18.57,13.267,1.829,25.675,13.215,10.238,7.075,7.815,18.437,14.418,9.252,19.138,18.082,0.042,15.627,15.486,33.816,3.16,11.249,6.501,20.214,3.844,7.443,23.343,12.194,13.557,23.23,-0.824,6.675,1.653,5.41,14.462,25.047,7.829,12.677,3.95,-4.144,6.93,20.577,6.012,6.385,14.293,5.757,5.995,16.289,12.44,15.316,12.677,8.694,18.427,-1.547,0.654,26.61,21.174,14.322,3.288,13.543,26.911,3.56,9.664,1.59,15.543,6.588,19.825,12.34,9.239,-0.93,7.814,19.219,2.502,5.324,24.097,8.544,12.691,-3.965,18.446,18.532,7.051,2.753,3.105,20.792,7.877,22.772,17.664,4.584,25.481,11.328,-2.523,-0.322,23.077,-1.909,13.502,3.775,18.494,20.748,18.92,9.884,16.981,12.245,-3.236,15.821,11.738,24.779,7.556,9.482,19.409,8.921,27.086,10.656,9.909,6.032,3.147,14.982,13.561,13.858,13.174,8.587,8.369,11.488,18.576,7.457,15.933,0.369,19.729,15.227,19.921,18.984,14.923,1.118,7.973,6.062,33.564,23.968,3.673,22.811,10.359,2.441,12.204,20.116,18.601,1.836,12.597,17.535,17.091,15.16,17.393,0.585,5.462,12.215,8.477,35.719,15.036,9.426,7.366],[13.644,21.711,15.479,1.982,13.749,6.829,-2.713,7.827,6.981,-0.693,7.941,20.509,25.406,14.859,3.997,2.705,9.126,18.266,12.317,-2.778,6.346,6.694,2.965,24.995,14.476,4.42,24.166,19.114,17.393,9.584,3.896,21.582,-1.962,17.925,14.689,-1.793,10.371,9.652,18.502,13.558,1.914,25.851,13.433,10.56,7.133,7.694,18.28,14.436,9.361,19.01,17.965,0.193,15.571,15.432,33.818,3.127,11.315,6.458,19.993,3.931,7.443,23.248,12.205,13.769,23.371,-1.039,6.575,2.145,5.296,14.586,24.82,7.843,13.293,3.581,-4.595,7.006,20.314,6.119,6.65,13.999,5.687,5.827,15.812,12.651,15.035,13.512,8.602,18.638,-1.955,0.088,26.226,21.063,14.467,3.128,13.962,26.693,4.107,9.865,1.493,15.55,6.626,19.905,12.431,9.546,-1.233,8.083,18.644,2.225,5.622,23.735,8.691,12.594,-3.988,18.395,18.899,7.181,2.183,2.796,21.042,7.967,22.507,17.834,4.693,24.926,11.502,-2.558,-0.49,22.838,-1.737,14.055,3.768,18.516,20.506,18.935,9.799,16.709,11.896,-3.134,15.537,12.04,25.255,7.8,9.659,19.527,9.192,27.292,10.538,9.781,6.023,3.443,15.54,13.032,14.234,13.284,8.958,8.105,11.836,18.509,8.04,15.833,0.355,19.574,15.661,20.102,18.9,14.666,1.007,8.157,5.703,33.247,23.752,3.753,22.816,10.358,1.908,12.249,20.328,18.662,2.146,12.51,17.552,16.467,15.142,17.234,0.878,5.784,12.237,8.384,35.542,15.368,9.658,6.931],[13.741,21.738,15.348,1.827,14.176,6.548,-2.896,8.087,6.782,-0.856,8.078,20.674,25.142,14.97,3.819,2.583,9.148,18.334,12.495,-3.004,6.214,6.868,2.962,24.926,14.487,4.535,24.057,19.23,17.184,9.775,3.804,21.469,-2.051,18.214,14.868,-1.797,10.202,9.647,18.527,13.539,2.054,25.995,13.687,10.782,7.291,7.467,18.214,14.371,9.403,18.768,17.756,0.47,15.623,15.376,33.731,3.05,11.528,6.421,19.791,4.056,7.425,23.239,12.341,13.742,23.404,-1.268,6.998,2.098,4.907,14.666,25.088,7.955,14.543,3.472,-4.777,7.256,20.555,6.343,6.751,13.979,5.976,5.393,16.127,12.831,15.423,13.461,8.43,18.884,-2.373,0.594,26.068,21.289,14.766,3.669,13.837,26.476,4.17,9.848,2.132,15.465,6.591,20.082,12.501,9.723,-1.383,8.117,18.636,2.22,5.109,23.548,8.783,12.647,-3.87,18.161,18.956,6.468,1.825,3.152,21.147,7.846,22.122,17.673,4.513,24.506,11.381,-2.12,-0.403,22.709,-1.892,14.23,3.17,18.468,20.656,18.237,9.372,16.634,11.949,-3.365,15.31,12.258,25.224,7.79,10.045,18.968,8.922,27.407,10.673,10.18,5.638,3.766,15.268,13.977,13.837,13.008,9.084,8.473,12.224,18.642,7.961,15.949,0.925,19.547,15.201,19.687,19.198,15.271,1.271,8.007,5.592,32.867,23.358,3.627,22.193,10.688,1.512,12.364,20.238,18.319,2.659,12.726,17.163,16.479,14.436,16.779,1.191,5.934,12.035,8.112,35.505,15.452,9.861,6.568],[13.901,21.806,15.378,1.661,14.539,6.544,-3.096,8.394,6.605,-0.84,8.093,20.674,25.091,15.197,3.793,2.699,9.266,18.274,12.607,-3.294,6.048,6.825,2.921,24.867,14.545,4.585,23.865,19.229,17.017,9.903,3.671,21.415,-2.137,18.479,14.929,-1.789,10.186,9.599,18.594,13.614,2.411,25.923,13.753,10.901,7.357,7.336,18.149,14.364,9.462,18.51,17.422,0.781,15.692,15.273,33.684,2.953,11.709,6.376,19.608,4.157,7.414,23.234,12.513,13.576,23.465,-1.299,7.276,1.455,4.667,14.944,24.926,7.676,14.869,3.441,-4.569,7.216,20.991,6.7,6.912,14.181,5.49,5.533,16.074,13.086,15.019,13.668,8.314,18.866,-2.817,0.394,25.426,21.466,14.671,3.621,14.053,26.634,4.187,9.908,1.513,15.545,5.983,19.974,12.665,9.47,-1.768,8.215,18.263,2.007,5.207,23.698,9.178,12.719,-3.315,18.222,18.857,6.765,2.265,3.289,21.02,7.687,22.202,17.659,4.24,24.516,11.679,-1.927,-0.364,22.353,-2.229,14.579,2.941,18.691,20.133,18.398,9.38,17.114,11.957,-3.417,16.279,12.586,25.007,8.014,10.716,18.639,8.808,27.467,10.588,9.858,5.79,3.994,15.273,13.876,13.922,13.334,9.15,8.598,11.624,18.509,7.048,15.825,1.108,19.605,14.93,19.2,19.056,15.35,1.695,7.78,5.579,32.877,23.391,3.534,21.739,10.722,1.259,12.658,19.882,17.887,2.868,12.36,16.872,16.801,14.614,16.83,1.192,5.912,12.252,7.792,35.365,15.134,9.918,7.121],[14.14,21.971,15.487,1.435,14.521,6.602,-3.192,8.486,6.617,-0.672,8.067,20.609,25.117,15.517,3.808,2.712,9.384,18.16,12.647,-3.545,5.873,6.748,2.799,24.876,14.494,4.569,23.695,19.192,16.915,10.01,3.509,21.247,-2.216,18.658,14.889,-1.822,10.184,9.569,18.758,13.715,2.939,25.639,13.779,10.92,7.291,7.302,17.975,14.41,9.528,18.434,17.162,0.989,15.662,15.302,33.678,2.854,11.845,6.468,19.43,4.143,7.385,23.195,12.515,13.51,23.649,-1.208,6.775,0.885,4.853,15.022,24.695,7.585,14.067,3.306,-5.004,7.021,21.111,7.352,6.902,14.715,5.254,5.618,15.967,13.455,14.969,13.821,8.108,18.834,-2.607,0.134,26.042,21.558,14.973,3.41,14.286,26.7,4.282,10.148,1.242,15.604,6.074,19.733,12.559,9.49,-1.95,8.137,17.944,2.112,5.706,23.806,9.086,12.652,-2.975,18.291,18.997,7.182,2.172,3.447,20.999,7.55,22.005,17.494,4.05,24.867,11.893,-2.42,-0.405,22.391,-2.251,14.797,3.388,18.461,20.345,18.905,9.613,16.942,11.993,-3.104,16.269,12.305,25.144,8.321,11.189,19.075,8.94,26.94,10.501,9.636,5.597,4.35,15.437,13.452,14.364,13.422,9.404,8.416,12.101,18.292,6.71,15.827,1.278,19.097,15.194,19.399,18.955,14.9,1.977,7.443,5.541,32.961,23.393,3.945,21.721,10.786,1.065,12.024,19.55,17.835,2.855,12.543,16.986,16.257,15.379,16.583,1.094,6.026,12.528,7.881,35.563,15.098,9.983,7.546],[14.267,22.2,15.549,1.211,14.241,6.62,-3.186,8.479,6.76,-0.646,8.007,20.58,25.149,15.816,3.824,2.403,9.518,18.131,12.66,-3.62,5.692,6.898,2.677,24.96,14.456,4.575,23.632,19.258,16.878,10.067,3.509,21.173,-2.301,18.676,14.783,-1.847,10.147,9.559,18.904,13.88,3.267,25.409,13.76,11.005,7.378,7.195,17.67,14.489,9.636,18.63,17.106,1.021,15.537,15.327,33.64,2.709,11.908,6.64,19.248,4.139,7.36,23.045,12.365,13.325,23.972,-0.781,6.616,1.308,4.964,15.204,24.502,7.939,13.785,2.711,-4.901,7.384,20.986,6.891,6.579,14.958,5.112,5.676,15.592,13.263,15.759,13.6,8.219,18.782,-2.084,0.594,26.412,21.096,15.488,3.169,13.737,26.47,4.062,10.411,1.651,15.503,6.254,19.871,12.313,10.104,-1.835,8.256,18.114,2.172,5.626,23.556,9.004,12.589,-3.557,18.021,19.039,7.433,2.055,3.422,21.173,7.295,21.874,17.274,4.35,24.353,11.814,-2.478,-0.575,22.52,-2.353,13.843,3.02,18.668,20.478,19.043,9.541,17.06,11.92,-3.224,15.422,12.299,24.962,7.851,11.181,19.434,9.001,26.485,10.862,9.996,5.488,4.813,15.644,13.801,14.087,13.009,9.471,8.385,12.264,18.617,7.434,15.912,1.846,18.851,15.407,19.75,18.843,14.618,2.206,7.6,5.55,33.303,23.747,4.078,22.554,10.974,1.122,12.128,19.734,18.176,2.664,13.098,17.259,16.439,15.073,16.334,1.342,5.852,12.867,8.079,35.572,14.943,10.355,7.465],[14.239,22.422,15.622,1.056,14.018,6.596,-3.038,8.362,7.001,-0.506,7.989,20.682,25.142,15.965,3.895,2.084,9.725,18.183,12.421,-3.604,5.528,7.076,2.704,25.051,14.517,4.568,23.523,19.441,16.863,10.1,3.6,21.263,-2.59,18.586,14.483,-1.798,10.04,9.457,19.053,14.24,3.357,25.294,13.729,11.107,7.584,7.236,17.534,14.458,9.753,18.904,17.148,1.052,15.361,15.386,33.69,2.485,11.94,6.791,19.27,4.18,7.342,22.971,12.186,13.133,23.959,-1.221,6.81,1.604,5.303,15.52,25.156,8.282,14.133,2.422,-4.534,7.674,21.151,6.547,6.304,15.02,5.479,5.622,15.849,12.778,15.151,13.312,8.238,18.83,-2.072,0.018,25.978,21.13,15.207,3.16,14.1,26.484,3.943,10.422,1.421,15.622,6.012,19.974,12.278,10.122,-1.836,8.321,17.791,1.581,5.154,23.397,9.414,12.793,-4.542,17.84,19.248,7.402,2.363,3.147,21.243,7.022,21.893,17.52,4.674,24.076,11.844,-2.199,-0.797,22.334,-2.676,14.173,2.48,18.702,20.017,19.294,9.281,17.324,11.97,-3.336,15.296,12.322,24.505,7.995,10.516,19.375,8.913,26.759,11.243,9.79,5.416,4.949,15.97,13.702,13.905,12.943,9.535,8.839,11.947,18.055,7.33,16.185,2.215,18.737,15.159,19.598,18.439,14.718,2.128,8.351,5.603,33.314,23.572,3.562,23.152,10.878,1.392,11.832,19.387,18.047,2.636,13.161,17.162,16.943,14.582,16.829,1.504,5.924,12.97,8.198,35.248,14.74,10.248,7.118],[14.164,22.519,15.49,1.035,13.87,6.598,-2.89,8.205,7.33,-0.616,8.058,20.968,25.223,15.903,3.961,1.896,9.835,18.267,12.322,-3.72,5.448,7.179,2.868,25.091,14.587,4.494,23.42,19.755,16.898,10.172,3.54,21.281,-3.0,18.618,14.498,-1.713,9.723,9.34,19.046,14.504,3.359,25.2,13.736,11.032,7.872,7.271,17.54,14.428,9.921,18.893,17.302,1.131,15.126,15.516,33.838,2.225,11.895,7.104,19.378,4.265,7.323,22.98,12.114,12.955,24.396,-0.979,7.237,1.35,5.567,15.113,25.206,8.246,14.717,2.375,-4.691,7.389,21.504,6.451,6.805,14.638,5.399,5.767,16.567,12.857,14.818,13.444,8.369,19.135,-2.367,0.431,25.793,21.656,15.175,3.385,13.698,26.212,3.536,10.399,1.452,15.731,5.877,20.013,11.751,9.883,-2.09,8.12,18.428,0.961,4.763,23.622,9.225,12.788,-4.922,18.408,19.303,6.971,2.155,3.174,21.553,6.836,21.837,17.262,4.226,24.254,11.803,-2.001,-1.241,22.106,-2.587,13.781,2.718,18.869,20.568,19.582,9.15,17.214,11.668,-3.486,15.372,12.414,24.519,8.608,9.976,19.339,8.672,26.645,10.909,9.261,5.794,4.943,16.014,13.679,13.789,13.249,9.367,9.069,11.752,17.546,7.019,15.913,2.023,18.887,15.256,19.499,18.854,15.406,1.737,8.513,5.724,32.583,22.682,3.859,23.088,10.26,1.537,11.638,19.528,17.689,2.728,12.707,17.042,16.506,14.505,16.522,1.288,5.99,13.028,8.137,35.623,14.292,10.129,6.748],[14.112,22.591,15.173,1.115,13.862,6.701,-2.928,8.082,7.57,-0.718,8.194,21.299,25.364,15.769,4.119,1.853,9.701,18.384,12.168,-3.867,5.342,7.096,3.001,25.01,14.504,4.25,23.307,19.99,17.196,10.159,3.473,21.209,-3.169,19.006,14.664,-1.661,9.297,9.327,18.939,14.38,3.314,25.032,13.915,10.858,8.302,7.281,17.578,14.426,9.894,18.717,17.37,1.259,15.037,15.493,33.951,1.986,11.897,7.424,19.482,4.357,7.36,22.94,11.961,12.906,24.314,-0.911,7.97,1.13,5.957,15.286,24.478,7.603,14.513,2.328,-4.825,6.925,21.836,6.558,7.355,14.658,5.254,5.933,15.942,13.066,15.217,13.088,8.287,19.382,-2.162,0.415,26.371,21.612,15.463,3.476,13.373,26.389,3.414,10.276,1.827,15.654,5.788,19.918,12.119,10.22,-2.408,8.181,18.523,0.478,4.524,23.546,8.819,12.676,-5.344,18.308,19.418,7.027,2.101,3.392,21.886,6.98,21.92,17.39,4.253,24.658,11.87,-1.915,-1.465,22.344,-2.711,13.679,2.642,18.877,20.406,19.443,9.155,17.148,11.0,-2.94,15.472,12.369,24.709,8.192,10.2,19.095,8.731,26.229,10.897,8.916,5.795,4.71,15.811,14.308,13.696,13.318,9.857,9.105,11.855,18.058,7.209,15.592,1.645,18.879,15.262,19.316,18.902,14.884,2.311,8.843,5.533,32.948,22.882,4.617,22.108,10.332,1.29,11.326,19.868,17.794,2.804,12.144,17.21,16.57,14.189,16.673,1.121,6.043,12.949,7.558,35.627,14.301,10.528,6.951],[14.035,22.707,14.913,1.193,13.862,6.773,-3.194,8.025,7.707,-0.704,8.292,21.415,25.443,15.834,4.424,1.891,9.45,18.373,12.026,-4.007,5.163,6.91,3.152,24.897,14.375,4.002,23.356,20.052,17.379,10.129,3.529,21.101,-3.06,19.46,14.718,-1.486,9.001,9.458,18.839,14.164,3.254,24.836,14.029,10.859,8.544,7.194,17.676,14.524,9.81,18.557,17.328,1.51,15.046,15.423,34.059,1.813,11.913,7.569,19.583,4.587,7.289,22.83,11.814,12.932,24.574,-1.28,8.264,0.661,6.093,15.188,24.776,7.214,13.729,2.719,-4.869,7.157,21.621,6.451,7.233,14.775,5.435,6.113,15.892,13.112,14.68,12.88,8.311,19.596,-1.929,0.168,26.079,22.016,15.264,3.513,13.272,26.341,3.261,10.125,1.772,15.389,5.256,20.016,12.544,9.919,-2.434,8.25,18.457,0.492,3.733,23.505,8.635,12.692,-5.434,17.81,19.739,7.317,2.433,3.36,21.83,6.696,21.858,18.116,4.174,24.883,11.59,-1.465,-1.297,22.651,-3.0,14.632,2.35,18.973,20.127,19.363,8.899,16.923,10.889,-2.873,15.356,12.699,24.349,8.388,10.059,19.009,9.073,26.107,11.297,8.797,5.42,4.521,15.974,13.914,14.014,13.807,9.784,9.622,12.212,18.599,7.113,16.053,1.732,18.919,15.165,19.277,18.218,14.043,2.72,9.081,5.53,33.406,23.256,4.264,21.292,10.049,0.793,11.498,19.466,18.017,3.023,11.811,16.943,16.762,14.397,16.809,1.654,6.463,13.025,7.627,35.828,14.395,10.46,7.85],[13.865,22.914,14.986,1.268,13.733,6.771,-3.523,7.89,7.732,-0.704,8.336,21.516,25.448,15.923,4.62,1.9,9.287,18.334,12.002,-4.012,4.912,6.711,3.298,24.873,14.19,3.812,23.541,20.063,17.298,10.028,3.625,21.116,-3.013,19.779,14.772,-1.305,8.987,9.616,18.809,13.997,3.203,24.668,14.12,11.118,8.571,6.937,17.785,14.762,9.828,18.473,17.318,1.848,15.048,15.375,34.363,1.677,11.773,7.617,19.592,4.773,7.241,22.69,11.691,12.984,24.146,-1.361,7.536,0.166,6.173,15.212,25.094,7.975,13.183,2.842,-5.198,8.019,21.242,6.092,6.825,14.719,5.785,6.371,15.865,12.537,14.482,13.521,8.452,19.668,-2.259,0.242,26.523,21.822,15.376,3.974,13.101,26.257,3.43,10.091,1.934,15.518,5.162,20.106,11.985,9.592,-2.492,8.087,18.35,0.902,3.103,23.165,8.983,12.503,-4.863,18.142,20.033,7.464,2.519,3.431,21.802,6.416,21.972,17.881,4.107,24.82,11.722,-1.034,-1.27,22.053,-2.862,13.947,2.273,19.271,20.285,19.746,8.862,16.838,10.789,-2.666,15.171,12.552,23.904,9.113,10.333,19.354,8.816,25.905,11.081,8.542,5.372,4.762,15.828,13.242,13.929,13.717,9.534,9.269,12.098,18.298,7.044,16.103,1.818,19.047,15.141,19.288,18.827,14.509,2.197,8.749,5.473,33.196,23.068,3.911,20.887,9.861,0.66,12.006,19.403,17.939,3.131,12.283,16.716,16.868,14.818,16.507,1.848,6.594,12.601,8.014,35.94,14.77,10.21,8.213],[13.607,22.955,15.097,1.275,13.606,6.869,-3.79,7.846,7.556,-0.691,8.37,21.618,25.47,15.969,4.714,1.973,9.346,18.39,11.903,-3.922,4.802,6.493,3.349,24.814,13.986,3.616,23.708,20.062,17.11,10.012,3.652,21.063,-3.133,20.078,14.685,-0.987,9.042,9.66,18.861,13.794,3.098,24.519,13.998,11.298,8.502,6.88,17.802,14.99,9.806,18.501,17.477,2.176,15.044,15.435,34.523,1.546,11.628,7.599,19.53,4.703,7.283,22.43,11.575,13.208,24.047,-0.903,7.314,-0.016,6.044,15.378,25.495,7.727,13.284,2.527,-5.412,8.383,21.411,6.041,6.605,14.531,6.258,6.579,16.011,12.112,14.729,13.55,8.399,19.9,-2.481,0.069,26.444,21.416,15.774,4.176,13.341,26.371,3.676,10.319,1.953,15.552,5.526,20.024,11.659,9.637,-2.172,7.682,17.517,1.351,3.457,23.518,8.959,12.455,-4.797,18.551,20.2,7.405,2.421,3.643,21.95,6.277,22.121,17.396,4.101,24.792,11.802,-1.255,-1.311,22.008,-3.148,13.545,2.69,19.451,20.112,19.993,9.236,17.063,10.724,-2.607,15.183,12.886,24.192,8.845,11.093,19.569,8.744,25.832,11.052,8.471,5.348,4.849,15.632,13.216,13.591,13.243,9.91,9.605,12.578,18.173,6.446,15.979,2.024,19.238,15.266,19.207,18.815,14.973,2.474,8.62,5.467,33.207,22.773,4.296,20.759,9.935,0.855,12.161,19.666,17.762,3.206,12.617,16.681,16.736,14.364,16.499,1.671,6.456,12.653,8.042,36.093,14.958,10.094,8.122],[13.446,22.99,15.143,1.234,13.51,7.139,-3.745,7.952,7.293,-0.602,8.406,21.658,25.43,16.055,4.605,2.141,9.587,18.475,11.75,-3.837,4.854,6.348,3.092,24.817,14.073,3.582,23.735,20.192,16.837,10.001,3.573,21.001,-3.407,20.2,14.516,-0.688,9.084,9.508,18.87,13.811,3.091,24.588,13.878,11.378,8.382,7.113,17.864,15.042,9.779,18.489,17.723,2.335,14.812,15.541,34.608,1.459,11.673,7.518,19.495,4.608,7.458,22.135,11.518,13.41,23.696,-0.532,7.265,0.42,5.643,15.468,25.064,7.085,13.367,2.213,-5.56,7.896,21.683,6.345,6.907,14.367,6.236,6.355,16.113,12.544,14.349,12.917,8.742,19.978,-2.572,0.037,26.464,21.373,15.421,3.929,13.328,26.446,3.462,10.329,1.662,15.01,5.209,19.947,11.354,9.691,-2.067,7.362,17.595,1.414,3.805,23.688,8.923,12.329,-4.629,18.398,19.976,7.011,2.621,3.669,21.912,6.498,22.331,17.743,3.528,24.837,11.563,-1.25,-1.753,22.479,-3.429,13.796,2.946,19.832,20.057,19.786,9.897,17.056,10.274,-2.059,15.23,12.875,24.44,8.215,11.614,19.422,8.883,25.969,11.027,8.785,5.418,4.646,15.672,13.58,14.081,13.179,9.835,9.9,12.461,18.355,6.249,16.242,1.986,19.245,15.369,19.277,18.19,14.169,2.488,8.757,5.624,33.177,22.835,4.474,20.993,9.827,1.095,11.998,19.52,17.828,3.267,12.175,16.627,17.113,14.017,16.762,2.083,6.471,12.617,8.033,35.9,14.982,10.276,8.49],[13.284,22.957,15.078,1.252,13.405,7.392,-3.687,8.035,6.936,-0.522,8.415,21.611,25.323,16.065,4.451,2.192,9.708,18.516,11.611,-3.747,4.966,6.226,2.931,24.973,14.181,3.584,23.675,20.263,16.707,10.032,3.539,21.066,-3.696,20.114,14.386,-0.475,9.044,9.322,18.764,14.049,3.195,24.706,13.842,11.44,8.174,7.175,18.063,14.896,9.761,18.413,17.813,2.336,14.446,15.786,34.668,1.399,11.806,7.585,19.558,4.6,7.659,21.984,11.529,13.525,24.027,-0.845,7.094,0.824,6.005,15.944,24.486,7.699,13.46,2.763,-5.455,7.483,21.585,6.528,7.391,14.359,6.203,6.392,15.562,13.42,14.659,12.772,9.034,19.731,-2.395,0.502,26.12,21.45,15.441,3.897,13.012,26.331,3.707,10.551,1.575,15.437,5.281,20.243,11.952,10.294,-1.957,7.213,17.835,1.213,3.864,23.385,8.793,12.458,-4.463,18.258,20.141,7.209,2.234,3.165,22.147,6.481,22.046,17.443,3.385,25.039,11.574,-0.593,-2.03,22.498,-3.423,14.216,2.595,19.619,20.269,19.743,9.563,16.79,10.067,-1.857,15.064,12.355,24.445,8.187,11.697,19.141,8.736,26.136,10.629,8.936,5.326,4.665,15.663,13.653,14.825,13.895,9.196,9.391,11.674,18.769,7.272,16.302,1.764,18.827,15.268,19.151,18.488,14.016,2.341,8.447,5.788,33.267,22.475,4.262,20.633,9.707,1.386,12.101,19.215,17.966,3.164,11.595,16.902,17.288,13.835,17.157,1.86,6.326,12.857,8.392,35.871,15.003,10.398,8.302],[13.086,22.922,14.958,1.394,13.477,7.455,-3.752,8.166,6.658,-0.509,8.399,21.484,25.104,16.114,4.381,2.233,9.804,18.506,11.751,-3.643,5.011,6.195,2.971,25.108,14.39,3.606,23.494,20.304,16.478,10.21,3.463,21.107,-3.838,19.864,14.342,-0.42,8.949,9.172,18.644,14.154,3.345,24.71,13.904,11.487,8.001,7.048,18.287,14.783,9.581,18.353,17.937,2.199,14.188,16.114,34.675,1.32,11.878,7.617,19.64,4.537,7.81,21.874,11.603,13.714,24.109,-1.039,7.116,1.197,5.832,15.78,24.946,7.754,13.389,3.064,-5.119,7.595,21.25,6.51,7.336,14.041,6.26,6.207,15.426,13.149,14.848,12.94,9.058,19.804,-2.258,0.712,26.157,21.585,15.805,3.832,13.137,26.148,3.608,10.421,1.676,15.904,6.17,20.245,12.039,9.768,-1.867,7.54,18.202,0.984,3.743,23.431,8.752,12.915,-4.179,18.573,20.417,7.233,2.014,3.574,22.03,6.216,22.107,17.191,3.723,24.948,11.822,-0.421,-2.057,22.466,-3.636,14.589,2.468,18.95,20.377,19.764,8.794,16.775,10.221,-1.785,14.835,12.149,24.199,8.396,11.502,18.878,8.443,26.103,10.765,8.952,5.128,4.877,15.858,14.118,14.579,13.618,9.474,8.988,11.769,18.801,6.82,16.298,2.015,19.602,15.362,18.941,18.532,14.134,2.687,8.206,6.099,33.374,22.251,4.197,20.232,9.667,1.646,12.314,19.684,17.93,2.908,11.774,16.773,17.421,13.976,16.962,2.024,6.41,13.052,8.457,36.095,15.32,10.374,8.118],[12.839,22.778,14.947,1.625,13.673,7.393,-3.818,8.249,6.564,-0.566,8.355,21.46,25.07,16.209,4.343,2.268,9.693,18.468,12.04,-3.496,4.953,6.274,2.927,25.21,14.757,3.764,23.488,20.311,16.333,10.29,3.412,21.175,-3.79,19.451,14.353,-0.472,8.842,9.01,18.576,14.302,3.63,24.576,13.851,11.484,7.866,6.866,18.643,14.814,9.463,18.325,17.988,2.054,14.145,16.319,34.761,1.194,11.749,7.521,19.742,4.57,7.845,21.785,11.646,13.977,24.292,-0.631,6.876,1.367,5.066,15.365,24.509,7.565,12.944,2.803,-5.192,8.005,21.406,6.447,6.701,13.977,6.414,6.215,15.731,12.612,14.353,12.572,9.103,19.573,-2.188,0.275,26.266,21.628,15.588,3.475,13.783,26.214,3.59,9.994,1.663,15.925,5.957,19.995,11.92,10.027,-1.646,7.602,17.755,1.173,3.576,23.572,9.215,13.092,-4.527,18.363,20.057,6.996,2.322,3.55,22.079,6.278,22.018,16.976,3.997,24.294,12.142,-1.031,-1.991,22.443,-4.078,15.093,2.706,19.256,20.219,19.992,8.84,16.751,10.533,-1.841,14.679,12.506,23.874,8.235,11.767,18.817,8.725,26.04,10.421,9.113,5.288,5.278,15.874,13.95,13.994,13.352,9.351,9.343,12.525,18.67,6.021,16.225,2.204,20.101,15.965,18.378,18.848,14.228,2.486,8.388,6.066,33.483,21.921,3.534,20.103,9.861,1.667,12.648,20.151,17.881,2.589,12.109,16.399,17.815,14.089,17.268,2.559,6.357,13.065,8.501,36.128,15.734,10.28,8.35],[12.574,22.739,14.993,1.811,13.683,7.395,-3.841,8.162,6.534,-0.742,8.273,21.362,25.14,16.155,4.316,2.284,9.482,18.358,12.257,-3.466,4.785,6.3,2.823,25.188,15.027,3.96,23.463,20.301,16.391,10.384,3.451,21.491,-3.694,19.075,14.345,-0.648,8.899,8.987,18.547,14.368,3.922,24.443,13.745,11.548,7.805,6.826,18.756,14.807,9.385,18.278,17.986,2.035,14.271,16.508,34.923,1.0,11.508,7.443,19.779,4.419,7.807,21.711,11.678,14.233,23.968,-0.811,6.374,1.741,4.799,15.895,24.723,7.731,12.255,2.9,-5.398,8.325,21.237,6.544,6.538,14.037,6.242,6.2,15.332,12.596,14.947,12.851,9.058,19.507,-2.428,0.38,25.877,21.495,15.669,3.564,13.688,26.947,3.939,9.826,1.52,15.835,5.266,20.082,12.119,9.938,-1.722,7.766,17.286,1.757,3.654,24.085,9.303,13.221,-4.191,18.34,19.96,7.052,2.245,3.511,22.208,6.285,21.852,17.23,4.204,24.818,12.113,-1.287,-1.896,22.692,-3.855,15.25,2.622,19.425,20.192,19.85,8.83,16.662,10.714,-1.543,15.156,12.281,23.71,7.901,11.759,19.374,8.668,25.739,9.991,8.888,5.624,5.373,16.241,13.607,13.906,13.789,9.596,9.222,12.729,19.208,6.255,16.172,2.552,19.761,16.019,19.009,18.783,13.849,2.219,8.515,6.015,33.515,21.9,3.507,19.903,9.913,1.579,12.961,19.91,18.043,2.506,11.903,16.449,18.101,14.323,17.667,2.006,6.221,12.556,8.625,36.338,15.836,9.938,8.326],[12.388,22.782,15.04,1.858,13.596,7.383,-3.81,7.985,6.483,-0.811,8.216,21.196,25.204,16.141,4.237,2.43,9.283,18.354,12.199,-3.517,4.644,6.354,2.734,25.3,15.117,4.063,23.539,20.408,16.613,10.369,3.542,21.858,-3.564,18.961,14.364,-0.645,9.1,9.069,18.621,14.266,3.925,24.286,13.719,11.607,7.835,6.994,18.735,14.768,9.283,18.406,18.024,1.994,14.465,16.679,34.95,0.827,11.26,7.367,19.725,4.167,7.816,21.686,11.719,14.445,23.559,-1.079,6.412,1.916,5.033,15.835,24.712,7.626,11.601,3.33,-5.636,8.297,21.238,6.359,6.842,13.529,6.657,6.076,15.011,13.072,15.592,12.712,8.939,19.455,-2.925,-0.084,26.378,21.237,15.594,3.724,13.403,26.825,3.912,9.763,1.337,16.19,5.363,19.942,12.109,9.842,-1.68,7.834,17.089,1.782,4.032,24.155,9.155,13.382,-4.128,18.747,20.073,7.027,2.159,3.89,22.195,6.174,22.116,17.523,4.071,24.981,12.111,-1.49,-1.82,22.676,-3.137,14.788,2.395,18.506,20.677,19.348,8.598,16.696,10.841,-1.973,15.795,12.044,23.556,8.16,12.151,18.889,8.403,25.601,10.468,8.785,5.276,5.551,15.954,13.987,14.121,13.394,9.954,9.373,12.331,18.951,6.639,16.21,2.715,20.056,15.654,19.608,18.367,13.354,2.651,8.522,5.958,33.763,22.299,3.791,19.884,9.86,1.481,13.058,19.567,18.067,2.333,11.893,16.54,18.017,14.305,17.322,1.668,6.016,12.015,8.394,36.533,15.94,9.555,8.165],[12.221,22.885,15.095,1.756,13.543,7.45,-3.875,7.88,6.523,-0.824,8.257,21.073,25.281,16.02,4.208,2.608,9.215,18.463,11.981,-3.538,4.748,6.397,2.689,25.385,15.163,4.077,23.608,20.45,16.686,10.212,3.589,22.207,-3.362,18.879,14.388,-0.71,9.213,9.122,18.533,14.043,3.822,24.126,13.611,11.705,8.044,7.057,18.871,14.828,9.304,18.556,17.969,1.911,14.603,16.581,34.929,0.685,11.078,7.288,19.616,4.046,7.862,21.825,11.765,14.544,23.099,-0.592,6.02,2.132,4.912,15.839,24.602,7.686,11.025,2.976,-5.572,7.63,21.527,6.137,6.583,13.491,6.685,6.078,15.746,13.081,14.847,12.569,9.151,19.232,-2.882,-0.49,26.329,21.32,15.712,3.359,13.497,26.645,3.548,9.893,1.438,16.435,5.382,20.002,12.426,9.436,-1.87,7.907,17.654,1.538,5.154,23.896,8.997,13.418,-3.749,18.628,20.395,7.056,2.388,3.392,22.241,6.053,22.333,17.43,3.643,24.881,11.83,-1.238,-1.845,23.3,-2.855,14.227,2.694,18.207,20.83,19.152,9.097,16.809,11.039,-2.108,16.127,11.87,23.247,8.327,12.307,18.676,8.84,25.222,10.53,9.202,5.488,5.448,15.614,13.865,13.809,13.776,9.164,9.561,12.101,18.771,6.99,16.043,2.256,20.021,15.797,19.202,18.997,14.071,2.773,8.401,6.082,33.874,22.545,3.467,20.041,10.006,1.31,13.023,19.648,18.147,2.031,11.774,16.847,18.062,14.069,17.341,2.021,5.771,12.022,8.232,36.636,16.058,9.194,8.236],[12.064,22.904,15.114,1.619,13.53,7.516,-3.798,7.95,6.397,-0.712,8.191,21.061,25.342,15.897,4.109,2.689,9.268,18.449,11.854,-3.499,4.854,6.557,2.882,25.499,15.138,4.054,23.708,20.466,16.798,9.965,3.513,22.331,-3.179,18.718,14.324,-0.787,9.387,9.344,18.301,13.804,3.688,23.994,13.534,11.757,8.099,7.054,19.031,14.821,9.164,18.59,17.997,1.819,14.711,16.44,35.029,0.545,11.087,7.276,19.631,3.968,7.951,22.008,11.802,14.539,23.705,-0.84,6.318,2.097,4.919,15.343,24.853,7.258,11.111,2.381,-5.65,7.737,21.298,6.44,6.553,13.733,6.33,5.965,15.964,12.604,14.883,12.56,9.103,19.213,-2.877,-0.074,26.128,21.229,15.584,3.569,13.538,26.623,3.222,9.752,1.354,16.171,5.511,20.159,12.02,9.738,-1.765,7.662,18.355,1.938,5.293,23.861,8.832,13.412,-3.249,18.344,19.903,7.342,2.491,3.499,22.403,6.368,22.133,17.376,3.199,25.049,11.66,-0.975,-1.528,23.623,-3.092,14.399,2.596,19.007,21.323,19.395,9.272,16.6,11.057,-2.401,16.038,11.812,23.318,8.383,11.486,19.368,8.943,25.311,10.399,9.122,5.944,5.078,15.554,13.808,13.78,13.751,8.943,9.619,12.361,19.014,6.306,16.273,2.173,20.436,15.666,19.169,19.098,14.52,2.622,8.249,6.287,33.81,22.548,3.195,20.206,10.103,1.189,13.113,19.495,17.92,1.944,11.446,16.815,17.871,13.882,17.258,2.188,5.607,11.697,8.395,36.512,15.996,9.318,8.198],[11.879,22.996,15.185,1.495,13.507,7.484,-3.701,8.094,6.27,-0.5,8.128,21.053,25.415,15.811,3.977,2.808,9.394,18.364,11.715,-3.328,4.967,6.724,3.233,25.678,14.956,3.898,23.804,20.281,17.059,9.684,3.422,22.38,-3.199,18.662,14.325,-0.866,9.532,9.689,18.297,13.674,3.555,24.156,13.507,11.567,7.971,7.035,19.13,14.755,8.95,18.619,18.112,1.711,14.77,16.278,35.12,0.517,11.176,7.28,19.644,3.889,8.147,22.101,11.685,14.435,23.47,-0.896,6.515,1.414,4.745,15.485,24.83,6.943,11.154,2.423,-5.323,8.082,21.111,6.869,6.58,13.485,5.959,5.779,15.281,12.853,14.799,12.614,9.106,19.272,-2.644,0.341,26.313,21.44,15.249,3.897,13.471,27.274,3.135,9.753,1.899,16.066,5.414,20.009,11.913,10.069,-1.423,7.783,18.709,1.515,4.381,24.339,9.256,13.306,-3.151,18.767,19.657,7.526,2.464,3.888,22.101,6.658,22.251,17.379,3.92,25.002,11.286,-1.262,-1.433,23.26,-2.891,14.483,2.119,18.442,21.17,19.185,9.429,16.365,11.29,-2.236,15.177,12.199,23.276,8.415,11.022,18.658,8.956,25.869,9.698,9.341,5.63,5.151,15.488,13.543,14.089,13.093,9.358,9.518,12.693,18.937,6.091,16.332,2.207,20.372,15.293,19.455,18.614,13.704,2.406,8.267,6.329,33.637,22.697,3.155,20.496,9.88,0.809,13.114,19.484,17.932,1.758,11.949,16.725,17.853,14.496,17.32,2.436,5.44,11.89,8.381,36.789,16.038,9.573,8.134],[11.509,22.994,15.09,1.45,13.564,7.38,-3.549,8.325,6.278,-0.205,8.203,21.03,25.467,15.776,3.968,2.814,9.55,18.387,11.577,-3.037,5.169,6.746,3.526,26.071,14.779,3.664,23.887,19.901,17.245,9.444,3.34,22.332,-3.31,18.491,14.211,-1.006,9.62,9.94,18.321,13.712,3.524,24.467,13.452,11.33,7.908,6.964,19.038,14.726,8.789,18.643,18.15,1.614,14.762,16.113,35.198,0.587,11.37,7.217,19.631,3.962,8.223,21.939,11.583,14.291,23.096,-0.246,6.356,1.547,4.43,16.015,24.727,7.439,11.033,2.55,-5.379,7.648,21.386,6.734,6.555,13.088,6.198,5.729,16.026,12.694,14.73,12.853,8.931,19.303,-2.518,0.407,26.029,21.734,15.573,3.534,13.074,27.719,3.688,9.902,2.34,16.1,5.295,19.881,11.957,9.652,-1.315,7.896,18.714,1.348,4.704,25.002,9.246,12.95,-3.674,18.977,19.682,7.458,3.208,3.261,21.7,6.753,22.429,17.985,3.743,25.275,11.202,-1.709,-1.754,23.07,-2.944,15.132,2.318,18.015,21.087,19.015,9.855,16.503,11.326,-2.033,14.562,12.141,23.529,8.611,11.219,18.49,9.304,26.149,9.116,9.766,5.593,5.293,15.399,13.247,13.431,12.737,9.164,9.281,11.774,18.696,6.259,15.982,1.975,20.496,15.508,19.421,18.722,13.31,2.325,8.733,6.402,34.16,22.82,2.551,21.536,9.799,0.7,13.027,19.463,18.267,1.793,12.014,17.017,17.362,14.957,17.698,2.094,5.345,12.122,8.606,36.839,15.97,9.446,8.168],[11.099,22.913,15.028,1.742,13.697,7.315,-3.45,8.449,6.415,0.193,8.268,21.03,25.378,15.898,3.948,2.671,9.619,18.487,11.402,-3.05,5.368,6.646,3.788,26.512,14.871,3.63,23.962,19.507,17.439,9.318,3.313,22.339,-3.379,18.185,14.1,-1.193,9.678,10.023,18.34,13.664,3.381,24.665,13.283,11.044,8.057,6.982,18.81,14.58,8.654,18.647,18.138,1.526,14.855,15.943,35.307,0.735,11.508,7.21,19.608,3.942,8.181,21.794,11.553,14.241,23.519,-0.126,6.421,2.507,4.843,15.49,25.075,8.142,10.681,2.712,-5.287,7.701,21.183,6.926,6.774,12.715,6.169,5.738,16.034,12.879,15.255,12.724,8.76,19.296,-2.498,0.672,26.3,21.599,15.493,3.359,12.956,28.179,4.259,9.697,2.217,15.698,5.645,19.917,11.931,9.427,-1.218,8.237,18.705,2.258,5.081,25.323,8.93,12.959,-4.04,18.53,19.361,7.316,3.197,2.772,21.287,6.993,22.285,18.298,3.614,25.481,11.182,-2.135,-1.759,23.143,-3.227,14.962,2.952,18.396,20.95,18.967,9.265,16.656,11.378,-1.936,15.19,11.729,23.945,8.572,11.479,18.988,9.431,26.208,9.822,9.843,6.057,4.988,15.201,13.461,13.315,12.946,8.445,9.393,11.571,18.642,5.917,15.77,2.129,20.289,15.973,19.555,19.153,13.199,2.026,8.626,6.373,34.267,22.766,2.368,22.233,9.682,1.294,12.744,19.707,17.938,1.827,11.778,17.089,17.015,14.617,17.636,1.776,4.653,12.141,8.515,36.73,15.514,9.778,7.794],[10.759,22.948,15.171,2.26,13.782,7.315,-3.388,8.506,6.797,0.522,8.304,20.961,25.309,15.89,3.922,2.61,9.544,18.544,11.271,-3.187,5.549,6.633,3.884,26.857,15.038,3.895,23.971,19.27,17.598,9.35,3.402,22.404,-3.388,18.012,14.19,-1.355,9.63,9.9,18.382,13.411,3.203,24.828,13.14,10.954,8.2,7.116,18.556,14.37,8.638,18.728,18.083,1.405,14.991,15.901,35.306,0.978,11.585,7.084,19.574,3.731,8.135,21.826,11.495,14.225,23.713,-0.301,6.178,2.646,5.326,15.351,25.009,7.821,10.588,3.118,-5.28,7.961,21.311,7.024,6.712,12.531,5.67,5.676,15.039,13.131,14.88,12.876,8.734,19.027,-2.887,0.972,26.341,21.498,15.422,3.074,12.978,28.378,4.407,9.424,2.534,16.044,6.049,20.178,11.405,9.684,-1.47,8.144,18.896,2.259,4.375,25.235,8.267,13.195,-4.168,18.577,18.885,7.07,3.332,3.48,20.99,7.152,22.353,18.268,4.087,25.013,11.192,-1.87,-1.468,23.339,-3.139,14.312,2.494,18.469,21.089,18.806,9.245,16.74,11.426,-2.49,15.77,11.342,23.624,8.71,10.848,18.4,9.349,26.378,9.727,9.573,6.039,4.847,15.239,13.736,13.564,13.429,8.62,9.806,12.035,18.622,5.884,15.99,1.817,19.852,15.403,18.931,18.828,13.602,1.838,8.381,6.45,33.915,22.742,2.081,21.985,9.92,1.528,12.59,19.785,17.78,1.866,11.791,16.948,17.271,14.348,17.257,2.293,3.961,12.482,7.979,36.93,15.501,9.696,7.92],[10.501,23.116,15.059,2.742,13.885,7.313,-3.521,8.424,7.18,0.677,8.238,20.819,25.338,15.805,3.867,2.612,9.419,18.664,11.105,-3.331,5.688,6.689,3.895,26.861,15.143,4.171,23.915,19.158,17.847,9.472,3.589,22.482,-3.304,17.97,14.393,-1.469,9.641,9.808,18.243,13.252,3.106,24.904,13.076,10.958,8.195,7.198,18.345,14.204,8.664,18.624,17.979,1.29,15.068,15.868,35.267,1.312,11.694,7.016,19.67,3.465,8.095,21.899,11.529,14.311,23.613,-0.046,6.615,2.858,5.571,15.432,24.645,7.923,10.306,3.42,-5.333,7.729,21.621,6.714,6.601,12.288,5.817,5.567,15.124,12.654,15.086,13.178,8.765,18.948,-2.619,1.338,26.051,21.312,15.232,2.796,13.019,28.36,4.191,9.295,2.746,16.37,6.173,20.411,10.842,9.403,-1.543,7.876,18.528,1.407,4.02,25.573,8.169,13.391,-3.833,18.625,18.482,7.178,3.919,4.058,21.007,7.236,22.279,17.82,3.916,24.91,10.937,-1.872,-1.671,23.753,-3.191,14.124,2.241,18.107,21.56,18.725,9.837,16.714,11.298,-2.981,16.114,11.293,23.682,8.771,10.466,18.552,9.268,26.605,8.742,9.023,6.471,4.735,15.141,13.133,13.678,13.785,9.278,9.731,11.375,18.43,6.41,15.806,1.452,19.763,14.852,19.014,18.665,14.055,1.762,8.412,6.366,33.962,22.858,2.106,21.466,10.017,1.328,12.625,19.591,18.04,1.816,11.444,16.714,17.085,14.733,17.044,2.541,3.641,12.34,7.869,36.888,15.609,9.845,7.99],[10.262,23.237,14.941,3.08,13.923,7.333,-3.701,8.268,7.491,0.755,8.035,20.676,25.406,15.602,3.74,2.521,9.258,18.75,10.892,-3.265,5.784,6.86,4.074,26.624,15.248,4.219,23.797,19.12,18.038,9.62,3.79,22.682,-3.29,17.84,14.582,-1.598,9.725,9.883,18.19,13.075,3.088,24.958,13.169,10.704,8.047,7.338,18.287,14.046,8.614,18.412,17.952,1.163,15.063,15.743,35.149,1.605,11.906,7.197,19.807,3.285,8.007,21.934,11.56,14.362,23.783,0.265,7.649,3.218,5.775,15.632,24.548,8.295,9.942,4.218,-5.307,7.436,21.624,6.555,6.571,11.883,6.271,5.333,15.34,12.891,14.962,13.087,8.894,18.874,-2.335,1.456,26.344,20.99,14.934,3.174,12.541,28.256,3.638,9.157,2.619,16.123,5.913,20.415,11.101,9.638,-1.452,7.956,18.671,1.089,4.818,25.452,8.415,13.476,-3.732,19.043,18.971,7.5,3.584,4.017,20.986,7.424,22.2,17.644,3.448,25.231,11.207,-1.76,-1.717,23.443,-2.95,14.743,2.849,18.133,21.147,18.558,9.68,16.534,11.175,-3.088,16.305,11.473,24.045,8.455,10.519,18.299,9.293,26.625,8.559,9.039,5.891,4.296,14.65,12.668,13.392,13.334,9.316,9.265,11.795,18.085,6.742,15.527,1.504,19.66,14.812,19.24,18.973,14.448,1.934,8.569,6.325,34.131,23.058,2.759,21.062,9.89,1.564,12.915,19.651,18.346,1.668,11.552,16.668,16.802,14.874,17.026,1.892,3.143,11.702,8.316,36.79,15.713,10.141,7.745],[10.034,23.249,14.904,3.312,13.823,7.452,-3.698,8.25,7.88,0.757,7.882,20.618,25.493,15.25,3.681,2.358,9.191,18.825,10.735,-3.08,5.892,7.024,4.128,26.284,15.212,4.085,23.67,19.142,18.043,9.954,3.909,22.717,-3.27,17.744,14.797,-1.616,9.825,10.053,18.17,12.952,3.069,25.032,13.263,10.444,7.719,7.473,18.364,13.842,8.656,18.437,18.128,0.957,15.057,15.556,34.926,1.875,12.039,7.231,19.926,3.277,7.983,22.018,11.542,14.329,23.891,0.115,7.695,3.335,6.13,15.505,25.014,7.882,9.701,4.82,-5.208,7.476,21.44,6.617,6.277,11.728,6.141,5.361,15.083,12.982,15.062,12.937,8.864,18.759,-2.321,1.174,26.165,20.442,14.764,3.664,12.147,28.034,3.216,8.974,2.531,16.159,6.434,20.238,11.602,9.567,-1.216,8.607,19.648,1.203,5.324,25.067,8.716,13.363,-3.592,19.148,18.916,7.445,3.926,3.599,20.892,7.43,22.467,18.461,3.944,25.127,11.611,-2.03,-1.542,23.23,-2.87,15.491,3.346,17.983,21.175,18.537,9.633,16.332,11.379,-2.797,16.359,11.861,24.173,8.607,9.894,18.358,9.255,26.319,8.992,9.405,6.07,4.529,14.8,12.191,12.912,12.694,8.43,9.039,11.525,18.581,6.944,15.329,1.475,19.96,15.723,19.208,18.772,13.95,1.896,8.33,6.301,33.662,22.542,2.804,20.864,9.812,1.746,12.797,19.944,18.146,1.561,11.717,16.667,16.439,14.42,17.207,1.552,2.569,11.902,8.1,36.477,15.764,10.35,8.279],[10.014,23.108,14.875,3.384,13.67,7.59,-3.487,8.332,8.101,0.587,7.877,20.518,25.552,14.881,3.765,2.166,9.23,18.882,10.654,-2.814,6.243,6.986,4.185,25.965,15.121,4.01,23.63,19.139,18.174,10.297,3.93,22.567,-3.166,17.699,15.006,-1.541,10.027,10.228,18.15,12.761,3.085,25.114,13.33,10.276,7.492,7.586,18.614,13.699,8.769,18.555,18.43,0.64,14.927,15.489,34.587,2.147,12.195,6.96,19.962,3.357,7.931,22.019,11.555,14.169,23.769,-0.238,7.601,3.604,6.52,14.356,24.928,7.704,9.468,4.901,-5.339,8.017,21.86,6.747,6.0,11.935,5.951,5.388,15.355,12.221,15.49,13.314,8.801,18.71,-2.541,0.706,25.952,20.576,14.536,3.837,12.007,27.61,3.209,9.227,2.778,16.002,6.754,20.193,11.355,9.834,-1.255,8.48,19.55,1.649,4.844,24.717,9.315,13.172,-3.907,18.704,18.546,6.974,4.048,3.429,20.982,7.362,22.105,18.719,3.748,24.699,12.006,-1.987,-1.408,23.68,-3.034,16.047,2.994,18.171,21.284,18.564,9.735,16.258,11.865,-2.642,15.904,11.938,23.952,8.303,9.621,18.987,9.189,26.189,9.309,9.545,6.398,4.653,14.618,12.585,12.557,12.931,8.016,8.798,11.3,18.501,7.045,15.215,1.52,20.269,15.139,19.315,18.536,13.789,1.488,8.267,6.195,33.407,22.545,2.634,20.853,9.882,2.007,12.967,19.826,18.408,1.744,11.415,16.793,16.847,14.542,17.379,1.744,2.252,12.593,7.878,35.801,15.735,10.403,8.071],[10.075,23.003,14.94,3.394,13.604,7.733,-3.387,8.361,8.086,0.229,8.027,20.401,25.56,14.521,3.914,2.066,9.366,18.849,10.578,-2.601,6.474,6.715,4.268,25.793,15.165,3.79,23.626,19.076,18.227,10.451,3.856,22.424,-3.072,17.699,15.028,-1.453,10.373,10.208,18.189,12.636,3.091,25.089,13.379,10.187,7.356,7.748,18.847,13.826,8.907,18.728,18.627,0.435,14.769,15.542,34.173,2.397,12.408,6.565,19.879,3.343,7.748,21.934,11.567,13.996,23.252,-0.325,7.512,3.669,6.937,13.797,24.46,8.288,9.522,4.555,-5.212,8.018,22.359,6.52,6.369,11.822,6.226,5.763,16.171,12.025,15.035,13.233,8.897,18.611,-2.662,0.416,26.35,21.046,14.102,3.725,12.354,27.365,3.616,9.358,2.814,15.751,6.987,20.529,10.837,9.791,-1.399,7.957,19.742,1.857,4.281,24.536,9.274,13.348,-3.925,18.798,18.456,6.789,3.914,3.569,20.924,8.113,22.005,18.913,3.605,24.677,12.057,-1.718,-1.277,23.598,-3.234,16.494,2.974,17.977,21.248,18.924,10.146,16.339,12.005,-2.554,15.737,11.753,24.003,8.026,9.856,18.828,9.492,26.431,8.949,9.784,6.333,4.438,14.149,12.909,13.124,13.237,8.868,8.722,11.177,18.529,7.014,15.423,1.668,20.222,14.462,19.125,19.287,13.492,0.954,7.96,6.008,33.332,23.166,2.738,20.899,9.839,2.425,13.25,20.023,18.041,2.212,11.462,16.898,16.756,14.931,17.377,1.273,2.028,13.377,8.137,35.848,15.706,10.796,7.15],[9.938,22.991,15.194,3.444,13.695,7.892,-3.462,8.435,8.106,-0.146,8.245,20.364,25.573,14.137,4.171,2.149,9.398,18.898,10.605,-2.479,6.569,6.351,4.178,25.53,15.275,3.572,23.648,18.872,18.296,10.439,3.778,22.292,-3.032,17.712,14.994,-1.288,10.754,10.17,18.284,12.591,3.083,24.998,13.318,10.163,7.154,7.819,18.879,14.243,9.049,18.77,18.769,0.351,14.657,15.486,33.891,2.63,12.637,6.203,19.668,3.14,7.584,21.941,11.581,13.994,23.601,-0.535,6.968,3.117,7.1,14.225,24.735,8.499,10.311,4.345,-5.266,7.624,21.757,6.609,6.854,11.551,6.625,5.968,16.325,12.287,14.513,12.789,9.176,18.503,-2.289,0.237,26.515,20.671,14.342,3.389,12.34,27.394,3.912,9.458,2.578,16.053,7.043,20.479,10.717,10.18,-1.403,7.638,19.787,1.758,3.589,24.353,8.953,13.419,-3.493,19.297,18.597,6.715,4.287,3.501,20.672,8.105,22.043,18.587,3.733,25.054,11.728,-1.742,-1.231,23.426,-2.969,16.308,2.723,17.906,21.274,19.069,10.337,16.536,12.503,-2.715,15.676,11.893,24.139,7.648,9.608,18.163,9.687,26.868,9.087,9.838,6.32,4.564,14.373,12.739,13.557,13.406,9.673,8.683,10.81,18.972,7.174,15.903,1.629,20.244,14.522,19.537,19.913,13.688,1.121,7.592,5.799,33.117,22.754,3.344,20.78,10.072,2.312,12.799,20.454,17.873,2.847,11.042,17.127,16.768,14.671,17.675,1.172,2.19,14.086,8.271,35.702,15.691,11.215,6.751],[9.729,23.013,15.473,3.448,13.753,7.957,-3.567,8.594,8.143,-0.477,8.447,20.284,25.563,13.93,4.365,2.303,9.314,19.048,10.781,-2.35,6.481,6.102,4.008,25.164,15.447,3.522,23.613,18.669,18.236,10.435,3.634,22.234,-2.961,17.776,15.068,-1.148,10.981,10.226,18.424,12.569,3.037,25.02,13.252,10.083,6.91,7.777,18.86,14.816,9.259,18.779,18.934,0.406,14.601,15.373,33.742,2.807,12.839,6.047,19.668,2.967,7.513,21.943,11.562,14.115,23.643,-0.872,6.859,2.638,7.313,14.763,25.25,8.197,10.504,4.528,-5.254,7.912,21.144,6.972,7.097,11.245,6.629,6.022,16.31,12.826,14.825,12.995,9.381,18.51,-2.115,0.037,26.476,20.298,14.369,3.351,12.445,26.838,3.628,9.956,2.371,16.293,6.789,20.245,11.169,10.529,-0.986,7.14,20.086,1.315,3.341,24.098,8.854,13.524,-3.414,19.063,18.463,6.095,3.942,3.542,20.401,8.039,22.436,18.308,2.802,25.039,11.818,-1.716,-1.182,23.175,-2.963,15.81,2.301,18.01,20.794,18.786,9.89,16.621,12.666,-2.457,16.204,11.846,23.983,7.304,9.82,18.2,9.659,26.725,9.241,10.371,6.176,4.633,14.398,12.328,13.957,13.687,9.915,8.466,11.346,18.536,7.346,16.365,1.544,20.174,14.936,19.711,19.725,13.999,1.743,7.506,5.794,32.691,22.523,3.673,20.635,9.988,2.268,12.398,19.623,18.191,3.377,11.137,17.093,16.4,14.1,17.538,0.844,2.483,14.122,7.972,35.373,15.251,11.204,7.083],[9.505,22.938,15.654,3.366,13.856,7.865,-3.59,8.75,8.223,-0.779,8.676,20.186,25.571,13.904,4.46,2.288,9.34,19.073,11.2,-2.246,6.33,5.891,3.825,24.745,15.64,3.515,23.505,18.531,18.202,10.541,3.477,22.103,-2.851,17.785,15.28,-1.075,10.961,10.241,18.408,12.58,2.952,25.033,13.329,10.127,6.699,7.7,18.716,15.337,9.474,18.715,19.062,0.443,14.564,15.191,33.678,2.887,12.855,6.086,19.863,2.837,7.495,21.874,11.566,14.187,23.519,-1.014,7.199,2.536,7.88,14.463,25.205,8.513,10.318,4.523,-5.347,8.366,21.317,7.035,6.909,10.82,6.401,6.162,16.707,12.724,15.394,12.925,9.208,18.637,-2.535,0.114,26.34,20.004,14.752,4.05,12.362,26.428,3.257,9.868,2.223,16.527,6.681,20.51,11.861,10.061,-0.917,7.123,19.752,1.056,3.691,23.804,9.341,13.904,-2.673,19.058,18.194,5.883,3.411,2.991,20.328,8.125,22.43,18.521,2.895,24.958,11.85,-1.302,-1.065,22.851,-3.117,15.741,2.917,18.095,20.891,19.076,10.376,16.653,12.022,-1.966,16.881,11.611,23.774,7.773,9.951,18.797,9.702,26.697,9.171,10.81,6.234,4.343,14.445,11.917,13.976,13.199,9.495,7.996,11.076,18.614,7.07,16.632,1.535,20.318,14.915,19.452,19.093,14.216,1.28,7.525,5.781,32.551,22.822,3.652,20.511,10.03,2.698,12.453,18.87,18.55,3.692,11.557,16.996,15.986,14.023,17.618,1.193,2.738,13.942,7.637,34.828,15.049,11.237,6.686],[9.382,22.92,15.816,3.197,13.884,7.724,-3.672,8.896,8.385,-0.853,8.775,20.169,25.565,13.915,4.592,2.097,9.364,19.059,11.65,-2.143,6.22,5.63,3.636,24.424,15.859,3.551,23.54,18.505,18.337,10.582,3.389,21.949,-2.763,17.79,15.54,-0.941,10.827,10.295,18.354,12.539,2.81,25.138,13.419,10.254,6.736,7.5,18.618,15.604,9.595,18.571,19.124,0.532,14.586,14.87,33.576,2.965,12.706,5.994,20.005,2.777,7.422,21.65,11.688,14.174,22.808,-1.255,7.772,2.944,8.478,14.34,24.897,8.824,9.829,4.193,-5.421,8.72,21.783,7.093,7.052,10.957,6.389,6.213,16.532,12.464,15.682,13.013,8.971,18.927,-2.721,0.044,26.141,19.394,14.652,4.962,13.0,26.328,3.216,9.619,2.127,16.702,6.856,20.395,11.717,9.869,-0.65,6.916,19.329,1.238,4.274,23.488,10.25,13.973,-1.986,19.288,18.159,6.213,3.588,2.608,20.325,7.588,21.875,19.023,3.678,24.583,12.304,-1.452,-1.012,23.174,-2.57,16.052,3.054,18.168,20.712,18.94,10.556,16.501,12.546,-2.163,17.037,12.07,23.774,8.021,9.519,18.279,9.793,26.52,9.212,10.055,6.179,4.052,14.418,12.211,14.261,12.859,9.06,7.727,11.323,18.832,6.73,17.105,1.561,19.556,14.659,19.099,19.408,13.981,0.326,7.657,5.616,32.657,22.519,3.755,20.478,10.266,2.427,12.663,19.97,18.377,3.792,11.339,16.853,16.132,14.584,17.798,0.358,2.599,14.021,7.781,35.091,15.468,11.22,6.197],[9.405,22.992,15.837,3.014,13.784,7.618,-3.703,8.914,8.602,-0.736,8.736,20.094,25.476,13.91,4.864,1.89,9.427,19.224,11.994,-1.965,6.149,5.373,3.524,24.214,16.005,3.781,23.522,18.515,18.45,10.741,3.334,21.739,-2.633,17.785,15.692,-0.948,10.698,10.47,18.156,12.666,2.702,25.081,13.522,10.257,6.922,7.28,18.554,15.741,9.537,18.341,19.17,0.322,14.705,14.688,33.497,2.968,12.569,5.825,20.058,2.871,7.306,21.353,11.696,14.087,23.238,-1.239,7.932,3.188,8.746,14.172,24.571,9.166,9.537,4.053,-5.511,8.291,21.122,7.084,7.308,11.085,6.401,6.429,16.887,12.88,16.01,13.322,9.005,19.203,-2.64,-0.247,26.178,19.645,14.341,4.909,13.46,25.898,2.936,9.245,2.111,16.823,6.731,20.569,11.796,10.136,-0.369,7.085,19.434,1.671,4.062,23.251,10.506,14.22,-1.984,19.134,18.401,5.947,3.884,3.28,20.167,7.5,22.151,19.177,3.304,24.896,12.433,-1.74,-0.962,22.964,-2.292,16.848,2.589,18.036,20.857,18.614,10.346,16.379,12.455,-2.257,16.636,12.252,24.133,7.996,9.575,17.995,9.88,26.892,9.492,10.225,5.918,4.16,14.458,12.869,14.659,12.697,9.733,8.024,11.139,18.424,6.484,16.881,1.348,19.6,14.038,19.629,20.1,13.539,0.816,7.657,5.549,32.59,22.094,3.342,20.577,10.181,2.301,13.706,21.01,18.375,4.176,11.26,16.74,15.676,14.487,17.607,0.499,2.226,14.134,7.891,35.254,15.627,11.175,5.886],[9.569,23.0,15.825,2.985,13.781,7.592,-3.609,8.905,8.757,-0.623,8.585,20.066,25.215,13.755,5.15,1.818,9.501,19.457,12.134,-1.89,6.157,5.155,3.526,24.093,16.125,3.947,23.561,18.528,18.46,10.957,3.36,21.565,-2.451,17.77,15.749,-1.108,10.569,10.624,17.907,12.943,2.683,24.971,13.468,10.203,7.174,7.072,18.496,15.832,9.562,18.144,19.189,0.106,14.72,14.57,33.455,2.914,12.589,5.67,20.171,2.92,7.199,21.177,11.598,14.02,23.895,-0.846,7.643,2.892,8.949,13.921,24.994,9.182,9.292,3.723,-5.363,7.839,21.298,7.012,6.829,10.975,6.176,6.825,17.058,12.492,16.11,13.196,9.077,18.976,-2.533,-0.067,26.312,20.086,14.785,4.531,13.672,25.726,2.925,9.038,1.991,16.99,6.197,20.863,12.606,10.238,-0.081,6.705,19.589,1.267,4.193,22.846,10.649,14.329,-2.157,19.229,18.558,5.579,3.363,3.594,20.251,8.01,22.283,18.668,3.14,25.061,12.716,-1.847,-0.652,22.819,-2.808,17.517,2.066,18.081,20.771,19.097,10.526,16.074,12.055,-2.476,16.123,11.873,24.196,8.406,10.241,18.178,10.463,26.808,9.138,10.635,5.687,4.424,14.646,13.135,14.82,12.984,9.922,8.188,11.189,18.501,6.521,16.669,1.43,19.997,13.605,19.453,20.051,13.466,1.542,7.29,5.473,32.463,21.999,2.827,20.338,10.098,2.637,14.225,21.553,19.199,4.264,11.155,16.728,15.513,14.492,17.704,0.636,2.333,13.994,7.798,34.976,15.819,11.275,5.57],[9.544,22.994,15.922,3.001,13.736,7.595,-3.466,8.959,8.766,-0.499,8.294,20.113,24.986,13.537,5.261,1.889,9.503,19.569,12.145,-1.933,6.174,5.0,3.511,24.068,16.243,4.065,23.697,18.551,18.308,11.319,3.438,21.458,-2.517,17.968,15.764,-1.286,10.547,10.866,17.82,13.118,2.872,24.966,13.243,10.356,7.395,6.979,18.523,15.943,9.555,18.048,19.098,0.063,14.637,14.415,33.371,2.854,12.747,5.429,20.531,2.768,7.057,21.213,11.515,14.054,23.91,-0.805,7.095,2.139,9.152,13.809,24.911,8.925,9.862,3.967,-5.091,8.353,21.509,7.197,6.608,11.287,6.512,6.882,16.304,12.234,16.045,12.968,9.19,18.472,-2.219,0.54,26.487,19.918,14.565,4.729,13.624,25.365,3.327,9.147,2.066,17.274,5.773,20.67,12.844,10.553,-0.234,6.351,19.371,0.766,4.063,22.459,10.364,14.402,-2.195,19.273,18.085,5.708,2.944,3.249,20.285,7.727,22.184,18.78,3.879,24.973,12.951,-2.031,-0.727,22.792,-2.524,17.542,2.374,18.034,20.253,19.412,10.582,16.097,12.076,-2.341,15.729,11.864,23.681,8.535,10.191,18.2,10.546,26.611,9.823,10.026,5.82,4.228,14.826,13.27,14.393,13.378,9.157,8.577,11.392,18.642,6.521,17.267,1.411,19.759,14.109,18.534,19.542,14.139,1.188,6.986,5.374,32.447,22.083,3.034,19.791,10.131,2.466,13.695,21.464,19.506,3.999,11.167,16.418,15.597,14.685,18.087,0.617,2.944,14.027,7.702,34.982,15.888,11.14,5.795],[9.476,22.951,15.959,2.878,13.532,7.707,-3.2,8.898,8.603,-0.298,8.392,20.066,24.952,13.528,5.319,2.04,9.391,19.532,11.989,-1.965,6.021,4.991,3.498,24.005,16.381,4.05,23.738,18.47,17.98,11.723,3.578,21.26,-2.759,18.183,15.785,-1.48,10.488,11.131,17.863,13.171,3.031,24.977,13.095,10.58,7.455,7.121,18.584,15.912,9.506,17.906,18.912,0.229,14.715,14.336,33.407,2.788,12.897,5.212,20.917,2.616,6.897,21.294,11.475,14.079,23.464,-0.686,6.833,1.93,9.06,13.596,24.651,8.918,10.011,4.388,-5.037,8.528,21.25,7.031,6.615,10.915,6.692,6.813,16.278,12.368,16.427,13.143,9.346,18.407,-2.426,0.708,26.147,19.882,14.198,4.658,13.749,25.634,3.487,9.485,2.016,17.029,6.608,21.105,12.089,10.805,-0.526,6.687,19.397,1.052,3.938,22.673,10.213,14.557,-2.276,19.345,18.12,5.725,3.274,3.19,20.237,7.367,22.593,18.932,3.546,25.287,13.185,-1.915,-1.155,22.277,-2.375,17.503,3.155,18.237,20.403,19.447,10.842,16.024,12.268,-2.202,15.701,11.822,23.76,8.503,9.824,18.441,10.089,26.275,9.625,9.979,5.858,4.42,15.005,13.106,14.515,12.949,9.411,8.51,11.573,17.979,6.266,17.199,1.56,19.668,14.438,18.812,19.8,14.173,0.478,6.925,5.234,32.359,22.519,3.064,19.796,9.89,1.939,13.505,21.125,19.35,3.834,11.381,16.332,15.683,14.502,18.127,0.491,3.47,14.074,7.653,34.96,15.473,11.371,5.626],[9.322,22.752,16.117,2.757,13.36,7.737,-3.002,8.725,8.378,0.068,8.833,19.957,24.948,13.642,5.293,2.378,9.29,19.408,11.753,-2.001,5.936,5.186,3.501,24.007,16.45,3.823,23.802,18.459,17.726,12.119,3.838,21.072,-2.917,18.331,15.805,-1.553,10.485,11.26,17.907,13.169,3.118,24.931,12.967,10.767,7.413,7.321,18.562,15.804,9.498,17.936,18.859,0.365,14.903,14.4,33.514,2.724,13.05,5.109,21.077,2.596,6.753,21.374,11.421,13.983,22.84,-0.706,6.607,1.899,8.656,13.188,24.703,8.555,9.612,4.271,-4.792,8.58,21.033,6.985,6.928,10.655,7.054,6.825,16.709,12.167,16.283,12.725,9.672,18.425,-2.306,0.182,25.868,20.542,14.475,4.73,13.383,25.737,3.083,9.43,2.148,17.125,6.854,21.007,11.998,10.811,-0.264,6.824,19.279,1.457,3.904,23.055,10.265,14.577,-2.196,19.511,18.458,5.583,3.66,3.375,20.246,7.268,22.864,18.346,3.187,25.255,12.987,-1.764,-1.413,22.41,-2.554,17.487,3.445,18.085,20.143,19.478,10.922,16.267,12.216,-2.749,16.237,11.641,24.094,8.819,9.839,17.796,10.134,26.151,8.82,10.126,5.889,4.88,14.963,12.912,14.447,12.247,9.912,7.946,11.73,17.877,6.366,16.812,1.894,19.297,14.229,18.957,19.218,14.183,0.823,6.875,5.042,32.36,22.362,2.798,20.282,9.881,1.544,13.681,20.679,19.454,3.744,11.097,16.241,15.462,13.99,17.558,0.216,3.282,14.388,7.437,34.81,15.571,11.569,5.113],[9.149,22.47,16.529,2.744,13.169,7.557,-2.947,8.636,8.081,0.37,9.129,19.899,24.753,13.717,5.211,2.81,9.232,19.245,11.78,-2.002,5.912,5.322,3.512,24.066,16.436,3.762,23.794,18.471,17.513,12.401,4.04,20.994,-2.995,18.311,15.879,-1.45,10.483,11.285,17.776,13.178,3.195,24.946,12.742,10.886,7.38,7.474,18.445,15.629,9.497,18.032,18.594,0.427,15.043,14.415,33.513,2.6,13.142,5.148,21.016,2.581,6.582,21.388,11.374,13.817,22.717,-0.608,6.369,1.774,8.156,13.079,24.553,8.621,9.503,3.407,-4.784,9.163,20.899,6.859,7.276,10.902,6.958,6.606,16.682,12.095,16.378,12.417,9.335,18.675,-1.844,0.17,26.257,20.976,14.677,5.012,13.382,25.861,3.512,8.981,2.697,17.26,6.306,20.743,12.368,10.875,-0.342,6.708,19.144,1.438,4.158,22.999,10.658,14.611,-1.965,19.18,18.814,5.861,3.448,3.609,20.127,7.45,22.967,17.816,3.345,25.563,12.941,-2.209,-1.251,21.946,-2.769,17.274,3.295,18.545,19.681,19.627,10.685,16.189,11.963,-2.842,16.631,11.632,23.92,8.903,10.002,17.323,10.657,26.234,9.013,10.653,6.035,4.698,14.99,13.007,14.053,12.217,9.281,8.164,11.757,18.876,6.778,16.823,1.891,19.558,14.635,18.794,19.344,14.277,1.272,6.701,4.837,32.516,22.023,2.751,21.172,10.08,2.109,14.009,20.888,19.363,3.629,11.016,16.278,15.634,14.233,17.033,0.433,2.629,14.526,7.309,34.938,15.448,11.808,5.305],[9.236,22.368,17.026,2.649,13.02,7.328,-3.005,8.755,7.753,0.491,9.287,19.915,24.521,13.683,5.188,3.216,9.113,19.038,11.988,-2.038,5.87,5.326,3.598,24.231,16.381,4.004,23.79,18.435,17.316,12.628,3.934,20.912,-2.916,18.322,15.948,-1.391,10.503,11.264,17.518,13.201,3.223,24.953,12.529,10.867,7.547,7.617,18.51,15.484,9.453,18.011,18.188,0.493,15.132,14.485,33.5,2.542,13.175,5.258,20.942,2.516,6.48,21.363,11.466,13.623,22.862,0.382,6.086,2.009,7.609,13.036,24.456,8.873,9.369,3.138,-4.726,9.347,20.583,6.95,7.588,10.758,6.162,6.888,16.564,12.269,17.178,12.388,9.004,18.434,-2.015,1.018,26.033,21.119,14.534,4.566,13.658,25.905,4.116,8.855,2.321,17.31,5.815,20.821,12.104,10.883,-0.211,6.907,18.917,1.881,4.204,22.7,10.767,14.532,-2.024,18.636,18.418,6.279,3.109,4.247,20.178,7.165,22.837,17.533,3.495,25.486,13.192,-2.476,-1.168,21.841,-2.78,16.955,2.968,18.857,19.759,19.355,11.119,15.761,11.969,-2.536,16.992,11.497,23.671,8.288,10.128,17.772,10.669,26.663,9.116,10.296,6.209,4.411,15.042,13.115,13.989,12.471,8.882,8.654,11.978,18.714,7.157,16.671,1.628,19.482,14.475,18.975,19.104,14.588,1.23,6.858,4.636,32.303,22.496,2.64,21.642,9.975,2.626,14.689,21.433,19.309,3.351,11.101,16.551,16.079,15.135,16.691,0.792,2.209,14.745,7.147,34.989,14.724,11.72,5.752],[9.427,22.341,17.27,2.429,13.06,7.122,-3.092,8.871,7.451,0.667,9.377,19.957,24.426,13.493,5.116,3.542,9.062,18.791,12.024,-2.151,5.727,5.442,3.707,24.485,16.32,4.377,23.908,18.452,17.142,12.779,3.763,20.856,-2.762,18.442,15.953,-1.346,10.452,11.255,17.29,13.301,3.235,24.963,12.467,10.722,7.789,7.774,18.568,15.402,9.306,17.91,17.828,0.513,15.358,14.6,33.516,2.574,13.218,5.485,21.204,2.361,6.405,21.37,11.626,13.42,23.366,0.55,5.934,1.946,7.084,13.047,24.064,9.367,9.77,3.851,-4.871,9.093,20.56,7.014,7.523,10.931,5.832,6.687,17.052,11.873,17.352,12.264,8.537,18.098,-2.238,1.781,25.414,20.71,14.219,4.583,13.673,26.172,4.505,8.721,2.165,16.981,6.183,20.449,12.191,10.817,-0.407,6.978,18.407,2.298,4.56,23.088,11.364,14.617,-2.344,18.269,17.957,5.997,3.48,3.925,20.232,7.328,22.425,17.632,3.637,25.12,13.024,-2.245,-1.197,22.423,-2.455,16.953,2.56,18.348,19.734,19.17,11.176,15.44,12.204,-2.698,17.359,11.151,23.699,8.484,10.197,18.054,10.392,26.542,9.03,9.929,6.164,4.479,15.109,13.028,14.256,12.125,9.529,8.632,11.898,17.947,7.468,16.834,1.63,19.428,14.116,19.0,18.289,14.454,1.343,6.932,4.628,32.026,22.474,2.398,21.902,10.147,1.859,14.844,21.836,19.513,3.342,11.195,16.108,15.711,15.212,16.467,0.58,2.478,14.546,7.212,34.875,14.437,11.661,5.8],[9.565,22.426,17.153,2.275,13.106,6.957,-3.09,9.012,7.269,0.884,9.283,20.011,24.204,13.327,4.943,3.835,9.026,18.643,11.877,-2.424,5.717,5.604,3.864,24.724,16.285,4.723,23.943,18.481,17.026,12.867,3.658,20.919,-2.692,18.481,16.081,-1.324,10.359,11.152,17.001,13.411,3.188,24.9,12.441,10.513,7.928,7.935,18.486,15.422,9.181,17.758,17.605,0.527,15.462,14.482,33.416,2.482,13.175,5.734,21.737,2.159,6.371,21.498,11.725,13.298,23.142,-0.072,5.534,1.546,7.193,13.261,24.277,9.098,10.592,3.749,-5.016,9.412,21.008,7.142,7.419,10.9,5.74,6.44,17.471,11.99,17.208,12.382,8.564,18.253,-2.334,1.979,25.888,19.718,14.127,5.172,13.585,26.341,4.553,8.888,2.421,16.58,6.165,20.191,12.251,10.592,-0.677,7.093,17.742,2.139,4.869,23.353,11.633,14.433,-2.415,18.21,18.278,6.007,3.988,3.112,20.263,7.255,22.754,17.768,4.176,25.51,13.138,-1.881,-1.071,21.778,-2.477,16.672,2.808,18.172,19.699,19.448,10.594,15.496,12.158,-2.898,17.41,11.19,24.048,9.363,9.931,17.714,10.406,26.107,9.3,10.233,6.285,4.907,15.275,13.061,14.075,12.023,9.467,8.863,11.594,17.737,7.995,16.806,1.889,19.374,14.561,18.885,18.21,14.536,1.332,7.296,4.65,32.2,22.204,2.248,21.614,10.384,2.062,14.297,22.213,19.918,3.456,11.268,15.972,15.767,14.686,16.435,0.754,2.915,14.549,7.131,34.744,14.296,11.864,5.881],[9.716,22.538,17.048,2.133,13.028,7.01,-2.993,9.062,7.179,1.039,9.344,19.998,24.137,13.231,4.935,4.032,8.922,18.708,11.675,-2.672,5.737,5.743,4.061,24.8,16.13,4.893,24.05,18.622,16.92,12.909,3.618,20.988,-2.759,18.522,16.209,-1.351,10.295,10.905,16.734,13.42,3.129,24.806,12.391,10.307,8.064,8.167,18.281,15.476,9.207,17.732,17.604,0.523,15.279,14.39,33.328,2.46,13.122,5.91,22.146,2.107,6.411,21.659,11.774,13.136,22.675,-0.193,5.314,1.622,7.888,13.92,24.325,8.684,11.069,3.06,-4.856,9.56,21.557,7.282,7.49,10.426,5.726,6.456,17.146,12.068,16.654,12.865,8.514,18.499,-2.531,1.753,25.599,19.485,14.28,4.521,12.926,26.677,4.271,8.893,3.244,16.966,5.843,20.265,12.084,10.583,-0.815,7.212,17.394,2.322,4.93,23.445,11.719,14.275,-2.647,18.487,18.528,6.693,3.5,3.206,20.297,7.067,23.568,17.826,4.775,25.583,13.736,-2.156,-1.104,21.284,-2.348,16.186,3.512,18.539,19.772,19.332,10.512,15.128,11.979,-2.779,17.506,11.521,23.797,9.511,9.873,17.316,10.504,26.241,9.012,10.518,6.718,4.789,15.213,13.349,13.92,12.04,9.179,8.585,11.537,17.54,8.185,16.073,2.138,19.452,14.75,18.818,18.639,14.598,1.422,7.55,4.634,32.235,22.05,1.872,21.402,10.522,1.616,13.878,22.368,20.394,3.517,10.826,16.281,15.67,14.371,16.206,1.15,2.724,14.737,7.011,34.669,14.53,11.693,6.137],[9.857,22.672,16.903,2.02,12.993,7.117,-2.963,8.946,7.176,1.069,9.662,19.954,24.056,13.162,4.891,4.174,8.81,18.902,11.322,-2.854,5.686,5.958,4.23,24.983,15.904,4.982,24.177,18.756,16.778,13.037,3.777,20.925,-2.838,18.56,16.164,-1.411,10.31,10.792,16.563,13.375,3.102,24.763,12.334,10.192,7.998,8.518,18.023,15.484,9.209,17.947,17.774,0.37,15.03,14.348,33.237,2.456,13.141,5.995,22.381,2.174,6.516,21.766,11.753,13.062,23.033,0.394,5.413,1.691,8.159,14.545,23.93,8.636,11.059,2.12,-4.775,9.207,21.297,7.346,7.832,10.438,6.268,6.364,16.841,11.914,16.483,12.71,8.538,18.456,-2.29,1.817,25.581,19.469,13.911,4.727,12.963,26.593,3.921,8.242,3.422,17.054,5.867,20.54,11.802,10.485,-1.214,7.11,17.499,2.607,4.917,23.586,11.46,14.193,-3.064,18.853,18.906,7.055,3.289,3.618,20.438,7.017,24.41,17.86,4.576,25.623,13.623,-2.237,-1.298,22.243,-2.361,16.191,2.688,18.613,20.04,19.121,10.27,14.818,11.977,-2.678,17.731,11.037,23.655,9.142,9.7,17.577,10.213,26.36,8.748,10.391,7.18,4.811,15.181,13.289,14.149,11.955,9.583,8.663,11.241,17.562,7.807,16.354,1.739,18.985,14.553,18.901,18.563,14.297,1.844,7.538,4.741,31.712,21.838,1.776,22.395,10.704,1.526,13.715,22.689,20.552,3.567,10.889,16.106,15.535,14.275,16.359,0.9,2.205,14.244,7.218,34.608,14.48,11.647,6.315],[9.896,22.884,16.696,1.725,12.992,7.171,-2.999,8.86,7.257,1.091,9.829,19.875,23.96,13.021,4.884,4.254,8.62,19.234,11.143,-2.961,5.616,6.154,4.453,25.191,15.781,5.048,24.291,18.858,16.689,13.12,3.882,20.89,-2.991,18.452,16.078,-1.343,10.335,10.671,16.613,13.32,3.128,24.717,12.101,10.03,7.793,8.728,17.79,15.53,9.135,18.236,17.981,0.281,14.781,14.321,33.181,2.523,13.097,5.982,22.425,2.272,6.602,21.871,11.753,13.116,23.265,1.068,5.552,1.771,8.269,14.547,23.629,8.363,10.829,1.984,-4.953,9.39,21.131,7.117,8.341,11.281,6.268,6.483,16.485,11.567,16.89,12.432,9.012,18.155,-2.2,2.155,25.695,19.682,13.669,5.193,12.713,26.535,4.052,8.107,3.033,16.549,6.032,20.837,11.265,9.907,-1.366,7.327,17.614,2.866,4.895,23.717,11.424,13.921,-3.469,18.578,19.159,6.758,3.791,3.693,20.635,7.201,24.517,17.457,4.346,25.823,13.375,-1.936,-1.357,22.009,-2.878,15.989,2.518,18.508,20.01,18.858,10.702,15.01,11.799,-3.036,17.839,10.592,23.89,8.861,9.318,17.528,10.388,26.462,9.388,10.186,7.516,4.423,15.154,12.975,14.501,11.985,9.652,8.952,11.32,17.433,7.684,17.056,1.586,18.795,14.354,18.893,18.372,14.413,1.43,7.468,4.828,31.69,22.267,2.327,22.296,10.929,2.103,13.611,23.377,21.036,3.477,11.235,16.418,15.67,14.338,16.853,0.573,2.18,14.384,7.151,34.502,14.573,11.433,6.178],[10.03,23.07,16.545,1.427,12.96,7.086,-3.168,8.756,7.41,1.205,9.805,19.753,23.948,12.942,4.993,4.38,8.354,19.481,11.143,-3.087,5.665,6.217,4.706,25.317,15.646,5.093,24.363,18.93,16.615,13.118,3.811,20.844,-3.276,18.204,15.984,-1.281,10.303,10.676,16.742,13.256,3.08,24.668,11.773,9.863,7.622,8.743,17.598,15.636,9.069,18.469,18.173,0.159,14.662,14.303,33.376,2.739,12.948,5.808,22.487,2.452,6.525,21.97,11.841,13.184,23.315,1.243,5.801,1.75,8.122,13.674,23.664,8.609,10.525,1.825,-4.928,9.808,21.407,6.917,8.105,11.468,6.293,6.238,16.396,11.624,16.922,12.27,8.757,18.29,-2.464,2.808,25.278,19.971,13.745,4.756,12.82,26.956,4.636,8.263,3.16,16.018,6.0,21.248,11.484,10.2,-1.37,7.779,17.974,2.557,5.095,23.79,11.702,13.816,-3.734,18.631,18.74,6.921,4.193,3.817,20.69,7.398,24.004,16.834,4.752,26.261,13.449,-1.845,-1.479,21.839,-2.913,15.63,3.202,18.53,20.161,18.748,10.943,14.938,11.862,-2.765,17.818,10.903,23.851,8.654,9.071,17.633,10.06,26.476,9.72,9.819,7.448,4.568,15.081,12.936,14.812,12.09,9.717,8.495,11.41,17.317,8.151,17.215,1.745,19.188,14.298,19.04,18.489,13.954,1.023,7.546,4.82,32.157,22.96,2.726,21.79,10.863,1.974,13.663,23.782,21.367,3.604,11.09,16.764,15.715,14.149,17.218,1.103,2.451,14.83,6.614,34.707,14.675,12.097,5.979],[10.14,23.175,16.653,1.285,12.932,7.001,-3.408,8.6,7.613,1.466,9.604,19.682,23.963,12.952,4.895,4.432,8.285,19.638,11.28,-3.306,5.854,6.452,4.917,25.417,15.31,5.205,24.497,18.823,16.599,13.141,3.744,20.976,-3.491,17.943,15.893,-1.234,10.282,10.788,16.805,13.196,3.059,24.63,11.582,9.734,7.446,8.745,17.636,15.754,9.128,18.666,18.339,0.045,14.572,14.253,33.629,2.954,12.805,5.582,22.616,2.707,6.374,22.045,11.919,13.194,23.422,1.173,5.852,1.074,8.019,13.086,23.95,9.115,10.442,1.423,-5.3,9.687,21.665,6.866,7.955,11.328,6.343,6.43,16.841,11.636,16.648,12.23,8.641,18.654,-2.564,3.049,25.482,19.94,13.837,4.957,12.493,26.824,5.06,8.105,3.536,16.265,5.736,21.226,12.123,10.037,-1.748,7.695,17.989,2.618,4.998,24.103,11.801,13.523,-3.279,19.297,18.64,6.727,3.927,3.59,20.591,7.394,23.391,16.177,5.801,26.148,13.284,-2.28,-1.916,21.886,-3.164,15.903,3.081,18.405,20.326,18.664,10.598,15.045,11.653,-2.32,17.627,10.671,23.779,8.488,8.813,17.867,10.007,26.325,9.036,9.602,7.122,4.884,14.98,13.0,14.649,12.026,9.588,8.352,10.96,16.944,8.608,17.159,1.801,18.657,14.581,19.313,18.888,13.527,1.34,7.264,4.668,32.448,23.075,2.327,22.184,10.988,1.968,14.099,23.595,21.199,4.134,11.334,17.054,15.854,14.293,17.157,0.948,2.82,14.506,6.636,35.252,14.639,11.752,5.739],[9.999,23.151,16.99,1.135,13.002,7.066,-3.745,8.558,7.843,1.835,9.373,19.561,24.084,12.998,4.805,4.446,8.348,19.834,11.382,-3.568,5.956,6.756,4.835,25.466,14.969,5.407,24.585,18.706,16.534,13.122,3.668,21.215,-3.623,17.821,15.814,-1.207,10.163,10.742,16.738,13.089,3.076,24.593,11.452,9.43,7.428,8.863,17.77,15.78,9.175,18.829,18.497,0.014,14.521,14.444,33.818,3.184,12.555,5.347,22.602,2.907,6.244,22.169,12.116,13.302,23.504,1.0,6.003,0.624,8.244,13.595,23.994,8.302,11.299,1.202,-5.574,9.191,22.073,6.66,7.648,11.208,5.963,6.285,16.777,11.558,16.369,11.974,8.56,19.499,-2.612,3.068,25.678,20.125,13.784,5.147,12.942,26.431,5.278,7.604,3.956,16.354,6.096,21.583,11.973,9.675,-1.963,7.8,17.948,2.892,5.034,24.371,11.579,13.535,-2.707,19.215,18.622,7.098,3.946,3.141,20.186,7.515,23.291,15.632,5.85,26.123,13.337,-2.316,-1.875,21.68,-3.494,15.873,2.59,18.014,20.524,18.039,10.571,15.072,11.598,-2.53,17.274,10.504,23.89,8.523,8.92,17.824,10.367,26.425,8.876,9.84,7.496,4.697,14.587,12.841,14.646,11.603,9.442,8.671,10.928,17.311,8.657,17.076,1.569,18.52,14.228,19.195,18.797,13.644,1.346,6.999,4.697,32.721,23.032,2.291,22.496,10.959,2.057,13.899,23.95,21.024,4.114,11.237,17.2,15.676,14.475,16.842,0.817,3.284,13.943,6.889,35.308,14.325,11.165,5.666],[9.952,23.128,17.185,0.934,13.028,7.074,-4.001,8.33,7.981,2.212,9.214,19.467,24.207,13.071,4.757,4.533,8.433,20.089,11.476,-3.677,5.987,7.03,4.747,25.394,14.899,5.528,24.607,18.607,16.374,13.055,3.578,21.448,-3.626,17.672,15.676,-1.38,10.177,10.534,16.531,12.917,2.976,24.575,11.364,9.172,7.645,9.075,17.906,15.748,9.254,18.831,18.57,0.099,14.493,14.645,33.886,3.326,12.357,5.137,22.572,3.027,6.165,22.29,12.293,13.173,23.49,0.713,6.452,0.51,8.55,14.063,24.608,7.994,11.366,1.243,-5.8,8.917,22.471,6.638,7.745,10.705,5.906,6.132,17.063,11.884,16.23,12.141,8.774,19.996,-3.254,2.83,25.364,20.679,13.822,4.603,12.862,26.696,4.522,7.747,3.483,16.319,6.589,21.794,11.538,9.866,-2.233,8.367,17.654,3.229,4.947,24.214,11.43,13.613,-3.03,19.132,18.694,7.375,3.886,3.468,20.282,7.666,23.384,15.448,4.992,26.086,13.804,-1.687,-1.873,22.37,-3.507,15.67,2.086,18.335,20.739,17.75,10.456,15.076,11.728,-2.951,16.995,10.402,23.777,8.492,9.235,17.489,10.393,26.474,9.255,9.751,7.841,4.567,14.548,12.465,14.646,11.736,9.043,8.773,10.408,17.415,8.108,17.047,1.551,19.523,14.198,18.98,18.489,13.755,1.033,6.808,4.898,32.607,23.264,3.377,22.527,11.444,2.189,14.193,23.936,21.069,3.761,11.394,17.221,16.08,14.514,17.042,0.6,3.502,14.08,6.716,35.312,14.496,11.357,5.28],[10.034,23.215,17.235,0.786,13.138,7.061,-4.118,7.964,8.017,2.363,9.214,19.528,24.279,13.191,4.66,4.573,8.524,20.37,11.371,-3.782,6.035,7.116,4.643,25.249,15.139,5.3,24.572,18.615,16.153,13.063,3.505,21.836,-3.572,17.548,15.479,-1.483,10.314,10.335,16.293,12.71,2.901,24.6,11.302,9.093,7.725,9.197,18.141,15.742,9.313,18.718,18.565,0.129,14.433,14.783,33.828,3.342,12.469,4.846,22.559,3.203,6.231,22.303,12.401,13.083,23.039,0.8,6.62,0.453,9.197,13.931,24.7,8.43,10.972,0.648,-6.127,8.705,22.584,6.203,8.008,11.131,6.302,6.013,17.197,11.981,16.767,12.071,8.696,19.753,-3.557,3.311,25.887,20.903,13.935,4.554,12.832,26.675,4.355,8.372,3.72,16.412,6.328,21.812,11.67,10.335,-2.113,8.478,17.351,2.974,5.697,23.751,11.642,13.356,-3.815,19.019,18.178,7.356,3.392,3.335,20.418,7.536,23.985,15.606,4.72,26.389,13.598,-2.148,-1.808,23.148,-3.531,15.773,2.533,18.142,20.861,18.386,10.325,14.574,12.114,-2.744,16.901,10.714,23.587,8.584,8.837,16.976,9.727,26.385,9.328,9.804,8.026,4.617,14.425,12.547,14.817,11.46,8.927,8.867,10.396,17.514,8.203,17.282,1.498,19.58,14.847,19.392,18.608,13.499,1.163,6.454,4.812,32.528,23.472,3.964,22.415,11.508,2.247,13.858,23.772,21.092,3.913,11.86,17.085,16.203,13.962,17.064,1.326,3.333,14.245,6.496,35.441,14.361,11.526,5.064],[10.269,23.3,17.316,0.491,13.257,7.201,-4.182,7.875,8.174,2.477,9.159,19.679,24.355,13.296,4.684,4.457,8.64,20.487,11.2,-3.843,5.913,6.938,4.512,25.059,15.36,5.112,24.667,18.592,15.939,13.104,3.423,22.242,-3.405,17.46,15.294,-1.489,10.454,10.219,16.044,12.525,2.861,24.653,11.369,9.052,7.648,9.316,18.294,15.863,9.358,18.581,18.5,0.208,14.256,14.898,33.777,3.293,12.728,4.664,22.618,3.411,6.34,22.269,12.503,12.953,23.625,1.108,6.57,0.973,9.576,14.193,23.901,7.584,10.672,0.82,-6.08,8.833,22.165,6.123,7.551,11.779,6.125,6.379,16.875,11.621,17.222,12.734,8.589,19.44,-3.51,3.835,26.191,20.575,14.49,4.945,12.537,26.202,4.846,8.543,3.915,16.286,6.159,22.181,11.975,10.364,-2.105,8.452,17.367,2.737,5.993,23.618,11.803,13.738,-4.047,19.608,18.367,7.328,2.897,2.994,20.408,7.672,24.813,15.811,4.947,26.316,13.214,-2.781,-1.644,23.348,-3.554,15.795,3.2,18.15,20.96,18.43,10.075,14.224,12.212,-2.571,16.874,10.262,23.734,8.602,8.724,16.982,9.209,26.383,9.141,9.908,7.853,4.448,14.227,12.603,14.741,10.972,9.273,8.48,10.272,17.413,8.727,17.62,1.532,19.742,14.915,19.216,19.179,13.116,1.209,6.393,4.901,32.624,22.92,3.018,22.226,11.333,2.282,13.382,22.973,21.037,3.611,11.454,16.899,16.386,13.451,17.227,1.399,2.845,14.44,6.522,35.215,14.159,11.598,4.988],[10.582,23.333,17.529,0.29,13.301,7.308,-4.139,7.974,8.393,2.615,8.923,19.7,24.325,13.487,5.01,4.359,8.733,20.566,11.138,-3.904,5.838,6.67,4.231,24.837,15.559,5.114,24.809,18.622,15.853,13.109,3.206,22.481,-3.193,17.317,15.114,-1.456,10.498,10.067,15.945,12.425,2.72,24.751,11.388,8.976,7.559,9.381,18.402,16.078,9.413,18.408,18.544,0.379,13.961,14.989,33.629,3.141,13.005,4.61,22.493,3.481,6.474,22.143,12.56,12.761,24.124,1.579,6.699,0.647,9.508,14.179,23.808,7.339,10.55,0.542,-5.929,8.942,22.113,6.541,7.382,12.217,6.051,6.567,17.031,11.728,16.922,13.895,9.06,19.38,-3.7,4.248,25.839,20.897,14.378,4.807,12.148,26.145,4.908,8.099,3.607,16.176,6.023,22.368,12.097,10.208,-2.222,8.201,17.156,2.557,5.406,23.972,11.786,13.842,-3.456,20.003,18.495,7.327,2.719,3.308,20.311,7.571,25.48,15.794,4.577,26.369,13.352,-2.087,-1.361,23.141,-3.335,15.775,2.936,18.476,21.485,17.876,10.467,14.266,12.283,-2.836,16.421,9.968,24.124,8.57,9.124,16.818,9.443,26.68,9.73,9.894,7.701,4.432,13.753,12.26,15.177,11.234,8.76,8.479,10.046,17.152,9.152,17.715,1.477,19.798,14.392,18.968,19.192,13.222,1.338,6.29,5.092,32.483,22.647,2.418,22.0,11.309,1.965,13.431,22.666,21.183,3.63,11.651,16.686,16.213,13.111,17.117,0.507,2.503,14.547,6.573,35.253,13.768,11.584,4.807],[10.867,23.44,17.797,0.06,13.503,7.243,-4.121,8.129,8.542,2.717,8.775,19.74,24.321,13.616,5.404,4.292,8.485,20.69,11.204,-3.908,5.837,6.444,3.968,24.665,15.609,5.035,25.074,18.676,15.924,13.043,3.032,22.531,-3.006,17.106,14.895,-1.364,10.498,10.031,16.021,12.375,2.61,24.885,11.37,8.931,7.647,9.389,18.589,16.43,9.472,18.286,18.559,0.472,13.733,14.922,33.568,2.953,13.103,4.572,22.313,3.43,6.566,21.978,12.633,12.824,23.402,2.334,6.704,-0.526,9.327,13.912,23.702,8.038,10.666,0.239,-6.015,8.267,22.061,6.319,7.282,12.563,6.312,6.5,17.521,11.679,17.595,14.054,8.878,19.122,-3.688,3.993,25.342,21.0,14.664,5.151,12.479,26.151,4.787,8.189,3.232,16.528,6.266,22.362,12.191,10.262,-2.759,7.929,16.752,2.547,5.077,24.317,11.913,13.861,-3.201,19.956,18.155,6.997,2.607,2.616,20.117,7.392,25.524,15.443,4.331,26.557,13.691,-1.943,-1.207,23.2,-2.968,16.047,2.218,17.942,21.547,17.925,10.296,14.16,12.287,-2.774,16.111,10.342,24.052,8.198,9.25,16.893,9.759,26.693,10.663,9.721,7.798,4.382,13.246,11.977,15.359,10.785,8.515,8.737,10.242,17.445,9.124,17.814,1.128,19.551,14.239,18.833,19.121,13.402,1.378,6.111,5.32,32.192,22.752,2.879,21.795,11.624,2.001,12.643,22.352,21.054,3.51,11.672,16.56,16.112,12.613,17.216,1.226,2.237,14.806,6.253,35.081,13.598,11.692,4.921],[11.099,23.335,18.108,-0.458,13.674,7.11,-4.171,8.141,8.5,2.629,8.766,19.806,24.304,13.719,5.805,4.271,8.109,20.841,11.304,-4.005,5.87,6.385,3.902,24.531,15.553,4.791,25.361,18.624,16.052,12.91,2.843,22.418,-2.89,16.832,14.76,-1.33,10.374,10.147,16.207,12.338,2.545,24.931,11.331,9.015,7.647,9.417,18.835,16.869,9.66,18.218,18.572,0.429,13.631,14.789,33.692,2.885,13.171,4.549,22.194,3.316,6.474,21.843,12.697,12.988,23.445,3.01,6.845,-0.634,9.38,14.298,23.833,8.624,11.37,0.302,-5.85,7.999,22.466,6.436,7.32,12.408,5.703,6.608,17.639,11.918,18.087,13.669,8.81,18.803,-3.545,3.672,25.281,20.583,15.066,5.768,12.713,26.132,5.028,7.95,3.17,16.621,6.392,22.585,11.826,9.887,-2.539,8.003,16.763,2.757,4.876,24.238,11.933,13.881,-3.281,20.27,17.993,6.783,2.409,2.366,20.223,7.35,25.442,14.82,4.126,26.953,13.795,-2.359,-1.458,23.02,-2.511,15.824,2.281,17.653,21.021,17.821,10.062,14.359,12.229,-2.634,15.742,10.432,23.633,8.446,9.354,16.932,9.396,26.488,10.945,9.803,8.166,4.34,13.075,11.775,15.36,10.283,8.925,8.745,10.073,17.431,8.773,18.006,1.568,19.773,14.674,18.665,19.019,13.148,1.526,6.25,5.171,32.309,22.864,3.82,21.889,11.969,2.781,12.703,21.932,20.706,2.89,11.44,16.447,16.074,12.108,17.351,1.415,2.05,14.935,6.111,35.063,13.51,12.121,5.143],[11.298,23.185,18.269,-0.884,13.768,6.975,-4.087,8.066,8.411,2.493,8.721,19.818,24.259,13.994,6.198,4.424,7.79,20.93,11.178,-4.208,5.925,6.531,3.849,24.52,15.465,4.448,25.58,18.492,16.089,12.731,2.692,22.154,-2.861,16.632,14.717,-1.354,10.256,10.36,16.401,12.253,2.643,24.862,11.291,9.232,7.572,9.51,19.009,17.179,9.792,18.129,18.518,0.299,13.549,14.764,33.949,3.009,13.358,4.595,22.105,3.311,6.179,21.805,12.63,13.093,23.402,2.947,6.802,-0.736,9.238,14.515,24.581,8.264,12.253,-0.136,-6.02,8.286,22.346,6.353,7.587,11.998,5.561,6.791,17.738,12.337,17.463,13.321,8.433,18.695,-3.703,3.43,25.777,20.546,15.024,5.804,12.675,26.002,5.254,7.587,3.428,16.521,6.253,22.605,11.828,9.452,-2.6,8.013,17.514,2.725,4.797,23.288,11.434,13.705,-3.509,20.682,17.785,6.78,2.181,2.832,20.226,7.211,25.207,14.905,3.856,27.305,13.855,-2.209,-1.261,22.837,-2.37,15.547,2.202,17.5,20.512,17.543,9.771,14.599,11.828,-2.506,15.223,10.881,23.647,8.567,9.598,17.027,9.386,26.544,10.563,10.005,8.523,4.52,13.531,11.723,16.312,10.568,9.929,8.616,10.044,18.044,8.414,18.499,1.529,20.482,14.983,18.726,19.044,13.038,1.239,6.203,5.168,32.799,22.897,4.043,21.919,12.072,2.944,13.746,21.82,20.803,3.003,12.063,16.433,16.035,12.208,17.408,0.542,1.991,14.914,6.446,35.449,13.056,12.006,4.965],[11.464,23.064,18.153,-1.142,13.927,6.866,-4.067,7.983,8.294,2.468,8.756,19.841,24.386,14.337,6.463,4.62,7.58,20.881,10.909,-4.443,5.874,6.782,3.765,24.416,15.443,4.234,25.696,18.287,16.147,12.45,2.68,21.782,-2.835,16.551,14.64,-1.302,10.131,10.499,16.563,12.159,2.738,24.728,11.418,9.445,7.555,9.559,19.287,17.377,9.918,18.033,18.37,0.008,13.57,14.871,34.213,3.337,13.472,4.634,22.179,3.424,6.006,21.899,12.709,13.129,23.172,2.275,6.566,-0.285,8.976,14.792,24.787,7.469,12.769,-0.61,-5.86,8.223,21.844,6.419,7.183,12.089,5.88,6.561,17.602,12.137,17.542,13.299,8.458,18.796,-3.51,3.397,26.028,20.586,14.948,5.612,12.179,26.003,5.477,7.36,3.393,16.154,6.195,22.766,11.743,9.421,-3.316,7.679,17.46,2.853,4.682,23.07,11.276,13.611,-3.885,20.448,17.662,7.344,2.174,2.752,19.87,7.4,24.637,15.498,3.203,27.085,13.937,-1.795,-1.155,22.816,-2.732,15.598,2.171,17.265,20.237,17.363,9.339,14.852,11.992,-2.707,15.461,11.076,24.035,8.476,9.687,17.167,10.049,26.597,10.389,9.696,8.836,4.531,13.609,12.189,17.132,10.989,9.843,8.625,10.09,18.531,8.043,18.967,1.484,20.569,14.876,19.049,18.913,13.387,0.999,6.258,4.934,32.826,22.794,3.923,21.683,11.476,2.193,14.278,21.402,20.729,3.331,11.86,16.599,16.211,12.228,17.32,0.893,2.067,15.112,6.485,35.489,13.151,12.045,5.174],[11.573,22.829,17.925,-1.304,13.944,6.866,-4.014,7.944,8.16,2.458,8.739,19.948,24.613,14.639,6.594,4.765,7.458,20.905,10.792,-4.73,5.87,6.993,3.58,24.338,15.451,4.114,25.585,18.101,16.311,12.187,2.688,21.38,-2.878,16.488,14.588,-1.219,9.998,10.497,16.712,12.045,2.736,24.647,11.766,9.591,7.643,9.464,19.554,17.508,10.008,18.112,18.123,-0.236,13.625,15.065,34.236,3.537,13.627,4.714,22.146,3.559,5.981,22.064,12.688,13.218,23.404,1.788,6.409,-0.427,8.918,15.199,24.725,8.0,12.712,-0.616,-5.875,8.167,21.83,6.079,7.116,12.659,5.56,6.636,17.623,12.173,17.854,13.964,8.572,18.673,-3.171,3.718,26.196,20.842,15.381,5.764,11.707,25.774,5.78,7.142,3.217,16.435,5.968,22.665,11.947,9.328,-3.434,7.626,16.603,3.132,4.565,23.494,11.612,13.592,-3.988,20.183,17.677,8.494,2.011,2.432,19.571,7.387,24.03,15.537,2.894,26.695,13.908,-2.013,-1.196,22.581,-3.157,15.196,2.62,17.713,20.159,16.708,9.248,15.019,11.787,-2.829,16.034,10.509,23.922,8.648,9.516,17.36,9.993,26.507,10.626,9.312,8.99,4.454,13.635,12.359,16.884,10.993,9.102,8.839,10.528,18.449,8.01,18.937,1.742,20.4,14.46,19.193,18.893,14.01,0.936,6.19,4.696,32.835,22.637,3.587,21.69,11.53,2.061,13.672,21.04,20.904,4.019,12.165,16.498,15.911,12.833,17.328,0.726,2.177,15.174,5.76,35.704,13.514,12.153,5.551],[11.726,22.615,17.857,-1.331,13.868,6.82,-3.955,7.889,8.284,2.494,8.667,20.13,24.774,14.944,6.691,4.902,7.389,20.972,10.911,-4.99,5.844,7.269,3.216,24.341,15.442,3.985,25.269,17.997,16.461,12.158,2.673,21.147,-2.972,16.439,14.609,-1.255,9.835,10.308,16.8,12.003,2.661,24.604,12.089,9.689,7.884,9.318,19.68,17.451,9.946,18.303,17.963,-0.309,13.886,15.189,34.104,3.56,13.857,4.856,21.959,3.632,5.958,22.125,12.714,13.342,22.821,1.687,6.423,-1.421,8.982,15.226,25.378,8.426,12.165,-0.352,-5.686,8.123,22.144,6.083,7.33,12.924,5.428,6.931,17.14,12.223,17.377,14.575,8.361,18.476,-2.941,3.977,26.487,20.826,16.249,6.117,12.208,25.95,6.034,7.132,2.779,16.441,5.918,22.832,11.702,9.1,-3.499,7.777,16.866,3.159,5.019,23.276,11.205,13.697,-4.24,20.49,17.321,8.763,1.623,2.604,19.705,7.426,23.842,15.037,3.67,26.035,13.756,-2.152,-1.488,21.981,-3.284,14.645,2.759,17.756,19.662,16.396,9.466,15.084,11.688,-2.474,16.235,11.06,23.562,8.851,9.811,17.775,9.769,26.354,11.01,9.195,8.375,4.481,13.607,12.164,16.137,10.971,9.01,8.908,10.558,18.666,8.098,18.793,1.822,20.3,13.941,19.106,18.705,13.818,0.649,6.5,4.822,32.838,22.844,3.243,22.65,11.761,2.231,12.661,20.993,20.845,3.718,12.296,16.476,16.148,13.443,17.078,-0.066,2.388,15.158,5.262,35.59,12.79,12.259,5.459],[11.87,22.514,17.699,-1.304,13.893,6.774,-3.885,7.943,8.591,2.607,8.601,20.269,25.008,15.19,6.859,5.011,7.422,21.045,11.036,-5.16,5.729,7.437,2.855,24.28,15.401,4.091,24.85,17.997,16.579,12.2,2.699,21.121,-3.137,16.447,14.603,-1.171,9.777,10.074,16.947,12.017,2.649,24.539,12.28,9.69,8.082,9.041,19.698,17.39,9.787,18.232,17.845,-0.486,14.174,15.135,34.023,3.405,13.893,5.007,21.74,3.662,5.945,22.175,12.826,13.144,22.817,1.492,6.761,-1.59,8.624,15.198,25.327,7.847,11.775,-0.083,-5.689,8.024,22.198,6.242,7.026,13.191,5.298,6.606,17.626,12.218,17.566,13.916,8.438,18.513,-2.979,4.127,26.66,20.604,16.289,6.253,12.663,25.992,6.157,7.048,2.503,16.009,5.99,22.728,11.237,9.301,-3.9,8.403,17.487,3.435,4.989,23.072,11.149,13.543,-4.169,20.623,17.146,8.741,1.279,3.015,19.523,7.271,23.907,15.18,4.066,25.611,13.567,-1.949,-1.394,21.475,-2.84,15.254,1.742,16.937,19.904,16.687,9.558,15.217,11.555,-2.462,15.928,11.539,23.627,8.703,9.93,17.77,9.606,26.341,10.933,9.648,8.084,4.412,13.73,12.288,15.753,11.107,9.68,9.092,10.412,18.676,7.799,18.586,1.693,20.105,14.566,19.154,18.78,13.734,0.637,6.814,5.134,32.642,23.046,3.399,22.412,11.536,2.596,12.698,20.989,20.248,3.697,11.926,16.672,16.33,14.028,16.943,0.579,2.162,15.533,5.07,35.372,12.745,12.763,5.293],[11.92,22.511,17.77,-1.232,13.873,6.748,-3.775,8.069,8.78,2.673,8.396,20.428,25.248,15.397,6.987,5.12,7.582,20.974,11.051,-5.175,5.599,7.637,2.641,24.273,15.331,4.3,24.499,17.969,16.742,12.213,2.748,21.086,-3.051,16.432,14.643,-1.097,9.811,9.941,17.09,11.978,2.688,24.469,12.35,9.729,8.086,8.782,19.728,17.359,9.703,17.944,17.707,-0.527,14.445,15.043,34.018,3.3,13.813,5.074,21.406,3.609,5.962,22.143,12.769,12.791,22.714,1.598,7.232,-1.269,8.734,15.194,25.346,8.0,12.21,-0.639,-5.595,8.037,21.866,6.3,6.751,13.247,5.337,6.956,17.832,12.212,17.128,13.133,8.296,18.69,-3.127,4.031,26.834,20.77,15.712,6.187,12.699,25.574,6.512,6.946,2.31,15.802,6.036,22.759,11.319,9.308,-4.06,8.841,17.377,4.033,4.709,23.566,11.282,13.536,-4.048,20.578,17.507,8.007,1.083,2.57,19.739,6.915,23.279,15.866,3.966,25.783,13.373,-1.448,-1.518,21.717,-2.742,15.548,1.645,17.17,20.146,16.977,9.336,15.376,11.619,-2.711,15.562,11.853,23.706,8.824,9.326,17.468,9.283,26.327,10.462,9.3,7.752,4.426,13.578,12.3,16.141,11.235,9.928,9.26,10.666,18.443,7.748,18.44,1.798,19.579,15.539,18.992,19.041,14.176,0.483,6.805,5.432,32.481,23.0,3.748,21.918,11.686,2.524,13.341,20.973,19.88,3.98,11.958,16.62,16.13,14.307,16.986,0.517,2.007,15.395,5.096,35.155,13.237,13.034,5.748],[11.882,22.459,17.849,-1.28,13.647,6.703,-3.665,8.177,8.963,2.693,8.181,20.641,25.407,15.579,7.113,5.303,7.757,20.882,10.936,-5.114,5.471,7.757,2.606,24.338,15.29,4.47,24.292,17.984,16.922,12.27,2.759,21.064,-2.856,16.575,14.764,-1.163,9.705,9.909,17.092,11.837,2.753,24.369,12.367,9.816,7.955,8.714,19.78,17.258,9.695,17.748,17.57,-0.587,14.818,15.044,33.996,3.269,13.76,5.139,21.112,3.532,5.935,21.953,12.666,12.578,22.444,1.766,7.684,-0.663,8.884,15.068,25.491,8.54,12.489,-0.831,-5.257,7.794,21.566,6.279,6.692,13.202,5.191,7.596,17.558,12.42,17.225,12.721,8.109,18.982,-3.11,3.657,27.116,21.055,16.055,6.141,12.364,25.857,7.001,7.439,2.097,16.064,5.592,22.554,11.784,9.455,-3.742,9.123,17.222,4.398,4.47,23.316,10.782,13.387,-4.124,20.143,17.531,7.742,1.076,2.594,19.74,7.121,23.056,15.869,3.732,25.718,13.36,-1.636,-1.254,22.24,-2.734,15.156,2.777,17.235,20.076,16.927,8.746,15.346,11.582,-2.212,15.778,11.434,23.538,8.934,9.979,17.644,9.261,26.027,10.37,9.242,7.38,4.539,13.552,11.823,16.459,11.229,9.531,9.11,10.413,19.179,7.984,18.792,2.008,19.336,15.546,18.466,19.093,14.428,0.863,6.699,5.863,32.631,22.957,3.758,21.949,11.759,2.459,13.531,20.736,19.56,3.787,12.029,16.168,15.647,14.081,16.651,0.11,2.035,15.191,5.653,35.179,12.867,12.508,5.632],[11.792,22.371,17.641,-1.322,13.325,6.642,-3.469,8.174,9.219,2.776,8.201,20.849,25.651,15.777,7.259,5.622,7.887,20.696,10.812,-5.055,5.42,7.781,2.549,24.411,15.223,4.329,24.087,18.033,17.081,12.227,2.961,21.044,-2.727,16.772,14.76,-1.183,9.608,9.844,17.133,11.615,2.904,24.392,12.186,9.941,7.799,8.788,19.888,17.359,9.71,17.54,17.442,-0.583,15.185,14.932,33.969,3.266,13.697,5.136,20.966,3.388,6.017,21.792,12.612,12.586,22.681,1.7,7.975,-0.501,8.527,15.303,25.167,8.807,12.228,-0.795,-5.361,7.431,21.295,6.368,6.827,13.216,5.114,7.569,17.536,12.069,17.907,12.5,8.13,19.004,-2.569,3.006,27.352,21.316,16.445,6.621,12.0,26.016,7.243,8.049,2.178,16.194,5.606,22.434,11.783,9.708,-3.525,9.133,17.4,4.313,5.195,23.046,10.756,13.488,-4.431,20.395,17.347,7.795,0.999,3.127,19.507,6.834,23.192,15.408,3.573,25.518,13.457,-2.06,-1.015,22.495,-2.796,15.297,2.585,17.126,19.854,16.976,8.561,15.366,11.353,-2.141,16.257,11.253,23.187,8.421,10.1,17.688,9.841,26.007,10.656,9.44,7.647,4.597,13.422,11.715,15.849,11.285,9.127,8.822,10.692,18.709,7.808,18.463,1.891,20.071,14.736,18.955,18.508,14.709,0.695,6.802,6.006,32.593,22.475,3.648,21.841,11.398,2.509,13.034,20.723,19.373,3.731,11.76,16.32,16.127,14.065,16.422,0.071,2.371,15.122,5.704,35.152,12.292,12.052,5.59],[11.707,22.364,17.465,-1.215,13.047,6.712,-3.201,8.235,9.341,2.874,8.283,20.957,25.851,15.979,7.534,5.829,7.941,20.54,10.769,-5.086,5.427,7.707,2.401,24.314,15.204,4.2,23.896,18.083,17.181,12.07,3.29,21.081,-2.789,16.8,14.704,-1.284,9.496,9.784,17.136,11.472,3.056,24.585,12.015,10.031,7.594,8.926,20.001,17.358,9.769,17.55,17.321,-0.541,15.401,14.74,33.876,3.295,13.515,5.198,20.961,3.305,6.166,21.558,12.539,12.632,22.911,1.184,8.117,-0.917,8.661,15.8,24.875,8.411,12.231,-0.256,-5.056,8.02,21.038,6.373,6.616,13.133,4.927,7.197,17.599,11.976,17.746,12.596,8.119,19.274,-2.523,3.066,27.612,21.403,16.332,6.446,12.014,26.025,7.04,7.853,2.178,15.986,5.906,22.239,11.488,9.904,-3.754,9.136,17.409,4.1,5.394,23.237,11.276,13.351,-4.116,20.831,17.559,7.78,0.98,3.15,19.81,6.47,23.17,15.346,3.884,25.27,13.786,-1.379,-1.125,21.988,-2.583,15.651,2.178,17.153,19.654,17.431,8.511,15.306,11.331,-2.987,15.987,11.118,23.319,8.168,9.708,17.775,10.181,26.267,10.627,9.184,8.321,4.55,13.084,11.809,15.542,11.019,9.201,8.756,10.511,18.454,7.438,18.034,1.733,20.763,14.201,18.841,18.093,14.868,0.716,6.9,6.429,32.678,21.907,3.314,21.691,11.139,2.898,12.884,20.47,19.643,3.846,11.79,16.14,15.973,14.456,16.375,0.318,2.036,14.846,5.468,35.234,12.894,11.934,5.908],[11.693,22.462,17.354,-1.101,13.014,6.834,-2.985,8.381,9.307,2.856,8.388,21.248,25.994,16.102,7.76,5.772,7.997,20.474,10.873,-5.056,5.512,7.478,2.192,24.132,15.125,4.255,23.816,18.183,17.205,12.065,3.528,21.173,-2.965,16.719,14.577,-1.522,9.353,9.801,17.106,11.364,3.089,24.813,11.858,9.991,7.457,9.083,20.094,17.218,9.764,17.642,17.171,-0.35,15.486,14.432,33.806,3.39,13.318,5.334,20.971,3.214,6.265,21.205,12.424,12.711,22.46,1.078,8.257,-0.73,9.064,15.508,25.061,8.315,12.265,-0.021,-4.857,8.191,20.986,6.399,6.694,13.191,5.277,7.091,17.182,11.647,17.447,12.021,8.076,19.507,-2.246,3.636,27.661,20.951,16.601,6.997,12.402,25.817,7.04,7.132,2.484,15.453,5.753,22.27,11.499,9.754,-3.795,9.116,17.432,4.163,5.019,23.496,11.048,13.343,-4.018,20.236,17.628,7.825,0.986,3.155,19.974,7.184,22.747,15.576,4.061,25.15,13.782,-1.28,-1.476,21.735,-2.39,15.652,2.725,17.412,19.605,17.477,8.363,15.293,11.22,-3.365,15.381,11.343,23.702,8.177,9.707,17.624,9.28,26.474,10.445,9.01,8.175,4.559,12.906,11.657,15.603,10.678,9.824,8.717,10.761,18.798,7.951,17.894,1.735,21.312,14.224,18.172,18.659,14.749,0.906,6.735,7.4,32.405,21.929,2.879,21.296,10.998,3.212,13.085,20.531,19.388,4.028,11.924,16.099,15.741,14.935,16.79,0.429,1.672,14.64,5.995,35.305,12.726,11.978,5.997],[11.805,22.548,17.232,-1.041,12.96,6.753,-2.859,8.533,9.286,2.717,8.41,21.522,26.05,16.135,7.923,5.715,7.898,20.425,11.111,-4.969,5.826,7.222,2.08,24.133,14.873,4.399,23.951,18.222,17.142,12.134,3.631,21.239,-3.084,16.659,14.27,-1.693,9.272,9.67,17.127,11.248,2.961,24.953,11.722,9.921,7.5,9.155,20.164,16.999,9.685,17.58,17.139,-0.101,15.516,14.154,33.765,3.577,13.254,5.367,20.752,3.077,6.497,20.973,12.384,12.788,22.281,1.495,7.659,-0.244,8.75,15.701,25.462,8.77,12.178,-0.324,-4.747,7.693,21.344,6.752,7.2,13.338,5.287,7.31,17.559,12.086,16.675,11.955,8.369,19.93,-2.001,4.15,27.889,21.469,16.107,7.116,12.5,25.864,7.199,7.495,2.476,15.559,5.75,22.215,11.654,9.804,-3.389,8.769,17.257,4.251,5.036,23.121,10.878,13.042,-4.477,19.782,17.647,7.428,1.13,3.203,20.028,7.047,22.563,16.015,3.976,25.112,13.794,-1.998,-1.528,21.928,-2.636,15.768,3.568,17.343,20.189,16.991,8.422,15.345,10.996,-3.254,15.229,11.116,23.95,8.232,9.89,17.309,9.104,26.59,10.838,9.199,7.786,4.632,13.097,11.231,15.664,11.143,9.917,8.609,10.342,19.396,8.409,18.467,1.674,21.58,14.571,18.511,18.741,14.544,1.526,6.948,8.028,32.285,21.871,3.075,20.852,11.456,2.741,13.033,21.046,18.947,3.952,11.592,16.209,15.61,15.279,16.586,0.443,1.25,14.854,6.349,34.666,12.393,11.7,6.105],[11.842,22.562,17.117,-0.988,12.988,6.653,-2.737,8.798,9.066,2.585,8.272,21.736,26.114,16.171,8.013,5.759,7.803,20.326,11.255,-4.945,6.166,7.071,2.144,24.227,14.653,4.642,24.162,18.245,17.15,12.293,3.733,21.274,-3.011,16.531,14.071,-1.798,9.263,9.511,17.109,11.134,2.83,24.966,11.692,9.848,7.465,9.1,20.284,16.917,9.735,17.459,16.922,0.189,15.548,14.036,33.575,3.774,13.287,5.338,20.498,2.921,6.843,20.901,12.576,12.847,22.669,1.424,7.386,-0.323,9.116,15.746,25.435,9.123,12.253,0.126,-4.5,7.54,22.121,7.012,6.751,13.417,5.048,8.161,17.012,12.549,16.368,11.531,8.126,19.917,-2.326,4.234,27.79,21.856,16.315,6.82,12.438,26.146,7.046,7.762,1.916,15.733,6.407,22.193,11.883,9.505,-3.274,8.56,17.157,4.146,5.123,23.123,10.925,12.808,-4.298,20.134,17.831,7.042,1.069,3.123,20.056,7.048,22.702,15.838,3.93,25.214,13.537,-2.013,-1.23,22.724,-2.803,15.407,3.928,16.947,20.133,17.004,8.172,15.592,10.916,-3.127,14.646,10.726,23.93,8.079,9.78,17.747,9.776,26.36,10.593,9.051,7.929,4.578,12.881,11.149,15.288,11.266,9.369,8.785,10.303,19.392,8.115,17.802,1.361,21.189,14.695,18.942,18.209,14.526,1.817,6.958,7.923,32.271,21.293,3.421,20.73,11.56,2.574,12.628,21.06,18.681,4.161,11.239,16.602,15.234,15.11,16.417,0.354,1.199,14.871,6.329,34.876,12.794,11.717,6.203],[11.663,22.653,16.968,-0.785,12.999,6.664,-2.723,9.029,8.756,2.407,8.102,21.757,26.01,16.27,8.056,5.735,7.711,20.345,11.233,-4.975,6.401,7.016,2.275,24.331,14.585,4.742,24.359,18.285,17.139,12.449,3.952,21.424,-2.803,16.351,13.925,-1.825,9.258,9.439,17.185,11.192,2.748,24.939,11.817,9.781,7.131,8.975,20.455,16.813,9.749,17.457,16.562,0.418,15.594,14.077,33.461,4.007,13.35,5.329,20.386,2.765,7.012,20.895,12.713,12.857,22.92,1.181,7.047,-0.497,8.905,15.781,25.715,8.951,12.154,0.077,-4.577,7.426,22.632,7.119,6.572,13.423,4.88,8.337,16.896,12.202,16.381,11.352,7.841,20.001,-2.132,4.015,27.422,22.241,17.162,6.845,12.505,25.868,6.824,7.536,2.175,15.446,6.682,21.967,12.197,9.541,-3.776,8.78,16.995,4.184,5.45,23.119,10.947,12.804,-4.051,20.283,18.014,7.292,0.844,3.327,19.997,7.5,22.927,15.424,3.839,25.408,13.755,-1.487,-1.319,22.664,-2.387,15.098,3.641,16.63,20.09,17.279,8.193,15.284,10.947,-3.472,14.559,11.119,23.615,8.098,9.519,17.945,9.904,26.4,10.105,9.188,7.943,4.194,12.793,11.57,14.996,10.599,9.523,8.341,10.557,18.897,7.967,17.453,1.39,20.518,14.05,18.44,17.911,14.734,1.798,6.68,7.903,32.497,20.518,3.462,21.236,11.349,3.823,13.517,20.348,18.761,4.531,11.978,16.43,15.302,14.551,15.846,0.78,1.331,14.632,6.301,34.88,13.011,11.849,6.121],[11.394,22.84,16.917,-0.558,12.902,6.706,-2.814,9.159,8.546,2.254,8.219,21.813,26.012,16.474,8.009,5.6,7.696,20.497,11.156,-5.101,6.534,7.139,2.392,24.353,14.656,4.571,24.449,18.317,16.985,12.555,4.16,21.57,-2.64,16.216,13.808,-1.828,9.314,9.494,17.145,11.511,2.635,24.837,11.997,9.738,6.741,8.862,20.497,16.852,9.672,17.449,16.132,0.631,15.606,14.189,33.52,4.396,13.314,5.325,20.382,2.56,6.851,20.963,12.587,12.932,23.389,0.665,6.575,-0.176,8.178,15.923,25.194,8.888,11.813,0.305,-4.713,7.716,22.532,7.492,6.699,13.089,4.845,7.539,17.624,11.76,16.206,11.624,8.117,19.989,-2.214,3.508,26.823,22.241,16.338,7.032,12.253,25.98,6.937,7.194,2.117,14.933,6.561,22.173,12.126,9.485,-3.636,8.772,16.88,3.921,5.385,23.134,11.442,12.722,-4.372,20.341,18.022,7.168,1.436,3.916,20.21,7.248,23.152,15.359,3.855,25.756,13.801,-1.687,-1.339,22.777,-2.069,14.881,3.215,16.547,20.217,16.865,8.571,15.497,11.107,-3.486,15.067,11.562,23.83,7.795,9.68,18.063,9.161,26.656,10.219,9.425,7.811,4.075,13.232,11.772,15.407,10.802,9.733,7.858,10.19,19.203,7.707,17.963,1.129,20.23,13.66,18.608,17.832,15.212,1.409,6.985,8.532,32.257,20.061,3.324,21.295,11.124,3.794,13.584,19.941,18.917,4.395,12.416,15.684,15.989,14.352,15.358,1.04,1.972,14.553,6.648,34.595,13.058,11.557,5.962],[11.241,23.149,17.077,-0.274,12.663,6.856,-2.934,9.324,8.625,2.082,8.398,21.814,25.881,16.52,7.825,5.506,7.7,20.68,11.045,-5.206,6.591,7.147,2.356,24.324,14.665,4.435,24.468,18.453,16.95,12.696,4.285,21.66,-2.478,16.21,13.779,-1.905,9.444,9.525,17.128,11.733,2.399,24.803,12.193,9.707,6.653,8.85,20.515,17.047,9.639,17.435,15.696,0.697,15.633,14.332,33.505,4.268,13.228,5.334,20.414,2.392,6.794,21.084,12.426,13.006,23.435,0.355,7.073,0.366,8.601,16.279,25.439,8.923,11.486,0.444,-4.674,7.705,22.375,7.846,6.951,12.948,5.482,7.354,16.883,11.705,16.196,11.457,8.431,20.038,-2.534,2.806,26.879,22.385,16.412,6.646,12.166,26.257,6.645,7.326,2.249,14.969,6.666,22.424,11.877,9.616,-3.363,8.866,16.556,3.796,4.838,23.536,11.777,12.866,-4.903,20.573,17.461,6.482,1.547,3.581,20.125,7.42,23.068,15.21,3.714,25.914,13.524,-1.903,-1.431,22.576,-2.088,14.499,3.288,16.82,20.686,16.52,8.999,15.524,11.233,-3.568,15.209,11.021,23.723,7.217,9.764,18.045,8.486,26.615,10.205,9.506,7.787,3.895,13.506,11.894,15.614,11.913,9.551,8.06,10.596,19.519,7.812,18.518,0.816,20.25,14.261,18.468,17.467,15.065,1.444,7.041,8.529,31.889,19.889,2.312,20.817,11.22,3.709,12.865,19.717,19.066,4.512,11.54,15.985,15.963,14.774,15.125,1.256,2.603,14.325,6.262,34.765,12.559,11.54,5.807],[11.245,23.5,17.199,0.096,12.498,7.16,-3.171,9.543,8.824,1.944,8.348,21.797,25.723,16.483,7.511,5.394,7.726,20.819,10.997,-5.199,6.634,6.885,2.223,24.422,14.654,4.406,24.626,18.504,16.92,12.896,4.277,21.714,-2.331,16.325,13.868,-2.099,9.605,9.539,17.209,11.782,2.121,24.862,12.38,9.777,6.639,9.013,20.574,17.335,9.551,17.454,15.31,0.64,15.701,14.502,33.361,3.992,13.164,5.335,20.44,2.194,6.827,21.085,12.185,12.76,23.458,0.569,7.0,0.224,8.921,16.554,25.444,9.214,11.51,0.18,-4.673,7.841,22.585,7.583,6.986,13.017,5.427,7.594,17.051,11.872,15.935,10.951,8.533,19.875,-1.837,1.829,26.987,22.034,17.164,6.452,12.379,26.169,6.499,7.459,2.132,14.978,6.68,22.691,11.613,9.47,-3.603,8.541,16.248,3.692,4.967,23.668,11.168,12.854,-4.778,20.459,17.53,6.506,1.403,3.265,20.394,7.702,23.006,15.73,3.651,25.37,13.784,-1.88,-1.284,23.036,-2.537,14.274,4.028,17.085,20.818,17.232,8.624,15.508,11.41,-3.653,15.253,11.148,23.527,7.129,9.76,17.898,8.89,26.26,9.973,9.485,7.962,3.678,13.448,11.989,15.801,11.724,9.83,8.079,10.604,19.153,7.993,18.316,0.736,20.663,14.944,18.555,17.124,14.351,2.008,6.785,7.925,32.308,20.007,2.065,20.561,11.421,3.479,12.588,19.675,19.015,4.235,11.084,16.193,15.688,15.498,14.686,0.894,2.067,14.287,5.862,34.711,12.685,11.576,6.062],[11.277,23.857,17.196,0.258,12.625,7.103,-3.388,9.554,8.717,1.953,8.191,21.559,25.624,16.509,7.171,5.271,7.657,20.838,11.202,-5.001,6.735,6.662,2.143,24.459,14.528,4.512,24.798,18.546,17.045,12.986,4.242,21.83,-2.262,16.643,14.02,-2.261,9.654,9.425,17.417,11.821,1.807,24.872,12.394,9.806,6.583,9.203,20.596,17.561,9.448,17.477,15.033,0.531,15.748,14.602,33.165,3.783,13.037,5.342,20.339,2.001,6.773,20.898,12.063,12.42,23.872,0.759,7.013,0.333,8.49,16.615,25.752,9.872,11.917,0.574,-4.473,7.845,22.82,7.8,6.557,12.966,5.279,7.204,17.159,11.764,16.371,11.074,8.511,20.054,-2.006,1.145,27.123,22.632,16.364,6.835,12.293,26.138,6.638,7.577,2.405,14.847,7.384,22.536,11.775,9.518,-3.758,8.189,15.727,3.638,5.167,23.289,11.473,12.603,-4.121,20.588,18.495,6.795,1.469,3.204,20.289,7.69,23.042,16.051,3.794,25.676,13.899,-1.891,-1.159,23.284,-2.681,14.822,4.529,16.79,20.718,16.951,8.523,15.546,11.453,-3.492,15.148,11.858,23.667,7.569,9.68,17.597,9.911,26.558,9.931,9.796,8.216,3.369,13.683,12.05,15.997,11.137,9.881,7.755,10.619,19.169,8.032,18.299,0.684,21.358,15.233,18.969,16.803,14.585,1.721,6.965,7.614,32.339,20.039,2.197,20.944,11.041,2.887,12.541,20.029,18.944,4.467,11.589,16.175,16.191,15.538,14.511,0.624,1.03,14.643,6.23,34.411,13.046,11.666,6.136],[11.286,24.122,17.167,0.302,12.798,6.953,-3.543,9.591,8.536,2.027,7.983,21.579,25.671,16.298,7.018,5.298,7.636,20.875,11.426,-4.786,6.892,6.638,2.163,24.283,14.277,4.665,24.986,18.603,17.088,13.036,4.253,21.999,-2.297,16.814,14.255,-2.264,9.669,9.417,17.6,12.002,1.459,24.883,12.263,9.787,6.63,9.225,20.72,17.537,9.449,17.476,14.815,0.353,15.771,14.753,33.035,3.657,13.055,5.47,20.344,1.862,6.665,20.669,12.154,12.25,23.924,0.886,7.092,0.832,8.279,16.814,24.785,9.421,11.921,1.358,-4.888,7.394,23.095,7.898,6.9,12.73,5.102,6.513,17.174,11.688,16.025,11.761,8.467,19.854,-2.652,1.374,27.119,22.575,16.754,5.8,12.484,26.141,6.631,7.253,1.99,14.532,7.062,22.377,12.067,9.364,-3.48,8.325,15.659,3.736,4.97,23.19,11.91,12.652,-3.754,20.805,18.827,6.342,1.845,3.451,20.405,7.918,23.395,16.265,4.008,26.334,14.602,-1.902,-1.035,23.068,-2.268,14.996,4.189,17.21,20.908,17.301,8.28,15.937,11.291,-3.565,15.419,11.455,23.869,7.814,9.692,17.813,9.358,26.543,9.86,9.87,8.229,3.034,13.831,12.054,16.212,11.239,9.755,7.543,10.982,19.537,8.034,18.865,-0.005,21.359,15.469,18.877,16.605,14.879,0.92,7.144,7.491,32.083,20.15,2.485,21.157,10.95,3.004,12.587,20.08,18.748,4.197,11.469,16.245,16.28,15.062,14.622,0.955,1.009,14.352,6.387,33.75,12.59,11.636,5.713],[11.138,24.234,17.074,0.451,12.953,6.878,-3.646,9.501,8.493,2.068,7.953,21.68,25.677,16.21,6.797,5.33,7.404,21.057,11.568,-4.582,6.89,6.705,2.197,24.215,14.037,4.816,25.06,18.705,16.991,13.169,4.292,22.148,-2.313,17.011,14.445,-2.165,9.802,9.416,17.794,12.253,1.113,24.916,12.138,9.913,6.597,9.114,20.889,17.536,9.497,17.43,14.691,0.159,15.715,14.952,32.916,3.641,13.16,5.456,20.339,1.799,6.52,20.61,12.364,12.224,23.843,0.767,6.859,0.46,8.289,16.169,25.059,8.833,11.578,1.103,-5.12,7.464,23.307,7.892,6.549,12.777,5.073,6.144,17.108,11.937,15.968,11.901,8.013,19.895,-3.165,1.91,27.309,22.078,16.67,5.665,13.128,26.091,6.834,7.488,2.307,14.21,6.582,22.917,12.052,9.113,-2.906,8.363,16.049,3.78,5.314,23.381,12.137,12.161,-4.193,20.482,17.889,6.416,1.265,3.96,20.501,7.784,23.356,16.073,3.97,26.37,15.014,-2.08,-1.18,23.603,-2.052,15.049,3.716,17.341,20.974,17.769,8.325,16.157,11.606,-3.935,15.696,10.97,23.79,7.484,9.67,17.939,8.421,26.738,10.148,9.747,8.213,2.606,13.97,12.096,16.107,11.787,9.402,7.889,10.742,19.974,7.906,18.884,-0.337,20.874,15.317,18.775,16.464,14.745,0.888,6.983,7.775,31.601,19.79,2.582,20.546,11.096,3.295,12.283,20.318,19.352,3.571,11.628,16.146,15.896,14.716,14.592,0.639,1.676,13.919,6.112,33.823,12.465,11.472,5.933],[11.004,24.35,16.948,0.521,13.092,6.836,-3.674,9.235,8.503,2.142,8.11,21.67,25.817,16.149,6.631,5.282,7.154,21.216,11.751,-4.33,6.601,6.83,2.19,24.238,13.865,4.75,25.131,18.675,16.817,13.416,4.327,22.355,-2.253,17.295,14.518,-2.255,10.049,9.294,17.942,12.422,0.958,24.953,12.193,10.034,6.452,9.026,21.013,17.501,9.479,17.322,14.637,-0.0,15.571,14.992,32.851,3.648,13.169,5.332,20.392,1.835,6.353,20.646,12.646,12.172,23.705,0.701,6.99,0.272,8.227,15.296,25.836,9.168,11.452,0.401,-4.893,7.585,23.308,7.495,6.583,12.775,5.024,5.466,16.733,12.02,15.53,11.643,7.847,19.809,-3.725,2.136,27.237,21.958,16.244,5.797,13.154,26.031,6.83,7.301,2.374,13.888,6.736,23.031,12.123,8.871,-2.662,8.601,16.062,3.788,5.444,23.46,12.041,12.057,-3.993,20.67,17.708,6.886,1.588,4.573,20.399,8.067,23.261,15.271,3.415,25.834,14.924,-1.825,-1.084,23.604,-2.374,15.386,3.61,17.172,20.898,17.502,8.981,16.205,11.858,-3.811,15.976,11.087,23.533,7.252,9.958,18.405,8.59,26.488,10.214,9.846,8.003,1.605,14.171,12.552,15.86,12.241,9.527,7.899,10.983,19.976,7.749,18.677,-0.188,20.826,15.087,18.85,16.355,14.975,0.87,6.813,7.937,31.74,19.031,2.295,20.768,11.229,2.822,12.443,20.908,18.971,3.935,11.718,15.952,16.39,14.377,14.59,0.462,1.409,13.98,5.776,34.218,12.188,11.42,6.282],[11.159,24.399,16.76,0.417,13.017,6.937,-3.678,9.032,8.601,2.272,8.304,21.614,26.065,15.882,6.463,5.27,6.937,21.243,11.861,-4.067,6.305,7.022,2.194,24.297,13.697,4.696,25.209,18.48,16.402,13.551,4.257,22.468,-2.118,17.388,14.632,-2.464,10.261,9.282,18.044,12.578,0.849,24.767,12.368,10.182,6.286,8.968,21.072,17.383,9.39,17.175,14.64,-0.033,15.415,14.859,33.008,3.63,13.095,5.347,20.527,1.6,6.234,20.797,12.831,11.993,23.726,0.69,6.919,0.766,8.313,15.639,25.657,9.367,11.698,0.671,-5.304,7.543,23.37,7.097,7.022,12.632,5.227,5.377,16.458,12.162,15.32,11.863,7.947,19.944,-3.599,2.619,27.381,21.286,16.54,5.956,13.008,26.008,6.484,7.004,2.31,14.009,6.733,22.792,12.815,8.375,-2.586,8.707,16.113,3.586,5.043,23.44,11.999,11.977,-3.256,21.486,18.296,6.897,1.586,5.202,20.267,7.612,23.396,14.747,3.675,25.69,14.926,-1.732,-0.858,23.18,-2.498,15.507,3.976,17.632,21.371,17.915,8.076,16.185,11.989,-3.508,15.573,11.419,23.748,7.231,10.638,18.676,9.188,26.499,9.817,10.017,7.993,0.939,14.217,12.935,15.948,12.921,10.066,7.413,10.83,19.63,7.847,18.535,-0.29,21.522,14.982,18.737,16.272,14.979,0.444,6.812,7.696,31.775,19.272,2.147,20.625,11.457,3.042,12.834,21.035,18.812,4.373,11.975,15.992,16.594,13.821,14.732,0.765,0.813,14.468,5.424,34.323,12.884,11.479,5.604],[11.448,24.284,16.622,0.318,12.948,7.133,-3.83,8.952,8.731,2.413,8.41,21.501,26.237,15.675,6.258,5.276,6.695,21.317,11.967,-3.872,6.07,7.168,2.198,24.475,13.646,4.818,25.257,18.401,15.946,13.551,4.267,22.462,-2.031,17.49,14.698,-2.63,10.345,9.123,18.097,12.68,0.668,24.682,12.628,10.329,6.153,9.037,21.182,17.426,9.366,17.105,14.676,0.044,15.182,14.611,33.212,3.744,13.251,5.394,20.708,1.1,6.133,20.867,12.922,11.867,23.882,0.79,6.844,0.792,8.945,15.681,25.763,9.124,12.235,0.862,-5.24,7.842,23.258,7.203,6.935,12.717,5.377,5.303,15.932,12.052,15.403,11.794,8.594,20.353,-2.88,3.07,27.746,20.697,16.385,5.908,12.914,26.259,6.697,7.019,2.216,14.24,6.17,22.962,12.846,7.964,-2.318,8.701,16.096,3.635,5.219,23.347,11.899,11.803,-3.363,21.236,18.464,6.921,1.528,4.548,20.048,7.412,23.422,14.289,3.607,26.09,14.889,-1.984,-0.55,24.069,-2.28,15.936,3.808,17.557,21.721,18.358,7.661,16.292,11.783,-3.75,15.556,11.4,23.62,7.472,10.608,18.27,8.791,26.481,9.938,10.38,7.859,1.354,14.308,12.878,15.9,13.369,9.125,7.151,11.404,19.725,8.067,18.293,-0.715,21.883,14.626,18.527,16.307,14.606,0.736,7.13,7.27,31.944,20.301,1.737,20.572,11.661,3.326,12.293,20.947,19.088,4.57,12.153,15.947,16.193,13.752,14.75,0.293,0.756,14.343,5.749,33.943,13.267,11.534,5.154],[11.534,24.121,16.486,0.368,12.895,7.283,-3.863,8.884,8.91,2.53,8.418,21.4,26.352,15.587,5.993,5.393,6.711,21.334,11.977,-3.846,5.88,7.3,2.354,24.645,13.746,4.803,25.387,18.362,15.527,13.48,4.198,22.589,-2.024,17.606,14.806,-2.762,10.339,8.822,18.126,12.867,0.558,24.689,12.964,10.463,6.1,9.14,21.367,17.484,9.289,17.138,14.738,0.087,14.912,14.331,33.307,4.023,13.486,5.475,20.76,0.612,6.106,20.883,12.963,11.672,23.704,1.043,7.149,0.17,8.992,15.494,25.205,8.642,12.101,0.721,-5.148,7.887,23.174,7.45,6.889,13.191,5.552,5.397,15.758,11.958,15.384,11.64,8.716,20.463,-2.656,2.986,27.722,20.484,16.533,5.988,13.183,26.332,7.176,6.865,2.159,14.18,5.876,23.151,12.475,8.097,-2.14,9.031,16.092,4.003,5.605,23.558,11.744,12.102,-3.55,20.766,17.926,7.256,1.746,4.329,20.285,7.611,23.79,14.484,3.274,26.562,14.697,-2.4,-0.738,24.205,-2.25,16.302,3.744,17.465,21.497,18.327,7.943,16.516,11.913,-4.267,15.752,11.454,23.209,7.233,9.885,17.556,8.491,26.367,10.196,10.683,7.971,1.489,14.69,12.848,15.934,13.053,8.883,7.246,11.286,20.089,8.194,18.583,-0.77,21.452,14.651,18.458,16.289,14.265,0.519,7.189,6.898,32.311,20.832,1.169,20.537,11.454,3.311,11.903,21.096,19.457,4.313,12.325,15.645,14.868,13.977,14.598,0.45,0.691,14.475,5.851,33.89,13.196,11.762,5.544],[11.397,24.018,16.372,0.308,12.814,7.395,-3.932,8.72,9.029,2.599,8.46,21.328,26.188,15.723,5.813,5.551,6.973,21.193,11.853,-3.893,5.801,7.528,2.667,24.715,13.888,4.688,25.504,18.298,15.161,13.346,4.104,22.715,-2.075,17.629,15.106,-2.846,10.35,8.524,18.114,13.09,0.504,24.643,13.204,10.334,6.1,9.261,21.483,17.442,9.36,17.117,14.777,0.009,14.695,13.907,33.283,4.343,13.595,5.579,20.755,0.209,6.19,20.839,12.997,11.357,23.757,1.226,7.437,0.9,8.78,15.409,25.163,8.825,11.874,0.419,-5.021,7.654,23.52,7.128,7.075,12.933,5.357,5.235,15.822,12.278,15.764,11.294,8.413,19.81,-2.6,2.932,27.644,20.925,16.667,5.373,12.82,26.47,7.06,6.838,2.625,14.131,6.276,23.02,12.113,8.456,-2.429,9.19,16.438,3.848,5.355,24.092,11.712,12.339,-3.127,21.266,17.841,7.367,1.824,5.189,20.135,7.484,24.28,14.818,3.378,26.911,14.248,-2.603,-0.743,23.899,-2.825,16.602,3.77,17.776,21.471,17.971,8.354,16.614,11.963,-4.318,15.816,11.805,23.477,6.708,9.657,17.565,8.56,26.325,10.097,10.696,8.284,1.716,14.676,13.315,16.421,12.706,9.676,7.526,11.3,20.121,8.182,19.162,-0.615,21.347,14.412,18.606,16.311,14.624,0.341,7.332,6.493,32.523,20.909,0.704,20.469,11.536,3.482,12.323,21.281,19.335,4.044,12.404,15.851,14.751,14.372,14.864,1.1,0.102,14.825,5.535,34.503,12.609,12.068,6.017],[11.198,24.036,16.357,0.227,12.852,7.345,-4.077,8.557,9.113,2.634,8.551,21.202,25.88,15.866,5.669,5.347,7.097,21.225,11.615,-4.001,5.884,7.646,2.932,24.971,14.037,4.56,25.511,18.125,14.964,13.165,4.131,22.786,-2.151,17.566,15.409,-2.812,10.34,8.339,18.058,13.322,0.586,24.621,13.334,10.061,6.169,9.36,21.604,17.513,9.813,17.164,14.854,-0.06,14.653,13.586,33.314,4.453,13.652,5.802,20.841,-0.176,6.215,20.693,13.03,11.144,23.62,1.387,7.343,0.549,9.001,14.918,26.259,9.182,12.11,0.535,-5.59,7.815,23.465,6.809,7.123,12.408,5.425,4.905,15.882,12.187,15.728,11.395,8.775,19.702,-2.884,2.974,27.468,21.467,16.353,5.616,12.822,26.755,6.833,7.415,3.14,14.387,6.365,22.728,11.757,8.677,-2.431,9.181,16.416,3.809,5.249,24.021,11.559,12.21,-3.367,21.614,18.258,7.662,1.978,4.762,19.838,7.351,24.609,14.727,3.565,27.229,14.442,-2.819,-0.875,23.777,-2.766,16.583,3.338,17.964,21.807,17.962,8.624,16.288,11.912,-4.19,16.0,12.173,23.79,6.671,9.913,18.056,8.601,26.384,9.701,10.637,8.437,1.798,14.65,13.963,16.523,12.881,9.474,7.629,11.156,19.937,8.229,19.121,-0.526,21.791,13.859,18.769,16.289,14.321,0.311,7.436,6.537,32.203,20.78,0.165,20.627,11.801,3.992,12.094,21.272,19.072,4.929,12.101,16.054,15.163,14.449,14.767,0.815,0.319,14.875,6.181,34.784,12.244,12.34,5.457],[11.062,24.15,16.355,0.096,13.043,7.469,-4.285,8.544,9.254,2.679,8.578,21.17,25.777,15.72,5.585,5.133,7.131,21.442,11.296,-4.157,5.954,7.667,3.029,25.26,14.138,4.493,25.566,17.94,14.821,13.169,3.955,22.804,-2.223,17.568,15.494,-2.67,10.402,8.219,17.834,13.417,0.677,24.745,13.501,9.855,6.227,9.323,21.807,17.519,10.225,17.347,14.89,-0.18,14.639,13.551,33.361,4.632,13.733,5.915,21.051,-0.477,6.287,20.554,12.997,11.081,23.595,1.247,7.446,0.007,8.917,15.249,26.006,9.087,11.994,0.743,-6.188,7.919,23.112,6.742,7.18,12.68,5.953,4.687,15.592,11.986,15.448,11.719,9.002,19.408,-3.594,2.911,27.294,21.76,16.644,4.992,12.919,26.967,6.806,7.398,2.956,14.735,6.058,23.185,11.754,8.276,-2.486,8.799,16.215,3.758,5.202,23.909,11.654,12.295,-3.746,21.568,18.231,7.682,2.312,5.113,19.695,7.622,24.68,14.441,3.366,27.176,14.493,-2.768,-0.945,23.731,-2.737,16.84,2.955,17.67,22.06,18.406,8.655,16.2,12.048,-3.84,16.425,12.295,23.387,7.086,9.99,18.428,8.825,26.38,10.434,10.562,8.052,1.621,14.87,13.984,16.185,13.085,9.443,7.748,11.122,20.188,8.429,18.707,-0.117,22.028,13.067,18.441,16.324,14.258,0.243,7.529,7.027,32.222,20.534,-0.082,20.659,12.263,3.336,11.756,20.94,19.502,5.035,11.815,15.774,15.074,14.413,14.726,0.503,0.111,14.716,5.983,34.115,12.351,12.175,5.779],[11.187,24.121,16.243,-0.068,13.184,7.674,-4.53,8.626,9.372,2.685,8.532,21.224,25.796,15.466,5.514,5.172,7.036,21.727,11.166,-4.179,5.847,7.603,3.013,25.229,14.244,4.468,25.658,17.84,14.698,13.268,3.802,22.779,-2.224,17.707,15.5,-2.499,10.604,8.193,17.638,13.358,0.684,24.812,13.685,9.829,6.391,9.204,21.984,17.244,10.449,17.42,14.936,-0.384,14.518,13.609,33.308,4.712,13.691,5.938,21.29,-0.759,6.44,20.495,13.007,11.207,23.943,1.079,7.632,0.811,9.359,15.619,24.7,8.851,11.356,0.054,-6.207,7.876,23.365,6.917,6.955,12.726,6.1,4.176,15.88,12.243,15.402,11.699,8.868,19.543,-3.768,2.953,27.262,21.551,16.516,4.715,12.139,27.059,6.714,7.133,2.882,14.718,6.018,23.503,11.501,8.212,-2.789,9.03,16.011,3.601,4.865,24.512,11.738,12.409,-3.394,21.753,17.858,7.264,2.018,4.571,19.502,7.739,24.521,14.049,2.981,27.255,14.737,-2.159,-1.092,23.654,-3.135,17.045,3.103,17.476,22.056,17.954,8.266,16.126,12.318,-3.439,16.225,12.438,23.649,6.914,9.97,18.538,8.785,26.566,11.039,10.606,8.09,1.901,14.916,13.849,16.334,13.061,9.684,7.85,11.168,20.434,8.353,18.937,-0.159,21.843,12.681,18.832,16.5,14.852,0.223,7.589,7.46,32.029,20.113,-0.026,20.676,11.815,3.314,11.738,20.838,19.699,4.733,12.271,15.762,14.874,14.358,14.848,0.693,-0.224,14.812,5.419,34.25,12.2,12.209,6.649],[11.373,23.999,16.234,-0.118,13.166,7.628,-4.588,8.791,9.516,2.638,8.402,21.288,25.675,15.255,5.399,5.359,6.883,21.986,11.082,-4.039,5.762,7.459,3.009,25.14,14.338,4.442,25.772,17.66,14.502,13.351,3.893,22.789,-2.214,17.765,15.419,-2.168,10.804,8.188,17.8,13.336,0.625,24.757,13.699,9.787,6.419,9.185,22.008,17.069,10.554,17.35,15.026,-0.427,14.406,13.702,33.313,4.686,13.629,6.173,21.43,-1.097,6.601,20.514,12.98,11.38,23.395,0.88,7.876,0.385,9.413,15.112,24.459,8.886,11.517,0.063,-6.398,7.672,23.632,7.046,6.924,12.933,5.883,3.7,15.823,12.579,15.536,11.843,8.729,19.878,-3.481,3.103,27.028,21.079,15.845,5.444,12.316,26.856,6.857,6.975,3.198,14.607,6.03,23.732,11.721,8.326,-2.928,8.947,15.895,3.921,4.999,24.442,11.851,12.531,-3.114,22.108,17.652,7.082,1.542,4.402,19.361,7.541,24.222,14.053,2.643,27.252,14.824,-2.15,-0.857,23.954,-3.153,16.727,3.017,17.632,21.851,17.277,8.142,16.283,12.378,-3.524,16.017,12.348,24.244,6.944,9.819,18.176,8.281,26.606,10.72,10.99,8.282,1.662,14.789,13.758,16.027,13.438,9.605,7.954,11.199,20.505,7.988,18.793,-0.598,21.788,13.126,19.077,16.662,14.152,-0.131,7.582,7.753,32.118,19.586,0.034,20.611,11.492,3.815,12.311,21.546,19.686,4.831,12.802,16.209,15.102,13.76,14.487,0.28,-0.386,15.013,5.584,34.651,11.715,12.398,6.399],[11.389,23.859,16.374,-0.273,13.113,7.252,-4.491,8.969,9.615,2.615,8.215,21.362,25.528,15.188,5.304,5.652,6.824,22.233,11.112,-3.897,5.728,7.183,2.993,24.976,14.284,4.402,25.904,17.482,14.289,13.38,3.962,22.808,-2.149,17.646,15.332,-1.898,10.891,8.223,18.145,13.485,0.514,24.722,13.569,9.597,6.379,9.321,21.936,16.879,10.468,17.337,15.058,-0.53,14.153,13.886,33.483,4.643,13.596,6.29,21.571,-1.348,6.743,20.521,13.007,11.512,23.524,0.816,7.921,0.048,9.232,14.665,24.12,8.968,12.091,0.583,-6.146,7.542,23.566,7.178,6.716,13.035,5.692,3.446,15.418,12.11,15.806,12.196,8.655,20.027,-3.475,3.178,26.782,20.603,15.655,5.817,12.387,26.745,7.252,7.087,2.778,14.681,5.83,23.821,11.962,8.093,-2.71,8.787,15.938,4.268,5.298,24.035,11.958,12.538,-3.068,22.376,17.74,7.136,2.449,5.198,19.187,7.407,24.311,13.916,2.565,26.855,14.94,-1.955,-0.712,24.252,-2.979,16.356,3.369,17.773,21.989,17.19,8.168,16.635,12.425,-3.529,16.11,12.645,24.136,7.273,9.606,18.18,8.108,26.39,10.597,11.567,8.544,1.394,14.985,13.648,15.788,13.121,9.989,7.661,11.283,20.488,8.002,18.554,-0.914,21.967,13.481,18.766,16.834,13.564,-0.02,7.801,7.6,32.397,19.482,-0.245,20.673,11.636,4.066,12.338,21.936,19.885,5.494,12.282,16.178,15.469,13.43,14.858,-0.035,-0.618,15.112,6.042,34.681,11.687,12.375,6.365],[11.204,23.762,16.544,-0.419,13.043,6.723,-4.411,9.102,9.51,2.68,7.969,21.431,25.41,15.356,5.232,6.056,6.933,22.338,11.108,-3.795,5.721,6.962,3.02,24.801,14.076,4.322,26.062,17.442,14.152,13.369,4.166,22.852,-2.046,17.456,15.319,-1.807,10.881,8.368,18.354,13.619,0.405,24.753,13.521,9.524,6.436,9.564,21.916,16.72,10.308,17.423,15.163,-0.736,14.089,14.209,33.724,4.798,13.586,6.26,21.736,-1.474,6.823,20.496,12.991,11.583,23.509,0.997,7.842,0.28,9.039,14.802,24.143,9.457,11.599,0.346,-6.14,7.519,23.617,7.367,6.294,12.646,5.745,3.434,15.755,11.571,15.843,12.265,8.375,20.412,-3.66,3.419,26.672,20.381,16.245,5.789,12.374,26.51,7.522,6.663,3.107,14.512,5.872,24.046,11.998,7.276,-2.756,8.509,15.794,4.454,5.221,23.897,11.83,12.54,-2.824,22.702,17.988,6.771,2.538,4.727,19.182,7.477,24.157,13.367,2.622,26.676,14.809,-1.84,-0.773,24.081,-2.895,16.369,3.626,17.985,21.976,17.853,7.951,16.623,12.257,-3.591,16.438,12.736,23.523,7.23,9.796,18.876,8.811,26.348,10.677,11.863,8.375,1.566,15.223,13.706,15.568,12.504,9.909,7.871,10.919,20.502,8.509,18.108,-0.812,21.834,13.533,18.377,16.708,13.257,-0.096,7.489,7.112,32.391,19.726,-0.771,20.947,12.016,3.687,11.981,21.602,19.979,5.153,12.082,15.561,15.371,12.732,15.404,0.433,-0.459,14.71,6.621,34.913,12.456,12.229,6.308],[10.931,23.794,16.691,-0.456,12.869,6.365,-4.445,9.19,9.3,2.941,7.826,21.491,25.305,15.609,5.151,6.371,6.876,22.397,11.109,-3.76,5.72,6.939,3.15,24.706,13.812,4.141,26.169,17.595,14.083,13.306,4.425,22.876,-1.958,17.464,15.562,-1.987,10.78,8.617,18.473,13.525,0.378,24.721,13.546,9.516,6.608,9.677,21.96,16.604,10.214,17.388,15.293,-0.817,14.159,14.442,33.86,4.921,13.555,6.141,21.761,-1.516,6.764,20.458,13.024,11.636,22.948,1.032,7.63,-0.466,8.714,15.021,24.444,8.868,11.002,0.195,-6.215,7.133,23.758,7.675,6.309,12.628,5.133,3.356,16.433,11.303,15.726,12.293,7.987,20.6,-4.13,3.824,26.679,20.367,16.292,5.87,12.664,26.48,7.7,6.551,3.081,14.482,5.84,24.047,11.753,7.369,-3.04,8.323,15.847,4.829,4.683,24.084,11.826,12.314,-2.746,22.644,17.821,6.572,1.699,4.94,19.093,7.439,24.402,12.884,2.307,26.848,14.536,-1.466,-0.713,23.427,-3.053,16.236,3.146,17.83,21.898,18.798,7.855,16.664,12.281,-3.617,16.205,12.282,23.497,7.037,9.953,19.338,8.361,26.306,10.415,11.497,8.158,1.315,14.671,14.132,16.064,12.661,9.593,8.189,10.821,20.534,9.065,18.301,-0.358,21.563,13.695,18.416,16.997,13.675,-0.552,7.447,7.232,32.709,19.917,-0.875,21.503,11.927,3.431,11.878,21.59,20.072,4.768,12.076,15.726,15.548,12.68,15.473,0.3,-0.496,14.69,6.871,35.345,13.114,12.009,6.078],[10.692,23.827,16.816,-0.511,12.659,6.214,-4.52,9.184,9.142,3.193,7.646,21.507,25.173,15.861,5.075,6.563,6.663,22.444,11.195,-3.852,5.643,7.047,3.028,24.684,13.668,3.782,26.343,17.688,14.108,13.263,4.567,22.643,-1.849,17.599,15.855,-2.161,10.628,8.79,18.567,13.265,0.348,24.611,13.58,9.485,6.803,9.631,22.022,16.738,10.164,17.278,15.534,-0.868,14.272,14.581,33.872,4.821,13.483,5.88,21.765,-1.496,6.737,20.557,13.113,11.67,23.862,1.469,7.4,-0.442,8.906,15.123,24.408,8.515,10.918,0.025,-6.368,7.145,23.987,7.805,6.123,12.444,4.649,3.241,16.742,11.51,15.798,11.849,7.67,20.516,-4.522,4.08,26.97,20.515,15.914,5.775,12.538,26.492,7.895,6.454,3.502,14.061,5.502,24.175,11.635,7.898,-3.102,8.561,15.717,4.904,4.408,24.018,11.593,11.778,-2.744,22.155,18.536,6.611,2.018,5.198,19.045,7.466,24.612,12.98,2.026,26.989,14.593,-2.096,-0.73,23.828,-2.803,16.323,3.805,17.29,22.057,19.336,8.28,16.927,12.379,-3.764,16.455,12.09,23.84,7.681,10.014,19.634,7.905,26.558,10.583,10.923,8.139,1.445,14.561,14.139,15.739,13.361,9.904,8.205,11.093,20.476,8.772,18.393,-0.349,21.83,13.66,18.835,17.271,14.228,-0.471,7.379,7.649,32.876,19.703,-0.994,21.392,11.841,3.339,11.997,21.941,19.95,4.977,12.458,15.899,15.71,12.722,15.405,-0.131,-0.932,14.728,6.389,35.339,12.919,12.315,5.906],[10.707,23.923,16.877,-0.566,12.516,6.192,-4.549,9.141,9.187,3.403,7.405,21.425,25.211,15.997,5.007,6.525,6.427,22.289,11.268,-3.912,5.593,7.123,2.805,24.647,13.694,3.534,26.433,17.822,14.197,13.268,4.703,22.44,-1.723,17.699,16.074,-2.284,10.526,8.753,18.686,13.08,0.339,24.49,13.726,9.585,7.132,9.439,22.143,16.867,10.251,17.189,15.749,-0.752,14.271,14.549,33.794,4.487,13.337,5.506,21.855,-1.483,6.751,20.767,13.144,11.652,23.525,1.63,7.325,0.541,9.357,15.321,24.033,9.012,10.526,-0.29,-6.104,7.194,24.165,7.351,5.73,12.242,5.182,3.259,16.663,11.343,15.648,11.31,7.84,20.36,-4.464,4.206,26.963,20.719,16.064,5.427,11.936,26.451,8.107,6.027,3.096,14.331,5.2,24.055,12.079,8.201,-3.294,8.241,15.74,5.092,3.935,23.821,11.673,11.827,-2.878,22.515,18.729,7.0,2.044,5.406,19.251,7.385,24.93,13.214,1.654,27.339,14.636,-2.198,-0.529,23.663,-2.683,16.976,4.547,17.331,21.465,19.495,8.964,17.011,12.309,-4.085,16.554,12.502,24.089,8.224,9.856,19.777,8.351,26.153,10.405,10.501,8.528,1.961,14.784,13.456,15.752,13.338,9.973,8.363,10.967,20.575,8.126,18.685,-0.745,21.891,13.844,18.716,17.619,13.87,-0.048,7.247,7.759,32.717,19.309,-0.766,21.007,11.631,3.34,12.172,22.04,20.029,4.896,13.106,15.916,15.388,12.83,15.668,-0.178,-0.988,14.773,6.323,35.364,12.515,13.047,5.779],[10.771,23.993,16.842,-0.481,12.362,6.297,-4.361,9.099,9.226,3.451,7.182,21.397,25.362,16.005,4.911,6.387,6.225,22.028,11.182,-3.898,5.56,6.986,2.61,24.517,13.956,3.397,26.495,17.881,14.314,13.187,4.841,22.245,-1.728,17.795,16.249,-2.395,10.494,8.644,18.812,13.074,0.467,24.329,13.882,9.709,7.603,9.423,22.332,17.053,10.396,17.166,15.907,-0.464,14.067,14.305,33.834,4.195,13.262,5.269,22.032,-1.492,6.833,20.876,13.098,11.647,23.367,1.748,7.497,0.204,9.396,15.247,24.024,9.3,10.146,-0.353,-6.1,6.501,24.0,7.384,5.69,12.497,5.331,3.205,16.268,11.438,15.775,10.948,7.945,20.29,-4.401,4.349,26.454,20.35,16.573,5.475,11.982,26.342,7.962,6.314,2.781,14.519,5.247,23.343,12.637,7.496,-3.121,8.298,15.635,5.085,3.842,23.51,12.097,12.206,-3.35,22.784,19.131,7.059,1.569,6.01,18.947,7.476,24.852,14.122,1.647,27.736,14.988,-2.439,-0.591,23.343,-2.37,17.204,4.29,17.538,21.646,19.644,9.274,16.991,12.254,-4.177,16.49,13.291,23.813,7.889,9.532,19.695,8.725,26.141,9.887,10.088,8.34,1.881,14.847,12.712,15.751,13.389,10.047,9.077,11.205,20.94,8.261,18.585,-0.983,21.725,14.361,18.491,17.574,13.381,-0.11,6.705,7.176,32.519,19.612,-0.303,20.842,11.666,3.234,12.014,22.112,20.17,4.401,12.976,15.573,15.724,13.369,15.901,0.315,-1.088,14.57,6.562,34.854,11.836,13.357,5.151],[10.748,23.926,16.843,-0.398,12.173,6.532,-4.141,9.12,9.165,3.403,6.934,21.317,25.276,15.981,4.805,6.243,6.094,21.675,11.07,-3.84,5.575,6.862,2.332,24.32,14.233,3.475,26.514,18.0,14.507,13.307,4.889,22.066,-1.905,17.916,16.366,-2.555,10.461,8.659,18.904,13.089,0.472,24.169,14.043,9.732,7.979,9.416,22.609,17.25,10.436,17.091,15.967,-0.24,13.926,14.279,33.931,4.034,13.227,5.076,22.183,-1.505,6.837,20.816,13.095,11.555,24.185,1.684,7.367,-0.074,9.303,15.165,24.223,8.936,10.272,0.073,-5.999,6.046,23.623,7.412,5.635,12.57,4.992,3.002,16.05,11.434,16.117,11.151,8.16,20.478,-3.828,4.637,26.821,20.093,16.503,5.304,12.252,25.949,7.783,6.565,2.958,14.54,5.27,23.196,12.008,6.73,-2.629,8.511,15.927,5.008,4.037,23.353,11.856,12.444,-3.414,21.955,19.504,6.857,1.37,6.009,18.499,7.245,25.097,14.693,1.605,27.977,14.72,-2.627,-0.689,23.431,-2.317,16.976,4.167,17.664,21.822,19.509,8.859,17.44,12.193,-4.292,17.066,13.49,23.252,8.54,10.203,19.293,8.17,26.099,10.235,10.115,8.072,1.956,14.755,12.914,15.922,13.23,10.22,9.358,10.927,21.154,8.611,18.751,-0.143,22.264,13.685,18.406,17.825,13.123,0.144,6.686,7.157,32.405,20.708,-0.232,20.999,11.593,3.221,11.827,22.2,20.471,4.237,12.507,15.387,15.238,13.853,15.589,0.734,-0.719,14.539,6.769,35.207,11.758,13.163,4.901],[10.731,23.93,16.937,-0.353,12.086,6.659,-4.065,9.149,8.947,3.336,6.73,21.205,25.114,16.005,4.6,6.257,6.053,21.249,10.981,-3.717,5.516,6.99,2.097,24.11,14.303,3.601,26.575,18.13,14.786,13.466,4.893,22.032,-2.11,17.998,16.394,-2.646,10.425,8.7,19.015,13.068,0.414,24.071,14.103,9.753,8.252,9.191,22.887,17.384,10.428,16.941,15.901,0.04,13.98,14.221,34.12,4.023,13.191,5.006,22.301,-1.425,6.707,20.789,13.038,11.457,23.187,1.861,7.13,-0.302,9.231,15.485,24.199,9.036,10.392,0.178,-5.623,6.269,23.541,7.324,5.303,12.482,5.277,2.837,16.244,10.834,16.126,11.126,8.077,20.693,-2.88,4.687,26.824,19.722,15.888,5.36,12.408,25.861,7.601,5.952,2.79,14.955,5.53,22.924,11.56,6.444,-2.658,8.057,16.416,4.463,4.55,22.983,11.685,12.518,-2.925,21.784,19.888,6.514,1.394,6.099,18.388,7.224,25.321,14.634,1.865,28.132,14.522,-3.033,-0.854,23.015,-2.907,17.382,4.348,17.821,21.618,19.088,8.875,17.273,12.217,-4.082,16.756,13.387,23.252,9.227,10.68,19.471,7.898,25.757,10.918,10.304,7.873,2.294,14.691,13.697,16.567,13.654,10.249,9.191,11.009,21.566,8.421,18.89,0.084,22.603,13.017,18.548,17.718,13.225,0.5,6.654,7.61,33.063,20.924,-0.462,21.405,11.6,3.149,11.619,21.806,20.673,4.46,12.698,15.67,15.107,14.17,15.764,0.461,-0.501,14.698,6.51,35.53,12.216,12.45,5.252],[10.774,23.943,17.099,-0.387,11.952,6.61,-3.982,9.238,8.694,3.287,6.629,21.056,24.889,16.052,4.519,6.163,5.947,21.131,10.92,-3.527,5.513,7.147,1.985,23.818,14.273,3.632,26.62,18.317,15.162,13.54,4.957,21.981,-2.39,18.095,16.33,-2.748,10.403,8.758,19.174,13.128,0.463,24.074,14.218,9.844,8.402,8.907,23.097,17.315,10.46,16.781,15.886,0.227,14.132,14.078,34.507,4.175,13.103,5.093,22.299,-1.324,6.579,20.84,12.96,11.317,23.48,1.682,6.846,-0.461,8.907,15.233,24.055,9.134,11.005,-0.211,-5.74,6.463,23.494,7.623,5.134,12.231,5.221,2.662,16.22,10.963,16.222,10.668,8.001,20.616,-2.978,4.622,26.357,19.361,15.603,5.399,12.182,25.616,7.386,5.969,2.419,14.898,5.429,22.431,11.994,6.769,-2.992,8.72,16.665,4.633,5.065,23.094,11.911,12.504,-2.96,22.193,20.023,6.593,1.294,6.207,18.764,7.179,25.625,14.442,2.161,28.141,14.898,-2.94,-1.033,22.945,-2.881,17.515,4.281,17.438,21.953,18.459,8.933,17.237,12.164,-3.412,16.195,12.953,23.224,9.301,10.35,19.547,8.309,25.894,10.647,10.302,7.996,2.047,14.33,13.882,16.718,13.764,10.736,9.499,11.258,21.523,7.768,18.936,-0.656,22.574,13.065,18.429,17.466,13.693,0.349,6.48,7.502,33.178,20.09,0.02,21.817,11.78,2.873,11.798,22.018,20.473,4.08,12.856,15.721,15.154,14.539,16.045,0.047,-0.423,14.771,6.192,35.753,12.642,12.121,5.278],[10.977,24.005,17.272,-0.613,11.775,6.546,-3.949,9.388,8.494,3.228,6.653,20.905,24.705,15.94,4.66,5.945,5.809,21.435,10.875,-3.423,5.612,7.323,1.917,23.56,14.163,3.588,26.652,18.593,15.438,13.589,4.972,21.974,-2.616,18.052,16.134,-2.767,10.415,8.911,19.322,13.18,0.496,24.151,14.27,9.857,8.465,8.773,23.055,17.138,10.557,16.605,15.962,0.178,14.367,14.0,34.892,4.115,13.006,5.157,22.167,-1.165,6.52,20.865,12.941,11.286,24.47,1.723,6.567,-0.087,8.849,15.316,23.494,8.838,11.54,-0.014,-5.739,5.941,23.484,7.844,5.201,12.654,5.066,2.85,16.613,11.603,16.289,10.292,8.132,20.793,-3.053,4.152,26.173,19.04,15.863,5.243,12.113,25.425,7.487,6.06,2.503,14.396,4.955,22.738,11.936,6.704,-2.587,8.884,16.847,4.618,5.065,22.742,12.017,12.377,-3.152,22.081,19.766,7.461,0.97,5.67,19.477,7.358,25.691,14.429,2.302,28.245,14.963,-3.062,-1.437,23.084,-2.688,16.96,4.723,17.385,21.268,18.424,9.033,17.477,12.18,-2.763,16.349,12.992,23.401,9.363,10.093,19.663,8.11,26.092,10.172,10.148,7.844,1.937,14.64,13.547,16.15,13.612,11.24,9.881,11.241,21.563,7.348,18.658,-1.195,22.799,12.691,18.2,17.722,14.021,0.627,6.494,7.115,33.25,19.561,0.465,22.036,11.546,3.073,11.389,22.404,20.422,4.257,12.32,15.225,15.343,14.658,15.718,-0.067,-0.545,14.522,6.07,35.852,12.291,12.632,5.138],[11.373,24.166,17.335,-0.717,11.76,6.573,-3.84,9.448,8.379,3.173,6.628,20.802,24.654,15.669,4.871,5.747,5.61,21.653,10.849,-3.439,5.771,7.56,1.954,23.432,14.037,3.54,26.746,18.742,15.636,13.582,4.886,21.921,-2.806,17.971,15.786,-2.694,10.502,9.041,19.455,13.282,0.504,24.201,14.212,9.729,8.59,8.699,22.972,16.937,10.642,16.392,15.957,0.033,14.665,13.944,35.076,3.807,13.028,5.12,22.059,-0.93,6.447,20.947,12.846,11.22,23.785,1.837,6.558,-1.189,9.087,15.267,23.663,8.848,11.405,-0.051,-5.698,6.044,24.09,7.873,5.305,13.125,5.024,3.038,16.833,10.98,16.618,10.39,7.512,21.029,-3.136,3.612,26.114,19.211,16.382,5.457,12.006,25.165,7.592,6.011,2.294,14.602,4.999,23.41,11.855,6.324,-2.45,8.675,16.597,4.834,4.71,22.485,11.888,12.176,-2.575,21.984,20.028,7.981,1.076,5.834,19.719,7.556,25.251,15.045,1.772,28.252,14.79,-3.489,-1.608,22.929,-3.282,17.173,5.221,17.473,20.785,18.469,9.619,17.614,12.32,-2.418,16.265,13.387,23.562,9.336,10.099,19.928,8.346,25.961,10.634,10.239,7.512,1.868,15.059,13.428,15.754,13.638,11.523,9.772,11.219,21.709,7.962,18.527,-0.78,22.329,12.629,17.888,17.786,14.064,0.522,6.779,7.305,33.638,19.322,0.693,21.943,11.368,3.083,11.364,22.234,20.223,4.441,12.48,14.848,15.484,14.179,15.405,0.408,-0.81,14.525,6.062,36.035,12.083,12.444,5.232],[11.687,24.24,17.202,-0.803,11.729,6.451,-3.759,9.49,8.343,3.09,6.68,20.912,24.724,15.53,5.048,5.727,5.384,21.693,10.802,-3.534,5.915,7.809,2.157,23.403,14.012,3.452,26.865,18.783,15.803,13.505,4.921,21.746,-3.065,17.932,15.511,-2.615,10.654,9.242,19.555,13.405,0.532,24.145,14.163,9.61,8.655,8.844,22.928,16.767,10.774,16.16,15.93,-0.166,14.862,13.959,35.105,3.653,13.076,5.091,22.075,-0.734,6.424,21.037,12.777,11.103,23.735,1.519,6.516,-1.742,8.559,14.865,23.912,9.166,11.59,-0.089,-5.61,6.045,24.865,7.781,5.194,13.387,4.66,3.159,17.059,10.475,15.987,10.641,7.245,20.758,-2.787,3.466,25.847,19.236,15.793,5.347,12.33,24.93,7.326,6.282,2.289,14.63,5.539,23.225,11.675,6.417,-2.741,8.824,16.913,4.574,4.124,22.6,11.71,12.283,-2.753,22.023,20.348,7.837,1.432,6.094,19.046,7.651,25.128,15.522,1.719,27.877,14.384,-3.871,-1.49,22.579,-3.103,17.164,5.154,17.554,20.775,17.849,9.809,17.685,12.456,-2.295,15.753,13.442,23.596,9.301,9.934,19.849,8.586,26.03,11.258,10.294,7.815,2.138,14.904,13.606,15.705,13.947,11.452,10.024,11.056,21.719,8.233,18.458,-0.412,21.969,12.864,17.672,17.638,14.193,0.701,6.714,7.281,34.017,19.86,0.534,21.292,11.359,2.581,11.855,22.166,20.19,3.744,12.912,14.835,15.496,13.727,14.973,0.52,0.065,14.675,6.084,36.342,11.949,12.296,5.277],[11.779,24.379,16.881,-0.942,11.62,6.422,-3.723,9.606,8.222,2.881,6.756,21.047,24.629,15.504,5.126,5.843,5.409,21.515,10.819,-3.688,6.018,7.977,2.273,23.429,14.13,3.305,27.04,18.687,16.085,13.377,5.057,21.377,-3.256,17.919,15.232,-2.534,10.782,9.572,19.572,13.37,0.559,24.204,14.229,9.454,8.689,9.06,22.838,16.623,10.945,15.99,15.878,-0.251,14.975,14.09,35.173,3.558,13.131,5.005,22.099,-0.449,6.461,21.103,12.804,11.067,24.044,1.246,6.618,-0.959,7.828,15.252,23.645,9.174,12.466,-0.193,-5.483,5.805,25.194,8.166,5.535,13.301,4.677,3.486,16.626,10.785,15.905,10.528,7.365,20.897,-2.627,3.751,26.024,19.103,15.271,5.195,12.589,25.2,7.144,5.871,2.991,14.36,5.712,22.983,11.026,6.606,-2.823,9.065,17.078,4.261,4.198,22.684,11.582,12.305,-3.499,22.05,20.169,8.193,1.21,6.221,18.962,7.846,25.128,15.184,1.582,27.354,14.624,-3.893,-1.671,22.501,-3.105,16.555,4.604,17.519,21.234,16.987,9.418,17.754,12.596,-2.536,15.515,12.893,23.459,9.599,9.919,19.573,8.33,26.051,11.301,10.571,8.032,2.152,15.062,13.601,15.776,13.613,10.809,10.05,10.734,21.674,8.583,18.253,0.185,22.474,12.561,17.588,17.454,14.069,0.938,6.281,6.849,33.751,20.685,0.842,20.806,11.798,2.589,11.565,22.079,20.54,3.939,12.294,14.63,15.625,14.089,15.052,-0.216,0.536,14.803,6.29,36.324,11.916,12.275,5.312],[11.764,24.707,16.672,-0.927,11.538,6.563,-3.666,9.836,7.932,2.721,6.833,21.108,24.445,15.61,5.154,5.987,5.519,21.175,10.708,-3.882,6.082,8.142,2.258,23.546,14.373,3.172,27.106,18.517,16.256,13.29,5.236,21.105,-3.251,17.825,14.989,-2.398,10.862,9.771,19.497,13.187,0.607,24.355,14.219,9.308,8.829,9.296,22.808,16.632,10.943,15.913,15.77,-0.274,15.103,14.166,35.092,3.575,13.119,4.871,21.957,-0.158,6.51,21.157,12.801,10.992,23.587,1.0,6.303,-0.537,7.941,15.222,24.086,8.788,12.142,-0.507,-5.529,6.186,24.887,8.36,5.505,13.289,4.952,3.302,16.382,10.471,16.368,10.383,7.524,21.598,-2.691,3.997,25.971,19.328,15.616,5.487,12.375,25.349,7.222,5.449,2.664,14.758,5.732,22.773,10.945,6.623,-3.188,9.36,16.821,4.11,4.494,22.622,11.715,12.731,-2.743,21.762,19.885,8.425,1.055,5.974,19.449,7.717,25.436,14.784,1.557,27.083,14.692,-3.606,-2.029,22.219,-3.412,15.914,4.346,17.108,21.097,17.443,9.146,17.653,12.681,-3.306,15.533,12.944,23.792,9.591,9.765,19.582,8.741,26.205,11.29,10.778,7.995,2.132,15.051,13.172,15.364,13.375,10.486,9.959,10.828,21.655,8.653,18.09,0.809,22.162,12.901,17.468,17.542,13.936,0.559,6.427,6.55,33.473,20.53,1.006,21.422,11.748,3.04,11.266,22.093,20.281,4.342,12.258,14.36,15.667,14.407,15.764,-0.495,0.575,14.681,6.611,36.255,12.035,12.055,5.16],[11.62,25.039,16.835,-0.848,11.467,6.625,-3.604,9.954,7.649,2.598,6.957,21.235,24.477,15.829,5.096,6.126,5.487,20.846,10.41,-4.002,6.089,8.24,2.14,23.651,14.725,3.181,27.088,18.549,16.303,13.225,5.293,20.965,-3.214,17.639,14.749,-2.302,10.876,9.916,19.399,12.944,0.695,24.491,14.206,9.234,9.0,9.487,22.728,16.792,10.816,15.828,15.778,-0.464,15.092,14.255,34.804,3.691,12.898,4.816,21.696,-0.033,6.575,21.236,12.695,10.836,23.787,0.99,5.949,-0.752,8.22,15.476,23.623,9.063,11.674,-0.124,-5.256,6.668,24.446,8.769,5.222,13.409,5.131,3.401,17.045,10.192,15.763,10.543,7.907,21.536,-2.366,3.721,25.597,19.334,16.213,5.719,11.714,25.39,7.529,6.167,2.413,15.303,5.486,22.426,11.518,6.836,-3.397,9.33,16.909,4.63,4.446,22.616,11.936,12.955,-2.656,21.179,19.99,8.579,1.497,6.305,19.179,7.699,25.472,14.612,1.692,27.044,14.688,-3.343,-1.674,21.769,-3.502,16.259,5.198,16.947,20.725,18.2,9.04,17.625,12.466,-3.265,15.532,13.062,24.263,9.722,9.402,19.213,8.913,26.316,11.095,11.02,8.258,2.334,14.627,12.683,15.255,13.328,10.892,10.134,10.605,21.629,8.812,18.191,1.057,21.927,13.167,17.347,17.366,14.643,0.208,6.389,6.859,33.598,20.288,1.108,21.558,11.17,2.932,11.142,21.835,20.01,4.015,12.384,14.378,15.87,14.273,15.799,-0.17,0.917,14.23,6.507,36.118,12.024,12.252,5.174],[11.459,25.252,17.132,-0.789,11.405,6.747,-3.455,10.082,7.637,2.54,7.089,21.29,24.466,16.206,5.073,6.336,5.537,20.647,10.168,-4.115,6.064,8.257,2.096,23.73,14.982,3.224,27.088,18.735,16.362,13.179,5.358,20.905,-3.154,17.451,14.574,-2.407,10.789,10.03,19.283,12.567,0.85,24.606,14.137,9.049,9.143,9.628,22.557,17.023,10.736,15.762,15.838,-0.704,15.021,14.397,34.605,3.616,12.761,4.806,21.395,0.051,6.685,21.308,12.428,10.659,24.795,0.834,6.29,-0.472,7.978,15.88,23.397,9.296,11.475,-0.097,-5.105,6.841,23.912,8.79,5.4,13.165,5.136,3.143,16.511,10.56,16.371,10.421,7.962,21.011,-2.201,3.383,25.569,19.325,16.234,5.605,11.275,25.377,8.0,6.342,2.256,15.582,5.461,21.847,11.47,6.619,-3.085,9.23,17.251,5.116,4.746,22.548,12.032,13.118,-2.853,21.065,20.151,8.504,1.397,6.781,19.106,7.756,25.3,15.013,1.791,27.089,14.973,-2.762,-1.601,21.558,-2.948,16.1,5.907,16.998,20.343,18.729,9.218,17.676,12.391,-1.951,15.005,13.151,24.187,10.029,9.359,18.788,8.849,26.469,10.898,11.251,7.997,2.351,14.16,13.039,15.507,13.154,11.147,10.074,10.366,21.501,9.319,18.363,0.988,22.358,13.259,17.401,17.345,14.267,0.183,6.234,7.176,33.381,20.562,1.183,21.081,11.143,2.393,10.539,21.577,19.696,4.008,12.446,14.44,16.018,14.269,15.373,-0.306,1.198,14.301,6.113,35.831,11.542,12.087,4.929],[11.345,25.311,17.191,-0.716,11.294,6.855,-3.326,10.21,7.806,2.527,7.196,21.231,24.31,16.558,4.975,6.522,5.629,20.667,10.105,-4.133,6.049,8.258,2.07,23.741,15.178,3.349,27.065,18.824,16.486,13.183,5.477,20.847,-3.076,17.271,14.307,-2.42,10.696,10.096,19.178,12.362,1.026,24.64,14.018,8.801,9.213,9.71,22.481,17.022,10.846,15.788,15.912,-0.74,14.913,14.472,34.541,3.527,12.74,4.737,21.286,0.205,6.765,21.361,12.216,10.326,25.346,0.656,6.243,-0.502,7.315,15.874,23.519,9.242,11.304,-0.111,-5.159,6.658,24.002,8.684,5.833,13.051,5.112,3.313,16.97,10.288,16.313,10.291,7.934,20.692,-2.105,3.271,25.96,19.71,16.408,5.38,11.239,25.545,8.307,6.153,2.328,15.554,5.613,21.887,10.618,6.435,-2.974,9.274,17.261,5.41,4.757,22.826,12.033,13.638,-2.962,21.593,20.269,8.437,1.102,6.334,19.5,7.696,25.273,14.769,1.86,27.376,14.923,-2.974,-1.29,22.074,-3.021,15.962,5.884,16.908,20.692,18.897,9.299,17.298,12.375,-1.212,14.596,13.196,23.755,10.305,9.223,19.233,9.105,26.431,10.75,10.823,8.048,2.365,13.228,13.345,15.862,13.193,10.864,10.219,10.201,21.117,9.434,18.399,0.899,21.956,13.405,17.366,17.472,13.559,0.355,6.163,7.387,32.849,20.609,0.94,21.242,11.217,2.042,10.412,21.21,19.817,3.988,12.171,14.677,16.181,14.689,15.359,-0.604,1.0,14.274,6.241,35.861,11.292,12.008,5.132],[11.339,25.351,16.987,-0.636,11.122,6.836,-3.4,10.219,7.811,2.483,7.298,21.319,24.175,16.675,4.802,6.665,5.644,20.881,9.995,-4.077,6.008,8.209,1.929,23.724,15.23,3.473,27.108,18.863,16.599,13.131,5.577,20.907,-3.029,17.076,14.009,-2.354,10.582,10.12,19.019,12.163,1.159,24.53,14.055,8.663,9.335,9.76,22.402,16.949,10.973,15.86,16.049,-0.575,14.752,14.575,34.519,3.546,12.719,4.548,21.465,0.395,6.8,21.438,12.144,9.938,24.955,0.864,6.156,-0.824,7.796,16.205,23.824,9.449,11.556,0.308,-4.922,6.545,24.441,8.817,5.906,12.731,5.049,3.08,17.168,10.006,16.724,10.219,7.898,20.677,-2.074,3.76,25.818,19.785,16.35,5.518,11.478,25.496,8.42,6.079,2.661,15.717,5.567,22.384,10.761,6.838,-3.214,9.217,16.896,5.746,4.832,23.067,11.809,13.534,-2.988,21.735,20.101,9.0,1.271,6.102,19.779,7.794,25.335,14.838,2.13,27.127,14.746,-3.722,-1.364,21.987,-3.463,15.362,5.446,16.83,21.266,18.813,9.753,17.221,12.224,-1.27,14.615,12.697,23.83,9.877,9.137,19.737,9.55,26.442,11.133,10.474,8.719,2.76,13.149,13.072,15.989,13.69,10.913,10.324,10.127,21.039,8.691,18.313,0.879,21.498,13.474,17.611,17.901,14.341,0.091,6.101,7.392,32.906,20.376,0.718,21.438,11.475,2.091,10.961,21.319,19.767,3.724,11.455,14.659,16.139,15.127,15.383,-0.35,0.647,14.216,6.666,35.731,11.201,11.732,4.967],[11.498,25.303,16.775,-0.582,10.996,6.671,-3.509,10.191,7.7,2.594,7.41,21.478,24.149,16.659,4.562,6.87,5.62,21.158,9.947,-4.064,5.937,8.107,1.812,23.66,15.226,3.583,27.102,18.824,16.683,12.989,5.64,21.016,-3.087,16.864,13.707,-2.371,10.448,10.231,18.887,11.991,1.381,24.531,14.205,8.645,9.443,9.694,22.295,16.953,11.087,15.942,16.344,-0.451,14.722,14.608,34.464,3.697,12.7,4.277,21.71,0.666,6.876,21.603,12.196,9.758,24.271,0.994,6.277,-0.386,8.164,16.353,23.63,9.338,11.812,-0.061,-5.204,6.754,25.21,9.019,6.178,13.015,5.111,2.839,17.487,9.782,15.953,10.24,7.9,20.864,-1.929,4.072,25.595,19.586,16.424,5.253,11.363,25.288,8.365,6.034,2.422,15.568,5.427,22.659,11.021,7.044,-3.098,8.785,16.965,5.364,5.154,22.79,11.775,13.324,-3.304,21.476,20.268,8.676,0.927,6.38,19.242,7.701,25.566,14.916,2.169,27.031,14.514,-4.175,-1.619,21.773,-3.114,15.183,5.22,16.211,21.267,18.737,10.418,17.257,12.202,-1.312,14.637,12.964,24.156,9.713,8.845,19.442,9.344,26.31,11.521,10.626,8.409,2.827,13.314,12.674,15.696,13.939,11.324,10.091,10.151,20.891,8.887,18.329,1.259,21.846,13.35,17.642,18.103,14.766,0.177,5.815,6.844,33.15,20.422,0.213,21.417,11.714,2.053,10.235,21.928,20.12,3.74,12.016,14.638,16.357,15.102,15.768,0.236,0.548,14.044,6.955,36.001,10.936,11.384,4.259],[11.796,25.211,16.575,-0.664,10.886,6.487,-3.576,10.138,7.643,2.782,7.454,21.522,24.103,16.691,4.244,6.854,5.691,21.282,10.026,-4.076,5.886,7.993,1.717,23.618,15.133,3.555,27.038,18.69,16.706,12.822,5.757,21.197,-3.083,16.526,13.564,-2.451,10.434,10.421,18.772,11.892,1.768,24.558,14.406,8.53,9.474,9.605,22.315,16.932,11.336,15.943,16.741,-0.403,14.873,14.581,34.512,3.929,12.669,3.972,21.88,0.7,6.896,21.774,12.502,9.652,24.138,1.215,6.208,-0.334,7.68,16.218,23.489,9.251,11.914,0.495,-5.286,6.746,25.648,8.638,6.008,13.107,4.779,2.448,17.329,9.889,16.404,10.073,7.752,21.634,-2.294,4.003,25.672,19.947,16.571,4.941,10.99,25.132,8.258,5.842,1.928,15.254,5.416,22.975,11.01,6.734,-3.198,9.32,17.529,5.173,5.242,22.253,11.738,13.313,-3.73,21.474,20.196,8.333,0.853,6.608,19.128,7.586,25.292,14.975,2.332,26.816,13.984,-3.973,-1.849,21.726,-3.213,14.791,5.763,16.624,20.673,18.254,10.811,17.169,12.065,-1.321,14.393,13.842,23.817,9.802,8.78,18.67,9.198,26.458,11.352,10.663,7.869,3.316,13.651,12.593,15.408,13.843,11.595,10.224,9.738,20.913,9.226,18.39,0.959,21.86,13.267,17.383,18.535,13.826,0.528,5.534,6.876,33.121,21.301,1.068,21.761,11.158,2.54,9.597,22.219,20.115,3.939,11.764,14.512,15.993,14.872,16.024,0.136,1.315,14.113,7.224,35.994,10.713,11.637,4.356],[12.031,25.284,16.604,-0.664,10.773,6.271,-3.732,9.994,7.676,2.837,7.349,21.705,24.119,16.717,3.892,6.66,5.687,21.281,10.001,-4.148,5.861,8.123,1.621,23.505,15.128,3.374,26.923,18.585,16.613,12.54,6.173,21.313,-3.153,16.156,13.482,-2.464,10.507,10.536,18.674,11.922,1.989,24.565,14.651,8.326,9.412,9.495,22.371,16.971,11.578,15.829,17.057,-0.415,14.97,14.428,34.528,4.181,12.654,3.772,21.963,0.739,6.91,21.948,12.631,9.512,24.244,1.368,6.242,-0.627,7.672,16.304,23.444,9.381,11.972,0.38,-5.248,6.582,25.399,8.548,6.072,13.826,4.57,2.035,16.79,10.136,16.419,9.892,7.213,21.517,-2.304,4.32,25.693,19.903,16.746,4.99,11.347,24.93,8.256,5.896,2.183,15.658,5.547,22.767,10.995,6.731,-2.867,9.36,18.153,5.335,4.953,22.151,11.474,13.417,-3.844,22.007,20.122,8.837,1.07,6.69,19.26,7.846,25.181,15.687,1.924,26.979,13.911,-4.119,-1.758,22.336,-3.196,15.047,6.403,17.15,20.746,17.5,10.461,17.278,11.973,-1.241,14.374,13.508,23.447,10.019,8.829,18.578,9.469,26.464,11.799,10.728,8.165,3.521,13.493,12.443,15.359,13.708,11.536,10.526,9.739,21.268,8.805,18.109,0.641,21.601,13.487,17.486,18.876,13.505,0.713,5.217,6.992,32.981,20.891,1.557,21.879,11.35,2.623,10.365,22.11,20.141,3.775,12.315,14.648,16.023,14.45,16.539,0.234,1.751,14.327,6.757,35.725,10.361,11.601,4.32],[12.368,25.472,16.827,-0.547,10.784,6.02,-3.829,9.898,7.924,2.781,7.261,21.781,24.242,16.756,3.66,6.519,5.587,21.23,9.959,-4.262,5.898,8.353,1.67,23.319,15.346,3.156,26.963,18.663,16.522,12.207,6.752,21.413,-3.242,15.965,13.49,-2.528,10.646,10.547,18.752,11.865,1.96,24.425,14.692,8.258,9.303,9.433,22.383,17.138,11.762,15.785,17.315,-0.366,14.967,14.452,34.426,4.24,12.595,3.657,21.989,0.764,6.784,21.897,12.616,9.484,24.71,2.25,6.55,-0.446,8.078,16.162,23.368,8.989,12.249,-0.113,-5.488,6.412,24.772,8.735,5.822,13.906,4.409,1.892,16.859,9.514,15.906,9.774,7.033,21.222,-2.204,4.306,25.78,20.014,17.064,4.559,11.56,24.829,8.284,5.653,2.079,16.023,5.4,22.506,10.794,7.027,-3.02,9.475,18.031,5.253,4.494,22.132,11.381,13.514,-3.814,21.977,20.21,8.919,1.078,7.291,18.991,7.925,25.233,17.144,1.677,26.863,13.455,-3.873,-1.443,22.685,-3.657,14.86,6.322,17.181,21.119,16.516,9.834,17.178,12.18,-1.007,14.468,13.807,24.051,10.123,8.437,18.756,9.36,26.245,12.137,11.11,8.059,3.405,13.217,12.625,15.357,13.841,11.184,10.283,9.622,20.944,8.627,17.791,0.534,21.771,13.283,17.545,19.121,14.02,0.512,5.24,7.612,33.195,20.3,1.514,21.883,11.752,2.767,10.138,22.388,20.237,3.742,11.965,14.717,15.999,13.96,17.13,-0.179,1.968,13.972,6.355,35.929,10.248,11.427,3.707],[12.695,25.63,16.965,-0.452,10.751,5.772,-3.927,10.0,8.286,2.757,7.131,21.768,24.404,16.781,3.53,6.529,5.542,21.222,9.944,-4.484,5.857,8.428,1.643,23.128,15.534,3.029,27.062,18.786,16.483,11.957,6.986,21.566,-3.294,15.803,13.465,-2.547,10.931,10.432,18.984,11.698,1.872,24.273,14.656,8.179,9.2,9.449,22.224,17.326,11.841,15.897,17.63,-0.335,14.982,14.532,34.41,4.257,12.539,3.567,21.973,0.776,6.63,21.791,12.505,9.481,24.762,2.948,6.464,-0.592,8.401,16.715,23.631,9.073,12.799,0.275,-5.504,6.502,24.416,8.675,5.948,13.93,4.12,1.917,16.817,9.461,16.775,9.889,6.949,21.064,-2.553,4.42,26.094,20.271,16.607,4.597,11.121,24.853,7.976,5.268,2.34,16.437,5.296,22.465,10.738,6.703,-3.204,9.909,17.187,4.904,4.377,22.166,10.576,13.749,-3.481,21.602,20.322,8.71,1.139,7.622,18.996,7.701,25.421,18.064,1.41,26.667,12.873,-3.873,-1.781,22.394,-3.794,14.612,6.476,17.137,20.886,16.758,9.564,17.286,11.95,-1.108,14.587,13.548,24.119,9.576,8.555,19.047,9.326,26.156,12.155,10.879,7.736,3.474,13.201,12.622,15.721,13.687,11.216,10.105,9.749,20.77,9.053,17.673,1.348,21.729,13.25,17.359,19.384,14.532,0.682,5.308,7.927,33.19,20.69,1.046,21.494,11.173,2.747,9.601,22.176,20.433,3.719,11.845,14.613,15.873,13.503,17.54,-0.394,1.668,13.82,6.553,35.844,10.547,11.282,3.536],[12.932,25.597,17.096,-0.364,10.719,5.545,-4.129,10.201,8.584,2.877,7.106,21.792,24.556,16.847,3.546,6.575,5.495,21.203,9.909,-4.591,5.772,8.497,1.567,22.924,15.841,2.961,27.092,18.814,16.502,11.673,6.983,21.64,-3.351,15.752,13.458,-2.519,11.036,10.344,19.111,11.647,1.972,24.173,14.551,8.085,8.935,9.333,22.077,17.345,11.788,15.948,18.003,-0.248,15.107,14.562,34.594,4.209,12.55,3.55,21.837,0.738,6.625,21.709,12.333,9.495,24.633,3.398,6.916,-0.804,8.61,16.839,24.166,9.593,12.705,0.342,-5.752,6.197,24.62,8.975,6.084,14.704,3.798,1.874,17.121,9.652,16.685,9.626,6.768,21.463,-2.61,4.001,26.35,20.091,16.269,4.711,10.81,24.694,7.877,5.308,2.178,16.554,5.222,22.56,11.162,6.53,-3.476,9.873,15.821,4.947,4.392,21.939,10.213,14.035,-3.871,21.67,20.538,8.566,0.857,7.42,19.306,7.507,25.476,18.345,1.691,26.713,13.182,-3.479,-2.147,22.629,-3.682,14.229,6.191,16.723,20.838,17.066,9.312,17.349,12.093,-1.818,14.854,13.509,23.474,9.93,8.563,19.282,9.164,26.04,12.383,11.259,7.694,3.794,13.021,12.19,15.845,13.566,11.108,10.195,9.573,21.013,9.266,17.791,1.809,21.362,13.392,17.482,19.81,14.266,0.578,5.071,7.751,33.017,21.042,0.64,21.923,11.026,3.1,9.296,21.469,20.287,4.01,12.135,14.556,15.95,13.54,17.625,-0.104,1.151,13.625,6.598,35.75,10.467,11.453,3.656],[12.99,25.433,17.16,-0.386,10.766,5.476,-4.307,10.379,8.764,2.938,7.169,21.872,24.682,17.025,3.629,6.565,5.515,21.252,9.801,-4.562,5.627,8.467,1.389,22.77,16.093,2.97,27.089,18.881,16.357,11.498,6.828,21.617,-3.355,15.77,13.562,-2.477,10.975,10.317,19.032,11.666,2.148,23.975,14.44,7.989,8.797,9.147,22.088,17.227,11.675,15.959,18.32,-0.083,15.205,14.632,34.76,4.363,12.548,3.594,21.634,0.602,6.684,21.803,12.344,9.507,24.664,3.425,7.223,-0.493,8.099,16.803,24.238,9.629,12.71,0.196,-5.892,6.196,24.998,9.407,5.872,14.669,3.877,1.922,17.576,9.549,16.832,9.797,6.522,21.728,-2.604,4.425,26.163,20.04,16.993,4.76,10.909,24.214,8.258,5.26,1.676,16.448,5.018,22.418,11.217,7.177,-3.404,9.99,15.668,5.343,4.523,21.415,10.465,14.321,-5.039,22.039,20.173,8.745,0.988,7.829,19.244,7.596,25.496,18.144,1.954,26.725,13.205,-3.527,-2.082,22.907,-4.22,14.703,5.842,15.704,21.338,17.416,9.376,17.69,12.053,-2.296,14.8,13.555,23.306,9.768,8.197,18.9,9.068,25.766,12.176,11.462,7.561,3.906,12.933,12.285,15.568,13.436,11.18,9.873,9.517,20.964,8.653,17.995,1.906,21.586,13.615,17.403,19.653,14.051,0.256,5.158,7.285,33.29,20.466,0.599,21.736,11.178,3.08,9.349,21.387,20.025,4.128,11.892,14.398,16.051,14.313,17.572,0.225,1.153,13.815,6.614,36.036,10.28,11.641,3.74],[12.886,25.242,17.147,-0.436,10.896,5.517,-4.36,10.522,8.598,2.925,7.243,21.946,24.732,17.288,3.696,6.609,5.575,21.259,9.602,-4.556,5.431,8.361,1.147,22.641,16.136,3.055,27.092,18.818,16.217,11.341,6.615,21.649,-3.336,15.746,13.8,-2.519,10.927,10.357,18.849,11.759,2.222,23.716,14.318,8.004,8.849,8.922,22.218,17.088,11.443,15.845,18.469,0.013,15.286,14.868,34.795,4.672,12.642,3.639,21.568,0.437,6.856,21.894,12.498,9.663,24.61,2.98,6.876,-0.625,8.465,17.101,23.482,9.63,12.952,0.072,-5.623,6.353,25.398,8.947,5.976,14.205,3.978,1.981,17.569,9.369,16.761,10.494,6.576,21.53,-2.817,4.55,26.437,20.345,17.487,4.773,11.048,24.04,8.407,5.434,1.746,16.977,5.001,22.385,10.449,6.827,-3.177,9.92,16.248,5.689,4.253,21.031,10.718,14.288,-5.813,21.867,20.394,8.741,1.219,8.012,19.184,7.196,25.41,18.08,1.599,26.704,13.17,-4.018,-1.778,22.667,-4.027,14.981,6.294,16.02,21.002,17.519,9.49,17.333,11.878,-2.019,14.606,13.453,23.286,9.109,8.001,18.921,9.224,25.574,12.008,10.866,7.384,4.009,12.717,12.966,15.401,13.261,11.485,10.023,9.358,21.268,8.324,17.95,2.024,21.636,13.545,17.344,20.024,14.056,1.021,5.077,7.188,34.135,20.434,1.055,21.963,11.037,3.085,9.661,21.742,19.801,4.414,12.169,14.545,15.99,14.342,17.591,0.572,1.136,14.089,6.432,36.147,10.099,11.336,3.899],[12.831,25.111,16.989,-0.496,11.093,5.552,-4.199,10.486,8.373,2.905,7.297,22.043,24.762,17.523,3.763,6.677,5.569,21.086,9.391,-4.561,5.332,8.27,1.102,22.417,16.132,3.047,27.035,18.778,16.265,11.409,6.622,21.648,-3.332,15.887,13.883,-2.655,10.815,10.413,18.699,11.876,2.187,23.638,14.181,8.037,8.851,8.699,22.377,16.988,11.188,15.762,18.468,0.169,15.23,15.11,34.875,4.915,12.88,3.634,21.59,0.393,7.045,22.061,12.526,9.767,24.594,2.076,6.663,-0.837,8.594,17.025,23.449,10.175,12.632,-0.192,-5.735,6.184,25.521,8.902,6.392,14.477,3.805,2.349,17.627,9.507,16.306,10.366,6.842,21.353,-2.656,4.251,26.17,20.549,17.249,4.837,10.751,24.076,8.467,5.433,1.613,17.033,4.838,22.303,10.046,6.588,-2.93,9.599,17.051,5.73,4.177,21.071,10.016,14.329,-5.791,21.522,20.594,8.388,0.442,7.422,18.971,6.95,25.437,17.489,1.326,26.761,12.586,-3.961,-1.77,22.848,-3.796,15.503,6.403,16.02,20.508,16.906,9.819,17.089,12.108,-1.692,14.505,13.209,22.874,9.539,8.296,18.873,9.463,25.439,12.02,10.501,7.274,4.025,13.031,13.109,15.226,13.332,11.267,10.069,9.737,21.372,8.394,18.101,1.915,21.757,13.524,17.279,20.187,14.143,1.289,5.103,7.25,34.73,20.719,0.716,21.841,11.259,3.193,10.156,22.204,19.808,4.638,12.555,14.706,16.285,14.371,17.569,0.775,0.835,14.199,6.51,36.383,10.63,11.584,3.932],[12.861,25.096,16.808,-0.663,11.176,5.476,-4.043,10.485,8.415,2.883,7.357,22.119,24.808,17.527,3.969,6.718,5.461,20.77,9.2,-4.569,5.293,8.12,1.118,22.291,16.101,3.1,26.95,18.781,16.255,11.479,6.733,21.607,-3.419,16.032,13.994,-2.822,10.649,10.492,18.662,12.022,2.017,23.739,14.023,8.199,8.795,8.558,22.508,17.028,11.022,15.818,18.307,0.323,15.14,15.225,35.111,4.968,13.139,3.606,21.595,0.367,7.023,22.226,12.447,9.94,24.482,1.411,6.944,-1.287,7.706,17.018,23.743,9.939,12.635,0.17,-5.708,6.142,24.967,9.021,6.559,14.629,4.041,2.29,17.671,10.285,16.744,9.873,6.817,21.4,-2.579,4.081,26.409,20.543,17.502,5.1,10.652,23.937,8.311,5.322,1.661,16.908,4.792,22.175,10.235,7.087,-3.035,9.625,17.313,5.259,3.635,21.449,10.057,14.24,-5.617,21.48,20.276,8.515,0.488,6.483,19.221,6.86,25.338,17.355,1.489,26.562,12.994,-3.835,-2.136,23.046,-3.923,15.037,7.19,16.407,20.928,16.34,10.271,17.045,12.156,-1.585,14.281,12.978,22.941,9.682,8.584,18.713,9.851,25.549,11.721,10.813,6.988,3.767,13.527,12.691,15.53,13.596,10.791,9.69,9.533,21.176,8.184,18.326,2.017,22.104,14.077,17.331,19.909,14.545,1.048,5.281,7.513,34.71,21.164,0.857,21.49,10.922,3.458,10.252,21.492,19.847,4.416,12.452,14.474,16.617,14.308,17.02,1.009,0.688,14.302,7.277,36.498,10.375,11.995,3.471],[12.924,25.183,16.894,-0.852,11.246,5.341,-4.049,10.546,8.499,2.829,7.386,22.038,24.907,17.473,4.149,6.571,5.483,20.478,9.276,-4.591,5.168,8.076,1.154,22.312,16.049,3.162,26.94,18.75,16.142,11.593,6.824,21.667,-3.596,16.131,13.9,-3.029,10.581,10.721,18.684,12.177,1.841,24.014,13.866,8.383,8.686,8.373,22.571,17.312,10.976,15.893,18.072,0.316,15.193,15.252,35.419,4.881,13.343,3.531,21.39,0.503,6.936,22.293,12.225,10.121,24.234,1.33,7.075,-1.624,7.859,16.961,23.911,9.55,12.945,0.098,-5.438,6.38,24.188,9.168,6.627,14.299,3.883,2.585,17.284,10.627,16.61,9.721,6.599,21.53,-2.577,3.987,26.781,20.601,17.015,5.449,10.5,24.137,8.113,5.138,1.915,16.878,4.795,21.653,10.36,7.021,-3.307,10.006,16.778,5.167,2.809,21.566,10.856,14.263,-5.693,21.513,20.213,7.984,0.981,6.81,19.505,7.045,25.275,17.738,1.899,26.623,13.381,-3.857,-2.158,22.74,-4.12,15.234,7.216,16.847,21.217,16.936,10.278,17.415,11.512,-2.001,14.784,12.939,23.405,9.241,8.512,18.601,9.934,25.64,11.845,10.93,7.14,3.486,13.528,12.509,15.666,13.257,10.588,9.747,9.782,21.337,7.671,18.518,2.186,22.135,14.283,17.384,19.471,14.875,1.332,4.958,7.748,34.527,21.082,0.714,21.498,10.759,3.471,9.57,20.998,20.011,4.151,12.157,14.376,16.526,13.686,16.639,1.316,1.027,14.482,7.278,36.485,10.742,11.949,3.827],[13.008,25.28,17.032,-1.033,11.29,5.214,-4.015,10.625,8.535,2.77,7.428,21.871,24.931,17.322,4.315,6.378,5.646,20.359,9.536,-4.703,5.047,8.082,1.199,22.473,15.986,3.21,27.077,18.706,16.115,11.833,6.909,21.678,-3.763,16.397,13.749,-3.261,10.581,11.006,18.737,12.245,1.823,24.304,13.739,8.46,8.511,8.191,22.629,17.543,11.046,15.995,17.888,0.255,15.317,15.131,35.652,4.716,13.537,3.491,21.094,0.764,6.852,22.237,12.053,10.18,24.466,1.121,6.901,-1.159,8.56,16.791,23.921,10.042,13.141,-0.286,-5.454,6.406,24.176,9.16,6.708,14.452,3.522,2.834,17.715,10.282,16.321,10.006,6.275,21.055,-2.409,3.97,26.47,20.365,17.153,5.537,10.766,24.153,7.94,5.247,1.792,16.61,4.785,21.367,10.435,7.226,-3.153,9.751,15.787,5.007,2.507,21.247,10.912,14.09,-5.828,21.498,20.277,7.612,0.767,7.408,19.211,6.985,25.314,17.723,1.69,26.897,13.466,-4.035,-2.223,23.163,-4.655,14.823,6.794,17.098,20.994,17.244,9.947,17.404,10.805,-2.663,14.669,12.752,23.852,9.191,8.388,18.629,9.823,26.195,11.775,10.703,7.044,3.445,13.819,13.081,15.843,12.71,11.059,10.09,10.253,21.587,7.173,18.509,1.937,21.845,13.946,17.593,19.436,14.869,0.912,5.044,7.757,34.598,20.936,1.018,21.518,10.549,3.215,9.257,21.11,19.651,4.185,11.813,14.68,16.356,13.682,16.709,1.433,1.088,14.416,6.527,36.751,10.561,12.071,3.885],[13.046,25.35,17.075,-1.069,11.187,5.052,-3.968,10.798,8.649,2.643,7.57,21.577,25.005,17.204,4.476,6.19,5.788,20.373,9.764,-4.853,5.112,8.079,1.178,22.67,15.852,3.11,27.303,18.596,16.216,11.805,7.001,21.55,-3.773,16.708,13.483,-3.509,10.486,11.116,18.75,12.478,1.793,24.494,13.582,8.411,8.388,7.971,22.732,17.511,11.136,16.015,17.781,0.197,15.55,14.852,35.729,4.513,13.727,3.565,20.811,0.989,6.752,22.109,11.885,10.066,24.774,0.996,6.979,-1.26,8.254,16.784,23.542,10.233,13.14,-0.026,-5.435,6.409,24.726,9.329,6.476,14.662,3.722,2.641,17.965,9.85,16.803,10.469,6.548,21.132,-2.529,3.887,26.466,20.04,17.763,5.054,11.436,24.152,7.903,5.67,1.681,16.334,4.667,21.609,10.322,7.51,-3.339,9.702,16.027,4.97,2.82,21.296,10.42,14.05,-5.997,21.49,20.094,7.66,0.452,7.124,19.011,6.753,25.625,17.641,1.457,27.178,13.545,-4.216,-2.12,23.128,-4.677,14.651,7.235,17.629,20.36,17.104,10.062,17.28,10.781,-2.629,14.65,13.09,24.037,9.207,8.766,18.691,10.02,26.339,11.781,10.707,6.55,3.494,13.701,13.19,15.741,12.955,11.537,9.912,9.856,21.461,7.746,18.503,1.333,21.955,13.353,17.66,19.391,14.813,0.919,5.118,7.485,35.233,20.793,1.341,21.443,10.472,3.016,9.889,21.367,19.333,4.23,11.913,14.931,16.331,14.21,16.894,1.518,1.641,14.659,6.19,37.048,10.885,12.419,3.77],[13.006,25.579,17.135,-0.892,11.072,5.099,-3.938,10.946,8.743,2.465,7.667,21.393,25.033,17.239,4.45,6.082,5.872,20.454,9.725,-5.102,5.262,8.16,1.1,22.687,15.774,2.881,27.558,18.463,16.52,11.613,7.122,21.348,-3.559,16.897,13.486,-3.6,10.251,11.11,18.718,12.572,1.704,24.5,13.584,8.34,8.357,7.841,22.844,17.36,11.259,16.032,17.581,0.28,15.813,14.645,35.787,4.455,13.878,3.732,20.711,1.062,6.527,21.966,11.796,10.187,24.655,0.872,7.26,-1.064,8.109,16.808,23.701,10.045,12.996,0.13,-5.305,6.71,24.715,9.49,6.617,14.477,3.945,2.858,17.044,9.562,16.85,10.428,6.64,21.186,-2.332,3.758,26.749,19.569,17.13,5.12,11.368,24.438,7.842,5.358,2.01,15.822,4.952,21.607,10.402,7.187,-3.602,10.051,16.181,4.931,3.362,21.672,10.205,14.003,-5.853,21.269,19.952,7.749,0.427,7.036,19.236,7.163,25.89,17.54,1.025,27.303,12.946,-4.688,-2.028,22.518,-4.257,14.825,7.606,17.716,19.83,17.28,10.082,17.112,11.521,-2.382,14.313,12.88,23.661,9.285,8.675,18.719,10.065,26.142,11.944,10.876,6.227,3.51,13.902,13.211,15.702,13.071,11.465,9.474,9.859,21.378,8.023,18.651,0.889,22.31,13.414,17.398,19.291,15.172,1.004,5.047,6.983,35.635,21.073,1.087,21.345,10.435,2.841,10.549,21.514,19.342,4.047,12.158,14.835,15.809,14.444,17.175,0.878,1.838,15.125,6.605,36.671,10.614,12.474,4.344],[12.927,25.765,17.075,-0.681,10.978,5.226,-3.737,10.9,8.769,2.292,7.781,21.321,25.047,17.133,4.522,6.151,5.732,20.45,9.608,-5.398,5.383,8.278,1.039,22.708,15.661,2.637,27.809,18.445,16.757,11.393,7.282,21.127,-3.363,16.914,13.658,-3.586,10.18,11.009,18.607,12.6,1.638,24.387,13.618,8.33,8.296,7.787,22.91,17.215,11.367,16.055,17.301,0.308,16.008,14.523,35.843,4.54,14.045,3.9,20.761,0.93,6.29,21.907,11.812,10.411,24.645,0.899,7.114,-1.025,8.614,16.888,23.82,10.166,13.044,0.248,-5.071,6.829,24.917,9.434,7.027,14.421,3.707,2.78,17.339,9.895,16.425,9.98,6.633,21.117,-2.127,3.733,26.726,19.783,17.175,5.261,10.696,24.602,7.657,5.164,1.847,16.264,5.166,21.816,10.472,7.12,-3.705,9.926,16.494,4.863,3.486,22.015,9.953,13.82,-5.798,21.398,19.878,8.375,0.675,7.209,19.087,7.242,26.304,17.986,0.924,26.986,12.872,-4.81,-1.574,22.416,-3.43,15.468,7.14,17.458,19.354,18.202,10.034,17.192,11.686,-2.22,13.75,12.602,23.546,9.375,8.277,18.782,9.939,26.241,12.294,10.686,6.049,3.347,13.66,12.978,15.669,12.915,11.206,9.632,9.913,21.561,7.628,18.456,0.738,22.321,13.451,17.223,18.765,15.267,1.219,5.623,6.666,35.692,21.218,1.031,20.987,10.455,3.318,10.508,21.152,19.563,3.711,11.864,14.814,15.923,14.438,17.29,0.476,1.404,15.192,6.183,36.58,10.913,12.504,4.0],[12.875,25.774,17.029,-0.561,10.925,5.242,-3.437,10.742,8.813,2.129,8.013,21.303,24.971,17.069,4.581,6.345,5.529,20.53,9.409,-5.611,5.372,8.386,1.053,22.715,15.642,2.475,27.964,18.497,16.947,11.314,7.333,21.012,-3.212,16.96,13.818,-3.41,10.256,10.739,18.578,12.498,1.616,24.352,13.595,8.482,8.276,7.677,22.861,17.117,11.415,16.037,17.103,0.276,16.093,14.538,35.91,4.673,14.254,4.025,20.873,0.713,6.003,21.929,11.807,10.659,24.57,0.775,7.001,-0.982,8.876,16.53,23.722,10.199,13.173,0.726,-4.965,6.815,25.666,9.389,6.956,14.458,3.866,2.959,17.107,10.151,16.385,9.87,6.636,20.761,-2.15,3.75,26.401,19.911,16.802,5.467,10.631,24.545,7.878,5.611,1.44,16.137,5.261,21.748,10.618,7.208,-3.854,9.878,17.14,4.882,3.138,22.003,10.09,13.784,-6.322,21.434,20.093,8.764,0.402,7.107,18.914,6.911,26.724,18.159,0.627,27.055,12.784,-4.486,-1.644,22.143,-2.785,15.305,7.341,16.494,19.431,18.33,10.207,16.888,11.664,-2.071,13.942,12.938,23.436,8.84,8.245,18.504,10.183,26.169,12.203,10.926,6.264,3.28,14.249,12.61,15.741,12.744,11.237,9.796,9.65,21.695,7.45,17.935,0.689,22.129,13.12,17.511,17.848,15.497,0.938,5.785,6.602,35.906,21.066,1.123,20.724,10.387,3.131,9.83,20.483,19.511,4.246,11.806,14.861,15.917,14.822,16.684,0.768,1.498,14.937,6.109,36.834,10.676,12.887,3.872],[12.817,25.804,16.942,-0.558,10.945,5.203,-3.316,10.664,8.946,1.932,8.192,21.223,24.799,17.012,4.66,6.632,5.51,20.534,9.341,-5.744,5.222,8.411,1.033,22.752,15.552,2.365,28.08,18.548,17.312,11.278,7.284,20.925,-3.25,16.839,13.887,-3.081,10.44,10.489,18.588,12.422,1.612,24.409,13.537,8.62,8.299,7.683,22.707,17.056,11.425,16.038,16.962,0.175,16.221,14.629,36.015,4.717,14.429,4.103,20.807,0.68,5.663,21.976,11.679,10.609,24.72,0.901,7.226,-0.983,8.653,16.455,23.268,9.895,12.855,0.467,-4.958,6.898,25.408,9.227,7.343,14.545,3.829,2.89,17.02,10.058,16.823,10.236,6.682,20.688,-1.699,3.668,26.442,19.725,17.314,5.611,10.434,24.368,8.328,5.279,1.645,15.844,5.302,21.78,10.279,7.292,-4.124,10.188,17.087,5.23,2.163,21.703,10.145,13.703,-6.567,21.5,20.168,8.52,0.729,6.549,19.089,7.024,26.908,17.998,0.667,27.161,12.911,-4.105,-1.69,22.072,-2.86,15.237,7.869,16.275,19.578,18.11,10.033,16.887,11.772,-1.589,14.782,12.961,23.467,8.318,8.879,18.446,9.798,26.063,11.882,10.793,6.226,3.306,14.171,12.026,15.559,12.827,11.482,9.969,10.26,21.568,7.648,17.84,0.489,22.278,13.311,17.7,17.298,15.923,0.973,5.468,6.379,36.053,21.038,1.003,20.622,10.31,2.986,10.033,20.511,19.409,4.661,11.854,14.935,15.944,14.857,15.995,1.225,1.591,15.191,6.154,36.919,11.15,13.079,4.568],[12.752,25.845,16.984,-0.66,11.103,5.049,-3.326,10.667,9.015,1.886,8.294,21.081,24.725,17.025,4.71,6.917,5.621,20.485,9.371,-5.838,5.215,8.457,1.1,22.789,15.375,2.231,28.074,18.6,17.616,11.387,7.179,20.855,-3.358,16.64,13.978,-2.886,10.561,10.307,18.686,12.33,1.59,24.393,13.474,8.713,8.334,7.745,22.581,17.12,11.412,16.136,16.803,0.189,16.342,14.796,36.118,4.739,14.553,4.23,20.54,0.8,5.302,21.932,11.514,10.447,24.855,0.932,7.276,-0.594,8.786,16.909,23.507,10.062,12.554,-0.172,-4.509,6.928,25.063,9.052,7.817,14.428,3.98,3.086,17.275,9.836,16.133,10.289,6.634,21.134,-1.731,3.579,26.423,19.641,17.407,5.644,10.77,24.57,8.586,4.925,1.644,15.83,5.074,21.701,10.12,7.125,-4.266,10.089,17.477,5.71,1.114,21.603,9.869,13.598,-6.415,21.224,20.242,7.91,0.524,6.572,19.257,6.936,27.07,18.082,0.924,27.38,12.812,-3.397,-1.97,21.989,-3.477,14.887,7.688,17.415,19.323,17.986,9.252,16.912,11.94,-1.298,15.114,12.547,24.026,8.697,8.735,18.611,9.519,26.24,12.088,10.768,6.107,3.304,14.214,12.321,15.586,12.731,11.224,9.989,10.416,21.091,7.919,17.752,0.559,22.659,13.576,17.672,17.614,15.908,0.802,5.236,6.421,35.317,21.251,1.031,20.583,9.989,3.165,10.929,20.84,19.228,4.462,11.412,14.575,16.215,14.858,16.122,1.222,1.12,15.487,5.875,37.232,11.019,12.839,4.829],[12.721,25.829,17.069,-0.86,11.26,4.934,-3.319,10.644,9.03,1.943,8.433,20.95,24.824,17.168,4.801,7.1,5.666,20.378,9.456,-5.777,5.348,8.46,1.179,22.857,15.204,1.982,28.019,18.626,17.802,11.44,7.065,20.809,-3.518,16.671,13.843,-2.904,10.619,10.051,18.747,12.36,1.575,24.294,13.379,8.687,8.405,7.785,22.49,17.247,11.386,16.278,16.68,0.3,16.412,15.111,36.057,4.802,14.495,4.35,20.268,0.939,5.034,21.848,11.31,10.377,24.949,1.23,7.361,-0.828,9.065,16.597,23.436,10.193,12.842,0.047,-4.877,6.843,25.18,9.26,7.752,14.293,3.724,2.893,16.943,10.264,16.202,10.205,6.297,21.365,-1.842,3.81,26.347,19.579,16.654,5.827,11.041,24.559,8.712,5.674,1.254,15.769,4.975,21.719,10.216,6.943,-4.185,10.113,18.168,5.779,0.99,21.834,10.136,13.326,-6.656,21.217,20.157,7.764,0.322,6.441,19.188,7.131,27.376,18.684,0.938,27.192,13.152,-3.146,-1.775,21.589,-3.527,15.376,7.417,17.979,19.736,17.403,9.134,16.87,11.846,-1.167,14.865,12.801,24.058,9.423,8.564,18.904,9.346,25.992,12.157,11.073,6.116,3.365,13.638,13.3,15.555,12.254,11.129,9.831,9.796,21.119,8.092,18.095,0.593,22.093,13.545,16.991,17.995,15.78,0.754,5.667,6.048,35.117,21.337,1.141,20.208,9.709,3.53,11.104,20.741,19.392,3.905,11.81,14.576,16.467,15.069,16.577,0.952,1.538,15.447,5.841,37.374,10.685,12.972,4.715],[12.836,25.776,17.105,-1.046,11.355,4.886,-3.418,10.622,9.129,2.096,8.464,20.863,24.92,17.166,4.802,7.121,5.714,20.4,9.595,-5.676,5.476,8.413,1.073,22.96,15.002,1.694,28.009,18.621,18.016,11.61,6.939,20.813,-3.563,16.679,13.699,-2.995,10.599,9.928,18.64,12.428,1.538,24.216,13.38,8.512,8.546,7.812,22.53,17.202,11.461,16.216,16.689,0.44,16.476,15.408,35.853,4.681,14.217,4.474,20.157,1.211,4.904,21.661,11.151,10.468,25.15,2.003,7.351,-1.273,9.093,16.178,23.197,9.875,13.268,-0.033,-4.828,7.207,25.448,9.215,7.656,14.391,3.561,3.079,17.014,10.669,16.49,10.773,6.133,21.117,-1.793,3.829,26.255,19.665,17.112,5.879,10.884,24.514,8.782,5.793,1.409,15.531,5.611,21.858,10.447,7.271,-3.93,10.089,18.122,5.625,0.933,21.944,10.451,13.202,-6.74,21.173,20.063,8.447,0.555,6.168,19.199,7.199,27.729,19.205,0.238,27.035,12.925,-3.483,-1.79,21.419,-3.298,15.169,7.149,18.058,20.099,17.576,9.521,16.924,11.901,-1.17,14.436,12.873,23.406,9.328,9.061,18.579,8.78,25.992,11.748,11.396,6.032,3.291,13.659,12.905,15.851,12.175,11.303,9.856,9.563,21.157,7.77,18.652,0.834,21.994,13.913,17.076,17.977,15.56,1.053,6.1,5.404,35.707,21.183,1.264,20.126,9.981,3.682,10.4,20.236,19.335,4.528,11.852,14.84,16.609,15.295,16.382,0.923,2.132,15.288,5.699,37.156,10.778,12.945,4.513],[13.027,25.888,17.18,-1.131,11.382,4.899,-3.437,10.661,9.258,2.288,8.433,20.791,24.896,17.133,4.724,7.021,5.849,20.621,9.663,-5.607,5.498,8.405,0.905,23.056,14.874,1.298,28.117,18.806,18.243,11.831,6.638,20.815,-3.485,16.771,13.505,-3.111,10.608,9.888,18.469,12.437,1.617,24.196,13.368,8.424,8.557,7.828,22.641,17.205,11.48,16.113,16.658,0.542,16.43,15.403,35.761,4.662,13.894,4.553,20.108,1.562,4.797,21.403,11.31,10.501,24.793,2.322,7.519,-1.131,8.847,16.304,23.459,10.007,13.094,-0.464,-4.27,7.315,25.551,9.113,7.568,14.672,3.674,2.917,17.621,10.442,16.02,11.352,6.215,20.732,-1.743,4.084,26.379,19.276,17.148,5.62,10.934,24.721,8.688,5.279,1.827,15.554,6.081,21.987,10.491,7.393,-3.845,9.905,17.763,5.858,1.145,21.981,10.731,13.067,-6.551,21.069,20.314,8.793,0.263,6.441,19.358,6.979,27.983,19.265,-0.387,26.704,12.718,-4.11,-2.1,21.824,-2.963,14.974,7.386,17.433,19.577,17.701,9.725,16.749,11.775,-1.35,14.276,12.832,23.624,8.862,8.737,18.069,8.197,25.906,12.23,11.488,6.512,3.421,14.17,12.168,15.721,12.892,11.312,10.23,9.866,21.263,7.252,18.528,0.859,22.997,14.052,17.363,17.853,16.024,1.108,6.123,4.8,35.797,20.839,1.724,19.768,9.653,3.078,10.261,20.205,19.006,4.498,11.206,14.876,16.788,15.217,16.6,1.364,1.827,14.877,5.787,37.176,10.949,12.358,4.592],[13.225,26.065,17.227,-1.081,11.349,4.87,-3.134,10.775,9.282,2.543,8.359,20.577,24.811,17.099,4.544,6.941,5.927,20.767,9.625,-5.678,5.36,8.388,0.875,23.161,14.803,1.018,28.246,19.081,18.414,12.073,6.441,20.843,-3.448,16.837,13.376,-3.287,10.627,9.736,18.392,12.319,1.735,24.262,13.243,8.5,8.306,7.794,22.833,17.254,11.487,16.033,16.617,0.629,16.349,15.212,35.939,4.687,13.624,4.623,20.087,1.735,4.653,21.129,11.41,10.367,25.069,1.882,7.584,-0.971,8.993,16.858,23.863,10.439,12.755,0.126,-4.575,7.547,25.171,9.111,7.574,14.622,3.812,2.736,17.535,10.22,16.148,11.428,6.61,20.407,-1.5,4.289,26.516,19.117,16.801,5.584,11.029,24.823,8.501,5.405,1.51,15.097,5.834,22.239,10.405,7.36,-3.993,10.064,17.5,5.58,1.134,22.121,10.361,13.081,-6.028,21.419,20.835,8.525,-0.001,6.026,19.334,6.914,27.975,18.845,-0.667,26.768,12.902,-4.394,-1.724,22.154,-3.013,14.784,7.234,16.896,19.36,18.54,10.171,16.655,11.753,-1.727,14.128,12.829,23.768,9.074,8.296,18.545,8.21,25.903,12.334,11.197,6.738,3.682,14.014,12.487,15.534,13.279,11.526,9.95,10.061,21.476,7.849,18.083,1.261,22.994,13.832,17.494,17.86,15.76,0.978,5.84,4.775,35.626,20.457,1.866,19.631,10.012,3.411,10.345,20.531,18.994,4.051,11.377,15.144,16.684,15.142,16.473,1.912,2.129,14.396,5.903,37.518,11.102,12.293,4.748],[13.122,26.22,17.225,-0.832,11.247,4.94,-2.814,10.889,9.343,2.761,8.409,20.34,24.771,17.07,4.455,6.778,5.889,20.761,9.501,-5.78,5.108,8.511,0.969,23.249,14.688,0.892,28.299,19.322,18.417,12.198,6.319,20.905,-3.346,16.928,13.284,-3.539,10.554,9.656,18.548,12.25,1.793,24.39,13.157,8.551,8.036,7.835,23.015,17.194,11.513,16.138,16.663,0.793,16.169,15.135,36.16,4.742,13.406,4.608,20.147,1.845,4.558,20.859,11.508,10.236,25.042,2.017,7.6,-0.626,9.121,16.94,23.442,10.204,12.688,0.337,-4.321,7.45,25.173,9.413,7.409,14.698,3.986,2.698,17.327,10.252,16.104,10.759,6.272,20.102,-1.333,4.592,26.344,19.109,17.597,5.3,10.94,24.93,8.533,5.44,1.419,15.175,5.269,22.031,10.367,7.455,-3.894,10.15,17.884,5.268,1.133,22.192,10.521,12.848,-6.22,21.819,21.013,8.046,0.108,5.751,19.651,6.761,27.717,19.027,-0.811,27.157,13.484,-4.329,-1.646,21.962,-3.094,14.917,6.811,16.631,19.676,18.705,10.1,16.621,12.005,-2.013,14.01,12.584,23.615,8.5,8.644,19.12,8.371,26.028,12.31,10.959,6.296,3.605,13.637,12.815,15.565,12.544,11.605,9.584,9.887,21.479,8.287,18.154,1.846,22.335,13.624,17.619,17.98,15.722,1.147,6.22,5.261,35.781,19.982,1.785,19.706,10.486,4.043,9.612,20.278,19.473,3.7,11.774,15.313,16.481,14.753,15.841,1.815,2.775,14.521,5.713,37.569,11.254,12.127,4.687],[12.8,26.25,17.197,-0.556,11.071,5.002,-2.633,10.92,9.462,2.981,8.486,20.144,24.673,17.261,4.445,6.666,5.729,20.758,9.36,-5.752,4.799,8.602,1.049,23.347,14.529,0.863,28.208,19.526,18.364,12.163,6.291,20.977,-3.271,16.905,13.312,-3.793,10.46,9.613,18.731,12.316,1.742,24.492,13.12,8.522,7.785,8.018,22.975,17.2,11.51,16.295,16.712,0.872,16.005,15.137,36.217,4.735,13.348,4.551,20.306,2.058,4.685,20.559,11.739,10.084,25.187,2.602,7.761,-0.247,9.009,16.117,23.011,10.114,12.811,0.079,-3.694,7.292,25.382,9.463,7.638,14.483,3.753,2.507,17.45,10.637,16.102,10.134,6.159,19.772,-0.962,4.853,25.84,18.884,17.371,5.237,10.723,25.077,8.32,5.301,1.82,15.595,4.735,21.946,10.048,7.341,-3.997,10.387,18.241,5.481,1.481,22.321,10.871,12.641,-6.596,21.921,21.157,7.963,0.64,5.961,19.873,6.447,27.791,19.407,-0.594,27.208,13.783,-4.032,-1.764,21.65,-2.889,15.071,6.991,16.526,19.71,18.241,9.759,16.933,11.719,-2.397,13.765,12.665,23.609,8.029,8.836,18.62,8.549,25.969,11.977,11.123,6.487,3.506,13.993,12.565,15.691,12.624,11.739,9.56,9.489,21.566,8.111,18.397,1.967,22.257,13.918,17.795,17.837,15.398,1.024,6.25,5.956,35.669,19.613,1.896,19.866,10.19,3.626,10.016,19.765,19.821,4.568,12.246,15.649,16.642,14.4,16.297,1.604,2.89,14.677,5.342,37.299,10.934,12.005,4.482],[12.561,26.203,17.255,-0.363,10.953,5.011,-2.444,10.876,9.524,3.152,8.504,19.894,24.567,17.233,4.43,6.634,5.437,20.905,9.183,-5.666,4.469,8.511,1.199,23.508,14.44,1.045,28.069,19.446,18.248,12.153,6.466,20.91,-3.227,16.73,13.305,-3.985,10.287,9.577,18.775,12.492,1.715,24.378,13.192,8.412,7.733,8.293,22.857,17.262,11.432,16.45,16.827,0.837,15.806,15.324,35.98,4.854,13.472,4.496,20.387,2.259,5.025,20.47,11.973,10.017,25.179,2.621,7.791,-0.363,9.323,16.229,23.038,10.55,12.779,0.351,-3.639,7.172,25.319,9.255,8.038,14.257,3.711,2.725,17.396,10.379,15.933,10.008,5.994,19.519,-0.568,5.001,25.971,19.167,16.672,5.368,10.549,25.294,8.362,5.555,1.876,15.241,5.132,22.19,9.955,6.65,-3.9,10.21,18.127,5.585,1.659,22.58,11.053,12.822,-6.609,21.599,21.313,8.435,0.615,5.951,19.845,5.761,28.28,19.331,-0.463,26.74,13.996,-4.297,-1.726,21.641,-2.674,14.895,6.997,17.701,20.02,17.642,9.851,17.466,11.582,-2.777,13.758,12.842,23.574,8.385,8.265,18.412,8.186,25.768,11.714,11.043,7.094,3.494,14.134,12.09,15.765,12.519,11.852,9.432,10.155,21.514,7.489,18.63,1.805,22.81,14.169,17.903,17.597,14.902,1.341,6.142,5.598,35.694,19.358,1.941,19.323,10.297,3.618,10.855,20.41,19.439,4.755,12.368,15.616,16.768,14.354,16.435,1.609,2.475,14.585,5.603,37.472,10.57,12.15,4.664],[12.596,26.103,17.309,-0.339,10.895,5.008,-2.344,10.88,9.595,3.142,8.468,19.697,24.644,17.076,4.482,6.66,5.122,21.142,9.009,-5.561,4.173,8.272,1.37,23.736,14.389,1.345,28.027,19.277,18.114,12.355,6.681,20.745,-3.223,16.762,13.226,-4.222,10.044,9.562,18.853,12.454,1.87,24.05,13.287,8.333,7.967,8.495,22.818,17.257,11.328,16.588,16.855,0.746,15.608,15.603,35.718,5.041,13.619,4.547,20.301,2.36,5.234,20.548,12.178,10.089,24.836,2.194,7.942,-0.058,9.504,16.54,23.131,10.421,12.411,0.62,-3.4,7.362,25.171,9.331,7.88,14.179,3.803,2.689,17.384,9.547,15.768,10.323,6.134,19.412,-0.58,4.922,26.071,18.734,16.788,5.41,10.425,25.364,8.494,5.027,2.044,14.803,4.944,22.654,10.045,6.298,-3.662,9.936,17.437,5.267,1.778,22.53,11.245,12.555,-5.97,21.816,20.965,8.315,0.453,6.435,19.369,5.561,28.204,19.084,-0.451,26.652,13.557,-4.867,-1.724,21.957,-2.622,14.771,7.08,18.057,20.786,17.567,9.881,17.379,11.359,-3.02,14.225,12.658,23.502,8.633,7.999,18.503,8.218,25.684,12.104,10.483,7.128,3.669,14.084,12.537,15.815,12.536,11.749,9.241,9.979,21.227,7.899,18.699,1.535,23.148,13.968,17.698,18.124,14.688,1.161,5.982,5.762,35.708,19.788,1.885,19.212,10.863,4.297,10.499,20.175,19.553,4.541,12.203,15.754,16.952,14.519,16.159,1.978,2.48,14.671,6.065,37.021,10.427,11.895,4.471],[12.781,25.995,17.311,-0.368,10.805,4.955,-2.404,10.883,9.696,2.973,8.371,19.593,24.748,16.787,4.575,6.686,4.934,21.495,8.96,-5.324,3.952,7.99,1.507,23.998,14.28,1.568,28.08,19.114,17.858,12.625,6.924,20.771,-3.232,17.017,13.259,-4.477,9.71,9.614,18.849,12.277,2.008,23.76,13.302,8.119,8.09,8.69,22.817,17.181,11.365,16.555,16.857,0.729,15.531,15.673,35.556,5.273,13.633,4.54,20.168,2.387,5.309,20.801,12.325,9.958,24.542,2.16,8.296,0.113,8.937,16.837,23.183,10.079,12.415,-0.224,-3.498,7.403,26.003,9.339,7.708,14.145,4.038,2.627,17.427,9.807,16.218,10.696,6.635,19.135,-0.571,4.761,25.948,18.042,17.48,5.386,10.321,25.319,8.121,4.654,2.267,14.976,4.1,22.71,9.85,6.635,-3.542,9.721,17.395,5.254,2.031,22.415,11.007,12.498,-6.018,21.967,20.802,7.696,0.768,6.088,19.518,5.66,27.649,18.971,-0.315,26.986,13.993,-4.971,-1.933,22.175,-2.486,14.299,7.542,17.785,20.862,18.224,9.418,17.003,10.935,-3.514,14.401,12.592,22.877,8.745,8.439,18.737,7.975,25.355,12.183,10.277,6.87,3.789,14.138,12.828,16.033,13.21,11.188,9.621,9.674,21.335,8.862,18.603,1.834,22.936,14.154,17.666,18.025,14.811,0.766,5.86,6.54,35.793,20.119,2.23,19.468,11.391,4.192,9.73,19.566,19.479,4.697,12.255,16.446,16.973,14.058,16.3,1.892,3.238,15.018,6.154,36.669,11.11,12.078,4.51],[12.796,26.08,17.322,-0.419,10.681,4.897,-2.507,10.811,9.679,2.875,8.193,19.388,24.715,16.543,4.647,6.592,5.018,21.705,9.09,-5.182,3.823,7.826,1.696,24.187,14.326,1.816,28.112,19.11,17.582,12.893,7.014,20.878,-3.274,17.314,13.195,-4.585,9.369,9.478,18.713,12.359,2.105,23.299,13.359,8.023,8.105,8.875,22.811,17.262,11.393,16.459,17.005,0.684,15.456,15.512,35.518,5.541,13.549,4.512,19.969,2.434,5.31,21.094,12.47,9.766,24.44,2.248,8.141,0.087,9.211,17.482,23.261,10.455,13.226,0.079,-3.341,7.229,26.117,9.378,7.458,14.17,4.117,2.945,17.738,10.21,16.187,11.36,6.458,19.106,-0.68,4.697,26.134,18.043,16.436,5.382,10.306,25.394,8.343,4.701,1.996,15.037,3.97,23.011,10.008,6.678,-3.514,9.23,17.725,5.355,2.029,22.479,11.433,12.525,-6.269,22.248,20.885,7.467,1.1,6.465,19.698,5.403,27.763,18.908,0.064,27.032,14.348,-4.914,-1.991,22.457,-2.595,14.343,7.56,17.217,20.968,17.841,9.662,16.803,10.689,-4.036,14.265,12.973,22.189,8.665,7.829,19.061,7.945,24.85,12.117,10.162,7.362,3.826,13.952,12.25,15.87,13.338,11.2,9.687,9.817,21.357,9.102,18.825,2.417,22.65,14.363,17.997,17.248,14.934,1.466,5.423,6.322,35.43,20.21,2.365,19.605,11.231,4.084,9.401,19.658,19.315,5.233,12.284,16.711,17.024,13.814,16.466,1.512,2.85,15.172,6.218,36.947,11.137,12.881,4.924],[12.728,26.183,17.404,-0.322,10.616,4.784,-2.544,10.853,9.714,2.827,7.891,19.237,24.731,16.419,4.785,6.699,5.182,21.763,9.304,-5.282,3.701,7.742,1.947,24.212,14.413,2.021,28.151,19.276,17.459,13.054,7.012,21.038,-3.401,17.301,13.07,-4.584,9.194,9.312,18.471,12.437,2.292,22.865,13.521,8.003,8.056,9.098,22.727,17.321,11.422,16.385,17.13,0.616,15.33,15.33,35.589,5.831,13.612,4.545,19.8,2.362,5.326,21.222,12.496,9.658,24.72,2.529,8.235,0.128,9.534,17.722,23.171,10.213,12.98,0.098,-3.582,7.11,25.651,9.349,7.455,13.902,3.858,2.839,17.909,9.96,15.894,11.825,6.095,18.8,-0.758,4.714,26.051,18.162,16.367,5.607,10.417,25.301,8.471,5.226,2.272,15.227,4.131,23.055,10.532,6.401,-3.416,9.305,17.183,5.316,2.276,22.499,12.198,12.63,-5.855,22.369,21.048,7.654,0.91,6.966,19.402,5.046,28.326,19.004,0.393,27.217,14.807,-5.065,-1.994,22.801,-2.848,14.398,7.448,18.181,20.817,17.667,9.237,16.87,10.525,-4.638,14.002,12.89,22.087,8.443,7.225,18.97,7.927,24.367,11.939,9.66,7.607,3.78,14.189,12.545,16.089,12.812,11.629,9.725,9.452,21.208,8.629,18.907,2.642,22.718,13.889,17.985,17.794,15.126,1.933,5.79,6.065,35.069,20.513,1.87,19.879,11.116,4.286,9.451,19.571,19.243,5.716,12.679,16.431,16.655,13.993,16.771,1.313,2.507,14.973,5.713,37.089,10.38,12.665,4.82],[12.479,26.129,17.484,-0.138,10.613,4.756,-2.724,10.89,9.834,2.925,7.492,19.137,24.774,16.456,4.874,6.827,5.29,21.693,9.442,-5.382,3.491,7.787,2.05,24.071,14.388,2.092,28.282,19.341,17.405,13.051,7.039,21.246,-3.566,17.315,12.893,-4.588,9.08,9.221,18.452,12.418,2.459,22.617,13.584,7.87,8.044,9.247,22.533,17.375,11.509,16.241,17.365,0.695,15.367,15.182,35.733,6.057,13.706,4.688,19.79,2.082,5.357,21.246,12.524,9.551,25.428,2.545,8.556,0.339,9.134,17.386,23.159,9.988,12.196,-0.159,-3.76,7.146,25.406,9.531,7.565,13.965,3.958,3.15,17.87,9.671,16.25,12.0,6.302,18.706,-0.822,4.762,25.976,18.077,16.84,5.764,10.442,25.506,8.435,5.154,2.481,15.308,4.284,23.241,10.729,6.953,-3.636,9.522,17.018,5.709,2.504,22.557,13.05,12.791,-5.87,22.113,21.015,7.774,1.221,6.584,19.566,4.97,28.482,18.769,0.692,27.523,14.563,-5.143,-2.383,23.012,-2.774,14.215,7.742,18.204,20.151,17.945,9.013,16.563,10.405,-5.298,13.957,12.758,22.147,8.533,7.508,18.355,7.477,24.437,11.945,9.485,8.04,4.124,14.219,12.817,16.336,13.358,11.475,9.548,9.651,21.308,8.471,19.008,2.756,22.781,13.571,17.711,18.788,14.609,1.794,6.162,5.955,35.267,20.51,2.033,19.937,11.312,4.968,10.155,19.285,18.745,5.568,12.924,15.98,16.359,13.887,16.354,0.948,3.044,14.693,5.811,36.887,10.027,12.05,4.682],[12.205,26.178,17.559,0.027,10.732,4.905,-2.961,10.877,9.916,3.145,7.126,19.052,24.783,16.506,5.016,6.84,5.375,21.57,9.432,-5.551,3.352,7.901,2.072,23.915,14.359,2.101,28.467,19.279,17.295,13.06,7.162,21.491,-3.68,17.468,12.648,-4.585,8.999,9.126,18.507,12.322,2.619,22.611,13.604,7.861,8.211,9.416,22.344,17.452,11.572,16.071,17.6,0.787,15.371,14.986,35.821,6.075,13.611,4.879,19.908,1.987,5.41,21.243,12.677,9.525,25.046,2.182,8.956,0.223,8.839,16.709,23.436,10.624,12.236,0.615,-4.025,6.949,25.281,9.359,7.225,13.818,4.032,3.203,17.289,9.809,16.284,12.074,6.77,19.01,-1.159,4.957,26.305,18.113,17.022,5.813,10.662,25.629,8.716,5.098,2.749,15.179,3.779,23.07,10.46,6.925,-3.667,9.655,17.373,5.795,2.516,22.918,13.011,12.643,-6.145,21.763,21.006,7.962,1.323,6.339,19.89,4.91,28.393,18.874,0.418,27.228,14.622,-5.377,-2.325,22.505,-2.932,13.358,7.68,17.569,19.73,17.869,9.478,16.608,10.152,-5.936,14.153,13.057,21.933,8.825,7.94,18.858,7.829,24.25,12.157,9.883,7.897,4.434,13.98,12.486,16.231,13.484,11.383,9.507,9.475,21.112,8.602,19.233,2.138,22.364,13.801,17.484,18.315,14.862,1.233,6.06,6.252,36.107,20.302,2.053,19.839,11.416,4.905,9.77,19.075,18.704,5.463,12.79,15.472,16.654,13.725,16.412,0.929,2.614,14.487,6.176,36.742,10.499,11.987,4.814],[12.138,26.171,17.47,0.131,10.901,5.15,-3.181,10.885,10.023,3.399,6.811,19.001,24.793,16.545,5.209,6.821,5.412,21.488,9.326,-5.617,3.287,8.041,2.051,23.775,14.185,1.957,28.57,19.32,17.308,13.12,7.327,21.667,-3.744,17.46,12.287,-4.692,9.045,9.31,18.634,12.187,2.574,22.738,13.689,7.975,8.397,9.393,22.114,17.387,11.71,15.787,17.673,0.673,15.292,15.055,35.937,5.892,13.373,5.039,20.082,1.934,5.564,21.174,12.892,9.61,24.772,2.51,8.912,0.061,9.171,16.295,23.681,10.225,12.264,1.455,-4.356,6.569,25.896,9.394,6.632,13.67,4.292,3.538,17.394,9.83,16.214,12.374,6.615,18.888,-1.519,5.191,26.346,18.503,16.538,5.773,10.612,25.519,8.582,5.46,2.597,15.402,3.67,23.048,10.383,6.646,-3.941,9.619,17.334,5.454,2.436,23.238,12.184,12.768,-6.462,22.021,21.136,7.951,1.028,6.562,19.321,4.735,28.707,18.754,0.183,27.44,14.842,-5.266,-2.533,22.078,-3.184,12.991,8.03,18.241,19.892,18.215,8.959,16.858,9.857,-6.103,13.713,13.104,21.876,8.871,7.987,19.261,7.706,24.287,11.825,9.917,8.014,4.403,13.642,12.712,16.126,12.923,11.292,9.98,9.504,20.693,9.21,18.807,2.145,22.023,13.443,17.493,18.021,15.335,1.17,5.856,6.541,35.993,20.435,1.946,19.942,11.665,4.361,9.265,18.998,19.377,5.604,12.828,15.522,16.467,13.537,17.171,1.398,2.244,14.473,5.772,36.891,10.762,12.129,5.277],[12.225,26.197,17.331,0.179,11.031,5.298,-3.356,10.896,10.059,3.596,6.554,18.952,24.879,16.419,5.481,6.677,5.556,21.554,9.285,-5.531,3.373,8.228,1.921,23.688,14.017,1.781,28.637,19.279,17.309,13.053,7.47,21.716,-3.882,17.473,12.078,-4.763,8.961,9.451,18.832,12.247,2.43,22.783,13.703,8.056,8.645,9.299,21.882,17.142,11.676,15.361,17.699,0.543,15.195,15.267,36.052,5.732,13.298,5.127,20.196,1.759,5.685,21.152,13.106,9.642,24.54,3.333,8.698,0.288,9.26,16.541,23.511,10.175,12.528,1.227,-4.974,6.338,26.237,9.386,6.189,13.575,4.363,3.633,17.732,9.829,16.046,12.633,6.816,18.727,-1.784,5.413,26.131,18.386,16.766,5.704,10.213,25.23,8.213,5.507,2.552,15.273,4.272,22.937,10.479,7.228,-3.678,9.299,17.009,5.363,2.187,23.089,11.693,12.651,-6.693,22.019,21.02,7.359,1.329,6.905,19.277,4.83,28.871,19.0,0.31,27.269,14.641,-5.149,-2.407,22.172,-3.211,12.922,7.902,18.651,20.057,18.171,9.368,17.014,10.026,-6.388,12.819,12.946,22.189,9.057,7.39,18.996,8.037,24.399,12.105,9.647,7.788,4.189,13.865,13.121,15.787,13.75,11.791,10.21,9.829,20.683,9.658,18.86,2.412,22.155,13.625,16.959,18.759,14.931,1.625,6.321,6.408,35.235,20.395,1.503,19.837,11.71,4.295,9.475,19.476,19.478,5.736,12.978,15.858,16.102,13.369,17.312,1.576,2.513,14.353,6.566,37.176,10.598,11.807,5.352],[12.453,26.212,17.155,0.241,11.174,5.316,-3.592,11.069,9.941,3.788,6.367,18.891,24.922,16.286,5.751,6.52,5.793,21.552,9.32,-5.285,3.685,8.295,1.843,23.644,13.982,1.676,28.704,19.126,17.193,12.911,7.401,21.664,-3.994,17.525,11.913,-4.755,8.696,9.753,18.965,12.57,2.379,22.807,13.799,7.988,8.933,9.268,21.81,17.144,11.592,14.885,17.825,0.532,15.071,15.371,36.054,5.738,13.307,5.145,20.242,1.533,5.92,21.173,13.131,9.61,24.651,3.429,8.829,0.368,9.14,16.803,23.325,10.804,12.806,-0.029,-5.026,5.817,25.42,9.529,5.961,13.37,4.273,4.09,18.028,10.031,15.988,12.803,7.05,18.467,-2.134,5.649,26.354,17.898,16.572,5.742,10.277,25.148,8.064,5.809,2.458,15.162,4.328,23.006,10.571,7.128,-3.936,9.768,16.963,5.139,1.956,22.961,12.105,12.33,-6.699,21.706,20.713,7.142,1.333,7.046,19.93,5.15,28.419,18.908,0.007,27.469,14.575,-5.417,-2.562,22.688,-3.575,13.17,7.727,18.748,19.974,17.996,9.279,16.978,9.982,-6.245,12.951,12.996,22.079,9.491,7.04,19.126,8.242,24.671,12.191,9.322,7.624,3.878,14.378,12.431,15.725,13.614,12.05,10.402,9.554,20.735,9.328,18.723,2.739,22.586,13.983,16.435,18.552,14.584,1.492,6.824,6.069,35.208,20.224,1.562,19.863,11.682,4.328,9.841,19.828,18.817,5.532,13.271,15.363,16.71,13.409,17.086,1.438,2.727,14.37,6.165,37.028,11.051,11.8,5.478],[12.611,26.039,16.951,0.217,11.35,5.333,-3.735,11.363,9.786,3.928,6.2,18.828,25.043,16.107,5.962,6.308,5.866,21.359,9.435,-5.088,3.905,8.329,1.896,23.65,14.138,1.656,28.804,19.039,17.022,12.864,7.242,21.597,-4.253,17.64,11.758,-4.768,8.402,10.048,18.947,12.843,2.432,22.94,13.888,7.872,9.27,9.304,21.86,17.341,11.622,14.518,17.92,0.468,14.842,15.567,35.929,5.799,13.366,5.152,20.153,1.41,6.072,21.134,12.935,9.785,25.007,3.21,9.056,0.365,8.685,16.828,23.426,10.463,12.822,-0.44,-5.217,5.541,25.127,9.956,6.181,13.888,3.982,4.13,17.829,10.173,15.878,12.948,6.708,18.099,-2.123,5.692,26.413,17.947,16.378,6.149,10.591,25.34,7.857,5.985,2.302,15.407,4.358,22.989,10.597,7.041,-4.028,9.806,16.805,4.926,2.1,22.727,12.284,12.628,-6.467,22.108,20.627,7.461,0.905,7.104,19.412,5.489,28.903,18.706,-0.097,27.136,14.58,-5.186,-2.968,23.022,-3.739,12.975,7.904,18.657,20.222,17.894,9.239,17.162,9.64,-6.109,12.68,13.194,21.919,9.91,7.23,19.52,8.683,24.593,12.314,8.86,8.137,4.22,14.493,12.602,16.161,13.001,11.518,10.664,9.441,20.639,8.995,18.79,2.59,22.778,13.917,16.301,18.27,14.707,1.08,6.511,6.141,35.521,20.241,1.424,20.161,11.649,4.131,10.108,19.542,18.796,5.359,13.288,14.079,17.058,13.286,16.902,1.535,2.219,14.16,6.199,37.093,10.481,11.972,5.663],[12.677,25.86,16.769,0.119,11.469,5.34,-3.748,11.428,9.596,3.972,6.121,18.794,25.168,15.966,5.99,6.082,5.797,21.291,9.609,-4.991,3.784,8.385,1.819,23.8,14.387,1.647,28.956,18.97,16.841,12.744,7.218,21.547,-4.588,17.692,11.504,-4.743,8.256,10.213,18.9,13.048,2.484,22.994,13.875,7.892,9.631,9.553,21.95,17.582,11.721,14.211,17.811,0.514,14.598,15.747,35.793,5.847,13.423,5.056,20.055,1.18,6.157,21.173,12.715,9.985,24.79,2.979,9.107,0.181,8.089,16.747,23.635,10.527,12.603,0.626,-5.166,5.328,24.983,10.081,6.332,14.109,4.109,4.782,17.248,10.188,15.544,13.11,6.716,17.658,-2.285,5.802,26.453,18.028,16.356,5.981,10.385,25.334,7.723,5.719,2.772,15.832,4.478,22.578,10.352,7.471,-3.58,9.942,16.523,4.77,2.471,22.396,11.877,12.933,-6.553,21.946,20.597,7.82,1.105,6.847,19.053,5.431,29.303,18.665,0.12,27.465,14.374,-4.908,-2.943,23.085,-3.856,12.574,8.117,18.557,20.355,18.571,9.444,17.178,9.24,-6.051,12.441,13.075,22.505,10.371,7.45,19.49,8.947,24.721,12.352,8.574,8.319,4.366,14.827,13.548,16.18,13.556,11.274,10.869,9.492,20.904,9.486,19.069,2.291,22.852,14.407,15.88,18.652,14.947,0.791,6.208,6.687,35.723,20.327,1.49,19.933,11.57,4.215,10.581,19.163,18.755,5.732,12.57,13.863,16.751,13.051,17.282,1.091,1.819,14.007,6.332,37.243,10.704,12.058,5.68],[12.614,25.657,16.649,0.04,11.517,5.357,-3.759,11.318,9.456,3.975,6.013,18.754,25.095,15.983,6.002,5.925,5.839,21.261,9.62,-5.017,3.541,8.461,1.73,23.94,14.511,1.7,29.231,19.022,16.752,12.505,7.313,21.408,-4.649,17.835,11.166,-4.558,8.134,10.253,18.869,13.217,2.437,23.127,13.953,8.115,9.881,9.908,22.055,17.733,11.784,14.099,17.801,0.479,14.466,15.76,35.672,5.924,13.508,4.971,19.944,0.918,6.2,21.284,12.519,10.269,24.317,3.138,9.079,0.342,8.094,16.578,23.899,10.633,13.088,0.689,-5.306,5.192,25.041,10.11,6.2,13.72,4.25,4.686,17.556,10.111,15.776,12.794,7.02,17.353,-2.336,5.7,26.594,18.058,16.496,5.754,10.367,25.419,7.321,5.987,2.773,15.501,4.094,22.753,10.86,7.272,-3.216,10.208,16.444,4.493,2.535,22.543,11.734,12.906,-5.952,21.66,20.77,7.817,1.407,6.954,19.519,5.072,29.01,18.226,0.27,27.926,14.172,-5.037,-3.681,22.267,-4.291,12.167,8.232,18.848,21.163,18.394,9.632,16.96,9.432,-5.903,12.234,12.863,22.795,10.614,7.31,18.983,8.679,24.713,11.858,8.414,8.418,4.199,14.667,13.944,16.231,13.63,12.172,11.008,9.893,20.99,10.045,19.153,2.328,23.06,14.477,15.551,18.242,14.517,1.571,5.818,7.007,36.096,20.756,1.599,19.939,11.266,4.555,10.319,19.42,18.807,6.034,12.141,14.295,17.156,12.643,17.201,0.683,1.52,14.444,6.198,37.144,11.247,12.007,5.253],[12.688,25.382,16.724,0.086,11.431,5.407,-3.827,11.262,9.47,3.971,5.836,18.664,25.007,16.096,5.972,5.712,6.036,21.188,9.668,-5.012,3.38,8.437,1.765,24.043,14.409,1.851,29.501,19.28,16.602,12.479,7.459,21.2,-4.795,18.086,10.819,-4.381,7.976,10.094,18.766,13.326,2.463,23.244,14.087,8.372,10.017,10.068,22.171,17.784,11.733,14.243,17.835,0.388,14.287,15.739,35.685,6.085,13.635,4.875,19.932,0.692,6.23,21.59,12.356,10.413,23.709,3.354,8.505,0.317,8.509,16.397,23.702,10.516,12.973,0.207,-5.159,5.047,25.324,10.138,6.056,13.741,4.536,4.546,17.277,10.104,15.778,12.495,7.038,17.185,-2.132,5.84,26.462,18.128,17.109,5.592,10.149,25.55,7.365,6.157,1.974,15.448,3.707,22.74,11.051,7.293,-3.216,9.825,16.388,4.374,2.362,22.988,11.729,12.809,-4.909,21.764,20.95,7.373,1.109,7.191,19.151,5.025,29.501,18.331,0.265,27.789,14.035,-4.885,-4.115,21.24,-3.643,12.071,8.094,18.543,21.277,18.243,9.299,17.134,9.033,-5.25,11.858,13.305,22.438,10.524,7.669,18.554,8.832,24.472,12.143,8.325,8.485,4.198,15.14,13.088,16.497,13.271,12.815,11.064,10.14,20.868,9.979,19.131,2.533,23.429,14.155,15.711,18.381,14.215,1.058,5.969,6.98,35.712,20.923,0.931,20.294,11.228,4.682,10.711,19.098,18.415,5.782,12.818,14.597,17.126,12.64,16.714,0.787,1.25,15.043,6.026,36.876,10.924,12.416,5.046],[12.869,25.134,16.772,0.126,11.309,5.57,-3.84,11.315,9.539,3.998,5.664,18.564,24.957,16.288,5.944,5.53,6.234,21.16,9.629,-4.852,3.227,8.147,1.754,24.083,14.229,1.979,29.657,19.228,16.481,12.606,7.56,20.908,-4.928,18.177,10.696,-4.215,7.757,9.877,18.702,13.374,2.573,23.1,14.12,8.576,9.916,9.935,22.281,17.852,11.814,14.43,17.925,0.401,14.231,15.547,35.835,6.11,13.701,4.832,19.865,0.451,6.166,22.02,12.414,10.47,23.399,3.512,8.386,0.399,8.504,16.648,23.404,10.729,13.102,0.461,-4.96,4.937,25.194,9.798,5.917,14.063,4.293,4.223,16.938,9.992,15.441,12.395,6.956,17.001,-2.154,5.787,26.335,17.854,16.694,5.527,10.675,25.823,7.074,5.885,1.304,15.709,3.554,22.452,10.7,7.817,-3.426,9.688,15.971,4.182,2.664,23.388,12.21,12.564,-4.82,21.908,21.103,6.931,0.834,7.041,19.217,5.099,29.837,18.246,0.511,27.98,14.179,-4.687,-4.006,20.33,-3.685,12.003,8.15,18.879,21.147,18.87,8.937,16.976,8.658,-4.284,11.656,13.493,22.217,10.42,8.19,18.856,8.568,24.696,12.189,8.49,8.29,4.35,15.094,13.012,16.329,13.694,12.457,10.969,10.354,20.965,9.868,19.197,2.815,23.45,14.212,16.065,18.371,13.925,1.118,6.235,7.129,35.399,20.92,0.624,20.845,11.301,4.649,10.836,19.165,18.944,6.093,13.065,14.65,16.928,12.426,16.949,0.655,1.213,15.41,6.058,37.338,10.869,12.566,5.555],[13.1,24.964,16.727,0.188,11.11,5.631,-3.819,11.368,9.629,4.04,5.528,18.379,24.951,16.452,5.835,5.386,6.368,21.21,9.577,-4.732,3.147,7.794,1.441,24.164,13.984,2.141,29.664,19.032,16.408,12.831,7.467,20.565,-4.972,18.308,10.859,-3.97,7.575,9.749,18.811,13.381,2.844,22.851,14.144,8.744,9.702,9.8,22.352,17.771,11.897,14.466,18.028,0.458,14.189,15.46,36.046,5.995,13.717,5.041,19.948,0.314,6.017,22.429,12.562,10.5,23.286,3.538,8.8,0.477,8.302,17.003,23.359,10.739,13.216,0.654,-5.186,4.893,24.624,10.113,6.121,14.131,4.307,4.375,17.155,10.266,15.541,12.717,7.26,16.907,-2.249,5.877,26.384,17.946,16.655,5.24,10.629,25.774,6.723,6.255,1.782,15.233,3.501,22.207,10.629,7.761,-3.116,9.537,16.222,3.879,2.971,23.346,12.029,12.533,-4.908,22.22,20.835,6.744,1.064,7.274,19.368,4.792,29.6,18.025,1.02,28.018,14.242,-4.479,-3.413,19.89,-4.252,11.981,8.203,19.243,20.702,18.787,8.897,16.994,8.539,-3.265,11.779,12.967,22.351,9.95,8.755,18.568,8.264,24.445,12.424,8.303,8.381,4.588,14.95,14.163,16.241,13.723,11.671,11.044,10.548,20.979,9.2,19.214,2.318,23.391,14.062,16.018,18.588,14.017,1.036,6.466,7.086,35.857,21.232,0.622,21.442,11.438,4.463,10.516,18.905,18.719,6.402,12.544,14.68,16.919,12.266,17.23,0.879,1.197,15.31,6.042,37.507,11.23,12.557,5.406],[13.291,24.759,16.697,0.313,10.915,5.587,-3.852,11.459,9.688,4.182,5.497,18.216,25.101,16.579,5.704,5.239,6.447,21.251,9.646,-4.618,2.95,7.585,1.175,24.242,13.675,2.436,29.46,19.044,16.551,12.941,7.397,20.153,-4.785,18.488,11.156,-3.684,7.523,9.64,18.899,13.579,2.952,22.64,14.1,8.896,9.34,9.644,22.45,17.576,11.908,14.339,18.123,0.42,14.251,15.632,36.192,5.835,13.723,5.361,19.862,0.331,5.893,22.821,12.578,10.461,23.364,3.45,8.794,0.531,8.395,17.097,23.397,10.667,13.237,0.746,-5.259,4.777,24.553,10.008,6.3,14.135,4.757,4.556,17.408,10.207,15.39,12.681,6.948,16.599,-2.311,5.909,26.259,17.814,17.299,5.29,10.029,25.881,6.353,6.245,2.26,14.495,3.21,22.662,10.886,7.729,-2.762,9.104,16.745,3.562,2.866,23.099,11.995,12.182,-4.753,22.036,20.382,7.065,0.821,6.438,18.654,4.605,29.607,18.158,1.001,27.836,14.276,-4.646,-3.616,19.588,-4.628,12.238,8.269,19.14,20.311,18.644,9.115,17.26,8.834,-2.358,12.238,13.386,22.334,9.923,8.903,18.783,8.454,24.381,12.506,7.452,8.326,4.712,14.742,14.175,16.16,13.753,11.166,10.844,10.705,21.051,8.874,18.87,2.8,23.402,13.986,15.64,18.675,14.349,1.247,6.639,6.689,36.583,22.051,0.512,21.524,11.658,4.59,10.327,19.327,18.686,5.48,13.079,14.537,16.677,12.548,17.034,1.21,0.768,15.17,5.645,37.465,11.365,12.299,5.335],[13.341,24.616,16.73,0.47,10.731,5.525,-3.953,11.43,9.643,4.301,5.605,18.176,25.236,16.749,5.519,5.008,6.48,21.325,9.653,-4.514,2.794,7.535,1.045,24.273,13.366,2.511,29.31,19.082,16.873,12.959,7.304,19.744,-4.752,18.758,11.364,-3.437,7.535,9.554,18.969,13.668,2.914,22.658,14.151,8.974,8.932,9.51,22.637,17.303,11.815,14.224,18.151,0.387,14.425,15.678,36.393,5.598,13.714,5.642,19.879,0.387,5.633,23.094,12.705,10.351,22.883,3.559,8.768,0.764,8.499,17.104,23.548,10.953,13.609,1.032,-4.785,4.567,24.709,9.775,5.748,14.461,4.283,4.624,17.482,9.649,15.471,12.336,6.957,16.623,-2.289,6.119,26.423,17.345,17.274,5.474,10.409,25.926,6.605,6.042,2.108,14.545,2.603,22.607,11.167,8.084,-2.712,9.272,16.589,3.469,3.529,23.322,12.397,11.712,-5.065,21.754,20.863,7.166,0.814,7.119,18.951,4.621,29.751,18.487,1.133,27.654,14.623,-4.427,-4.136,19.078,-3.776,12.518,8.246,18.604,19.804,18.818,8.634,17.184,9.128,-1.769,12.504,13.496,21.629,9.481,8.887,19.04,8.191,24.011,12.852,7.126,8.16,4.57,15.355,13.595,16.167,13.586,11.466,10.389,10.784,21.277,9.074,18.758,3.229,23.346,14.344,15.951,18.597,14.18,1.428,6.739,6.92,36.953,22.11,0.265,21.732,11.362,4.501,10.175,19.111,18.539,4.998,13.099,14.286,16.999,12.68,17.442,1.214,0.577,15.139,5.492,37.652,10.996,12.366,5.046],[13.369,24.397,16.806,0.679,10.567,5.373,-3.901,11.299,9.565,4.365,5.785,18.163,25.312,16.977,5.387,4.942,6.47,21.361,9.767,-4.54,2.792,7.769,1.071,24.276,13.336,2.435,29.247,19.327,17.18,13.049,7.313,19.384,-4.852,18.916,11.359,-3.318,7.52,9.236,18.975,13.829,2.864,22.692,14.224,8.909,8.667,9.533,22.856,17.094,11.712,14.406,18.245,0.289,14.423,15.788,36.667,5.314,13.674,5.775,19.97,0.427,5.473,23.172,12.897,10.259,22.953,3.518,8.777,0.766,8.384,17.252,23.761,10.688,13.38,1.327,-4.711,4.523,24.905,10.114,5.263,14.511,3.952,3.958,17.42,9.254,15.419,11.968,6.903,17.288,-2.107,6.113,26.8,17.494,17.002,4.947,10.549,26.132,6.445,6.286,1.702,14.755,2.344,22.266,11.104,7.747,-2.708,9.529,16.328,3.509,3.502,23.685,12.332,11.893,-5.228,22.21,21.149,6.937,0.814,6.74,19.361,4.51,29.661,18.851,1.201,27.874,14.545,-3.692,-4.03,18.253,-3.816,12.249,8.029,19.326,19.148,19.53,8.553,17.202,8.878,-1.393,12.488,12.996,21.124,9.15,8.393,18.657,7.822,23.777,12.364,7.389,8.321,4.508,15.682,13.912,15.741,13.863,12.268,10.023,10.794,21.213,8.594,18.445,2.458,23.424,14.116,15.988,18.282,14.111,0.929,6.538,6.818,36.741,21.789,0.176,22.201,11.404,3.993,10.28,18.926,18.873,5.407,12.704,14.259,17.119,12.589,17.405,1.406,0.971,15.069,5.357,37.371,10.841,12.794,5.258],[13.344,24.262,16.887,0.903,10.437,5.313,-3.832,11.307,9.446,4.208,5.864,18.33,25.395,17.155,5.123,4.976,6.355,21.389,9.854,-4.525,2.681,8.108,1.104,24.355,13.498,2.372,29.2,19.59,17.34,13.088,7.303,18.928,-4.976,19.144,11.109,-3.115,7.585,9.014,18.863,14.067,2.719,22.557,14.314,8.724,8.551,9.572,22.986,16.967,11.605,14.71,18.343,0.211,14.303,15.756,36.822,5.032,13.663,5.727,20.055,0.634,5.291,23.142,13.013,10.275,23.298,3.717,8.664,0.366,8.142,17.684,24.131,10.224,12.705,1.476,-4.561,4.527,24.68,9.964,5.444,14.354,3.764,3.93,17.013,9.328,15.441,11.992,6.609,17.173,-2.071,5.909,26.924,17.418,17.226,4.579,10.44,26.117,6.352,5.792,2.126,14.867,2.845,22.698,11.156,7.682,-3.16,9.954,17.076,3.442,2.625,23.733,12.041,12.165,-5.709,22.202,21.042,7.263,0.646,6.236,19.61,4.454,29.333,19.054,1.058,27.715,14.666,-3.541,-3.467,18.153,-4.471,12.063,8.014,19.659,18.808,19.789,8.441,17.138,8.319,-1.461,12.237,13.495,21.543,9.114,8.372,19.099,7.679,23.649,11.987,7.959,7.95,4.397,15.751,14.358,15.564,14.196,11.604,10.145,10.603,21.523,8.875,17.664,2.147,23.672,14.269,15.822,18.374,14.514,0.407,6.379,6.485,36.392,21.777,0.447,22.614,11.666,3.505,10.405,19.285,19.005,5.443,13.285,14.814,17.055,12.55,17.145,1.682,0.72,15.127,5.168,37.818,11.152,12.377,6.047],[13.167,24.187,16.904,1.098,10.413,5.313,-3.814,11.257,9.303,3.918,5.901,18.447,25.502,17.275,4.976,5.017,6.138,21.505,9.748,-4.704,2.615,8.463,1.168,24.406,13.72,2.21,29.043,19.685,17.468,13.134,7.233,18.511,-4.989,19.367,10.946,-2.959,7.523,9.031,18.943,14.207,2.535,22.336,14.524,8.591,8.635,9.464,23.017,16.944,11.411,14.852,18.261,0.219,14.282,15.681,36.879,4.77,13.601,5.654,20.176,0.92,5.0,23.221,13.093,10.346,23.267,3.609,8.311,0.242,8.026,18.1,24.031,10.846,12.965,1.447,-4.517,4.212,24.454,9.749,5.882,14.67,3.95,3.562,17.752,9.464,15.612,12.177,6.297,17.183,-2.055,5.823,27.045,17.369,17.679,4.191,10.761,26.069,6.492,5.532,2.494,15.035,3.396,22.674,11.05,7.833,-3.052,10.269,17.768,3.519,2.905,23.363,11.905,12.062,-5.631,22.023,21.4,7.682,0.999,6.744,19.413,3.89,29.441,18.947,1.007,27.561,14.457,-3.883,-3.263,18.21,-4.698,12.151,7.574,19.123,18.257,19.737,8.459,17.32,8.839,-1.089,11.939,13.35,22.149,8.67,8.723,19.336,7.763,23.941,12.238,7.937,7.704,4.095,15.888,14.246,15.423,13.947,11.237,10.313,10.185,21.384,9.629,17.913,2.329,23.978,14.375,16.411,18.47,14.044,0.581,6.545,6.123,37.02,21.897,0.842,22.068,11.507,3.229,10.253,19.511,18.842,5.061,13.161,15.275,17.032,12.551,17.692,1.542,0.531,15.076,5.484,38.382,11.574,12.213,6.469],[13.176,24.152,17.047,1.244,10.459,5.325,-3.774,11.256,9.194,3.715,5.934,18.436,25.547,17.48,4.862,5.071,5.923,21.679,9.59,-4.863,2.681,8.663,1.277,24.298,13.866,2.164,28.927,19.697,17.563,13.177,7.136,18.167,-4.917,19.477,11.134,-2.855,7.409,9.067,19.19,14.293,2.372,22.28,14.509,8.507,8.717,9.277,22.961,17.169,11.284,14.967,18.121,0.239,14.256,15.778,36.949,4.534,13.496,5.704,20.342,1.155,4.877,23.109,12.954,10.39,23.237,3.581,8.092,0.375,8.2,17.349,23.956,10.841,13.635,1.541,-4.728,4.182,24.4,9.898,6.433,14.477,3.941,3.38,17.708,9.771,15.755,12.225,6.533,17.167,-1.956,5.493,26.857,17.88,17.461,4.392,10.073,26.074,6.738,5.665,2.408,15.088,3.635,22.25,10.703,7.375,-3.117,10.425,17.347,3.785,3.158,23.058,12.046,12.217,-5.217,22.399,21.457,7.817,1.524,6.13,19.415,4.064,29.306,19.073,0.945,27.912,14.622,-4.018,-3.573,18.052,-4.55,12.276,7.673,19.652,17.346,19.696,8.583,17.494,8.77,-1.417,12.161,13.303,22.127,8.856,9.137,19.044,8.038,23.93,12.344,7.132,7.837,3.686,16.081,14.22,15.632,14.23,11.175,10.376,9.746,21.354,9.675,18.253,2.313,23.908,14.091,16.602,18.381,13.811,0.831,6.711,5.342,37.42,22.336,1.509,21.852,11.363,3.619,10.055,19.473,18.949,4.395,13.008,14.786,17.204,12.389,18.117,1.615,0.534,14.986,4.874,38.221,11.379,12.187,6.124],[13.441,24.211,17.25,1.398,10.516,5.352,-3.658,11.335,9.089,3.728,6.095,18.391,25.517,17.546,4.825,5.256,5.736,21.755,9.339,-4.943,2.902,8.587,1.263,24.065,13.782,2.394,28.947,19.712,17.537,13.212,6.929,17.844,-4.852,19.652,11.446,-2.85,7.188,9.191,19.227,14.319,2.359,22.449,14.409,8.427,8.746,9.113,23.01,17.442,11.297,14.951,18.076,0.25,14.113,15.937,37.09,4.405,13.399,5.785,20.536,1.265,4.625,22.804,12.726,10.221,23.706,3.746,8.54,0.29,7.776,17.104,23.926,10.626,13.458,1.595,-4.768,4.589,24.449,9.816,6.76,14.665,4.034,3.172,16.892,9.664,15.775,12.158,6.578,16.966,-1.95,5.436,26.75,18.31,17.492,4.706,9.634,25.831,6.593,5.611,2.168,15.195,3.291,22.976,10.696,7.017,-3.178,10.306,17.246,3.683,2.654,23.004,12.797,12.374,-4.924,22.284,21.131,7.948,1.495,6.127,19.685,4.329,29.186,19.306,1.03,27.887,15.122,-4.425,-3.919,17.723,-3.825,12.239,7.808,20.009,16.449,19.819,8.317,17.31,8.55,-1.464,12.962,13.58,22.015,9.149,8.922,19.459,7.919,23.298,12.169,6.873,7.668,3.845,16.201,14.193,15.858,14.207,10.956,10.45,9.763,21.465,8.918,18.43,1.902,23.612,14.343,16.289,18.785,14.126,0.391,6.969,5.049,37.276,22.205,1.828,21.387,11.328,3.656,10.343,19.307,19.681,4.153,13.338,14.695,17.15,12.439,17.972,1.638,0.56,15.083,4.644,37.651,11.209,12.145,6.003],[13.491,24.44,17.246,1.516,10.457,5.421,-3.442,11.304,9.048,3.892,6.271,18.382,25.473,17.499,4.844,5.401,5.522,21.691,9.065,-4.964,2.96,8.49,1.222,23.852,13.58,2.534,29.032,19.738,17.614,13.343,6.713,17.502,-4.774,19.878,11.683,-2.913,7.026,9.173,19.057,14.293,2.396,22.618,14.416,8.406,8.819,8.851,23.15,17.683,11.355,15.055,18.255,0.148,14.017,15.988,37.205,4.396,13.478,5.771,20.795,1.172,4.35,22.485,12.598,10.031,23.769,3.856,8.47,0.019,7.768,17.971,23.846,10.76,13.164,1.496,-4.36,4.855,24.44,9.916,7.134,15.312,3.893,3.068,16.891,9.338,16.041,12.075,6.595,16.678,-1.812,5.514,26.779,18.441,17.634,4.788,9.961,25.792,6.937,5.449,1.993,15.177,3.451,23.198,10.616,7.186,-3.526,10.242,17.577,3.779,2.799,23.524,12.99,12.029,-4.894,22.46,21.362,7.673,0.94,6.011,19.927,4.505,29.144,19.183,1.152,27.904,15.036,-4.178,-3.883,17.284,-3.607,12.616,7.588,19.672,16.107,20.333,8.568,17.502,8.441,-1.86,12.823,13.02,22.026,9.447,7.916,19.392,8.011,23.747,11.96,6.811,7.766,4.03,15.879,14.297,16.05,13.724,11.635,10.093,10.043,21.333,8.491,18.916,2.103,23.334,14.858,16.199,18.348,14.04,0.065,7.138,5.013,37.066,21.653,1.498,21.15,11.076,3.111,10.206,19.714,19.788,4.279,13.03,15.212,17.434,12.261,17.598,1.632,1.139,14.988,5.01,37.923,10.825,12.134,5.962],[13.24,24.72,17.168,1.5,10.31,5.518,-3.195,11.282,8.981,4.057,6.551,18.424,25.327,17.642,4.89,5.644,5.396,21.555,8.907,-5.057,2.94,8.483,1.087,23.886,13.447,2.503,29.112,19.85,17.804,13.355,6.587,17.311,-4.743,20.115,11.714,-2.874,7.076,9.151,18.884,14.145,2.601,22.834,14.302,8.381,8.862,8.639,23.119,17.938,11.427,15.241,18.265,-0.051,13.971,16.097,37.236,4.382,13.62,5.654,21.084,1.074,4.206,22.434,12.471,9.92,23.965,3.451,8.256,-0.157,8.195,17.807,23.93,10.608,13.336,1.442,-3.931,4.65,24.847,9.899,7.234,14.742,4.035,3.187,17.444,9.069,15.661,11.915,6.858,16.693,-1.637,5.91,26.751,18.698,17.545,4.693,10.042,25.675,7.143,5.177,2.152,14.803,3.967,22.348,9.981,6.988,-3.537,10.128,17.74,4.197,3.471,23.581,12.581,11.78,-4.83,22.397,21.433,7.189,1.021,5.493,20.184,4.271,29.102,19.023,1.257,28.145,14.82,-4.187,-3.084,16.386,-4.279,12.884,6.99,19.846,15.841,20.293,8.446,17.225,8.209,-2.284,12.628,13.178,22.016,9.353,7.711,18.754,8.008,24.577,12.113,6.617,7.426,3.432,16.038,14.474,16.391,13.909,11.612,10.49,10.223,21.552,8.505,19.39,2.16,23.595,14.683,16.889,18.607,14.029,0.143,6.561,4.888,37.041,21.277,1.302,21.248,11.005,3.096,9.487,20.206,19.438,4.508,12.824,15.087,17.622,12.089,17.608,1.363,1.538,14.827,5.031,38.312,10.567,12.112,5.884],[12.834,25.076,17.054,1.315,10.045,5.702,-3.071,11.222,8.884,4.189,6.77,18.61,25.119,17.73,4.916,5.958,5.431,21.229,8.822,-5.142,3.024,8.52,1.001,24.019,13.49,2.543,29.117,19.924,17.826,13.246,6.352,17.144,-4.554,20.327,11.556,-2.796,7.103,9.191,18.779,14.084,2.738,23.079,14.162,8.393,8.998,8.539,22.99,18.133,11.47,15.249,18.065,-0.212,13.925,16.169,37.208,4.398,13.73,5.469,21.187,1.072,4.088,22.628,12.295,9.748,24.474,3.542,8.067,0.096,7.945,17.187,24.214,10.807,13.155,1.478,-3.433,5.548,24.822,9.674,7.565,13.95,4.022,3.319,17.787,9.021,15.471,11.81,6.503,16.832,-1.711,5.985,26.611,18.683,17.905,4.903,9.946,25.743,7.727,5.242,1.954,14.572,3.974,22.729,9.565,6.801,-3.473,10.02,17.806,4.693,2.977,23.395,12.203,11.824,-4.696,21.811,21.376,7.024,1.125,5.755,20.244,4.213,29.374,19.387,1.208,27.807,14.864,-4.422,-2.782,16.307,-4.522,12.323,7.448,20.672,16.188,19.661,8.39,17.005,8.45,-2.051,13.025,13.32,22.169,8.631,7.964,18.831,7.828,24.659,12.204,7.127,6.872,3.332,15.658,13.857,16.983,14.254,11.491,10.896,10.232,21.396,8.548,19.2,2.187,23.599,14.465,16.873,18.697,14.489,-0.186,6.465,4.748,36.911,21.714,1.256,21.543,11.092,3.265,10.002,20.586,19.794,4.427,12.847,15.155,17.451,12.162,17.727,1.311,1.406,14.657,4.614,38.27,10.915,12.205,5.63],[12.303,25.468,17.046,1.129,9.824,5.769,-3.018,11.065,8.868,4.217,6.963,18.906,25.043,17.674,4.951,6.316,5.595,21.034,8.702,-5.05,3.177,8.57,1.12,24.052,13.496,2.571,29.083,19.828,17.696,13.145,6.137,17.176,-4.305,20.506,11.297,-2.827,7.208,9.248,18.833,13.918,2.761,23.323,14.022,8.518,9.151,8.488,22.745,18.074,11.542,15.166,17.768,-0.358,13.952,16.159,37.144,4.45,13.81,5.31,21.139,1.221,3.961,22.997,12.151,9.814,24.344,4.051,7.388,-0.397,7.908,17.274,23.864,11.277,12.771,1.288,-3.61,6.173,25.538,9.499,8.077,13.825,4.065,3.136,17.268,9.014,15.624,11.481,6.561,17.294,-1.465,5.992,26.475,18.357,17.815,5.121,9.741,25.961,8.071,5.822,2.204,14.821,3.955,22.487,10.097,7.054,-3.303,9.802,17.357,5.479,2.821,23.303,12.114,12.07,-5.208,21.777,21.368,7.102,1.379,5.576,20.373,4.568,29.338,19.413,0.931,27.425,15.052,-3.854,-2.784,16.189,-3.877,12.086,7.559,20.803,16.423,20.428,8.441,17.081,8.919,-1.541,12.736,13.313,21.984,8.781,8.425,18.915,7.965,24.508,11.929,7.327,7.078,3.935,15.406,13.546,16.562,13.393,11.165,10.957,9.901,21.112,8.647,19.376,2.3,23.276,14.593,16.454,18.419,14.67,-0.661,6.323,4.688,37.234,22.325,0.704,21.554,10.623,3.345,9.813,20.149,20.04,4.415,12.866,14.876,17.426,11.968,17.134,1.396,1.165,14.444,4.848,38.665,10.749,12.303,5.54],[12.044,25.761,17.105,0.975,9.705,5.836,-2.966,10.948,8.786,4.15,7.134,19.136,25.075,17.465,5.001,6.719,5.898,21.08,8.672,-4.901,3.342,8.445,1.429,23.898,13.542,2.626,28.977,19.709,17.435,13.034,6.14,17.223,-4.085,20.583,11.077,-2.713,7.501,9.25,18.893,13.713,2.823,23.387,13.777,8.604,9.174,8.473,22.568,17.83,11.556,15.032,17.457,-0.524,13.935,16.125,37.294,4.564,13.788,5.303,20.978,1.197,3.952,23.131,12.096,9.957,24.688,4.02,7.542,-0.471,8.492,17.671,23.426,11.024,12.527,1.472,-3.847,6.239,26.047,9.331,8.466,13.653,4.051,3.088,16.635,9.349,15.77,11.252,6.832,17.803,-1.395,5.809,26.303,18.412,17.696,5.376,9.294,25.635,8.585,5.884,2.404,15.04,4.321,22.19,10.137,7.259,-3.181,9.915,17.423,5.814,3.728,23.213,12.433,11.987,-5.649,21.859,21.147,6.997,0.712,4.77,20.506,4.773,29.069,18.607,1.173,27.843,14.994,-3.748,-2.969,16.83,-3.465,12.152,6.761,20.616,16.679,20.024,8.858,17.311,8.365,-1.077,12.198,13.076,22.193,9.448,8.523,18.68,8.235,24.706,11.922,6.953,7.679,4.16,14.979,13.933,16.168,13.423,11.336,10.713,9.712,20.91,8.223,18.774,2.276,23.0,14.486,16.526,18.373,14.328,-0.736,5.9,4.209,37.434,22.894,1.486,21.799,10.612,3.23,9.45,19.51,20.03,4.437,12.711,14.462,17.563,12.024,16.799,1.255,1.882,14.127,4.932,38.418,10.705,12.55,5.674],[12.084,26.101,17.075,0.934,9.645,5.824,-2.832,10.845,8.842,4.017,7.308,19.254,25.149,17.212,5.081,7.147,6.141,20.96,8.694,-4.8,3.488,8.263,1.615,23.647,13.7,2.936,28.891,19.698,17.245,12.883,6.132,17.254,-4.028,20.349,10.98,-2.519,7.626,9.351,18.763,13.606,2.932,23.376,13.618,8.509,9.053,8.521,22.612,17.553,11.551,14.94,17.288,-0.743,13.795,15.932,37.586,4.704,13.667,5.241,20.829,1.241,3.89,23.125,12.13,10.093,24.815,3.72,7.656,-0.101,8.182,17.829,23.435,10.304,12.242,1.308,-3.656,5.93,25.615,9.143,8.745,13.489,4.461,3.321,17.456,9.969,15.868,11.128,7.05,17.847,-1.801,5.865,26.32,18.546,17.366,5.808,9.105,25.281,8.692,6.07,2.409,14.794,4.215,22.679,10.089,7.634,-2.942,9.774,17.291,5.81,3.776,23.107,12.48,12.039,-5.85,21.354,20.897,6.926,0.617,5.142,20.302,4.805,29.439,18.193,1.587,27.91,14.531,-3.794,-2.83,18.031,-3.064,11.745,7.05,20.334,16.625,20.257,8.673,17.041,8.46,-0.906,12.207,12.617,23.018,9.633,8.547,18.658,8.215,24.773,12.125,7.058,7.282,3.984,14.541,13.718,15.849,13.573,11.736,10.49,10.213,21.342,8.218,18.499,2.398,22.95,14.287,16.195,18.046,14.296,-0.395,6.026,3.904,37.678,22.847,1.795,21.887,11.137,3.096,10.046,19.925,19.776,4.469,12.188,14.819,17.314,12.058,16.59,0.913,1.763,13.723,5.055,38.019,10.775,12.706,5.444],[12.267,26.327,17.069,0.976,9.803,5.92,-2.671,10.695,8.933,3.94,7.458,19.205,25.302,16.848,5.281,7.296,6.303,20.688,8.646,-4.661,3.49,8.213,1.553,23.434,13.638,3.252,28.94,19.644,17.155,12.594,6.174,17.361,-4.045,19.988,10.961,-2.316,7.67,9.461,18.554,13.477,3.014,23.398,13.615,8.479,8.92,8.568,22.72,17.251,11.707,14.904,17.277,-0.832,13.714,15.504,37.838,4.776,13.511,4.974,20.886,1.269,3.797,23.158,12.266,10.411,25.262,3.639,7.492,-0.44,7.953,17.535,23.826,9.885,12.605,1.038,-3.56,5.853,26.2,9.421,8.817,13.271,4.38,3.436,18.243,9.588,15.741,11.397,6.693,17.661,-1.422,5.743,26.621,18.751,17.105,6.019,9.688,25.13,8.763,6.125,2.564,15.035,3.82,22.255,9.954,7.717,-3.159,9.239,16.915,5.894,3.108,22.938,11.762,12.236,-5.533,21.234,20.976,6.926,1.549,5.705,20.308,5.195,29.487,18.644,1.902,27.447,14.551,-3.884,-2.713,18.321,-3.294,11.809,7.248,19.66,16.832,20.897,8.724,16.795,9.013,-0.958,12.358,12.722,23.783,9.371,8.23,18.718,8.006,24.909,11.979,7.292,7.204,3.77,14.256,13.591,15.836,12.995,11.606,10.577,10.324,21.263,8.321,18.466,2.597,23.067,14.003,16.509,17.994,14.098,-0.402,6.403,4.16,37.642,22.015,1.422,21.933,10.789,3.404,9.881,20.426,19.35,5.029,12.324,14.805,16.916,11.866,16.719,0.563,1.509,13.542,5.021,38.645,10.993,12.274,5.46],[12.428,26.479,17.096,0.976,10.053,6.068,-2.531,10.734,8.786,3.92,7.575,19.15,25.501,16.498,5.514,7.197,6.345,20.372,8.547,-4.539,3.453,8.26,1.448,23.374,13.44,3.335,29.031,19.575,17.134,12.373,6.232,17.638,-4.063,19.723,11.209,-2.184,7.817,9.482,18.431,13.281,2.993,23.584,13.632,8.387,8.877,8.662,22.772,17.107,11.917,14.859,17.448,-0.835,13.736,15.109,38.072,4.98,13.415,4.718,20.919,1.277,3.809,23.188,12.322,10.545,25.394,3.417,7.541,-0.246,8.557,16.665,24.468,9.841,13.056,0.853,-3.759,6.347,26.514,9.282,8.717,13.637,4.189,3.829,17.702,9.285,15.64,11.732,6.655,17.508,-1.113,5.747,27.171,18.641,16.278,6.143,9.774,24.661,9.002,6.144,2.465,15.022,4.021,21.35,9.684,7.849,-3.1,9.444,16.895,5.915,3.386,22.534,11.227,11.767,-5.271,21.445,21.147,6.465,1.599,5.168,20.092,5.171,29.663,18.438,1.905,27.225,13.978,-3.501,-2.855,17.13,-3.703,11.93,7.192,18.92,16.922,20.215,9.118,16.739,8.815,-1.251,12.884,12.948,23.701,8.762,8.267,18.695,8.061,24.76,12.216,6.923,7.598,4.062,14.728,13.196,15.528,12.824,11.216,10.63,9.987,21.146,8.295,17.966,2.737,22.914,13.414,16.717,18.609,14.25,-0.89,5.774,4.587,37.544,21.94,1.573,22.464,10.957,3.775,10.518,19.863,19.57,4.636,13.223,14.548,16.492,11.724,16.655,0.897,1.596,13.156,5.037,38.405,11.589,12.16,5.284],[12.556,26.514,17.126,0.911,10.367,6.128,-2.49,10.683,8.872,3.889,7.604,19.033,25.753,16.142,5.745,7.131,6.394,20.14,8.438,-4.482,3.524,8.32,1.318,23.317,13.289,3.307,29.171,19.429,16.978,12.313,6.224,17.723,-4.058,19.446,11.468,-2.053,7.889,9.501,18.419,13.214,2.922,23.726,13.606,8.065,8.82,8.8,22.703,16.931,12.061,14.912,17.564,-0.76,13.78,14.82,38.164,5.1,13.429,4.477,20.756,1.467,3.951,23.501,12.419,10.648,25.109,3.401,7.502,0.497,8.376,15.8,24.764,10.594,12.685,0.665,-3.518,6.485,26.239,8.847,9.267,14.078,4.479,3.888,17.346,9.299,15.58,12.026,6.944,17.563,-1.356,5.584,27.409,18.469,16.495,6.634,9.319,24.438,8.822,6.472,2.061,14.491,4.648,21.341,9.712,7.812,-3.438,9.692,17.35,5.768,3.33,22.037,10.953,11.848,-4.855,21.232,20.848,6.72,1.11,5.207,19.805,4.708,29.497,17.697,2.022,27.395,13.757,-3.612,-2.839,16.353,-3.623,11.893,7.034,19.083,17.483,19.413,8.775,16.896,9.045,-1.385,12.865,13.042,23.034,8.746,8.129,18.38,8.19,25.114,12.239,6.986,7.528,4.215,14.837,13.258,15.369,13.197,11.833,10.592,9.887,21.47,8.48,18.103,2.659,22.989,13.182,16.334,18.737,14.655,-1.296,4.927,5.053,37.758,22.301,1.422,22.45,11.556,3.689,10.779,19.731,19.867,4.487,12.9,14.426,16.07,11.968,16.646,0.965,1.674,12.997,5.031,38.265,10.953,12.304,4.899],[12.502,26.313,17.227,0.861,10.687,6.19,-2.464,10.637,9.014,3.777,7.714,18.919,25.919,15.994,5.939,7.18,6.543,20.11,8.415,-4.416,3.676,8.402,1.143,23.233,13.171,3.252,29.348,19.16,16.719,12.143,6.226,17.728,-3.958,19.109,11.415,-2.076,7.905,9.512,18.524,13.256,2.844,23.714,13.648,7.723,8.797,8.87,22.63,16.836,12.134,14.988,17.507,-0.728,13.892,14.638,38.205,5.137,13.474,4.198,20.66,1.592,4.19,23.819,12.54,10.73,25.151,3.457,7.572,0.915,8.144,15.862,24.327,10.345,12.686,0.839,-3.456,6.216,26.61,8.978,9.099,13.687,4.854,4.287,17.252,9.27,15.639,11.943,7.169,17.45,-1.121,5.62,27.178,18.049,16.695,6.463,9.263,24.446,8.336,6.569,2.064,14.596,4.656,21.644,9.844,7.696,-3.772,9.822,17.127,5.75,3.203,21.663,11.447,11.938,-5.113,20.631,20.596,7.072,1.025,5.468,19.986,5.055,29.396,17.774,2.023,27.737,13.874,-3.85,-2.714,16.464,-3.249,12.098,7.424,19.706,17.573,18.918,8.533,16.759,9.279,-1.102,12.616,12.734,22.58,8.455,7.716,18.39,8.241,25.034,12.474,7.435,7.447,3.734,14.961,13.279,15.476,13.159,12.1,10.578,9.543,21.165,8.753,18.18,2.533,22.835,13.115,16.569,18.159,14.705,-1.147,4.519,5.711,37.415,22.829,1.953,22.467,11.058,3.444,10.251,20.112,19.363,4.929,12.821,14.604,16.077,12.199,16.898,0.769,1.972,13.182,4.824,38.388,10.796,12.55,5.08],[12.372,26.231,17.196,0.862,10.796,6.266,-2.381,10.684,9.015,3.68,7.8,18.764,25.856,16.012,6.127,7.072,6.728,20.19,8.513,-4.437,3.882,8.5,1.04,23.077,13.239,3.204,29.457,18.923,16.525,11.971,6.271,17.591,-3.767,18.765,11.273,-2.153,7.951,9.492,18.658,13.287,2.726,23.555,13.748,7.511,8.888,8.953,22.429,16.847,12.105,15.042,17.365,-0.785,14.077,14.617,38.199,5.137,13.584,4.011,20.826,1.732,4.397,23.979,12.555,10.645,24.689,3.294,7.653,1.022,8.479,16.565,24.216,9.62,12.807,0.846,-3.481,5.905,26.353,9.393,8.481,13.397,4.709,4.312,17.535,9.267,15.514,12.139,7.147,17.668,-0.782,5.454,27.285,17.763,16.295,6.425,9.574,24.498,8.865,6.593,2.121,14.638,4.356,21.781,9.916,8.092,-3.551,9.977,16.472,5.648,3.671,21.54,11.566,11.663,-5.771,20.713,20.491,6.906,1.126,5.624,19.698,5.53,30.04,18.067,1.708,28.227,13.892,-3.771,-2.204,17.861,-3.028,12.173,6.951,19.531,17.414,18.657,9.215,16.962,9.116,-1.414,12.628,12.937,22.777,8.462,7.523,18.602,8.016,24.975,12.776,7.142,7.892,3.547,15.007,13.331,15.515,12.725,11.684,10.559,9.072,20.898,8.761,17.958,2.669,22.975,13.066,16.805,17.806,14.578,-0.598,4.3,5.622,37.084,23.227,2.302,22.743,11.088,4.042,11.177,20.241,19.152,5.217,12.605,14.414,16.029,12.29,16.232,0.584,2.053,12.936,4.864,38.093,11.089,12.652,5.084],[12.412,26.211,17.01,0.881,10.858,6.247,-2.296,10.675,9.11,3.646,7.699,18.645,25.782,16.03,6.198,6.952,6.923,20.267,8.633,-4.576,3.977,8.559,1.101,22.964,13.387,3.265,29.435,18.734,16.594,11.963,6.32,17.601,-3.588,18.417,11.364,-2.152,7.907,9.598,18.727,13.343,2.593,23.452,13.839,7.509,9.024,9.042,22.228,16.914,11.953,15.046,17.066,-0.87,14.22,14.67,38.015,5.166,13.623,3.88,21.122,2.068,4.251,24.054,12.51,10.673,24.625,3.178,7.853,0.884,8.903,17.118,24.365,9.958,12.691,0.533,-3.308,5.917,26.102,9.09,8.118,13.802,4.366,4.621,17.761,9.337,15.748,12.046,7.27,17.73,-0.726,5.482,27.354,17.637,16.294,7.062,9.706,24.307,8.599,6.886,1.556,14.771,4.447,21.363,9.781,8.234,-3.387,9.915,16.025,5.795,3.079,21.576,11.194,11.887,-6.197,21.364,20.17,6.847,0.959,5.605,18.99,5.576,30.08,17.755,2.038,28.39,13.522,-3.668,-2.241,17.911,-2.85,11.872,6.905,18.554,16.754,18.666,9.284,17.084,9.161,-2.163,12.706,13.364,23.216,9.06,7.695,18.52,8.048,25.156,11.84,6.998,7.933,3.486,15.275,13.151,15.37,13.044,11.845,10.804,8.943,20.745,8.64,17.954,3.088,22.709,13.184,16.659,18.13,14.536,-0.738,4.336,5.109,37.658,22.956,1.842,23.139,11.639,4.009,10.845,19.95,19.819,4.561,12.73,14.685,16.05,12.399,15.887,0.751,1.858,13.173,5.355,38.267,10.991,12.613,4.897],[12.527,26.146,16.938,0.795,10.818,6.168,-2.16,10.573,9.342,3.681,7.472,18.637,25.718,16.035,6.288,6.924,7.125,20.216,8.687,-4.755,3.97,8.606,1.107,22.924,13.563,3.356,29.32,18.534,16.631,12.102,6.376,17.682,-3.64,18.055,11.67,-2.169,7.823,9.731,18.538,13.406,2.489,23.536,14.03,7.527,9.273,9.06,22.309,17.037,11.605,15.077,16.813,-0.983,14.337,14.738,37.783,5.165,13.641,3.757,21.308,2.324,4.046,24.04,12.601,10.72,24.985,2.973,8.057,0.56,8.939,16.72,24.659,10.682,12.626,0.774,-3.047,5.64,26.551,8.818,7.931,14.063,4.417,4.679,17.793,9.426,15.955,11.95,6.871,17.427,-0.96,4.968,27.304,17.488,16.709,6.703,9.779,24.155,8.296,6.782,1.583,15.025,4.476,21.46,9.989,8.251,-3.471,9.527,16.512,5.411,2.87,21.394,10.921,12.163,-6.277,21.218,20.113,6.835,0.811,5.378,18.748,5.421,30.09,17.826,2.344,28.135,13.548,-3.467,-2.501,17.325,-2.948,11.47,7.597,18.27,16.462,18.886,9.127,16.861,9.052,-2.785,13.112,12.769,23.182,9.235,8.097,18.273,8.309,25.245,11.808,7.21,7.499,3.618,15.25,13.338,15.865,13.611,11.526,10.811,9.077,20.98,8.686,18.243,3.24,22.1,13.241,16.83,18.282,15.036,-1.362,4.796,4.98,37.713,22.646,2.093,23.86,11.355,3.939,9.864,20.185,20.408,4.074,13.058,14.887,16.17,12.451,16.016,0.858,1.884,14.096,5.014,38.174,10.83,12.211,4.848],[12.596,26.167,17.06,0.604,10.571,6.011,-2.09,10.566,9.563,3.699,7.184,18.546,25.768,16.131,6.291,6.742,7.252,20.134,8.828,-4.898,3.889,8.573,1.003,22.83,13.828,3.477,29.213,18.375,16.618,12.291,6.377,17.806,-3.825,17.985,11.783,-2.244,7.896,9.786,18.333,13.435,2.475,23.55,14.147,7.461,9.537,8.975,22.413,17.301,11.176,15.393,16.753,-1.192,14.402,14.839,37.553,5.147,13.752,3.745,21.44,2.405,3.911,24.063,12.739,10.598,24.807,2.971,8.063,0.49,8.804,15.657,24.61,10.616,12.87,1.192,-3.035,5.595,26.487,8.779,8.107,13.452,4.162,5.137,17.315,9.016,15.557,11.737,6.725,16.996,-0.626,4.639,27.102,18.249,16.157,6.525,9.846,24.054,8.379,6.978,2.06,15.104,4.664,21.679,10.272,8.564,-3.319,9.941,16.776,5.137,3.5,21.245,11.083,12.237,-6.33,20.688,20.138,6.88,0.955,5.867,18.815,5.339,30.159,18.089,1.999,27.767,13.838,-3.324,-2.18,17.111,-3.036,12.19,7.235,18.204,16.185,19.054,8.844,16.587,9.229,-3.192,13.229,12.971,22.909,9.163,7.727,18.314,8.617,25.128,12.446,7.023,7.731,3.807,15.037,13.735,15.892,13.31,11.127,11.271,9.02,21.088,9.029,18.424,3.153,22.758,13.214,16.969,18.135,15.788,-1.564,4.839,4.943,37.287,22.572,2.266,24.355,11.391,4.247,10.505,20.622,20.09,4.481,13.054,14.493,16.115,12.921,15.811,0.603,2.435,13.676,4.544,37.869,10.807,12.355,4.676],[12.513,26.143,17.177,0.362,10.259,5.664,-2.128,10.615,9.667,3.721,7.063,18.453,25.924,16.063,6.224,6.439,7.322,20.217,9.003,-5.043,3.874,8.662,1.029,22.73,13.974,3.611,29.205,18.376,16.589,12.415,6.387,17.863,-3.771,18.2,11.872,-2.383,7.966,9.772,18.363,13.363,2.53,23.332,14.014,7.262,9.668,9.019,22.466,17.314,10.884,15.643,16.75,-1.527,14.562,14.844,37.289,5.19,13.846,3.827,21.456,2.475,3.868,24.058,12.864,10.558,24.681,2.917,8.529,0.835,8.714,15.782,24.277,10.144,12.862,1.141,-2.953,5.307,26.417,9.138,7.913,13.911,4.048,5.913,17.111,8.93,15.564,11.244,7.011,16.777,-0.357,4.789,27.004,18.195,16.778,6.707,10.061,23.792,8.068,6.966,1.465,15.271,4.764,21.548,10.18,8.284,-3.374,9.986,16.769,5.44,3.949,21.358,11.436,12.362,-5.843,21.063,19.757,7.16,0.72,5.846,19.207,5.381,29.784,18.018,2.249,28.107,14.023,-2.912,-2.429,17.498,-3.083,12.642,7.408,18.263,16.455,19.267,9.282,16.797,9.415,-3.439,13.492,12.945,22.816,9.839,7.491,18.06,8.227,24.927,12.006,7.299,8.066,3.727,15.117,13.593,15.802,13.338,11.009,11.41,8.774,21.056,8.405,18.491,3.022,22.981,13.289,17.12,17.739,16.127,-1.568,4.371,4.901,36.839,22.893,2.237,24.271,11.845,4.217,10.667,20.264,20.239,5.187,13.202,14.878,16.243,13.26,15.911,0.321,2.555,13.697,4.361,37.855,11.278,13.088,4.637],[12.477,26.057,17.252,0.131,10.07,5.486,-2.205,10.646,9.694,3.689,7.051,18.324,25.957,16.102,6.167,6.241,7.132,20.461,9.159,-5.117,3.861,8.756,1.004,22.659,13.902,3.683,29.342,18.485,16.647,12.459,6.516,17.91,-3.582,18.512,12.085,-2.553,7.995,9.771,18.593,13.242,2.434,23.079,13.733,7.02,9.733,9.138,22.461,17.255,10.79,15.775,16.692,-1.803,14.814,14.775,37.053,5.323,13.948,3.804,21.419,2.545,3.898,24.028,13.043,10.767,24.78,2.767,9.216,1.129,8.769,16.605,24.32,10.101,12.098,0.71,-2.73,5.272,26.41,9.043,7.525,14.033,3.837,7.112,17.122,8.5,15.978,11.486,6.527,16.835,-0.544,5.274,27.237,17.554,16.626,6.024,10.431,23.906,7.72,6.465,1.126,15.294,4.379,21.636,10.254,8.56,-3.387,10.212,16.785,4.928,4.046,21.484,11.437,12.345,-5.697,21.535,19.786,7.489,0.692,5.587,19.237,5.234,30.144,17.999,2.729,28.526,13.965,-2.23,-2.477,17.631,-2.766,12.621,7.688,18.237,17.341,19.626,9.684,16.897,9.531,-4.009,13.477,12.513,22.918,9.859,7.374,18.175,8.192,24.57,10.986,7.641,7.855,3.883,15.006,13.115,15.973,13.266,10.647,11.269,8.593,21.162,8.362,18.194,3.116,22.828,13.378,17.482,18.056,16.071,-1.805,4.246,4.874,36.644,23.456,2.157,24.298,12.001,4.445,9.855,20.034,20.803,4.72,12.934,15.243,16.28,13.252,15.883,-0.157,2.137,13.816,4.603,37.926,11.154,13.584,4.834],[12.308,25.943,17.279,-0.081,9.922,5.451,-2.23,10.525,9.87,3.636,7.107,18.135,26.06,16.223,6.146,5.916,6.829,20.649,9.24,-5.106,3.741,8.889,0.849,22.678,13.752,3.752,29.636,18.563,16.856,12.364,6.64,17.965,-3.325,18.769,12.307,-2.695,8.039,9.86,18.723,13.049,2.296,22.997,13.429,6.836,9.703,9.236,22.545,17.245,10.514,15.873,16.577,-1.981,15.102,14.733,36.76,5.415,14.099,3.691,21.496,2.464,3.981,24.037,13.18,10.906,24.64,2.747,9.59,1.166,8.67,16.731,24.517,10.131,12.174,0.064,-3.116,5.331,26.497,8.946,7.029,13.71,3.682,8.016,17.59,8.581,16.662,11.517,6.399,17.001,-0.58,5.442,27.296,17.307,16.37,6.348,10.468,24.208,7.558,6.198,1.631,14.874,4.526,21.92,10.645,8.518,-3.488,10.365,16.604,4.437,3.672,21.464,11.488,12.212,-6.163,21.456,20.212,7.216,0.801,5.815,19.267,5.203,30.149,18.131,2.406,28.673,14.102,-1.889,-2.061,17.441,-2.245,12.849,7.728,18.4,18.539,20.055,9.779,16.884,9.437,-4.244,13.645,12.444,22.76,9.759,7.38,18.804,8.445,24.644,11.259,7.394,7.41,3.749,14.849,13.072,15.73,12.989,11.138,11.139,8.416,21.061,9.552,18.385,2.987,22.366,13.297,17.531,18.041,15.484,-2.281,4.367,4.968,37.38,23.596,1.972,24.474,11.678,4.779,10.125,20.297,20.377,4.146,13.352,15.379,16.2,13.304,15.624,-0.239,2.324,13.65,4.842,37.574,11.369,13.225,4.806],[12.233,25.872,17.485,-0.219,9.96,5.409,-2.179,10.403,10.172,3.537,7.157,18.083,26.174,16.234,6.372,5.632,6.551,20.74,9.336,-5.082,3.677,8.955,0.901,22.793,13.625,3.683,29.914,18.599,17.016,12.355,6.561,18.149,-3.051,18.841,12.391,-2.707,8.026,9.998,18.62,12.864,2.192,23.103,13.267,6.816,9.684,9.424,22.604,17.286,10.314,15.982,16.454,-1.861,15.331,14.646,36.568,5.475,14.063,3.521,21.55,2.225,4.045,24.048,13.183,11.029,24.534,3.227,9.432,0.647,9.026,16.196,24.734,9.916,12.765,-0.668,-3.597,5.679,26.349,8.909,6.778,13.8,3.72,7.907,18.132,8.212,16.36,11.052,6.751,16.658,-0.738,5.234,27.321,17.825,17.041,6.084,10.092,24.173,7.251,6.002,1.428,14.869,4.656,22.178,10.612,7.953,-3.88,9.659,16.558,4.545,3.213,21.54,11.071,12.018,-6.618,21.473,19.755,7.107,0.07,6.074,19.588,5.209,30.152,18.745,2.647,28.499,14.225,-2.0,-1.985,17.336,-2.106,13.216,7.731,18.638,18.61,19.889,9.499,16.788,8.894,-4.049,13.789,11.973,22.623,9.895,7.445,19.096,8.619,24.859,11.366,7.371,7.687,3.711,14.381,13.405,15.581,12.768,10.548,11.248,8.263,20.832,9.316,18.557,2.574,22.596,13.225,17.404,17.474,15.191,-2.488,4.156,5.235,37.812,22.996,2.166,24.771,11.644,4.784,11.147,20.907,19.927,4.162,13.465,15.468,16.12,13.841,15.584,-0.161,2.245,14.25,4.578,37.38,11.972,12.745,4.352],[12.423,25.799,17.733,-0.407,10.065,5.46,-2.154,10.291,10.436,3.459,7.25,18.223,26.311,16.222,6.46,5.497,6.353,20.886,9.302,-5.157,3.743,8.866,0.969,22.92,13.581,3.609,30.023,18.55,17.137,12.554,6.473,18.386,-2.891,18.692,12.397,-2.637,7.874,10.044,18.394,12.675,2.201,23.145,13.224,6.933,9.783,9.492,22.589,17.533,10.02,16.089,16.375,-1.594,15.627,14.52,36.584,5.502,13.985,3.379,21.579,1.945,4.064,24.087,13.087,11.091,24.426,2.858,9.266,0.152,9.566,15.792,24.714,9.761,12.7,-0.937,-3.526,5.85,26.119,8.876,6.653,13.454,3.859,8.281,18.475,8.37,16.164,10.467,6.517,16.867,-0.729,5.308,27.385,17.691,16.908,6.342,10.347,23.766,7.066,5.858,1.424,15.061,4.436,22.264,10.603,6.972,-4.181,9.471,16.576,4.382,2.662,21.426,11.297,12.165,-6.839,21.713,19.638,7.044,0.104,5.719,19.748,5.255,30.334,18.66,2.683,28.737,14.137,-2.31,-1.906,17.865,-2.352,12.9,7.428,18.893,17.504,19.856,9.513,16.53,9.429,-3.952,13.692,11.835,22.537,9.594,7.455,18.403,8.659,24.775,10.968,7.682,7.915,3.74,14.145,13.21,15.966,12.859,10.025,11.32,8.599,21.119,9.006,18.235,1.727,23.348,13.154,17.447,17.58,14.983,-2.093,3.615,5.171,37.688,22.59,2.158,24.584,11.826,4.177,11.661,20.462,20.446,4.682,12.431,15.596,16.1,14.338,15.527,0.256,1.905,14.442,4.502,37.097,11.781,12.419,4.485],[12.615,25.638,17.957,-0.624,10.144,5.599,-2.214,10.214,10.593,3.335,7.332,18.45,26.368,16.161,6.57,5.472,6.125,20.989,9.149,-5.374,3.782,8.571,1.061,22.962,13.585,3.448,30.028,18.568,17.261,12.67,6.401,18.584,-2.91,18.531,12.508,-2.631,7.966,10.028,18.101,12.516,2.131,23.069,13.237,7.158,9.76,9.558,22.687,17.754,9.576,16.07,16.395,-1.323,15.886,14.374,36.631,5.479,13.871,3.399,21.608,1.722,4.077,24.102,12.912,11.056,24.363,2.6,9.377,-0.204,9.799,15.753,24.594,10.272,12.509,-0.698,-3.486,5.9,26.37,8.531,6.577,14.048,3.82,8.224,18.21,8.215,16.142,10.695,6.444,17.379,-0.546,5.011,27.508,17.515,16.256,6.525,10.484,23.935,7.002,5.274,1.231,15.022,4.567,22.244,10.353,7.111,-4.229,9.712,17.189,4.103,3.401,21.261,11.987,12.361,-7.179,21.606,19.827,6.794,1.196,5.572,19.692,5.207,30.419,18.525,2.679,28.782,14.439,-2.665,-1.509,17.849,-2.326,12.871,7.697,18.519,17.142,19.875,9.527,16.633,9.513,-3.384,13.495,12.226,22.166,9.656,7.318,17.597,8.688,24.7,10.506,7.196,8.066,3.96,13.992,12.845,16.489,13.077,10.245,11.284,8.954,21.193,9.073,18.479,1.453,22.905,12.953,17.884,18.009,15.068,-1.063,3.529,5.073,37.132,22.723,2.029,24.499,11.69,4.11,11.053,19.963,21.213,4.726,12.566,16.1,15.947,14.745,15.625,0.28,1.748,14.439,4.404,37.224,11.59,12.798,4.381],[12.67,25.536,18.049,-0.756,10.015,5.675,-2.389,10.25,10.737,3.244,7.316,18.672,26.319,16.008,6.631,5.415,5.915,20.984,9.033,-5.762,3.85,8.304,1.225,22.87,13.724,3.418,29.925,18.697,17.38,12.858,6.378,18.69,-2.923,18.409,12.587,-2.602,8.032,9.937,17.82,12.512,1.969,22.956,13.278,7.352,9.717,9.779,22.656,17.927,9.352,16.026,16.52,-1.091,16.059,14.237,36.615,5.432,13.866,3.504,21.763,1.669,4.098,24.061,12.759,10.923,24.38,1.984,9.653,-0.37,9.706,16.129,24.803,10.475,12.852,-0.781,-3.335,5.869,26.179,8.408,6.741,14.309,4.034,8.545,17.805,8.443,16.604,11.097,6.543,17.707,-1.038,4.45,27.439,17.926,16.782,6.402,9.984,24.402,6.992,5.588,1.425,15.037,4.681,22.182,10.181,7.586,-4.113,9.776,17.639,4.209,3.969,21.514,12.049,12.16,-7.124,21.818,19.833,6.641,0.889,5.885,19.355,5.352,30.402,18.999,1.953,28.657,14.418,-2.655,-1.616,17.962,-2.32,13.184,7.832,18.034,17.373,19.452,9.836,16.26,9.524,-3.558,14.154,12.12,21.784,9.023,7.569,17.931,8.52,24.801,10.139,7.357,8.132,3.785,14.151,12.775,16.755,12.887,9.924,11.034,8.998,21.049,9.219,19.175,1.482,22.714,12.626,17.613,18.174,15.245,-0.861,4.08,5.148,36.901,23.427,1.927,24.476,11.65,4.518,10.409,20.175,21.247,4.208,13.009,16.145,15.772,15.145,15.556,0.64,1.596,14.01,4.683,37.365,11.556,12.979,4.773],[12.63,25.493,18.077,-0.897,9.838,5.765,-2.528,10.209,10.835,3.133,7.227,18.9,26.2,16.039,6.653,5.373,5.907,21.08,9.065,-6.09,4.01,8.279,1.283,22.794,13.875,3.31,29.748,18.781,17.529,13.029,6.496,18.74,-2.928,18.344,12.662,-2.601,8.155,9.921,17.607,12.631,1.79,22.87,13.2,7.419,9.57,9.981,22.443,18.123,9.347,15.932,16.623,-0.92,16.142,14.248,36.618,5.365,13.968,3.717,22.014,1.696,4.244,23.874,12.624,10.695,24.305,1.802,10.333,-0.653,9.623,16.325,24.812,9.91,12.862,-0.729,-3.705,5.727,25.776,8.802,6.681,13.782,4.125,8.009,17.405,8.315,16.98,11.282,6.818,17.4,-1.099,3.895,27.242,18.454,16.805,6.253,10.045,24.57,6.896,5.765,1.928,15.151,4.716,22.624,10.406,7.661,-4.415,9.491,17.46,4.185,3.784,21.811,12.029,12.219,-6.918,21.863,20.262,6.66,0.168,5.61,19.451,5.322,30.107,19.06,2.011,28.509,14.648,-1.965,-1.853,18.257,-2.31,13.342,7.363,17.562,17.69,18.964,9.842,15.983,9.268,-3.961,14.158,11.86,21.793,8.49,7.974,18.706,8.265,24.365,10.51,7.325,8.449,3.323,14.324,12.784,16.856,13.089,9.556,10.99,9.038,20.725,9.427,19.129,1.507,22.584,12.651,17.576,18.218,14.877,-1.446,4.585,5.24,37.079,24.405,1.536,24.913,12.039,4.469,10.81,21.071,20.756,4.307,12.702,16.098,15.666,15.624,15.469,0.83,1.683,13.856,4.53,37.194,11.861,12.783,5.085],[12.495,25.477,18.02,-1.145,9.906,5.939,-2.528,10.057,10.921,3.091,7.111,19.055,26.125,16.153,6.537,5.299,6.079,21.349,9.274,-6.296,4.069,8.459,1.175,22.902,14.037,3.039,29.514,18.992,17.649,13.144,6.415,18.891,-2.982,18.22,12.657,-2.553,8.183,9.953,17.619,12.686,1.722,22.867,13.075,7.402,9.307,10.099,22.059,18.175,9.425,16.021,16.647,-0.98,16.074,14.4,36.612,5.344,14.059,4.014,22.213,1.67,4.446,23.923,12.605,10.623,23.94,1.598,10.43,-1.1,9.455,16.398,24.336,9.996,13.101,-0.408,-4.107,5.511,25.689,8.845,6.867,13.267,4.185,7.541,17.702,8.317,17.088,11.149,7.074,17.327,-1.113,3.283,27.048,18.81,16.372,6.217,10.003,24.527,6.837,5.694,2.075,15.094,4.861,22.812,10.823,7.32,-4.491,9.428,17.398,3.979,3.322,21.507,12.015,12.386,-7.063,21.69,20.294,6.699,0.038,6.131,19.925,5.134,29.607,19.112,2.716,28.776,14.869,-1.757,-2.003,17.963,-2.607,13.599,7.507,17.56,17.892,19.099,9.385,15.798,9.714,-3.57,13.636,11.449,21.765,8.686,7.883,18.382,8.582,24.382,10.843,7.325,8.703,3.441,14.145,13.051,16.895,13.309,9.74,10.331,9.201,20.269,9.386,19.219,0.96,22.342,13.158,17.359,18.206,14.535,-1.554,4.757,5.616,37.352,24.488,1.882,24.394,11.7,3.995,9.918,21.223,20.938,4.526,12.355,15.763,15.955,16.067,15.642,0.524,1.562,13.829,4.039,37.021,11.815,12.996,4.524],[12.348,25.438,17.982,-1.523,10.036,6.156,-2.496,10.048,10.934,3.045,7.015,19.189,26.08,16.227,6.421,5.162,6.143,21.587,9.367,-6.341,4.031,8.639,1.033,23.057,14.196,2.869,29.396,19.28,17.783,13.225,6.306,19.036,-3.117,18.089,12.448,-2.4,8.189,9.974,17.628,12.567,1.684,22.928,12.962,7.51,9.21,10.156,21.605,18.131,9.586,16.105,16.623,-1.239,15.87,14.71,36.633,5.309,14.143,4.325,22.217,1.613,4.582,24.16,12.763,10.526,23.936,1.483,10.4,-1.222,9.711,16.329,24.51,10.254,12.716,-0.945,-4.168,5.333,25.675,8.258,7.362,13.577,4.458,6.704,17.696,8.131,16.803,10.716,7.155,17.595,-1.108,3.367,27.293,18.716,16.56,5.981,9.725,24.153,6.644,6.135,2.008,15.305,4.649,22.839,10.831,7.879,-4.757,9.511,17.326,4.054,2.814,21.412,12.412,12.502,-7.327,21.694,20.298,6.803,0.134,5.636,20.169,5.029,29.639,19.286,2.185,28.459,14.762,-1.974,-2.117,17.796,-2.657,13.906,7.073,17.997,18.259,19.357,8.912,15.954,9.65,-3.147,13.437,11.471,21.993,8.423,7.599,17.686,9.149,24.863,10.507,7.604,8.493,3.363,14.214,12.962,16.808,13.021,9.775,9.562,9.122,19.953,9.721,19.248,0.57,22.345,13.193,17.382,18.304,14.135,-1.231,4.986,5.964,37.164,23.906,1.776,24.553,12.002,3.741,10.514,20.724,21.745,4.831,12.724,16.154,16.218,16.061,15.815,-0.126,1.615,13.863,4.198,36.815,11.294,13.272,4.557],[12.305,25.38,17.9,-1.827,10.038,6.386,-2.458,10.081,10.905,2.934,6.994,19.211,26.107,16.27,6.382,4.991,6.235,21.516,9.233,-6.411,4.042,8.692,1.126,23.256,14.334,2.728,29.408,19.353,17.853,13.277,6.062,19.077,-3.313,18.004,12.255,-2.137,8.109,9.993,17.402,12.379,1.617,22.936,12.907,7.628,9.126,10.228,21.49,18.114,9.725,16.159,16.621,-1.522,15.676,15.041,36.609,5.27,14.215,4.599,22.137,1.574,4.597,24.363,13.093,10.596,23.736,1.823,10.87,-1.144,9.781,16.062,24.984,10.152,12.478,-1.567,-3.836,5.582,25.65,8.831,7.525,13.68,4.726,5.516,17.636,8.265,16.75,10.596,7.186,17.646,-1.181,3.549,26.923,18.469,17.248,5.526,10.189,24.241,6.657,6.195,1.36,15.375,4.56,23.156,10.725,7.998,-5.189,9.827,17.675,3.885,2.533,21.55,12.749,12.683,-7.915,21.815,20.52,7.101,0.19,5.149,20.176,5.112,29.882,19.136,1.604,28.059,14.992,-1.628,-2.231,18.268,-2.491,13.336,7.218,18.404,18.307,19.286,8.765,15.876,9.799,-3.369,13.536,11.871,22.544,8.417,7.9,17.596,9.011,24.946,9.834,7.549,8.612,3.221,13.968,12.308,16.906,12.599,10.005,9.694,9.444,19.914,9.899,19.155,0.227,22.018,13.332,17.382,18.368,14.046,-1.501,5.29,5.873,37.182,23.373,1.133,25.03,12.282,3.942,10.825,20.88,21.783,4.707,13.242,16.411,16.345,15.489,15.722,-0.375,1.657,14.248,4.603,37.12,11.289,13.392,5.589],[12.393,25.291,17.846,-1.932,10.057,6.542,-2.412,10.249,10.883,2.807,7.149,19.15,26.02,16.367,6.216,4.869,6.274,21.379,9.281,-6.677,4.227,8.639,1.274,23.489,14.423,2.547,29.532,19.21,17.848,13.336,5.978,19.11,-3.521,17.921,12.217,-1.982,8.037,9.865,17.087,12.218,1.567,22.91,12.986,7.697,9.076,10.372,21.507,18.125,9.652,16.109,16.645,-1.785,15.653,15.255,36.584,5.263,14.2,4.931,22.154,1.462,4.567,24.388,13.418,10.929,23.771,2.606,10.532,-0.984,9.758,16.217,24.348,10.09,13.102,-1.76,-3.809,5.6,25.798,8.83,7.411,13.622,4.828,5.256,17.544,8.268,16.632,10.905,7.227,17.723,-0.877,3.508,26.666,18.3,16.992,5.285,9.979,24.746,6.558,6.234,1.305,15.475,4.799,22.844,10.418,7.643,-5.201,10.19,18.105,3.49,2.537,22.069,12.43,12.575,-8.275,21.816,20.569,7.085,0.394,5.827,19.844,5.48,29.813,19.2,2.114,28.358,15.119,-0.999,-2.187,18.299,-2.775,12.926,6.711,18.602,18.073,18.988,9.455,15.68,9.605,-3.312,13.498,11.74,22.359,8.567,8.016,18.045,8.483,24.621,9.927,6.943,9.048,3.154,13.791,12.556,16.888,13.114,9.559,9.385,9.487,19.703,9.427,19.447,0.299,21.933,13.794,17.282,18.393,14.093,-1.938,5.486,5.903,37.499,23.168,1.858,24.994,12.434,3.797,10.124,20.987,21.017,4.603,13.044,16.323,16.734,15.086,15.772,-0.202,1.6,14.758,4.278,37.683,11.635,13.25,5.353],[12.492,25.162,17.818,-1.914,10.006,6.629,-2.379,10.409,10.878,2.891,7.315,19.164,25.804,16.53,5.907,4.799,6.187,21.415,9.251,-6.959,4.526,8.594,1.471,23.787,14.4,2.42,29.703,19.015,17.889,13.301,6.012,19.148,-3.629,17.857,12.146,-1.991,7.865,9.696,16.994,12.288,1.57,22.841,13.119,7.726,8.993,10.543,21.448,18.075,9.402,15.951,16.73,-2.024,15.677,15.338,36.684,5.199,14.156,5.175,21.944,1.482,4.572,24.411,13.611,11.187,23.462,2.331,10.45,-1.144,9.726,16.106,24.2,10.577,13.334,-1.438,-3.913,5.951,25.471,8.857,7.652,13.967,5.048,4.946,17.549,8.429,16.364,11.096,7.119,17.744,-1.02,3.914,27.027,18.38,16.467,5.701,10.18,24.934,6.592,5.677,1.317,15.425,4.63,22.619,10.902,8.009,-5.678,10.063,17.718,3.639,3.057,22.313,12.457,12.959,-7.949,21.887,20.112,7.206,0.61,5.539,20.124,5.8,30.006,19.465,2.361,28.666,14.857,-0.889,-2.746,18.297,-3.739,13.079,6.815,18.187,17.955,19.007,9.677,15.378,9.054,-3.116,13.481,11.513,22.054,8.622,7.917,17.536,8.055,24.645,10.383,6.749,9.29,3.107,13.706,13.082,16.671,13.629,10.046,9.051,9.345,19.7,9.564,19.297,0.261,22.079,13.96,16.962,18.346,14.258,-2.334,5.468,5.835,37.508,23.862,2.02,24.249,12.57,3.656,10.795,20.987,20.608,4.841,13.453,16.293,16.847,15.42,15.956,-0.177,1.386,14.353,4.133,37.609,12.247,12.968,5.413],[12.594,24.947,17.778,-1.844,10.044,6.648,-2.412,10.64,10.994,3.079,7.496,19.329,25.595,16.477,5.592,4.799,6.158,21.509,9.449,-7.22,4.796,8.628,1.545,24.014,14.301,2.45,29.852,18.965,17.919,13.359,6.075,19.172,-3.811,17.808,11.996,-2.07,7.57,9.693,16.97,12.452,1.493,22.832,13.213,7.653,8.867,10.644,21.402,17.841,9.361,15.759,16.839,-2.278,15.835,15.28,36.854,5.124,14.039,5.332,21.59,1.545,4.53,24.511,13.805,11.371,23.389,1.785,10.458,-1.611,9.969,16.774,24.405,10.929,13.019,-1.094,-3.882,6.239,25.129,9.142,7.937,14.26,5.118,4.911,17.886,8.201,16.427,11.109,7.383,17.775,-0.966,3.944,27.185,18.756,17.034,5.632,10.194,25.008,6.262,5.737,2.181,15.315,4.728,22.999,10.814,8.04,-5.702,9.88,17.725,3.623,3.387,22.39,12.392,12.517,-7.801,22.122,19.798,7.105,1.044,5.646,20.147,5.175,29.911,19.024,1.334,28.715,15.249,-1.34,-2.524,18.713,-4.426,13.147,7.4,17.274,17.936,18.993,8.801,15.223,9.183,-3.443,13.186,11.476,22.055,8.59,8.205,17.172,8.471,24.796,10.023,7.055,8.942,3.217,13.898,12.981,16.712,13.371,10.009,9.335,9.164,19.754,10.316,18.862,0.181,22.228,13.561,16.956,18.454,14.177,-2.278,5.769,5.685,37.658,23.741,1.053,24.748,12.758,3.39,11.654,20.805,20.097,5.003,13.721,16.036,16.676,15.617,16.22,-0.515,1.623,13.77,4.713,37.441,11.942,13.204,4.699],[12.671,24.685,17.68,-1.783,10.085,6.68,-2.469,10.901,11.284,3.261,7.62,19.495,25.354,16.481,5.465,4.816,6.168,21.565,9.801,-7.278,4.704,8.653,1.793,23.987,14.136,2.53,29.809,18.973,17.97,13.429,6.348,19.367,-3.95,17.667,11.788,-2.11,7.409,9.766,16.95,12.513,1.405,22.952,13.12,7.506,8.791,10.638,21.482,17.598,9.433,15.737,16.993,-2.437,15.925,15.04,37.001,5.044,13.914,5.346,21.382,1.506,4.529,24.629,14.083,11.586,23.357,1.716,10.618,-2.197,10.639,16.774,24.464,10.784,12.772,-0.997,-3.544,6.48,25.042,9.355,7.922,14.411,4.828,4.808,17.505,8.231,16.451,11.02,7.68,17.73,-0.889,3.496,26.905,18.881,17.084,4.966,10.065,24.918,6.479,6.535,2.35,15.068,5.69,23.074,11.405,7.727,-5.739,9.989,17.692,3.385,3.163,22.561,12.541,12.255,-8.085,21.903,19.861,6.993,0.777,5.793,19.667,5.448,29.382,19.375,1.61,28.542,15.203,-2.37,-2.438,18.684,-4.095,13.157,6.771,17.234,17.756,18.802,8.457,15.263,9.066,-3.649,12.535,11.797,22.489,8.514,8.044,17.19,9.165,24.842,9.351,6.639,8.96,2.967,14.051,12.923,16.432,12.984,9.992,9.476,9.252,19.711,10.345,19.029,0.409,22.114,13.47,16.766,18.028,14.322,-2.349,6.24,5.696,38.124,22.986,1.59,25.078,12.731,3.582,11.142,20.645,20.0,4.838,13.503,15.773,16.377,15.73,16.088,-0.742,1.34,13.628,4.436,37.61,12.252,13.251,4.563],[12.654,24.505,17.398,-1.816,9.996,6.746,-2.507,10.943,11.755,3.322,7.694,19.392,25.171,16.634,5.493,4.65,6.232,21.524,10.154,-7.245,4.628,8.731,2.082,23.749,14.112,2.757,29.616,18.938,18.092,13.406,6.594,19.516,-3.884,17.473,11.436,-2.181,7.306,9.823,17.007,12.479,1.351,23.241,12.883,7.532,8.731,10.529,21.504,17.548,9.477,15.806,17.002,-2.468,15.929,14.734,37.25,4.999,13.778,5.275,21.499,1.559,4.489,24.723,14.263,11.699,23.113,1.75,11.321,-2.621,10.734,16.175,24.083,11.012,13.371,-1.318,-3.61,6.824,24.758,9.77,7.956,13.894,4.923,4.646,16.867,8.356,16.111,10.856,7.581,17.938,-0.859,3.134,26.257,18.78,16.562,4.68,10.574,24.811,6.511,6.872,2.221,15.043,5.178,23.06,11.891,7.336,-5.522,10.091,17.981,3.815,2.476,22.396,12.546,12.422,-7.885,21.736,20.104,7.071,0.628,5.778,19.659,5.642,29.634,19.512,2.473,27.942,15.231,-3.104,-2.881,18.779,-3.382,12.649,6.865,17.677,18.169,18.59,8.874,15.502,8.806,-3.706,12.556,11.685,22.591,8.17,8.201,17.341,8.561,25.077,9.727,6.559,9.059,2.92,14.13,12.637,16.138,13.133,10.27,9.425,9.104,19.776,9.818,18.799,0.628,22.329,13.317,16.324,17.861,14.543,-2.244,6.118,5.614,38.334,23.335,1.558,24.635,12.652,3.581,10.872,20.585,20.145,4.469,13.955,16.04,16.41,15.703,15.825,-0.787,1.265,14.162,4.38,37.275,12.445,12.915,5.138],[12.702,24.398,17.121,-2.046,9.887,6.84,-2.476,10.796,12.078,3.18,7.774,19.247,25.021,16.627,5.537,4.581,6.212,21.482,10.514,-7.085,4.564,8.852,2.132,23.531,14.207,3.066,29.39,18.89,18.24,13.418,6.742,19.583,-3.799,17.301,11.166,-2.344,7.347,9.625,17.066,12.394,1.344,23.424,12.672,7.687,8.637,10.309,21.48,17.58,9.58,15.906,16.925,-2.27,16.111,14.666,37.476,4.958,13.784,5.175,21.626,1.614,4.392,24.933,14.301,11.634,23.206,1.593,11.258,-2.619,10.874,16.496,23.479,11.397,12.979,-1.17,-4.099,6.866,24.96,9.113,8.104,13.543,5.478,4.339,16.998,8.32,15.881,10.855,7.498,17.844,-1.248,3.628,25.499,18.37,17.235,5.239,10.618,24.773,6.222,6.775,2.735,15.307,4.725,23.005,11.941,7.586,-5.242,9.892,17.975,3.252,1.863,21.948,12.276,12.636,-7.658,22.02,20.085,7.196,1.319,6.233,19.724,5.304,29.659,19.492,2.635,27.586,15.183,-3.39,-2.715,18.84,-3.076,12.237,7.71,17.741,18.709,18.799,9.047,15.541,8.53,-3.264,12.464,11.149,22.972,7.482,8.566,17.575,8.211,25.26,9.853,6.32,8.83,3.154,13.929,12.783,16.353,12.963,10.207,9.463,8.881,19.767,9.779,18.601,0.644,22.697,13.128,16.268,18.214,14.884,-2.503,5.848,5.334,38.356,23.821,1.457,24.327,12.699,3.578,11.44,20.791,20.193,4.408,14.466,15.925,16.261,15.522,15.687,-0.909,1.467,14.179,4.108,37.304,12.191,12.757,5.356],[12.647,24.431,17.035,-2.271,9.807,6.898,-2.427,10.589,12.171,2.992,7.924,19.081,24.833,16.677,5.523,4.483,6.214,21.582,10.758,-6.764,4.652,8.961,2.211,23.333,14.247,3.336,29.142,18.783,18.329,13.318,6.967,19.574,-3.692,17.26,11.112,-2.477,7.197,9.432,17.168,12.335,1.405,23.404,12.575,7.739,8.562,10.253,21.646,17.738,9.556,15.922,16.916,-2.098,16.37,14.719,37.618,4.909,13.856,5.144,21.503,1.592,4.28,25.146,14.308,11.438,23.016,1.489,11.196,-2.283,11.485,16.826,23.077,10.915,12.796,-1.407,-4.269,6.645,25.496,8.936,8.009,14.101,5.111,4.749,16.851,8.101,15.978,10.64,8.037,17.726,-1.794,3.769,25.301,18.056,17.146,5.416,10.932,24.947,6.066,6.249,2.312,15.188,4.577,22.982,11.966,8.083,-5.066,9.738,17.733,3.031,2.003,22.009,12.376,12.519,-7.634,21.97,19.827,7.173,2.117,6.2,19.839,5.56,29.37,19.728,2.874,27.409,15.014,-3.545,-2.298,18.826,-3.377,12.142,7.684,17.59,18.386,18.727,8.618,15.383,8.555,-3.319,12.239,11.301,23.392,6.845,8.827,17.265,8.028,25.175,9.589,6.665,8.736,3.02,13.717,12.903,16.658,12.485,10.366,8.96,8.834,19.751,9.725,18.889,1.022,22.204,13.044,16.711,17.978,15.014,-2.3,5.364,5.446,38.483,23.524,1.993,25.282,12.932,3.617,11.721,20.685,20.159,4.826,13.804,16.378,15.849,15.727,15.998,-0.534,1.025,13.552,4.14,37.869,12.118,13.096,5.171],[12.544,24.652,17.016,-2.193,9.748,6.899,-2.329,10.485,12.462,2.837,7.97,18.888,24.697,16.8,5.465,4.402,6.247,21.669,10.826,-6.63,4.752,8.897,2.309,23.161,14.079,3.566,28.86,18.732,18.329,13.136,7.027,19.351,-3.691,17.476,11.225,-2.576,7.054,9.247,17.256,12.242,1.621,23.341,12.629,7.813,8.381,10.361,21.721,17.996,9.447,15.931,17.088,-1.966,16.349,14.744,37.506,4.96,13.932,5.072,21.152,1.506,4.228,25.378,14.189,11.22,23.277,1.255,11.347,-1.774,11.781,16.925,22.899,10.27,12.795,-2.055,-4.067,7.039,25.412,9.21,7.815,14.287,5.309,5.939,17.205,7.981,16.076,10.644,8.112,17.474,-1.214,3.216,25.682,18.516,16.746,4.864,11.508,24.803,6.109,6.436,2.666,14.745,4.896,23.25,12.465,8.013,-4.904,10.157,18.229,3.282,2.823,22.131,12.414,12.263,-7.491,21.781,19.694,7.367,1.676,6.2,19.617,5.697,28.932,19.549,3.181,27.608,15.053,-3.739,-2.317,19.195,-3.043,12.575,7.828,17.308,18.243,18.909,8.07,15.449,8.659,-3.818,11.897,11.456,23.319,6.803,8.398,17.061,8.194,25.236,9.597,6.386,8.79,2.959,13.927,12.678,16.476,12.352,9.584,8.27,9.02,19.793,9.96,19.418,1.293,22.199,13.097,16.865,18.328,14.744,-2.279,5.1,5.643,38.923,23.512,1.707,25.663,12.618,3.384,10.768,20.27,19.712,4.708,13.976,16.464,16.026,16.055,16.319,-0.171,1.212,13.068,4.277,38.05,12.225,13.083,5.064],[12.411,24.89,17.067,-1.848,9.754,6.949,-2.065,10.434,12.764,2.744,7.925,18.758,24.63,16.916,5.37,4.464,6.312,21.766,10.83,-6.625,4.745,8.882,2.408,23.002,13.824,3.803,28.75,18.683,18.353,13.149,6.954,19.15,-3.674,17.797,11.308,-2.694,7.049,9.06,17.244,12.186,1.901,23.355,12.764,7.828,8.182,10.402,21.694,18.086,9.217,15.941,17.406,-1.898,16.231,14.786,37.294,4.943,13.848,4.929,20.794,1.402,4.265,25.538,14.072,11.004,23.619,0.95,11.498,-1.482,12.035,16.915,23.199,10.419,13.013,-1.317,-3.471,7.249,25.28,8.916,7.371,13.941,5.486,6.437,16.73,7.965,15.648,10.739,8.142,17.085,-0.633,2.936,25.976,18.606,17.397,5.279,11.229,24.589,6.242,6.679,2.539,14.789,5.356,23.38,12.344,7.878,-5.008,10.339,17.941,3.523,3.814,21.952,12.235,12.155,-7.471,22.216,19.929,7.624,0.766,6.261,19.427,5.476,28.659,19.489,2.912,27.35,14.894,-3.819,-3.072,19.376,-2.827,13.029,7.586,17.427,18.31,19.638,8.096,15.879,8.547,-3.68,11.687,11.285,23.148,6.757,8.364,17.417,7.945,25.175,8.907,5.991,8.817,3.193,13.893,12.263,16.67,12.566,9.862,8.345,9.414,19.909,10.007,19.508,1.379,22.322,13.252,16.896,18.456,14.774,-1.854,5.355,5.376,38.635,23.9,0.887,25.164,12.433,3.853,10.362,20.191,19.415,4.781,14.283,16.306,16.416,16.032,16.021,-0.181,1.085,13.268,4.019,37.58,11.542,12.978,4.542],[12.307,25.077,16.939,-1.41,9.785,7.022,-1.722,10.46,12.929,2.586,7.912,18.623,24.556,17.104,5.319,4.582,6.34,21.925,10.634,-6.637,4.633,8.922,2.326,22.853,13.645,3.992,28.721,18.681,18.318,13.145,6.766,19.06,-3.637,18.059,11.312,-2.632,7.027,8.888,17.196,12.179,2.171,23.519,12.844,7.878,8.04,10.294,21.778,18.111,9.008,16.018,17.531,-1.681,16.326,14.743,37.094,4.878,13.705,4.742,20.64,1.257,4.282,25.504,14.133,10.726,23.645,0.824,11.613,-1.172,12.046,17.108,23.761,10.452,12.897,-0.655,-3.319,6.942,25.776,9.195,6.786,13.858,5.519,5.899,17.117,8.08,15.592,10.616,8.526,16.816,-0.524,2.593,25.813,18.424,17.891,5.124,10.888,24.426,6.308,6.168,2.357,14.789,5.251,23.539,12.075,7.954,-4.884,10.454,17.681,3.612,4.347,21.502,12.559,11.937,-7.391,22.333,20.02,7.529,1.15,5.851,19.546,5.682,28.151,19.45,3.311,27.379,14.801,-3.644,-3.434,18.678,-2.82,12.768,7.173,17.763,18.603,19.617,8.406,15.779,8.599,-3.637,11.779,11.587,22.953,6.672,8.486,17.606,7.486,25.359,8.788,6.252,8.988,3.94,13.909,12.273,16.955,13.213,9.776,8.419,9.178,20.008,9.486,19.301,1.565,22.391,13.498,16.694,18.267,14.84,-2.088,5.392,5.008,38.43,23.882,0.945,25.333,12.7,3.648,10.679,19.932,19.36,4.825,13.73,16.15,16.33,15.798,16.269,0.086,1.227,14.078,4.05,37.131,11.511,12.438,4.797],[12.378,25.245,16.824,-0.961,9.882,7.043,-1.674,10.616,12.975,2.344,7.866,18.474,24.612,17.334,5.276,4.5,6.061,22.006,10.414,-6.476,4.567,8.866,2.193,22.717,13.551,4.242,28.513,18.842,18.13,13.152,6.538,19.04,-3.659,18.119,11.217,-2.509,7.074,8.805,17.17,12.224,2.513,23.663,12.985,7.802,7.925,10.151,21.99,18.167,9.079,16.051,17.391,-1.43,16.432,14.635,36.873,4.785,13.689,4.678,20.735,1.277,4.117,25.417,14.317,10.541,23.672,0.53,11.769,-1.046,11.985,17.863,23.713,10.261,12.439,-0.821,-3.434,6.819,26.101,9.093,6.588,14.035,5.783,5.115,16.839,8.035,15.384,10.623,8.533,16.935,-0.66,2.892,25.419,17.971,17.625,4.719,11.0,24.046,6.233,6.286,2.775,14.604,5.145,23.373,11.617,7.797,-4.672,10.019,18.064,3.271,3.511,21.273,12.161,12.105,-7.401,22.341,19.957,7.15,1.758,5.53,19.865,5.614,28.159,19.756,3.318,27.36,14.98,-3.211,-2.788,18.371,-2.557,12.273,7.283,18.244,18.747,19.394,7.847,15.466,8.575,-3.354,12.527,11.532,23.063,6.359,8.749,17.44,8.071,25.467,9.089,6.538,8.923,4.148,13.825,12.68,16.659,12.911,9.487,8.614,9.189,20.121,9.407,19.39,1.629,22.606,13.128,16.489,18.532,15.504,-1.635,4.968,5.406,38.377,23.717,1.089,25.739,12.896,3.046,10.291,19.946,19.249,4.76,13.758,16.505,15.987,15.998,16.234,0.419,1.461,14.571,4.376,37.347,11.738,12.276,4.599],[12.525,25.353,16.831,-0.668,9.9,6.966,-1.933,10.551,13.064,2.248,7.759,18.354,24.689,17.529,5.118,4.274,5.619,21.938,10.253,-6.266,4.597,8.702,2.379,22.547,13.456,4.21,28.224,19.11,17.942,13.141,6.411,19.037,-3.509,18.043,11.349,-2.483,7.158,8.837,17.208,12.306,2.895,23.593,13.023,7.789,7.823,10.157,22.207,18.262,9.265,15.976,17.203,-1.164,16.547,14.546,36.809,4.716,13.785,4.613,20.903,1.373,3.915,25.406,14.428,10.438,24.048,0.465,11.929,-1.121,12.259,18.085,23.32,10.682,12.348,-0.61,-3.497,6.714,26.256,8.865,6.747,13.975,5.655,5.04,16.645,8.161,15.411,10.699,8.283,16.785,-1.004,2.915,25.06,17.78,17.925,4.51,11.084,24.092,5.883,6.267,2.614,14.292,5.489,23.301,11.757,7.14,-4.574,10.048,17.976,3.242,2.94,21.478,11.988,11.722,-7.236,22.866,20.201,7.294,1.266,5.457,20.034,5.373,28.329,19.692,3.838,27.138,14.861,-3.574,-2.01,18.779,-2.867,11.585,7.243,18.001,18.62,19.778,7.644,15.691,8.708,-3.178,12.946,11.402,23.198,6.448,7.993,17.463,7.963,25.243,9.284,6.273,8.464,4.117,13.9,12.736,16.646,12.799,10.114,8.706,9.428,20.301,9.82,19.448,1.365,22.776,12.921,16.714,18.103,15.576,-1.185,4.902,5.344,37.884,23.502,1.364,25.687,12.755,3.39,10.553,20.152,19.538,4.507,14.423,16.652,16.073,16.196,16.57,0.562,1.433,14.453,4.194,37.157,11.46,12.669,4.589],[12.63,25.465,16.855,-0.666,9.961,6.764,-2.279,10.426,13.233,2.308,7.78,18.357,24.609,17.68,4.866,4.062,5.27,22.014,10.22,-6.104,4.625,8.713,2.604,22.437,13.274,4.076,28.021,19.262,17.788,13.086,6.405,19.093,-3.32,17.906,11.568,-2.697,7.171,8.709,17.378,12.388,3.05,23.482,12.982,7.76,7.795,10.203,22.368,18.546,9.46,15.909,17.04,-0.918,16.631,14.625,36.842,4.607,13.835,4.583,21.069,1.475,3.75,25.372,14.379,10.392,24.095,0.445,11.67,-1.039,12.659,17.706,22.96,10.339,12.593,-0.587,-3.666,6.638,26.187,8.809,6.591,14.292,5.224,4.987,17.339,8.314,15.57,10.889,8.247,16.499,-0.994,3.102,25.34,18.401,18.208,4.088,10.795,24.21,5.889,6.114,2.727,14.129,5.253,23.426,11.548,6.617,-4.197,10.106,17.223,3.534,3.216,21.748,12.176,11.55,-6.913,22.791,20.564,7.164,1.555,5.88,20.302,5.705,28.072,19.145,3.619,26.875,14.592,-3.672,-1.722,18.871,-2.716,12.11,6.975,17.725,18.457,19.602,8.124,16.084,8.615,-3.613,13.064,11.688,23.349,6.746,7.573,17.387,7.305,25.325,9.546,5.976,8.631,4.289,13.793,12.896,17.01,13.357,10.068,8.483,9.487,20.681,9.828,19.476,1.425,22.708,13.262,16.814,18.025,15.276,-1.238,4.881,4.837,37.793,23.765,1.782,25.628,12.562,3.539,10.076,20.047,19.914,4.381,14.206,16.987,16.237,16.155,16.313,0.905,1.221,14.223,3.775,36.866,11.139,12.773,4.999],[12.721,25.549,16.959,-0.866,9.978,6.627,-2.435,10.285,13.355,2.299,7.811,18.48,24.438,17.8,4.563,4.066,5.069,22.178,10.054,-5.832,4.579,8.792,2.756,22.422,13.118,4.144,27.929,19.282,17.555,13.093,6.541,19.103,-3.114,17.782,11.869,-2.862,7.13,8.385,17.539,12.431,2.98,23.466,13.16,7.634,7.805,10.206,22.39,18.847,9.622,15.92,16.86,-0.861,16.654,14.853,36.839,4.543,13.754,4.686,21.192,1.549,3.697,25.321,14.223,10.311,24.079,0.502,11.64,-0.587,13.324,17.247,22.834,9.58,12.808,-0.493,-4.106,6.989,26.134,9.069,6.679,14.488,5.046,4.77,17.326,8.156,15.575,10.951,7.752,16.813,-1.187,2.707,25.657,18.844,18.015,4.586,10.467,24.209,5.858,5.621,3.056,14.52,5.124,23.584,11.773,6.542,-4.188,9.985,17.013,3.395,3.553,21.895,12.407,11.924,-6.788,22.424,20.727,7.096,2.089,5.79,19.984,5.906,27.593,18.658,3.036,26.739,14.783,-3.799,-2.159,18.855,-2.567,12.778,7.513,17.427,18.628,19.189,8.239,16.463,8.832,-3.785,13.173,11.962,23.501,6.866,8.098,18.329,7.108,25.399,8.835,6.311,8.974,4.359,14.156,12.645,17.089,13.182,9.783,8.164,9.256,20.599,9.482,19.915,1.495,22.7,13.578,16.793,18.344,15.284,-1.554,4.663,5.152,38.352,23.536,1.239,25.593,12.851,2.937,10.057,20.43,19.744,4.27,13.564,16.686,16.319,16.105,15.894,0.83,1.856,14.001,3.366,37.302,11.087,12.44,4.335],[12.762,25.627,17.066,-0.973,9.867,6.559,-2.484,10.123,13.508,2.108,7.869,18.768,24.179,17.849,4.242,4.234,4.964,22.256,9.906,-5.599,4.439,8.758,2.846,22.518,13.209,4.19,27.88,19.237,17.314,13.178,6.819,19.038,-2.918,17.687,12.116,-2.886,7.298,8.064,17.84,12.378,2.79,23.463,13.504,7.623,7.921,10.266,22.243,18.955,9.478,15.956,16.741,-1.024,16.657,15.128,36.961,4.477,13.536,4.739,21.187,1.544,3.812,25.281,14.102,10.146,24.188,0.24,11.837,-0.281,13.484,17.216,23.046,8.942,12.932,-0.886,-4.027,6.674,26.422,9.156,6.979,14.468,5.392,4.611,17.31,8.127,15.658,11.023,7.688,17.092,-1.742,2.936,25.797,18.391,18.167,4.659,10.398,24.185,6.097,4.873,2.571,14.496,5.109,23.854,11.527,6.782,-4.104,10.226,17.231,3.284,3.595,21.788,11.935,11.566,-6.825,22.467,20.549,7.296,2.06,5.55,19.78,5.23,27.269,18.839,3.604,26.746,14.927,-4.074,-2.27,18.511,-2.64,12.717,7.39,17.409,18.886,18.998,7.795,16.309,8.988,-3.486,13.347,12.049,23.448,6.999,8.695,18.472,7.222,25.349,9.375,6.395,8.888,4.287,13.976,12.788,17.413,13.092,10.04,7.609,8.652,20.316,9.281,20.131,1.781,22.588,13.625,16.896,18.052,15.308,-2.078,4.864,5.405,38.569,23.392,0.765,25.6,12.755,3.35,10.524,20.77,19.608,4.238,13.564,16.408,16.586,15.98,16.112,0.672,1.737,13.723,3.995,37.428,11.434,12.472,4.302],[12.755,25.572,17.145,-0.948,9.803,6.658,-2.537,10.002,13.596,1.824,7.961,18.958,23.905,17.806,4.004,4.594,4.895,22.36,9.869,-5.55,4.288,8.825,2.718,22.667,13.24,4.275,27.835,19.045,17.404,13.1,6.959,18.87,-2.807,17.679,12.094,-2.928,7.437,7.842,17.983,12.24,2.641,23.268,13.816,7.719,7.993,10.253,22.059,18.983,9.344,16.017,16.803,-1.225,16.697,15.341,37.146,4.458,13.385,4.75,21.166,1.389,3.933,25.371,14.094,10.058,24.021,0.027,11.855,-0.142,13.213,17.744,23.269,9.074,12.848,-0.755,-3.862,6.486,26.499,8.672,7.154,14.526,5.075,4.132,17.563,8.206,15.62,10.821,7.801,17.512,-1.603,3.079,25.697,18.196,18.715,3.785,10.516,24.343,6.437,5.46,2.315,14.311,4.904,23.878,11.182,6.686,-3.851,10.345,16.983,3.653,3.023,21.348,12.164,11.407,-6.767,22.535,20.414,7.399,2.022,5.715,19.889,5.241,27.606,19.168,3.759,26.9,14.638,-3.608,-1.655,17.964,-2.588,12.724,7.391,17.663,19.097,19.177,7.089,16.613,8.882,-3.505,13.658,12.196,23.363,7.541,8.917,18.158,6.949,24.997,10.001,6.965,8.412,4.44,13.148,13.348,17.352,13.733,9.958,7.63,8.632,20.494,10.105,19.881,1.522,22.623,13.901,16.909,18.022,15.71,-1.696,5.507,5.057,38.234,23.742,0.787,25.204,12.433,3.175,9.769,20.549,19.737,4.398,13.834,16.808,16.888,15.896,16.251,0.498,1.566,13.25,4.472,37.484,11.249,11.91,4.905],[12.714,25.331,17.236,-0.822,9.75,6.63,-2.52,9.91,13.577,1.561,8.076,19.016,23.686,17.797,3.75,4.875,4.968,22.478,9.966,-5.624,4.196,9.111,2.464,22.781,13.189,4.294,27.817,18.998,17.612,12.981,6.946,18.598,-2.557,17.752,12.006,-2.934,7.532,7.695,17.931,12.018,2.512,23.057,14.2,7.815,7.942,10.404,22.058,18.858,9.561,16.057,16.94,-1.382,16.827,15.312,37.322,4.451,13.194,4.883,21.23,1.163,3.962,25.428,14.126,9.838,24.078,-0.066,12.175,-0.046,13.073,18.484,23.096,9.619,12.82,-0.397,-4.034,6.803,26.376,8.881,7.121,14.429,5.042,3.937,17.417,8.335,15.671,10.514,7.371,17.625,-1.286,2.889,25.505,18.347,18.459,4.467,10.884,24.165,6.709,5.586,2.333,14.205,5.102,23.511,11.078,6.573,-3.875,10.171,17.291,3.968,3.201,21.104,12.358,11.456,-6.648,22.595,20.079,7.385,1.514,5.979,20.082,4.991,28.292,19.298,3.442,26.828,14.619,-3.884,-1.834,17.277,-2.707,12.352,7.883,17.876,19.714,19.497,7.289,16.776,9.314,-3.795,13.602,12.51,23.207,8.554,8.705,18.371,6.803,24.721,9.162,7.47,8.729,3.923,13.077,13.273,17.081,13.855,9.58,8.577,9.332,20.35,10.15,19.839,1.292,22.513,14.002,17.12,18.446,15.704,-1.164,6.035,4.962,38.294,23.643,0.578,25.648,12.724,2.685,9.616,20.12,19.972,4.342,14.239,16.635,16.731,15.988,16.403,0.377,1.291,12.922,3.997,37.467,10.86,11.85,4.48],[12.653,25.156,17.333,-0.629,9.752,6.505,-2.436,10.038,13.592,1.689,8.166,18.98,23.547,17.802,3.674,4.949,5.056,22.477,10.07,-5.659,4.097,9.304,1.97,22.61,13.09,4.162,27.919,19.186,17.831,12.97,6.94,18.402,-2.238,17.946,11.914,-3.194,7.69,7.799,17.849,11.933,2.453,22.987,14.439,7.968,8.042,10.68,22.14,18.62,9.833,15.864,17.091,-1.411,16.907,15.01,37.358,4.435,13.035,4.958,21.224,0.876,3.907,25.444,14.313,9.617,23.85,-0.14,12.161,-0.06,12.776,19.064,22.506,9.113,12.96,-0.399,-3.85,6.89,25.799,8.871,7.3,14.303,4.862,4.56,17.243,8.059,15.936,10.581,7.372,17.339,-1.278,2.489,25.27,18.613,17.768,4.278,10.787,24.192,6.802,5.124,1.926,14.467,4.996,23.674,11.664,6.793,-4.001,10.451,17.695,4.151,3.955,21.301,12.137,11.296,-6.713,22.368,20.585,7.577,1.266,5.942,19.865,4.895,28.329,18.97,3.4,26.752,14.546,-4.837,-2.342,16.914,-2.526,12.696,7.628,17.882,19.806,19.395,7.596,16.439,9.501,-3.68,13.295,13.243,22.912,9.191,8.045,18.566,6.542,24.796,9.973,7.415,9.297,3.413,13.441,12.735,17.173,13.828,10.16,8.307,9.661,20.491,9.874,19.694,1.099,22.288,13.688,16.823,18.491,15.625,-1.638,6.418,5.036,39.055,23.669,0.049,25.967,13.262,3.199,9.924,20.794,19.817,4.038,13.914,16.951,16.6,16.34,16.361,0.444,0.738,12.726,4.103,37.766,10.687,12.008,4.053],[12.694,25.016,17.428,-0.56,9.779,6.388,-2.385,10.279,13.609,1.853,8.257,18.92,23.435,17.807,3.691,5.025,5.035,22.3,10.199,-5.691,4.014,9.352,1.482,22.376,13.039,4.103,28.107,19.41,17.982,12.967,6.868,18.318,-1.993,18.111,11.878,-3.609,7.825,8.044,17.812,12.075,2.457,22.932,14.489,8.101,8.14,10.924,22.142,18.407,10.262,15.586,17.139,-1.392,16.968,14.704,37.504,4.43,12.929,4.88,21.221,0.549,3.833,25.433,14.494,9.677,23.88,0.007,12.227,0.256,12.568,18.994,21.924,9.344,12.502,-0.429,-3.623,6.98,25.676,9.109,7.277,14.568,4.961,4.569,17.668,7.971,15.663,10.486,7.54,17.105,-1.193,2.285,24.833,18.843,17.383,4.493,10.265,23.997,6.787,5.106,1.936,13.961,4.631,23.669,11.772,6.883,-4.005,10.981,17.923,3.898,4.403,21.077,12.364,11.224,-6.866,22.606,20.543,7.969,0.764,5.536,20.225,4.957,28.022,19.275,3.04,27.095,14.325,-4.756,-1.679,16.768,-2.007,12.775,7.071,17.809,19.393,19.896,7.782,16.982,9.117,-4.086,13.174,13.072,22.723,9.928,8.217,18.378,6.834,24.861,10.116,7.254,9.187,3.536,13.737,12.086,17.31,14.109,10.641,8.05,9.699,20.43,10.448,19.843,0.744,22.155,13.174,16.457,18.576,15.599,-2.044,5.973,4.995,38.925,23.725,-0.404,25.922,13.214,3.213,9.323,20.994,19.623,3.978,14.224,16.417,16.255,16.583,16.338,0.476,1.087,12.876,4.17,37.615,10.617,11.604,4.077],[12.796,24.974,17.468,-0.71,9.683,6.377,-2.316,10.532,13.606,1.944,8.316,18.87,23.262,17.756,3.77,5.084,4.954,22.09,10.189,-5.678,3.997,9.519,1.253,22.23,12.892,4.16,28.359,19.497,18.171,12.958,6.627,18.303,-1.704,18.156,11.843,-3.902,7.812,8.32,17.909,12.155,2.474,22.806,14.506,8.102,8.274,11.161,22.077,18.312,10.614,15.295,17.104,-1.323,16.989,14.583,37.713,4.425,12.837,4.633,21.229,0.469,3.765,25.415,14.547,9.745,23.67,0.159,12.47,0.576,12.702,18.842,21.783,10.015,12.466,-0.692,-3.873,7.131,26.087,9.093,7.609,14.619,4.653,3.751,18.049,8.011,15.691,10.676,7.507,17.155,-1.353,2.059,24.064,18.916,17.648,4.513,10.715,23.588,6.91,5.531,1.444,13.821,4.684,23.074,11.687,6.479,-4.257,10.748,17.717,4.019,4.121,20.651,12.262,11.145,-7.006,22.021,20.44,7.635,0.609,5.514,20.434,4.615,28.196,19.687,3.193,27.436,14.539,-4.475,-1.008,16.812,-1.61,12.293,6.951,18.15,19.008,19.883,8.223,16.588,9.2,-4.733,13.338,12.871,22.685,10.086,8.905,18.423,7.709,24.665,10.101,7.031,9.467,3.362,13.659,12.642,17.238,14.056,10.42,7.827,9.64,20.309,10.97,19.666,0.812,22.093,12.999,16.578,18.516,15.852,-1.792,5.694,4.84,38.992,23.755,-0.442,25.789,13.483,2.638,9.928,20.239,19.737,4.292,14.645,15.967,15.933,16.446,16.317,0.457,0.612,12.73,4.16,37.507,11.167,11.216,4.431],[12.829,25.071,17.463,-0.879,9.676,6.403,-2.2,10.473,13.629,1.91,8.338,18.842,23.016,17.728,3.723,5.108,4.956,21.814,10.225,-5.598,3.95,9.633,1.164,22.107,12.786,4.288,28.714,19.494,18.287,13.033,6.431,18.286,-1.442,18.083,11.718,-3.919,7.741,8.56,17.895,12.153,2.459,22.703,14.477,7.964,8.337,11.429,21.967,18.261,10.632,15.265,17.037,-1.207,16.905,14.845,37.892,4.427,12.684,4.48,21.146,0.474,3.793,25.495,14.396,9.901,23.782,0.114,12.439,0.347,12.537,18.421,21.542,9.822,13.034,-0.82,-3.819,6.832,25.987,8.955,8.635,14.443,4.628,4.03,17.968,8.022,15.695,10.745,7.109,17.198,-1.276,2.419,23.559,18.437,18.14,4.039,10.794,23.453,6.903,6.006,1.311,14.423,4.971,22.897,11.831,6.142,-4.252,10.441,17.863,4.105,3.622,20.596,12.342,11.23,-6.966,21.88,20.649,7.97,0.271,5.512,20.076,4.659,28.286,19.57,3.742,27.352,14.759,-5.015,-1.365,17.206,-1.64,12.44,7.151,18.477,18.38,19.613,7.993,16.41,9.443,-4.914,13.178,13.122,22.609,10.192,8.866,18.578,7.563,24.509,10.52,6.799,9.78,3.741,13.154,13.45,17.001,14.019,10.849,7.862,9.093,20.15,11.075,19.17,0.956,22.305,13.17,16.577,18.156,16.103,-1.719,5.89,4.959,39.484,23.709,-0.387,25.541,13.766,3.039,9.906,20.295,19.813,4.21,14.101,16.257,16.141,15.859,16.089,0.649,0.586,12.54,4.264,37.802,10.849,11.597,4.415],[12.849,25.266,17.328,-1.04,9.758,6.449,-2.129,10.279,13.568,1.72,8.372,18.781,22.758,17.726,3.568,5.064,5.027,21.616,10.157,-5.569,4.008,9.726,1.091,22.031,13.05,4.42,29.046,19.446,18.195,13.14,6.456,18.205,-1.466,18.087,11.589,-3.827,7.588,8.485,17.668,12.203,2.549,22.67,14.467,7.662,8.37,11.657,21.93,18.055,10.589,15.396,16.879,-1.157,16.759,15.202,38.043,4.46,12.586,4.455,21.062,0.529,4.012,25.615,14.072,10.007,23.883,0.04,12.114,-0.253,12.683,18.178,21.172,9.612,13.037,-0.445,-3.606,7.085,26.141,8.928,9.125,14.46,4.792,4.042,17.73,7.959,15.802,10.384,7.229,17.277,-0.941,2.966,23.539,18.018,18.444,4.256,10.467,23.73,6.856,5.634,1.734,14.502,4.386,22.986,11.849,6.735,-3.833,10.916,17.709,4.039,3.532,20.858,13.026,11.428,-6.592,22.206,20.422,7.923,0.377,5.099,20.241,5.05,28.883,19.529,4.362,27.543,14.724,-5.24,-1.778,17.063,-1.636,12.276,7.086,18.476,18.428,19.663,8.044,16.79,9.12,-4.229,12.973,13.033,22.414,9.968,8.642,18.427,7.453,24.432,10.305,6.982,10.135,4.094,13.33,13.249,17.022,13.964,10.574,8.348,8.96,20.482,10.91,19.437,1.3,22.322,13.601,16.297,18.586,15.895,-1.561,5.435,4.998,39.168,23.958,-0.321,25.612,13.43,3.333,9.417,20.465,19.723,3.991,14.432,16.326,16.548,15.482,16.085,0.66,0.815,12.272,4.051,38.648,10.738,12.124,4.276],[12.93,25.429,17.162,-1.015,9.711,6.539,-2.118,10.252,13.461,1.569,8.373,18.68,22.538,17.785,3.405,5.016,5.231,21.61,9.888,-5.594,4.13,9.778,1.184,22.088,13.409,4.614,29.297,19.378,17.914,13.334,6.481,18.132,-1.603,18.152,11.415,-3.615,7.42,8.312,17.465,12.272,2.666,22.662,14.447,7.334,8.374,11.729,22.013,17.85,10.422,15.384,16.861,-1.184,16.597,15.548,38.141,4.557,12.625,4.488,21.056,0.689,4.172,25.776,13.97,9.955,24.138,0.0,11.977,-0.907,12.915,18.637,21.012,9.813,12.692,-0.413,-3.887,7.578,26.573,8.897,8.9,14.748,5.166,3.975,17.225,7.917,15.801,10.567,7.689,17.457,-1.029,2.704,23.613,17.902,17.751,4.375,10.293,23.836,6.755,5.178,0.958,14.342,4.768,22.835,11.301,7.016,-3.858,11.103,17.573,3.97,3.867,21.179,13.137,11.719,-6.399,21.518,20.432,8.01,0.972,5.175,20.441,5.072,29.229,19.224,4.042,28.279,14.813,-5.221,-1.705,16.329,-1.519,12.328,7.072,18.377,18.633,19.916,8.279,16.704,8.662,-4.123,12.736,13.481,22.176,9.918,8.025,17.832,7.432,24.606,10.42,6.66,10.189,4.319,13.653,13.047,16.733,13.952,10.092,8.751,8.942,20.272,11.093,19.311,1.547,21.96,14.043,16.371,18.706,15.293,-1.32,5.005,5.54,39.129,24.102,-0.214,25.926,13.299,2.976,10.003,20.219,19.562,4.273,14.063,16.31,16.958,15.799,16.241,0.624,0.892,11.959,4.345,38.901,11.122,11.716,4.121],[12.98,25.582,17.028,-0.894,9.656,6.764,-2.261,10.456,13.391,1.385,8.428,18.616,22.394,17.793,3.359,5.03,5.422,21.537,9.517,-5.711,4.251,9.832,1.359,22.227,13.593,4.746,29.617,19.361,17.636,13.554,6.495,18.013,-1.678,18.302,11.256,-3.506,7.184,8.221,17.292,12.231,2.774,22.777,14.43,7.184,8.382,11.523,21.97,17.713,10.208,15.297,16.915,-1.152,16.46,15.858,38.136,4.733,12.559,4.596,21.063,0.791,4.224,25.973,13.921,9.984,24.121,-0.394,11.883,-0.886,12.663,19.121,20.883,9.887,12.803,-0.632,-3.923,7.097,26.618,8.992,8.35,14.912,5.263,3.878,17.252,7.901,15.63,10.808,7.428,17.247,-1.252,2.495,23.871,17.93,17.474,3.796,10.216,23.776,6.876,5.62,1.292,14.846,5.197,22.759,11.21,6.899,-4.062,10.942,17.377,4.035,4.481,21.044,13.158,12.107,-6.923,22.045,20.399,8.257,0.679,5.74,20.328,4.841,29.24,18.881,3.603,28.108,15.212,-4.727,-1.203,16.257,-1.899,12.181,7.147,18.05,18.506,19.723,8.092,16.401,8.804,-4.315,12.69,12.951,21.971,9.688,7.314,18.128,7.351,24.839,9.994,6.251,9.826,4.031,13.73,12.942,16.568,14.296,10.6,8.806,8.764,20.367,11.703,18.77,1.237,21.86,14.109,16.682,18.532,15.08,-1.722,4.87,5.57,39.715,24.196,-0.035,26.073,13.215,3.209,9.889,20.213,19.814,4.39,14.314,15.931,17.148,16.15,16.869,0.74,1.364,12.444,4.656,38.201,11.365,11.404,4.063],[12.887,25.741,16.978,-0.882,9.603,6.966,-2.593,10.743,13.359,1.284,8.516,18.526,22.35,17.84,3.293,5.091,5.551,21.45,9.288,-5.83,4.281,9.879,1.523,22.35,13.589,4.711,29.819,19.394,17.574,13.68,6.548,17.863,-1.735,18.485,11.145,-3.501,6.946,8.281,17.253,12.172,2.708,23.078,14.276,7.135,8.308,11.327,21.934,17.613,9.992,15.272,17.206,-1.125,16.364,15.957,38.219,4.931,12.484,4.771,21.154,0.915,4.262,26.101,13.872,9.99,24.309,-0.562,11.818,-0.663,12.56,18.97,20.997,9.993,13.064,-0.762,-3.936,7.103,26.565,9.359,7.955,14.591,5.18,3.512,17.422,7.818,15.408,10.439,7.25,16.805,-1.226,1.758,23.83,18.315,17.733,4.012,9.747,23.604,6.983,6.231,1.911,15.259,5.274,22.738,10.791,7.161,-4.318,11.085,17.127,4.253,4.915,20.69,13.448,12.535,-7.32,21.998,20.619,8.042,0.478,5.978,19.936,5.005,29.947,19.165,4.169,28.193,15.369,-4.767,-0.879,16.531,-1.819,11.767,7.345,17.654,17.847,19.771,7.417,16.019,8.431,-4.347,12.71,12.477,22.116,9.985,7.626,18.053,7.573,25.065,9.929,6.467,9.585,3.952,13.293,13.17,16.389,14.383,10.537,8.724,8.702,20.204,11.268,18.873,0.952,22.097,14.245,16.406,18.661,15.196,-1.484,5.18,4.802,39.531,24.378,0.212,26.169,12.585,3.212,9.847,20.421,19.732,4.606,13.916,15.718,17.176,15.837,16.539,0.717,1.293,13.11,4.06,37.75,11.367,11.487,4.117],[12.762,25.869,16.912,-0.976,9.543,6.95,-2.84,10.986,13.371,1.257,8.79,18.357,22.393,17.885,3.195,5.152,5.705,21.404,9.17,-6.047,4.483,9.858,1.706,22.351,13.613,4.814,29.994,19.422,17.799,13.682,6.687,17.552,-1.659,18.547,10.987,-3.649,6.679,8.345,17.294,12.166,2.584,23.291,14.101,7.112,8.263,11.12,21.971,17.57,9.781,15.263,17.478,-1.052,16.17,15.682,38.184,5.044,12.486,4.96,21.324,1.009,4.041,26.212,13.743,10.046,24.427,-0.633,11.82,-0.777,12.931,18.876,21.087,10.375,12.884,-0.176,-4.162,7.384,26.431,9.618,7.524,14.309,5.067,4.251,17.265,7.705,15.55,10.185,7.675,16.696,-1.213,1.363,23.857,18.574,17.998,4.067,9.475,23.614,6.902,6.357,1.184,14.91,4.959,22.953,10.718,7.297,-4.473,11.124,17.329,4.265,4.4,20.9,13.199,12.374,-7.264,21.255,20.818,8.272,1.349,5.816,19.964,5.052,30.128,19.27,4.005,28.609,15.45,-4.486,-1.605,17.548,-1.652,11.841,7.591,17.761,17.138,19.962,7.366,16.006,8.365,-4.664,12.369,12.432,22.746,9.842,7.914,17.431,8.272,25.307,10.309,6.446,9.388,3.575,13.024,13.086,16.279,13.763,10.126,8.542,8.446,20.133,10.426,18.961,1.1,22.123,14.409,16.298,19.285,14.976,-1.405,5.417,4.885,39.446,24.373,0.113,26.353,12.744,3.454,9.937,20.355,19.903,4.803,13.958,15.792,17.368,15.854,16.486,0.697,1.243,13.532,4.51,38.381,11.078,11.531,4.487],[12.72,25.92,16.841,-0.996,9.567,6.771,-2.871,11.053,13.335,1.113,9.02,18.222,22.537,17.864,3.253,5.126,5.929,21.368,9.216,-6.314,4.711,9.833,1.927,22.304,13.672,4.874,30.211,19.435,18.065,13.584,6.953,17.256,-1.436,18.524,10.776,-3.726,6.554,8.518,17.347,12.186,2.494,23.374,13.933,7.031,8.17,10.829,22.048,17.555,9.703,15.305,17.522,-0.883,15.985,15.394,38.182,5.179,12.586,5.07,21.503,1.016,3.834,26.236,13.582,10.129,24.354,-0.767,11.867,-1.204,13.187,18.995,21.091,10.922,12.109,-0.5,-4.516,8.159,26.855,9.977,7.789,14.512,5.25,4.485,16.996,7.694,15.85,10.521,7.26,16.504,-1.847,1.838,23.463,18.475,17.828,3.837,9.736,23.839,6.94,5.872,1.734,14.506,5.237,22.89,10.896,7.596,-4.556,10.757,17.767,4.106,3.926,21.035,12.915,12.192,-7.095,21.73,20.643,8.051,1.261,5.665,20.095,5.406,29.979,19.489,4.0,28.776,15.222,-4.671,-1.263,17.936,-1.997,11.962,7.231,18.086,16.606,20.124,7.836,16.045,8.143,-5.108,11.979,12.369,23.064,9.85,7.528,17.326,8.023,25.387,9.382,5.701,9.236,3.861,13.741,12.915,16.279,13.671,10.079,8.303,8.491,20.44,10.566,18.778,1.354,21.857,13.717,15.952,19.265,14.744,-1.716,5.503,4.755,39.353,24.607,0.311,26.296,12.883,3.865,10.074,20.293,20.306,4.522,13.976,15.635,16.784,15.887,16.94,0.948,1.325,14.067,4.427,39.028,11.648,11.359,4.148],[12.637,25.93,17.021,-1.044,9.767,6.558,-2.913,10.959,13.224,1.053,9.3,18.124,22.621,17.822,3.318,4.907,6.078,21.455,9.339,-6.488,4.787,9.6,2.062,22.222,13.541,4.884,30.338,19.303,18.248,13.497,7.125,17.073,-1.285,18.476,10.619,-3.772,6.545,8.784,17.405,12.367,2.626,23.455,13.841,6.909,8.096,10.771,22.195,17.43,9.595,15.293,17.432,-0.821,15.971,15.338,38.241,5.26,12.836,5.004,21.582,1.108,3.725,26.231,13.449,10.354,24.686,-0.714,11.736,-1.655,12.676,18.931,20.798,10.827,12.256,-0.886,-4.669,8.321,26.712,9.541,8.337,14.468,5.14,4.109,16.69,8.005,15.502,10.744,7.042,16.329,-1.998,1.821,23.278,18.063,17.322,4.138,9.739,23.961,6.777,5.888,1.723,14.97,5.869,22.934,10.817,7.997,-4.601,11.045,17.968,4.182,3.641,21.002,12.635,12.276,-7.386,22.146,20.531,7.905,0.98,5.917,19.984,5.407,30.096,19.565,4.566,28.816,15.227,-4.849,-0.407,17.005,-1.629,11.815,7.517,18.648,16.609,19.98,8.301,15.927,8.114,-4.527,11.645,12.281,22.831,9.326,6.96,17.84,7.684,25.443,9.759,5.622,9.015,4.201,13.825,12.729,16.118,13.648,10.106,8.452,8.724,20.525,10.908,18.837,1.103,22.064,13.564,16.004,18.94,14.686,-1.102,5.425,4.319,39.298,24.543,1.089,25.99,12.144,3.635,9.823,20.572,20.464,4.95,13.472,15.778,16.263,15.242,16.982,0.979,1.297,13.921,3.708,39.007,11.648,11.515,4.094],[12.585,25.942,17.25,-1.205,9.921,6.522,-2.843,10.671,13.091,1.05,9.579,18.003,22.62,17.68,3.313,4.609,6.131,21.668,9.408,-6.584,4.879,9.483,1.816,22.206,13.431,4.873,30.357,19.106,18.366,13.458,7.259,16.941,-1.081,18.486,10.529,-3.68,6.517,9.059,17.513,12.414,2.719,23.528,13.788,6.784,8.118,10.76,22.375,17.315,9.557,15.322,17.341,-0.93,15.86,15.337,38.297,5.248,13.143,4.907,21.58,1.366,3.595,26.202,13.253,10.505,24.406,-0.8,11.703,-1.896,12.403,18.724,20.882,10.25,12.706,-0.515,-4.614,7.843,26.625,9.139,8.878,14.295,4.692,4.393,17.368,8.09,15.533,10.801,7.477,16.412,-1.706,1.87,22.979,17.801,17.31,4.23,9.66,23.54,6.399,6.752,1.501,15.058,5.576,23.103,11.063,7.654,-5.186,10.825,17.872,3.979,3.731,20.656,12.687,12.036,-8.038,22.239,20.341,7.886,1.335,6.05,19.841,5.221,30.414,19.714,4.459,28.716,15.341,-4.642,-0.372,15.89,-1.74,11.716,8.009,18.761,16.782,19.616,8.448,16.096,8.322,-4.763,11.726,11.968,22.37,9.042,6.7,18.091,8.416,25.335,9.407,6.249,9.018,4.219,13.921,13.038,16.257,13.669,10.337,8.205,8.562,20.605,10.644,18.679,1.337,22.361,13.668,16.252,18.901,14.744,-0.687,5.378,4.326,39.54,24.402,0.769,26.034,12.398,3.591,10.212,20.824,20.154,5.429,13.942,15.655,16.77,15.487,16.339,0.893,1.702,14.089,4.078,38.328,11.735,11.843,4.511],[12.586,25.912,17.442,-1.406,9.948,6.641,-2.81,10.38,13.112,1.084,9.639,17.981,22.61,17.396,3.346,4.473,6.232,21.793,9.411,-6.644,4.931,9.49,1.511,22.265,13.44,4.738,30.393,18.966,18.404,13.57,7.407,16.828,-0.748,18.54,10.557,-3.467,6.594,9.265,17.701,12.38,2.738,23.489,13.669,6.683,8.13,10.674,22.464,17.218,9.486,15.363,17.243,-1.211,15.782,15.247,38.382,5.308,13.605,4.934,21.479,1.625,3.673,26.183,13.175,10.529,24.128,-0.631,11.986,-1.726,12.003,18.306,20.733,9.66,12.989,-0.823,-4.392,8.021,26.658,9.257,9.895,14.046,4.845,4.287,17.664,8.082,16.294,10.912,7.467,16.31,-1.912,2.064,22.882,17.792,17.763,3.83,9.605,23.15,6.274,6.565,1.567,14.737,5.687,23.068,10.918,7.716,-5.274,10.298,18.234,3.428,4.081,20.504,12.912,12.012,-8.309,22.561,20.362,7.682,0.646,6.189,19.525,5.553,30.209,19.866,3.804,28.749,15.129,-4.681,-0.524,15.608,-1.499,11.759,8.005,18.036,16.78,19.632,8.09,15.99,7.966,-4.817,11.822,12.095,22.364,8.762,6.433,17.879,8.988,25.332,9.61,5.777,9.18,4.312,13.464,13.493,16.258,13.653,9.916,8.646,8.489,20.54,10.213,18.837,1.647,22.79,13.729,16.292,18.836,14.561,-1.11,5.168,4.358,39.835,24.471,0.618,26.371,12.62,3.9,10.822,20.602,19.85,4.902,13.989,15.712,16.727,15.641,16.288,0.513,1.81,14.599,3.945,38.033,11.616,12.18,4.167],[12.628,25.753,17.397,-1.677,10.066,6.701,-3.001,10.345,13.102,1.273,9.677,18.122,22.573,17.143,3.271,4.537,6.192,21.789,9.3,-6.632,4.96,9.419,1.331,22.321,13.6,4.569,30.435,18.914,18.411,13.66,7.385,16.803,-0.411,18.547,10.607,-3.342,6.623,9.209,17.755,12.295,2.776,23.371,13.611,6.568,8.043,10.582,22.394,17.2,9.408,15.407,17.273,-1.506,15.847,15.049,38.509,5.468,14.012,4.967,21.42,1.691,3.827,26.147,13.231,10.696,24.406,-0.607,12.128,-1.621,11.701,17.965,20.861,9.829,12.721,-1.149,-4.601,8.166,26.361,9.183,10.533,14.133,5.271,4.337,17.26,8.182,16.753,10.526,7.414,16.32,-1.829,1.618,22.748,18.066,17.765,3.713,9.928,23.271,6.276,6.259,1.165,14.689,5.868,23.123,10.719,7.981,-5.093,10.598,18.992,3.67,4.083,20.514,13.15,12.082,-7.834,22.393,20.352,7.607,0.094,6.245,19.609,5.612,30.106,19.706,3.658,28.912,15.539,-4.473,-0.505,15.906,-0.717,11.72,7.874,17.715,16.282,19.889,8.13,16.372,8.174,-4.222,11.807,12.203,23.093,8.998,6.926,17.907,8.705,25.206,9.645,5.593,9.033,4.29,13.067,13.533,16.543,13.243,9.326,9.345,8.027,20.407,10.084,18.85,1.678,22.791,13.338,15.806,18.444,14.773,-1.781,4.852,4.577,39.882,24.375,1.412,26.199,12.333,4.145,10.267,20.418,20.181,4.721,13.677,15.947,16.276,15.014,16.414,0.23,1.838,14.781,3.729,38.237,11.662,12.944,4.096],[12.667,25.563,17.196,-2.047,10.123,6.624,-3.119,10.48,13.038,1.344,9.713,18.426,22.631,17.056,3.156,4.705,6.073,21.664,9.312,-6.583,5.0,9.281,1.184,22.31,13.663,4.448,30.383,18.876,18.495,13.779,7.154,16.773,-0.135,18.529,10.679,-3.248,6.629,9.086,17.826,12.14,2.808,23.407,13.59,6.446,8.056,10.469,22.355,17.344,9.275,15.413,17.411,-1.691,15.947,14.732,38.552,5.754,14.216,4.962,21.461,1.613,3.938,26.035,13.237,10.91,24.232,-0.452,11.994,-2.159,11.923,17.995,20.819,9.941,12.704,-1.158,-4.703,8.251,26.368,9.326,10.294,14.438,5.086,4.454,16.863,8.37,16.242,10.704,7.455,16.843,-2.044,1.666,22.645,18.212,17.07,3.75,9.738,23.478,6.559,5.886,1.487,14.923,5.395,23.131,10.919,7.95,-4.912,10.785,19.311,4.115,3.792,20.778,13.118,12.216,-7.539,22.086,19.81,7.677,0.293,5.918,19.786,5.418,30.88,19.745,4.005,28.712,15.557,-4.176,0.008,16.694,-0.677,11.725,7.77,18.057,15.872,20.052,8.048,16.326,8.219,-4.526,11.971,11.971,23.229,8.815,7.457,18.177,8.591,25.301,9.016,5.847,8.977,4.179,13.326,13.012,16.704,13.038,9.905,9.168,8.035,20.459,10.015,18.59,1.769,22.112,13.039,15.774,18.596,15.023,-2.254,4.783,4.675,39.973,24.401,1.84,25.716,12.904,4.065,10.651,20.379,20.374,5.451,13.928,15.843,16.091,14.851,16.431,0.203,1.75,14.903,4.012,38.644,12.153,13.225,4.218],[12.63,25.529,16.892,-2.348,10.157,6.399,-3.052,10.461,12.997,1.49,9.78,18.705,22.592,17.196,3.193,4.955,6.025,21.427,9.329,-6.587,4.906,9.124,1.253,22.163,13.735,4.391,30.247,18.718,18.638,13.884,6.917,16.815,0.034,18.647,10.755,-3.346,6.712,9.071,17.747,12.027,2.821,23.63,13.411,6.519,7.989,10.468,22.26,17.47,9.233,15.377,17.573,-1.766,16.088,14.611,38.686,6.066,14.336,5.048,21.567,1.465,3.909,25.944,13.384,11.179,24.026,-0.345,11.75,-3.246,12.035,18.123,21.656,10.147,12.783,-1.178,-4.74,8.179,26.329,8.969,9.623,14.356,4.635,4.277,16.965,8.273,15.584,11.008,7.43,17.165,-2.058,1.951,22.78,18.22,16.702,3.881,9.789,23.818,6.696,6.299,1.302,14.82,5.477,22.635,10.921,7.616,-4.772,10.302,19.511,3.821,3.122,20.848,13.134,12.065,-7.923,22.055,19.877,7.511,0.055,5.797,19.403,5.593,31.144,19.986,4.022,28.662,15.422,-4.208,0.285,16.92,-0.711,11.909,7.661,18.677,15.672,19.761,8.223,16.278,7.931,-4.741,12.026,12.027,22.731,8.976,7.373,18.124,7.945,25.571,9.108,6.043,8.976,4.548,13.553,12.752,16.833,13.914,9.588,8.543,7.848,20.518,9.926,19.023,2.22,22.357,13.037,16.326,19.012,14.655,-2.251,4.546,4.759,39.533,24.385,1.352,25.507,12.748,4.367,10.821,20.555,20.088,5.944,13.771,15.696,16.042,15.373,16.595,0.037,1.733,15.434,4.23,38.168,11.871,13.018,4.163],[12.454,25.529,16.71,-2.551,10.207,6.143,-3.099,10.224,12.884,1.583,9.886,18.757,22.703,17.371,3.356,5.118,6.042,21.208,9.342,-6.753,4.87,8.95,1.301,21.984,13.658,4.205,30.075,18.588,18.762,13.949,6.777,16.848,0.103,18.818,10.904,-3.565,6.844,9.109,17.548,12.018,3.044,23.729,13.362,6.566,7.906,10.535,22.146,17.581,9.286,15.324,17.78,-1.77,16.201,14.657,38.828,6.251,14.48,5.193,21.565,1.346,3.727,25.899,13.539,11.206,24.342,-0.23,11.797,-3.477,11.852,18.153,21.109,9.881,13.019,-1.633,-4.305,8.46,26.254,8.727,9.383,14.087,4.453,3.943,16.824,8.32,15.484,10.749,7.204,17.14,-1.448,2.41,22.975,18.552,17.586,4.262,9.618,23.745,6.644,6.534,1.587,14.883,5.977,22.663,10.954,7.755,-5.006,10.09,19.549,3.772,3.461,20.764,13.469,12.229,-8.066,21.908,19.946,7.157,-0.254,5.631,19.346,5.036,30.967,20.051,3.683,28.367,15.868,-4.275,-0.034,16.783,-0.415,11.884,7.358,18.578,15.826,20.065,8.43,16.043,8.319,-4.585,12.365,11.828,22.767,9.117,7.44,18.103,8.089,25.642,9.145,6.238,8.787,4.689,13.671,12.214,16.76,13.871,9.271,8.328,7.898,20.433,10.088,18.832,1.811,22.405,12.944,16.094,19.269,14.733,-1.989,4.571,4.529,39.318,24.06,1.231,26.126,12.147,4.612,11.321,20.872,20.174,5.974,14.223,16.047,15.765,16.207,16.763,0.008,1.491,15.088,4.075,37.86,12.287,13.604,4.479],[12.323,25.513,16.747,-2.672,10.273,6.035,-3.131,9.902,12.802,1.59,10.079,18.683,22.829,17.611,3.481,5.169,6.192,21.232,9.388,-6.967,4.94,8.755,1.292,21.936,13.498,4.084,30.001,18.69,18.81,14.14,6.657,16.797,-0.007,18.911,11.073,-3.517,7.073,9.143,17.453,11.979,3.376,23.498,13.34,6.471,7.875,10.522,22.008,17.428,9.333,15.245,17.991,-1.587,16.447,14.462,39.006,6.206,14.618,5.326,21.475,1.396,3.388,25.933,13.554,11.238,24.151,-0.164,11.749,-2.943,12.126,18.073,21.024,9.32,12.81,-1.584,-3.885,8.341,26.205,8.594,9.958,13.855,4.33,4.669,16.589,8.549,15.722,10.666,6.429,17.206,-1.37,2.445,22.935,18.656,17.75,4.031,9.904,23.445,6.762,5.863,1.321,14.832,5.971,22.81,10.851,7.98,-5.448,10.057,19.113,4.038,3.187,20.606,13.649,12.528,-8.079,21.556,19.729,6.999,0.254,5.471,19.27,5.331,30.311,19.726,3.354,28.199,15.909,-4.362,-0.063,16.631,0.011,11.926,7.297,18.426,16.165,20.018,8.332,15.724,8.432,-4.412,12.538,11.928,23.112,9.289,7.505,17.914,8.874,25.416,9.454,6.428,8.934,4.515,13.38,12.621,16.299,12.936,9.482,8.382,7.976,20.516,10.262,18.695,1.765,21.864,12.772,15.601,19.553,14.859,-1.603,4.978,4.419,39.798,24.114,0.784,26.351,12.508,4.749,11.044,21.045,19.874,5.539,14.008,16.256,15.894,16.668,16.619,0.129,1.227,15.435,4.18,38.624,12.067,13.295,4.382],[12.34,25.458,16.942,-2.524,10.254,5.991,-2.981,9.568,12.909,1.514,10.287,18.64,22.948,17.784,3.506,5.156,6.368,21.388,9.452,-7.086,5.011,8.711,1.213,21.995,13.573,3.929,30.028,18.83,18.837,14.222,6.441,16.712,-0.16,18.942,11.134,-3.311,7.31,9.258,17.41,11.963,3.497,23.301,13.188,6.38,7.923,10.535,21.816,17.034,9.525,15.208,18.082,-1.363,16.724,14.241,39.286,6.037,14.723,5.34,21.34,1.436,3.188,25.918,13.436,11.22,23.943,-0.276,11.853,-3.249,11.947,18.192,21.296,9.049,12.737,-1.737,-4.14,8.428,25.936,8.552,10.616,13.893,4.078,4.777,16.658,8.479,15.63,10.835,6.535,17.028,-1.677,2.4,22.741,18.348,17.33,4.392,10.25,23.584,6.913,5.962,1.24,14.777,5.214,22.715,10.712,8.253,-5.45,9.742,18.184,4.148,3.06,20.58,13.612,11.968,-8.109,21.947,20.146,6.984,0.523,5.475,19.478,5.825,29.423,19.98,3.516,28.639,15.76,-4.063,-0.257,15.957,0.129,12.115,7.361,18.462,16.713,19.815,8.224,16.085,8.844,-4.765,12.348,11.835,23.097,9.106,6.971,17.546,8.527,25.185,8.859,6.785,9.186,4.378,13.087,12.938,16.029,12.992,9.431,8.371,7.984,20.041,9.569,18.701,2.569,21.907,12.698,15.397,19.594,15.32,-1.579,5.315,4.068,40.408,24.311,0.634,26.062,12.421,4.455,10.485,20.743,19.756,5.705,14.038,15.909,15.493,16.556,17.01,0.426,1.449,15.499,3.501,38.458,12.232,13.324,4.618],[12.538,25.409,17.039,-2.326,10.194,6.021,-2.722,9.338,13.095,1.438,10.412,18.726,22.942,17.731,3.673,5.055,6.44,21.488,9.463,-7.075,4.851,8.656,1.173,22.237,13.749,3.696,29.922,18.907,18.757,14.097,6.203,16.574,-0.246,18.892,11.287,-3.21,7.559,9.192,17.245,11.87,3.431,23.229,13.113,6.308,7.877,10.354,21.607,16.618,9.59,15.062,18.126,-1.315,16.971,14.026,39.553,5.918,14.762,5.394,21.236,1.406,3.179,25.869,13.334,11.234,23.865,-0.525,12.094,-3.029,12.002,18.728,21.422,8.608,13.172,-1.85,-4.181,8.697,25.69,8.067,11.193,14.009,4.305,4.032,16.529,8.349,16.006,10.501,6.723,17.053,-1.362,2.078,22.691,18.437,17.486,4.17,10.159,23.854,6.779,6.552,1.693,14.981,5.47,22.89,10.909,8.343,-5.314,9.798,18.228,3.976,3.13,20.886,13.75,12.085,-8.492,22.372,20.374,6.911,-0.059,5.365,19.721,5.699,29.801,20.04,3.267,28.721,16.114,-3.655,-0.678,15.409,-0.373,12.576,6.937,18.223,17.059,20.562,8.36,15.921,9.095,-4.788,12.16,11.796,22.887,9.292,6.75,18.078,8.859,25.091,9.293,6.959,8.806,4.681,13.14,12.58,16.221,13.83,9.675,8.83,7.837,19.883,9.613,18.389,2.552,22.073,12.297,15.821,19.644,15.369,-1.533,5.181,4.045,40.428,24.31,1.538,25.751,12.084,4.124,11.013,20.529,19.784,6.2,14.418,16.068,15.085,16.444,17.612,0.514,1.464,15.004,3.159,38.472,12.38,13.724,4.598],[12.818,25.337,16.835,-2.233,10.203,6.182,-2.433,9.192,13.186,1.389,10.527,18.977,22.875,17.617,3.686,4.88,6.412,21.486,9.493,-7.037,4.646,8.678,1.197,22.473,14.031,3.425,29.897,18.989,18.721,14.076,5.984,16.465,-0.446,18.838,11.553,-3.298,7.644,9.142,17.205,11.598,3.172,23.204,13.176,6.262,7.94,9.974,21.527,16.422,9.609,14.996,18.225,-1.32,17.181,13.796,39.793,5.98,14.693,5.497,21.28,1.408,3.274,25.748,13.232,11.404,23.819,-0.366,11.907,-2.649,12.489,18.875,21.384,8.327,13.488,-1.304,-3.586,8.683,25.861,7.928,11.19,14.489,4.381,4.544,16.885,8.469,16.091,10.79,7.169,17.52,-1.176,2.139,22.86,18.696,17.513,4.387,9.609,24.255,6.556,6.398,1.372,15.122,5.706,22.873,10.85,8.068,-5.266,9.975,18.659,3.903,3.017,21.552,14.006,12.77,-8.166,21.9,20.064,6.879,0.085,4.676,19.719,5.131,30.219,19.812,2.725,28.172,15.755,-3.263,-0.064,14.804,-1.251,12.749,7.166,18.191,17.242,20.474,8.461,15.495,9.051,-4.623,12.649,11.828,22.79,8.956,6.973,17.821,8.809,25.047,9.505,7.084,8.352,4.602,13.053,12.267,16.099,13.157,9.975,8.263,7.977,19.75,9.88,17.945,1.704,21.871,12.071,15.8,19.755,15.681,-1.642,4.985,4.399,40.582,24.138,1.299,26.321,12.512,4.205,11.301,20.805,19.514,5.831,13.937,16.3,14.929,16.735,18.406,0.573,1.615,15.407,3.875,38.918,12.093,13.333,4.598],[13.124,25.275,16.581,-2.166,10.29,6.301,-2.182,9.139,13.254,1.377,10.634,19.293,22.845,17.498,3.838,4.905,6.332,21.255,9.312,-6.917,4.574,8.826,1.313,22.623,14.329,3.143,29.888,18.962,18.782,14.11,5.793,16.405,-0.66,18.811,11.803,-3.427,7.55,9.177,17.252,11.314,2.796,23.256,12.99,6.37,8.002,9.703,21.407,16.363,9.602,14.925,18.437,-1.275,17.543,13.639,39.925,5.97,14.637,5.54,21.316,1.444,3.449,25.667,13.163,11.513,23.592,-0.065,12.084,-2.352,12.407,18.645,21.202,8.392,13.32,-1.391,-3.645,9.037,25.784,7.874,11.153,14.716,4.491,4.784,16.437,8.524,15.459,10.856,7.431,17.513,-0.987,2.323,22.663,18.915,17.501,4.649,10.025,24.418,6.436,6.055,1.435,15.484,5.255,22.624,11.017,8.209,-5.172,9.754,19.143,3.589,2.758,21.881,14.596,12.682,-7.829,21.757,20.305,7.06,0.084,4.85,19.759,4.888,29.898,19.647,2.9,28.309,15.335,-3.912,-0.393,14.678,-1.034,12.551,6.68,18.136,17.078,20.038,8.602,15.903,9.099,-4.504,13.181,11.68,22.69,8.642,6.889,17.447,8.085,25.224,9.43,7.384,8.142,3.874,12.508,12.249,15.698,13.086,9.52,7.957,8.073,19.793,9.238,18.007,1.458,22.104,12.044,15.674,20.123,15.802,-1.301,5.357,4.329,40.69,23.888,0.78,26.462,11.997,4.515,10.989,21.554,19.389,5.601,14.369,16.273,14.904,16.985,18.859,0.457,1.424,15.222,4.16,39.434,12.334,13.408,4.788],[13.266,25.091,16.312,-2.144,10.378,6.202,-2.024,9.015,13.451,1.376,10.783,19.422,22.807,17.554,4.223,5.067,6.327,20.935,9.343,-6.772,4.547,8.944,1.577,22.731,14.393,2.952,29.727,18.953,18.832,14.295,5.656,16.331,-0.793,18.8,11.956,-3.597,7.5,9.141,17.284,11.037,2.531,23.231,12.704,6.511,8.023,9.4,21.365,16.417,9.419,14.834,18.735,-1.061,17.805,13.633,40.027,5.908,14.676,5.579,21.343,1.494,3.638,25.705,13.209,11.511,23.496,-0.563,12.491,-2.024,12.603,17.829,21.28,8.452,13.678,-1.361,-3.027,9.084,25.754,7.859,11.515,14.777,4.702,4.745,15.69,8.788,15.539,10.104,7.379,17.663,-0.594,1.834,22.613,19.375,16.99,4.389,9.9,24.52,6.826,6.175,1.399,15.97,5.326,22.467,10.362,8.208,-5.022,9.815,19.125,3.674,2.146,21.449,15.024,13.038,-8.085,21.476,20.328,7.169,0.011,5.075,19.931,5.349,29.598,19.944,2.652,28.581,15.816,-4.703,-0.922,14.518,-1.01,13.116,6.432,17.914,17.349,19.844,8.453,15.542,8.653,-4.677,12.816,11.812,22.799,8.332,6.575,17.922,8.553,25.25,9.701,6.839,8.162,3.412,12.405,11.647,15.347,13.597,9.039,8.549,8.157,19.669,9.175,18.042,1.249,22.173,11.971,15.564,20.193,16.215,-1.284,6.233,4.114,40.092,23.926,0.937,25.863,12.004,4.372,11.053,21.621,19.57,5.676,14.007,16.189,14.536,17.522,18.562,0.529,1.018,14.489,3.903,39.427,11.868,13.833,4.64],[13.251,24.873,16.061,-2.1,10.356,6.077,-1.87,8.805,13.78,1.051,10.934,19.414,22.861,17.588,4.494,5.163,6.419,20.802,9.334,-6.872,4.618,9.0,1.785,22.817,14.52,2.8,29.563,19.072,18.932,14.582,5.639,16.269,-0.968,18.683,11.912,-3.89,7.4,9.135,17.225,10.844,2.507,23.286,12.67,6.488,8.13,9.202,21.439,16.548,9.15,14.731,18.654,-0.871,17.94,13.688,39.962,5.887,14.772,5.722,21.298,1.568,3.635,25.77,13.169,11.401,23.451,-0.718,12.915,-2.243,12.805,17.706,21.42,8.364,13.89,-1.286,-2.631,9.283,25.301,7.382,11.618,14.87,4.297,5.13,16.269,8.77,15.441,10.397,7.096,17.807,-0.383,1.627,22.873,19.321,17.409,4.843,10.131,24.242,6.893,6.326,1.7,15.911,5.285,22.461,10.651,8.12,-5.016,10.067,18.086,4.225,2.065,21.384,14.959,13.02,-7.926,20.885,20.2,7.148,0.439,4.639,19.978,5.385,29.614,19.674,2.588,28.186,16.169,-4.512,-0.581,14.562,-1.057,13.157,6.547,17.933,17.386,20.052,8.246,15.752,8.938,-4.929,12.987,11.089,22.904,8.195,6.735,18.066,9.41,25.34,9.611,6.097,7.831,3.683,12.474,11.328,15.48,12.81,9.18,9.001,8.269,19.647,9.209,17.923,1.12,21.581,11.931,15.54,20.35,16.548,-1.091,5.886,4.497,40.828,24.181,1.216,25.615,12.023,4.146,10.928,21.048,19.602,5.648,14.169,15.872,14.258,17.958,18.444,0.956,1.642,15.166,4.297,38.894,12.034,13.718,4.677],[13.222,24.82,16.063,-2.024,10.33,6.01,-1.792,8.732,13.994,0.592,11.072,19.345,22.944,17.631,4.587,5.132,6.582,20.753,9.426,-7.041,4.671,9.012,1.862,22.786,14.51,2.759,29.403,19.223,18.894,14.688,5.456,16.235,-1.13,18.717,11.851,-4.109,7.261,9.266,17.284,10.893,2.523,23.52,12.597,6.335,8.293,9.144,21.306,16.677,9.017,14.566,18.492,-0.766,18.096,13.631,39.819,5.905,14.983,5.789,21.153,1.796,3.675,25.807,13.132,11.304,23.493,-0.675,12.658,-2.643,13.137,18.205,21.647,8.308,13.558,-1.291,-2.746,9.245,24.984,7.472,11.643,14.846,4.323,5.283,16.532,8.564,15.283,10.866,6.727,17.576,-0.439,1.425,23.319,18.798,17.396,5.199,9.896,24.584,6.592,6.128,1.968,15.92,5.59,22.205,10.796,8.465,-5.183,9.986,17.324,3.819,2.337,21.639,15.096,12.94,-7.94,21.266,20.675,7.338,0.711,4.66,19.992,5.285,29.497,19.721,2.652,28.096,16.221,-4.221,-0.816,14.633,-1.088,12.626,6.673,17.707,17.303,20.377,8.384,15.623,8.978,-5.403,13.143,11.231,23.122,8.536,7.064,17.627,9.317,25.555,9.017,6.542,7.858,3.853,12.196,11.69,15.84,13.152,9.093,8.926,7.911,19.756,8.782,18.197,1.454,21.838,11.874,15.54,19.647,16.404,-0.487,5.786,4.947,41.173,23.967,1.187,26.314,11.781,4.374,10.777,20.265,19.925,5.781,14.457,15.947,14.232,18.104,18.826,0.933,1.661,15.303,4.247,38.756,12.707,13.284,4.972],[13.18,24.776,16.165,-1.988,10.465,5.94,-1.775,8.838,14.02,0.111,11.125,19.181,23.002,17.669,4.558,4.803,6.726,20.749,9.444,-7.204,4.844,8.933,1.866,22.824,14.341,2.887,29.371,19.392,18.862,14.775,5.251,16.214,-1.403,18.831,11.806,-4.17,7.214,9.46,17.298,10.984,2.494,23.706,12.787,6.293,8.538,9.134,21.175,16.745,8.985,14.47,18.45,-0.656,18.212,13.529,39.634,6.11,15.061,5.727,21.218,2.032,3.817,25.824,13.204,11.31,23.193,-1.222,12.539,-2.368,13.577,18.586,21.934,8.275,13.65,-1.146,-2.468,9.496,25.273,7.487,11.558,14.722,4.495,5.47,15.689,8.761,15.29,10.482,6.978,17.752,-0.16,0.976,23.671,18.763,17.457,5.118,10.255,24.732,6.387,6.259,1.103,15.674,5.033,22.129,10.966,8.544,-5.499,10.194,17.281,3.248,2.505,22.301,15.395,12.743,-8.251,21.562,20.979,7.313,0.538,4.501,20.156,5.571,29.589,19.246,2.25,27.991,16.262,-4.596,-0.831,14.539,-1.386,12.916,6.267,17.852,17.498,20.522,8.2,15.649,8.591,-5.425,12.678,11.44,23.171,8.652,7.436,17.183,8.715,25.625,8.907,6.808,7.904,3.379,11.86,11.396,15.971,13.484,8.804,9.001,7.403,19.732,9.033,18.462,1.296,22.102,11.757,15.264,19.332,16.452,-0.048,5.863,4.3,40.373,24.157,1.208,26.426,12.267,4.773,11.045,20.12,20.003,5.727,14.035,15.786,14.291,18.483,18.632,0.761,1.56,15.238,4.123,38.915,12.384,13.379,4.847],[13.147,24.652,16.06,-1.956,10.628,6.069,-1.631,8.889,14.052,-0.278,11.1,19.191,23.059,17.711,4.523,4.446,6.732,20.826,9.522,-7.377,4.997,8.877,1.585,23.047,14.137,3.082,29.434,19.443,18.795,14.888,4.949,16.262,-1.663,18.891,11.803,-4.158,7.286,9.456,17.252,10.836,2.366,23.636,12.998,6.278,8.853,9.195,21.12,16.726,8.87,14.385,18.375,-0.549,18.364,13.466,39.492,6.425,14.982,5.593,21.473,2.166,3.828,25.775,13.286,11.376,23.197,-2.061,12.875,-2.211,13.331,18.816,21.769,8.443,13.94,-1.224,-2.245,9.619,25.461,7.475,11.424,14.517,4.225,5.14,15.619,9.037,15.528,10.595,6.927,17.572,-0.126,0.382,23.797,18.788,17.653,4.773,10.075,24.914,6.158,6.338,1.142,15.327,5.721,22.357,10.806,8.46,-5.535,10.331,17.857,3.31,2.282,22.064,15.62,12.477,-8.41,21.049,20.542,7.295,0.522,4.695,20.416,5.16,29.819,19.065,2.509,27.929,16.378,-4.694,-1.064,14.855,-1.339,13.091,6.439,18.022,17.335,20.303,8.672,15.626,8.603,-5.289,12.733,11.51,23.134,8.478,7.345,17.945,8.373,25.549,8.966,6.961,7.81,3.137,12.341,11.754,15.868,13.118,9.153,8.96,7.63,19.861,9.249,18.223,0.978,21.44,11.707,15.332,19.696,16.902,-0.126,5.709,4.25,40.293,24.139,1.638,25.731,11.916,5.018,10.955,20.958,20.01,5.759,14.619,15.483,14.175,18.346,18.575,1.096,1.688,15.276,4.205,38.097,12.339,13.839,5.027],[13.113,24.563,15.898,-2.013,10.738,6.14,-1.378,8.87,14.176,-0.531,10.983,19.34,23.136,17.758,4.519,4.27,6.622,20.851,9.578,-7.447,5.021,8.888,1.252,23.127,13.965,3.317,29.665,19.525,18.891,15.004,4.814,16.347,-1.815,18.899,11.785,-4.255,7.494,9.273,17.432,10.85,2.136,23.527,12.925,6.379,9.038,9.269,20.879,16.607,8.774,14.319,18.254,-0.539,18.545,13.397,39.339,6.668,14.953,5.479,21.727,2.236,3.794,25.709,13.408,11.48,23.428,-2.178,13.28,-2.389,13.155,18.622,21.473,8.877,13.537,-1.239,-2.722,9.663,25.316,7.311,11.338,14.689,4.389,5.23,16.462,9.046,15.247,10.847,6.875,17.528,-0.168,0.267,23.524,18.974,17.865,4.397,10.701,24.877,5.811,6.16,1.493,15.196,5.99,22.468,10.672,8.475,-5.748,9.902,17.653,3.203,1.779,21.877,15.542,12.556,-8.515,21.194,20.807,7.257,0.014,4.64,20.423,5.241,29.648,19.202,3.074,28.161,16.289,-5.066,-1.19,15.371,-1.772,12.585,6.253,18.579,17.482,19.927,9.059,15.794,9.153,-5.284,12.905,11.537,22.8,9.131,6.507,18.307,8.448,25.406,8.912,7.139,7.981,3.167,12.105,11.689,15.446,13.942,9.045,9.167,8.042,19.671,9.068,18.1,1.021,22.158,11.652,14.848,19.488,17.12,-0.38,5.719,4.62,40.268,23.797,2.051,25.855,11.897,5.036,11.041,21.0,20.305,6.248,14.123,15.89,13.795,17.889,18.399,1.253,2.227,14.813,4.021,38.313,12.453,13.69,5.318],[13.078,24.539,15.858,-2.245,10.797,6.033,-1.308,8.82,14.416,-0.744,10.874,19.501,23.222,17.832,4.603,4.232,6.484,20.859,9.748,-7.436,4.912,8.816,1.12,22.964,13.938,3.466,29.995,19.669,19.002,15.11,4.84,16.518,-1.898,18.934,11.694,-4.522,7.887,9.148,17.735,10.917,1.987,23.399,12.914,6.464,9.152,9.349,20.793,16.459,8.665,14.385,17.94,-0.593,18.507,13.418,39.105,6.73,14.954,5.538,21.6,2.48,3.838,25.935,13.498,11.534,22.86,-1.589,13.017,-2.664,13.689,18.115,21.698,8.629,12.773,-1.391,-2.593,9.167,25.308,7.208,11.625,14.832,4.48,5.509,16.02,9.067,14.822,11.025,7.101,17.968,-0.078,0.283,23.185,19.055,17.679,4.724,10.826,24.757,5.924,6.273,0.761,15.316,5.386,22.476,11.09,8.307,-5.649,9.651,17.317,3.004,2.359,22.074,15.391,12.41,-8.273,21.111,21.407,7.335,-0.167,4.614,20.246,5.975,29.748,19.597,3.072,28.267,16.484,-4.967,-1.444,15.649,-1.447,12.769,6.218,18.469,18.071,20.33,8.143,15.998,9.167,-5.611,12.592,11.379,23.031,9.328,6.218,18.232,8.414,25.17,8.607,7.02,8.02,3.07,12.123,11.53,15.131,13.854,8.63,9.229,8.27,19.413,9.216,17.886,0.713,21.751,11.492,14.509,19.175,17.075,-0.73,5.736,4.664,39.968,24.248,1.645,26.359,12.057,5.323,11.285,20.52,20.272,6.476,13.898,16.199,13.691,18.134,18.244,0.903,1.939,15.135,3.577,38.779,12.511,13.414,4.851],[12.902,24.555,15.865,-2.57,10.839,5.909,-1.326,8.621,14.615,-0.888,10.928,19.616,23.451,17.764,4.674,4.317,6.49,20.743,10.062,-7.261,4.88,8.66,1.038,22.762,13.926,3.613,30.185,19.745,18.97,15.156,4.9,16.806,-1.891,18.958,11.683,-4.86,7.908,8.915,17.896,11.023,1.965,23.229,13.016,6.522,9.298,9.367,20.817,16.282,8.435,14.467,17.639,-0.589,18.411,13.588,38.875,6.647,15.078,5.697,21.303,2.613,3.749,26.328,13.399,11.442,22.783,-1.901,12.999,-3.154,14.123,18.369,22.043,8.145,13.049,-1.799,-1.993,9.172,25.307,7.39,11.327,14.674,4.257,5.146,15.431,8.972,14.881,10.771,7.14,18.254,0.257,0.268,22.633,18.895,17.856,4.813,10.403,24.619,5.679,6.157,0.386,15.166,5.206,22.33,11.522,8.137,-5.482,9.911,17.692,2.76,3.562,22.006,15.557,12.113,-8.165,20.856,21.204,7.044,0.114,4.435,20.235,5.834,30.556,19.601,3.04,28.953,16.683,-4.944,-1.695,16.096,-1.471,12.946,6.647,18.347,18.241,20.55,8.457,16.071,9.634,-5.699,12.834,11.492,23.359,9.045,6.064,18.381,8.622,25.133,8.636,7.404,7.995,2.93,12.459,11.629,15.421,13.232,8.516,8.871,8.325,19.465,9.455,17.967,0.506,20.568,11.788,15.011,19.127,16.833,-0.655,5.775,4.961,39.919,24.731,1.53,26.005,11.795,5.288,11.395,20.698,19.865,6.249,14.357,15.931,13.923,18.729,17.822,1.12,2.025,15.053,4.087,37.724,12.792,13.73,5.202],[12.717,24.678,15.858,-2.822,10.836,5.885,-1.301,8.432,14.681,-0.992,11.023,19.586,23.737,17.654,4.558,4.354,6.645,20.596,10.171,-7.11,4.909,8.596,0.996,22.555,13.664,3.772,30.493,19.734,18.894,15.056,4.995,17.145,-1.903,18.896,11.927,-5.08,7.69,8.873,17.875,11.191,1.863,23.16,13.073,6.587,9.301,9.174,20.591,16.301,8.273,14.59,17.551,-0.554,18.39,13.799,38.566,6.528,15.203,5.885,21.131,2.609,3.807,26.471,13.459,11.42,23.28,-2.364,13.25,-3.463,14.099,18.259,22.078,8.073,13.514,-2.045,-1.435,9.749,25.393,7.115,10.929,14.083,4.382,5.048,15.892,9.074,15.193,11.151,6.942,18.261,0.327,0.142,22.997,18.662,18.18,4.835,10.734,24.407,5.8,6.128,0.538,14.857,5.541,21.787,11.76,8.416,-5.368,9.897,17.66,2.96,4.656,21.891,15.158,12.201,-8.067,21.261,20.949,7.106,-0.103,4.481,20.615,5.315,30.839,19.474,3.306,29.159,16.763,-5.888,-1.38,16.515,-1.904,13.02,6.561,18.601,18.423,20.307,8.211,16.161,9.181,-6.269,12.79,11.591,22.693,9.171,5.905,18.633,8.197,25.086,8.473,7.118,7.972,3.094,12.652,11.75,15.261,13.865,8.08,9.424,8.281,19.534,9.125,18.023,0.849,20.936,12.194,15.345,18.866,17.239,-0.554,6.073,4.887,39.845,24.789,1.863,26.454,11.759,4.855,11.492,20.667,19.483,6.061,13.927,15.922,13.985,19.243,17.581,1.272,2.267,15.551,4.155,37.659,12.521,13.977,5.462],[12.626,24.78,16.069,-2.865,11.06,5.982,-1.147,8.324,14.693,-1.116,11.14,19.493,23.884,17.501,4.285,4.393,6.942,20.571,10.156,-7.126,4.912,8.705,0.922,22.41,13.456,3.893,30.763,19.725,18.893,14.808,5.03,17.591,-2.016,18.72,11.828,-5.348,7.363,8.843,17.848,11.453,1.839,23.108,13.278,6.567,9.292,8.797,20.505,16.395,8.215,14.844,17.525,-0.55,18.585,14.018,38.233,6.401,15.323,6.053,21.016,2.523,4.009,26.473,13.47,11.496,23.425,-2.611,13.367,-3.426,13.881,17.823,22.04,8.035,13.465,-1.724,-1.6,9.844,25.699,6.881,11.028,13.587,4.201,5.302,16.102,9.262,14.761,11.163,6.645,18.027,0.047,-0.288,24.279,18.738,17.353,4.574,10.975,24.277,6.172,6.37,0.571,14.714,5.877,21.995,11.55,8.681,-5.427,9.949,17.313,3.487,5.471,21.745,15.233,11.68,-8.125,20.77,20.938,7.026,-0.248,4.612,20.955,5.399,30.706,19.403,3.479,28.914,16.046,-6.296,-1.066,16.82,-1.377,12.703,6.47,18.264,18.693,20.395,8.289,16.129,8.777,-6.483,13.173,11.529,22.037,9.492,6.679,18.57,8.366,24.807,8.074,6.875,7.775,2.831,12.8,12.02,15.425,13.77,8.252,10.019,8.234,19.296,8.843,17.846,0.806,21.33,12.103,15.45,18.739,17.315,-0.165,5.945,4.495,39.468,24.695,1.762,26.732,11.972,5.268,11.117,20.541,19.691,6.151,13.656,16.367,13.818,19.223,17.827,1.036,2.376,15.081,3.882,38.263,12.502,13.834,5.199],[12.508,24.996,16.251,-2.678,11.282,5.955,-0.938,8.264,14.774,-1.267,11.275,19.447,23.976,17.131,3.966,4.497,7.254,20.642,10.054,-7.294,4.944,8.877,0.838,22.385,13.318,3.932,30.827,19.838,18.732,14.45,4.994,17.899,-2.086,18.482,11.547,-5.46,7.043,8.762,17.746,11.673,1.796,23.068,13.414,6.603,9.474,8.531,20.496,16.4,8.32,15.105,17.551,-0.513,18.839,14.079,37.986,6.488,15.219,6.127,20.95,2.338,4.095,26.438,13.345,11.56,23.081,-2.699,13.255,-3.257,14.059,17.696,22.335,8.253,13.292,-1.903,-2.248,9.439,25.85,6.996,11.414,14.113,4.223,5.26,16.121,9.404,14.924,11.182,6.986,17.898,0.301,-0.381,25.024,18.951,17.385,4.199,10.939,24.163,6.153,6.772,0.304,14.721,6.168,22.322,11.035,8.954,-5.388,9.94,17.812,3.237,5.57,21.261,15.198,11.548,-8.02,20.599,20.817,7.071,-0.385,4.58,20.818,5.346,30.841,19.239,3.524,29.099,16.021,-6.42,-0.866,17.494,-1.738,12.392,6.602,18.332,19.657,20.112,7.709,15.925,8.764,-6.041,12.943,11.688,22.068,8.756,7.299,18.305,8.728,24.823,8.384,6.551,7.553,3.049,13.257,12.422,15.398,13.614,8.304,9.624,8.197,19.587,9.023,18.199,0.582,21.307,12.472,15.319,18.884,17.327,-0.418,5.857,4.811,39.242,24.632,1.692,26.28,11.857,5.018,11.304,20.652,19.374,6.189,13.649,16.692,14.038,19.046,18.055,1.213,1.988,15.361,4.011,38.308,12.398,13.772,5.368],[12.53,25.211,16.418,-2.494,11.324,5.962,-0.868,8.328,14.922,-1.469,11.348,19.437,24.196,16.769,3.772,4.575,7.417,20.819,9.827,-7.386,4.96,9.086,0.779,22.245,13.344,3.813,30.9,19.931,18.511,14.291,5.082,18.275,-2.129,18.363,11.313,-5.459,6.802,8.566,17.717,11.84,1.703,23.132,13.381,6.854,9.45,8.309,20.543,16.392,8.523,15.184,17.633,-0.529,19.048,14.194,37.878,6.572,15.023,6.215,20.861,2.05,4.139,26.313,13.103,11.643,23.473,-2.573,13.583,-3.195,14.33,17.242,22.429,8.261,12.586,-1.595,-2.219,9.572,25.913,6.926,11.994,14.308,4.399,4.757,16.217,9.458,15.275,11.769,7.011,17.754,0.398,-0.08,25.146,18.885,17.018,4.214,10.484,24.063,5.802,7.003,0.258,14.557,5.993,22.29,11.068,9.039,-5.634,10.03,18.044,2.876,5.243,21.169,14.815,11.739,-8.424,20.931,21.313,7.372,-0.235,4.336,20.806,5.411,30.831,19.185,3.482,29.247,15.804,-5.806,-1.579,17.655,-1.748,12.276,6.648,18.179,20.096,19.882,7.55,15.894,8.396,-6.137,12.25,11.827,22.658,8.794,7.135,18.083,7.901,25.014,8.913,6.167,7.805,2.923,13.401,12.25,15.252,13.755,8.244,9.546,8.294,19.324,9.284,17.943,0.675,21.048,12.463,15.396,19.001,17.644,-0.788,5.974,5.044,39.418,24.837,1.833,25.79,11.644,4.742,11.855,20.632,19.18,6.45,13.91,16.875,13.926,18.919,17.967,1.325,1.725,15.693,4.614,37.736,12.745,14.195,5.215],[12.384,25.327,16.617,-2.445,11.463,6.122,-0.963,8.478,15.109,-1.537,11.552,19.379,24.445,16.596,3.666,4.576,7.337,20.95,9.556,-7.394,4.97,9.327,0.835,22.277,13.484,3.581,30.859,20.064,18.326,14.319,5.163,18.474,-2.142,18.37,11.017,-5.397,6.527,8.363,17.631,11.758,1.599,23.319,13.348,7.148,9.356,8.121,20.667,16.191,8.726,15.312,17.73,-0.645,19.115,14.009,37.816,6.449,14.873,6.291,20.897,1.817,4.228,26.218,12.923,11.91,23.854,-2.509,13.976,-2.544,14.102,17.116,22.573,7.941,12.35,-1.6,-1.783,9.814,26.331,7.077,12.028,14.085,4.332,4.798,16.316,9.642,15.136,11.808,6.933,17.778,0.207,-0.429,25.129,18.665,16.722,4.465,10.049,23.986,5.997,6.82,0.366,14.524,5.368,22.44,10.966,9.09,-5.829,10.631,17.821,3.133,5.071,21.034,14.87,11.75,-8.703,21.164,21.355,7.73,-0.032,4.866,21.133,5.518,30.747,19.532,3.112,29.385,15.694,-5.719,-1.67,17.488,-1.299,12.096,6.642,17.778,20.18,20.153,7.54,15.913,8.121,-6.247,12.102,11.543,22.888,9.065,7.045,18.506,7.144,25.18,8.757,6.264,7.907,2.64,13.337,11.774,15.31,13.486,8.47,9.256,8.973,19.547,8.895,17.94,0.211,20.786,12.977,15.61,18.971,17.746,-0.653,5.996,5.279,39.461,24.788,1.53,26.062,11.635,5.17,11.829,20.383,19.344,6.65,13.192,16.858,14.405,19.166,17.844,0.998,2.124,15.3,4.608,37.545,12.437,13.932,5.108],[12.282,25.43,16.677,-2.391,11.614,6.275,-1.029,8.585,15.194,-1.508,11.756,19.337,24.537,16.542,3.757,4.67,7.113,20.913,9.245,-7.413,4.886,9.438,1.115,22.331,13.47,3.259,30.745,20.154,18.337,14.314,5.265,18.288,-2.021,18.339,10.801,-5.323,6.432,8.159,17.623,11.574,1.419,23.512,13.233,7.353,9.296,8.059,20.89,15.979,8.729,15.448,17.767,-0.703,19.08,13.77,37.644,6.33,14.707,6.36,20.989,1.839,4.378,26.221,12.787,12.079,24.053,-2.377,14.204,-2.223,13.988,17.317,22.769,7.988,13.187,-1.843,-1.609,10.206,25.808,7.621,11.368,13.933,4.488,5.129,16.252,9.768,15.617,11.503,6.768,17.966,0.031,-0.9,25.077,18.575,17.05,4.001,9.744,24.245,6.445,6.895,0.387,14.841,5.327,22.423,10.545,9.042,-5.578,10.829,17.578,3.712,5.044,21.746,15.098,11.924,-8.437,21.464,21.307,7.99,-0.055,5.172,21.002,4.956,30.985,19.153,2.764,29.217,15.888,-5.919,-0.75,17.541,-1.54,11.904,6.616,18.405,19.931,20.037,7.734,16.016,8.045,-6.234,12.081,11.683,22.834,8.272,7.261,18.424,7.006,25.381,9.04,6.135,7.569,2.684,13.012,12.225,14.957,13.754,8.518,8.861,9.213,19.623,8.822,17.904,0.322,21.142,12.881,15.903,18.874,17.646,-0.669,6.394,5.466,39.283,24.458,1.519,26.155,11.573,4.979,11.593,20.71,19.533,6.103,13.272,16.83,15.335,19.582,17.719,1.124,1.463,15.083,4.054,37.772,12.997,13.56,5.145],[12.466,25.407,16.672,-2.322,11.561,6.245,-1.069,8.699,15.184,-1.534,11.9,19.394,24.57,16.725,3.904,4.797,7.069,20.889,8.995,-7.312,4.747,9.392,1.319,22.491,13.438,2.883,30.566,20.109,18.417,14.438,5.404,18.024,-1.839,18.229,10.762,-5.264,6.481,7.975,17.699,11.672,1.38,23.52,13.251,7.316,9.014,7.935,21.154,15.842,8.663,15.41,17.695,-0.514,19.041,13.703,37.514,6.195,14.68,6.43,21.176,1.887,4.386,26.138,12.668,12.011,23.686,-2.451,14.111,-2.61,14.184,17.516,22.618,8.131,13.119,-1.241,-1.799,10.241,25.813,7.664,11.553,13.986,4.514,5.139,16.502,10.134,15.29,11.751,7.018,17.924,0.179,-0.442,25.137,18.555,16.82,4.228,9.604,24.369,6.587,7.039,1.04,14.525,5.859,22.274,10.296,8.589,-5.459,10.587,17.241,4.115,4.654,21.751,14.854,12.141,-8.236,21.27,21.3,7.873,0.494,4.85,20.777,5.0,31.126,18.593,2.845,29.047,15.942,-5.403,-0.856,17.792,-1.187,11.527,6.896,18.419,19.553,19.875,7.354,15.921,7.853,-6.578,12.255,11.631,22.841,8.683,7.443,18.267,7.697,25.332,9.233,5.761,7.615,2.753,12.964,12.709,14.779,13.802,8.391,9.299,8.91,19.819,8.829,17.447,0.371,21.85,12.349,15.804,19.195,17.786,-0.87,6.426,5.338,39.278,24.289,1.589,25.959,11.452,4.683,12.087,21.097,19.435,5.653,13.315,16.888,15.386,19.661,17.578,1.202,1.703,14.831,4.689,37.156,13.077,13.535,5.636],[12.592,25.383,16.558,-2.191,11.58,6.119,-1.069,8.743,15.27,-1.5,11.904,19.48,24.543,17.046,4.095,4.928,7.179,20.809,9.006,-7.086,4.829,9.284,1.605,22.552,13.356,2.622,30.489,19.951,18.413,14.584,5.49,17.876,-1.621,18.156,10.826,-5.196,6.451,7.928,17.639,12.008,1.553,23.354,13.357,7.176,8.957,7.782,21.385,15.697,8.719,15.173,17.645,-0.34,19.078,13.699,37.43,6.028,14.745,6.526,21.318,1.97,4.186,25.927,12.551,11.876,23.683,-2.537,14.02,-2.989,14.038,17.331,22.663,7.734,12.837,-1.552,-2.25,10.241,25.792,7.557,11.966,14.3,4.42,4.889,16.499,9.815,15.369,11.725,7.224,17.95,-0.115,-0.223,25.273,18.875,17.507,4.553,9.499,24.3,6.595,6.763,1.191,14.408,5.68,22.381,10.548,8.825,-5.37,10.526,16.991,3.85,4.079,21.328,15.052,11.831,-8.243,21.307,21.425,7.477,0.433,5.063,20.789,5.327,30.375,18.5,2.938,28.753,16.021,-5.208,-1.222,17.888,-0.895,11.302,6.621,17.657,19.471,19.973,7.143,16.138,8.078,-6.596,12.54,11.548,22.583,8.492,7.092,18.414,8.018,25.254,9.295,5.79,7.342,2.846,13.094,12.573,14.619,13.531,8.281,8.874,9.004,20.128,8.621,17.456,0.319,22.229,12.184,15.791,19.285,17.504,-0.525,6.023,5.155,39.311,24.336,1.87,26.197,11.405,4.544,11.904,20.843,19.542,6.062,12.887,16.802,14.618,19.503,17.6,1.07,2.497,15.055,5.026,36.571,12.493,13.588,5.707],[12.554,25.67,16.511,-2.191,11.509,6.071,-1.141,8.576,15.267,-1.395,11.764,19.559,24.543,17.444,4.278,5.031,7.144,20.706,9.173,-6.885,4.882,9.092,1.756,22.456,13.164,2.506,30.289,19.839,18.355,14.691,5.534,17.839,-1.417,18.145,10.769,-5.148,6.429,7.99,17.681,12.243,1.712,23.173,13.422,7.088,9.019,7.562,21.452,15.565,8.887,15.096,17.752,-0.298,19.009,13.606,37.224,5.906,14.905,6.634,21.177,2.184,3.944,25.839,12.386,11.738,23.901,-2.109,14.109,-2.355,14.133,18.074,22.742,7.839,13.275,-1.391,-2.371,10.165,25.585,7.62,12.29,14.198,4.28,5.491,16.106,9.578,15.452,11.972,7.05,17.887,-0.037,-0.46,24.984,19.289,17.527,4.537,9.57,24.109,6.388,6.876,0.78,14.473,5.692,22.438,10.449,8.98,-5.037,10.472,17.096,3.367,3.83,21.344,15.364,11.676,-8.147,21.034,21.073,7.57,0.453,5.064,20.591,5.691,29.865,19.087,2.128,28.869,15.928,-5.58,-0.645,17.785,-0.87,11.592,6.707,17.939,19.486,19.885,7.317,15.926,8.061,-6.426,12.284,12.031,22.89,7.876,7.087,18.438,8.029,25.053,8.937,6.014,7.129,2.966,13.66,12.647,14.659,13.764,8.9,8.565,8.827,20.052,8.578,17.456,0.656,21.322,11.784,15.837,18.924,17.687,-0.213,6.358,5.203,39.008,24.145,2.099,26.0,11.187,4.68,11.58,20.946,19.745,6.409,13.353,16.373,14.474,19.376,17.507,1.481,1.885,15.39,3.982,37.168,12.739,13.713,5.369],[12.725,25.974,16.428,-2.133,11.474,6.061,-1.208,8.425,15.046,-1.247,11.587,19.595,24.545,17.877,4.408,4.926,6.975,20.652,9.287,-6.85,4.786,8.828,1.701,22.284,13.056,2.34,30.029,19.715,18.31,14.77,5.618,17.884,-1.18,18.255,10.496,-5.124,6.447,8.142,17.739,12.405,1.767,23.285,13.559,7.054,8.92,7.252,21.172,15.531,9.16,15.174,17.864,-0.319,18.969,13.436,37.15,5.98,15.113,6.784,21.082,2.413,3.813,25.75,12.413,11.824,24.349,-2.095,14.376,-1.632,13.956,18.472,22.826,8.436,13.329,-1.855,-2.037,10.035,26.317,7.031,12.294,14.369,4.171,5.574,16.453,9.755,15.22,11.999,6.815,17.874,0.113,-0.155,25.21,19.114,17.791,4.637,9.876,24.161,6.573,6.51,0.55,14.397,5.773,22.21,10.761,8.8,-4.933,10.359,17.319,3.892,4.028,21.268,15.505,11.349,-7.41,20.587,21.051,7.742,0.736,5.233,20.195,5.465,30.168,19.434,1.774,28.337,16.05,-5.703,-0.524,17.841,-0.717,11.651,7.112,18.32,19.606,19.637,7.358,15.997,8.186,-6.234,11.678,11.95,22.751,8.608,7.051,18.575,7.904,25.138,8.346,6.276,6.943,3.313,13.76,12.705,14.619,14.34,8.634,8.934,8.825,19.713,8.216,16.975,1.203,20.984,11.652,15.832,18.958,17.688,-0.623,6.673,4.794,38.774,23.963,1.696,25.642,10.937,4.676,10.988,20.738,19.315,5.614,12.697,16.561,14.448,19.438,17.619,1.251,1.921,15.624,3.821,37.125,12.662,13.578,5.629],[13.156,26.195,16.318,-2.02,11.601,5.954,-1.206,8.411,14.945,-1.085,11.435,19.532,24.581,18.251,4.432,4.888,6.781,20.491,9.383,-6.714,4.643,8.529,1.674,22.119,13.072,2.291,29.802,19.561,18.351,14.796,5.771,18.114,-0.932,18.366,10.313,-5.019,6.493,8.332,17.756,12.493,1.937,23.404,13.727,6.996,8.959,7.011,20.875,15.539,9.123,15.207,17.874,-0.5,18.944,13.277,37.134,6.049,15.255,6.828,20.982,2.439,3.781,25.513,12.43,11.808,24.401,-2.527,13.805,-1.845,13.576,18.192,22.847,8.531,13.25,-1.145,-1.664,9.704,26.279,7.008,11.628,14.808,4.182,4.996,16.832,9.985,15.26,11.792,7.088,18.024,0.103,0.021,25.72,18.83,18.41,4.753,9.876,23.936,6.722,6.168,0.519,14.245,5.263,21.999,10.921,8.547,-5.003,10.099,17.843,4.443,3.837,21.099,15.757,11.365,-7.435,20.865,21.174,7.497,0.551,5.291,20.137,5.138,30.144,18.791,2.216,28.085,15.943,-5.433,-0.64,17.549,-0.627,11.332,6.969,18.327,19.627,19.575,7.319,16.191,8.132,-6.164,11.487,12.167,22.436,8.35,7.192,18.548,7.431,25.272,9.184,6.225,6.729,3.3,13.742,12.965,14.282,13.98,8.855,8.646,8.695,19.721,7.668,16.874,0.993,21.509,11.558,15.591,19.466,17.411,-1.098,6.238,4.476,38.999,23.871,2.118,25.516,10.931,4.705,11.045,20.492,19.313,5.539,12.601,16.963,14.148,19.633,17.982,0.851,2.953,15.34,4.315,36.692,12.966,14.075,6.201],[13.492,26.313,16.26,-1.843,11.577,5.911,-1.116,8.461,14.97,-1.033,11.232,19.557,24.796,18.458,4.332,5.051,6.576,20.32,9.356,-6.574,4.504,8.322,1.723,21.974,13.17,2.345,29.574,19.478,18.558,14.811,5.81,18.298,-0.78,18.373,10.351,-4.849,6.419,8.302,17.746,12.503,2.075,23.298,13.837,6.912,8.946,6.74,20.818,15.47,9.214,15.125,17.964,-0.808,18.895,13.088,37.226,6.082,15.287,6.769,20.797,2.492,3.733,25.325,12.471,11.776,24.691,-2.447,13.544,-2.061,14.136,18.777,22.892,8.018,13.768,-1.17,-1.923,9.446,25.926,7.412,11.657,15.241,4.25,5.115,16.348,9.978,15.165,11.833,7.295,17.809,-0.201,0.058,25.519,19.453,18.327,4.377,9.649,23.697,6.868,6.192,1.073,14.421,5.541,21.717,10.844,8.28,-4.826,10.048,17.71,4.327,3.547,21.173,16.224,11.733,-7.802,20.621,21.007,7.14,0.265,5.189,20.279,4.975,29.841,18.391,2.5,27.707,15.898,-5.322,-0.029,17.395,-0.355,11.315,7.031,18.158,19.89,20.124,7.633,16.227,7.831,-6.335,11.778,12.298,22.763,7.803,7.278,17.987,7.379,25.116,9.455,6.21,6.559,3.172,13.773,13.25,14.383,13.664,8.801,8.65,8.554,19.683,7.713,17.183,0.621,21.585,11.371,15.65,19.57,17.439,-0.408,6.669,4.442,38.859,23.57,2.318,25.482,10.883,4.868,11.677,20.481,19.216,6.421,13.129,16.751,14.22,19.3,18.023,0.797,3.007,15.023,3.923,36.942,13.1,14.252,5.957],[13.742,26.22,16.177,-1.743,11.367,6.069,-1.073,8.364,15.242,-1.036,11.149,19.765,24.993,18.673,4.101,5.271,6.455,20.087,9.194,-6.561,4.452,8.219,1.708,22.007,13.417,2.375,29.355,19.444,18.865,14.968,5.672,18.247,-0.669,18.292,10.574,-4.721,6.309,8.216,17.629,12.428,2.109,23.154,13.895,6.861,8.884,6.478,20.912,15.434,9.415,15.076,18.117,-0.908,18.819,13.026,37.477,6.313,15.23,6.733,20.555,2.579,3.579,25.219,12.591,11.828,24.479,-2.447,13.92,-2.169,14.295,18.974,23.151,7.066,14.192,-1.572,-2.253,9.298,26.173,7.791,12.141,15.448,4.435,5.083,15.86,9.662,14.961,11.934,7.039,18.059,0.048,0.273,25.213,19.647,18.413,4.578,9.885,23.591,6.785,6.161,1.348,14.64,5.282,21.624,10.728,8.239,-4.739,9.8,17.701,4.239,3.984,21.085,16.134,11.983,-7.422,20.211,20.409,7.092,0.537,5.079,20.421,4.732,29.257,18.686,2.222,27.71,15.966,-5.002,-0.225,18.081,-0.204,11.242,7.166,18.131,19.904,20.017,7.353,15.919,7.969,-6.346,12.156,12.157,22.863,8.222,7.102,18.272,7.597,25.056,9.271,5.804,6.602,3.59,13.666,12.958,14.757,13.834,8.813,8.603,8.522,19.706,7.404,17.113,1.065,21.151,11.319,16.232,19.338,17.573,-0.677,6.805,4.52,39.132,23.323,1.926,25.711,11.04,4.807,11.614,20.076,19.051,6.272,13.151,15.997,13.966,18.864,17.931,0.757,2.545,15.402,4.203,36.994,12.298,13.705,5.541],[13.973,25.864,16.157,-1.814,11.199,6.224,-1.032,8.095,15.492,-0.963,11.412,20.06,25.004,18.917,3.836,5.454,6.332,19.833,9.195,-6.479,4.308,8.173,1.643,22.076,13.616,2.387,29.149,19.347,19.347,15.168,5.545,18.089,-0.565,18.177,10.817,-4.643,6.27,8.188,17.59,12.177,2.338,23.06,13.887,6.844,8.935,6.41,20.995,15.481,9.489,15.108,18.142,-1.042,18.683,13.003,37.693,6.379,15.164,6.617,20.278,2.496,3.467,25.124,12.618,11.656,24.368,-2.511,14.613,-2.409,14.052,18.998,23.217,7.333,14.309,-1.137,-2.192,9.536,26.314,6.713,12.042,15.245,4.432,4.751,15.533,9.594,14.914,11.763,7.098,18.59,0.321,0.322,25.563,19.337,18.447,4.912,10.108,23.992,6.818,6.305,0.721,14.931,4.887,21.183,10.471,8.181,-4.602,9.924,17.606,4.441,3.754,21.232,16.167,12.004,-6.968,20.378,20.311,6.947,1.002,4.956,20.788,5.13,29.143,19.049,1.825,27.444,16.262,-5.174,-0.846,18.51,-0.64,11.256,6.754,18.371,19.732,19.721,6.982,16.072,7.968,-5.95,12.479,12.345,22.395,8.231,6.337,18.352,7.677,24.843,9.808,5.623,6.488,3.561,13.439,12.677,14.41,14.187,9.357,8.566,8.725,19.67,7.293,17.102,1.342,21.645,11.405,16.094,19.578,17.497,-1.288,6.416,4.47,39.398,23.422,2.379,25.52,11.451,4.928,11.67,20.229,18.59,6.175,13.242,16.435,14.143,18.831,18.344,0.649,2.305,15.447,4.259,37.183,12.175,14.039,5.455],[13.982,25.518,15.913,-1.963,11.121,6.232,-0.974,7.833,15.567,-0.766,11.854,20.294,25.068,19.093,3.743,5.512,6.259,19.711,9.317,-6.259,4.144,8.248,1.535,22.242,13.699,2.3,28.996,19.357,19.766,15.402,5.343,18.074,-0.653,18.241,10.948,-4.649,6.299,8.24,17.691,11.812,2.55,22.923,13.891,6.782,8.923,6.599,21.152,15.511,9.701,15.309,18.115,-1.328,18.573,13.038,37.871,6.349,15.199,6.383,20.284,2.485,3.457,24.978,12.562,11.394,23.789,-2.088,15.073,-2.742,13.961,19.105,23.119,7.653,14.288,-1.642,-2.054,9.982,25.797,6.327,11.932,15.697,4.475,4.46,16.132,9.772,14.843,11.29,7.477,18.948,0.443,0.394,25.746,19.595,18.351,4.462,9.975,24.109,7.282,6.28,0.688,15.027,5.125,20.806,10.452,7.862,-4.729,9.871,17.948,4.579,3.361,21.532,16.332,12.069,-6.826,20.397,20.663,6.942,0.753,5.135,20.529,4.777,29.417,20.095,1.783,27.415,16.636,-5.235,-0.195,18.282,-0.736,11.189,6.974,17.898,19.716,19.652,7.332,16.04,8.053,-6.119,12.684,12.316,22.11,8.124,6.077,17.888,7.202,24.768,9.933,5.85,6.223,3.504,13.292,12.513,14.398,14.269,8.765,8.619,8.579,20.016,7.083,17.021,1.514,21.535,11.389,15.383,19.819,17.168,-0.993,6.438,4.421,38.991,23.288,2.047,25.274,11.39,4.977,11.718,20.335,18.569,6.019,13.211,16.929,14.288,18.997,18.219,0.043,2.215,15.166,3.668,37.334,11.905,13.741,5.461],[13.964,25.181,15.555,-2.255,11.112,6.121,-1.002,7.678,15.705,-0.508,12.035,20.494,25.018,19.229,3.722,5.482,6.14,19.769,9.453,-6.147,4.042,8.397,1.417,22.422,13.648,2.212,28.795,19.439,20.269,15.628,5.171,18.231,-0.695,18.338,10.934,-4.743,6.413,8.483,17.769,11.511,2.608,22.81,13.879,6.614,8.961,6.744,21.284,15.465,9.859,15.437,18.135,-1.633,18.498,13.112,37.879,6.412,15.262,6.196,20.489,2.514,3.427,24.809,12.416,11.061,23.445,-1.807,14.971,-2.935,14.246,18.85,23.325,6.852,14.179,-1.712,-2.005,10.241,25.16,6.763,12.656,15.789,4.649,4.46,16.4,9.509,14.875,11.221,7.444,18.718,0.565,0.793,25.717,20.399,18.493,3.767,10.027,23.716,7.302,5.952,1.335,15.111,5.277,20.798,10.908,8.027,-4.576,9.912,18.573,4.607,3.271,21.555,16.882,12.224,-6.471,20.332,20.57,7.053,0.12,4.547,20.202,4.387,29.554,20.31,2.006,27.262,16.499,-5.264,-0.446,18.193,-0.463,11.06,6.747,18.143,19.888,19.436,7.788,16.22,7.915,-6.352,12.73,12.248,22.101,7.892,6.274,18.372,7.265,24.291,9.719,6.03,6.46,3.903,12.903,12.286,14.72,14.006,8.906,8.547,8.416,20.021,7.226,16.818,1.563,21.817,11.42,15.759,19.707,17.3,-1.375,6.484,4.756,39.39,22.955,2.299,25.639,10.946,4.749,11.015,20.216,18.73,6.229,13.367,16.868,14.331,19.234,18.137,-0.215,2.399,15.074,3.212,37.512,11.828,13.616,5.161],[13.993,24.937,15.354,-2.471,11.006,6.031,-1.078,7.606,15.992,-0.247,12.062,20.51,25.033,19.239,3.712,5.348,5.998,19.864,9.631,-6.111,4.009,8.597,1.208,22.359,13.459,2.162,28.592,19.421,20.653,15.806,5.191,18.433,-0.727,18.527,10.812,-4.9,6.522,8.734,17.907,11.326,2.62,22.763,13.71,6.467,8.872,6.761,21.297,15.38,9.894,15.446,18.304,-1.937,18.432,13.243,37.988,6.488,15.357,6.157,20.499,2.618,3.243,24.8,12.334,10.729,23.401,-1.757,15.137,-3.584,14.483,19.04,23.123,6.923,14.254,-2.285,-2.256,10.153,25.236,6.491,12.827,15.51,4.28,4.776,15.652,9.233,14.832,11.33,7.285,18.654,0.449,0.761,26.167,20.787,18.854,3.925,10.246,24.179,7.011,5.685,1.678,15.239,4.589,21.362,10.977,7.889,-4.248,10.073,19.595,4.532,3.586,21.755,17.263,12.536,-6.271,20.672,20.313,7.126,0.236,4.149,20.821,4.216,29.201,20.225,1.766,27.018,16.286,-5.124,-0.345,18.268,-0.693,11.265,6.447,18.52,20.092,19.665,8.167,16.535,8.1,-6.037,12.43,12.647,22.202,8.002,6.308,18.74,7.548,24.248,9.754,6.361,7.027,3.616,12.425,12.42,13.998,14.147,9.348,8.983,8.259,19.8,7.628,16.68,1.37,22.183,11.487,16.423,19.713,17.699,-1.746,6.166,4.482,39.494,23.034,2.25,25.589,10.889,5.077,10.878,20.698,18.667,6.517,13.242,16.447,13.833,19.582,18.326,-0.309,2.105,14.756,3.73,37.688,11.788,14.086,5.012],[13.978,24.772,15.14,-2.515,10.833,5.985,-1.211,7.681,16.236,-0.13,12.055,20.442,25.223,19.185,3.754,5.186,5.85,20.111,9.685,-6.086,3.936,8.825,1.021,22.287,13.411,2.167,28.395,19.477,21.069,15.955,5.134,18.637,-0.81,18.599,10.803,-4.882,6.688,8.884,18.059,11.174,2.467,22.732,13.654,6.324,8.791,6.778,21.382,15.259,9.917,15.238,18.495,-2.12,18.372,13.268,38.327,6.741,15.337,6.255,20.394,2.656,3.036,24.928,12.245,10.598,23.656,-1.332,15.454,-3.762,14.739,19.365,23.506,7.409,14.643,-2.319,-2.512,10.265,25.267,6.293,12.292,15.369,4.2,4.533,15.431,9.359,14.134,11.282,6.89,18.709,0.302,0.826,26.172,20.374,18.842,5.104,10.781,24.162,6.37,5.641,0.805,15.221,4.06,21.689,10.675,7.658,-4.429,10.405,20.011,4.189,3.555,21.377,17.562,12.652,-6.262,20.471,20.251,7.377,0.541,4.733,20.96,4.993,28.557,19.99,1.861,26.986,16.61,-5.084,-0.561,18.855,-0.411,11.798,6.816,18.669,19.972,20.07,8.092,16.5,8.056,-6.416,12.157,12.327,22.121,7.814,6.701,18.479,7.611,24.414,9.868,6.369,6.7,3.625,11.908,12.208,13.809,13.985,9.017,8.77,8.023,20.193,7.833,16.395,1.709,21.802,11.468,16.009,20.035,17.468,-1.47,5.824,3.538,39.122,23.107,1.931,25.503,10.975,5.463,10.904,21.045,18.546,6.175,13.365,16.283,13.892,19.699,18.33,-0.433,2.144,15.255,3.942,37.71,11.184,14.853,5.048],[13.926,24.713,14.966,-2.474,10.794,5.804,-1.317,7.855,16.284,-0.143,12.031,20.34,25.33,19.018,3.939,5.092,5.728,20.251,9.646,-6.084,3.878,9.155,0.925,22.188,13.544,2.173,28.151,19.505,21.382,16.129,5.123,18.762,-0.715,18.526,10.96,-4.728,6.884,8.86,18.08,10.947,2.377,22.664,13.674,6.2,8.687,6.76,21.53,14.999,9.859,14.894,18.525,-1.916,18.289,13.262,38.75,6.974,15.514,6.221,20.34,2.676,2.805,25.104,12.222,10.562,23.479,-1.582,15.718,-2.891,14.896,19.435,23.68,7.656,14.592,-1.737,-2.585,10.428,25.279,6.738,12.23,15.449,4.077,4.115,15.624,9.244,13.483,11.069,6.822,18.796,0.104,0.847,26.514,19.65,18.895,4.926,10.734,24.094,6.373,5.606,0.369,15.196,4.279,21.813,10.758,7.573,-4.783,10.704,20.145,3.649,3.799,21.989,17.415,12.479,-6.428,20.773,20.248,7.821,-0.161,4.655,20.483,5.285,28.117,20.735,1.882,27.031,16.997,-4.89,-0.935,19.392,-0.756,11.738,6.773,18.305,20.353,19.432,8.283,16.482,8.28,-6.496,12.227,12.192,21.998,7.782,7.057,18.663,7.913,24.494,9.588,6.352,6.207,3.574,11.777,11.937,14.228,13.846,8.769,8.886,7.655,20.112,7.925,16.611,1.334,21.73,11.664,15.146,20.164,17.405,-1.651,6.159,3.16,39.375,23.363,2.683,25.599,11.052,5.514,10.643,20.552,18.598,6.591,13.529,16.375,13.53,19.351,18.088,-0.227,1.974,14.968,3.264,37.647,10.536,14.868,5.214],[13.748,24.804,14.809,-2.35,10.847,5.574,-1.428,8.033,16.242,-0.343,12.147,20.258,25.402,18.827,4.034,4.992,5.626,20.35,9.549,-6.202,3.854,9.561,0.745,22.428,13.693,2.231,27.965,19.502,21.623,16.243,5.209,18.793,-0.729,18.368,11.059,-4.509,7.056,8.751,18.126,10.775,2.336,22.604,13.619,6.171,8.703,6.651,21.613,14.928,9.661,14.641,18.408,-1.607,18.251,13.248,38.986,7.052,15.679,6.104,20.332,2.753,2.565,25.31,12.348,10.54,23.099,-1.942,15.644,-3.098,14.57,19.095,23.814,7.8,14.104,-1.558,-2.684,10.335,24.663,7.012,12.389,15.503,3.946,4.52,15.715,9.042,13.27,11.146,6.931,18.512,0.23,0.737,26.537,19.845,18.726,4.16,10.372,24.25,6.512,5.829,1.023,15.427,4.473,21.699,10.674,7.36,-4.81,11.126,20.163,3.523,3.846,22.082,17.281,12.478,-6.325,21.242,20.892,8.139,-0.424,4.017,20.202,4.817,28.08,21.18,2.056,26.863,17.251,-4.732,-0.289,18.807,-1.162,11.926,6.124,18.11,20.383,19.573,8.157,16.302,8.652,-6.112,12.5,12.397,22.363,8.042,6.773,18.788,8.083,24.485,9.314,6.8,6.43,3.473,11.682,11.557,13.984,14.015,8.909,8.803,7.474,20.114,8.071,16.556,1.059,21.79,11.545,15.052,19.968,17.369,-1.503,6.313,3.528,39.985,23.62,2.624,25.292,11.044,5.518,10.807,19.871,18.656,7.118,13.551,16.125,12.961,18.61,17.798,-0.033,2.412,15.115,2.951,38.212,10.502,14.295,5.396],[13.594,24.93,14.647,-2.351,10.92,5.509,-1.588,8.192,16.066,-0.583,12.25,20.2,25.409,18.589,4.042,4.755,5.561,20.413,9.401,-6.335,3.85,9.866,0.674,22.721,13.73,2.258,27.933,19.592,21.7,16.246,5.266,18.712,-0.893,18.356,11.18,-4.314,7.161,8.652,18.083,10.649,2.128,22.735,13.597,6.148,8.694,6.635,21.623,14.993,9.384,14.575,18.293,-1.502,18.101,13.234,39.071,7.104,15.602,6.04,20.306,2.875,2.639,25.464,12.511,10.513,23.24,-1.923,15.656,-3.439,14.558,18.965,23.673,7.648,13.698,-2.1,-2.586,10.449,25.148,7.306,12.97,15.258,3.742,4.769,15.839,9.239,13.235,11.441,6.795,18.36,0.172,0.418,26.183,20.314,18.29,4.583,9.941,24.619,6.607,5.499,1.267,15.457,4.044,21.634,10.852,7.395,-4.632,11.556,20.891,3.925,3.854,21.83,17.444,12.47,-6.059,20.652,20.854,8.678,-0.177,4.205,20.52,4.416,28.353,21.89,2.266,26.93,17.511,-4.589,-0.745,18.619,-0.882,12.282,6.116,18.535,20.179,20.025,7.745,16.459,8.693,-5.809,12.268,11.951,22.161,7.63,5.953,18.724,7.748,24.387,9.742,7.26,6.538,3.674,12.025,11.609,13.93,14.025,8.882,8.52,7.999,20.163,7.936,16.309,1.441,22.239,11.421,15.603,19.783,17.776,-1.05,6.0,3.884,39.988,23.744,2.567,25.246,11.173,5.606,10.912,20.32,18.775,6.709,13.69,15.492,13.274,17.898,17.863,-0.074,2.728,15.356,3.158,38.486,11.249,14.354,5.018],[13.71,25.126,14.519,-2.552,11.057,5.474,-1.707,8.325,15.991,-0.628,12.362,20.223,25.374,18.339,4.211,4.748,5.511,20.252,9.261,-6.363,3.805,9.913,0.86,22.762,13.652,2.217,28.079,19.739,21.852,16.278,5.406,18.622,-1.042,18.618,11.379,-4.242,7.116,8.477,17.952,10.737,1.905,22.727,13.584,6.047,8.514,6.667,21.578,15.222,9.117,14.55,18.286,-1.502,17.862,13.285,39.139,7.081,15.352,6.032,20.348,3.003,3.047,25.519,12.552,10.576,23.752,-2.114,15.626,-3.29,14.38,18.889,23.859,7.599,13.911,-1.635,-2.273,10.478,25.434,7.202,13.076,15.527,3.766,4.771,15.644,9.332,12.958,11.191,6.679,18.454,-0.098,0.238,26.553,20.038,18.135,4.338,9.998,24.765,6.192,5.182,0.408,15.209,4.009,21.805,10.544,7.367,-4.717,11.607,21.206,3.527,3.989,22.427,17.585,12.819,-5.888,20.869,20.36,8.576,-0.104,4.687,20.876,4.88,28.554,21.284,2.33,27.101,17.11,-4.734,-1.234,18.862,-1.395,12.481,6.691,18.722,20.362,19.655,7.994,16.326,8.674,-5.675,12.109,11.929,22.175,7.707,5.545,18.528,7.68,24.67,9.236,7.41,6.539,3.146,12.065,11.667,14.095,14.015,9.025,8.668,7.854,20.225,7.823,15.496,1.166,22.183,11.609,15.912,19.812,17.134,-1.343,5.628,3.946,39.922,23.766,2.75,25.781,11.255,5.746,10.242,20.423,19.043,6.333,13.957,15.489,13.757,17.581,18.022,0.262,2.498,14.789,3.467,38.03,12.129,14.683,5.218],[13.896,25.138,14.375,-2.74,11.099,5.385,-1.829,8.488,16.006,-0.562,12.385,20.172,25.64,18.248,4.449,4.702,5.48,20.142,9.14,-6.264,3.889,9.709,0.944,22.745,13.688,2.172,28.39,19.783,21.969,16.315,5.578,18.724,-1.319,18.923,11.483,-4.379,7.11,8.362,17.846,10.91,1.705,22.645,13.604,5.878,8.348,6.712,21.61,15.41,8.952,14.494,18.302,-1.483,17.474,13.426,39.206,7.03,15.062,6.054,20.487,3.086,3.453,25.556,12.405,10.657,23.769,-2.235,15.739,-2.868,14.437,19.137,23.761,8.092,14.119,-1.976,-2.605,10.782,25.306,7.14,12.054,15.63,3.834,4.787,15.166,9.468,12.801,10.919,6.905,18.445,0.01,0.475,26.441,19.668,18.187,4.791,9.863,24.498,6.517,5.348,0.159,15.584,4.336,21.406,10.602,7.244,-5.123,11.398,21.054,3.418,3.914,22.783,17.604,12.939,-6.191,20.864,20.907,8.327,-0.203,5.163,20.787,5.353,28.644,20.676,2.084,27.102,16.597,-5.184,-1.134,18.845,-1.532,12.624,6.497,18.496,20.266,20.249,7.736,16.036,8.813,-5.619,12.627,12.017,22.355,8.25,5.821,18.42,7.519,24.5,9.194,7.029,6.2,2.971,12.2,11.666,14.555,13.684,9.074,8.562,7.31,20.08,8.057,15.518,0.621,21.596,11.533,15.468,19.763,16.398,-1.48,5.955,3.88,39.526,23.702,2.925,26.013,11.183,5.51,10.238,20.42,19.026,6.713,13.755,15.827,13.684,17.542,18.18,0.146,2.501,14.483,4.271,38.153,12.398,14.444,5.696],[13.682,25.022,14.308,-2.772,11.023,5.35,-1.903,8.722,16.044,-0.546,12.21,19.968,25.885,18.506,4.712,4.756,5.466,19.953,9.076,-6.331,4.099,9.612,0.85,22.748,13.846,2.169,28.742,19.798,22.018,16.285,5.671,18.819,-1.602,19.14,11.57,-4.522,7.212,8.251,17.763,11.072,1.619,22.647,13.54,5.775,8.3,6.676,21.593,15.527,9.072,14.433,18.301,-1.298,17.041,13.416,39.216,7.028,14.912,6.201,20.684,3.116,3.642,25.554,12.257,10.738,23.273,-2.032,15.29,-3.539,14.758,19.32,24.228,8.646,13.978,-2.429,-2.803,10.566,25.423,7.703,11.761,15.371,3.661,4.666,15.253,9.624,12.802,11.226,6.575,18.353,-0.094,0.5,26.226,19.558,18.205,4.547,9.686,24.48,6.471,5.267,0.833,15.678,4.272,21.124,10.452,7.28,-5.017,11.242,21.064,3.735,3.669,22.523,17.574,12.96,-6.332,20.541,21.246,8.109,0.075,4.692,20.368,4.711,28.782,21.286,1.925,27.528,16.879,-5.356,-1.397,18.443,-1.721,12.425,6.102,18.816,20.382,20.386,7.635,16.221,8.996,-5.92,12.578,11.739,22.194,7.791,6.026,18.544,7.56,24.248,9.407,6.986,6.476,2.921,12.252,12.148,14.382,14.207,8.486,8.231,7.355,19.962,8.274,16.08,0.458,21.707,11.646,15.155,19.634,16.598,-1.066,6.294,3.965,40.106,23.959,3.175,25.687,10.82,5.456,10.706,20.53,18.998,6.785,13.311,15.611,13.724,17.599,18.147,0.364,2.604,14.364,4.228,38.457,11.943,13.426,5.486],[13.315,24.95,14.449,-2.769,11.123,5.291,-1.91,8.961,15.976,-0.561,11.976,19.707,26.052,18.928,4.758,4.774,5.483,19.779,8.986,-6.547,4.024,9.671,0.803,22.867,13.903,2.155,29.092,19.807,22.129,16.221,5.671,18.787,-1.792,19.173,11.621,-4.473,7.302,8.09,17.756,11.279,1.582,22.619,13.577,5.879,8.177,6.576,21.474,15.449,9.145,14.242,18.263,-0.965,16.684,13.262,39.288,7.078,14.662,6.326,20.806,3.105,3.525,25.492,12.15,10.828,23.184,-2.003,14.556,-3.447,15.022,19.225,24.197,8.614,13.567,-2.121,-2.886,10.32,25.232,7.504,12.2,14.942,3.568,4.939,15.369,9.287,13.056,11.363,6.247,18.084,-0.276,0.203,26.575,19.21,18.332,4.742,9.789,24.799,6.365,5.263,0.48,15.619,4.835,20.779,10.35,7.343,-4.918,11.087,21.437,3.466,3.889,22.342,17.248,12.719,-6.145,20.63,21.129,8.264,0.175,4.975,20.479,5.144,28.877,21.684,2.39,27.955,17.345,-4.825,-1.319,18.419,-1.966,12.536,6.384,19.353,20.571,20.295,7.871,16.009,8.637,-6.013,12.471,11.797,22.458,7.039,5.195,18.246,7.794,24.494,9.119,7.746,6.403,2.953,12.528,12.434,14.219,14.28,9.385,8.216,7.441,20.159,8.326,16.397,0.491,21.916,11.995,15.305,19.55,16.573,-1.02,5.996,4.393,40.624,24.062,3.491,25.37,10.838,5.857,11.044,20.862,19.1,6.4,13.377,15.319,13.85,17.878,17.978,0.817,2.594,14.941,3.7,38.455,11.191,13.117,5.759],[13.007,24.899,14.846,-2.703,11.324,5.145,-1.873,9.016,15.771,-0.725,11.859,19.458,26.113,19.285,4.691,4.631,5.562,19.699,9.036,-6.785,4.051,9.69,0.794,23.083,13.694,2.303,29.365,19.862,22.312,16.062,5.722,18.918,-1.819,19.284,11.623,-4.345,7.444,7.985,17.762,11.565,1.603,22.722,13.744,5.978,7.903,6.433,21.356,15.345,9.182,14.033,18.151,-0.844,16.463,13.115,39.446,7.172,14.364,6.292,20.916,3.101,3.522,25.472,12.114,10.757,23.119,-2.312,14.205,-3.071,15.061,18.917,24.394,8.62,13.513,-1.922,-2.613,10.139,24.686,7.858,12.194,14.509,3.469,5.229,15.442,9.483,13.39,11.573,6.584,17.783,-0.155,0.142,27.234,19.149,18.981,5.193,9.823,24.853,6.318,5.687,0.317,15.361,4.545,20.831,9.998,7.143,-5.238,10.86,22.141,3.282,3.967,22.582,16.885,12.754,-5.948,20.04,20.836,8.35,-0.453,4.987,20.631,5.142,29.553,21.557,2.453,28.27,17.222,-4.301,-1.33,18.068,-1.69,12.651,7.052,19.024,20.402,20.752,7.804,16.136,9.014,-5.963,12.359,11.997,22.191,6.661,4.314,18.082,7.893,24.677,9.297,7.796,5.912,3.167,12.828,12.274,14.149,13.843,9.744,8.027,7.318,20.048,8.283,16.647,0.968,21.997,11.826,15.429,19.56,15.975,-1.064,6.296,4.284,40.201,24.004,3.025,25.11,10.746,5.663,11.371,20.475,19.171,6.59,13.438,14.898,14.216,18.149,18.02,0.753,2.784,14.406,4.081,38.533,11.316,13.606,5.595],[12.927,24.82,15.205,-2.682,11.552,5.108,-1.742,8.904,15.518,-0.897,11.779,19.317,26.193,19.575,4.633,4.528,5.791,19.62,9.164,-6.887,4.065,9.514,0.679,23.189,13.446,2.373,29.591,19.9,22.482,15.725,5.805,18.996,-1.766,19.406,11.55,-4.314,7.609,7.972,17.879,11.779,1.773,22.812,13.775,5.919,7.672,6.273,21.177,15.447,9.337,13.997,18.13,-1.016,16.335,13.247,39.541,7.192,14.137,6.279,20.777,3.045,3.816,25.493,12.04,10.691,23.133,-2.276,14.27,-2.697,14.769,19.358,24.508,8.834,13.507,-1.934,-2.616,10.292,24.851,7.687,12.207,14.36,3.312,4.929,15.825,10.013,14.12,11.685,6.366,17.574,0.024,0.067,27.285,19.459,18.661,4.335,10.125,24.945,6.2,5.487,0.451,15.226,4.488,21.0,10.322,7.628,-5.896,10.864,22.452,3.309,4.035,23.019,17.102,12.156,-5.926,20.298,21.015,8.11,-0.754,4.944,20.779,5.086,29.842,21.884,2.441,28.03,16.959,-4.869,-1.123,17.95,-1.751,12.884,6.614,19.065,20.681,20.495,7.417,16.247,9.295,-5.783,12.023,12.234,22.513,6.441,4.523,18.294,8.002,24.657,9.184,7.328,5.786,3.457,12.923,12.651,14.013,14.035,8.759,7.517,6.701,20.017,8.067,16.483,0.941,21.773,11.55,15.111,19.374,15.894,-1.146,6.635,4.693,39.945,23.667,3.164,25.388,10.536,5.561,10.83,20.379,19.154,7.032,13.044,14.993,14.058,18.032,18.172,0.76,2.534,14.282,4.393,38.357,11.914,13.382,5.53],[12.987,24.792,15.537,-2.742,11.76,5.094,-1.65,8.692,15.314,-0.897,11.798,19.338,26.262,19.787,4.4,4.42,6.11,19.654,9.279,-6.91,4.115,9.261,0.441,23.177,13.322,2.349,29.719,19.921,22.713,15.562,5.843,19.01,-1.776,19.342,11.425,-4.484,7.571,8.0,17.991,11.937,1.84,22.86,13.818,5.803,7.378,6.115,21.099,15.676,9.376,14.079,18.153,-1.053,16.252,13.455,39.417,7.225,14.054,6.409,20.572,2.944,4.175,25.503,11.797,10.663,23.051,-2.131,14.153,-2.963,14.047,19.877,24.658,8.565,13.126,-2.108,-2.633,10.319,25.176,7.378,11.694,14.628,3.502,4.861,15.971,10.16,14.329,11.96,6.332,17.459,0.175,0.191,27.285,19.338,18.596,4.578,10.283,24.961,6.009,5.315,0.368,14.699,5.115,21.167,10.426,7.973,-5.442,10.644,21.688,3.386,3.909,23.047,16.725,11.977,-5.986,20.136,21.485,7.594,-0.29,5.1,20.53,5.487,29.539,22.098,2.247,28.077,16.052,-5.239,-1.096,18.689,-1.588,12.611,6.024,19.219,20.566,20.423,7.506,16.334,9.038,-5.564,12.118,12.08,22.75,6.559,4.89,18.468,8.042,24.721,9.374,7.389,6.136,3.384,12.813,13.182,14.083,14.036,9.017,7.715,7.049,19.561,7.818,16.298,0.875,21.193,11.83,14.778,19.234,15.908,-1.335,6.455,4.827,40.62,23.72,3.185,25.733,10.449,5.776,10.27,20.306,18.941,6.799,13.365,15.407,14.353,18.179,18.258,0.611,2.585,14.193,4.477,38.729,12.375,12.69,6.043],[13.003,24.861,15.826,-2.861,11.873,5.119,-1.752,8.522,15.028,-0.799,11.813,19.379,26.38,19.999,4.345,4.354,6.285,19.748,9.205,-6.773,4.435,8.923,0.308,22.99,13.193,2.239,29.707,19.896,22.892,15.325,5.654,19.035,-1.725,19.224,11.352,-4.654,7.454,8.166,17.924,12.144,1.736,22.898,13.884,5.8,7.155,5.98,21.046,15.765,9.415,14.109,18.083,-0.912,16.37,13.707,39.39,7.301,13.931,6.71,20.333,3.003,4.445,25.596,11.687,10.738,23.128,-2.221,13.772,-3.705,14.096,19.761,24.507,8.321,13.056,-1.897,-2.464,10.138,25.237,7.798,11.225,14.796,3.63,5.083,16.012,10.191,14.436,12.029,6.537,17.789,0.103,0.189,27.554,19.09,19.111,4.134,10.312,24.848,6.085,5.842,-0.118,14.73,4.894,21.055,10.398,8.099,-5.206,10.48,21.387,2.953,3.439,22.868,16.734,12.043,-6.122,20.406,21.244,7.493,-0.321,5.818,20.521,4.986,29.687,22.174,2.763,28.249,15.989,-5.218,-1.552,18.873,-1.984,12.283,6.28,18.88,20.694,20.695,7.902,16.248,8.784,-5.974,12.462,11.944,21.894,6.644,5.161,18.757,7.772,24.747,9.625,7.928,6.442,3.134,12.789,13.181,14.342,13.859,9.472,7.562,7.535,19.863,7.454,17.074,0.829,21.061,12.178,14.836,19.448,15.746,-1.098,6.176,4.354,40.491,23.753,2.848,25.742,10.36,5.7,10.034,20.39,18.507,6.94,13.175,15.56,14.337,17.993,18.31,0.739,2.39,14.396,4.562,38.755,12.523,12.601,5.698],[12.984,24.96,15.921,-2.99,11.72,5.307,-1.95,8.497,14.854,-0.783,11.725,19.433,26.475,20.182,4.311,4.3,6.397,19.839,9.012,-6.678,4.398,8.59,0.163,22.923,13.07,2.149,29.619,19.783,22.933,15.272,5.569,18.911,-1.769,19.088,11.414,-4.778,7.573,8.476,17.926,12.328,1.641,22.781,13.895,5.795,7.025,5.846,21.072,15.864,9.443,14.184,18.009,-0.675,16.549,13.843,39.422,7.409,13.797,6.934,20.186,2.982,4.616,25.671,11.682,10.755,23.108,-2.384,13.543,-3.29,14.405,19.956,24.893,8.556,13.375,-2.018,-2.516,10.114,25.551,7.647,11.417,14.569,3.64,5.098,16.104,10.12,14.711,12.238,6.465,17.831,-0.202,0.125,27.525,19.484,19.08,4.419,9.81,24.667,5.802,6.153,0.099,14.938,5.185,21.284,10.112,8.181,-5.247,10.406,21.675,2.948,3.382,22.481,16.504,12.134,-5.88,20.697,20.936,7.487,-1.021,5.097,20.629,4.856,29.943,22.529,2.772,28.102,16.238,-5.212,-1.022,18.077,-2.149,12.266,5.788,18.912,20.677,20.457,7.941,16.407,8.203,-6.342,12.459,12.385,22.018,6.651,6.047,18.125,7.712,24.742,9.251,7.858,6.101,2.994,13.245,13.138,15.022,14.359,9.272,7.455,7.258,19.924,7.343,17.393,0.639,21.176,12.204,14.921,19.461,15.768,-0.833,6.399,4.492,40.254,24.278,3.473,25.578,10.356,5.737,10.751,20.099,18.424,7.213,12.968,15.249,14.61,17.752,18.008,1.213,2.581,14.697,4.397,38.829,12.222,12.73,5.831],[12.995,25.083,15.85,-3.022,11.428,5.442,-2.091,8.639,14.868,-0.839,11.67,19.546,26.667,20.258,4.337,4.197,6.499,20.073,8.768,-6.695,4.218,8.355,-0.063,22.945,13.061,2.221,29.603,19.594,22.828,15.45,5.377,18.508,-1.837,19.119,11.447,-4.773,7.616,8.809,17.914,12.54,1.629,22.694,14.083,5.836,6.938,5.66,21.172,15.84,9.33,14.361,17.939,-0.491,16.759,13.876,39.485,7.527,13.759,7.013,20.301,3.002,4.705,25.759,11.585,10.734,23.395,-2.433,13.408,-3.101,14.288,19.872,24.905,8.821,13.603,-2.3,-3.006,10.003,25.257,7.335,11.924,14.055,3.779,4.98,16.098,9.592,14.642,12.153,6.821,17.762,-0.261,-0.22,27.739,19.426,19.148,4.742,9.875,24.765,6.046,5.873,0.44,14.56,4.808,21.587,9.907,8.008,-5.469,9.938,22.364,3.177,3.533,22.46,16.43,12.084,-5.528,20.137,20.984,7.304,-1.004,4.198,20.5,4.849,29.872,23.024,2.149,27.893,16.377,-5.162,-1.464,18.096,-1.747,12.113,5.792,18.6,20.274,20.076,8.233,16.309,9.038,-6.217,12.363,12.332,22.417,6.385,5.887,18.448,8.195,24.616,8.533,7.737,5.659,3.146,13.462,13.151,15.591,14.526,9.189,7.714,7.361,20.073,7.41,17.647,0.47,21.176,12.038,14.461,19.187,15.91,-0.366,6.469,4.566,39.93,24.121,2.903,25.566,10.422,5.981,11.469,19.97,18.768,7.12,13.331,15.529,15.098,17.198,17.506,1.25,2.915,14.56,4.39,38.942,11.976,12.41,6.309],[12.909,25.253,15.791,-2.975,11.414,5.358,-2.145,8.805,14.769,-0.884,11.792,19.472,26.729,20.222,4.487,4.241,6.471,20.125,8.8,-6.73,4.152,8.169,-0.116,22.879,13.022,2.337,29.697,19.489,22.771,15.728,5.108,18.122,-1.923,19.18,11.459,-4.621,7.657,9.179,17.997,12.747,1.693,22.64,14.189,5.921,6.936,5.475,21.226,15.845,9.014,14.476,17.743,-0.445,16.94,14.03,39.552,7.511,13.771,6.805,20.498,3.055,4.672,25.71,11.362,10.737,23.596,-2.262,13.548,-3.62,14.131,19.701,25.233,8.736,13.863,-2.296,-3.271,9.99,24.843,7.606,11.541,14.249,3.927,5.162,15.81,9.657,14.617,11.841,6.905,17.773,-0.468,0.001,28.166,19.976,19.435,3.915,10.01,24.604,6.014,6.201,0.19,14.5,4.696,21.553,9.894,8.271,-5.528,9.762,22.466,3.155,3.462,22.936,16.812,12.11,-5.57,20.698,20.993,6.747,-0.994,4.806,19.958,4.675,29.976,22.75,1.859,28.094,16.575,-5.344,-1.738,17.921,-2.141,12.385,6.035,18.849,19.725,20.444,8.189,16.368,9.483,-5.989,12.347,12.282,21.986,6.297,5.266,18.496,8.753,24.514,8.904,7.194,5.191,3.111,13.289,13.465,15.094,14.534,9.243,7.609,7.169,20.193,7.267,17.139,0.757,21.256,12.258,14.689,19.112,15.967,-0.461,6.412,4.4,39.749,24.032,3.128,25.615,10.614,6.008,10.841,20.471,18.944,7.408,13.094,15.941,14.957,17.115,17.473,1.231,2.855,14.381,4.645,38.772,12.076,12.524,5.623],[12.878,25.25,15.712,-2.961,11.487,5.245,-2.177,8.99,14.584,-0.749,11.842,19.356,26.664,20.23,4.437,4.361,6.558,19.954,8.999,-6.722,4.17,8.056,-0.021,22.749,12.982,2.493,29.979,19.378,22.798,15.979,5.074,17.895,-2.058,19.283,11.561,-4.507,7.7,9.417,18.21,12.827,1.87,22.523,14.135,5.955,7.042,5.24,21.382,15.78,8.803,14.506,17.505,-0.513,17.11,14.23,39.424,7.382,13.867,6.471,20.572,3.11,4.503,25.468,11.222,10.827,23.67,-2.286,13.617,-3.081,14.067,19.701,25.364,8.581,13.639,-2.014,-3.134,10.407,25.259,7.999,11.672,14.197,3.754,5.219,16.168,9.742,14.441,12.105,6.756,17.638,-0.516,0.264,27.991,19.488,19.176,4.337,9.867,24.628,5.935,5.979,-0.2,14.725,4.987,21.225,9.889,8.477,-5.168,9.492,22.073,3.097,3.148,22.707,17.501,12.035,-6.024,20.874,20.871,6.348,-1.08,5.13,19.902,4.969,30.086,21.991,1.773,28.37,16.343,-5.457,-1.611,17.36,-2.506,12.048,5.521,19.179,19.655,20.689,8.485,16.667,9.433,-5.626,12.763,12.476,21.723,6.424,4.564,18.08,8.798,24.353,9.037,6.795,5.054,2.79,13.5,14.04,14.626,14.663,8.978,7.799,6.778,19.918,6.946,17.18,0.724,21.435,12.489,15.108,19.046,16.08,-1.019,6.591,5.08,40.219,23.814,3.542,25.827,10.376,5.694,10.465,20.706,18.804,7.483,12.649,15.83,15.082,17.488,17.402,1.218,2.839,14.054,4.502,38.998,12.637,13.169,5.555],[12.853,25.159,15.567,-2.793,11.531,5.2,-2.212,9.172,14.433,-0.547,11.878,19.212,26.425,20.158,4.286,4.43,6.63,19.786,8.919,-6.548,4.26,7.95,-0.009,22.621,12.944,2.715,30.319,19.248,22.718,16.163,5.236,17.807,-2.194,19.486,11.732,-4.49,7.729,9.459,18.308,12.906,1.924,22.425,14.177,5.824,7.176,5.008,21.54,15.74,8.837,14.508,17.398,-0.737,17.264,14.375,39.233,7.235,14.046,6.366,20.448,3.141,4.336,25.219,11.23,11.126,23.481,-2.167,12.981,-3.209,14.078,19.798,25.415,9.108,13.478,-2.186,-2.665,10.271,25.051,7.983,12.084,14.166,3.458,5.266,16.207,9.728,13.988,12.303,6.576,17.36,-0.32,0.403,27.785,19.345,19.301,4.757,10.236,24.473,6.162,5.994,0.101,14.659,4.935,21.388,9.95,8.433,-4.892,9.256,22.044,3.31,3.366,22.374,17.783,12.381,-6.22,20.205,20.407,6.343,-0.642,4.604,20.282,5.444,30.407,21.583,1.449,28.494,16.674,-5.303,-1.778,16.893,-2.33,11.589,5.513,19.037,19.475,20.651,8.883,16.551,9.415,-5.645,13.194,12.365,21.904,6.54,4.235,18.743,8.424,24.372,8.404,6.934,5.145,3.119,13.409,14.329,14.378,14.529,8.479,8.272,7.098,20.245,6.355,17.253,0.353,21.885,12.663,15.089,18.74,16.339,-1.079,6.251,5.574,40.588,23.567,3.146,25.502,9.58,5.695,11.387,20.545,18.601,6.966,12.493,15.766,15.886,17.986,16.618,1.144,2.74,14.253,4.604,39.106,12.711,13.318,5.943],[12.79,24.98,15.377,-2.609,11.53,5.134,-2.07,9.326,14.336,-0.458,11.947,19.109,26.136,20.147,4.076,4.554,6.662,19.802,8.845,-6.37,4.358,7.85,0.063,22.573,12.939,2.893,30.346,19.214,22.615,16.375,5.445,17.75,-2.326,19.652,11.822,-4.479,7.756,9.506,18.395,13.006,1.775,22.457,14.18,5.676,7.306,4.972,21.691,15.64,8.868,14.563,17.293,-0.971,17.369,14.597,39.097,7.154,14.249,6.467,20.173,3.038,4.186,25.032,11.176,11.561,23.158,-1.633,12.756,-3.386,13.836,19.73,24.692,9.573,13.526,-2.304,-2.977,10.086,25.26,8.077,12.003,14.186,3.434,5.05,15.843,9.751,13.883,11.998,6.37,17.279,-0.28,0.734,27.629,19.419,19.274,3.907,10.052,24.291,6.269,6.393,0.393,14.501,4.964,21.138,9.891,8.476,-4.926,9.649,21.702,3.338,3.1,22.669,17.564,12.353,-5.816,20.655,20.405,6.462,-0.682,4.723,20.139,5.684,30.839,21.271,1.388,28.568,16.95,-5.1,-1.635,16.556,-2.464,11.995,6.361,18.844,19.371,20.835,8.658,16.618,9.562,-6.027,13.02,12.478,22.026,6.482,4.209,18.679,8.495,24.312,8.434,7.494,4.842,3.462,13.261,14.406,14.638,14.522,9.174,8.355,7.126,20.547,5.877,17.169,0.679,21.944,13.0,14.668,18.506,16.861,-1.005,5.978,5.127,39.891,23.254,3.104,25.085,9.852,5.74,12.074,20.011,18.496,6.893,12.759,15.92,15.934,18.398,16.106,0.655,2.39,14.995,4.81,38.684,12.534,13.015,5.155],[12.74,24.817,15.347,-2.568,11.485,5.061,-1.907,9.488,14.206,-0.313,11.969,19.056,25.901,20.185,3.674,4.652,6.757,20.069,8.717,-6.354,4.432,7.941,0.152,22.679,12.966,2.948,30.128,19.311,22.469,16.429,5.763,17.718,-2.426,19.665,11.855,-4.516,7.838,9.484,18.477,13.049,1.611,22.616,14.148,5.491,7.437,5.008,21.892,15.573,9.009,14.575,17.046,-1.165,17.528,14.784,38.915,7.307,14.409,6.489,19.872,2.73,4.077,24.889,11.222,11.949,22.991,-1.799,13.514,-2.67,13.964,19.445,24.453,9.356,13.464,-1.751,-3.125,10.144,25.582,8.252,12.155,13.99,3.374,4.823,15.774,9.639,14.197,11.793,6.294,17.368,-0.265,0.455,27.153,19.167,19.264,3.958,9.697,24.399,6.33,6.347,0.228,14.695,4.927,21.095,9.692,8.487,-5.177,9.573,21.455,3.374,2.687,22.54,17.677,11.874,-5.286,21.167,20.472,6.349,-0.899,4.972,20.241,5.511,30.741,21.203,1.768,28.735,17.385,-5.007,-1.792,16.421,-2.084,12.325,6.391,19.539,19.076,20.438,8.277,16.852,9.53,-5.851,12.43,12.367,22.066,6.722,4.547,18.081,8.921,24.454,8.35,7.834,4.94,3.302,14.032,13.963,14.831,14.638,9.53,8.09,7.018,20.656,5.736,16.989,0.773,21.686,13.118,14.784,18.504,16.606,-0.969,6.294,4.086,39.459,23.137,2.403,24.763,10.347,5.514,11.498,19.58,18.337,7.193,12.68,16.004,16.056,18.61,16.655,0.508,2.246,14.763,4.243,38.294,13.043,13.326,5.341],[12.584,24.733,15.536,-2.431,11.388,4.989,-1.827,9.733,14.166,-0.252,12.059,18.837,25.655,20.14,3.507,4.75,6.838,20.385,8.424,-6.326,4.476,8.07,0.107,22.558,13.018,2.944,29.943,19.547,22.319,16.43,6.043,17.791,-2.373,19.662,11.88,-4.492,7.968,9.25,18.526,13.015,1.501,22.849,14.075,5.296,7.544,5.069,22.104,15.587,9.21,14.574,16.871,-1.315,17.612,14.78,38.69,7.492,14.479,6.499,19.773,2.222,3.761,24.731,11.442,12.152,22.901,-2.057,12.966,-2.801,14.07,19.705,24.172,8.672,13.76,-1.817,-3.004,10.277,25.349,8.89,12.227,13.53,3.366,4.582,15.81,9.766,14.077,12.005,6.246,17.111,-0.311,0.459,27.046,19.582,19.47,3.923,9.401,24.104,6.312,6.09,0.779,14.443,4.771,21.818,9.872,8.719,-4.942,9.275,21.207,3.267,2.773,22.417,17.97,11.808,-5.375,21.101,20.638,6.445,-0.659,5.211,20.505,5.006,30.103,21.638,2.295,28.343,17.089,-5.411,-1.468,16.558,-2.11,12.258,6.366,20.028,19.11,20.109,8.286,16.722,9.392,-5.828,12.965,12.489,22.014,6.543,4.262,18.718,8.894,24.803,8.906,7.789,4.789,3.09,14.55,13.696,14.744,14.351,9.155,8.076,6.936,20.837,5.793,16.767,0.41,21.595,13.072,14.983,18.445,16.154,-1.14,6.262,4.016,39.369,23.358,2.766,24.54,10.07,5.741,11.912,19.514,18.063,7.561,12.198,16.119,16.334,18.682,17.176,0.533,2.326,14.477,4.278,38.621,13.642,13.865,5.688],[12.44,24.717,15.59,-2.28,11.327,4.923,-1.996,9.948,14.195,-0.382,12.279,18.722,25.443,20.115,3.631,4.74,6.854,20.579,8.278,-6.117,4.489,8.078,0.121,22.25,13.159,2.968,29.669,19.843,22.249,16.448,6.252,17.856,-2.149,19.624,11.961,-4.508,7.979,8.917,18.711,12.992,1.505,22.999,14.009,5.112,7.56,5.031,22.201,15.632,9.347,14.714,16.835,-1.447,17.532,14.78,38.553,7.574,14.427,6.515,19.946,2.128,3.443,24.628,11.644,12.264,22.9,-1.707,12.648,-3.063,13.922,20.217,24.146,8.668,13.648,-1.684,-3.057,10.543,24.871,8.86,12.219,13.542,3.2,4.781,15.985,9.555,14.101,12.006,5.981,16.95,-0.244,0.453,27.173,19.438,19.35,3.936,9.378,24.092,6.378,6.447,1.252,13.787,5.198,21.792,9.462,8.722,-4.71,9.645,20.879,3.406,3.093,22.36,17.715,11.814,-6.072,21.458,21.003,6.268,-0.513,5.373,20.457,4.73,30.091,21.609,2.286,27.865,17.111,-5.582,-1.473,16.832,-2.261,12.36,6.799,19.703,19.385,20.483,8.298,17.014,9.653,-5.614,13.066,12.149,22.182,6.355,4.142,19.173,8.176,24.846,9.077,7.765,4.652,2.56,14.4,13.262,14.284,14.389,9.639,8.299,6.441,20.923,5.952,16.791,-0.036,21.656,13.511,15.036,18.254,16.274,-1.101,5.85,4.144,39.336,23.368,1.887,24.434,9.874,5.977,12.432,19.731,18.219,7.435,12.478,16.21,16.413,18.623,17.343,0.107,1.719,14.693,4.164,38.289,13.684,13.536,5.643],[12.524,24.685,15.506,-2.15,11.293,4.802,-2.297,9.983,14.222,-0.553,12.527,18.795,25.249,20.122,3.806,4.656,6.939,20.557,8.226,-5.883,4.542,7.945,0.268,22.149,13.058,3.043,29.387,20.126,22.267,16.403,6.517,17.927,-2.025,19.496,12.004,-4.472,7.912,8.55,18.923,12.909,1.526,23.03,14.049,5.045,7.69,4.865,22.341,15.666,9.373,14.892,16.936,-1.542,17.403,14.924,38.43,7.552,14.264,6.442,20.226,2.141,3.213,24.571,11.697,12.352,23.066,-1.977,13.423,-2.765,13.978,20.097,24.272,9.529,12.917,-1.602,-3.164,10.684,24.754,8.76,12.585,13.929,2.993,4.995,16.065,9.452,14.321,11.682,5.911,17.135,-0.595,0.592,26.983,19.375,19.372,3.998,9.321,23.596,6.329,6.635,0.798,14.434,5.679,21.726,9.275,8.695,-4.438,9.545,21.153,3.431,2.981,22.196,17.761,12.199,-6.274,21.715,21.034,6.588,-0.65,5.299,20.6,4.995,29.815,21.117,1.879,27.555,17.325,-5.346,-1.458,17.321,-2.039,12.239,6.69,19.18,19.302,20.85,8.108,17.151,9.726,-5.812,12.968,12.237,22.442,6.525,3.522,19.068,7.595,24.831,8.698,7.571,4.838,2.858,13.779,13.651,14.183,14.7,9.547,7.976,6.057,20.709,6.181,16.583,0.05,21.94,13.378,15.35,18.31,16.498,-1.263,6.082,3.667,39.729,23.124,1.475,24.441,10.667,6.114,12.217,19.778,18.731,6.919,13.084,16.192,16.5,18.418,16.889,0.206,1.828,14.522,3.834,37.917,13.399,12.744,5.315],[12.73,24.757,15.453,-2.008,11.34,4.729,-2.472,9.992,14.277,-0.712,12.711,18.952,25.094,20.149,3.938,4.546,7.017,20.433,8.145,-5.667,4.662,7.842,0.408,22.208,12.884,3.07,29.084,20.29,22.377,16.38,6.719,18.0,-2.021,19.459,12.042,-4.44,7.811,8.128,18.909,12.765,1.726,23.05,14.242,4.892,7.955,4.779,22.554,15.696,9.232,14.993,17.147,-1.551,17.396,15.065,38.387,7.458,14.01,6.31,20.435,2.087,3.06,24.44,11.766,12.288,23.074,-2.308,13.122,-2.783,14.222,19.451,23.801,9.923,13.145,-1.598,-3.904,10.919,24.938,8.824,13.026,13.896,2.885,4.917,16.042,9.718,14.29,11.694,5.521,17.084,-0.992,0.329,26.682,19.434,19.611,3.999,9.364,23.499,6.19,6.377,0.256,14.707,5.355,21.742,9.487,8.984,-4.108,9.354,21.76,3.262,2.946,22.484,18.003,11.972,-5.86,21.34,21.121,6.267,-0.466,5.362,20.915,5.766,29.754,21.153,2.041,27.486,16.87,-4.874,-1.752,17.35,-2.273,12.034,7.185,18.362,19.558,20.382,7.899,17.065,9.641,-5.765,12.92,12.696,22.628,6.634,3.236,19.266,7.305,24.924,8.458,7.408,4.754,3.312,13.438,14.067,14.071,14.4,9.331,7.447,6.109,20.887,6.022,16.557,0.358,22.128,13.363,16.063,18.596,16.228,-1.467,6.404,3.617,40.251,22.938,2.326,24.258,10.664,5.943,12.125,20.081,18.707,7.049,12.879,15.883,16.542,18.007,16.114,0.264,1.924,13.867,3.431,37.808,13.268,12.815,5.14],[12.851,24.89,15.506,-1.896,11.369,4.622,-2.534,10.045,14.201,-0.869,12.827,19.151,24.987,20.101,3.931,4.45,7.002,20.316,8.089,-5.379,4.775,7.766,0.424,22.448,12.57,3.097,28.825,20.268,22.604,16.353,6.919,17.989,-2.05,19.378,11.967,-4.444,7.781,7.696,18.879,12.629,1.916,23.092,14.403,4.735,8.086,4.831,22.671,15.807,9.004,14.99,17.408,-1.488,17.526,15.157,38.373,7.386,13.726,6.369,20.462,2.068,3.011,24.357,11.745,12.089,23.277,-1.995,13.122,-2.651,13.916,19.145,23.499,9.705,13.902,-1.248,-3.981,11.039,25.667,9.02,13.062,13.985,2.804,5.321,15.924,9.603,14.07,11.844,5.443,17.339,-1.0,0.034,26.228,19.368,19.957,4.092,9.028,24.157,6.265,6.371,0.227,14.314,4.807,21.39,9.193,8.861,-3.922,9.178,21.965,3.289,3.107,22.629,17.818,11.94,-5.797,21.222,21.021,6.19,0.156,5.628,20.892,6.142,29.664,21.428,2.134,27.318,16.573,-5.34,-1.963,17.258,-2.155,12.369,7.621,18.512,19.742,19.783,7.013,17.17,9.638,-5.574,13.071,12.613,22.732,6.743,3.05,19.439,7.14,25.009,8.519,7.412,4.117,3.759,13.506,13.827,14.228,14.578,9.504,8.217,5.986,21.157,6.023,16.838,1.09,22.131,13.6,16.197,18.77,16.241,-1.464,5.631,3.761,40.118,22.905,2.093,23.735,10.413,5.772,12.048,20.23,18.637,7.317,12.719,16.018,16.381,17.398,15.942,0.046,1.653,13.108,3.333,38.128,13.312,13.63,5.624],[12.953,25.079,15.536,-1.702,11.355,4.494,-2.534,10.219,14.12,-0.915,12.817,19.332,24.892,19.995,3.96,4.466,6.867,20.169,7.921,-5.131,4.767,7.696,0.508,22.839,12.29,3.151,28.642,20.063,22.856,16.305,7.155,17.974,-2.007,19.309,11.881,-4.544,7.718,7.321,19.008,12.543,2.08,23.197,14.392,4.549,8.213,4.952,22.69,16.084,8.879,14.99,17.604,-1.531,17.666,15.183,38.34,7.374,13.631,6.513,20.395,1.992,3.078,24.306,11.693,11.892,23.34,-2.223,13.326,-2.237,13.665,19.869,23.141,9.348,13.834,-1.367,-3.547,10.892,25.63,9.07,13.269,13.848,2.64,5.119,16.395,9.615,14.192,11.855,5.408,17.825,-0.9,0.451,25.814,19.692,19.567,4.158,8.708,24.6,6.137,6.554,0.071,13.862,5.143,21.539,9.243,8.63,-4.0,9.09,22.038,3.134,3.207,22.467,17.743,11.424,-5.564,21.069,21.177,6.227,0.203,5.731,20.495,5.771,29.184,21.724,2.238,26.912,17.099,-5.29,-1.748,17.08,-2.111,12.266,7.485,18.949,19.735,19.249,6.75,17.302,9.524,-5.78,13.112,12.536,22.84,6.674,3.113,19.372,6.664,25.001,8.694,7.679,3.759,3.73,13.892,13.466,14.388,14.658,9.189,8.863,5.754,21.239,5.935,16.89,0.956,22.215,13.769,15.568,18.792,16.42,-1.292,5.664,3.371,39.743,22.852,2.078,23.871,10.452,5.794,11.509,20.033,18.796,6.729,12.629,16.405,16.889,16.772,16.317,0.26,1.697,12.966,3.802,38.551,13.076,12.974,5.481],[12.898,25.214,15.589,-1.459,11.234,4.474,-2.445,10.58,14.205,-0.825,12.581,19.421,24.762,19.939,4.018,4.476,6.645,20.134,7.71,-4.909,4.617,7.72,0.63,23.085,12.034,3.133,28.519,19.777,22.95,16.369,7.214,18.041,-1.824,19.235,11.921,-4.708,7.613,7.017,19.191,12.578,2.111,23.38,14.21,4.347,8.303,5.037,22.66,16.285,8.855,14.908,17.639,-1.547,17.677,15.293,38.323,7.277,13.73,6.593,20.37,1.969,3.295,24.215,11.745,11.585,23.398,-2.418,13.141,-2.231,13.837,20.113,23.099,9.359,13.319,-1.272,-3.145,10.807,25.392,9.37,13.279,14.582,2.697,5.147,16.575,9.889,14.418,11.769,5.234,17.49,-0.901,0.65,25.831,19.73,19.142,4.316,8.649,24.68,6.23,6.495,0.02,13.275,5.335,21.348,9.233,8.558,-3.816,9.399,22.127,3.259,3.743,23.13,17.602,11.099,-5.384,20.912,20.692,6.258,-0.135,5.69,20.051,5.693,28.763,22.26,2.403,26.72,17.334,-5.238,-1.716,17.271,-2.32,11.425,7.516,19.108,19.686,19.435,6.89,17.334,9.245,-5.935,12.673,12.654,22.785,6.903,2.727,19.24,6.531,25.19,8.141,7.687,4.261,3.684,13.798,13.184,14.546,14.686,9.6,8.87,5.535,20.985,5.695,17.369,0.594,22.258,13.874,15.517,18.993,16.648,-1.479,6.288,3.323,38.926,22.581,1.98,24.69,10.174,5.706,11.62,20.166,18.615,6.768,12.411,16.523,17.04,16.482,17.414,0.29,1.973,13.176,3.45,38.521,12.499,12.712,5.48],[12.908,25.27,15.635,-1.157,11.134,4.64,-2.368,10.975,14.402,-0.82,12.223,19.345,24.73,19.886,4.198,4.398,6.43,20.228,7.546,-4.676,4.589,7.843,0.695,23.118,11.677,3.112,28.375,19.481,23.075,16.473,7.299,18.229,-1.602,19.196,11.875,-4.838,7.395,6.886,19.126,12.601,2.086,23.4,14.054,4.132,8.254,5.189,22.48,16.412,8.918,14.76,17.543,-1.583,17.675,15.325,38.226,7.138,13.923,6.676,20.29,2.082,3.333,24.202,11.687,11.199,23.425,-2.059,13.358,-2.361,13.925,19.728,22.946,9.915,12.881,-0.596,-3.036,10.641,25.495,9.732,12.855,14.675,2.8,5.283,16.421,9.381,14.588,11.561,5.135,17.64,-0.466,0.6,25.954,19.651,19.831,4.518,8.459,25.008,6.052,6.004,0.34,13.13,4.961,21.473,8.816,8.407,-3.707,9.204,21.744,3.569,3.999,23.399,17.458,11.387,-5.51,20.908,20.601,6.387,0.128,5.808,19.919,5.558,28.922,22.44,2.284,26.771,17.057,-5.473,-1.351,17.447,-1.894,11.328,7.601,18.974,19.8,19.906,6.676,17.583,9.158,-5.871,13.127,12.731,22.895,7.325,2.45,19.661,6.402,25.173,8.449,7.367,3.976,3.525,13.652,13.333,14.601,14.807,9.764,8.952,5.243,20.828,5.631,17.59,0.702,22.367,13.871,15.503,19.22,16.679,-1.502,6.077,3.884,38.55,22.493,1.516,24.819,10.779,5.449,11.41,20.414,18.485,7.206,13.014,16.172,16.536,16.479,18.175,0.059,2.345,13.78,3.447,38.469,12.129,13.259,5.758],[12.961,25.311,15.702,-0.822,11.045,4.816,-2.353,11.157,14.579,-0.84,11.96,19.383,24.717,19.903,4.61,4.362,6.16,20.485,7.362,-4.515,4.661,7.963,0.811,23.111,11.46,3.145,28.226,19.391,23.179,16.524,7.548,18.363,-1.316,19.176,11.915,-4.937,7.066,6.94,19.073,12.595,2.155,23.305,14.157,4.034,8.295,5.252,22.276,16.421,8.983,14.555,17.472,-1.661,17.73,15.187,38.15,7.09,14.19,6.637,20.155,2.324,3.272,24.136,11.824,10.946,23.697,-2.126,13.272,-2.138,13.865,19.241,23.067,10.167,12.548,-0.637,-2.929,10.202,25.588,9.985,12.382,14.866,3.092,5.231,16.244,9.351,14.135,11.765,5.521,17.612,-0.494,0.377,25.799,19.328,19.69,4.153,8.494,24.808,6.136,5.772,0.034,13.144,5.15,21.767,8.518,8.018,-3.635,9.24,22.037,3.073,3.641,22.934,17.511,11.403,-5.313,20.985,20.454,6.398,0.804,5.911,20.05,5.472,29.018,22.129,2.019,26.595,16.683,-5.608,-1.22,17.466,-1.778,12.009,7.901,19.336,20.229,20.098,6.578,17.333,8.906,-5.901,12.762,12.406,23.084,7.179,2.14,18.944,6.29,25.248,8.683,6.789,3.615,3.837,13.679,13.34,14.875,14.737,9.874,8.673,4.785,20.483,5.492,17.502,1.21,22.422,13.668,15.555,18.895,16.605,-1.507,5.818,3.744,38.512,22.442,2.241,24.786,10.811,5.34,10.78,20.327,18.423,6.891,12.701,15.735,16.526,16.763,18.121,0.113,2.195,13.928,3.51,38.398,11.95,13.461,5.489],[12.949,25.264,15.722,-0.626,11.037,5.001,-2.281,11.204,14.678,-0.975,11.764,19.452,24.783,19.912,4.739,4.346,5.903,20.823,7.252,-4.389,4.729,8.112,0.95,23.07,11.386,3.096,28.177,19.368,23.201,16.522,7.773,18.346,-1.252,19.306,11.947,-5.025,6.691,7.097,18.811,12.616,2.409,23.291,14.226,3.857,8.392,5.113,22.119,16.527,9.033,14.31,17.354,-1.637,17.759,15.023,38.154,7.029,14.442,6.422,20.06,2.586,3.203,24.024,11.886,10.786,23.85,-2.317,13.31,-1.641,14.141,19.067,22.964,10.197,12.883,-0.748,-3.284,9.968,25.816,9.89,12.15,14.514,3.228,5.496,16.391,9.624,14.03,11.59,6.059,18.057,-0.651,0.247,25.758,19.525,19.202,5.277,8.628,24.813,6.102,5.853,-0.109,13.175,5.004,22.126,8.022,7.683,-3.558,9.16,22.634,3.024,3.377,23.433,17.525,10.998,-5.062,20.85,20.46,6.288,1.388,6.187,19.942,5.579,28.604,22.063,1.987,26.352,17.23,-5.885,-1.0,17.828,-1.501,12.041,8.316,19.328,20.105,19.762,6.729,17.069,8.323,-6.167,12.686,12.469,22.937,7.022,2.057,18.954,6.261,25.308,8.511,6.997,3.672,4.141,13.88,13.341,14.771,14.767,9.548,8.448,5.091,20.307,5.485,17.386,1.405,22.215,13.497,15.225,18.684,16.379,-1.612,5.713,3.797,38.688,22.172,2.192,24.783,10.512,5.605,10.97,19.911,18.445,6.497,12.591,15.636,16.752,17.239,18.096,0.179,2.361,13.325,3.585,37.909,11.629,13.577,5.747],[12.856,25.228,15.747,-0.546,11.06,5.236,-2.17,11.198,14.953,-1.189,11.64,19.615,24.83,19.837,4.747,4.514,5.699,21.112,7.225,-4.247,4.799,8.173,1.033,23.216,11.354,3.039,28.136,19.321,23.34,16.575,7.97,18.367,-1.347,19.463,11.889,-5.183,6.501,7.323,18.47,12.641,2.648,23.332,14.162,3.839,8.429,5.005,21.965,16.648,9.072,14.102,17.196,-1.594,17.713,14.849,38.178,6.945,14.559,6.303,20.009,2.799,3.243,23.88,11.807,10.673,23.473,-2.353,13.663,-1.836,14.139,19.313,22.969,10.831,13.783,-0.921,-3.201,9.774,25.281,9.664,11.779,13.867,3.363,5.622,16.64,9.337,14.366,11.468,5.993,17.734,-0.386,0.284,25.663,19.691,19.657,4.661,8.74,25.005,5.917,5.416,0.447,12.872,5.003,22.462,8.137,7.663,-3.285,9.556,22.382,3.186,3.527,23.326,17.246,10.527,-5.087,21.084,20.679,6.654,1.392,6.252,19.851,5.14,28.32,22.147,1.977,26.351,17.532,-5.738,-0.995,17.565,-1.64,11.486,8.078,19.056,20.084,19.797,6.672,16.81,8.154,-6.157,12.924,12.263,22.549,7.183,2.257,19.012,6.581,25.313,8.545,6.772,3.214,4.093,13.644,13.428,14.739,14.86,9.149,8.562,5.01,20.369,5.624,17.038,1.218,22.068,13.76,14.723,18.893,16.58,-1.53,5.399,3.134,39.258,22.106,2.428,24.597,11.0,5.553,11.069,19.965,18.242,6.347,12.781,15.625,16.34,17.277,17.758,0.165,2.609,13.134,3.494,38.254,11.495,13.977,5.554],[12.822,25.097,15.883,-0.789,11.03,5.243,-2.012,11.125,15.345,-1.289,11.546,19.689,24.829,19.878,4.549,4.562,5.64,21.348,7.472,-4.09,4.801,8.332,0.889,23.36,11.338,3.053,28.144,19.289,23.407,16.579,8.038,18.566,-1.548,19.589,11.735,-5.355,6.555,7.59,18.319,12.529,2.652,23.28,13.889,3.983,8.565,5.155,21.922,16.563,9.006,13.963,17.234,-1.566,17.548,14.858,38.318,6.865,14.608,6.115,19.937,2.913,3.221,23.735,11.767,10.6,23.369,-2.268,13.876,-1.882,14.229,19.067,23.124,11.413,14.218,-0.848,-2.516,9.908,25.269,9.833,11.363,12.975,3.434,5.028,16.884,9.49,14.435,11.451,5.819,18.034,-0.226,0.236,25.796,19.743,19.666,4.703,8.608,25.006,6.244,5.273,-0.251,12.345,5.554,22.876,8.623,7.479,-3.081,9.819,22.219,3.182,3.653,23.375,17.367,10.144,-4.548,21.315,20.56,6.72,1.048,6.237,20.034,5.187,28.479,22.466,1.959,26.349,17.057,-5.757,-1.359,17.15,-1.772,11.376,8.105,19.059,20.065,20.202,6.218,16.504,8.32,-6.005,12.368,12.064,22.522,6.97,2.212,18.658,6.869,25.186,8.643,6.778,3.45,4.028,13.31,13.442,14.866,14.736,9.676,8.469,5.086,20.288,5.86,17.29,1.086,21.731,13.344,14.247,18.845,16.931,-1.509,5.633,3.771,40.118,21.92,2.783,24.444,10.817,5.369,10.613,20.013,18.306,6.396,12.306,15.527,16.428,17.278,16.858,0.304,2.554,13.582,3.531,38.338,11.62,13.585,5.497],[12.721,25.006,16.015,-1.047,10.962,5.04,-1.774,11.065,15.607,-1.329,11.453,19.822,24.899,19.977,4.32,4.506,5.69,21.547,7.794,-3.844,4.842,8.444,0.638,23.305,11.319,3.169,28.255,19.241,23.411,16.591,8.102,18.638,-1.839,19.624,11.466,-5.42,6.726,7.63,18.305,12.408,2.444,23.151,13.545,4.167,8.682,5.339,21.862,16.585,9.011,13.755,17.331,-1.474,17.376,14.924,38.573,6.858,14.595,6.038,19.912,2.852,3.339,23.668,11.586,10.489,23.31,-2.595,14.203,-2.287,14.686,18.841,23.094,11.011,14.09,-0.825,-2.217,9.958,25.024,9.472,11.211,13.255,3.176,5.012,17.135,9.616,14.373,11.618,6.004,18.128,0.006,0.278,26.059,19.414,19.093,4.568,8.766,24.879,6.273,5.502,-0.327,12.324,5.372,23.023,9.159,7.485,-3.137,9.862,22.512,3.296,3.366,23.606,16.748,9.89,-3.855,21.429,20.3,6.898,0.622,6.404,19.912,5.754,28.454,22.586,1.996,26.519,16.868,-6.218,-1.223,17.618,-1.828,11.789,8.351,19.545,20.105,20.983,6.258,16.621,8.434,-6.255,12.52,11.679,22.386,7.318,2.351,18.444,6.649,24.943,8.811,6.906,3.98,4.208,13.153,13.499,14.857,14.427,9.592,9.167,5.162,20.118,5.765,17.421,1.479,21.755,13.374,14.37,18.998,17.333,-1.891,5.401,3.843,40.18,21.872,2.07,23.811,10.57,5.448,10.601,19.936,18.398,6.257,12.836,15.256,16.649,16.925,16.15,0.35,3.136,14.427,3.907,38.42,11.9,12.991,5.219],[12.645,24.945,16.072,-1.273,10.949,4.868,-1.661,10.92,15.688,-1.415,11.373,19.921,24.968,19.899,4.21,4.389,5.77,21.682,7.887,-3.558,4.889,8.577,0.503,23.001,11.324,3.283,28.298,19.17,23.438,16.484,8.199,18.782,-1.943,19.715,11.367,-5.455,6.935,7.544,18.324,12.384,2.307,23.024,13.453,4.282,8.905,5.371,21.745,16.7,8.912,13.577,17.24,-1.383,17.262,14.862,38.92,6.851,14.5,6.0,19.975,2.84,3.612,23.666,11.537,10.418,23.543,-2.728,14.073,-2.186,15.572,19.149,23.303,10.503,13.465,-1.225,-2.262,9.735,24.84,9.74,11.38,13.604,3.258,5.307,17.302,9.318,14.324,11.547,6.112,18.352,0.106,-0.219,26.207,19.521,19.465,4.401,8.984,24.799,5.972,5.673,0.02,12.651,4.795,22.992,9.063,7.687,-2.579,9.651,22.831,3.301,3.303,23.081,15.875,9.878,-3.791,21.832,20.606,6.978,0.239,6.443,19.843,5.94,28.438,22.042,1.963,26.59,17.551,-5.926,-1.7,18.038,-2.08,11.943,8.379,19.797,20.317,20.539,6.528,16.708,8.694,-6.135,12.318,11.55,22.208,7.594,2.711,18.082,6.526,24.959,8.534,6.745,3.928,4.145,13.135,13.261,14.817,14.036,9.85,10.117,5.456,19.942,5.529,17.299,1.436,22.12,13.67,13.986,18.892,17.041,-1.515,5.273,3.491,40.328,21.931,2.676,23.497,10.695,5.62,10.929,19.83,18.279,6.2,13.008,15.15,16.399,16.692,16.116,0.459,2.787,15.15,3.846,38.362,11.921,12.996,5.146],[12.622,24.766,16.032,-1.308,10.973,4.842,-1.811,10.758,15.793,-1.523,11.305,19.986,25.158,19.805,4.165,4.251,5.919,21.844,7.831,-3.49,4.783,8.557,0.57,22.663,11.375,3.323,28.1,19.188,23.388,16.311,8.332,18.985,-1.882,19.76,11.477,-5.361,7.002,7.589,18.284,12.374,2.241,22.883,13.577,4.36,9.191,5.272,21.746,16.79,8.753,13.35,16.924,-1.221,17.217,14.666,39.259,6.787,14.447,5.961,20.016,3.059,3.774,23.688,11.766,10.436,23.474,-2.933,13.965,-2.184,15.351,19.104,23.469,9.752,12.632,-1.55,-2.462,9.576,25.21,10.089,11.692,13.687,3.079,5.275,17.364,9.453,14.853,11.214,5.886,18.634,0.055,-0.22,26.295,19.639,19.978,4.296,8.675,24.282,6.017,5.298,-0.435,13.064,5.23,22.499,9.037,7.725,-2.819,9.989,23.219,3.309,3.629,22.725,15.855,10.127,-4.041,22.201,20.416,7.13,0.244,6.62,20.269,5.63,28.726,22.093,2.03,26.486,17.315,-5.897,-1.425,17.997,-2.066,11.037,8.378,19.19,20.658,20.375,6.727,16.495,8.754,-6.085,12.137,11.81,22.472,7.957,2.95,18.288,6.49,24.887,8.499,7.18,3.8,3.871,13.284,13.441,15.066,14.327,9.935,10.314,5.911,20.117,5.133,17.455,1.052,21.877,13.437,13.763,18.763,16.434,-1.326,5.569,4.117,40.426,21.928,2.993,23.971,10.836,5.506,10.806,20.011,18.599,6.15,12.364,14.842,16.29,16.569,15.971,0.674,2.391,14.832,4.009,38.588,11.948,13.144,5.149],[12.521,24.721,16.055,-1.242,11.006,4.774,-1.967,10.61,15.743,-1.697,11.24,20.1,25.418,19.822,4.078,4.205,6.053,21.959,7.836,-3.716,4.582,8.533,0.745,22.541,11.494,3.331,27.908,19.321,23.357,16.115,8.514,18.879,-1.747,19.674,11.542,-5.155,6.986,7.737,18.212,12.392,2.128,22.915,13.847,4.531,9.444,5.125,21.64,16.974,8.642,13.016,16.553,-1.038,17.127,14.461,39.372,6.705,14.399,6.008,20.015,3.229,3.965,23.809,12.056,10.407,23.32,-2.961,14.217,-2.092,15.161,18.693,23.637,9.401,13.668,-1.207,-2.771,9.471,25.003,9.472,11.602,13.34,2.903,5.397,17.217,9.792,14.875,11.282,5.443,18.423,-0.032,0.036,26.481,19.763,19.245,3.793,8.725,24.331,6.072,5.418,-0.56,13.293,4.75,22.284,9.28,7.796,-3.163,9.861,23.23,2.997,4.071,22.538,16.358,10.529,-4.635,22.731,20.376,6.845,0.557,6.767,20.234,5.497,28.482,22.093,2.219,26.245,16.969,-6.388,-1.164,17.792,-1.921,10.316,8.513,19.761,20.16,21.115,6.638,16.402,8.643,-6.161,12.055,11.964,22.201,7.957,3.102,18.754,6.477,24.734,8.649,7.257,3.621,3.874,13.457,13.835,15.233,14.825,9.828,10.081,5.824,20.293,5.117,17.478,0.745,21.86,12.937,13.861,18.344,16.54,-1.699,5.32,4.163,41.023,22.113,2.839,24.497,11.293,5.146,10.846,20.596,18.823,6.046,12.537,14.478,16.144,16.966,15.951,0.838,2.941,14.325,4.149,38.869,11.835,12.812,5.121],[12.543,24.779,16.062,-1.161,11.138,4.653,-2.004,10.354,15.641,-1.87,11.109,20.156,25.666,19.764,3.824,4.21,6.062,22.017,8.004,-4.087,4.422,8.447,0.973,22.575,11.55,3.457,27.705,19.338,23.284,15.975,8.656,18.489,-1.699,20.004,11.511,-5.008,6.846,7.767,18.181,12.559,2.1,22.961,14.086,4.624,9.605,4.951,21.385,17.194,8.57,12.75,16.283,-0.875,17.053,14.326,39.253,6.59,14.326,6.123,20.123,3.211,4.153,23.998,12.427,10.343,23.308,-2.805,14.295,-1.883,14.69,19.002,23.967,9.682,14.013,-1.091,-2.563,9.33,24.669,9.046,11.078,12.906,2.898,5.091,16.857,9.912,14.439,11.493,5.516,18.443,-0.331,-0.429,26.732,19.996,18.972,4.138,8.781,24.273,5.937,5.87,-0.317,13.389,4.119,22.719,9.363,7.902,-3.108,9.591,23.162,2.979,4.055,22.817,16.563,11.076,-4.6,23.257,20.877,6.693,0.891,6.924,19.897,5.101,28.442,21.781,2.228,26.163,16.804,-6.194,-1.338,17.921,-1.801,10.492,8.651,20.071,19.698,20.723,6.881,16.363,8.429,-5.651,11.985,12.492,21.982,7.948,2.934,18.536,6.769,24.787,8.472,6.92,3.6,3.525,12.901,13.922,15.344,15.038,9.943,9.893,5.704,20.188,5.625,16.943,0.662,22.061,12.972,13.801,18.104,16.969,-1.476,5.7,4.256,40.925,22.457,3.192,24.995,11.61,5.382,10.751,20.357,18.679,6.41,13.383,13.956,15.78,17.264,16.04,0.969,3.255,13.931,4.315,38.814,11.968,12.823,5.18],[12.448,24.752,16.01,-0.956,11.336,4.54,-1.977,10.167,15.522,-1.828,10.958,20.242,25.898,19.782,3.536,4.366,5.988,22.135,8.23,-4.287,4.206,8.363,1.143,22.642,11.426,3.596,27.577,19.216,23.139,15.779,8.695,18.099,-1.858,20.338,11.422,-4.866,6.59,7.76,18.055,12.665,2.065,22.85,14.332,4.568,9.687,4.936,21.196,17.261,8.52,12.546,16.345,-0.697,17.038,14.265,39.106,6.646,14.213,6.408,20.206,3.126,4.324,24.3,12.837,10.427,23.231,-3.368,14.147,-1.808,15.059,19.451,24.188,9.68,13.747,-1.224,-2.606,9.246,25.161,9.135,11.003,13.179,3.049,4.479,16.723,9.872,14.327,11.63,5.999,18.727,-0.227,-0.735,27.144,19.933,19.149,3.784,8.916,24.095,6.035,5.341,0.339,13.091,4.751,23.081,9.69,7.803,-3.52,9.572,22.568,3.275,3.626,23.123,16.563,11.548,-4.62,23.501,20.773,6.712,1.103,7.017,19.868,4.933,28.08,21.871,2.609,26.277,16.865,-5.992,-1.176,17.798,-1.721,11.126,8.824,19.354,19.943,21.429,7.141,16.35,8.369,-5.641,11.984,12.416,22.259,7.966,2.949,18.123,6.682,24.762,8.517,6.282,3.735,3.781,12.674,14.238,15.671,15.044,9.883,9.698,5.863,20.009,5.465,16.891,0.788,21.771,12.879,13.643,18.057,16.728,-0.971,5.984,4.461,40.618,22.803,2.71,24.885,11.853,5.284,10.636,20.178,18.474,5.892,14.014,13.45,15.78,17.192,15.71,1.149,3.15,13.466,4.526,38.22,12.054,12.832,5.09],[12.316,24.813,15.917,-0.67,11.445,4.493,-1.95,10.129,15.505,-1.63,11.015,20.377,26.039,19.837,3.286,4.516,5.734,22.307,8.444,-4.315,4.13,8.302,1.302,22.619,11.273,3.707,27.65,19.043,23.002,15.642,8.758,17.835,-2.061,20.494,11.411,-4.807,6.338,7.75,17.854,12.674,2.055,22.716,14.464,4.535,9.706,5.012,21.074,17.233,8.556,12.376,16.562,-0.457,16.978,14.238,38.915,6.455,14.031,6.616,20.252,2.972,4.414,24.611,13.181,10.608,23.424,-3.106,13.743,-1.714,15.332,19.493,24.417,9.246,13.196,-1.027,-2.496,9.251,25.536,9.494,11.057,13.58,3.046,4.211,16.962,9.815,14.611,12.055,5.914,19.165,-0.017,-0.454,27.341,19.578,19.481,3.515,9.015,24.05,6.098,5.074,0.243,13.073,4.197,23.072,10.127,7.587,-3.919,9.769,21.823,3.396,3.508,22.773,15.928,11.559,-4.778,23.536,20.148,6.789,1.092,7.012,20.091,5.257,27.559,21.827,3.13,26.056,16.452,-6.046,-1.797,17.461,-2.242,11.335,9.019,19.29,19.605,21.392,7.51,16.28,8.129,-5.832,11.723,12.864,22.023,8.093,2.948,18.179,6.718,24.66,8.565,6.232,3.765,3.837,13.052,14.428,15.641,14.582,10.102,9.304,5.631,19.74,5.306,16.933,1.138,21.41,12.886,13.386,18.303,16.293,-1.102,6.164,4.483,40.748,23.09,2.866,24.759,12.276,5.05,10.671,20.435,18.591,6.074,13.922,13.486,15.92,17.22,15.691,1.402,2.827,13.167,4.662,37.995,11.992,12.776,5.569],[12.203,24.966,15.919,-0.381,11.403,4.461,-1.948,10.145,15.426,-1.427,11.196,20.535,26.128,19.917,3.205,4.583,5.439,22.394,8.655,-4.366,4.069,8.253,1.384,22.361,11.299,3.833,27.682,18.898,22.839,15.373,8.893,17.684,-2.39,20.465,11.505,-4.88,6.178,7.765,17.721,12.807,1.995,22.514,14.579,4.516,9.692,5.072,21.013,17.204,8.749,12.257,16.765,-0.4,16.811,14.284,38.735,6.159,13.767,6.84,20.313,2.84,4.495,24.897,13.355,10.8,23.493,-2.172,13.682,-1.057,15.219,19.047,24.422,9.064,12.937,-0.79,-2.512,9.459,25.311,9.251,11.041,13.732,2.744,4.221,16.651,9.939,14.55,12.394,5.461,19.29,-0.16,0.048,27.191,19.534,19.194,3.544,9.158,23.93,6.13,5.189,0.129,12.999,4.211,23.389,10.136,7.268,-3.543,9.726,22.278,3.444,4.298,22.685,15.308,11.001,-4.863,23.751,20.366,6.828,1.322,7.17,19.717,5.286,27.725,21.777,3.508,26.081,16.246,-5.546,-1.738,16.801,-2.554,10.957,9.188,19.862,19.135,21.451,7.79,16.141,7.615,-5.419,11.57,13.121,21.739,8.202,2.812,17.585,6.865,24.378,8.705,6.348,3.852,3.82,13.055,14.389,15.495,14.393,10.192,9.016,5.647,19.749,5.399,16.722,1.084,21.432,13.128,13.328,18.556,16.748,-1.035,6.288,4.301,40.516,23.265,3.198,24.926,12.462,4.746,10.946,20.613,18.499,6.553,13.946,13.77,15.875,17.055,16.248,1.426,2.35,13.126,4.9,38.239,11.441,12.538,5.66],[12.125,25.01,15.939,-0.143,11.502,4.384,-2.098,10.047,15.29,-1.125,11.337,20.61,26.108,19.881,3.209,4.679,5.31,22.495,8.741,-4.463,3.998,8.283,1.481,22.006,11.362,4.128,27.711,18.832,22.9,15.017,9.004,17.66,-2.594,20.451,11.518,-4.851,6.013,7.834,17.463,12.993,1.968,22.364,14.601,4.561,9.705,5.173,21.084,17.317,8.984,12.381,16.976,-0.475,16.597,14.402,38.619,6.095,13.485,7.043,20.391,2.765,4.607,25.11,13.302,10.848,23.45,-2.266,13.835,-0.881,14.673,19.221,24.274,9.031,12.624,-0.469,-2.942,9.729,25.41,9.38,11.237,13.678,2.539,4.156,16.382,9.84,14.146,11.729,5.275,19.39,-0.21,0.321,26.828,20.218,19.072,3.789,9.526,23.677,6.248,4.964,0.398,13.251,4.353,23.519,10.141,7.111,-3.345,9.475,23.127,3.646,4.519,22.284,15.034,10.927,-4.927,23.643,20.629,6.617,1.754,7.508,19.338,4.518,27.942,21.132,2.996,26.549,15.629,-5.543,-2.279,17.02,-2.448,11.152,9.234,20.086,19.131,21.316,7.812,16.103,7.797,-5.429,12.376,13.125,21.587,8.193,2.909,17.416,6.787,24.235,8.885,6.077,3.855,3.397,13.506,14.461,15.748,14.76,10.269,9.375,5.892,19.92,4.923,16.736,0.344,21.379,12.956,12.802,18.374,16.553,-1.054,6.073,4.512,40.398,23.341,2.632,25.264,12.017,4.732,10.997,20.62,18.653,5.963,14.139,13.575,16.014,16.883,16.475,1.361,2.72,12.935,4.66,37.958,10.987,12.382,5.55],[12.055,25.113,15.795,-0.083,11.616,4.246,-2.342,9.966,15.202,-0.9,11.357,20.706,25.878,19.847,3.242,4.835,5.288,22.591,8.714,-4.604,3.762,8.371,1.628,21.82,11.517,4.204,27.737,18.816,23.113,14.734,9.109,17.724,-2.608,20.48,11.727,-4.664,5.963,7.93,17.187,13.197,1.796,22.281,14.624,4.824,9.76,5.2,21.163,17.364,9.148,12.49,16.902,-0.568,16.382,14.509,38.497,6.098,13.219,6.876,20.47,2.667,4.626,25.24,13.227,10.562,23.543,-2.372,13.715,-1.132,14.782,19.455,24.038,9.21,12.664,-0.637,-3.009,9.771,25.773,9.158,11.23,13.421,2.506,3.975,16.69,9.9,14.359,11.691,5.533,19.406,-0.545,0.486,26.658,20.462,19.117,3.941,9.75,23.158,6.479,4.974,0.421,13.224,3.927,23.26,9.971,7.175,-3.305,9.514,22.88,3.617,4.846,21.919,14.983,11.119,-4.629,23.582,20.351,6.592,1.943,7.426,19.295,4.686,28.134,21.418,3.031,26.917,15.583,-5.948,-2.202,17.409,-2.336,11.123,8.892,19.834,19.25,21.105,7.357,15.991,7.661,-5.199,12.191,12.687,21.541,8.011,3.199,17.614,6.918,24.164,8.817,5.955,4.034,3.356,13.73,14.875,15.812,15.056,10.726,10.118,6.111,19.964,4.772,16.962,0.348,21.609,13.188,12.757,18.585,15.833,-1.096,6.362,4.708,39.955,23.437,2.988,25.564,11.965,5.069,11.011,20.616,18.773,5.778,13.658,13.837,16.129,16.601,16.376,1.205,3.323,11.993,5.137,38.166,11.211,12.315,5.816],[11.977,25.454,15.785,-0.243,11.564,4.275,-2.541,9.93,15.227,-0.775,11.348,20.792,25.736,19.896,3.198,5.056,5.348,22.552,8.538,-4.611,3.479,8.505,1.758,21.73,11.66,4.18,27.85,18.779,23.204,14.53,8.994,17.809,-2.473,20.438,12.014,-4.409,6.026,7.923,17.132,13.5,1.625,22.166,14.509,5.231,9.78,5.24,21.19,17.415,9.358,12.452,16.663,-0.708,16.202,14.654,38.28,6.181,12.826,6.685,20.524,2.71,4.682,25.357,13.086,10.166,23.689,-2.254,13.767,-1.043,14.652,19.235,23.869,9.525,12.773,-0.97,-3.131,9.729,26.119,9.381,10.851,13.327,2.77,4.183,16.913,10.0,14.281,12.466,5.639,19.408,-0.887,-0.007,26.494,20.29,18.884,3.26,9.667,23.244,6.567,4.911,0.927,13.353,4.046,23.572,9.91,7.206,-3.5,9.848,22.598,3.688,4.811,22.198,15.212,11.292,-5.026,23.766,20.058,7.024,2.018,7.414,19.54,4.578,27.549,22.245,3.418,26.492,15.526,-5.486,-2.285,17.355,-2.406,11.187,9.036,19.648,19.186,21.166,6.754,16.007,7.733,-5.291,12.34,12.901,21.718,8.375,3.502,17.035,7.676,24.09,9.119,6.25,4.085,3.488,13.611,14.983,15.9,14.574,10.736,10.562,6.055,19.71,5.016,16.687,0.714,21.576,13.101,12.98,18.359,15.695,-0.628,6.372,4.808,40.059,23.52,2.337,25.347,11.903,4.698,10.658,20.637,18.683,6.104,13.446,14.186,16.095,16.332,16.306,1.058,3.243,11.57,5.125,38.488,11.631,12.227,5.525],[11.999,25.85,16.03,-0.503,11.497,4.55,-2.67,10.076,15.258,-0.722,11.336,20.688,25.666,19.892,2.9,5.2,5.335,22.576,8.379,-4.551,3.44,8.777,1.937,21.822,11.834,4.171,27.845,18.712,23.238,14.38,8.861,17.755,-2.316,20.308,12.132,-4.227,6.186,7.805,17.104,13.821,1.627,22.032,14.306,5.495,9.773,5.39,21.174,17.321,9.629,12.552,16.503,-0.857,16.18,14.658,38.226,6.291,12.382,6.637,20.498,2.591,4.779,25.325,12.97,9.981,24.063,-2.044,13.806,-1.083,14.634,19.512,23.767,8.937,12.213,-0.544,-3.158,9.807,26.37,9.519,10.645,13.544,2.876,3.866,17.066,9.799,14.472,12.034,5.838,19.99,-0.745,0.033,26.474,20.563,18.685,3.98,9.436,23.427,6.687,4.996,1.459,13.323,4.021,23.463,9.456,7.172,-3.891,10.093,22.596,4.432,4.431,22.427,15.046,10.958,-5.167,23.853,20.134,7.192,1.513,7.148,19.656,4.304,27.232,22.022,3.649,26.513,15.499,-4.93,-2.813,17.241,-2.727,11.758,8.803,19.855,19.29,21.276,6.702,16.21,7.565,-5.102,12.438,12.486,21.46,8.712,3.801,16.508,8.374,23.939,9.334,6.422,4.372,3.302,14.232,15.463,15.576,14.35,10.504,10.948,6.572,19.828,5.068,16.731,0.13,21.027,13.113,12.381,17.459,15.693,-0.442,6.118,4.918,39.909,23.758,2.602,24.92,11.687,4.863,10.163,20.555,18.659,6.424,13.296,13.415,16.126,15.923,15.997,0.749,2.923,11.159,5.059,38.212,11.348,12.371,5.072],[12.144,26.162,16.435,-0.672,11.258,4.763,-2.685,10.212,15.219,-0.614,11.329,20.642,25.718,19.978,2.67,5.437,5.13,22.622,8.312,-4.489,3.543,8.913,2.144,22.024,11.972,4.231,27.806,18.662,23.165,14.234,8.739,17.685,-2.451,20.225,12.08,-4.03,6.18,7.751,16.908,14.12,1.563,21.883,14.037,5.674,9.829,5.563,21.227,17.123,9.886,12.548,16.266,-1.029,16.118,14.679,38.123,6.499,12.047,6.576,20.373,2.42,4.857,25.135,12.821,9.988,24.591,-1.761,13.656,-1.495,15.144,19.425,23.873,8.808,11.691,-0.952,-3.156,9.636,26.572,9.382,11.232,13.84,2.973,3.532,17.228,9.559,14.863,11.671,5.966,20.028,-0.726,0.736,26.427,19.896,18.81,3.572,9.424,23.576,7.072,5.476,1.289,13.264,3.57,23.259,9.53,6.766,-3.349,10.189,22.951,4.455,4.632,22.388,15.087,10.551,-5.116,23.733,20.081,7.238,1.03,7.089,19.378,4.621,27.088,21.561,3.628,26.928,15.359,-5.142,-2.454,16.903,-2.722,12.097,8.333,19.998,19.289,21.098,7.199,16.011,7.774,-4.405,12.383,12.463,21.072,8.179,4.172,16.712,8.291,23.716,9.651,6.813,4.406,3.057,14.573,15.7,15.518,14.396,11.559,11.261,7.083,19.953,5.901,16.792,0.053,21.079,13.045,12.353,17.291,16.423,-0.741,6.192,5.031,39.915,23.624,2.777,24.947,11.592,5.355,10.295,20.464,18.741,6.307,13.221,13.44,16.188,15.18,15.782,0.514,2.363,10.936,5.4,37.985,10.601,11.51,5.138],[12.315,26.245,16.687,-0.885,10.969,4.895,-2.672,10.267,15.363,-0.345,11.369,20.504,25.855,20.008,2.688,5.675,4.859,22.631,8.528,-4.313,3.625,8.902,2.169,22.077,11.999,4.393,27.71,18.588,23.038,14.134,8.562,17.71,-2.739,20.186,12.053,-3.889,6.181,7.756,16.599,14.165,1.495,21.759,13.871,5.788,9.83,5.746,21.444,17.011,10.323,12.514,16.057,-1.226,16.032,14.808,38.068,6.773,11.84,6.435,20.311,2.326,4.916,24.896,12.675,9.866,24.491,-1.859,13.508,-1.737,14.643,19.396,24.033,9.3,11.923,-1.174,-3.19,9.525,26.904,9.318,11.488,13.906,3.199,3.489,17.633,9.298,15.033,12.002,5.824,19.79,-0.911,0.704,26.103,20.701,19.005,3.084,9.429,23.469,7.425,4.942,1.337,13.167,3.769,23.464,9.595,6.734,-2.891,10.153,23.501,4.538,4.987,22.449,15.109,10.799,-5.107,23.54,19.685,7.48,1.497,7.299,19.348,4.674,27.174,21.455,3.355,27.205,15.031,-5.423,-2.482,16.902,-2.766,11.755,8.555,19.485,19.38,20.792,7.829,15.763,7.541,-4.559,12.552,12.248,21.437,8.054,5.01,17.253,8.892,23.62,9.865,6.848,4.172,3.268,14.62,15.651,15.386,14.358,11.672,11.011,7.07,20.279,6.196,16.645,0.384,21.586,13.005,12.89,17.45,16.491,-1.177,6.378,4.998,39.592,23.201,2.329,24.852,11.481,5.238,10.428,19.826,18.563,6.096,13.534,14.142,16.095,14.366,15.602,0.566,2.547,11.381,5.417,37.595,10.612,10.941,5.108],[12.446,26.238,16.734,-1.085,10.926,4.931,-2.729,10.325,15.321,-0.158,11.438,20.434,25.852,20.011,2.793,5.837,4.605,22.639,8.779,-4.14,3.743,8.893,2.077,21.998,11.937,4.579,27.693,18.492,23.04,14.049,8.513,17.806,-2.923,19.949,12.105,-4.002,6.174,7.947,16.444,14.2,1.585,21.846,13.791,5.89,9.808,5.786,21.769,16.908,10.467,12.666,15.927,-1.428,15.789,14.881,37.947,6.8,11.745,6.271,20.243,2.298,4.93,24.655,12.576,9.689,24.448,-1.483,14.162,-1.851,14.441,19.672,24.01,9.54,12.557,-0.908,-3.184,9.78,26.836,9.103,11.425,13.958,3.137,3.628,17.592,9.147,15.255,11.46,6.119,19.705,-0.849,1.034,26.858,20.802,18.512,3.953,9.791,23.238,7.416,4.42,1.509,13.305,4.136,23.735,10.128,6.437,-3.221,10.349,23.365,5.242,5.18,22.504,14.948,11.172,-4.899,23.338,19.922,7.352,2.05,7.052,19.341,4.283,27.059,21.571,3.415,26.862,14.675,-5.31,-3.003,17.583,-3.305,12.016,8.829,19.606,19.419,20.75,7.819,15.469,7.622,-4.568,11.972,12.28,21.398,8.416,5.005,16.948,9.027,23.685,9.82,6.643,4.673,3.265,14.632,15.698,15.226,14.132,11.805,11.299,7.266,20.638,5.911,16.288,0.163,22.271,13.156,13.314,17.09,16.58,-1.11,6.37,4.599,39.595,22.981,2.637,24.639,11.434,5.362,10.068,19.539,18.634,6.874,13.521,14.224,16.242,13.998,15.474,0.279,2.935,10.811,5.403,37.742,11.084,11.609,4.731],[12.534,26.34,16.646,-1.115,10.901,4.918,-2.794,10.334,15.228,0.037,11.547,20.43,25.853,19.937,2.961,6.005,4.561,22.661,9.054,-4.103,3.81,8.918,2.071,22.121,12.0,4.721,27.674,18.451,23.06,13.901,8.6,17.91,-3.1,19.595,12.226,-4.178,6.085,8.24,16.371,14.384,1.73,22.071,13.701,5.893,9.911,5.79,22.098,16.732,10.219,12.89,15.83,-1.497,15.529,14.952,37.987,6.78,11.782,6.243,20.198,2.452,4.757,24.586,12.419,9.518,24.74,-1.334,13.872,-1.842,14.526,19.653,24.209,9.261,12.762,-0.917,-3.176,9.709,26.538,9.418,11.51,14.068,3.311,3.509,17.432,9.286,15.109,10.965,6.333,19.488,-0.871,0.814,26.926,20.068,18.603,3.862,9.868,23.612,7.643,4.432,1.365,13.252,4.047,23.625,10.45,6.405,-3.052,10.333,22.787,5.23,5.318,22.438,15.017,10.92,-5.022,23.353,19.962,7.314,1.672,6.794,19.255,4.82,27.13,22.116,3.756,26.601,14.961,-5.202,-3.363,17.195,-3.618,12.107,8.706,19.756,19.546,19.985,7.561,15.913,7.606,-4.879,12.614,12.37,21.181,8.682,4.716,16.595,8.083,23.894,9.894,6.496,4.741,3.183,14.993,15.81,15.352,13.928,12.014,11.463,7.468,20.93,5.406,15.871,0.244,22.4,13.33,13.603,16.643,16.311,-1.225,5.823,4.851,39.703,23.206,2.355,24.19,11.221,5.443,9.996,19.42,18.849,6.565,13.242,13.815,16.315,14.155,15.482,0.116,2.38,10.267,5.694,37.983,10.753,11.803,4.695],[12.515,26.442,16.464,-1.043,10.839,4.949,-2.799,10.337,15.002,0.084,11.563,20.311,25.879,19.769,2.921,6.138,4.694,22.669,9.234,-4.011,3.88,9.059,1.99,22.456,12.066,4.831,27.667,18.411,23.16,13.859,8.666,17.959,-3.304,19.257,12.504,-4.232,6.018,8.365,16.403,14.577,1.684,22.279,13.619,5.791,9.916,5.822,22.264,16.417,10.126,13.16,15.757,-1.549,15.359,15.104,38.166,6.665,11.907,6.271,20.09,2.531,4.603,24.694,12.224,9.309,24.874,-1.687,13.24,-2.045,14.379,19.685,23.919,9.134,12.119,-0.937,-3.116,9.884,27.172,9.981,11.037,14.062,3.529,3.524,17.613,9.275,14.968,11.459,6.443,19.752,-0.967,0.918,26.412,20.127,19.015,4.037,10.282,23.922,7.666,4.341,1.72,13.109,3.874,23.358,10.313,6.626,-3.283,9.949,22.119,4.94,4.814,22.769,14.996,10.834,-4.891,23.654,19.623,7.43,1.159,7.24,19.199,5.114,27.152,21.894,4.174,26.528,15.039,-5.552,-3.041,16.983,-3.534,12.175,8.341,18.842,19.682,20.205,7.038,16.215,7.513,-5.399,12.855,12.116,21.573,8.825,4.671,17.13,8.517,24.132,9.945,6.327,4.426,3.429,15.115,15.89,15.019,13.65,11.318,11.477,7.282,21.518,5.246,15.607,0.428,22.23,13.435,13.373,16.562,16.005,-1.084,6.182,5.279,39.954,22.99,2.439,24.574,11.031,5.312,10.002,19.455,18.551,5.871,12.836,13.203,16.322,14.039,15.476,0.056,2.818,10.348,5.352,38.496,10.573,11.685,4.962],[12.365,26.598,16.332,-1.039,10.836,5.042,-2.714,10.421,14.672,-0.057,11.355,20.246,25.789,19.731,2.851,6.122,4.591,22.708,9.242,-3.809,3.974,9.048,1.882,22.731,12.117,5.005,27.656,18.417,23.132,13.924,8.77,17.999,-3.333,19.063,12.829,-4.31,6.082,8.272,16.624,14.6,1.591,22.443,13.45,5.777,9.942,5.714,22.273,16.074,10.146,13.447,15.647,-1.541,15.285,15.286,38.273,6.309,12.05,6.422,19.869,2.65,4.527,24.86,12.044,9.298,24.974,-1.476,13.306,-2.11,14.008,19.063,24.032,9.205,12.377,-1.01,-3.384,10.151,27.461,9.484,10.656,13.869,3.414,3.868,17.071,9.124,14.967,11.786,6.417,20.128,-0.864,0.79,26.388,20.218,18.469,4.217,10.459,24.141,7.32,4.265,1.239,13.056,4.01,23.058,10.236,6.562,-3.107,10.564,22.188,5.116,4.989,23.326,14.783,10.814,-5.089,23.933,19.854,7.733,1.341,7.246,19.163,4.593,27.324,21.905,3.697,26.315,14.816,-5.595,-2.937,17.389,-3.65,13.121,7.861,18.575,19.6,20.178,6.85,15.767,7.604,-5.246,13.029,12.38,21.929,8.411,4.528,17.417,9.257,24.28,9.777,6.222,4.719,3.199,15.089,16.018,14.612,13.297,11.637,11.038,7.034,22.181,5.871,15.235,0.179,22.638,13.444,12.789,16.762,15.53,-0.908,6.542,4.83,40.096,23.123,3.016,24.775,11.018,5.164,9.68,19.704,18.232,6.591,12.832,13.167,16.542,13.665,15.754,0.067,2.74,10.794,5.331,38.209,10.87,11.704,4.989],[12.37,26.773,16.197,-1.114,10.802,5.144,-2.652,10.362,14.542,-0.243,11.089,20.347,25.777,19.586,3.004,6.013,4.288,22.76,9.136,-3.615,3.956,8.994,1.828,22.896,12.239,5.125,27.63,18.612,23.139,13.909,8.705,18.19,-3.195,19.074,13.21,-4.443,6.081,8.056,16.743,14.491,1.466,22.602,13.27,5.759,9.946,5.68,22.418,15.786,10.324,13.677,15.681,-1.468,15.166,15.394,38.046,6.211,12.164,6.674,19.76,2.717,4.59,24.896,11.876,9.478,25.115,-1.916,13.234,-1.908,13.891,19.354,23.92,9.517,12.856,-1.433,-3.294,9.228,27.156,9.309,11.166,13.828,3.493,3.58,17.398,9.283,14.86,11.922,6.403,19.991,-0.791,0.544,26.404,19.853,18.558,3.737,10.037,24.256,7.54,4.2,1.339,13.267,4.227,22.971,10.415,6.342,-2.757,10.552,22.584,5.285,5.49,23.362,14.934,10.644,-4.976,24.295,20.05,7.677,1.49,7.412,19.222,4.87,27.515,21.772,3.695,26.297,15.151,-5.461,-3.45,16.869,-3.637,12.926,7.945,19.372,19.566,19.737,7.243,15.829,7.831,-5.357,13.419,11.852,21.663,8.344,4.827,17.715,8.791,24.381,9.899,6.296,4.278,2.858,15.118,15.819,14.432,12.915,11.63,10.911,7.277,21.826,5.977,15.181,-0.134,22.442,13.684,12.84,16.68,15.24,-1.068,6.411,3.902,39.759,23.206,2.225,25.076,11.158,4.71,9.8,19.181,18.248,6.276,12.956,14.036,16.458,13.919,15.501,0.158,3.064,10.826,5.299,37.933,11.036,11.487,4.913],[12.437,26.853,16.274,-1.265,10.853,5.174,-2.646,10.385,14.68,-0.337,10.792,20.475,25.656,19.406,3.203,6.006,4.138,22.781,9.099,-3.47,3.993,8.961,1.89,22.852,12.244,5.167,27.666,18.886,23.197,13.924,8.5,18.304,-3.117,19.135,13.425,-4.717,6.111,7.779,16.876,14.413,1.263,22.662,13.02,5.776,9.898,5.606,22.449,15.695,10.386,13.997,15.812,-1.332,15.068,15.398,37.71,6.195,12.108,6.802,19.622,2.49,4.686,24.869,11.756,9.611,25.042,-1.935,13.097,-2.203,14.009,19.764,23.808,9.277,13.256,-0.919,-2.886,8.933,27.373,9.654,10.946,13.959,3.652,3.714,17.345,9.575,15.257,10.974,6.586,19.976,-0.839,0.268,26.27,20.078,19.104,4.293,10.325,23.939,7.486,4.236,1.278,13.424,3.672,22.84,9.93,5.844,-2.741,10.16,22.631,4.91,5.426,23.298,14.716,10.986,-4.739,24.522,20.257,7.501,1.369,7.082,19.522,4.723,27.47,21.706,4.223,26.557,15.053,-5.868,-3.573,17.32,-3.06,12.954,8.118,19.114,19.593,20.328,7.472,16.197,7.583,-5.96,13.349,11.93,21.48,8.53,4.865,17.47,8.852,24.373,10.085,6.249,4.145,3.003,14.8,15.797,14.121,13.247,11.954,11.287,7.342,21.948,5.72,15.059,-0.157,22.65,13.64,13.46,16.974,15.46,-1.142,6.411,4.006,39.307,23.043,2.885,25.026,10.674,4.811,10.125,18.892,18.166,6.077,12.677,14.353,16.536,13.613,15.408,0.297,3.341,10.693,5.179,38.015,10.973,11.506,5.833],[12.55,26.818,16.393,-1.399,10.886,5.143,-2.532,10.467,14.94,-0.386,10.605,20.615,25.579,19.434,3.501,6.066,4.214,22.752,9.248,-3.433,3.851,8.952,1.961,22.664,12.213,5.174,27.706,19.094,23.117,13.966,8.255,18.278,-3.096,19.163,13.43,-4.99,6.132,7.656,17.023,14.456,1.247,22.637,12.922,5.727,9.87,5.451,22.415,15.645,10.324,14.361,15.929,-1.094,14.994,15.301,37.565,6.121,12.04,6.891,19.588,2.443,4.793,24.806,11.458,9.627,25.116,-2.102,13.757,-2.545,14.128,19.097,23.79,9.193,12.861,-0.815,-3.024,9.194,27.647,9.761,10.144,13.947,3.808,3.877,17.176,9.634,15.055,10.299,6.723,20.081,-0.665,0.253,26.099,20.36,19.039,4.472,10.748,23.974,7.444,4.179,1.242,13.239,4.139,22.635,9.888,6.136,-2.85,10.247,22.901,4.863,5.327,23.126,14.869,11.266,-4.92,24.463,20.341,7.489,1.049,6.544,19.949,4.793,27.024,22.406,4.319,26.759,14.862,-6.231,-3.17,17.999,-3.027,13.045,7.731,18.998,20.053,20.273,7.329,16.435,7.463,-6.104,13.773,11.855,21.566,8.729,4.955,17.12,8.324,24.374,9.73,6.089,4.552,2.769,15.013,15.79,14.296,13.933,11.936,11.593,7.203,22.343,5.403,14.756,-0.097,22.906,13.638,13.619,17.446,15.557,-1.06,6.337,5.133,39.357,22.9,2.27,24.674,9.997,4.565,10.0,18.854,18.126,6.398,12.529,14.374,16.838,13.211,15.984,0.526,2.474,10.811,4.929,37.766,10.537,11.444,5.833],[12.619,26.646,16.374,-1.566,10.858,5.111,-2.355,10.416,15.146,-0.484,10.487,20.763,25.494,19.526,3.814,6.073,4.435,22.713,9.511,-3.527,3.725,8.994,2.007,22.551,12.161,5.224,27.759,19.143,23.096,14.109,8.103,18.317,-3.09,19.238,13.336,-5.274,6.085,7.566,17.112,14.673,1.346,22.551,12.984,5.688,9.825,5.359,22.437,15.596,10.09,14.725,16.116,-0.748,14.866,15.373,37.585,5.946,12.037,6.911,19.672,2.24,4.743,24.678,11.071,9.444,25.056,-2.194,14.814,-2.415,13.864,19.005,23.677,9.147,12.317,-1.673,-3.314,8.809,27.389,9.663,10.049,14.259,4.192,4.039,17.833,9.376,15.483,10.712,6.965,20.27,-0.42,0.537,26.215,20.296,18.592,4.576,10.682,24.086,7.552,4.366,1.678,13.562,3.889,22.495,10.333,6.539,-2.889,10.388,22.396,5.405,5.105,22.685,15.014,11.313,-4.879,24.2,20.57,7.782,0.878,6.616,20.069,4.923,27.063,22.691,4.384,26.567,14.881,-6.347,-2.608,17.94,-3.095,12.877,7.602,18.832,20.022,20.027,6.888,16.354,7.556,-6.124,14.044,11.57,21.716,8.764,4.464,17.308,8.167,24.339,10.465,6.296,4.236,2.778,15.334,15.803,14.517,13.053,11.573,11.342,7.142,22.143,4.974,14.671,-0.304,22.075,13.741,13.452,17.245,15.742,-0.984,6.922,5.416,39.395,22.998,2.435,24.669,9.977,5.011,9.958,19.161,18.553,6.019,12.012,14.79,16.851,13.163,15.561,0.698,2.798,11.111,5.386,37.375,10.526,11.194,5.358],[12.693,26.545,16.598,-1.671,10.812,5.198,-2.356,10.307,15.493,-0.527,10.367,20.739,25.63,19.505,3.992,6.176,4.645,22.691,9.744,-3.631,3.603,9.051,1.983,22.499,12.145,5.251,27.75,19.14,23.09,14.174,8.11,18.271,-3.039,19.273,13.263,-5.359,6.112,7.533,17.159,14.961,1.4,22.426,12.837,5.796,9.772,5.288,22.239,15.706,9.912,15.091,16.111,-0.432,14.679,15.518,37.555,5.823,12.021,6.826,19.857,2.269,4.603,24.593,10.873,9.449,24.867,-2.117,14.803,-2.624,13.81,19.337,23.754,9.15,12.705,-1.942,-2.958,8.572,27.167,9.431,10.322,14.353,4.484,4.537,17.68,9.131,15.317,11.538,6.808,20.252,-0.527,0.2,26.033,20.671,18.448,4.628,10.904,24.158,7.545,4.573,1.554,13.506,3.083,22.313,10.28,6.539,-3.002,10.681,21.898,4.956,5.112,22.759,15.051,11.008,-4.875,23.664,20.437,8.084,1.027,6.741,19.905,4.793,27.437,22.098,4.193,26.276,15.152,-6.345,-2.251,17.849,-2.533,13.012,7.512,18.926,19.931,20.452,6.518,16.068,7.531,-6.508,13.335,11.574,21.362,8.366,4.009,17.85,8.228,24.234,9.821,6.135,3.931,2.949,15.521,15.939,14.376,12.673,11.703,11.032,6.949,22.637,4.908,14.784,-0.187,21.838,13.761,13.415,17.311,15.825,-0.7,6.477,4.358,39.157,22.83,2.574,25.022,9.541,4.545,9.786,19.299,18.378,5.568,11.919,14.789,16.619,13.475,15.634,0.942,2.636,10.829,5.732,37.627,10.876,11.127,5.629],[12.917,26.434,16.715,-1.632,10.928,5.396,-2.337,10.313,15.806,-0.561,10.254,20.68,25.822,19.313,4.077,6.082,4.773,22.672,9.752,-3.647,3.37,9.121,1.88,22.699,12.083,5.181,27.687,19.011,22.903,14.161,8.039,18.179,-2.812,19.264,13.213,-5.248,6.044,7.55,17.179,15.14,1.459,22.233,12.715,5.869,9.698,5.114,22.029,15.678,9.861,15.288,16.052,-0.153,14.583,15.493,37.461,5.648,12.011,6.612,19.946,2.384,4.478,24.5,10.891,9.641,24.831,-2.467,15.281,-2.919,14.488,19.386,24.065,8.913,12.783,-1.707,-2.913,8.704,27.35,9.405,10.148,14.566,4.533,4.27,17.894,9.66,15.466,11.592,7.234,20.171,-0.486,-0.056,26.173,21.095,19.188,4.632,10.998,23.849,7.572,4.542,0.988,13.282,3.217,22.428,10.288,6.47,-3.114,10.729,21.869,4.889,5.129,23.034,15.049,11.101,-5.166,23.096,20.2,7.779,0.606,6.363,19.834,4.622,27.366,21.866,3.733,26.349,15.25,-6.188,-2.414,17.469,-2.488,12.9,7.228,19.053,19.895,20.762,6.752,15.675,7.3,-6.508,12.788,11.091,21.3,7.981,4.196,18.385,8.818,24.012,9.533,6.223,4.034,3.143,15.38,16.461,14.498,12.821,11.622,10.571,7.059,22.373,5.325,14.623,0.246,22.621,13.943,13.518,17.451,15.472,-0.295,5.974,4.378,39.19,22.771,2.231,24.885,9.375,3.869,10.221,19.551,18.296,5.964,12.124,15.301,16.867,13.14,16.098,1.535,2.67,10.535,5.303,38.366,10.966,11.484,5.473],[13.147,26.409,16.729,-1.685,11.14,5.686,-2.286,10.265,16.128,-0.672,10.181,20.734,25.883,19.294,3.886,5.87,4.798,22.6,9.644,-3.547,3.213,9.098,1.748,22.936,12.028,5.039,27.677,18.803,22.659,14.085,7.698,18.261,-2.557,19.321,13.136,-5.209,5.837,7.767,17.137,15.029,1.551,22.077,12.701,5.842,9.591,4.964,21.923,15.493,9.895,15.477,16.142,0.108,14.443,15.526,37.582,5.609,12.198,6.49,19.917,2.354,4.377,24.303,11.039,9.78,24.767,-2.488,15.247,-2.499,14.77,18.53,24.217,8.762,13.423,-1.513,-3.169,8.389,27.422,10.057,9.839,14.759,4.316,4.341,17.844,9.584,15.895,11.698,7.344,20.275,-0.516,0.155,26.882,21.066,18.407,4.698,11.084,24.11,7.41,4.959,1.091,13.367,3.511,22.626,10.411,6.632,-2.885,10.544,22.087,5.113,5.071,23.395,15.034,11.432,-5.241,23.55,20.03,7.737,0.469,6.327,20.021,4.211,27.054,21.729,3.321,26.506,15.256,-6.208,-2.475,17.528,-2.841,12.686,7.469,18.841,19.822,20.732,6.916,15.627,7.089,-5.864,12.784,10.909,21.229,7.929,4.616,18.643,8.478,23.844,10.136,6.487,3.691,3.178,15.205,16.334,14.267,13.066,11.476,10.538,7.5,22.286,5.441,14.492,0.122,22.719,13.807,13.887,17.112,15.41,-0.087,5.998,4.97,38.917,22.562,2.899,24.727,9.902,4.387,10.175,19.306,18.628,6.013,12.01,15.259,16.876,12.761,15.483,1.815,2.944,11.109,5.306,38.15,11.124,11.403,5.413],[13.373,26.464,16.749,-1.785,11.335,5.725,-2.424,10.176,16.411,-0.639,9.959,20.804,26.01,19.074,3.616,5.893,5.07,22.538,9.811,-3.487,3.111,9.044,1.672,23.076,12.018,4.801,27.69,18.733,22.488,14.03,7.516,18.361,-2.532,19.367,13.06,-5.141,5.768,8.091,17.055,14.706,1.518,22.044,12.727,5.791,9.457,4.877,22.04,15.235,9.966,15.633,16.062,0.282,14.283,15.419,37.663,5.794,12.516,6.465,19.869,2.536,4.411,24.123,11.21,9.846,24.796,-2.105,15.091,-2.217,15.256,19.095,24.196,8.655,13.504,-1.755,-3.273,8.345,27.258,10.569,9.845,15.077,4.593,4.247,17.856,9.612,15.697,11.736,7.189,20.407,-0.566,0.309,27.072,21.025,17.886,4.234,10.967,24.738,7.319,5.242,1.207,13.578,3.615,22.642,10.304,7.022,-3.004,10.444,22.392,4.445,4.732,23.296,14.753,11.275,-4.89,23.42,19.4,8.001,1.074,5.977,20.069,4.215,27.01,21.575,3.612,26.16,15.614,-6.465,-1.928,18.189,-2.238,12.686,7.029,19.064,20.116,20.849,6.863,15.752,6.895,-6.154,12.729,11.106,20.96,7.893,4.613,18.514,8.102,23.751,9.765,5.871,3.647,3.069,15.302,15.905,13.817,13.331,11.75,10.757,7.493,22.33,5.12,14.405,-0.063,21.698,13.753,14.217,17.423,15.466,0.147,6.112,4.926,39.281,22.25,2.338,24.492,9.936,4.681,10.347,19.0,18.515,5.587,12.304,15.498,16.829,12.623,15.916,1.385,2.475,11.406,5.72,37.974,11.198,11.591,5.146],[13.608,26.413,16.607,-1.78,11.442,5.607,-2.586,10.088,16.753,-0.385,9.857,20.893,26.118,18.801,3.43,5.938,5.471,22.412,10.006,-3.523,3.119,9.011,1.613,22.946,12.026,4.518,27.583,18.635,22.256,14.1,7.352,18.561,-2.506,19.39,12.98,-5.145,5.617,8.237,16.927,14.448,1.396,22.117,12.859,5.675,9.234,4.832,22.031,14.965,9.968,15.752,16.033,0.449,14.068,15.236,37.86,5.972,12.76,6.403,19.795,2.539,4.475,23.928,11.279,9.964,24.898,-2.209,15.606,-2.963,15.712,18.808,24.368,8.764,13.041,-1.874,-3.258,8.561,26.997,10.117,9.601,15.229,4.978,4.648,17.674,10.018,15.355,11.701,7.378,20.88,-0.598,0.46,27.032,20.771,17.709,4.52,10.846,24.538,7.348,5.695,0.822,13.34,3.373,22.654,10.816,7.144,-3.028,10.668,23.147,4.83,4.279,23.001,14.596,10.963,-4.887,23.052,19.619,8.079,1.36,5.711,19.828,4.405,27.486,21.754,4.131,25.901,15.449,-6.153,-2.202,18.475,-2.42,12.664,6.907,19.09,20.394,20.884,7.38,15.82,7.012,-6.167,13.221,11.805,20.913,8.081,4.525,18.665,9.164,23.769,9.743,6.018,3.801,2.962,15.295,15.724,13.55,12.838,11.636,11.038,7.235,22.738,4.582,14.397,0.045,21.873,13.537,14.179,17.691,15.44,0.154,6.061,5.228,39.624,22.272,3.045,24.132,9.882,4.434,10.602,19.255,18.344,6.037,12.434,16.369,16.73,12.908,15.849,1.237,3.125,11.657,5.594,38.212,11.273,11.726,5.153],[13.686,26.417,16.241,-1.797,11.52,5.579,-2.601,9.905,17.226,-0.267,9.976,21.112,26.328,18.469,3.633,6.06,5.726,22.204,10.074,-3.69,3.321,9.108,1.487,22.644,11.889,4.242,27.466,18.573,22.144,14.183,7.21,18.774,-2.57,19.331,12.993,-5.128,5.517,8.519,16.994,14.361,1.387,22.184,12.981,5.647,9.205,4.811,21.964,14.87,10.0,15.957,16.1,0.454,13.881,15.11,38.271,6.12,12.748,6.357,19.829,2.598,4.662,23.69,11.178,10.172,24.715,-2.027,16.417,-3.301,15.816,18.24,24.506,8.962,13.172,-1.685,-3.31,8.416,26.69,8.837,9.504,15.329,4.769,4.343,17.262,10.156,15.324,11.588,7.409,20.643,-0.851,0.648,27.048,20.516,17.461,4.114,11.342,24.071,7.656,5.533,0.904,13.372,3.016,22.487,10.698,7.572,-2.799,10.62,23.698,5.121,4.276,22.763,15.189,10.977,-5.328,22.96,19.804,7.885,0.487,5.758,19.494,4.001,27.369,21.274,4.513,26.054,14.95,-6.136,-2.453,18.001,-2.811,12.642,7.272,18.705,20.377,20.868,7.447,15.719,7.085,-6.134,14.156,12.339,21.237,7.901,4.153,18.428,9.048,23.939,9.716,5.466,3.607,3.051,15.071,15.808,13.36,13.02,11.227,10.83,7.089,22.366,4.556,14.298,0.134,22.719,13.307,14.269,17.454,15.515,0.159,5.754,5.628,39.802,21.932,2.916,24.133,9.955,4.818,10.627,18.933,18.463,6.378,12.505,16.603,16.33,12.696,15.72,1.892,3.221,11.873,5.063,38.293,11.583,11.791,5.365],[13.736,26.405,15.942,-1.825,11.503,5.573,-2.66,9.493,17.558,-0.228,10.211,21.318,26.452,18.176,3.779,6.21,5.71,21.946,10.104,-3.974,3.427,9.208,1.216,22.652,11.723,4.109,27.361,18.451,22.138,14.424,7.26,18.562,-2.746,19.228,13.285,-5.135,5.312,8.801,17.079,14.403,1.532,22.322,13.173,5.563,9.222,4.797,21.995,14.921,10.01,16.164,16.101,0.435,13.789,15.025,38.602,6.17,12.666,6.411,19.766,2.71,4.92,23.444,11.079,10.462,24.662,-1.995,17.424,-2.68,16.185,18.047,24.78,8.88,13.448,-2.031,-3.27,8.659,26.914,8.311,9.943,15.043,4.673,4.374,17.127,9.763,14.816,11.917,7.198,20.461,-0.837,0.671,27.444,20.743,17.122,4.591,11.046,23.997,7.493,5.77,1.114,13.362,3.591,22.057,10.275,7.46,-3.424,10.577,23.75,4.846,4.091,22.489,14.863,11.138,-5.581,22.878,19.79,8.126,-0.033,6.142,19.305,4.342,26.87,20.981,4.39,25.739,15.034,-6.167,-2.034,17.522,-2.21,12.598,6.839,19.025,20.219,20.973,7.479,15.612,6.971,-6.363,14.231,11.982,21.528,7.562,4.1,18.25,8.681,24.065,9.94,5.662,3.373,3.128,14.805,15.838,13.622,13.413,11.771,10.399,7.144,21.26,5.052,13.996,0.148,22.172,13.224,14.506,17.668,15.214,0.077,5.779,5.644,40.368,21.615,2.819,23.983,10.041,4.896,10.587,19.079,18.334,6.142,12.439,16.772,16.064,12.265,15.837,1.661,2.865,11.624,5.802,38.481,11.772,11.831,5.246],[13.805,26.359,15.699,-1.932,11.419,5.625,-2.659,9.145,17.756,-0.32,10.369,21.505,26.55,17.927,3.899,6.27,5.69,21.602,10.002,-4.409,3.608,9.36,0.949,22.719,11.593,4.103,27.172,18.312,22.165,14.712,7.346,18.217,-2.69,19.46,13.566,-5.226,5.256,8.878,17.067,14.446,1.613,22.413,13.333,5.38,9.208,4.667,21.804,15.031,10.179,16.29,16.117,0.356,13.815,15.01,38.684,6.095,12.747,6.463,19.697,2.762,5.205,23.249,11.057,10.558,24.778,-1.684,18.193,-2.423,16.118,17.819,24.786,7.889,13.226,-1.453,-3.336,8.916,27.205,8.63,10.013,15.099,4.846,4.948,16.692,9.534,14.717,11.714,7.152,20.802,-0.765,0.686,27.78,21.164,17.183,4.908,10.913,24.445,7.637,5.926,1.002,12.939,3.902,21.78,10.733,7.478,-3.972,10.741,23.653,4.82,3.788,22.466,14.792,11.502,-5.627,22.655,19.235,7.969,0.134,6.13,19.358,4.594,27.104,20.801,3.561,25.446,15.656,-6.142,-2.4,17.162,-2.461,12.873,7.043,18.689,19.76,20.935,7.792,15.517,6.736,-6.315,13.842,11.596,21.257,7.465,4.479,18.534,9.568,24.169,10.078,5.835,3.422,3.088,14.399,16.065,13.821,13.834,11.583,9.892,7.061,21.191,5.185,14.191,0.206,22.177,13.245,14.492,17.858,14.646,0.341,6.112,5.847,40.472,21.395,2.986,23.601,10.225,4.748,11.274,19.249,18.041,6.147,12.436,17.077,15.988,12.264,15.676,1.745,2.909,11.863,6.066,39.112,12.0,11.586,5.153],[13.783,26.368,15.524,-1.901,11.318,5.727,-2.465,8.95,17.711,-0.38,10.273,21.744,26.727,17.614,4.127,6.278,5.872,21.292,9.831,-4.868,3.869,9.47,0.813,22.79,11.545,4.147,27.117,18.173,22.173,15.015,7.518,17.891,-2.623,19.726,13.586,-5.266,5.414,8.912,17.044,14.449,1.474,22.428,13.394,5.315,9.199,4.516,21.546,15.136,10.229,16.356,16.124,0.383,14.009,14.983,38.714,6.024,12.927,6.546,19.645,2.776,5.459,22.982,11.201,10.649,24.648,-2.121,18.502,-2.781,16.098,18.195,24.78,7.508,13.62,-1.472,-3.706,8.744,26.974,8.779,9.623,15.189,5.035,4.511,16.646,9.514,15.088,11.469,7.544,21.061,-0.804,0.449,27.176,21.577,17.569,4.638,11.402,24.362,7.679,5.678,0.708,12.727,3.402,21.827,10.533,7.87,-3.93,11.05,23.699,5.027,3.891,22.853,15.104,11.199,-6.196,22.001,18.984,8.282,-0.117,6.104,19.528,4.435,27.008,20.755,2.669,25.384,16.437,-6.264,-2.258,16.768,-2.852,13.16,7.241,18.697,19.649,21.154,7.787,15.642,6.803,-6.32,13.938,12.449,21.094,7.647,4.35,18.611,9.892,24.037,10.066,5.684,3.126,3.117,14.422,15.813,13.89,14.751,11.811,9.403,7.097,21.936,4.589,14.222,0.28,21.795,13.194,14.639,17.509,14.193,0.258,5.605,5.728,40.37,21.291,3.135,23.747,9.863,4.982,11.209,18.636,18.337,6.117,12.695,16.913,16.09,12.588,16.003,1.692,2.945,11.942,5.877,38.853,12.127,11.745,5.417],[13.747,26.345,15.516,-1.923,11.29,5.843,-2.352,8.881,17.583,-0.503,10.138,22.072,26.752,17.565,4.167,6.279,6.022,21.248,9.762,-5.229,3.922,9.686,0.679,22.797,11.491,4.065,27.124,18.03,22.211,15.462,7.788,17.6,-2.607,19.809,13.539,-5.216,5.635,8.992,16.97,14.319,1.262,22.384,13.597,5.32,9.27,4.269,21.358,15.104,10.323,16.448,16.059,0.442,14.263,14.974,38.749,5.929,12.996,6.521,19.517,2.807,5.544,22.7,11.332,10.855,24.674,-2.381,18.202,-2.584,16.097,17.3,24.912,7.988,13.941,-1.878,-3.343,8.677,26.79,8.824,9.565,15.501,5.3,4.904,16.58,9.685,14.837,11.325,7.417,21.076,-0.541,0.472,27.463,21.267,16.573,5.171,11.026,24.07,7.728,6.188,0.314,12.899,3.796,21.886,10.338,7.77,-4.111,11.284,23.677,4.951,4.32,22.913,14.988,10.867,-6.332,21.516,19.048,8.236,-0.201,6.333,19.418,5.013,27.074,20.897,2.634,25.424,16.379,-6.424,-1.865,16.706,-2.11,12.65,6.934,19.006,19.358,21.377,7.6,15.484,7.356,-6.337,13.874,12.775,21.367,7.543,4.028,18.322,8.83,24.024,9.915,5.749,2.882,2.803,14.704,15.573,13.856,15.183,11.681,9.218,6.93,22.168,4.702,13.982,0.055,21.592,13.186,15.011,17.725,13.724,0.354,5.558,5.571,40.504,21.095,3.731,23.53,10.107,4.601,10.389,18.289,18.314,6.07,12.817,16.426,16.076,13.085,15.696,1.959,3.035,11.947,6.218,38.665,12.251,12.317,5.71],[13.94,26.34,15.437,-2.033,11.372,6.027,-2.203,8.954,17.622,-0.652,10.167,22.205,26.929,17.48,4.277,6.432,6.179,21.399,9.719,-5.367,4.028,9.754,0.472,22.661,11.422,3.972,27.226,17.924,22.247,15.779,7.895,17.38,-2.425,19.911,13.27,-5.227,5.957,8.917,16.666,14.067,1.064,22.359,13.829,5.275,9.261,4.152,21.369,14.908,10.392,16.545,15.999,0.546,14.491,14.944,38.837,5.761,13.082,6.394,19.331,2.973,5.467,22.473,11.548,11.009,24.796,-2.211,17.38,-2.669,15.943,16.647,25.148,8.503,13.661,-1.721,-3.047,8.633,26.616,8.385,9.446,15.338,5.499,5.028,15.95,9.766,14.497,11.508,7.097,21.292,-0.322,0.369,28.065,20.981,16.542,5.015,10.603,24.166,7.519,6.369,0.124,12.837,3.876,22.065,10.501,7.848,-4.272,11.411,23.507,5.08,4.149,22.666,15.46,11.123,-6.191,21.8,19.048,8.283,-0.251,6.671,18.953,4.793,27.37,21.141,2.743,25.439,15.994,-6.37,-2.344,17.113,-2.264,12.468,7.132,18.766,19.059,21.101,7.21,15.093,7.821,-6.205,13.982,12.423,21.46,7.67,3.756,18.161,8.541,24.174,10.236,5.499,2.798,2.649,14.77,15.259,13.523,15.453,11.723,9.34,6.824,21.319,4.451,14.258,-0.259,21.6,13.124,15.19,17.689,13.402,0.28,6.026,5.895,40.381,20.53,2.794,22.809,10.493,4.428,10.864,18.582,17.992,6.009,12.811,16.272,16.161,13.44,15.329,2.271,3.009,12.009,6.728,39.008,12.326,12.348,5.437],[14.13,26.405,15.159,-2.059,11.506,6.169,-2.115,9.083,17.671,-0.683,10.283,22.207,27.219,17.349,4.336,6.631,6.366,21.477,9.637,-5.38,4.131,9.749,0.188,22.443,11.332,3.863,27.3,17.885,22.321,15.784,7.965,17.309,-2.451,19.948,12.928,-5.235,6.195,8.705,16.388,13.762,0.894,22.342,14.003,5.226,9.219,4.219,21.336,14.78,10.393,16.552,15.914,0.644,14.575,14.842,38.939,5.587,13.145,6.345,19.27,2.895,5.416,22.228,11.729,11.156,24.744,-2.399,16.904,-2.305,16.313,16.669,25.428,8.289,14.102,-1.717,-2.632,8.702,26.334,8.238,9.761,15.056,5.495,5.146,16.167,9.609,14.018,11.927,7.626,21.379,-0.259,-0.032,28.142,21.047,16.359,5.012,10.533,24.11,7.977,6.442,0.468,12.629,3.787,22.182,10.798,8.192,-4.393,11.189,23.233,5.477,3.393,22.576,15.576,11.191,-6.426,22.37,19.087,8.496,-0.645,6.561,18.893,5.003,27.371,20.845,3.275,25.476,16.826,-6.197,-2.243,17.003,-2.543,12.54,7.689,18.693,19.229,21.195,6.911,15.14,7.942,-6.4,14.336,12.357,21.346,7.571,3.648,17.931,9.315,24.154,10.562,5.938,2.842,2.6,14.789,15.112,13.41,15.045,11.914,9.539,6.791,20.826,3.816,14.227,-0.25,22.069,13.063,14.974,17.329,13.458,-0.109,5.497,5.372,40.583,20.406,3.387,22.924,10.719,5.024,11.494,18.972,17.632,5.566,13.039,16.318,16.095,13.532,15.706,2.263,3.272,12.215,6.794,39.088,12.535,12.282,5.528],[14.133,26.514,14.922,-1.961,11.63,6.283,-2.112,9.162,17.772,-0.658,10.492,22.247,27.472,17.143,4.355,6.797,6.603,21.521,9.667,-5.508,4.166,9.818,0.068,22.203,11.362,3.69,27.237,17.959,22.391,15.612,8.088,17.299,-2.707,20.147,12.686,-5.312,6.276,8.526,16.311,13.617,0.878,22.34,14.071,5.058,9.209,4.242,21.296,14.832,10.517,16.405,15.82,0.729,14.527,14.701,39.033,5.524,13.158,6.27,19.343,2.894,5.223,22.242,11.833,11.372,24.993,-2.534,17.451,-2.412,16.394,16.92,25.583,8.273,14.222,-1.504,-2.65,8.871,26.431,8.779,10.126,15.453,5.513,4.938,15.933,9.828,13.822,12.419,8.057,21.371,-0.198,0.123,28.277,21.587,16.005,5.509,10.636,23.804,8.299,6.705,-0.175,12.334,4.362,21.794,10.387,8.172,-4.358,11.239,22.726,5.41,3.272,22.766,15.17,10.653,-6.565,21.937,19.061,8.476,-0.666,6.353,19.318,5.557,27.476,20.7,4.006,25.502,17.25,-6.023,-1.96,16.711,-2.192,12.019,8.401,18.686,19.068,21.241,7.128,15.167,8.15,-6.632,14.106,12.21,21.187,7.532,3.895,17.871,9.19,23.96,10.601,6.121,2.688,2.671,14.063,15.197,13.603,14.928,11.833,9.158,6.743,21.369,4.395,13.872,-0.218,21.499,12.982,14.547,17.095,13.489,-0.29,5.726,5.049,40.589,20.457,3.698,23.104,10.366,4.303,11.717,19.142,17.509,5.682,13.056,16.363,15.899,13.24,15.677,2.425,2.855,12.389,6.628,38.815,12.709,12.419,5.331],[14.044,26.561,14.949,-1.855,11.8,6.457,-2.098,9.32,18.025,-0.636,10.604,22.461,27.625,16.96,4.373,6.829,6.759,21.462,9.699,-5.782,4.373,9.919,-0.008,22.036,11.345,3.58,27.204,18.144,22.451,15.356,8.225,17.202,-2.886,20.425,12.331,-5.423,6.282,8.415,16.376,13.566,1.067,22.415,14.031,4.918,9.143,4.203,21.283,14.989,10.828,16.075,15.734,0.731,14.488,14.513,39.0,5.557,13.258,6.256,19.38,2.874,5.076,22.417,11.835,11.591,25.487,-2.385,17.947,-2.171,16.343,16.694,25.93,7.975,14.01,-1.346,-3.19,9.054,26.256,9.358,9.988,15.228,5.609,4.882,15.585,9.961,13.813,12.087,7.895,21.323,-0.25,0.184,28.702,21.718,15.726,5.679,11.089,23.217,8.285,6.914,-0.47,12.612,3.82,21.814,10.168,8.567,-4.405,11.564,22.011,5.316,3.539,22.779,14.654,10.488,-6.351,21.476,19.029,8.536,-0.495,6.439,19.506,4.705,27.355,20.776,4.435,25.432,16.608,-6.366,-2.449,16.534,-2.442,11.138,8.341,18.667,18.929,21.388,7.078,15.22,8.139,-6.387,13.769,12.252,21.127,7.581,3.762,18.11,8.68,24.057,10.863,5.782,2.729,2.715,14.324,15.09,13.674,14.721,12.058,8.834,6.615,21.879,5.157,14.279,-0.213,20.862,12.812,14.566,17.226,13.593,-0.169,5.428,5.121,40.095,20.533,3.307,22.929,10.268,4.048,11.635,18.625,17.898,5.685,12.83,16.61,16.1,13.023,15.27,2.568,2.943,12.512,5.776,38.529,13.153,12.394,5.445],[13.967,26.561,15.145,-1.766,11.768,6.683,-2.162,9.486,18.212,-0.687,10.487,22.69,27.693,16.804,4.399,6.73,6.95,21.308,9.655,-5.897,4.256,10.037,-0.081,21.882,11.289,3.559,27.175,18.236,22.412,15.157,8.27,17.033,-3.053,20.604,11.98,-5.515,6.12,8.242,16.429,13.585,1.255,22.588,13.972,4.811,9.058,4.274,21.285,15.242,11.075,15.81,15.643,0.658,14.564,14.498,38.845,5.664,13.395,6.331,19.168,2.746,5.041,22.501,11.797,11.698,25.235,-2.476,18.154,-1.957,16.692,16.409,26.203,8.279,14.083,-1.574,-2.981,8.879,26.116,9.558,9.687,14.989,5.641,5.479,15.831,9.989,13.837,12.091,7.791,21.546,-0.423,0.401,28.977,21.505,15.692,4.885,10.547,23.174,8.247,6.951,0.136,13.007,4.434,22.292,10.706,8.788,-4.778,11.196,21.651,5.806,3.879,22.733,15.152,10.8,-6.823,21.782,19.013,8.832,-0.573,6.761,19.504,5.102,27.192,21.067,4.189,25.389,15.75,-6.648,-2.695,16.944,-2.64,11.09,7.88,19.112,18.95,21.594,6.701,15.466,7.916,-6.172,12.893,12.304,21.511,7.373,3.423,18.177,8.637,24.449,11.325,5.943,2.868,2.736,14.688,14.88,13.668,14.722,12.142,9.182,6.556,21.871,4.787,14.807,0.322,20.983,12.789,14.553,17.304,13.64,-0.403,5.161,5.348,39.691,20.848,3.62,22.971,10.362,4.734,11.865,18.317,18.135,5.368,12.658,16.238,15.967,13.377,15.028,2.078,3.082,12.45,6.029,38.692,12.976,12.741,5.477],[14.042,26.493,15.354,-1.73,11.574,6.861,-2.122,9.577,18.287,-0.752,10.289,22.796,27.767,16.496,4.4,6.727,7.143,21.261,9.44,-5.886,4.165,10.076,0.077,21.817,11.312,3.618,27.205,18.179,22.334,15.23,8.224,16.946,-3.197,20.759,11.646,-5.523,5.979,7.969,16.315,13.554,1.412,22.841,14.033,4.683,9.028,4.322,21.344,15.52,11.157,15.743,15.571,0.389,14.696,14.611,38.746,5.808,13.56,6.348,18.922,2.814,5.137,22.574,11.78,11.465,25.165,-2.515,18.202,-1.934,16.813,16.861,25.987,9.154,13.668,-1.258,-2.715,8.69,26.316,9.772,9.883,15.023,5.926,5.544,16.23,9.687,14.008,12.473,7.999,22.155,-0.224,0.308,29.109,21.474,15.818,4.716,10.238,23.24,8.058,7.278,-0.163,12.99,4.07,22.328,10.888,8.846,-4.773,11.362,21.669,5.489,3.923,22.462,15.178,10.778,-6.906,22.05,18.979,8.974,-0.624,6.761,19.598,5.471,27.732,21.096,3.407,25.385,15.391,-6.349,-2.513,16.825,-2.809,12.025,7.675,19.167,18.709,21.491,6.291,15.849,7.646,-6.6,12.55,12.727,22.031,7.253,3.391,18.198,8.381,24.624,11.532,6.091,2.961,3.144,14.221,15.06,13.985,14.82,12.171,9.545,6.38,21.578,3.982,14.838,0.254,21.355,12.868,13.928,17.011,13.394,-0.326,5.813,5.535,40.051,20.899,2.943,22.935,10.61,4.745,12.009,18.008,17.482,5.711,12.716,15.555,16.102,13.664,15.151,2.142,2.836,12.719,6.26,38.457,12.799,12.527,5.588],[14.166,26.388,15.485,-1.651,11.395,7.0,-1.945,9.8,18.331,-0.82,10.315,22.821,27.727,16.17,4.395,6.867,7.058,21.374,9.256,-5.738,4.313,10.042,0.267,21.833,11.457,3.659,27.371,18.108,22.212,15.301,8.161,16.851,-3.281,20.812,11.491,-5.472,5.977,7.666,16.164,13.452,1.513,22.963,14.187,4.64,9.031,4.216,21.442,15.596,11.16,15.68,15.526,0.161,14.713,14.752,38.727,5.881,13.64,6.442,18.804,2.821,5.293,22.547,11.855,11.358,25.051,-2.594,17.782,-1.942,16.735,17.104,26.075,9.048,14.259,-1.096,-2.917,8.688,26.028,9.063,9.899,15.123,6.418,5.028,16.322,9.403,13.992,11.831,8.177,22.365,-0.035,0.142,28.947,21.641,15.291,5.553,9.702,23.474,7.979,7.622,-0.318,12.38,4.178,21.681,10.187,8.773,-4.637,11.515,22.314,5.4,3.742,21.938,15.112,10.473,-6.592,21.9,19.304,8.593,-0.075,6.705,19.366,4.78,27.779,20.884,2.947,25.498,16.23,-6.353,-2.576,16.519,-2.653,11.247,7.989,19.153,18.67,21.636,6.33,15.637,7.745,-6.197,12.687,13.235,21.508,7.647,3.438,17.857,7.886,24.765,11.371,5.871,2.801,3.145,14.106,14.855,14.27,15.368,12.0,9.714,6.268,21.435,4.0,14.731,0.214,21.1,12.944,14.041,16.719,13.538,-0.578,5.926,4.827,40.209,21.194,3.688,23.072,10.599,4.658,11.262,17.782,17.463,5.943,13.062,15.722,16.111,13.61,15.317,1.937,2.885,12.78,6.182,38.463,12.947,12.525,5.531],[14.328,26.317,15.455,-1.452,11.213,7.176,-1.755,9.902,18.244,-0.747,10.527,22.872,27.661,15.919,4.418,7.011,6.859,21.348,9.025,-5.487,4.509,9.98,0.238,21.829,11.368,3.668,27.557,18.238,22.1,15.397,8.159,16.763,-3.371,20.883,11.332,-5.494,5.959,7.467,16.025,13.348,1.46,22.814,14.348,4.591,9.094,4.23,21.408,15.558,11.063,15.753,15.464,-0.047,14.652,14.773,38.726,5.828,13.72,6.419,18.918,2.968,5.292,22.518,12.003,11.341,24.769,-2.503,17.458,-2.017,16.806,16.814,25.993,8.656,14.54,-1.343,-2.901,8.899,25.864,8.967,9.976,15.208,6.658,5.026,16.198,9.426,14.115,11.757,8.048,21.91,-0.275,0.069,28.819,21.555,14.83,5.909,9.908,23.057,8.3,7.034,0.575,12.36,4.989,21.705,9.967,8.548,-4.276,11.077,22.861,5.591,3.647,22.139,14.988,10.333,-6.359,21.595,19.261,8.382,-0.296,6.725,19.31,5.019,27.576,20.455,2.873,25.775,17.11,-6.351,-2.467,16.539,-2.412,10.712,7.639,18.959,18.582,21.603,6.317,15.202,7.716,-5.795,13.097,13.403,21.429,7.67,3.228,17.756,8.321,24.248,11.4,5.915,2.673,3.228,14.411,14.527,14.153,15.91,11.892,9.517,6.245,21.667,4.139,14.664,0.291,21.48,13.023,14.272,16.93,13.943,-0.334,5.47,4.607,39.926,21.511,3.664,23.401,10.665,4.657,11.244,17.737,17.915,5.772,12.769,16.018,16.149,13.217,15.013,1.63,3.15,12.492,6.491,38.645,12.643,13.27,5.473],[14.389,26.354,15.433,-1.316,11.136,7.3,-1.707,9.888,18.247,-0.538,10.749,22.797,27.472,15.714,4.506,7.108,6.705,21.161,8.867,-5.216,4.831,9.935,0.196,21.802,11.042,3.669,27.729,18.373,21.97,15.538,8.099,16.695,-3.258,20.899,11.255,-5.522,5.921,7.484,15.951,13.385,1.421,22.601,14.433,4.493,9.173,4.333,21.358,15.475,10.975,15.895,15.4,-0.276,14.65,14.799,38.661,5.77,13.941,6.074,19.095,3.131,5.241,22.631,12.05,11.124,24.902,-2.441,17.451,-1.365,16.715,16.709,25.88,8.404,13.727,-1.348,-2.712,9.189,26.053,9.79,10.164,15.368,6.349,5.629,15.684,9.328,13.788,12.124,8.01,21.379,-0.075,0.579,28.749,21.946,15.069,5.313,10.011,22.784,8.559,6.915,0.688,12.834,4.515,22.301,10.313,8.291,-3.734,11.104,23.002,5.619,3.949,21.983,15.77,10.598,-5.941,21.326,18.842,8.223,-0.755,6.999,19.751,5.083,27.802,20.449,3.028,25.953,17.151,-6.691,-2.998,16.346,-3.035,10.706,7.209,19.184,18.526,21.176,6.261,14.922,7.66,-6.391,12.865,13.188,21.48,7.493,2.959,17.799,7.901,24.193,11.181,6.032,2.764,3.034,14.358,14.699,14.047,16.169,12.312,9.268,6.043,21.914,4.213,14.912,0.199,21.855,13.103,14.598,17.017,14.498,-0.129,5.365,5.46,39.699,21.649,3.134,23.005,10.956,4.482,11.211,17.989,18.029,5.419,12.862,16.196,16.338,12.8,15.098,1.59,3.293,12.773,6.044,38.142,12.756,13.02,5.961],[14.185,26.562,15.366,-1.137,11.086,7.335,-1.736,9.974,18.352,-0.289,10.848,22.627,27.184,15.677,4.69,6.993,6.634,20.968,8.868,-4.883,5.036,9.822,0.254,21.704,10.773,3.754,27.823,18.379,21.902,15.829,8.016,16.626,-3.2,20.93,11.194,-5.756,5.865,7.379,15.952,13.594,1.383,22.439,14.536,4.427,9.229,4.382,21.435,15.469,10.958,16.094,15.381,-0.355,14.794,14.893,38.526,5.776,13.953,5.796,19.202,3.091,5.248,22.898,11.99,10.919,24.908,-2.158,17.718,-1.44,16.908,16.111,25.548,8.805,14.363,-0.651,-2.629,9.357,26.308,10.076,10.276,15.407,6.464,5.53,16.086,9.22,13.651,11.69,7.801,21.441,0.138,0.802,28.424,22.011,15.114,4.945,9.578,23.137,8.627,7.246,-0.249,12.59,4.625,22.054,9.971,8.26,-4.153,11.47,22.623,5.982,3.771,21.776,16.117,10.357,-5.859,21.512,19.154,8.383,-0.297,6.742,19.936,5.841,27.838,20.587,3.372,25.991,16.368,-6.355,-2.924,16.406,-2.616,10.708,7.955,19.138,18.433,21.053,6.52,15.095,7.387,-6.28,12.494,12.786,21.428,7.487,2.881,17.666,7.871,23.963,10.995,5.938,3.035,3.052,14.049,15.06,13.862,15.542,12.236,9.596,5.877,21.637,4.565,15.015,-0.0,21.344,13.209,14.512,17.031,14.553,-0.651,5.023,5.133,39.906,21.507,3.775,22.659,10.897,4.65,11.148,17.97,17.932,5.154,13.345,16.23,16.156,13.193,15.185,1.226,3.182,13.009,5.923,38.021,12.392,12.761,5.146],[13.909,26.813,15.421,-0.874,10.884,7.286,-1.709,10.266,18.577,-0.316,10.615,22.408,26.938,15.735,4.663,6.761,6.677,20.896,8.74,-4.806,5.257,9.889,0.318,21.529,10.578,3.907,27.839,18.483,22.061,16.108,8.193,16.708,-3.066,20.921,11.222,-5.814,5.739,7.283,15.996,13.674,1.368,22.278,14.539,4.327,9.161,4.478,21.508,15.495,10.919,16.277,15.454,-0.506,15.063,14.966,38.506,5.857,14.011,5.548,19.079,3.02,5.092,23.128,11.863,10.811,25.132,-1.994,18.033,-1.581,16.91,15.589,25.289,9.456,14.414,-0.435,-2.565,9.043,26.611,9.175,9.98,15.054,6.73,5.295,16.461,9.045,13.79,11.793,7.957,21.287,-0.073,0.583,28.03,22.22,14.744,5.721,9.551,23.105,8.26,7.149,0.117,12.227,5.323,21.409,9.74,8.179,-3.517,11.14,22.022,5.669,3.556,21.972,15.491,9.598,-5.993,21.693,19.483,8.27,-0.078,6.692,19.5,6.202,27.455,20.654,3.843,26.082,16.227,-6.71,-2.58,16.95,-2.709,10.63,8.089,19.104,18.411,21.332,6.558,15.578,7.116,-6.45,11.774,12.763,21.423,7.878,2.864,17.81,8.175,23.933,10.828,5.614,3.248,2.959,14.649,14.867,14.017,14.854,12.238,10.233,5.841,21.358,4.583,14.98,-0.134,21.21,13.451,14.812,17.122,14.273,-0.366,4.618,4.595,39.836,21.806,3.34,23.616,10.495,4.876,10.559,17.974,17.905,5.679,12.973,16.103,16.32,13.656,15.103,1.273,3.44,13.178,6.207,37.797,11.817,12.872,4.902],[13.679,26.974,15.541,-0.58,10.642,7.206,-1.706,10.446,18.762,-0.455,10.231,22.224,26.702,15.716,4.529,6.646,6.658,20.926,8.687,-4.828,5.541,9.9,0.42,21.419,10.404,4.073,27.837,18.672,22.261,16.335,8.471,16.823,-2.895,20.976,11.231,-5.749,5.543,7.241,16.043,13.676,1.341,22.251,14.511,4.141,9.254,4.568,21.584,15.504,10.819,16.446,15.453,-0.531,15.238,15.085,38.595,6.043,14.192,5.412,18.863,2.964,4.814,23.46,11.652,10.747,25.262,-2.418,18.266,-1.314,17.228,15.554,25.18,9.538,14.128,-1.125,-2.677,8.561,27.179,9.601,9.967,14.319,6.471,5.204,16.535,8.876,14.67,11.867,7.91,20.534,-0.113,0.276,28.157,22.302,14.792,5.929,9.504,22.632,7.913,6.865,0.623,11.72,5.373,21.528,9.863,8.235,-3.139,10.963,21.927,5.18,4.284,22.269,15.238,9.335,-5.867,21.558,19.848,8.183,0.2,6.872,19.421,5.522,27.618,20.752,4.058,26.072,16.086,-6.657,-2.633,17.193,-2.443,10.828,7.789,19.12,18.471,21.369,6.011,16.194,7.069,-6.797,11.466,12.655,21.167,7.695,2.759,17.789,7.942,23.917,10.664,5.836,3.288,2.905,14.835,14.659,13.919,14.66,12.162,9.894,5.763,21.422,4.27,15.225,-0.248,21.114,13.266,14.962,17.286,14.371,-0.711,4.599,4.57,39.822,22.134,2.546,24.238,10.115,4.715,10.489,17.909,17.773,5.658,12.234,15.706,16.3,14.106,15.26,1.256,3.268,13.007,5.741,37.756,11.799,13.086,4.986],[13.469,26.909,15.757,-0.359,10.487,7.048,-1.749,10.544,18.873,-0.615,10.188,21.968,26.538,15.673,4.382,6.626,6.467,21.057,8.701,-4.841,5.67,9.735,0.62,21.431,10.156,4.342,27.847,18.819,22.433,16.453,8.607,16.789,-2.799,21.089,11.305,-5.692,5.496,7.144,16.064,13.693,1.363,22.242,14.46,3.983,9.39,4.58,21.718,15.435,10.64,16.473,15.455,-0.481,15.344,15.179,38.654,5.945,14.242,5.355,18.786,2.767,4.544,23.695,11.304,10.839,25.118,-2.446,18.324,-1.032,17.318,15.468,25.015,9.277,14.293,-1.181,-2.482,8.515,27.609,10.237,10.047,14.572,6.597,5.317,16.729,8.524,14.872,10.981,7.74,20.1,0.021,0.15,27.98,22.303,14.971,5.205,9.785,22.238,8.287,6.774,0.094,11.754,5.273,22.178,9.684,8.226,-3.445,10.841,22.473,5.539,4.788,22.347,16.059,9.584,-5.905,21.592,19.723,7.807,0.446,7.126,20.18,5.167,28.032,20.907,4.311,25.997,16.26,-6.386,-2.408,16.832,-2.454,10.875,8.073,19.36,18.608,21.334,5.673,15.573,7.266,-6.326,11.255,12.774,20.885,7.568,2.64,17.893,7.862,23.614,11.008,5.52,3.053,2.847,14.302,15.113,13.676,14.75,11.87,9.47,5.582,21.695,4.555,15.656,-0.194,20.899,13.629,15.255,17.188,15.095,-1.505,4.882,4.532,39.839,22.183,2.897,24.067,10.457,4.612,10.862,17.719,17.396,5.605,12.177,15.822,16.194,13.737,15.553,1.343,3.084,12.912,5.352,38.214,12.321,13.329,4.626],[13.413,26.745,16.019,-0.302,10.292,6.798,-1.715,10.651,18.894,-0.74,10.447,21.718,26.446,15.561,4.125,6.566,6.314,21.267,8.71,-4.874,5.663,9.44,0.707,21.402,9.966,4.781,27.921,18.946,22.699,16.606,8.592,16.74,-2.833,21.169,11.464,-5.605,5.549,7.134,16.076,13.654,1.437,22.103,14.343,4.028,9.449,4.71,21.842,15.479,10.577,16.577,15.487,-0.448,15.32,15.379,38.608,5.66,14.196,5.27,18.87,2.657,4.357,23.673,11.064,11.167,25.027,-2.311,17.921,-0.979,17.465,15.296,24.863,9.322,13.909,-0.164,-2.842,8.882,27.002,10.02,9.995,14.789,6.651,5.293,17.014,8.34,14.314,10.992,7.695,19.904,0.042,0.417,27.38,21.801,14.865,4.616,9.968,22.572,8.128,6.629,0.806,11.671,5.43,22.472,9.546,7.789,-3.79,10.625,22.96,5.693,4.421,22.435,16.256,9.77,-6.178,21.913,19.306,7.903,-0.129,7.074,20.499,5.256,27.76,21.127,4.697,26.17,16.596,-6.418,-2.369,16.519,-2.608,10.241,8.339,19.376,18.545,21.471,6.105,15.175,7.247,-6.473,11.089,12.458,20.665,8.301,2.439,17.975,7.928,23.826,10.881,5.716,3.086,3.105,14.384,15.035,13.628,15.16,11.95,9.198,5.552,21.943,4.676,15.469,0.225,21.316,13.621,15.298,17.188,15.57,-1.796,4.541,3.953,39.772,22.135,2.71,24.14,10.206,4.688,10.75,17.55,17.938,5.317,12.574,16.09,16.802,13.518,15.333,1.084,3.079,13.127,5.224,38.688,12.518,13.38,5.114],[13.402,26.533,16.192,-0.268,10.232,6.599,-1.695,10.708,18.709,-0.631,10.741,21.562,26.278,15.353,3.81,6.318,6.201,21.533,8.725,-4.908,5.544,9.178,0.73,21.462,9.906,5.148,27.953,18.942,22.981,16.747,8.365,16.667,-3.018,21.124,11.51,-5.625,5.65,7.224,16.137,13.578,1.728,22.075,14.131,4.116,9.633,4.886,21.953,15.492,10.642,16.752,15.524,-0.492,15.271,15.626,38.547,5.563,14.204,5.184,19.062,2.633,4.202,23.539,11.043,11.472,24.913,-2.431,17.696,-1.291,17.618,15.298,24.511,9.49,13.745,0.11,-2.695,9.259,27.016,9.682,10.255,14.801,6.056,4.582,16.733,8.496,14.494,11.319,7.14,19.802,0.113,0.507,27.39,21.349,14.43,4.895,9.788,22.6,7.803,6.667,0.573,11.679,5.925,22.278,9.665,7.815,-4.27,10.612,22.979,5.408,4.888,22.414,16.186,9.706,-6.223,21.934,19.656,7.68,-0.448,6.567,20.252,5.592,27.634,21.757,4.549,26.291,16.33,-6.519,-2.425,16.818,-2.105,9.787,8.044,19.274,18.262,21.87,7.23,15.77,7.245,-6.398,11.185,12.621,20.978,8.343,2.857,17.951,8.164,23.537,10.384,5.697,3.465,3.24,14.44,14.882,13.727,15.259,11.724,9.707,5.823,21.75,4.129,15.693,0.327,21.836,14.099,15.423,17.405,15.561,-1.64,4.179,4.334,39.898,21.993,2.571,23.688,9.862,4.414,10.987,17.892,18.134,4.806,12.709,15.995,17.167,13.527,14.913,1.197,2.684,13.11,5.204,38.2,12.591,13.24,4.511],[13.326,26.41,16.221,-0.228,10.386,6.313,-1.691,10.665,18.487,-0.462,11.034,21.557,26.048,15.095,3.407,6.02,6.159,21.657,8.629,-5.018,5.424,9.209,0.618,21.457,10.019,5.283,27.874,18.883,23.248,16.731,7.94,16.675,-3.085,21.16,11.415,-5.612,5.742,7.534,16.364,13.474,1.911,22.225,13.99,4.272,9.913,4.9,21.989,15.512,10.591,16.756,15.536,-0.475,15.196,15.883,38.435,5.511,14.281,4.964,19.136,2.598,4.176,23.304,11.195,11.688,24.621,-2.275,17.686,-1.128,17.0,15.035,24.564,9.966,14.109,-0.604,-2.43,9.332,27.176,9.51,10.788,14.549,5.789,4.277,17.004,8.584,14.84,11.118,7.303,20.189,0.126,0.456,27.528,20.823,14.39,4.814,9.72,22.17,7.827,6.087,0.127,11.897,6.063,22.695,9.974,7.714,-4.204,10.309,23.041,5.44,5.35,22.678,16.812,9.625,-6.303,22.208,20.165,7.499,0.546,6.252,19.931,5.825,27.484,22.192,5.173,26.439,16.074,-6.513,-2.874,17.158,-2.605,10.181,7.718,19.345,18.386,21.812,7.106,15.82,7.513,-6.741,11.596,13.011,21.389,8.17,2.77,18.209,8.363,23.959,10.283,5.308,3.829,3.45,14.429,14.632,13.577,15.216,11.668,10.249,5.957,22.1,3.632,15.912,0.449,21.748,14.11,15.718,17.306,15.331,-1.183,4.544,4.372,39.866,22.077,2.971,23.794,9.739,4.348,11.339,17.956,17.821,5.368,12.065,16.195,16.783,13.684,15.162,1.219,3.029,13.3,4.907,37.597,12.239,13.17,4.014],[13.261,26.373,16.262,-0.227,10.532,5.929,-1.794,10.68,18.249,-0.437,11.283,21.696,25.926,14.822,3.007,5.767,6.042,21.789,8.649,-5.149,5.281,9.463,0.681,21.347,10.29,5.399,27.86,18.815,23.538,16.756,7.594,16.814,-3.042,21.334,11.316,-5.579,5.855,7.925,16.612,13.438,1.87,22.523,14.006,4.42,10.011,4.776,22.05,15.544,10.437,16.667,15.435,-0.454,15.121,15.931,38.281,5.583,14.406,4.849,19.007,2.761,4.119,23.189,11.274,11.79,24.721,-2.214,17.73,-0.806,16.622,15.006,24.285,10.303,14.096,-0.845,-2.838,9.533,27.252,9.221,11.185,14.471,6.121,4.181,17.034,8.643,14.909,10.925,7.326,20.338,-0.22,0.72,27.239,20.738,14.408,3.937,9.543,21.63,7.632,5.938,0.333,12.107,5.869,22.67,9.6,7.845,-3.722,10.459,22.74,5.055,4.793,23.164,15.88,9.602,-6.345,22.357,19.876,7.876,1.136,6.089,19.768,5.317,27.015,22.864,4.94,26.243,16.176,-6.251,-2.834,16.63,-2.711,10.848,7.074,19.795,18.613,21.162,6.644,15.814,7.665,-6.667,12.028,12.638,21.623,8.637,2.931,18.468,9.143,24.319,10.326,5.761,3.61,3.57,14.449,14.65,13.795,15.414,11.836,10.919,5.872,22.04,3.728,15.66,0.569,21.732,14.193,15.83,17.207,15.07,-1.074,4.954,3.902,39.782,21.705,2.197,24.103,9.908,4.366,11.328,17.731,18.1,5.089,12.007,15.978,16.829,13.824,15.631,1.366,2.927,13.753,4.87,37.344,12.145,13.298,3.855],[13.282,26.483,16.257,-0.214,10.614,5.621,-2.032,10.799,18.054,-0.453,11.512,21.779,25.713,14.623,2.723,5.482,5.95,21.93,8.716,-5.183,5.082,9.753,0.947,21.387,10.572,5.456,27.751,18.617,23.812,16.771,7.503,16.831,-2.88,21.396,11.196,-5.469,6.005,8.353,16.663,13.539,1.833,22.836,14.145,4.464,10.13,4.571,22.08,15.597,10.274,16.577,15.384,-0.615,14.993,15.889,38.198,5.7,14.53,4.949,18.878,2.807,3.936,23.169,11.153,11.785,24.831,-2.118,17.514,-0.757,16.77,15.211,24.125,9.658,13.689,-0.378,-2.971,9.803,27.401,9.578,11.431,14.749,5.782,3.585,17.015,8.947,14.644,10.649,6.87,20.141,-0.293,0.537,27.063,21.343,13.732,2.998,9.714,21.25,6.86,6.17,0.365,12.145,4.855,22.487,9.771,7.414,-3.511,10.852,22.542,4.816,4.779,22.97,15.744,9.907,-6.233,22.181,19.66,8.419,0.302,6.053,19.848,5.283,27.397,23.68,4.972,26.016,16.389,-6.401,-2.42,16.554,-2.706,11.486,6.658,19.65,18.616,21.803,6.719,16.26,7.819,-6.068,12.802,12.524,21.888,8.93,3.118,18.504,8.975,24.443,10.634,5.919,3.391,3.344,14.066,15.118,13.831,15.284,11.188,11.441,6.172,22.088,3.932,15.409,0.414,21.925,14.188,15.851,16.953,15.107,-1.348,4.342,4.218,39.406,21.47,2.66,23.545,10.053,4.701,11.211,17.325,18.433,4.632,12.458,15.599,17.211,13.515,15.741,1.188,2.504,13.381,4.948,37.061,12.332,13.515,4.054],[13.31,26.558,16.227,-0.138,10.664,5.395,-2.244,10.837,17.966,-0.43,11.723,21.674,25.68,14.446,2.509,5.245,5.852,21.953,8.842,-5.113,4.755,10.067,0.945,21.315,10.704,5.499,27.585,18.49,24.008,16.831,7.518,16.755,-2.669,21.436,11.396,-5.41,6.106,8.685,16.644,13.568,1.737,23.272,14.372,4.436,10.307,4.589,22.048,15.541,10.02,16.488,15.4,-0.924,14.831,15.884,38.048,5.814,14.484,5.039,18.783,2.759,3.871,23.024,11.061,11.688,24.888,-2.162,16.742,-1.21,16.945,15.319,24.014,9.63,13.656,-0.495,-3.384,10.11,27.646,9.934,11.269,15.01,4.991,2.661,17.03,8.912,14.538,10.847,6.378,19.936,-0.494,0.555,27.123,21.799,13.447,2.815,9.903,21.531,6.412,5.971,0.713,12.38,4.256,22.581,9.816,7.563,-3.591,11.456,22.671,4.441,5.364,22.962,16.993,10.543,-6.164,22.786,19.672,8.571,0.733,6.013,19.75,5.685,27.726,23.785,5.377,25.739,16.371,-6.424,-1.721,17.119,-2.593,10.771,7.073,19.607,18.527,22.175,6.972,16.565,7.777,-6.179,12.776,12.602,21.584,8.858,3.239,18.48,9.043,24.721,10.566,6.104,3.485,3.259,14.29,14.874,13.69,15.08,11.031,11.565,6.258,22.3,3.933,15.796,0.23,22.131,14.163,15.759,16.927,14.838,-1.309,4.182,3.999,39.383,21.665,2.836,23.464,9.509,4.942,11.122,17.075,18.256,5.372,12.267,15.578,17.143,13.102,15.714,0.817,3.086,13.199,4.348,37.282,12.712,13.837,4.469],[13.397,26.557,16.338,-0.219,10.633,5.163,-2.435,10.805,17.869,-0.384,11.834,21.484,25.883,14.368,2.329,5.092,5.83,22.003,8.904,-4.966,4.343,10.422,1.016,21.142,10.794,5.716,27.457,18.521,24.043,17.039,7.552,16.758,-2.397,21.428,11.606,-5.457,6.151,8.903,16.721,13.489,1.635,23.536,14.541,4.419,10.38,4.823,22.065,15.463,9.75,16.49,15.51,-1.128,14.577,15.894,37.918,6.153,14.349,5.197,18.681,2.701,3.732,22.903,10.887,11.539,24.763,-2.168,16.454,-0.784,16.972,15.305,24.147,10.406,13.662,0.692,-3.305,10.476,27.17,9.6,11.133,14.909,4.517,2.61,16.724,8.835,14.46,11.596,6.511,19.957,-0.778,0.819,27.058,21.066,13.453,3.375,9.889,21.834,6.665,5.807,0.238,12.524,4.712,22.522,9.977,7.432,-3.577,11.509,22.998,4.475,5.07,22.684,17.517,10.755,-6.137,22.211,19.763,8.613,0.901,5.977,19.271,5.395,27.071,23.461,5.244,25.704,16.219,-6.034,-1.613,17.073,-2.078,10.297,7.441,19.613,18.461,22.051,7.376,16.124,7.94,-6.548,12.96,12.85,22.243,8.697,2.961,18.526,9.571,25.071,9.856,6.081,3.689,3.271,14.632,14.512,13.614,15.32,10.921,11.669,5.971,21.972,3.995,15.918,0.218,21.785,14.16,15.248,17.302,14.522,-1.528,4.512,4.173,39.475,21.379,2.426,24.094,9.399,4.708,11.087,17.395,17.653,5.555,11.932,15.804,16.703,13.264,15.557,0.527,3.104,13.491,4.599,37.552,12.923,13.752,4.302],[13.473,26.384,16.434,-0.275,10.598,4.906,-2.547,10.825,17.742,-0.413,11.895,21.331,26.087,14.446,2.287,5.052,5.83,21.963,8.925,-4.847,4.173,10.629,1.188,21.0,10.874,5.884,27.326,18.561,23.971,17.3,7.483,16.77,-2.011,21.374,11.759,-5.543,6.238,8.955,16.751,13.445,1.538,23.621,14.739,4.512,10.478,5.079,22.035,15.428,9.442,16.529,15.796,-1.198,14.292,15.869,37.84,6.542,14.194,5.421,18.555,2.473,3.629,22.818,10.759,11.425,24.815,-2.196,17.424,-0.785,16.452,14.981,24.492,10.278,13.958,0.302,-3.33,10.222,27.091,9.203,11.315,14.951,4.656,3.132,16.774,8.815,14.705,11.786,6.647,20.053,-0.777,0.413,27.412,20.51,13.681,3.258,10.073,21.127,6.889,5.451,1.056,12.63,4.246,22.622,9.639,7.558,-3.605,11.535,23.159,4.556,5.416,22.517,17.03,10.789,-5.908,21.784,19.928,9.028,0.338,5.796,19.339,4.818,26.614,23.552,5.102,25.691,16.347,-6.061,-1.941,17.384,-2.08,10.229,7.374,19.762,18.303,21.468,8.246,15.847,8.098,-6.533,12.638,12.937,22.778,8.804,2.835,18.646,9.926,25.3,10.283,6.086,3.995,3.259,14.535,14.713,13.627,15.709,10.643,11.2,5.916,22.24,4.14,15.562,0.369,21.418,13.921,15.244,17.53,14.817,-2.061,5.151,3.972,39.253,21.36,2.873,23.437,9.278,5.119,11.106,17.12,17.974,5.971,11.899,15.779,16.356,12.67,15.86,0.604,2.5,13.018,4.366,37.715,12.631,13.266,3.785],[13.616,26.166,16.429,-0.362,10.504,4.794,-2.536,10.744,17.606,-0.404,11.712,21.454,26.242,14.571,2.339,4.961,5.778,21.822,8.922,-4.771,4.417,10.646,1.382,20.821,10.995,5.998,27.176,18.618,23.889,17.363,7.312,16.831,-1.803,21.289,11.854,-5.654,6.274,8.964,16.613,13.549,1.384,23.357,14.862,4.608,10.545,5.277,21.979,15.396,9.321,16.564,16.218,-1.273,14.117,15.709,37.836,6.864,13.999,5.63,18.491,2.225,3.56,22.632,10.655,11.245,24.666,-2.111,17.191,-0.978,16.124,14.855,24.693,10.223,14.447,-0.577,-3.858,10.03,27.607,9.663,11.743,15.048,4.671,3.653,17.341,8.726,14.834,11.456,6.137,20.207,-0.832,-0.112,27.62,20.663,14.183,2.854,10.049,21.116,6.732,5.524,0.836,12.74,3.955,22.87,9.507,7.527,-3.275,11.951,23.274,4.655,5.711,22.318,16.816,10.961,-5.648,22.373,19.676,9.174,1.165,5.697,19.824,5.345,26.926,23.585,5.381,25.481,17.063,-6.303,-1.28,17.262,-2.004,10.679,6.957,19.372,18.481,21.602,8.926,16.338,8.094,-6.36,12.844,13.182,22.315,8.71,3.262,18.496,9.665,25.14,10.26,6.084,4.031,3.13,13.873,14.976,13.577,15.898,10.443,10.757,6.215,22.162,4.559,15.521,0.397,21.906,13.967,15.504,17.811,14.642,-2.185,5.235,3.581,39.284,21.298,2.543,23.057,9.353,5.594,11.227,16.922,18.072,6.73,12.088,15.425,16.77,12.592,16.451,0.489,2.354,12.84,4.087,37.456,12.347,12.892,4.141],[13.931,26.163,16.364,-0.431,10.343,4.692,-2.525,10.638,17.412,-0.411,11.421,21.773,26.296,14.742,2.459,4.752,5.719,21.716,8.821,-4.59,4.674,10.552,1.548,20.892,11.221,6.233,27.017,18.682,23.812,17.302,7.14,16.833,-1.692,21.262,12.017,-5.773,6.298,8.989,16.525,13.585,1.206,22.952,15.033,4.701,10.532,5.505,21.989,15.406,9.456,16.455,16.697,-1.303,13.999,15.721,37.914,7.091,13.893,5.795,18.491,2.078,3.442,22.381,10.567,10.979,24.502,-2.363,16.345,-1.328,16.163,14.878,24.735,9.543,14.194,-0.641,-3.722,9.65,27.028,9.904,11.539,15.466,4.734,3.075,17.183,8.667,15.066,11.69,6.066,20.251,-0.886,0.433,27.636,21.086,14.193,3.04,9.808,21.38,6.276,5.57,0.722,12.948,4.804,22.658,10.033,7.425,-2.927,12.038,23.575,4.147,5.662,22.028,16.814,11.093,-5.605,22.407,19.675,9.053,1.843,5.839,19.874,5.385,26.851,23.412,5.292,25.236,17.927,-6.186,-0.977,16.818,-1.813,11.676,6.361,19.469,18.534,21.536,9.579,16.345,8.073,-6.629,12.318,13.293,21.78,8.935,3.385,18.213,9.156,24.752,9.717,6.12,3.859,3.059,13.703,15.13,13.624,15.677,10.336,10.507,6.287,21.779,5.126,15.816,0.145,21.714,13.963,15.947,18.45,14.838,-2.305,5.107,4.005,39.178,20.781,2.425,23.61,9.404,5.469,10.561,17.241,17.576,7.061,11.855,15.177,16.951,12.933,16.655,0.386,2.301,13.094,4.37,37.087,12.32,12.839,4.859],[14.222,26.194,16.273,-0.473,10.299,4.593,-2.587,10.427,17.171,-0.451,11.314,22.047,26.353,14.89,2.442,4.57,5.611,21.565,8.727,-4.389,4.871,10.399,1.592,21.176,11.432,6.414,26.815,18.708,23.774,17.307,6.978,16.761,-1.565,21.287,12.207,-5.877,6.283,9.039,16.607,13.417,1.188,22.644,15.121,4.774,10.538,5.745,21.977,15.369,9.541,16.283,17.154,-1.363,13.923,15.836,37.916,6.858,13.925,5.98,18.482,2.139,3.591,22.252,10.473,10.629,24.574,-2.15,16.039,-1.021,16.196,14.995,24.78,9.114,13.868,-0.684,-3.551,9.372,26.877,9.397,11.369,16.123,4.473,2.787,17.24,8.724,14.902,11.71,6.348,20.31,-0.765,0.594,27.466,21.658,14.479,3.179,9.785,21.118,6.378,5.608,1.297,13.09,5.045,22.492,9.678,7.395,-3.074,11.858,23.459,3.666,6.242,22.591,16.677,11.505,-5.154,21.792,20.099,8.914,1.704,5.761,19.482,5.6,26.849,23.239,5.358,25.045,18.279,-6.148,-1.433,17.338,-1.523,12.668,5.966,19.533,18.227,21.3,10.116,16.102,8.168,-6.726,12.19,13.438,21.306,9.128,3.277,18.556,8.776,24.21,10.113,6.406,4.139,2.677,14.055,14.597,13.59,15.541,10.779,10.471,6.184,21.953,5.499,15.901,-0.025,21.583,14.207,15.502,18.981,15.092,-2.182,5.455,3.695,39.257,20.996,2.404,22.9,9.451,5.185,10.362,17.059,17.762,6.954,11.889,15.206,16.996,12.372,16.707,0.485,2.273,12.817,3.985,37.075,12.149,12.743,4.73],[14.416,26.192,16.213,-0.365,10.397,4.522,-2.626,10.157,17.121,-0.414,11.256,22.15,26.411,14.926,2.285,4.518,5.586,21.448,8.7,-4.223,4.973,10.377,1.674,21.423,11.647,6.475,26.693,18.666,23.762,17.457,6.823,16.805,-1.415,21.21,12.345,-5.814,6.3,9.139,16.838,13.118,1.196,22.395,15.029,4.815,10.708,5.896,22.037,15.245,9.616,16.089,17.34,-1.44,13.808,15.997,37.901,6.294,13.848,6.111,18.479,2.345,3.728,22.238,10.444,10.248,24.757,-2.235,16.2,-1.019,15.787,15.211,24.654,8.995,14.212,-0.31,-3.91,9.466,27.516,9.067,11.469,15.823,3.909,2.985,17.345,8.694,14.893,11.39,6.132,20.442,-0.847,0.175,27.562,22.256,15.097,3.376,10.015,21.268,6.427,5.078,0.77,13.428,4.902,22.518,9.214,7.334,-2.726,11.811,22.959,3.953,6.307,23.037,16.379,11.5,-5.162,21.421,20.029,8.981,1.305,5.711,19.541,5.707,26.403,22.97,5.744,24.974,17.942,-6.292,-1.5,16.959,-1.482,12.641,5.983,19.346,18.536,21.53,10.48,16.245,7.913,-7.074,12.963,13.243,21.085,8.753,3.151,18.587,8.501,23.924,10.111,6.493,4.633,2.879,14.505,14.333,13.428,15.644,10.888,10.797,6.085,22.196,5.663,15.985,0.222,22.04,14.06,14.913,19.155,15.21,-2.045,5.677,3.629,39.357,20.827,2.607,22.441,9.069,4.862,10.558,17.194,17.658,6.309,11.886,15.572,16.779,12.854,17.006,0.474,2.502,12.94,4.073,37.082,11.538,12.632,4.478],[14.443,26.263,16.352,-0.05,10.514,4.375,-2.647,9.878,17.106,-0.524,11.137,22.194,26.41,14.953,2.268,4.709,5.445,21.517,8.712,-4.147,4.942,10.548,1.608,21.647,11.946,6.4,26.667,18.646,23.718,17.676,6.769,16.905,-1.194,21.101,12.424,-5.732,6.261,9.289,17.055,13.03,1.221,22.247,14.835,4.758,10.891,5.927,22.292,15.028,9.538,15.894,17.318,-1.466,13.904,16.027,37.879,5.986,13.658,6.028,18.345,2.414,3.763,22.14,10.324,10.02,24.799,-2.437,16.47,-1.132,15.986,14.915,24.808,9.324,14.278,-0.592,-3.922,9.657,27.78,8.908,10.655,16.142,3.483,2.725,17.479,8.727,14.9,11.465,6.037,20.714,-0.962,0.052,27.639,21.662,15.515,3.387,9.945,21.634,6.445,4.895,1.159,13.738,4.703,22.924,9.619,7.292,-2.683,12.167,22.776,3.71,5.629,22.906,16.673,11.17,-5.145,21.786,19.541,9.167,1.596,5.306,19.809,5.379,26.224,22.64,5.383,25.145,17.486,-6.077,-1.114,16.715,-1.98,11.601,6.525,19.252,18.557,21.488,10.904,16.343,8.099,-6.592,13.062,13.03,21.162,9.154,3.161,18.662,8.558,24.026,9.811,6.018,4.402,3.092,13.652,14.395,13.223,15.817,10.837,11.391,6.176,22.111,5.901,15.877,0.549,22.328,14.31,14.574,19.117,15.326,-2.01,5.908,4.605,39.2,20.989,3.097,23.301,9.03,4.261,10.06,17.119,17.317,5.817,11.674,15.753,16.746,13.032,17.12,0.357,2.689,12.659,4.401,37.033,10.861,12.668,4.525],[14.472,26.31,16.569,0.116,10.547,4.225,-2.578,9.697,17.092,-0.68,11.013,22.158,26.427,14.94,2.388,4.852,5.129,21.805,8.763,-4.12,4.808,10.758,1.696,21.794,12.166,6.152,26.712,18.74,23.629,17.883,6.879,16.974,-1.001,20.958,12.319,-5.678,6.283,9.475,17.248,12.996,1.218,22.308,14.664,4.732,11.099,5.815,22.542,14.87,9.41,15.765,17.233,-1.449,14.276,16.067,37.746,5.923,13.432,5.875,18.146,2.216,3.869,22.247,10.198,9.934,24.862,-2.369,16.011,-0.671,15.889,14.83,24.965,9.554,13.64,-0.439,-3.678,9.435,27.857,8.606,10.085,16.341,3.743,2.713,17.275,9.275,15.074,11.416,5.948,20.57,-0.764,0.122,27.781,21.211,14.804,2.832,9.985,21.618,6.694,4.849,1.044,14.021,4.486,22.965,9.528,6.716,-2.613,12.267,22.872,3.753,5.838,23.014,17.574,11.313,-4.695,21.915,20.111,9.262,1.804,5.181,19.638,5.013,26.472,22.443,5.073,24.965,17.486,-5.667,-1.201,17.362,-1.389,10.836,6.587,19.18,18.333,21.141,11.094,16.255,8.111,-6.647,12.706,12.935,21.123,9.36,3.273,18.982,9.094,23.959,10.175,5.805,4.328,3.032,13.186,14.541,13.167,15.637,10.622,11.206,6.232,22.063,5.896,15.617,0.562,22.467,14.149,14.584,19.063,14.995,-2.116,5.362,4.512,39.237,20.935,2.625,23.1,9.038,4.648,10.119,16.844,17.702,5.652,11.553,15.292,16.91,12.549,16.822,0.362,2.231,12.257,4.386,37.099,10.8,12.457,4.794],[14.483,26.383,16.625,0.229,10.633,4.215,-2.437,9.594,16.947,-0.69,10.742,22.202,26.415,14.728,2.547,4.76,4.851,22.025,8.804,-3.949,4.539,10.769,1.871,21.809,12.308,5.985,26.706,18.983,23.494,17.895,7.032,17.145,-0.871,20.76,12.021,-5.635,6.33,9.797,17.26,12.871,1.17,22.423,14.585,4.718,11.04,5.755,22.59,14.992,9.549,15.738,17.183,-1.395,14.482,15.944,37.54,5.889,13.132,5.745,18.124,1.993,3.873,22.374,10.141,9.878,24.967,-2.555,15.983,-1.04,15.75,14.868,24.629,9.415,14.114,0.226,-3.525,9.007,27.621,8.346,10.689,16.057,3.979,3.131,17.332,9.107,15.131,11.427,5.806,20.705,-0.659,0.065,27.504,21.364,14.479,3.327,10.184,21.629,6.54,4.288,0.843,14.136,4.424,23.18,9.349,6.719,-2.594,12.333,23.253,4.153,6.011,22.933,17.733,11.811,-4.543,22.044,20.448,9.416,1.575,5.825,19.431,4.994,26.576,22.348,5.523,25.085,18.05,-5.717,-1.21,17.108,-1.227,11.141,6.395,19.055,18.647,20.615,11.035,16.774,8.11,-7.124,13.023,12.75,21.264,9.49,3.245,18.977,9.345,24.035,10.276,6.06,4.403,2.968,13.673,14.496,13.245,15.213,10.634,10.869,6.307,22.861,5.255,16.114,0.38,22.655,14.603,14.552,18.713,14.956,-1.9,5.105,3.833,39.349,20.677,2.581,22.865,8.764,4.869,10.127,16.537,17.765,5.604,11.646,14.844,17.203,12.928,16.787,0.496,2.334,12.081,4.324,37.014,11.17,12.158,4.637],[14.501,26.502,16.616,0.193,10.634,4.253,-2.504,9.646,16.75,-0.712,10.521,22.271,26.283,14.382,2.864,4.702,4.774,22.101,8.841,-3.725,4.183,10.775,1.949,21.709,12.456,6.063,26.784,19.142,23.369,17.812,7.216,17.265,-0.922,20.473,11.858,-5.599,6.321,10.038,17.224,12.886,1.215,22.644,14.504,4.695,10.875,5.686,22.637,15.117,9.672,15.732,17.221,-1.229,14.539,15.929,37.347,5.812,12.867,5.561,18.207,2.132,3.71,22.458,10.059,9.868,24.886,-2.569,16.375,-0.814,15.572,14.81,24.501,8.81,14.32,0.071,-3.506,8.746,27.348,8.983,10.764,16.195,4.459,3.282,17.592,8.906,14.863,11.545,5.774,20.641,-0.663,0.222,27.364,22.357,14.975,3.818,9.85,21.439,6.48,3.783,1.446,14.184,4.112,23.396,9.582,6.592,-2.451,12.273,23.761,3.683,5.661,22.972,16.966,11.625,-4.305,22.536,20.273,9.21,1.669,5.875,20.169,5.13,26.532,22.208,5.349,25.063,17.991,-5.957,-0.657,17.392,-1.514,11.023,6.379,18.663,18.991,20.675,11.532,16.78,7.935,-6.714,13.217,12.962,21.193,9.313,3.138,19.168,9.879,24.246,10.287,6.326,4.535,2.934,13.281,14.442,13.496,15.147,11.199,10.797,6.165,22.751,4.791,16.32,0.33,22.23,14.393,14.453,18.908,15.243,-1.802,5.486,4.315,39.032,20.652,2.888,23.185,8.858,4.229,10.081,16.75,17.558,5.888,11.622,15.227,17.253,12.951,16.996,0.646,2.478,11.906,4.229,36.703,11.321,11.593,4.178],[14.673,26.611,16.552,0.072,10.512,4.344,-2.529,9.842,16.718,-0.652,10.481,22.302,26.2,14.283,3.062,4.757,4.732,22.21,8.77,-3.504,3.866,10.769,2.138,21.591,12.471,6.084,26.805,19.236,23.338,17.662,7.257,17.303,-1.13,20.316,11.717,-5.595,6.246,10.179,17.214,12.991,1.37,22.827,14.481,4.737,10.729,5.525,22.575,15.194,9.718,15.66,17.41,-1.093,14.503,15.96,37.169,5.667,12.627,5.417,18.299,2.399,3.667,22.522,10.11,9.903,25.059,-2.482,16.009,-1.472,15.199,14.968,24.692,8.617,13.641,-0.336,-3.863,8.578,27.773,9.216,10.332,16.388,4.57,3.543,17.621,8.876,15.261,11.38,6.003,20.374,-0.868,0.015,27.394,22.345,14.072,3.59,9.656,21.593,6.618,4.517,0.921,14.135,3.995,23.356,9.636,6.599,-2.369,12.077,23.835,3.635,5.695,23.333,16.661,11.688,-3.883,22.22,20.398,9.202,1.974,5.631,20.168,5.247,26.298,21.985,5.301,25.187,18.223,-5.952,-0.454,17.366,-1.621,11.295,6.784,18.515,19.028,20.856,11.61,16.267,8.036,-6.479,12.696,12.859,21.768,9.343,3.118,18.945,10.145,24.602,10.367,6.427,4.603,3.302,13.063,14.731,13.493,15.533,10.74,10.951,5.951,22.601,4.486,16.004,0.559,22.231,14.355,14.338,19.203,15.852,-1.838,5.454,3.922,38.467,21.365,2.748,23.539,8.94,4.185,10.128,16.91,17.459,5.362,11.428,15.886,17.253,13.074,16.901,0.622,2.604,11.656,4.508,36.299,11.298,11.518,4.398],[14.688,26.732,16.492,-0.223,10.309,4.553,-2.591,10.133,16.679,-0.637,10.43,22.122,26.17,14.36,3.059,4.911,4.92,22.29,8.59,-3.321,3.822,10.629,2.38,21.705,12.347,6.105,26.713,19.227,23.422,17.564,7.184,17.215,-1.294,20.261,11.679,-5.708,6.318,10.173,17.051,13.038,1.523,22.952,14.465,4.652,10.588,5.361,22.47,15.326,9.589,15.458,17.603,-1.108,14.536,16.067,36.933,5.451,12.379,5.333,18.439,2.554,3.729,22.674,10.298,9.98,25.273,-2.462,15.655,-1.121,15.541,14.598,24.474,9.206,14.024,0.048,-3.944,8.781,28.052,9.045,10.196,16.5,3.941,3.683,17.507,9.3,15.401,10.91,6.206,20.72,-1.033,0.232,27.403,22.504,14.363,3.781,9.961,22.142,6.733,4.812,0.997,14.168,3.698,23.704,9.358,6.593,-2.139,12.234,23.767,4.191,5.725,23.096,16.34,11.989,-4.007,21.77,20.505,9.512,1.538,5.597,20.012,4.979,26.474,22.089,5.532,25.244,18.448,-5.612,-1.396,16.837,-1.534,11.091,6.719,18.393,19.092,20.76,11.52,16.071,8.032,-6.446,11.865,13.032,21.938,9.033,3.127,18.898,9.932,24.852,10.627,6.153,4.182,3.338,13.513,14.848,13.691,15.806,10.757,11.369,6.079,22.625,4.315,15.765,0.796,22.711,14.246,14.638,19.372,15.789,-2.074,5.379,4.178,38.545,21.528,2.903,23.662,8.876,4.87,10.313,16.919,17.762,5.129,11.653,16.203,16.684,13.08,17.069,0.67,2.885,11.471,4.1,35.799,10.782,11.74,4.964],[14.786,26.925,16.372,-0.278,10.098,4.714,-2.694,10.417,16.599,-0.667,10.357,21.93,26.121,14.515,3.055,4.996,5.195,22.319,8.484,-3.251,3.989,10.618,2.444,21.939,12.225,6.213,26.681,19.173,23.629,17.572,7.095,17.094,-1.446,20.263,11.535,-5.76,6.433,10.066,16.905,13.084,1.582,22.949,14.494,4.605,10.396,5.195,22.48,15.484,9.682,15.311,17.74,-1.211,14.573,15.986,36.733,5.498,12.216,5.424,18.625,2.645,3.772,22.927,10.504,9.998,25.2,-2.464,15.745,-1.414,16.246,14.817,24.431,10.415,14.42,-0.458,-3.721,8.562,27.723,8.84,10.71,16.489,4.213,3.538,17.557,9.254,15.623,11.027,6.182,20.447,-0.896,0.336,27.449,22.162,14.971,3.596,9.756,22.104,6.729,4.792,1.732,14.016,3.591,23.762,9.301,6.914,-2.219,12.038,23.681,4.429,5.768,23.225,16.722,11.916,-4.038,22.107,20.304,9.146,1.695,5.825,20.21,4.623,26.322,22.48,5.181,24.944,17.945,-5.537,-1.658,17.452,-1.806,11.301,6.369,18.474,18.836,20.504,11.103,16.101,7.856,-6.682,12.213,12.843,21.66,8.583,3.128,18.641,10.07,24.655,10.018,7.066,4.236,3.23,13.162,14.695,13.663,15.653,11.234,11.207,6.099,22.256,4.586,16.167,0.829,22.349,14.29,14.566,19.309,15.257,-2.43,4.653,4.297,38.432,21.033,2.905,23.15,9.073,4.337,10.389,17.049,17.937,5.244,11.823,15.278,16.782,13.047,17.32,0.58,2.59,11.239,4.405,35.63,10.589,11.089,4.519],[15.018,27.082,16.321,-0.339,9.97,4.803,-2.642,10.713,16.745,-0.649,10.24,21.773,26.098,14.852,2.978,4.944,5.395,22.257,8.505,-3.296,4.144,10.639,2.545,22.075,12.11,6.224,26.724,19.15,23.906,17.622,7.091,17.157,-1.583,20.22,11.42,-5.723,6.586,9.97,16.897,13.005,1.56,22.733,14.448,4.555,10.145,5.116,22.339,15.518,9.967,15.12,17.65,-1.456,14.524,15.861,36.676,5.7,11.968,5.404,18.682,2.485,3.85,22.887,10.695,9.945,25.378,-2.505,15.815,-1.573,16.372,14.953,24.638,10.462,13.954,-0.315,-3.772,8.217,27.982,9.034,10.686,16.611,5.118,3.766,17.445,8.479,15.135,11.057,6.217,20.058,-1.007,-0.146,27.21,21.219,14.637,3.602,9.479,22.196,6.672,5.074,1.527,13.952,4.119,23.676,9.405,7.183,-2.055,11.787,23.467,4.554,5.74,23.586,16.77,11.567,-3.78,22.964,20.308,8.945,1.5,5.653,20.129,5.358,26.395,22.827,4.952,24.965,18.007,-5.766,-0.938,17.332,-1.918,11.342,6.133,18.512,18.902,20.378,10.539,16.05,7.641,-6.661,12.395,12.934,21.743,8.651,2.932,18.785,9.924,24.38,10.271,7.758,4.358,3.413,13.114,14.695,13.809,15.174,11.369,10.341,6.019,22.59,5.003,16.312,0.693,22.336,13.962,14.329,19.285,15.222,-2.17,5.038,4.115,38.163,21.238,2.825,23.574,9.603,4.334,10.397,17.053,18.16,5.71,11.689,14.623,16.744,12.843,17.255,0.259,2.934,11.346,4.319,35.806,11.138,10.849,4.384],[14.919,27.211,16.239,-0.425,9.872,4.883,-2.554,10.773,17.038,-0.664,10.191,21.58,26.073,15.032,2.971,4.974,5.596,22.333,8.6,-3.393,4.333,10.619,2.629,22.105,12.045,6.092,26.817,19.158,24.114,17.576,7.11,17.297,-1.574,20.153,11.344,-5.764,6.703,9.859,17.104,12.938,1.539,22.683,14.257,4.475,9.953,5.217,22.311,15.455,10.236,14.898,17.479,-1.639,14.373,15.655,36.867,5.74,11.789,5.397,18.711,2.263,3.763,22.823,10.875,10.056,25.477,-2.531,15.668,-1.359,16.428,15.232,24.454,9.997,14.471,-0.611,-3.677,8.319,28.294,9.813,10.423,16.661,5.206,3.662,17.573,8.145,14.823,10.597,6.264,20.205,-0.955,0.133,27.303,20.921,15.457,3.983,9.511,22.065,6.804,5.02,1.196,13.852,4.167,23.249,9.766,7.199,-2.346,11.966,23.375,4.505,5.825,23.715,16.882,11.561,-4.068,22.663,20.347,9.123,1.719,5.755,20.03,5.468,26.393,22.89,5.127,25.364,18.559,-5.88,-1.183,16.936,-1.877,11.055,6.274,18.388,19.093,20.437,10.517,16.176,7.622,-6.22,12.345,12.709,21.805,8.413,2.87,18.556,9.765,24.468,11.178,8.046,3.946,3.274,13.324,14.618,13.863,15.294,11.251,9.604,5.693,22.487,4.961,16.147,0.642,22.235,13.977,13.843,18.927,15.516,-2.052,5.522,4.28,38.427,21.426,2.841,23.468,9.506,4.663,9.658,17.357,17.925,5.624,11.73,14.908,16.811,12.653,17.007,0.153,3.216,11.199,4.133,36.142,11.835,11.28,4.248],[14.875,27.214,16.29,-0.441,9.591,4.894,-2.452,10.632,17.206,-0.677,10.344,21.505,26.015,15.24,3.057,5.209,5.656,22.398,8.757,-3.625,4.334,10.681,2.588,22.056,11.989,5.999,26.894,19.105,24.156,17.556,7.21,17.318,-1.626,20.076,11.276,-5.806,6.77,9.868,17.29,12.991,1.577,22.83,14.006,4.45,9.729,5.295,22.377,15.403,10.486,14.76,17.321,-1.589,14.261,15.593,37.22,5.476,11.793,5.462,18.778,2.201,3.538,22.748,10.948,10.31,25.445,-2.356,15.845,-1.678,16.617,15.363,24.322,9.128,14.5,-0.727,-3.481,8.56,28.065,10.136,10.353,16.361,4.598,3.721,17.515,8.165,14.527,10.67,6.511,20.037,-0.797,0.5,27.353,21.056,14.92,4.052,9.872,21.906,6.864,5.073,1.535,13.821,4.154,23.118,9.757,7.583,-2.885,12.293,23.542,4.282,5.688,23.678,17.062,11.502,-4.412,21.743,20.272,9.276,2.445,5.843,20.185,5.39,26.5,23.13,5.051,25.244,18.198,-5.47,-1.762,17.636,-1.531,10.771,6.573,18.352,19.006,20.204,11.202,16.074,7.666,-6.533,12.489,12.704,21.541,8.166,2.707,18.683,9.567,24.71,11.597,7.993,4.153,3.239,13.416,14.486,13.839,15.436,11.221,10.137,5.714,22.356,4.69,15.98,0.523,22.195,13.806,13.567,18.868,15.576,-2.551,5.077,4.123,39.011,21.351,2.647,23.435,9.32,5.043,9.787,17.548,17.621,4.87,12.051,14.671,16.781,12.726,16.581,0.306,2.574,10.96,4.622,36.735,11.75,11.091,4.042],[14.784,26.96,16.387,-0.435,9.278,4.849,-2.284,10.296,17.317,-0.56,10.377,21.633,25.967,15.39,3.038,5.589,5.672,22.393,8.99,-3.948,4.145,10.884,2.616,21.954,11.906,5.914,26.894,19.141,24.083,17.516,7.351,17.265,-1.838,19.881,11.156,-5.613,6.819,10.003,17.405,13.109,1.691,22.967,13.929,4.386,9.691,5.231,22.359,15.343,10.772,14.679,17.201,-1.514,14.37,15.495,37.542,5.156,11.89,5.33,18.755,2.15,3.38,22.656,10.943,10.402,25.359,-2.428,16.026,-1.388,16.78,15.256,24.46,8.765,13.745,-0.26,-3.317,8.866,27.941,9.719,10.417,16.554,4.492,4.221,17.452,8.05,14.726,10.574,6.474,19.936,-0.629,0.224,27.231,21.304,15.005,3.918,10.103,22.092,7.346,5.376,1.431,13.375,4.23,23.047,9.774,7.492,-2.618,12.027,23.832,4.968,5.338,23.472,16.674,11.741,-4.52,21.851,20.233,9.23,2.877,5.842,20.126,5.223,26.515,23.548,5.081,25.103,17.674,-5.992,-1.273,17.624,-1.885,10.915,6.813,17.984,18.896,20.246,11.658,16.243,8.138,-6.523,12.626,12.789,21.778,8.046,2.727,18.527,9.592,24.735,10.89,7.811,4.301,3.392,13.35,14.782,13.478,15.01,11.576,10.623,5.881,22.503,4.299,15.981,0.686,22.531,13.975,13.708,18.873,15.503,-2.415,4.934,3.772,39.219,21.39,2.464,23.412,9.485,4.49,10.339,17.456,17.891,4.789,11.898,14.336,16.889,12.721,16.651,0.251,2.196,11.241,4.03,37.511,12.038,10.758,4.547],[14.553,26.661,16.446,-0.223,9.137,4.838,-2.167,9.871,17.414,-0.389,10.268,21.839,25.988,15.433,3.054,5.971,5.748,22.257,9.156,-4.068,4.073,10.989,2.66,21.81,11.742,5.816,26.833,19.245,24.005,17.332,7.392,17.169,-2.007,19.65,11.097,-5.342,6.898,10.198,17.334,13.327,1.745,23.04,14.083,4.386,9.9,5.032,22.356,15.177,10.988,14.609,17.102,-1.474,14.577,15.422,37.635,4.919,11.974,5.04,18.697,2.076,3.309,22.557,10.924,10.376,25.092,-2.294,16.043,-1.846,16.826,16.02,24.324,8.628,13.731,-0.455,-3.195,8.463,27.627,9.423,10.323,16.062,4.661,3.969,17.579,8.091,14.674,10.346,6.262,20.357,-0.447,-0.112,27.179,21.661,15.387,3.919,10.266,21.903,7.751,5.589,1.48,13.405,3.824,23.525,9.93,7.404,-2.477,11.97,24.228,5.612,5.365,23.433,16.839,11.987,-4.499,22.927,20.461,9.311,2.477,6.088,20.095,4.987,26.304,23.697,5.25,25.432,18.06,-5.628,-1.565,17.431,-2.169,10.875,6.828,17.843,18.836,20.192,11.643,16.564,8.22,-6.431,12.443,13.077,22.189,8.343,2.866,18.533,9.921,24.705,10.86,7.837,4.333,3.584,13.787,14.836,13.399,15.154,12.111,10.616,5.792,22.607,4.022,16.006,0.945,21.87,13.74,13.845,18.672,15.788,-2.493,4.504,3.552,39.161,21.349,2.599,23.54,9.591,3.599,9.961,17.294,17.949,4.932,11.792,14.811,16.919,12.881,16.708,0.201,2.579,11.699,4.126,38.259,11.474,11.042,4.592],[14.384,26.529,16.333,-0.173,9.085,4.859,-2.161,9.609,17.552,-0.222,10.075,22.033,26.044,15.465,3.133,6.316,5.727,22.307,9.116,-4.01,4.171,10.968,2.533,21.597,11.76,5.71,26.724,19.237,23.981,17.387,7.362,17.179,-2.148,19.548,11.131,-5.196,6.953,10.386,17.306,13.553,1.8,22.896,14.349,4.414,10.183,4.868,22.278,15.078,11.219,14.568,17.007,-1.575,14.808,15.365,37.858,4.713,12.092,4.708,18.665,2.131,3.387,22.64,10.876,10.205,24.744,-2.047,16.214,-1.393,16.89,15.846,24.336,8.48,13.554,-0.382,-3.301,8.302,27.289,8.532,10.077,15.804,5.244,3.784,17.587,7.61,14.817,10.556,6.142,20.425,-0.438,0.566,27.39,21.588,15.516,4.428,10.367,21.651,7.857,5.64,1.656,13.521,4.192,23.659,10.083,7.512,-2.498,12.442,23.934,5.49,5.539,23.295,16.509,11.519,-4.148,22.573,20.473,9.401,2.046,5.897,20.174,5.152,26.322,23.784,5.343,25.146,18.065,-5.372,-2.019,17.225,-1.89,10.809,6.95,17.786,18.982,19.582,11.817,16.149,8.068,-6.302,12.242,13.127,22.041,8.709,2.685,18.519,10.061,24.696,11.346,7.945,4.412,3.519,14.072,14.8,13.456,15.561,12.038,10.531,5.854,21.982,4.056,15.585,0.566,21.75,13.706,14.189,18.585,15.6,-2.34,4.403,4.142,39.125,21.225,2.844,23.526,9.566,3.518,9.881,17.42,17.696,4.926,12.09,14.6,16.73,13.064,16.376,0.28,2.737,11.597,4.445,38.13,11.411,11.296,3.491],[14.371,26.471,16.106,-0.176,9.056,4.916,-2.17,9.373,17.764,0.023,9.868,22.096,26.222,15.486,3.22,6.532,5.592,22.324,8.957,-3.836,4.417,10.941,2.388,21.436,11.829,5.697,26.652,18.963,23.964,17.555,7.255,17.262,-2.172,19.513,11.29,-5.157,6.979,10.463,17.293,13.604,1.743,22.74,14.579,4.498,10.429,4.91,22.01,15.013,11.383,14.448,16.855,-1.622,14.896,15.294,38.187,4.549,12.171,4.285,18.671,2.297,3.661,22.778,10.917,10.148,24.794,-1.683,16.549,-1.082,17.115,15.165,24.694,8.316,13.473,-0.641,-3.225,8.272,27.436,8.542,9.703,16.138,4.935,4.029,17.402,7.735,14.616,10.39,6.484,20.601,-0.375,0.948,27.447,21.243,14.854,4.489,9.86,21.813,8.125,5.517,1.32,13.476,3.752,23.866,9.926,7.429,-2.537,12.363,23.123,5.562,5.304,22.999,16.478,11.414,-3.975,21.956,20.036,9.281,1.959,5.611,20.076,5.518,26.34,24.02,4.959,24.927,17.82,-5.685,-2.093,17.584,-2.076,11.129,7.004,18.039,19.025,19.701,12.06,16.065,7.88,-6.24,12.213,13.166,21.31,8.702,2.87,18.356,10.426,24.514,11.371,8.474,3.665,3.306,14.307,15.178,13.413,15.708,12.078,10.63,5.841,22.217,3.704,15.463,0.411,22.018,13.733,13.787,18.707,15.568,-2.145,4.591,4.063,39.637,21.216,2.726,23.494,9.347,4.024,9.564,17.43,17.956,4.421,12.084,14.457,16.695,13.018,16.513,0.238,2.556,11.094,4.386,38.231,11.815,11.22,3.286],[14.439,26.504,15.905,-0.185,9.04,4.964,-2.156,9.137,18.034,0.154,9.694,22.11,26.415,15.255,3.235,6.675,5.51,22.35,8.628,-3.634,4.504,10.795,2.311,21.537,11.795,5.653,26.567,18.501,23.917,17.578,7.073,17.338,-2.132,19.642,11.547,-5.106,7.11,10.459,17.369,13.679,1.635,22.518,14.62,4.589,10.598,4.801,21.781,14.96,11.374,14.222,16.708,-1.509,14.86,15.217,38.548,4.465,12.185,3.898,18.779,2.559,3.833,22.827,11.035,10.16,25.097,-1.69,16.927,-1.559,17.034,15.778,24.794,8.254,13.856,-0.329,-3.064,8.264,27.664,9.109,9.166,16.044,4.291,4.273,16.973,7.746,14.642,10.523,6.524,20.626,-0.196,0.995,27.56,21.427,14.695,4.578,9.619,21.635,8.071,5.252,1.475,13.694,4.674,23.574,9.789,7.302,-2.628,11.776,22.647,5.576,5.172,22.747,16.825,11.431,-3.852,21.853,19.566,9.099,1.949,5.442,19.538,5.585,26.277,24.272,4.708,25.046,18.221,-5.822,-1.73,17.765,-2.169,11.417,6.74,17.93,18.933,19.8,12.119,16.383,7.627,-6.582,12.603,13.437,21.147,8.821,3.241,18.426,10.837,24.113,11.993,8.682,4.043,3.194,14.253,15.22,13.251,15.65,12.434,10.958,6.104,22.341,3.875,15.863,0.667,21.771,13.723,13.456,18.378,15.46,-2.099,3.947,4.129,40.102,21.51,2.707,23.269,9.46,4.071,9.554,17.513,17.556,3.491,12.043,14.636,16.546,13.174,16.762,0.216,2.325,11.334,4.9,38.751,11.699,11.227,3.272],[14.551,26.697,15.797,-0.287,9.029,4.799,-2.047,9.056,18.109,0.128,9.482,22.172,26.349,15.017,3.391,6.602,5.586,22.369,8.398,-3.594,4.55,10.507,2.25,21.607,11.746,5.509,26.734,18.161,23.912,17.652,6.826,17.339,-2.152,19.805,11.86,-5.113,7.202,10.493,17.571,13.843,1.689,22.422,14.627,4.69,10.625,4.761,21.646,15.058,11.405,14.104,16.661,-1.376,14.86,15.132,38.919,4.361,12.325,3.439,18.715,2.678,3.96,22.705,11.128,10.156,24.868,-1.62,17.066,-1.343,17.111,15.929,24.863,8.342,13.701,-0.13,-2.942,7.761,27.442,8.964,9.01,15.831,4.816,3.758,16.817,7.593,14.375,10.589,6.131,20.475,-0.265,0.863,27.784,22.109,15.274,4.428,9.793,21.754,8.227,5.59,1.635,13.443,4.657,22.983,9.401,7.29,-2.24,11.822,22.539,5.712,5.2,23.31,16.588,12.066,-3.615,22.466,19.49,8.923,2.202,5.619,19.07,5.412,25.994,24.323,4.995,25.243,18.063,-5.765,-1.633,17.641,-1.999,11.404,6.129,18.023,19.036,19.978,11.9,16.608,7.838,-6.284,12.439,13.173,21.155,8.805,3.107,18.854,10.472,24.042,11.548,8.584,4.436,3.536,14.4,15.181,13.289,15.479,12.01,11.363,6.331,21.76,3.801,15.901,0.448,21.446,13.227,13.811,18.322,15.352,-1.807,3.386,4.238,40.044,21.551,3.257,23.507,9.521,4.094,9.735,17.668,17.665,3.551,12.631,14.536,16.163,13.03,16.24,0.541,3.101,11.925,5.14,38.762,11.364,10.963,3.471],[14.546,26.819,15.711,-0.176,8.962,4.583,-1.971,9.179,17.981,0.055,9.207,22.297,26.218,15.022,3.44,6.387,5.762,22.285,8.459,-3.62,4.527,10.322,2.192,21.714,11.814,5.461,27.011,18.041,23.906,17.657,6.645,17.351,-2.18,19.956,12.03,-5.08,7.138,10.366,17.795,14.05,1.819,22.449,14.568,4.61,10.56,4.822,21.477,15.204,11.297,14.186,16.663,-1.097,14.809,14.807,39.205,4.402,12.459,2.941,18.612,2.799,4.058,22.608,11.141,10.228,25.045,-1.67,16.601,-1.524,17.648,15.529,24.632,8.571,13.62,-0.635,-2.744,7.346,27.346,8.077,9.516,16.01,4.855,3.552,16.83,7.832,14.258,10.453,6.009,20.616,-0.278,0.535,27.389,22.43,14.975,4.85,9.496,21.852,8.05,5.925,1.637,13.564,3.924,22.974,9.268,7.488,-2.204,11.699,22.898,5.639,4.947,23.455,16.657,11.668,-3.64,23.109,19.291,8.603,2.577,5.576,19.179,5.678,26.655,24.574,4.768,25.301,17.867,-5.5,-2.498,17.763,-1.769,11.065,5.618,18.201,18.934,20.822,12.043,17.043,8.044,-6.495,12.733,13.404,21.185,8.906,3.021,19.29,10.028,24.165,10.937,8.593,4.034,3.516,15.057,15.387,13.451,15.79,12.221,11.187,5.93,22.06,3.556,15.86,0.81,21.327,13.093,13.973,18.581,15.377,-1.747,3.438,4.389,40.238,21.408,3.037,23.587,9.971,3.441,9.719,17.44,17.64,4.379,12.724,14.564,15.804,12.919,16.041,0.808,3.589,12.147,4.824,39.129,10.863,11.134,3.473],[14.397,26.93,15.796,-0.023,8.846,4.513,-1.995,9.311,17.841,-0.11,9.156,22.476,26.125,15.072,3.404,6.155,5.849,22.304,8.514,-3.766,4.398,10.167,2.149,21.836,11.877,5.413,27.16,18.053,23.915,17.721,6.51,17.428,-2.26,20.086,11.931,-4.99,7.067,10.151,18.065,14.331,1.949,22.397,14.477,4.365,10.428,4.775,21.37,15.207,11.111,14.411,16.749,-0.777,14.653,14.522,39.458,4.48,12.532,2.543,18.501,2.863,3.99,22.681,11.221,10.246,25.07,-1.892,16.34,-1.205,17.709,15.661,24.448,9.127,13.608,-0.158,-2.841,7.325,27.483,7.727,9.611,15.967,4.128,4.04,16.694,8.16,14.316,10.502,5.798,20.594,-0.131,0.724,27.219,22.428,14.533,4.97,9.79,22.147,7.944,5.654,1.752,13.755,4.142,23.405,9.747,7.596,-2.238,11.284,23.539,5.124,5.163,23.347,16.486,11.308,-3.75,22.819,18.906,8.629,2.944,5.377,19.33,5.854,27.276,25.021,4.787,25.363,18.316,-5.595,-2.391,17.787,-2.316,11.194,5.479,18.805,19.079,20.743,11.921,17.486,7.733,-6.375,12.966,13.872,21.348,9.006,2.809,19.448,10.062,24.142,11.319,8.385,4.189,3.466,15.219,15.385,13.698,15.663,12.566,10.674,5.792,22.197,3.43,15.997,0.743,21.37,12.691,13.993,18.483,15.51,-1.687,3.357,4.585,40.751,21.078,3.058,23.298,9.919,3.374,9.853,17.449,17.278,4.357,12.417,14.629,15.538,12.944,16.364,1.057,3.549,12.015,5.006,39.145,11.699,11.251,3.071],[14.148,26.891,15.855,0.243,8.807,4.477,-2.129,9.506,17.754,-0.237,9.3,22.507,26.12,15.101,3.439,6.049,5.816,22.489,8.574,-4.002,4.204,10.038,2.234,21.975,11.935,5.53,27.177,17.994,23.961,17.896,6.283,17.546,-2.422,20.288,11.775,-4.878,6.994,9.917,18.223,14.425,2.007,22.416,14.407,4.196,10.245,4.671,21.401,15.146,11.123,14.623,16.815,-0.625,14.431,14.345,39.759,4.513,12.513,2.203,18.489,2.874,4.039,22.797,11.292,10.397,25.315,-1.939,16.274,-0.982,17.277,15.728,24.583,9.373,13.57,-0.024,-2.97,7.753,27.581,7.806,9.14,15.668,4.0,4.672,17.268,8.688,14.293,10.357,5.855,20.715,-0.289,0.885,27.585,22.616,14.828,4.278,9.832,22.327,7.977,5.557,1.403,13.661,4.487,23.498,9.585,7.624,-2.399,11.395,23.945,5.123,5.374,23.69,16.65,11.586,-3.52,22.312,18.985,8.319,2.841,5.542,19.228,5.397,26.775,25.269,4.885,25.492,18.33,-5.791,-2.088,17.759,-1.897,11.551,5.799,18.45,19.266,20.616,11.502,17.916,7.577,-5.94,12.247,13.49,21.29,8.658,2.66,19.807,10.039,24.12,11.025,8.109,4.015,3.369,15.318,15.76,14.003,15.57,12.304,10.322,5.882,21.622,3.891,15.982,1.057,21.647,12.778,14.482,18.5,15.322,-0.995,2.625,4.211,40.774,21.039,3.268,23.393,9.648,4.184,9.835,17.4,17.301,3.94,12.45,14.734,15.031,12.513,16.616,1.198,2.862,11.668,5.082,38.921,12.036,11.329,2.53],[13.936,26.717,15.875,0.274,8.843,4.499,-2.27,9.546,17.703,-0.224,9.483,22.519,26.262,15.169,3.417,6.055,5.861,22.712,8.472,-4.08,3.971,10.097,2.344,22.11,11.931,5.671,27.104,17.778,23.997,18.099,6.159,17.739,-2.354,20.35,11.596,-4.841,6.983,9.715,18.242,14.413,1.916,22.508,14.394,4.262,10.025,4.719,21.514,15.184,11.159,14.821,16.72,-0.545,14.163,14.305,39.951,4.61,12.355,1.742,18.47,2.837,4.22,22.92,11.288,10.467,24.969,-1.974,16.433,-1.089,16.803,15.182,24.846,9.836,13.331,0.238,-3.224,8.314,27.58,8.361,9.025,15.259,4.222,4.453,17.331,9.324,14.581,10.287,6.149,21.027,-0.427,0.883,27.641,22.106,14.682,4.484,9.284,22.209,7.82,5.65,1.296,13.585,4.097,23.461,9.552,7.784,-2.517,11.137,23.871,5.647,5.026,23.69,16.916,12.085,-3.505,22.57,19.141,8.224,2.453,5.312,18.877,5.307,26.214,25.366,4.903,25.696,18.23,-5.509,-2.062,17.91,-2.158,11.553,6.038,18.652,19.309,20.832,11.3,17.666,7.942,-6.172,12.966,13.431,20.899,8.302,2.885,19.997,9.824,24.03,10.747,8.172,3.384,3.712,15.442,15.83,13.875,15.58,12.405,10.019,5.727,21.662,4.097,15.848,1.123,21.36,12.466,14.255,18.333,14.787,-0.702,2.359,4.336,40.912,21.569,2.865,23.462,9.901,4.082,10.041,17.488,17.594,3.76,12.533,14.766,14.972,12.313,16.784,1.414,3.154,11.701,5.045,39.653,11.874,11.563,2.761],[13.72,26.435,15.889,0.133,9.031,4.59,-2.44,9.593,17.658,-0.148,9.582,22.561,26.356,15.09,3.304,6.184,5.954,22.834,8.123,-3.957,3.761,10.157,2.372,22.029,11.885,5.637,27.031,17.495,24.009,18.152,6.175,17.934,-2.209,20.436,11.581,-4.825,7.063,9.611,18.108,14.372,1.839,22.44,14.469,4.541,9.791,4.823,21.592,15.163,11.178,15.046,16.594,-0.526,14.077,14.319,40.075,4.744,12.245,1.365,18.566,2.724,4.447,22.969,11.338,10.378,24.618,-1.93,16.28,-0.992,16.873,15.064,24.993,9.71,12.853,0.03,-3.079,7.972,27.302,8.804,9.001,15.084,4.647,3.981,17.038,9.23,14.242,10.257,5.901,20.938,-0.647,0.762,27.79,22.556,14.821,4.714,9.293,22.331,8.091,6.102,1.556,13.455,3.439,23.82,9.445,7.665,-2.616,11.559,23.549,5.287,5.219,23.578,17.297,12.162,-3.118,23.035,18.696,8.616,2.106,5.322,18.614,5.051,26.718,25.169,5.362,25.51,18.411,-5.299,-1.795,18.091,-2.221,11.521,6.128,18.611,19.692,20.606,11.133,17.609,7.536,-6.243,13.055,14.54,21.243,7.828,2.949,19.45,9.525,24.11,11.538,8.779,4.152,3.657,15.17,15.424,13.611,15.633,12.39,9.993,5.841,22.302,3.935,16.34,1.049,21.743,12.592,14.358,18.323,14.959,-0.896,2.057,4.777,41.049,22.146,3.17,23.769,10.034,3.653,9.816,17.329,17.477,4.01,12.693,14.546,15.347,12.252,16.129,1.438,3.186,11.591,5.056,40.19,12.123,11.093,2.529],[13.527,26.147,15.899,0.026,9.251,4.712,-2.569,9.709,17.584,-0.083,9.226,22.664,26.504,14.935,3.103,6.391,6.008,22.862,7.9,-3.772,3.555,10.214,2.339,21.924,11.739,5.673,27.078,17.202,23.975,18.199,6.309,18.0,-1.986,20.394,11.627,-4.763,7.181,9.572,17.89,14.201,1.824,22.381,14.731,4.664,9.515,4.938,21.757,15.177,11.298,15.232,16.517,-0.492,14.317,14.426,40.263,4.918,12.126,1.04,18.686,2.636,4.686,23.026,11.419,10.226,24.447,-1.734,15.971,-1.317,17.318,15.553,24.854,9.662,13.338,-0.547,-3.44,7.715,26.955,8.732,9.092,15.232,4.38,3.828,17.011,8.761,14.288,10.831,5.72,20.759,-0.803,0.781,27.93,23.095,14.171,4.432,9.456,22.246,8.098,6.023,1.691,13.62,3.56,23.86,8.596,7.63,-2.455,11.643,23.447,5.132,5.251,23.724,17.025,11.868,-2.888,22.936,18.241,8.789,2.165,5.671,18.362,4.861,26.981,25.052,5.114,25.426,18.414,-5.607,-2.108,18.418,-2.089,11.228,6.391,18.804,19.611,20.681,10.991,17.911,6.999,-5.955,12.86,14.943,21.386,8.033,3.182,19.134,9.442,24.092,11.551,8.81,4.341,3.484,15.217,15.643,13.537,16.162,12.397,10.564,6.254,22.26,3.704,16.064,0.844,21.797,12.811,14.935,18.339,15.1,-1.055,1.463,5.029,41.008,21.63,3.044,23.799,9.949,3.636,10.135,17.563,17.41,4.696,12.955,15.378,15.451,12.453,15.884,1.329,2.566,11.449,5.286,39.595,11.422,11.086,2.562],[13.708,26.063,16.014,-0.159,9.544,4.729,-2.705,9.891,17.509,0.005,8.921,22.818,26.668,14.726,2.902,6.477,5.923,22.807,7.948,-3.684,3.406,10.192,2.241,21.972,11.689,5.641,27.204,16.938,23.851,18.126,6.691,17.983,-1.858,20.312,11.633,-4.784,6.989,9.592,17.651,14.236,1.905,22.356,14.959,4.588,9.526,4.96,21.762,15.226,11.433,15.512,16.515,-0.539,14.574,14.599,40.291,5.075,12.053,1.0,18.702,2.445,4.882,22.95,11.475,10.076,24.296,-1.715,15.992,-0.871,17.319,14.749,24.966,9.772,13.419,-0.379,-4.04,7.407,26.847,8.305,9.157,14.971,3.751,3.794,17.284,8.658,14.37,11.137,6.075,21.131,-1.04,1.078,27.715,23.031,14.219,4.472,9.424,22.499,8.256,5.923,1.388,13.328,3.497,23.603,8.365,7.672,-1.985,11.371,23.524,5.618,5.805,23.472,16.619,11.303,-3.371,22.601,18.354,8.636,2.445,5.994,18.114,4.778,26.853,25.214,4.77,25.54,18.58,-5.63,-1.95,18.421,-1.66,10.596,6.43,18.72,19.531,21.199,10.662,17.92,7.383,-5.943,13.198,15.177,21.119,8.034,3.261,19.333,9.33,23.987,11.343,8.488,4.203,3.245,15.104,15.501,13.681,16.128,12.409,11.081,6.056,22.203,3.48,15.606,0.355,21.416,12.898,15.098,18.342,14.932,-0.739,0.057,4.893,41.235,21.226,3.052,23.886,10.004,4.049,9.741,17.536,17.879,5.057,12.87,15.754,15.517,12.702,15.916,1.358,2.799,11.486,5.768,39.15,11.505,11.276,1.926],[14.041,26.154,16.177,-0.0,9.709,4.626,-2.9,9.965,17.456,-0.026,9.002,22.93,26.75,14.435,2.992,6.55,5.823,22.587,8.021,-3.757,3.368,10.059,2.1,21.989,11.51,5.714,27.177,16.942,23.674,18.029,7.176,17.964,-1.816,20.438,11.687,-4.791,6.611,9.635,17.48,14.394,1.928,22.308,15.02,4.492,9.734,4.927,21.464,15.146,11.57,15.851,16.623,-0.508,14.602,14.779,40.115,5.18,11.948,0.807,18.671,2.298,5.05,22.879,11.59,10.044,24.43,-1.734,15.978,-1.329,17.295,14.442,25.261,10.009,13.225,-0.323,-3.97,7.517,26.915,8.361,8.531,14.913,4.072,3.403,17.441,8.814,14.836,11.541,6.142,21.102,-1.088,1.205,27.921,23.133,14.419,4.087,9.513,22.322,8.416,5.82,1.144,13.307,3.912,23.678,8.814,7.407,-2.125,11.108,23.445,6.139,5.384,23.522,16.796,11.041,-3.908,22.791,18.317,8.567,2.644,6.512,17.884,4.539,26.953,25.278,5.066,25.533,18.363,-5.54,-1.16,18.005,-1.529,10.775,6.504,18.895,19.648,20.409,10.449,17.421,7.719,-6.156,13.08,15.514,20.869,8.042,2.707,19.269,9.397,24.031,11.546,7.862,4.106,3.496,15.05,15.477,13.752,16.173,12.313,10.952,5.587,21.931,3.544,16.095,1.031,21.669,12.835,15.065,18.254,15.191,-0.324,-0.878,4.845,41.344,21.355,2.996,23.416,9.995,3.835,9.519,17.226,17.718,5.235,12.675,15.425,15.508,12.779,16.237,1.261,2.375,11.284,5.689,39.789,11.793,10.849,1.656],[14.35,26.248,16.389,0.21,9.681,4.615,-3.12,9.987,17.505,-0.181,9.194,22.925,26.845,14.192,3.09,6.6,5.77,22.331,8.107,-3.963,3.433,9.912,2.021,21.986,11.33,5.808,27.059,17.142,23.478,18.019,7.432,17.871,-1.619,20.523,11.86,-4.749,6.267,9.583,17.38,14.536,2.111,22.308,14.986,4.38,9.816,4.912,21.149,14.984,11.706,16.001,16.752,-0.36,14.435,14.916,39.931,5.282,11.679,0.457,18.566,2.171,5.106,22.827,11.886,10.136,24.588,-1.835,16.14,-1.096,16.899,14.959,25.312,9.645,13.575,-0.49,-3.432,7.803,27.176,8.42,9.094,15.163,4.336,3.691,17.589,9.678,14.829,11.39,5.569,21.21,-1.302,0.834,28.359,23.079,13.864,4.601,9.461,22.167,8.589,5.4,1.33,13.065,3.651,23.525,9.171,7.281,-2.32,11.321,23.386,6.151,4.726,23.704,17.183,10.897,-4.234,22.541,18.42,8.607,2.375,6.758,18.055,4.305,26.726,24.914,5.366,25.52,18.108,-5.522,-1.343,18.065,-1.981,11.255,6.777,18.937,19.526,20.24,10.857,17.181,7.173,-6.115,12.888,15.527,21.11,8.237,2.66,19.217,10.07,23.648,11.47,7.403,4.075,3.83,15.304,15.97,13.837,16.218,12.312,11.09,5.356,21.31,3.726,15.939,1.187,21.319,13.092,15.188,18.63,15.333,-0.459,-1.002,5.401,41.048,21.552,2.616,23.439,10.201,3.888,10.277,16.974,17.841,4.644,12.765,15.695,15.504,12.614,16.234,1.505,2.566,11.336,5.683,39.954,11.472,10.322,1.414],[14.626,26.366,16.618,0.184,9.693,4.485,-3.233,9.842,17.515,-0.286,9.49,22.896,26.93,14.011,3.295,6.712,5.766,22.034,8.21,-4.218,3.418,10.021,2.005,21.916,11.124,5.665,26.941,17.283,23.294,18.028,7.572,17.852,-1.432,20.642,12.01,-4.85,5.936,9.606,17.35,14.719,2.28,22.291,14.863,4.319,9.933,4.876,20.863,14.899,11.752,16.081,16.861,-0.116,14.345,14.951,39.917,5.399,11.462,0.016,18.475,2.0,5.171,22.859,12.266,10.239,24.767,-2.134,16.136,-0.938,16.859,14.588,25.352,9.522,13.414,-0.273,-3.994,7.861,27.365,8.984,9.762,15.76,4.46,4.283,17.44,10.513,14.985,11.268,5.752,21.278,-1.369,0.488,28.219,22.63,14.316,4.431,9.144,22.468,8.554,5.37,1.374,13.02,3.215,23.166,9.215,7.446,-2.345,11.263,23.17,5.821,5.168,23.557,17.374,10.621,-4.675,22.177,18.725,8.689,2.015,6.312,18.536,4.44,26.83,24.394,4.87,25.267,17.779,-5.343,-1.712,18.147,-1.893,11.975,6.817,18.94,19.312,20.645,11.175,17.619,6.708,-6.236,13.569,15.809,20.876,8.204,2.876,19.146,9.449,23.83,11.345,7.324,4.067,3.706,15.099,15.7,13.821,15.88,12.564,11.145,5.755,21.488,4.029,15.347,1.122,21.174,13.237,15.552,18.798,15.029,-0.643,-0.234,5.602,40.341,21.432,2.415,23.594,10.653,4.009,10.234,16.821,18.068,4.617,13.256,15.368,15.685,12.482,16.373,1.773,2.95,11.033,5.848,38.994,11.969,10.341,1.615],[14.887,26.559,16.831,0.063,9.826,4.368,-3.288,9.773,17.469,-0.386,9.81,22.801,26.941,13.959,3.385,6.808,5.81,21.783,8.249,-4.502,3.28,10.179,2.054,21.788,10.921,5.453,26.797,17.321,23.043,18.064,7.697,17.85,-1.402,20.854,12.263,-5.14,5.866,9.592,17.458,14.619,2.255,22.347,14.786,4.344,9.931,4.889,20.929,14.888,11.765,16.158,16.962,0.186,14.346,14.819,39.781,5.397,11.253,-0.225,18.331,1.855,5.193,22.916,12.527,10.378,24.797,-2.098,15.8,-0.958,17.401,14.349,25.335,9.223,13.989,-0.215,-4.421,8.481,27.282,9.256,9.286,15.563,4.0,4.549,17.638,10.336,14.931,11.382,6.049,21.215,-1.49,0.83,28.109,22.378,14.107,4.354,9.523,22.562,8.651,5.488,1.047,12.662,3.545,22.784,9.213,7.729,-2.784,11.384,22.796,5.842,5.389,23.145,17.253,10.403,-4.731,22.152,18.569,8.636,2.001,6.495,18.469,4.576,26.734,24.627,4.609,25.12,17.421,-5.379,-1.404,18.115,-1.467,12.213,6.748,19.146,19.536,21.001,10.783,18.181,6.537,-6.224,13.961,15.827,20.89,8.344,3.155,18.527,9.014,24.044,11.798,7.398,3.938,3.626,15.362,16.015,13.611,15.75,12.877,11.18,5.998,21.275,4.297,15.576,1.276,21.05,13.168,15.298,18.569,14.793,-0.041,-0.74,5.24,40.696,21.298,2.529,23.704,11.044,4.053,9.854,16.997,17.507,5.635,13.651,15.574,15.976,12.464,16.463,2.03,2.118,11.066,5.967,39.211,12.185,10.796,1.551],[15.056,26.584,16.833,0.064,9.901,4.283,-3.378,9.745,17.447,-0.357,9.885,22.631,26.879,13.883,3.297,6.97,5.909,21.538,8.382,-4.726,3.239,10.296,2.109,21.696,10.684,5.286,26.671,17.399,22.815,18.036,7.917,17.833,-1.492,20.997,12.508,-5.315,6.161,9.376,17.502,14.548,2.108,22.43,14.905,4.554,9.86,4.98,21.057,14.902,11.891,16.251,16.851,0.464,14.445,14.727,39.729,5.5,11.166,-0.41,18.158,1.707,5.166,22.967,12.631,10.375,24.884,-1.997,15.865,-0.84,17.49,14.441,25.229,9.142,13.971,-0.394,-4.181,8.479,27.289,9.006,9.543,15.931,3.526,4.129,17.847,9.948,15.322,11.577,5.696,21.017,-1.686,0.828,28.219,22.471,14.066,4.662,9.973,22.521,8.773,5.523,0.896,12.373,3.373,22.342,9.088,7.806,-3.001,11.35,22.755,5.964,4.97,23.026,17.321,10.497,-4.571,22.428,18.551,8.604,2.369,7.197,18.381,4.168,26.549,24.627,4.863,25.022,17.359,-5.692,-0.984,18.173,-0.836,12.044,6.56,19.095,19.433,21.676,10.796,19.057,6.493,-6.514,13.708,15.528,21.096,8.395,2.977,18.211,9.385,23.927,11.617,7.575,3.685,3.767,14.993,15.681,13.763,16.046,12.933,11.246,5.729,21.085,4.253,15.633,0.99,21.096,12.972,15.075,18.731,15.295,0.041,-1.496,4.962,41.153,21.495,2.617,23.896,10.941,4.4,10.356,16.733,17.428,5.444,14.041,16.573,15.594,12.677,16.445,2.371,2.215,11.297,6.113,39.0,12.09,10.694,1.275],[14.985,26.477,16.652,0.175,9.851,4.125,-3.406,9.715,17.493,-0.317,9.866,22.429,26.768,13.811,3.197,7.124,5.948,21.391,8.563,-4.78,3.115,10.402,2.251,21.815,10.53,5.161,26.618,17.575,22.616,18.003,8.202,17.628,-1.494,21.109,12.661,-5.346,6.435,9.152,17.447,14.549,2.0,22.459,15.165,4.778,9.887,4.941,21.104,14.833,12.005,16.404,16.701,0.447,14.69,14.64,39.63,5.664,11.214,-0.602,18.089,1.743,5.292,23.053,12.706,10.409,25.01,-2.161,16.13,-1.205,16.98,14.413,25.207,8.862,13.762,-0.304,-4.055,8.192,27.317,8.663,9.996,16.213,3.763,3.858,17.856,9.674,15.469,11.692,5.701,20.749,-1.532,0.609,28.138,22.494,14.299,4.487,10.017,22.326,8.959,5.314,1.259,12.189,3.498,22.204,8.951,7.744,-3.038,11.628,22.468,6.445,5.03,23.407,17.194,10.713,-4.815,22.72,18.649,8.873,2.468,7.451,18.825,4.456,26.579,24.389,4.503,24.887,17.437,-5.935,-1.186,18.145,-1.127,11.721,6.684,19.434,19.188,22.057,10.642,18.472,7.001,-6.389,13.838,15.775,20.78,8.071,3.102,18.583,9.258,23.693,11.325,7.952,3.97,3.555,14.814,15.303,13.746,15.984,12.784,11.243,5.755,21.333,3.915,16.044,0.63,21.492,12.785,16.086,18.659,15.41,-0.142,-2.059,5.43,40.581,21.41,1.859,24.07,11.083,4.13,10.842,16.461,17.783,4.752,14.007,16.721,15.089,12.87,16.322,2.467,2.726,11.197,6.034,39.229,12.247,10.267,0.738],[14.721,26.445,16.62,0.311,9.806,4.043,-3.101,9.62,17.509,-0.419,9.997,22.241,26.586,13.847,3.115,7.26,5.894,21.6,8.642,-4.742,3.127,10.427,2.497,22.06,10.615,5.161,26.65,17.681,22.477,17.984,8.45,17.422,-1.496,21.209,12.737,-5.377,6.472,8.986,17.22,14.635,1.893,22.29,15.367,4.957,10.0,4.658,21.189,14.796,12.02,16.602,16.638,0.233,14.905,14.559,39.499,5.506,11.284,-0.818,18.156,1.885,5.507,23.067,12.713,10.64,24.807,-2.08,16.485,-0.978,16.406,14.314,25.048,8.682,13.83,-0.215,-3.75,8.454,27.23,8.793,9.668,15.437,3.893,4.03,17.483,8.796,14.877,11.319,5.755,20.662,-1.23,0.843,27.87,21.924,13.698,4.398,10.061,22.278,8.965,5.437,1.483,12.342,2.836,22.345,9.409,7.649,-2.967,11.536,22.18,6.885,4.982,23.788,17.097,10.682,-5.627,22.8,18.785,9.672,2.186,7.521,18.751,4.43,26.395,23.506,4.36,25.068,17.102,-5.98,-1.39,17.765,-1.957,11.859,7.112,19.885,19.1,22.56,10.475,17.776,7.281,-5.903,13.643,15.555,20.85,8.233,3.367,18.773,8.984,24.035,11.45,7.969,4.367,3.472,15.061,15.599,13.889,16.072,12.559,10.782,6.293,21.584,3.858,15.955,1.018,21.339,12.712,15.802,18.236,15.156,0.065,-2.086,5.505,40.151,21.326,2.215,23.469,11.198,4.106,10.43,16.649,17.774,5.067,13.579,16.127,15.636,13.019,16.137,2.07,2.024,11.012,6.214,39.034,12.401,10.544,0.666],[14.361,26.373,16.667,0.432,9.671,4.111,-2.708,9.559,17.442,-0.436,10.2,22.078,26.349,13.771,3.242,7.356,5.787,21.939,8.823,-4.764,3.153,10.446,2.702,22.079,10.852,5.301,26.648,17.686,22.327,17.907,8.629,17.376,-1.714,21.345,12.579,-5.309,6.38,8.908,17.108,14.755,1.849,22.159,15.361,5.168,10.029,4.47,21.297,14.81,11.974,16.438,16.471,0.152,14.903,14.648,39.346,5.452,11.337,-0.945,18.396,1.99,5.614,22.892,12.534,10.72,24.685,-2.269,16.582,-0.205,16.203,14.141,24.639,8.045,13.038,0.088,-3.603,8.727,27.045,9.065,9.926,15.666,4.057,4.223,17.458,8.247,14.921,11.181,5.47,20.657,-0.85,0.547,27.69,21.669,14.212,4.366,9.958,22.665,9.046,5.446,1.411,12.639,2.894,22.837,10.127,7.647,-3.118,11.656,22.19,6.83,4.612,23.566,17.123,10.749,-5.741,22.63,18.814,9.61,2.431,7.498,18.772,4.61,26.247,22.746,4.797,25.078,16.679,-5.712,-1.519,17.759,-2.177,11.861,7.627,19.92,19.032,22.752,10.684,17.007,7.136,-6.255,13.934,16.095,20.956,8.276,3.609,18.661,8.521,23.815,11.549,7.349,3.727,3.553,15.57,15.609,14.105,16.44,12.522,10.359,6.437,21.586,3.577,14.938,1.22,21.234,12.962,15.631,18.412,15.482,-0.273,-1.566,5.356,40.543,21.206,2.684,23.234,11.065,3.867,10.62,16.888,17.536,4.875,13.858,16.29,15.734,13.179,15.927,1.966,2.683,11.193,6.594,38.386,12.579,10.966,0.233],[14.081,26.273,16.742,0.594,9.571,4.301,-2.518,9.405,17.217,-0.529,10.485,21.932,26.091,13.71,3.446,7.456,5.709,22.129,9.146,-4.83,3.173,10.529,2.831,21.905,11.179,5.492,26.658,17.701,22.19,17.788,8.692,17.444,-2.076,21.579,12.39,-5.154,6.164,8.934,17.083,14.905,1.84,22.164,15.398,5.38,9.888,4.345,21.39,14.783,11.922,16.126,16.421,0.293,14.908,14.727,39.231,5.491,11.417,-0.948,18.563,2.363,5.667,22.628,12.443,10.673,24.542,-2.308,16.063,0.146,16.713,14.313,24.551,7.982,13.062,-0.58,-3.179,8.939,27.294,9.58,10.039,15.272,3.921,4.363,17.697,8.103,15.111,10.814,5.558,20.507,-0.635,0.241,27.535,21.348,14.152,4.753,9.78,22.537,9.039,4.82,1.402,13.098,3.417,22.816,10.474,7.551,-3.112,11.708,22.359,6.257,4.674,23.46,17.232,10.785,-5.757,22.549,18.872,8.885,2.563,7.407,18.994,4.282,26.101,22.253,5.151,25.099,16.4,-5.923,-1.619,18.104,-1.997,12.014,7.941,19.673,18.829,22.229,10.729,17.199,7.4,-6.543,13.596,16.434,20.822,7.965,3.83,18.803,8.202,23.556,11.33,7.106,3.286,3.326,15.173,15.353,13.278,16.134,12.588,9.949,6.708,21.42,3.651,14.851,0.751,21.6,12.779,15.751,18.374,15.817,-0.347,-1.338,5.538,40.363,21.363,2.485,23.437,10.82,4.08,11.235,17.172,17.924,4.734,13.891,16.169,15.634,13.125,15.94,2.175,2.315,11.316,6.558,38.622,12.563,10.663,0.444],[13.949,26.089,16.803,0.577,9.533,4.467,-2.396,9.293,16.948,-0.695,10.597,21.84,25.873,13.712,3.618,7.451,5.544,22.229,9.351,-4.888,3.205,10.575,2.894,21.791,11.541,5.72,26.67,17.766,22.093,17.628,8.678,17.5,-2.358,21.691,12.358,-5.093,5.923,9.076,17.118,14.864,1.788,22.185,15.511,5.613,9.602,4.419,21.503,14.677,11.852,15.884,16.506,0.449,14.971,14.589,39.154,5.566,11.459,-0.793,18.59,2.578,5.689,22.495,12.257,10.707,24.609,-2.347,15.549,-0.459,17.374,14.184,24.399,8.624,12.889,-0.252,-2.959,9.172,27.471,9.118,10.258,14.977,3.883,4.418,18.008,8.075,15.295,10.988,6.111,20.297,-0.549,0.602,27.224,21.492,13.595,5.104,10.329,22.184,9.099,5.005,1.437,13.354,3.379,22.402,10.494,7.362,-3.251,11.269,22.156,6.297,5.156,23.438,16.848,11.072,-5.394,22.35,19.059,8.752,2.542,7.323,18.776,4.112,26.265,22.273,4.712,25.169,16.894,-5.963,-1.881,17.823,-2.406,11.978,7.921,19.929,19.118,21.974,10.831,17.463,7.112,-6.315,13.313,15.879,20.779,7.834,3.989,18.833,7.989,23.8,11.082,7.043,3.51,3.135,14.92,16.126,13.202,15.641,12.119,9.772,7.023,21.666,3.381,15.554,0.312,21.461,12.836,15.386,18.292,15.391,0.168,-1.246,5.536,40.397,21.188,2.958,23.693,10.912,4.76,11.332,17.314,18.083,5.409,13.562,15.352,15.772,13.276,16.002,2.094,2.65,11.117,6.276,38.919,12.084,11.087,0.911],[13.861,25.958,16.869,0.414,9.554,4.696,-2.317,9.237,16.8,-0.711,10.584,21.726,25.833,13.717,3.662,7.407,5.395,22.254,9.411,-4.886,3.154,10.533,2.937,21.812,11.783,5.863,26.649,17.876,22.001,17.584,8.641,17.574,-2.467,21.708,12.4,-5.089,5.792,9.078,17.075,14.793,1.661,22.252,15.531,5.881,9.297,4.473,21.618,14.677,11.669,15.593,16.465,0.478,14.979,14.501,39.114,5.851,11.442,-0.583,18.514,2.772,5.593,22.556,11.966,10.615,24.371,-2.452,15.854,-0.305,16.823,13.893,24.123,9.28,13.242,0.389,-2.723,9.112,27.271,8.902,10.488,15.175,4.143,4.127,17.744,8.523,15.256,10.95,6.474,20.188,-0.473,0.377,26.998,21.977,13.898,5.28,10.794,22.087,8.977,5.4,1.464,13.675,3.226,22.567,10.438,7.251,-3.036,11.447,21.571,6.696,5.64,23.509,16.382,11.368,-6.002,22.208,19.021,8.85,3.011,7.499,18.809,4.586,26.467,23.07,4.592,24.906,17.012,-5.465,-2.11,17.245,-2.413,11.957,7.52,19.824,19.407,22.375,10.721,17.529,6.933,-6.537,13.877,15.963,20.866,7.554,4.126,18.439,8.379,23.778,11.091,6.708,3.961,3.261,15.274,16.01,13.718,15.681,11.828,10.015,6.92,21.936,3.701,15.765,0.387,21.455,12.771,14.951,18.241,15.44,0.361,-0.919,5.937,40.521,20.986,2.669,23.495,10.74,4.672,11.314,17.2,17.746,5.929,13.261,15.992,15.339,13.203,15.872,2.372,2.973,11.21,6.148,38.565,11.9,10.948,1.215],[13.909,25.878,16.854,0.315,9.527,5.045,-2.228,9.257,16.788,-0.651,10.568,21.601,25.926,13.776,3.51,7.373,5.345,22.23,9.439,-4.892,3.222,10.532,3.088,21.98,11.833,5.95,26.552,17.96,21.938,17.522,8.526,17.584,-2.345,21.732,12.455,-5.05,5.8,8.903,16.891,14.773,1.444,22.307,15.458,6.13,9.199,4.535,21.688,14.794,11.44,15.564,16.401,0.48,15.07,14.395,39.042,6.161,11.463,-0.278,18.381,2.891,5.532,22.666,11.71,10.497,24.219,-2.408,16.078,0.225,15.894,14.194,24.156,9.206,13.103,-0.127,-2.319,8.85,26.996,9.379,10.31,15.299,4.526,4.047,17.615,9.249,15.185,11.188,6.412,20.027,-0.427,0.122,27.119,21.92,14.125,4.753,10.511,22.195,8.919,5.079,1.362,13.657,2.859,22.561,9.907,7.182,-3.205,11.719,21.77,7.154,5.499,23.717,16.765,11.302,-6.106,22.074,19.127,9.061,3.221,7.624,19.027,4.117,26.311,23.719,5.221,24.872,16.737,-5.513,-2.118,17.781,-2.22,11.955,7.345,19.967,19.218,22.37,10.759,17.919,7.196,-6.538,13.235,16.052,20.934,7.539,4.313,18.43,8.085,23.787,10.901,6.528,3.771,3.184,15.06,15.559,13.443,16.108,11.469,10.105,6.914,22.143,3.888,15.28,0.834,21.586,12.532,15.149,18.028,15.681,-0.249,-1.035,5.95,40.25,20.993,2.886,23.42,10.604,4.962,11.025,16.894,17.614,5.923,12.706,15.891,15.252,13.117,15.993,2.288,2.53,11.085,6.498,38.581,12.179,10.763,0.991],[14.006,25.81,16.815,0.342,9.626,5.275,-2.05,9.409,16.822,-0.618,10.572,21.433,26.057,13.808,3.24,7.399,5.332,22.121,9.283,-4.92,3.226,10.516,3.223,22.21,11.696,6.063,26.432,18.035,22.104,17.436,8.357,17.576,-2.229,21.715,12.391,-5.075,5.825,8.707,16.829,14.675,1.314,22.382,15.392,6.213,9.319,4.565,21.695,14.771,11.162,15.634,16.483,0.256,15.141,14.308,38.911,6.322,11.464,-0.083,18.283,2.842,5.677,22.674,11.371,10.554,24.134,-2.378,16.318,-0.613,15.6,14.365,24.549,8.592,13.041,-0.192,-2.591,9.105,26.963,9.451,10.269,15.405,5.26,4.173,17.854,9.242,15.28,11.336,6.578,20.246,-0.295,0.53,27.413,21.501,13.923,4.433,10.37,22.674,8.825,5.008,1.993,13.412,3.488,21.925,10.106,7.221,-3.1,11.874,21.651,6.933,5.083,23.663,17.094,11.403,-5.649,22.418,19.319,9.074,2.813,7.202,19.18,4.085,25.938,23.941,5.155,25.093,16.5,-5.748,-1.735,18.277,-1.986,11.861,7.443,19.941,19.074,22.622,10.684,17.293,7.152,-6.421,13.173,15.847,20.764,7.571,4.54,18.247,7.703,23.808,10.579,6.671,3.208,3.008,14.955,15.674,13.27,16.439,11.254,9.531,7.333,22.241,4.06,15.48,0.79,21.637,12.625,15.531,18.369,15.659,-0.325,-0.638,5.782,39.876,21.211,3.422,23.279,10.247,5.33,10.111,16.866,17.966,5.725,12.632,15.448,15.558,13.451,15.713,2.155,3.207,11.103,6.553,38.801,12.293,11.156,1.194],[13.942,25.919,16.954,0.366,9.788,5.365,-1.945,9.59,17.034,-0.584,10.732,21.264,26.149,13.687,3.189,7.39,5.446,21.925,9.242,-4.93,3.342,10.558,3.401,22.229,11.569,6.058,26.457,18.172,22.326,17.462,8.092,17.642,-1.995,21.634,12.243,-5.284,5.872,8.569,16.825,14.591,1.254,22.469,15.401,6.16,9.445,4.519,21.674,14.644,10.763,15.716,16.557,0.111,15.122,14.551,38.769,6.373,11.561,0.113,18.356,2.913,5.815,22.571,11.09,10.579,24.292,-2.182,16.269,-0.569,15.676,14.135,24.551,8.469,13.262,0.324,-2.982,9.597,27.096,8.661,10.26,15.678,5.131,3.743,17.523,9.168,15.246,11.29,7.029,20.185,-0.11,0.489,27.456,21.667,13.968,4.436,10.401,22.933,8.665,5.598,2.236,13.081,3.296,22.053,10.342,7.212,-3.22,11.549,21.853,6.219,5.486,23.796,16.611,11.466,-5.721,22.647,19.185,8.803,2.433,6.591,19.241,4.203,25.997,24.15,4.806,24.836,16.464,-5.704,-2.065,17.993,-1.964,12.065,7.716,19.892,19.139,22.59,10.281,17.211,7.159,-6.449,13.016,15.592,20.874,7.723,4.802,18.312,7.708,23.65,10.389,6.414,2.934,2.949,15.198,15.718,13.035,16.16,11.008,8.918,7.372,21.885,4.124,15.479,-0.019,21.608,12.623,14.878,18.459,15.963,-0.122,-0.446,5.949,40.008,21.048,3.37,23.114,9.786,5.125,9.996,16.719,17.924,5.956,12.488,16.048,15.528,13.557,15.791,1.925,3.222,11.12,6.602,38.349,12.38,11.007,1.217],[13.789,26.217,17.118,0.425,10.067,5.255,-2.034,9.615,17.312,-0.586,10.899,21.263,26.118,13.587,3.357,7.215,5.539,21.753,9.466,-4.967,3.443,10.463,3.554,22.061,11.54,6.015,26.44,18.28,22.559,17.468,7.782,17.676,-1.868,21.495,12.125,-5.454,5.883,8.467,16.876,14.551,1.11,22.545,15.337,6.102,9.427,4.569,21.602,14.436,10.348,15.745,16.597,0.258,15.193,14.86,38.595,6.312,11.779,0.296,18.361,3.083,5.777,22.368,10.971,10.556,24.562,-2.384,16.454,0.227,16.05,13.775,24.384,9.213,13.105,0.208,-2.707,9.468,27.302,8.623,10.326,15.56,4.857,3.209,17.285,8.571,15.26,11.001,6.799,19.736,-0.19,0.045,27.306,21.966,13.627,4.747,10.834,22.357,8.312,5.585,2.322,12.989,3.352,22.713,10.095,7.449,-3.148,11.792,22.234,6.266,5.604,23.746,16.416,11.693,-5.914,22.097,19.342,8.994,2.717,6.292,19.439,4.222,26.444,24.272,4.792,24.543,16.743,-5.729,-1.687,17.804,-1.463,12.005,7.131,19.707,19.423,21.76,10.113,17.68,7.251,-6.844,12.842,15.573,21.001,8.053,4.501,18.543,7.495,23.558,9.992,6.37,3.183,2.646,14.814,15.507,12.943,16.139,10.977,8.669,7.422,21.636,4.078,15.313,-0.344,21.352,12.986,15.312,18.265,16.099,-0.329,-0.622,6.055,40.022,20.852,3.032,23.468,9.539,5.154,10.987,17.12,18.612,6.537,12.34,15.843,15.323,13.381,16.325,2.096,2.567,10.928,6.872,38.114,12.362,10.804,1.356],[13.766,26.532,17.199,0.605,10.21,5.013,-2.086,9.73,17.562,-0.61,10.874,21.412,26.075,13.518,3.402,7.006,5.517,21.652,9.761,-4.926,3.439,10.281,3.609,21.877,11.638,6.069,26.333,18.304,22.874,17.486,7.438,17.693,-1.836,21.258,12.101,-5.578,5.893,8.266,17.101,14.47,0.856,22.561,15.197,6.054,9.306,4.692,21.503,14.168,9.975,15.752,16.741,0.379,15.331,15.032,38.291,6.338,12.02,0.453,18.511,3.093,5.633,22.157,10.95,10.66,24.94,-2.364,16.814,0.543,17.035,13.609,24.26,9.767,12.877,0.204,-2.821,9.347,27.902,9.027,10.573,15.406,4.769,3.694,17.883,8.47,15.531,11.281,6.334,19.791,-0.255,-0.276,27.134,21.759,13.25,4.884,11.022,21.895,8.27,5.085,2.224,13.197,3.452,22.478,10.037,7.284,-3.102,11.848,22.229,6.574,5.468,23.565,16.396,12.198,-6.047,21.293,19.734,8.906,3.097,6.471,19.387,4.434,26.402,24.18,4.735,24.667,16.625,-5.768,-1.407,17.723,-1.379,11.296,6.348,19.485,19.355,21.619,10.167,17.54,7.197,-7.057,12.755,15.973,21.348,7.46,4.371,18.581,7.137,24.218,9.911,6.255,3.639,2.683,14.59,15.591,12.997,16.283,10.595,8.971,7.126,21.744,4.106,15.069,0.13,21.327,13.308,15.386,18.385,15.776,-0.04,-0.107,6.357,39.619,20.758,3.087,23.612,9.78,5.026,11.119,16.851,18.273,6.357,12.058,15.297,15.619,13.622,16.709,2.284,3.353,11.257,6.553,38.621,12.082,11.308,1.463],[13.852,26.932,17.245,0.897,10.331,4.654,-2.11,9.996,17.969,-0.596,10.828,21.651,25.937,13.378,3.268,6.922,5.436,21.479,9.96,-4.858,3.486,10.21,3.6,21.735,11.851,6.115,26.221,18.282,23.093,17.521,7.24,17.674,-1.752,21.102,12.154,-5.713,5.857,8.043,17.211,14.338,0.727,22.76,15.131,5.959,9.076,4.684,21.529,13.983,9.743,15.753,16.907,0.421,15.298,15.243,37.966,6.342,12.254,0.653,18.41,3.08,5.573,22.153,10.899,10.651,25.254,-2.461,16.87,0.143,17.583,13.393,24.458,9.507,13.179,-0.103,-2.692,9.511,28.091,9.306,10.336,15.395,4.738,4.233,18.079,8.979,15.729,11.599,6.425,19.987,-0.274,-0.026,27.303,21.845,13.839,4.435,10.793,21.948,8.119,5.057,2.178,13.059,3.009,22.267,10.425,7.288,-3.124,11.18,22.513,6.302,5.642,23.343,16.855,12.827,-5.669,21.58,19.335,8.525,3.196,6.534,19.225,4.253,25.806,24.449,4.874,24.623,16.286,-5.776,-1.749,18.175,-2.027,11.047,5.994,19.309,19.078,21.717,9.55,17.779,7.233,-6.88,12.614,16.069,21.356,7.32,4.335,18.75,7.157,24.325,9.402,6.328,4.226,2.556,14.887,15.566,12.566,16.055,10.168,9.746,7.16,21.677,4.366,14.586,0.173,21.487,13.485,15.041,18.863,15.996,0.248,-0.15,6.309,39.264,20.734,3.214,22.601,9.639,5.21,10.483,16.922,17.851,5.816,12.053,15.405,16.346,13.564,16.706,2.228,3.534,11.879,5.877,38.39,12.315,11.653,1.526],[13.967,27.227,17.233,1.018,10.49,4.445,-2.056,10.262,18.403,-0.642,10.776,21.881,25.846,13.258,3.059,6.741,5.506,21.332,10.005,-4.664,3.468,10.073,3.555,21.679,12.044,6.125,26.063,18.15,23.252,17.581,7.229,17.656,-1.781,20.971,12.23,-5.745,5.772,7.905,17.121,14.203,0.729,22.927,15.135,5.841,9.081,4.667,21.637,13.853,9.547,15.842,17.085,0.367,15.155,15.559,37.729,6.278,12.49,0.818,18.18,3.089,5.519,22.222,10.827,10.581,25.491,-2.452,17.191,0.617,17.274,13.575,24.317,9.605,13.406,0.277,-2.703,9.368,28.029,9.315,10.352,15.59,4.182,3.72,18.044,9.881,15.591,11.709,6.187,20.309,-0.315,0.261,27.319,22.115,13.75,3.896,10.885,22.348,7.899,5.175,2.104,13.244,3.359,22.51,11.115,7.276,-3.2,11.408,23.079,6.015,6.051,22.996,17.474,13.029,-5.629,22.3,19.157,8.696,3.143,6.224,19.38,4.412,25.473,24.818,4.857,24.572,16.15,-5.967,-1.574,18.403,-1.466,11.882,6.062,19.445,19.073,21.611,9.329,17.707,7.243,-7.089,12.188,15.377,21.317,7.209,4.202,18.845,6.673,24.132,9.148,6.166,3.788,2.494,14.382,15.476,12.376,16.06,10.509,9.879,7.294,21.779,3.74,14.402,-0.2,21.525,13.83,15.105,19.003,16.234,0.014,-0.587,5.408,39.096,20.63,3.081,21.907,9.047,5.332,10.058,16.609,17.905,6.204,11.84,15.811,16.526,13.545,16.539,2.295,3.082,12.1,6.272,37.515,12.189,11.687,1.478],[14.054,27.324,17.233,1.109,10.68,4.351,-1.89,10.51,18.604,-0.648,10.736,22.035,25.85,13.244,2.747,6.458,5.634,21.408,9.967,-4.552,3.479,9.983,3.402,21.72,12.277,6.138,26.026,18.084,23.51,17.745,7.248,17.798,-1.671,20.855,12.384,-5.888,5.676,7.822,16.847,14.017,0.797,22.95,15.008,5.794,9.13,4.511,21.75,13.806,9.404,16.081,17.111,0.253,15.167,15.85,37.506,6.249,12.762,0.778,17.897,3.016,5.365,22.142,10.721,10.577,25.574,-2.429,17.668,0.696,17.328,13.445,24.148,9.872,13.237,0.718,-2.818,9.1,28.365,9.183,10.585,15.78,3.77,2.816,17.703,10.639,15.326,11.728,5.866,20.288,-0.056,-0.023,27.015,22.134,12.977,3.774,11.009,22.396,7.533,5.226,1.791,13.682,3.216,22.332,11.013,7.417,-2.801,11.733,22.724,5.818,5.436,23.032,17.547,12.382,-5.561,22.661,19.637,8.852,2.987,6.184,19.141,4.811,25.886,25.082,4.695,24.366,16.402,-5.949,-0.972,18.253,-1.871,12.376,6.384,19.343,18.828,21.439,9.438,17.035,7.101,-7.057,12.645,15.5,21.22,7.81,4.241,18.468,6.669,24.248,9.288,5.953,4.09,2.391,14.047,15.343,12.427,16.388,10.817,9.78,7.206,21.8,3.624,14.797,-0.385,21.665,13.998,15.41,18.749,15.857,-0.311,-0.406,5.905,39.064,20.566,2.824,22.708,8.922,5.179,9.858,16.282,18.089,6.561,11.548,15.14,16.725,13.543,16.685,2.001,3.671,11.72,6.138,37.087,11.994,11.917,1.473],[14.1,27.4,17.243,1.091,10.814,4.382,-1.885,10.796,18.541,-0.607,10.676,21.978,25.91,13.078,2.328,6.097,5.667,21.566,9.809,-4.571,3.455,9.987,3.231,21.815,12.538,6.005,26.017,18.224,23.681,17.975,7.21,17.942,-1.576,20.821,12.635,-6.029,5.664,7.892,16.546,13.862,0.772,22.869,14.846,5.941,9.195,4.263,21.872,13.832,9.343,16.269,17.011,0.021,15.265,16.091,37.3,6.285,12.969,0.694,17.69,3.033,5.22,22.019,10.548,10.548,25.741,-2.531,17.513,0.701,17.632,13.196,24.282,10.371,13.31,0.502,-2.397,9.234,28.418,9.296,10.76,15.606,4.389,2.359,17.702,11.364,15.48,11.574,5.295,20.212,0.049,-0.125,27.353,22.24,13.587,3.776,11.004,22.125,7.328,5.673,1.824,14.209,2.997,22.155,10.421,7.403,-2.798,11.652,22.911,5.613,5.252,23.285,17.496,12.12,-5.331,22.526,19.573,8.971,2.719,6.185,19.038,4.306,26.181,25.338,4.535,24.442,16.725,-5.763,-1.011,18.872,-1.585,12.148,6.79,19.188,19.168,21.456,9.477,17.071,6.884,-7.397,13.504,15.686,21.546,8.333,4.281,18.164,6.867,24.436,9.218,6.185,3.996,2.548,14.068,15.03,12.387,16.05,11.07,9.261,7.371,21.762,4.108,14.726,-0.159,21.69,14.305,15.501,18.656,15.566,-0.225,-0.04,5.922,38.806,20.512,3.109,23.425,9.067,4.888,10.427,15.925,17.888,6.171,11.776,15.762,16.762,13.396,17.165,1.869,3.581,11.823,5.672,36.746,12.164,12.116,1.159],[14.166,27.485,17.339,1.102,10.787,4.617,-1.938,11.142,18.443,-0.689,10.675,22.024,26.133,12.814,2.024,5.672,5.681,21.539,9.52,-4.706,3.286,10.089,3.165,21.894,12.799,5.845,25.938,18.43,23.742,18.029,7.175,18.066,-1.553,20.971,12.92,-6.162,5.76,8.003,16.582,13.893,0.721,22.841,14.679,6.182,9.234,4.035,21.994,13.72,9.351,16.348,17.046,-0.114,15.313,16.305,37.055,6.267,13.158,0.664,17.625,3.153,4.998,21.967,10.405,10.601,25.783,-2.473,17.183,0.005,17.289,13.131,24.53,10.619,13.729,0.502,-2.565,9.099,28.18,9.853,10.439,15.589,4.557,1.995,17.779,11.816,15.751,11.858,5.178,20.436,-0.161,-0.209,27.472,21.723,13.301,3.495,10.764,22.073,7.293,6.025,1.893,14.425,2.914,22.856,9.877,7.413,-2.897,11.62,23.51,5.338,5.449,23.446,17.816,12.693,-5.204,21.984,19.632,8.713,2.351,6.065,19.532,3.949,25.802,25.269,4.54,24.165,17.368,-6.043,-1.664,18.895,-1.5,12.34,6.105,19.139,19.592,21.508,9.863,17.296,6.974,-7.387,14.04,15.089,21.414,8.599,4.415,18.356,7.198,24.451,9.183,6.287,3.54,2.585,13.718,15.543,12.256,15.984,10.97,8.879,7.394,21.989,3.827,14.662,0.069,21.785,14.573,15.022,18.937,15.794,-0.272,-0.697,5.465,38.674,20.47,3.232,23.222,9.339,5.205,10.677,15.736,17.658,6.089,11.938,16.915,17.194,13.583,16.841,1.854,3.513,11.924,5.523,36.453,11.715,12.047,1.198],[14.272,27.47,17.552,1.22,10.832,4.941,-2.005,11.414,18.199,-0.937,10.696,22.223,26.277,12.59,2.014,5.288,5.807,21.42,9.2,-4.764,3.036,10.24,3.187,21.85,13.021,5.836,25.738,18.564,23.759,17.977,7.055,18.094,-1.689,21.087,13.193,-6.239,5.912,8.151,16.858,14.017,0.753,22.733,14.458,6.2,9.299,3.822,22.202,13.589,9.325,16.495,17.163,-0.055,15.424,16.491,36.875,6.244,13.242,0.574,17.695,3.272,4.743,22.008,10.38,10.71,25.697,-2.833,17.214,-0.112,17.239,12.467,24.68,10.731,13.711,0.122,-3.078,9.086,28.277,9.865,10.31,15.913,4.265,2.215,17.912,11.914,15.703,11.839,5.554,20.626,-0.308,-0.431,27.474,21.848,12.701,3.377,10.918,22.546,6.801,5.783,1.909,14.353,2.924,22.548,9.425,7.477,-2.976,11.373,23.407,5.051,4.895,23.128,17.627,13.685,-5.605,21.709,19.745,8.57,2.457,6.558,19.916,4.103,25.78,25.425,4.651,24.149,17.975,-6.351,-1.113,18.404,-1.724,12.859,5.643,19.325,19.467,21.973,9.92,17.167,7.233,-7.406,13.91,14.787,21.171,8.071,4.408,18.449,7.446,24.111,9.052,5.887,3.648,2.503,13.667,15.692,12.438,15.825,10.992,8.96,7.357,22.167,2.893,14.649,-0.158,22.163,14.682,15.027,18.894,16.23,-0.55,-0.819,5.732,38.444,20.277,3.288,22.412,9.057,5.119,10.028,16.021,17.619,6.655,11.501,16.115,17.437,13.593,16.698,1.839,3.885,12.562,4.886,36.236,11.742,12.107,1.302],[14.325,27.476,17.76,1.308,10.897,5.168,-2.011,11.325,17.999,-1.299,10.732,22.34,26.369,12.397,2.116,4.952,6.008,21.402,9.011,-4.895,2.814,10.461,3.221,21.838,13.211,5.767,25.588,18.598,23.716,17.907,7.079,17.858,-1.854,21.259,13.39,-6.318,5.889,8.303,16.929,14.055,0.862,22.51,14.265,6.021,9.223,3.67,22.567,13.575,9.294,16.607,17.243,-0.066,15.431,16.685,36.734,6.288,13.341,0.461,17.79,3.403,4.694,21.97,10.308,10.715,25.572,-3.131,16.986,0.972,17.01,12.527,24.842,11.12,13.895,0.504,-3.088,9.159,27.967,9.577,10.897,15.94,4.833,2.582,18.354,12.012,16.279,11.692,6.351,20.695,-0.195,-0.422,27.891,22.677,12.774,3.258,10.445,22.994,6.609,5.915,1.741,14.467,2.467,22.222,9.559,7.813,-3.209,11.112,23.126,4.701,4.961,22.917,17.665,13.648,-5.464,21.778,19.784,8.831,2.828,6.378,19.756,3.875,25.515,25.526,4.494,24.337,18.11,-6.195,-1.186,18.381,-1.533,12.744,5.672,19.409,19.406,21.847,10.178,17.174,7.126,-7.448,13.786,14.684,20.724,7.657,4.4,18.505,7.729,23.734,8.857,6.302,3.622,2.532,13.807,15.251,12.174,15.666,10.52,9.386,7.303,22.51,2.375,14.304,-0.298,22.199,15.041,15.966,18.941,16.344,-0.733,-0.764,5.22,38.383,20.421,3.382,22.334,8.701,5.135,9.982,16.112,17.759,6.252,11.187,15.504,17.446,14.049,17.239,1.73,3.764,12.542,4.786,36.106,12.113,11.975,1.638],[14.278,27.395,18.009,1.512,10.876,5.389,-1.923,11.07,18.041,-1.608,10.899,22.446,26.521,12.413,1.998,4.746,6.289,21.496,8.95,-4.897,2.728,10.632,3.204,21.95,13.277,5.658,25.527,18.614,23.592,17.891,7.132,17.681,-1.784,21.294,13.463,-6.482,5.705,8.501,16.605,14.004,1.013,22.161,14.224,5.757,9.041,3.7,22.877,13.534,9.133,16.7,17.367,-0.243,15.391,16.947,36.7,6.406,13.319,0.483,17.743,3.414,4.763,22.031,10.14,10.664,25.738,-3.128,16.925,1.298,16.5,12.936,24.967,10.928,14.261,0.245,-2.773,9.155,28.233,9.588,10.924,15.762,4.914,2.958,18.304,12.332,16.62,11.953,6.992,20.832,-0.245,-0.466,27.918,22.764,13.097,3.074,10.256,22.645,6.545,6.218,1.457,14.863,2.343,22.341,9.715,8.054,-3.344,11.941,23.191,4.717,5.227,23.245,17.705,12.481,-5.859,22.469,19.95,9.177,3.18,5.989,19.559,3.504,25.443,25.436,4.466,23.927,17.907,-6.523,-1.855,18.464,-1.914,12.79,5.876,20.162,19.11,21.29,9.936,17.169,6.836,-7.232,13.689,14.711,20.751,7.157,4.477,18.32,7.327,23.664,9.586,6.421,3.228,2.811,13.667,15.331,11.949,15.555,10.221,9.619,7.248,22.803,2.836,14.409,0.2,22.33,15.125,16.045,19.371,16.461,-0.675,-0.553,5.348,38.066,20.355,3.148,22.692,8.511,5.346,10.777,16.137,17.971,5.905,11.195,15.629,17.043,13.873,17.063,1.636,3.875,12.038,4.686,36.121,11.605,12.21,2.06],[14.299,27.398,18.142,1.58,11.0,5.501,-1.874,10.821,17.963,-1.706,11.117,22.521,26.697,12.646,1.849,4.689,6.402,21.601,9.14,-4.947,2.736,10.836,3.138,22.049,13.146,5.622,25.471,18.642,23.493,17.884,7.098,17.672,-1.633,21.417,13.458,-6.732,5.526,8.564,16.22,13.932,1.24,21.855,14.088,5.614,8.823,3.808,23.044,13.577,9.023,16.735,17.586,-0.448,15.335,16.961,36.672,6.579,13.347,0.623,17.671,3.326,4.786,22.062,9.932,10.654,25.705,-3.568,17.663,0.448,16.636,12.795,25.06,10.448,13.613,0.514,-2.811,9.564,28.472,9.28,10.631,15.976,4.831,2.754,18.365,12.2,16.479,11.897,6.833,20.934,0.001,-0.869,27.772,22.589,13.246,2.868,10.456,21.89,6.315,6.608,1.571,14.865,2.52,22.558,9.172,8.039,-3.18,12.429,23.165,4.808,5.162,23.267,17.677,11.875,-5.881,22.419,20.189,9.557,3.576,6.201,19.442,3.598,25.783,25.204,4.412,23.922,17.784,-6.863,-1.576,18.348,-1.609,13.25,6.128,19.833,18.947,21.778,9.614,16.835,6.914,-7.659,14.036,14.838,20.484,7.156,4.364,17.966,6.851,23.354,9.671,5.797,3.351,3.048,13.584,15.249,12.321,15.452,10.216,9.553,7.298,22.882,3.229,14.449,0.456,22.79,15.131,15.476,19.464,16.044,-0.663,0.233,5.106,38.177,20.33,3.852,22.942,8.512,5.187,10.553,15.906,18.248,6.641,11.108,16.058,17.702,13.482,17.351,1.282,3.73,12.244,4.789,36.193,11.872,12.543,2.03],[14.397,27.544,18.031,1.397,11.042,5.451,-1.754,10.549,17.965,-1.741,11.19,22.496,26.86,12.862,1.747,4.741,6.264,21.641,9.405,-5.032,2.852,10.95,3.134,21.942,12.872,5.671,25.571,18.82,23.452,17.898,7.078,17.746,-1.335,21.711,13.544,-6.983,5.484,8.536,16.063,13.899,1.295,21.835,13.772,5.621,8.633,3.979,23.011,13.71,9.027,16.62,17.839,-0.611,15.28,16.816,36.624,6.811,13.434,0.775,17.657,3.336,4.671,22.083,9.715,10.863,25.618,-3.557,17.387,-0.041,16.495,12.326,25.129,10.437,13.836,1.453,-2.73,9.518,28.25,8.953,11.258,16.247,4.739,2.183,18.486,12.296,16.354,11.789,6.61,20.917,0.031,-0.924,28.148,22.265,13.515,2.963,10.949,22.093,6.414,6.613,1.439,14.379,2.04,22.489,9.057,7.928,-3.245,12.505,23.203,4.496,5.198,23.055,17.612,11.853,-5.54,21.504,20.155,9.697,4.058,6.129,19.706,3.506,25.705,25.147,4.672,24.049,17.993,-6.325,-1.336,18.139,-1.869,12.891,5.883,19.805,19.316,22.291,9.08,16.368,7.189,-8.173,14.252,14.516,20.042,7.016,4.15,17.637,7.082,23.032,9.097,5.756,3.741,3.031,13.781,14.832,11.831,15.413,10.349,9.523,7.101,22.567,2.734,14.247,0.326,22.974,15.283,15.611,19.44,16.143,-0.97,0.352,4.977,38.13,20.458,3.493,22.944,8.673,5.428,10.248,15.76,18.296,6.456,11.132,16.76,18.25,13.817,17.4,1.224,3.205,12.605,4.811,35.835,12.163,12.543,2.161],[14.756,27.594,17.82,1.305,10.94,5.254,-1.681,10.393,17.917,-1.751,11.362,22.368,26.804,12.943,1.627,4.789,6.198,21.548,9.606,-5.042,2.867,10.892,3.217,21.775,12.477,5.774,25.732,19.088,23.443,17.95,6.975,17.835,-1.114,22.028,13.611,-7.079,5.576,8.446,15.992,13.957,1.207,21.837,13.49,5.632,8.37,4.15,22.863,13.6,9.105,16.551,18.037,-0.615,15.362,16.691,36.512,6.88,13.396,0.943,17.838,3.284,4.452,22.12,9.603,11.17,25.872,-3.542,16.723,-0.25,16.802,12.327,25.326,10.393,14.303,1.942,-2.733,9.754,28.141,8.855,10.897,16.313,4.9,1.776,18.251,12.231,16.078,11.784,6.986,20.716,0.156,-0.74,28.33,22.651,13.652,3.253,11.054,22.272,6.631,5.781,1.486,14.314,2.583,22.153,9.903,8.08,-3.167,12.417,23.109,4.755,5.318,23.205,17.841,11.76,-5.463,21.244,20.23,9.466,3.756,6.1,20.325,3.742,25.826,25.221,4.83,24.45,18.193,-6.22,-1.414,18.207,-1.303,12.889,5.35,20.351,19.355,22.322,9.183,16.41,7.094,-7.957,14.022,13.664,20.167,7.413,3.926,17.647,7.251,23.188,9.015,6.091,3.773,2.631,13.62,15.02,11.885,15.121,10.577,9.219,6.79,22.746,2.629,14.528,0.19,22.376,15.452,15.45,19.749,16.195,-1.333,-0.006,5.442,37.918,20.539,3.365,22.12,8.146,6.069,10.837,16.142,17.425,6.361,10.989,16.792,18.106,13.848,17.086,1.174,3.985,12.401,4.186,35.396,11.753,12.37,2.101],[15.161,27.621,17.688,1.523,10.899,5.059,-1.669,10.284,17.773,-1.783,11.57,22.358,26.667,12.88,1.478,4.847,6.171,21.355,9.72,-4.981,2.977,10.716,3.293,21.629,12.215,5.929,25.947,19.36,23.384,18.074,6.697,17.85,-1.017,22.173,13.51,-6.972,5.649,8.362,15.954,14.029,1.053,21.753,13.303,5.591,8.134,4.318,22.759,13.46,9.244,16.433,18.092,-0.556,15.392,16.593,36.301,6.951,13.266,1.003,18.066,3.378,4.273,22.114,9.587,11.24,25.824,-3.526,16.693,0.138,17.682,12.982,25.095,10.209,14.303,1.564,-2.59,10.139,28.312,8.597,10.604,16.868,4.711,1.751,17.893,11.957,16.126,11.45,6.768,20.683,0.209,-0.654,28.007,22.726,13.611,3.234,11.194,22.001,6.691,5.689,1.463,13.878,2.88,22.29,10.476,7.792,-3.177,12.067,23.078,4.955,5.127,23.241,18.053,11.589,-5.666,21.657,20.837,9.205,2.958,5.947,20.092,4.014,26.158,25.238,5.029,24.709,17.926,-6.992,-1.439,18.328,-0.751,13.214,5.366,20.256,19.34,22.843,9.093,16.849,6.914,-8.189,14.001,13.524,20.717,6.989,3.858,17.495,7.499,23.369,9.469,6.399,4.345,2.711,13.674,15.47,12.21,15.007,11.06,8.891,6.669,22.825,2.845,14.286,0.403,22.193,14.998,15.647,19.777,16.488,-1.465,0.081,5.254,37.758,20.708,3.784,21.545,7.911,5.579,11.263,16.479,17.613,6.851,10.708,16.662,17.884,14.046,17.388,1.281,3.635,12.607,4.291,35.679,12.172,12.223,2.354],[15.414,27.548,17.718,1.931,10.846,4.908,-1.58,10.082,17.801,-1.812,11.636,22.547,26.565,12.806,1.407,4.967,6.063,21.221,9.796,-5.018,3.183,10.462,3.249,21.468,12.165,6.065,26.193,19.54,23.434,18.205,6.436,17.889,-0.966,22.157,13.444,-7.023,5.67,8.204,15.955,14.177,1.009,21.776,13.332,5.495,7.871,4.498,22.841,13.309,9.491,16.419,18.012,-0.521,15.395,16.515,36.152,7.073,13.223,0.992,18.276,3.485,4.112,22.097,9.748,11.191,25.891,-3.664,16.754,0.471,17.309,13.102,24.811,9.956,14.61,1.195,-2.242,10.009,28.519,8.658,11.408,17.183,4.28,1.746,17.57,11.787,16.12,11.606,6.035,20.798,0.165,-1.126,27.673,22.455,13.661,2.898,11.342,21.853,6.846,6.195,1.876,13.716,2.647,22.193,10.095,7.418,-3.187,11.965,22.773,4.814,5.518,22.87,17.747,11.115,-5.57,21.634,21.049,9.382,2.54,5.369,20.335,3.843,26.427,25.224,5.358,24.865,17.562,-6.576,-1.12,17.749,-1.459,12.652,5.521,20.548,19.291,22.492,8.992,16.909,6.967,-7.72,13.971,13.869,20.323,6.599,4.104,17.072,7.934,23.319,9.587,6.588,4.372,2.709,14.0,15.555,11.744,15.031,11.177,8.669,6.872,22.055,3.066,13.942,0.625,22.171,14.658,15.358,19.911,16.816,-0.625,0.374,4.591,37.675,20.766,3.562,22.012,7.982,5.502,11.078,16.59,18.762,6.793,10.11,16.144,17.394,14.353,17.714,1.382,3.603,12.638,4.567,35.428,12.302,12.472,2.433],[15.557,27.394,17.733,2.238,10.778,4.807,-1.367,9.875,17.841,-1.955,11.716,22.617,26.537,12.813,1.368,5.186,5.954,21.191,9.644,-5.083,3.117,10.284,3.264,21.269,12.097,6.234,26.451,19.643,23.496,18.255,6.319,17.738,-0.953,22.147,13.405,-6.947,5.722,8.125,15.916,14.293,1.126,21.813,13.591,5.34,7.671,4.59,22.949,13.135,9.629,16.386,17.927,-0.494,15.431,16.498,36.144,7.12,13.337,0.916,18.506,3.495,3.979,22.148,9.872,11.095,25.605,-3.803,16.743,1.105,16.786,12.47,24.867,9.488,14.634,1.194,-1.971,9.981,28.178,8.433,11.109,17.022,4.466,2.09,17.598,11.957,16.057,12.003,5.392,21.233,0.515,-1.278,27.731,22.391,13.924,2.627,11.14,21.861,7.055,6.423,1.965,13.183,3.017,22.122,9.887,7.406,-3.486,12.114,22.945,4.944,5.981,22.659,17.528,10.999,-5.553,21.19,20.82,9.379,2.751,5.038,20.549,4.063,26.329,25.38,5.222,24.784,17.441,-6.144,-0.963,17.785,-1.423,12.92,5.124,20.365,19.068,21.791,9.22,16.868,7.156,-8.218,14.312,14.265,20.29,6.529,4.659,16.893,8.169,23.207,9.788,6.205,3.943,2.541,13.705,15.554,11.734,15.015,11.291,8.462,7.095,22.649,3.023,13.592,0.437,22.214,14.803,15.71,19.596,16.712,-0.729,0.126,4.196,37.295,20.535,3.543,22.183,8.102,6.321,10.759,16.743,19.418,6.865,10.519,15.923,16.793,14.13,17.619,1.347,3.8,12.344,4.497,35.353,11.802,12.647,2.642],[15.603,27.311,17.621,2.402,10.819,4.764,-1.067,9.604,17.792,-2.193,11.69,22.527,26.613,12.854,1.432,5.274,6.01,21.248,9.25,-5.147,2.947,10.227,3.368,21.151,11.883,6.375,26.516,19.578,23.495,18.291,6.144,17.437,-0.945,22.022,13.595,-6.903,5.781,8.26,15.841,14.292,1.398,21.859,13.895,5.229,7.655,4.414,22.948,12.922,9.752,16.436,17.741,-0.701,15.526,16.425,36.194,7.264,13.411,0.789,18.718,3.665,3.994,22.294,9.919,10.861,25.602,-4.049,17.295,1.493,16.625,12.625,25.043,9.411,14.708,1.441,-1.9,10.062,27.984,7.845,10.661,17.212,4.446,2.391,17.951,11.678,16.079,11.948,5.824,21.012,0.903,-1.241,28.014,22.478,13.786,2.866,10.799,21.751,7.094,5.708,2.135,13.24,2.934,22.199,9.776,7.88,-3.931,11.988,23.145,5.12,5.952,22.538,17.594,10.857,-5.942,21.325,20.763,9.421,3.157,5.533,20.68,4.028,26.157,25.395,5.464,25.202,17.566,-6.662,-0.846,18.09,-0.764,13.383,4.777,20.489,19.048,21.915,9.565,16.447,7.36,-7.778,14.583,14.594,20.566,6.479,5.598,17.45,8.373,23.226,9.775,6.245,3.933,2.043,14.234,15.346,11.636,15.181,11.01,8.747,6.833,22.856,3.0,13.77,0.436,22.393,14.631,15.751,19.516,16.113,-1.439,-0.047,4.022,37.82,20.643,3.4,21.966,8.198,5.924,10.401,16.896,19.454,6.798,11.088,16.21,17.585,13.829,17.415,1.124,3.497,12.525,4.355,35.195,11.634,12.693,2.537],[15.665,27.344,17.549,2.511,10.737,4.862,-0.798,9.393,17.675,-2.258,11.498,22.406,26.677,12.876,1.634,5.258,6.16,21.353,8.832,-5.367,2.798,10.211,3.571,21.178,11.714,6.421,26.453,19.542,23.392,18.26,5.975,17.292,-0.878,21.988,13.958,-6.895,5.87,8.63,15.98,14.256,1.548,21.864,14.021,5.303,7.737,4.163,22.841,12.85,9.731,16.518,17.538,-1.09,15.525,16.296,36.276,7.269,13.443,0.637,18.851,3.751,3.957,22.438,9.942,10.619,25.814,-3.979,17.518,1.461,17.098,12.834,25.094,9.508,14.611,1.534,-1.558,9.932,28.026,7.718,11.146,17.168,4.181,2.15,17.969,11.874,16.073,11.721,6.565,20.827,0.914,-1.271,28.14,22.633,13.875,3.061,10.292,21.515,6.964,5.547,2.174,13.132,2.911,22.325,9.406,7.832,-4.073,12.076,23.041,5.479,6.328,22.769,17.887,10.821,-6.214,21.391,20.66,9.217,3.286,5.516,20.806,3.891,26.481,25.225,5.92,25.267,18.201,-6.748,-1.164,17.589,-0.785,13.196,4.454,20.252,18.782,22.078,10.006,15.73,7.281,-8.267,14.439,14.723,20.826,6.743,6.107,17.82,8.418,23.547,10.173,6.623,4.035,2.108,14.261,15.535,11.198,15.579,10.943,9.198,6.688,22.51,2.59,13.67,0.914,21.985,15.073,15.549,19.395,16.336,-1.458,-0.231,4.428,38.008,21.214,4.027,22.006,8.373,5.922,10.305,17.051,19.198,6.897,11.084,16.361,17.896,14.074,16.762,0.77,3.804,12.699,4.418,35.175,11.7,12.661,2.456],[15.654,27.48,17.572,2.537,10.608,4.995,-0.687,9.409,17.658,-2.121,11.477,22.36,26.751,12.996,1.765,5.327,6.195,21.408,8.503,-5.724,2.84,10.262,3.796,21.176,11.526,6.523,26.302,19.747,23.283,18.268,5.779,17.287,-0.869,21.945,14.107,-6.94,5.966,9.072,16.211,14.228,1.577,21.831,13.935,5.539,7.869,4.03,22.594,12.712,9.771,16.55,17.337,-1.379,15.52,16.066,36.317,7.161,13.374,0.463,18.982,3.929,3.875,22.539,9.874,10.545,25.573,-3.978,16.628,1.189,17.428,12.473,25.103,9.369,15.114,1.646,-0.95,10.027,28.164,7.735,11.08,17.16,4.338,1.917,17.467,11.556,16.349,11.201,6.29,20.843,1.028,-1.274,28.139,22.481,13.972,3.264,10.255,21.503,7.017,6.132,2.375,13.09,2.341,22.012,8.541,7.617,-3.965,11.809,22.902,5.551,6.26,22.801,18.139,11.012,-6.258,21.428,21.016,9.241,3.398,5.667,20.461,3.798,26.681,25.128,6.101,25.588,18.685,-6.879,-1.108,17.399,-0.789,13.243,4.401,20.515,19.001,22.06,10.593,15.746,7.102,-8.664,15.052,14.813,20.503,6.701,5.855,18.068,8.448,23.468,10.744,6.834,3.852,2.51,13.768,15.584,11.747,15.167,10.562,9.453,7.235,22.671,2.519,13.981,1.059,21.914,15.23,15.688,19.177,16.603,-1.861,-0.424,4.518,37.605,21.643,3.821,22.415,8.356,6.036,10.57,17.227,18.728,6.911,10.987,16.118,17.569,14.086,16.845,0.567,3.853,12.737,4.533,35.147,12.087,12.426,2.197],[15.572,27.605,17.618,2.523,10.345,4.944,-0.538,9.563,17.607,-1.992,11.6,22.38,26.748,13.221,1.78,5.418,6.205,21.342,8.276,-5.985,2.905,10.334,4.026,21.148,11.467,6.652,26.232,19.881,23.26,18.391,5.742,17.331,-0.94,21.96,14.17,-6.98,5.971,9.446,16.392,14.199,1.558,21.719,13.756,5.822,7.931,4.012,22.516,12.555,9.922,16.577,17.284,-1.456,15.4,15.797,36.253,7.12,13.247,0.307,19.067,4.017,3.795,22.696,9.785,10.716,25.879,-3.834,16.553,0.984,17.522,12.505,25.115,9.205,15.838,2.144,-0.482,9.973,28.201,7.86,10.56,16.908,4.636,2.116,17.123,11.288,16.272,11.222,5.871,20.894,1.022,-1.283,28.02,22.435,13.566,3.491,10.065,21.662,7.147,6.733,2.769,12.739,2.15,21.926,8.445,7.567,-4.245,11.934,22.653,5.114,5.509,22.576,17.742,10.823,-6.42,21.96,21.336,9.501,3.383,5.337,20.516,3.846,26.407,25.18,6.318,25.075,19.036,-6.991,-0.688,17.497,-0.81,13.284,4.115,20.451,18.935,21.294,10.834,16.717,7.485,-8.257,15.111,14.819,20.296,6.754,5.077,18.193,9.127,23.295,10.923,6.66,3.934,2.449,13.944,15.102,11.443,14.978,10.45,9.579,7.734,22.292,2.809,14.145,0.533,21.728,14.931,15.683,19.157,16.403,-2.035,-0.818,4.225,37.203,21.41,3.454,22.72,8.156,5.978,11.117,17.543,18.573,6.387,10.734,16.238,17.507,13.781,16.885,0.451,4.636,12.635,4.325,35.02,11.896,12.253,1.919],[15.593,27.778,17.501,2.571,10.329,4.699,-0.31,9.632,17.601,-1.905,11.531,22.435,26.552,13.424,1.921,5.327,6.342,21.432,8.16,-6.094,2.872,10.526,4.255,21.063,11.436,6.628,26.091,19.832,23.343,18.547,5.721,17.282,-1.096,21.736,14.137,-7.074,5.978,9.69,16.543,14.152,1.428,21.653,13.679,5.669,8.018,4.075,22.623,12.39,10.176,16.641,17.331,-1.439,15.151,15.704,36.066,7.013,13.09,0.149,19.105,4.065,3.675,22.787,9.657,11.027,25.991,-3.583,16.975,0.818,17.212,13.009,25.053,9.33,15.483,2.686,-0.521,9.988,28.415,8.072,10.779,16.605,4.461,2.531,17.634,11.312,16.158,11.152,6.244,21.038,1.234,-0.928,27.965,22.621,13.9,3.032,9.827,21.501,7.002,6.341,3.529,12.613,2.993,22.434,8.655,7.873,-4.228,11.988,22.332,5.53,5.432,22.713,17.241,10.777,-6.265,21.729,20.815,9.51,3.351,4.863,21.074,4.197,26.346,25.032,6.687,24.674,19.366,-6.454,-1.297,17.846,-0.745,13.039,4.497,20.298,18.567,21.375,11.128,16.778,7.741,-7.701,14.563,14.553,20.461,6.779,5.105,18.28,9.877,23.271,10.187,5.895,3.688,2.594,13.754,15.388,11.317,15.009,10.989,9.579,7.523,22.319,3.203,13.336,0.355,22.14,14.336,15.675,19.182,15.958,-2.018,-0.734,4.329,37.488,21.296,4.059,22.69,7.803,6.149,11.115,17.422,18.749,6.593,10.421,16.257,16.958,13.719,16.841,0.349,4.127,12.291,4.333,35.394,11.352,12.494,1.937],[15.634,27.911,17.391,2.619,10.498,4.551,-0.064,9.745,17.741,-1.872,11.269,22.474,26.336,13.659,2.128,5.191,6.567,21.744,8.162,-5.935,3.011,10.689,4.47,21.016,11.337,6.605,26.002,19.723,23.266,18.674,5.706,17.118,-1.412,21.472,13.806,-7.001,6.02,9.931,16.524,14.212,1.323,21.631,13.627,5.287,8.13,4.239,22.828,12.133,10.332,16.716,17.413,-1.407,14.918,15.605,35.963,6.872,12.973,0.061,19.084,4.156,3.582,22.728,9.465,11.261,25.959,-3.514,16.927,0.905,16.784,12.988,25.009,9.746,15.092,3.159,-0.729,10.017,28.483,8.043,10.767,16.557,4.083,2.841,18.375,11.448,16.172,11.701,5.713,20.943,1.679,-0.51,27.975,22.733,14.39,3.285,9.492,21.421,6.872,5.731,4.413,12.598,2.739,22.54,8.759,8.221,-4.205,12.11,22.814,5.398,5.908,22.393,17.556,10.746,-6.085,21.272,20.511,9.434,3.564,4.408,20.994,4.134,25.748,25.177,7.036,24.997,19.538,-6.671,-1.783,17.506,-0.673,13.136,4.922,19.835,18.684,21.548,11.12,16.126,7.846,-7.764,14.447,14.593,20.303,6.893,5.046,18.428,10.494,23.289,9.995,5.311,3.869,2.863,13.438,15.14,11.383,14.905,11.895,9.775,7.088,23.04,2.852,13.203,0.586,22.31,14.045,15.514,19.165,15.416,-1.972,-0.49,4.524,37.435,21.168,3.744,22.629,7.655,5.798,10.63,17.26,19.391,7.296,10.124,15.766,17.008,13.707,16.823,0.429,3.814,12.219,4.18,35.291,11.943,12.48,1.749],[15.474,27.923,17.495,2.642,10.701,4.428,0.073,9.924,17.865,-1.914,10.954,22.477,26.152,13.879,2.315,5.126,6.695,22.055,8.081,-5.607,3.137,10.83,4.625,20.99,11.155,6.806,26.039,19.567,23.124,18.817,5.654,16.833,-1.629,21.432,13.474,-6.843,6.036,10.201,16.372,14.258,1.375,21.653,13.678,5.01,8.238,4.425,23.114,11.877,10.397,16.591,17.305,-1.39,14.669,15.587,35.886,6.782,12.972,-0.034,19.066,4.185,3.555,22.53,9.422,11.362,26.101,-3.604,17.369,1.06,16.501,12.983,24.954,10.217,15.398,3.415,-0.525,9.433,28.435,8.189,10.383,16.997,4.076,3.358,18.553,11.313,15.958,12.097,5.702,21.249,1.612,-0.497,27.895,22.428,14.401,3.519,9.411,21.287,6.964,6.186,4.75,12.407,2.337,22.161,9.082,8.475,-4.057,12.42,23.06,4.785,6.012,22.415,18.31,10.572,-6.209,21.768,20.559,9.327,3.791,4.432,20.892,4.251,25.945,24.975,6.303,24.913,19.06,-6.85,-1.697,16.931,-1.158,12.524,4.762,19.493,18.606,21.061,11.503,16.417,7.71,-8.054,14.317,14.817,20.202,7.326,4.664,18.156,10.728,23.059,10.475,5.462,4.249,2.559,13.646,15.272,10.759,14.802,12.165,9.914,6.877,22.744,2.946,13.495,0.33,22.18,14.27,15.841,19.08,15.336,-1.638,-0.612,4.128,37.241,21.133,3.566,22.277,7.56,5.853,10.803,17.269,20.201,7.14,9.972,15.762,17.133,13.467,16.621,0.518,4.636,12.464,3.664,34.906,12.712,11.736,1.763],[15.325,27.874,17.716,2.666,10.717,4.411,0.086,10.056,17.849,-2.002,10.666,22.481,26.127,14.034,2.548,5.168,6.779,22.18,7.998,-5.228,3.137,10.916,4.65,20.961,10.822,6.976,26.134,19.468,22.945,18.98,5.656,16.557,-1.763,21.426,13.18,-6.712,6.033,10.528,16.197,14.352,1.438,21.702,13.9,4.891,8.368,4.665,23.155,11.73,10.386,16.444,16.998,-1.462,14.442,15.629,35.875,6.648,13.043,-0.075,19.077,4.242,3.339,22.269,9.593,11.48,26.1,-3.659,17.798,0.859,16.81,13.0,24.836,10.15,15.14,3.033,0.126,8.945,28.953,8.296,10.268,17.013,4.032,3.388,18.349,11.605,15.929,11.926,6.007,21.245,1.235,-0.974,27.612,22.281,14.301,3.445,9.361,21.547,6.927,6.912,4.448,12.155,2.787,22.673,8.814,8.313,-3.925,12.51,22.475,4.974,6.303,22.51,18.28,10.59,-6.156,22.898,20.652,9.768,3.646,4.973,20.69,4.124,26.674,24.422,5.874,24.469,18.806,-6.522,-1.831,16.808,-1.029,12.426,4.307,20.086,17.966,21.356,11.785,16.956,7.826,-8.134,14.01,14.758,20.244,7.537,4.495,17.802,10.66,23.311,10.997,6.029,4.358,2.066,13.85,15.591,10.881,14.945,11.884,10.254,6.676,22.791,3.47,13.166,0.279,22.612,14.496,15.655,18.871,15.384,-2.039,-1.186,3.826,36.937,20.714,3.684,22.068,7.637,5.619,11.432,17.604,20.152,6.279,10.303,15.704,17.215,12.992,16.596,0.462,4.797,12.661,4.354,35.091,12.26,11.874,1.646],[15.159,28.011,17.878,2.571,10.697,4.417,0.051,10.107,17.85,-2.099,10.487,22.486,26.305,14.171,2.732,5.386,6.885,22.298,7.929,-4.904,3.057,10.985,4.533,21.007,10.516,7.111,26.22,19.447,22.722,18.986,5.709,16.389,-1.844,21.591,12.895,-6.683,6.059,10.861,16.099,14.394,1.366,21.744,14.059,4.856,8.56,4.972,23.049,11.827,10.349,16.294,16.693,-1.637,14.298,15.672,35.913,6.25,13.214,-0.1,19.022,4.293,3.07,22.06,9.747,11.613,26.181,-3.775,17.602,0.784,16.875,13.067,24.663,9.97,14.247,2.989,0.39,9.088,28.978,8.45,10.31,17.117,4.22,2.868,18.477,11.719,16.217,11.653,5.843,20.916,1.607,-1.05,27.684,22.592,14.436,3.907,9.692,21.417,7.228,7.176,3.884,11.864,2.982,22.716,8.093,7.965,-3.649,12.56,22.391,5.586,6.797,22.149,18.194,10.541,-5.651,23.452,20.585,10.265,3.92,5.073,20.55,4.057,26.686,24.333,6.234,24.752,19.183,-6.525,-1.592,16.922,-0.928,12.433,4.205,19.912,18.021,21.429,12.139,16.831,7.686,-7.989,14.046,14.856,20.736,7.674,4.074,17.146,10.536,23.583,11.525,6.451,4.347,1.973,14.406,15.213,10.754,15.213,11.232,10.285,6.767,22.48,3.863,12.712,0.716,22.743,14.373,15.448,18.457,15.209,-2.444,-1.224,3.929,37.446,20.706,3.587,22.311,8.023,5.267,11.553,17.331,19.475,5.683,10.63,15.401,17.218,12.737,16.231,0.221,4.474,12.79,3.713,35.152,11.851,12.415,1.557],[15.019,28.18,17.956,2.486,10.753,4.351,0.129,10.075,17.838,-2.083,10.428,22.512,26.569,14.327,2.759,5.62,6.909,22.463,7.908,-4.638,2.98,11.087,4.337,21.011,10.358,7.331,26.35,19.438,22.601,18.807,5.803,16.446,-1.818,21.717,12.706,-6.864,5.984,11.241,15.901,14.418,1.244,21.966,14.069,4.799,8.742,5.29,22.919,11.972,10.348,16.061,16.389,-1.924,14.193,15.783,36.121,5.907,13.412,-0.005,18.82,4.196,2.941,22.024,9.75,11.633,26.192,-3.818,16.997,0.967,16.844,13.401,24.989,10.285,14.216,2.83,-0.276,8.717,28.944,8.413,9.986,16.317,4.18,3.015,18.645,11.196,16.244,11.597,5.715,21.18,1.554,-0.978,27.901,23.077,14.795,4.435,9.597,21.282,7.454,7.105,3.688,11.716,2.81,22.382,7.826,8.197,-3.148,12.692,22.345,5.193,6.646,22.156,18.101,10.698,-5.07,23.607,20.302,10.092,3.586,4.636,20.883,4.211,25.971,24.345,6.766,25.113,19.612,-6.998,-2.055,16.861,-1.198,11.916,4.786,19.867,18.153,21.307,12.132,16.956,7.581,-7.399,13.804,15.096,20.957,7.875,4.434,17.066,10.546,23.631,11.875,6.301,4.524,2.237,13.829,15.083,10.76,15.269,10.917,10.516,6.504,22.367,4.123,13.19,0.733,22.11,14.106,15.566,18.16,14.759,-2.62,-1.239,3.647,37.687,20.99,3.62,22.147,7.965,5.175,11.26,16.956,18.956,4.695,10.784,15.745,16.975,13.026,16.121,-0.108,4.584,12.704,3.822,35.377,12.46,12.488,1.521],[14.987,28.166,17.825,2.342,10.739,4.225,0.079,10.086,17.68,-2.026,10.314,22.673,26.796,14.45,2.849,5.637,6.924,22.561,7.887,-4.393,2.981,11.207,4.069,20.946,10.43,7.496,26.444,19.5,22.501,18.675,5.884,16.64,-1.911,21.654,12.553,-7.133,5.881,11.579,15.865,14.279,1.208,22.109,14.064,4.747,8.894,5.596,22.721,12.18,10.488,15.925,16.175,-2.242,14.068,15.881,36.365,5.489,13.428,0.128,18.743,4.026,2.962,22.128,9.587,11.552,26.369,-3.64,16.584,1.175,17.514,13.339,25.607,10.292,14.307,2.897,-0.365,8.993,29.117,8.481,9.819,15.966,3.492,3.392,18.799,10.818,16.292,12.151,5.815,21.293,1.239,-0.884,28.273,22.497,14.757,4.094,9.576,21.307,7.476,6.976,3.712,11.734,2.906,22.869,7.987,8.655,-2.779,12.624,22.512,5.098,6.77,22.573,17.992,10.498,-4.51,23.483,20.252,9.732,2.879,4.418,20.956,3.89,25.928,24.194,6.957,24.984,19.063,-7.065,-1.587,17.179,-1.233,11.834,5.525,20.437,18.048,21.298,12.414,16.831,7.668,-7.2,13.378,14.754,21.134,8.179,4.98,17.263,10.572,23.874,11.653,5.586,4.966,2.194,13.556,15.388,11.363,15.46,11.354,10.707,6.48,22.693,4.206,13.213,0.171,21.849,14.319,15.466,18.019,14.866,-2.496,-0.918,3.361,37.566,20.835,4.016,22.107,7.845,5.277,11.628,17.061,18.631,4.432,10.707,15.634,16.814,12.783,16.044,-0.35,4.586,12.889,3.948,35.512,12.219,12.495,1.596],[15.028,28.071,17.686,2.219,10.74,4.014,-0.112,10.2,17.613,-1.983,10.298,22.779,27.005,14.477,2.967,5.468,6.996,22.565,7.902,-4.269,3.008,11.243,3.74,20.988,10.504,7.567,26.464,19.565,22.426,18.629,6.019,16.868,-2.053,21.704,12.39,-7.235,5.81,11.857,16.032,14.063,1.15,22.127,14.052,4.81,8.989,5.862,22.565,12.357,10.679,15.868,16.125,-2.388,13.926,15.926,36.401,5.235,13.378,0.213,18.76,3.872,2.955,22.236,9.452,11.416,26.33,-3.697,15.984,0.594,18.211,13.629,25.621,10.37,14.866,2.794,0.224,8.654,28.99,8.503,9.845,16.03,3.735,3.714,18.728,10.959,16.082,12.098,5.689,21.322,1.258,-0.758,28.592,22.197,14.917,3.696,9.582,20.896,7.318,6.85,3.315,12.047,3.159,23.398,7.949,8.661,-2.561,12.17,22.826,5.795,7.361,22.663,17.844,10.53,-4.105,23.748,20.745,10.16,3.22,4.429,20.535,4.264,26.472,24.001,6.56,24.794,18.201,-7.319,-1.517,17.225,-1.26,12.161,5.55,20.15,18.619,20.941,12.859,16.677,7.47,-7.822,13.779,14.644,20.879,8.542,5.057,17.53,10.802,23.79,11.38,5.567,5.259,1.917,14.153,15.479,11.065,14.832,12.082,10.6,6.427,22.279,4.709,13.308,-0.192,22.105,14.896,15.493,17.882,14.628,-2.384,-0.483,3.498,37.579,20.993,3.883,22.378,7.744,4.718,11.317,17.151,18.761,4.299,10.367,14.878,17.374,12.625,16.09,-0.494,4.245,13.056,3.919,35.349,12.228,12.192,1.973],[15.119,27.919,17.548,2.035,10.731,3.875,-0.437,10.367,17.539,-2.012,10.199,22.823,27.164,14.648,2.988,5.468,6.986,22.674,7.848,-4.174,3.128,11.228,3.43,21.154,10.621,7.548,26.56,19.668,22.421,18.628,6.088,17.079,-2.175,21.525,12.354,-7.25,5.826,12.003,16.234,14.051,1.036,22.049,13.916,4.895,9.089,6.063,22.507,12.457,10.889,15.813,16.137,-2.358,13.763,16.116,36.295,5.174,13.364,0.406,18.835,3.704,2.903,22.289,9.281,11.215,26.079,-3.701,16.019,0.427,18.321,13.591,25.529,10.254,14.49,2.25,0.04,8.428,29.024,8.662,10.582,16.879,4.283,4.076,18.453,11.189,15.761,11.524,5.406,21.358,0.961,-0.905,28.498,22.836,15.006,4.105,9.38,20.865,7.031,7.455,2.85,12.223,3.359,23.196,8.642,8.324,-2.8,12.577,22.74,5.509,7.435,22.574,18.182,10.833,-3.664,24.091,21.007,10.397,3.554,4.876,20.211,3.815,26.813,23.834,6.08,25.073,17.716,-7.418,-2.437,17.008,-1.606,12.038,4.988,19.965,18.636,21.011,12.897,17.016,7.539,-8.621,13.729,14.598,20.821,8.926,4.807,17.667,11.623,23.655,11.29,5.794,5.278,1.387,13.725,15.411,10.877,15.391,12.512,10.547,6.654,21.774,5.489,13.84,0.188,22.002,14.96,15.264,17.907,14.466,-2.452,-0.516,3.456,37.67,20.988,3.554,22.407,7.566,4.434,10.783,17.079,18.917,4.862,10.412,14.963,17.819,12.657,15.762,-0.58,4.097,12.489,3.861,35.572,12.431,11.984,2.118],[15.398,27.748,17.385,1.853,10.506,3.842,-0.907,10.586,17.441,-2.163,10.161,22.938,27.204,14.827,3.036,5.561,6.902,22.753,7.952,-4.019,3.223,11.27,3.253,21.34,10.806,7.369,26.933,19.684,22.447,18.643,6.042,17.051,-2.385,21.19,12.347,-7.371,5.872,12.232,16.35,14.12,0.997,21.884,14.059,5.072,9.145,6.283,22.459,12.547,11.026,15.746,16.09,-2.22,13.573,16.293,36.19,5.353,13.179,0.64,18.94,3.445,2.827,22.303,9.052,10.906,25.997,-3.541,15.768,0.393,18.469,13.905,25.655,9.985,14.407,2.07,-0.403,8.405,28.976,9.085,10.325,17.123,3.792,4.018,18.111,11.288,15.554,11.691,5.396,21.364,0.549,-1.398,28.533,23.623,15.104,4.401,9.31,21.631,7.363,7.628,2.537,12.29,3.24,23.114,8.755,8.283,-2.671,13.061,22.506,5.115,7.15,22.663,18.4,10.782,-3.379,24.399,20.933,10.194,2.588,5.224,20.648,3.827,26.795,23.775,6.274,25.125,17.449,-7.36,-1.996,17.559,-2.065,11.776,4.84,19.362,18.517,21.264,12.926,17.249,7.659,-8.66,13.172,14.332,20.909,9.535,4.617,17.808,12.026,23.552,11.128,5.616,5.264,0.809,13.471,15.354,11.287,15.552,12.765,10.586,6.889,22.042,5.402,13.749,0.159,21.784,14.988,15.246,17.986,14.264,-2.565,-0.872,3.543,37.628,20.955,3.331,21.932,7.582,4.609,11.308,17.304,18.627,5.478,10.514,15.574,17.692,12.992,15.783,-0.282,4.105,12.545,3.557,35.544,12.077,12.001,1.999],[15.692,27.623,17.192,1.652,10.293,3.779,-1.23,10.754,17.395,-2.446,10.13,23.164,27.203,15.005,3.14,5.679,6.739,22.733,8.08,-3.822,3.2,11.239,3.084,21.596,10.908,7.186,27.251,19.652,22.463,18.574,6.058,17.019,-2.551,20.811,12.314,-7.543,5.869,12.502,16.423,14.212,0.997,21.829,14.209,5.343,9.183,6.447,22.436,12.606,11.107,15.787,16.033,-1.96,13.458,16.451,36.153,5.741,13.064,0.764,18.999,3.08,2.786,22.292,8.959,10.739,25.812,-3.789,15.772,0.087,18.253,14.175,25.813,10.552,14.711,2.505,-0.903,8.522,28.507,9.037,9.624,17.234,3.442,3.581,18.042,11.04,15.844,11.443,5.526,21.792,0.419,-1.234,28.58,23.487,15.497,4.293,9.626,21.846,7.569,7.28,2.124,12.376,3.566,23.279,8.011,7.84,-2.298,12.876,22.805,5.408,7.057,22.879,18.271,11.178,-3.626,24.234,20.597,10.108,2.457,5.161,20.8,4.618,26.924,24.093,6.659,25.688,17.637,-7.416,-2.241,17.403,-2.251,11.742,4.617,19.174,18.349,20.643,13.377,17.226,7.733,-8.231,13.215,15.181,20.561,9.735,4.578,17.596,12.096,23.385,11.22,5.467,5.357,0.602,13.759,15.313,11.201,15.388,12.639,10.634,7.17,22.374,5.162,13.763,-0.312,22.197,14.606,15.213,17.671,13.832,-2.671,-0.614,3.802,37.204,20.973,3.403,21.797,7.345,4.669,10.685,17.663,18.407,5.236,10.012,15.188,17.334,12.874,16.195,0.022,3.587,12.48,3.787,35.551,12.147,11.739,2.242],[15.561,27.491,17.045,1.57,10.108,3.65,-1.354,10.832,17.376,-2.757,10.134,23.522,27.187,15.313,3.223,5.824,6.528,22.665,8.111,-3.748,3.217,11.15,3.037,21.878,11.069,7.245,27.437,19.861,22.62,18.484,6.041,16.907,-2.704,20.407,12.323,-7.609,5.909,12.752,16.527,14.307,0.914,21.799,14.339,5.462,9.263,6.408,22.489,12.651,11.227,15.829,15.948,-1.821,13.373,16.382,36.103,5.993,13.137,0.782,18.905,2.668,2.995,22.411,8.831,10.649,25.629,-4.25,15.937,-0.082,17.747,14.125,25.752,11.298,15.099,2.105,-1.607,8.529,28.449,9.069,9.619,17.24,3.651,3.364,18.237,10.652,15.993,11.509,5.432,21.93,0.433,-1.495,28.453,22.962,15.723,4.123,9.743,21.823,7.494,7.019,1.953,12.266,3.736,22.913,8.332,7.854,-2.362,12.283,22.879,5.281,7.046,23.17,18.083,11.388,-3.727,24.172,20.926,10.058,2.253,4.816,20.693,4.401,27.123,24.26,6.214,25.95,17.709,-7.353,-2.308,17.235,-2.217,11.941,5.174,18.59,18.63,20.436,13.464,17.254,7.719,-8.864,13.628,15.567,20.494,9.182,5.325,17.693,12.265,23.046,11.556,5.536,5.455,1.056,13.717,15.255,11.108,15.519,12.009,10.968,7.347,22.257,5.663,13.918,-0.286,22.057,14.693,15.308,17.357,13.44,-2.236,-0.316,3.864,37.004,21.313,3.387,21.937,7.117,4.705,10.122,17.582,18.454,5.095,9.626,14.918,17.58,12.235,16.401,0.089,3.477,11.884,4.068,35.914,11.885,11.928,2.455],[15.208,27.37,17.083,1.53,10.079,3.48,-1.365,10.884,17.389,-2.985,10.345,23.636,27.19,15.631,3.184,5.918,6.388,22.577,8.144,-3.818,3.182,11.083,3.025,22.081,11.237,7.375,27.573,20.102,22.817,18.44,6.03,16.926,-2.756,20.188,12.477,-7.712,5.993,12.981,16.619,14.312,0.822,21.817,14.364,5.503,9.397,6.264,22.557,12.742,11.237,15.678,15.783,-1.71,13.182,16.26,36.04,5.95,13.221,0.764,18.731,2.415,3.361,22.724,8.626,10.463,25.663,-4.764,15.739,-0.263,17.3,14.409,25.572,10.818,14.885,1.815,-1.852,8.613,28.707,9.213,10.474,17.015,3.651,3.989,17.965,10.324,15.394,11.793,5.068,22.135,0.146,-2.093,28.235,23.536,15.402,4.444,9.61,21.815,7.825,6.81,1.966,12.485,3.824,22.562,8.959,8.003,-2.796,12.233,23.317,5.277,6.815,23.597,17.803,11.561,-3.516,24.182,21.49,9.719,2.316,4.657,20.768,3.701,27.452,24.266,6.416,25.836,17.891,-8.123,-2.403,16.857,-2.148,12.099,5.57,18.507,18.632,20.32,13.547,17.589,7.716,-8.821,13.288,15.164,20.808,8.725,5.796,17.847,12.48,23.031,11.938,5.967,5.13,1.478,13.858,15.534,11.173,15.405,11.688,11.248,7.168,22.011,6.119,13.407,-0.176,21.917,14.981,14.964,17.582,13.545,-2.123,-0.592,3.827,37.635,21.161,3.012,22.589,6.786,4.68,10.384,17.335,18.247,5.21,9.71,14.972,17.633,11.944,15.895,0.132,2.89,12.35,4.218,35.791,11.697,12.357,2.127],[14.95,27.255,16.877,1.395,10.166,3.336,-1.317,10.738,17.37,-3.211,10.637,23.622,27.171,15.819,3.273,6.083,6.299,22.48,8.176,-3.891,3.117,11.039,2.999,22.163,11.436,7.473,27.66,20.036,23.03,18.43,6.127,17.073,-2.773,20.23,12.68,-7.879,6.165,13.19,16.659,14.257,0.769,21.916,14.232,5.559,9.536,6.095,22.642,12.746,11.241,15.329,15.575,-1.518,12.986,16.1,36.107,5.847,13.286,0.707,18.551,2.222,3.626,23.0,8.435,10.381,25.662,-4.934,15.986,-0.178,17.467,14.733,25.563,10.145,14.542,1.729,-1.716,8.848,28.558,9.158,10.919,16.822,3.547,4.337,18.048,10.784,15.162,11.725,4.996,21.85,0.18,-2.537,28.519,23.905,15.43,4.328,9.46,22.161,7.917,6.59,2.148,13.034,3.364,22.83,8.637,7.798,-2.57,12.426,24.216,5.261,7.107,23.879,17.983,11.612,-3.945,23.718,21.381,9.75,2.541,4.798,20.733,3.582,27.396,24.306,6.666,26.065,18.386,-8.488,-2.466,17.207,-2.347,12.156,5.501,18.479,18.693,20.04,13.926,17.249,7.362,-8.433,13.531,15.341,20.992,8.967,5.729,18.112,12.761,23.39,11.214,6.548,4.7,1.487,13.501,15.372,10.941,15.331,11.337,11.348,7.209,22.486,5.396,13.667,-0.376,22.104,15.627,14.966,17.456,14.317,-2.475,-0.846,4.332,37.3,21.508,2.762,23.394,6.838,4.309,10.122,17.3,18.336,5.29,9.676,14.632,17.872,12.064,15.414,0.365,2.522,12.585,4.641,35.679,11.477,12.155,1.594],[15.013,27.222,16.595,1.282,10.26,3.297,-1.358,10.434,17.455,-3.516,10.847,23.527,27.092,15.843,3.409,6.142,6.239,22.405,8.105,-3.916,2.96,10.859,2.908,22.216,11.551,7.496,27.676,19.733,23.366,18.546,6.213,17.243,-2.895,20.131,12.832,-8.007,6.296,13.332,16.67,14.161,0.693,21.999,14.181,5.747,9.629,5.814,22.734,12.783,11.124,15.091,15.487,-1.312,12.997,16.034,35.973,5.814,13.27,0.66,18.624,2.122,3.924,23.266,8.366,10.27,25.418,-5.113,15.9,-0.493,18.035,14.503,25.642,10.305,14.48,1.572,-1.907,9.034,28.282,8.727,10.658,16.886,3.409,4.246,17.915,10.946,15.527,11.53,5.014,21.725,0.309,-2.167,28.659,23.903,15.851,4.452,9.898,22.474,7.855,6.682,2.401,13.248,3.398,22.912,8.041,7.716,-2.476,12.634,24.635,5.521,7.198,23.532,17.766,12.02,-4.202,23.277,20.636,9.94,2.178,5.416,20.838,4.271,27.406,24.433,6.722,26.302,18.967,-7.879,-2.242,17.835,-2.329,12.358,5.015,18.5,18.942,20.325,14.635,16.841,7.915,-9.366,13.981,15.508,21.417,9.29,5.364,18.282,13.056,23.774,11.344,6.958,4.979,1.504,13.871,15.047,11.117,15.111,11.43,11.379,7.588,22.784,4.76,14.153,-0.669,22.2,15.918,14.548,17.154,14.36,-2.073,-1.069,4.233,36.935,21.795,2.852,23.748,6.763,4.186,10.053,17.573,18.103,5.308,9.752,14.117,17.647,12.018,15.253,0.58,2.788,12.403,4.617,35.827,11.687,11.897,1.364],[15.243,27.284,16.481,1.077,10.309,3.353,-1.543,10.252,17.601,-3.72,10.826,23.53,27.013,15.83,3.53,6.004,6.2,22.302,8.05,-3.988,2.971,10.789,2.643,22.218,11.643,7.425,27.72,19.463,23.708,18.72,6.096,17.458,-2.994,20.005,12.979,-8.174,6.611,13.505,16.687,14.15,0.566,22.076,14.206,5.876,9.794,5.554,22.669,12.846,11.078,15.024,15.558,-1.108,12.928,15.956,35.769,5.848,13.114,0.613,18.866,2.205,4.182,23.516,8.342,10.2,25.562,-5.17,16.016,-0.599,18.078,14.282,25.721,10.437,14.648,1.838,-2.074,9.125,28.399,8.356,10.716,16.903,3.417,4.436,17.852,11.286,15.184,11.181,5.166,21.874,-0.002,-2.311,28.407,23.168,15.551,4.47,9.667,22.402,7.892,6.913,2.7,12.55,3.371,22.74,8.186,7.71,-2.372,12.148,24.166,5.62,6.654,23.24,17.467,12.293,-4.1,23.231,20.269,9.751,1.984,5.396,20.775,4.413,27.37,25.051,7.05,26.149,19.34,-7.712,-2.715,17.615,-2.227,12.317,4.668,18.351,18.857,20.193,15.055,17.072,8.117,-9.304,13.595,14.748,21.802,9.259,6.006,18.44,12.922,23.653,11.2,6.683,5.137,1.698,13.452,15.614,11.531,15.645,12.08,11.132,7.6,22.556,4.317,14.411,-0.717,22.658,15.965,14.572,17.425,13.841,-1.707,-1.03,4.531,37.376,21.879,2.795,23.654,6.847,4.376,10.299,17.724,17.896,5.357,9.723,14.084,17.642,11.994,15.463,0.696,3.118,12.173,4.826,35.116,11.652,12.368,1.853],[15.275,27.419,16.324,0.924,10.352,3.537,-1.85,10.144,17.76,-3.882,10.642,23.404,26.963,15.879,3.541,5.916,6.16,22.178,8.047,-4.07,3.186,10.74,2.288,22.146,11.694,7.298,27.694,19.462,23.913,18.844,5.753,17.574,-3.002,19.926,12.908,-8.252,6.785,13.682,16.889,14.184,0.428,22.079,14.345,5.976,9.922,5.324,22.552,12.876,11.048,15.046,15.682,-0.806,12.71,15.894,35.513,6.0,12.975,0.569,19.029,2.35,4.413,23.646,8.388,10.264,25.906,-5.408,15.883,-0.7,18.236,14.378,25.436,10.057,15.342,2.04,-1.732,8.979,28.626,8.352,10.503,17.0,3.35,4.672,17.659,11.378,14.815,11.759,5.275,22.258,-0.299,-2.523,28.17,23.765,15.18,4.49,9.352,22.516,7.756,7.045,2.585,12.496,3.578,22.895,8.321,7.563,-2.616,12.296,24.075,4.966,6.851,23.581,17.83,12.277,-3.928,23.41,20.345,9.496,1.759,5.193,20.753,4.167,27.221,25.529,6.454,26.321,19.425,-8.25,-2.77,17.526,-2.636,12.596,4.385,18.177,19.143,20.33,15.367,17.434,8.66,-9.061,14.052,14.99,21.584,9.468,6.825,18.364,12.966,23.514,11.282,6.749,4.733,1.834,13.525,15.361,11.518,15.491,12.452,11.141,7.471,22.898,4.37,14.388,-0.717,22.43,15.609,14.576,17.701,14.05,-2.1,-0.762,5.049,36.578,22.035,2.973,23.57,6.94,4.643,9.96,17.672,18.365,5.171,9.799,14.401,17.511,12.227,15.595,0.877,2.808,11.695,5.097,34.76,11.602,12.431,2.061],[15.177,27.515,16.118,0.887,10.471,3.677,-2.105,9.887,17.848,-4.01,10.381,23.373,26.84,15.982,3.519,5.798,6.174,22.117,8.168,-4.137,3.344,10.703,1.994,22.276,11.698,7.113,27.707,19.674,24.033,18.996,5.437,17.581,-2.924,20.023,12.807,-8.37,6.933,13.812,17.149,14.184,0.318,22.007,14.553,6.144,9.982,5.032,22.597,12.892,11.001,15.22,15.726,-0.601,12.628,15.824,35.221,6.173,12.932,0.6,19.135,2.473,4.663,23.713,8.461,10.3,25.981,-5.722,16.326,-0.778,18.34,14.338,25.389,9.885,15.363,1.663,-1.59,8.799,28.841,8.254,9.956,17.005,3.841,4.032,17.482,11.053,14.763,11.766,5.423,22.139,-0.496,-2.836,28.179,24.072,15.481,4.566,9.925,22.64,7.563,6.864,1.962,13.247,3.647,22.985,8.078,7.72,-2.618,12.39,24.58,5.138,6.892,23.916,17.998,12.246,-4.136,23.135,20.959,9.542,1.181,5.118,20.389,4.487,27.121,25.386,5.889,26.14,19.495,-8.689,-2.293,17.629,-2.435,12.682,3.998,18.303,19.199,19.997,15.563,17.625,8.164,-9.311,13.721,15.505,21.274,9.429,6.947,18.571,13.331,23.737,11.495,7.598,4.184,1.888,13.535,15.226,11.116,15.202,12.107,11.451,7.48,22.631,5.052,14.122,-0.822,21.978,15.17,14.337,17.556,13.994,-1.942,-0.731,4.994,36.374,21.952,2.839,23.929,6.905,4.767,10.02,17.83,18.639,5.325,9.529,14.285,17.347,11.653,15.824,1.014,2.903,11.859,5.096,35.105,11.869,11.803,2.082],[15.223,27.621,16.024,0.821,10.532,3.732,-2.171,9.481,17.975,-4.151,10.024,23.451,26.634,16.092,3.564,5.737,6.244,22.118,8.385,-4.163,3.506,10.686,1.766,22.44,11.807,6.892,27.641,19.744,24.081,19.13,5.219,17.551,-2.71,20.112,12.719,-8.636,7.086,13.95,17.241,14.057,0.276,21.978,14.692,6.303,9.992,4.807,22.788,12.83,10.835,15.327,15.751,-0.481,12.627,15.751,35.189,6.268,12.967,0.761,19.147,2.549,4.746,23.848,8.442,10.465,25.909,-5.715,16.29,-0.664,18.223,14.763,25.227,9.627,14.748,1.184,-1.971,8.433,28.644,7.77,9.784,16.691,3.912,4.05,17.042,11.155,14.711,11.649,5.522,22.079,-0.696,-2.809,28.014,23.877,15.678,4.179,10.112,23.105,7.56,6.592,1.061,13.317,3.86,22.933,8.673,7.717,-2.593,12.088,25.085,5.548,6.292,24.147,17.844,12.249,-4.55,23.164,20.93,9.875,1.444,5.14,20.344,4.548,27.213,25.014,6.163,25.995,19.842,-8.617,-2.263,17.502,-2.624,12.185,3.622,18.758,19.152,19.55,15.488,17.808,8.52,-9.396,13.631,15.29,21.06,9.057,6.564,18.8,13.635,23.683,11.402,8.012,3.537,1.914,13.079,15.38,11.092,15.834,11.532,11.804,7.765,22.59,5.17,13.99,-1.033,22.278,14.854,15.074,17.459,13.657,-1.299,-1.063,4.824,36.43,22.025,2.575,24.063,6.916,4.916,10.388,17.861,18.653,5.793,9.236,14.483,17.251,11.4,15.734,1.199,3.499,12.242,5.472,34.469,11.71,11.74,1.838],[15.179,27.644,15.801,0.772,10.628,3.777,-2.215,8.98,17.95,-4.193,9.879,23.538,26.42,16.173,3.642,5.868,6.243,22.244,8.487,-4.128,3.682,10.613,1.546,22.558,11.839,6.723,27.485,19.612,24.049,19.207,5.01,17.615,-2.626,20.152,12.707,-8.917,7.453,14.125,17.184,13.855,0.229,21.937,14.657,6.319,9.985,4.744,23.03,12.732,10.679,15.472,15.769,-0.237,12.66,15.709,35.195,6.204,13.166,0.837,19.086,2.674,4.671,23.98,8.373,10.645,25.993,-5.745,16.602,-0.769,18.337,15.007,25.031,8.983,14.877,1.509,-2.745,8.174,28.773,7.144,9.56,16.806,4.002,4.92,17.342,11.438,14.693,11.777,5.336,22.155,-0.458,-2.948,27.866,24.244,15.542,4.44,10.037,23.014,7.602,6.806,0.593,13.16,3.884,22.759,8.807,7.951,-2.573,12.257,25.163,5.128,5.882,24.044,17.979,12.594,-4.885,22.94,20.499,9.456,1.437,4.94,20.925,4.668,26.837,25.367,6.135,26.188,20.067,-8.436,-2.28,17.797,-2.309,12.055,3.38,18.708,19.19,19.677,15.493,17.866,8.939,-9.664,13.784,15.28,21.029,9.147,6.696,18.833,13.942,23.577,10.644,7.1,3.294,1.804,13.335,14.974,11.295,16.081,10.538,11.715,8.027,23.182,4.189,14.178,-0.815,23.113,14.508,14.922,17.582,13.669,-1.23,-0.792,5.074,36.32,22.404,2.698,24.286,6.903,4.555,10.623,18.042,18.962,6.12,9.531,15.006,17.179,11.626,15.605,1.454,3.292,12.275,5.425,34.243,11.823,11.995,2.044],[15.202,27.509,15.654,0.786,10.776,3.882,-2.232,8.646,17.943,-4.176,10.099,23.565,26.251,16.144,3.834,6.021,6.371,22.35,8.377,-4.078,3.786,10.473,1.369,22.614,11.801,6.674,27.323,19.505,24.026,19.239,4.591,17.769,-2.62,20.182,12.784,-9.057,7.701,14.424,17.066,13.67,0.118,21.932,14.538,6.32,10.015,4.666,23.316,12.759,10.381,15.602,15.865,0.048,12.684,15.628,35.11,5.913,13.37,0.948,19.214,2.752,4.555,24.11,8.358,10.75,26.066,-5.796,16.01,-0.674,18.422,14.727,25.175,8.639,15.243,1.762,-3.251,8.492,28.737,7.076,9.49,16.979,4.052,4.819,17.246,11.768,14.437,11.59,5.611,22.817,-0.508,-3.074,27.633,24.06,15.152,4.66,10.198,22.807,7.803,6.867,0.662,13.2,3.731,22.461,8.217,7.994,-2.269,12.105,24.766,5.105,6.159,24.276,17.906,12.662,-4.846,23.183,20.03,9.134,0.979,4.811,21.004,5.378,26.608,25.502,5.547,26.075,20.379,-8.776,-2.349,17.973,-2.638,12.243,3.626,18.372,19.424,20.369,15.647,17.641,9.196,-10.078,13.87,15.497,21.342,9.217,7.22,18.459,13.735,23.531,10.655,6.661,3.635,1.904,13.168,14.595,11.373,15.741,9.796,11.788,7.458,23.056,3.469,14.474,-0.438,23.367,14.332,14.657,17.793,14.011,-1.348,-0.438,5.128,36.302,22.353,2.97,24.387,6.983,4.314,10.413,18.069,18.969,6.171,9.539,14.969,17.304,11.82,15.549,1.42,3.104,12.447,5.342,34.496,12.426,12.166,2.466],[15.38,27.365,15.612,0.727,10.733,4.007,-2.349,8.608,17.884,-4.127,10.353,23.529,26.152,16.01,3.971,6.168,6.457,22.288,8.268,-3.994,3.91,10.316,1.275,22.73,11.963,6.665,27.161,19.39,23.94,19.255,4.084,17.975,-2.734,20.374,12.819,-9.133,7.817,14.682,16.906,13.482,0.116,21.994,14.53,6.298,10.136,4.617,23.561,12.894,10.05,15.554,15.9,0.305,12.835,15.535,34.978,5.675,13.441,1.103,19.39,2.785,4.441,24.226,8.291,10.853,25.825,-5.867,16.224,-0.527,18.717,14.37,25.209,8.169,14.916,2.028,-3.411,8.751,28.248,7.257,9.875,16.742,3.839,4.595,16.897,11.671,14.327,11.695,5.887,23.275,-0.577,-3.059,27.508,23.653,15.863,4.842,9.976,23.17,7.952,6.765,0.526,12.977,3.911,22.655,8.535,8.126,-2.207,11.644,24.373,5.607,6.138,24.469,17.848,12.456,-4.392,23.422,20.111,9.275,1.062,4.456,20.793,5.66,26.395,25.456,5.392,25.736,20.387,-8.936,-2.278,17.73,-2.552,12.602,3.405,18.628,19.321,20.679,16.023,17.491,9.175,-9.817,13.617,15.516,21.392,9.649,7.434,18.209,13.725,23.892,10.577,6.832,3.647,1.616,12.964,14.615,11.446,15.285,9.761,11.28,7.327,22.977,3.618,14.385,-0.851,22.652,14.183,14.888,17.947,13.987,-1.296,-0.07,4.793,36.121,22.579,3.31,24.047,7.184,4.639,10.454,18.355,18.569,5.702,9.104,15.407,16.955,11.798,15.652,1.17,3.033,12.522,5.298,33.901,12.098,12.428,2.866],[15.499,27.214,15.586,0.719,10.489,4.019,-2.528,8.707,17.906,-4.077,10.423,23.337,26.202,16.022,3.942,6.376,6.466,22.198,8.458,-3.877,4.067,10.252,1.35,22.897,12.105,6.585,26.933,19.433,23.858,19.233,3.689,17.967,-2.827,20.74,12.739,-9.208,7.952,14.816,16.791,13.413,-0.015,22.118,14.403,6.284,10.259,4.648,23.559,13.07,9.847,15.622,15.816,0.403,13.171,15.409,34.664,5.637,13.325,1.268,19.441,2.8,4.297,24.301,8.167,10.866,25.669,-5.731,16.377,-0.395,19.12,14.36,24.88,8.119,14.873,1.931,-3.197,8.823,28.147,7.004,10.021,16.936,4.229,5.089,17.042,11.503,14.436,11.649,5.582,23.266,-0.768,-2.794,27.716,24.374,15.864,4.91,9.944,23.304,7.809,6.644,0.295,13.262,3.835,23.176,8.752,8.131,-2.435,11.501,24.083,5.267,5.8,24.803,17.667,12.955,-3.86,22.573,20.248,8.964,1.088,3.996,20.12,4.808,26.316,25.412,6.009,25.723,20.632,-9.006,-2.146,18.08,-2.305,12.557,2.927,19.076,19.642,20.092,16.202,17.288,8.963,-9.391,13.489,15.455,21.191,9.685,6.691,18.35,14.005,23.864,10.246,7.563,3.219,1.291,12.722,14.89,11.465,15.751,9.705,11.429,7.699,23.376,3.58,14.166,-1.083,22.969,13.943,14.705,17.796,14.005,-1.113,-0.007,4.706,35.895,22.511,3.121,24.098,7.556,4.742,10.877,18.185,18.662,5.647,9.124,15.478,16.85,12.01,15.654,1.744,2.993,12.399,5.271,34.064,12.441,12.241,2.705],[15.479,27.065,15.663,0.775,10.365,3.928,-2.563,8.727,17.906,-3.976,10.259,23.211,26.304,16.138,3.977,6.441,6.424,22.136,8.67,-3.771,4.174,10.213,1.52,23.178,12.35,6.48,26.856,19.504,23.869,19.252,3.354,17.857,-2.776,20.932,12.619,-9.223,8.077,14.865,16.828,13.428,-0.376,22.139,14.373,6.218,10.328,4.504,23.51,13.161,9.68,15.791,15.69,0.424,13.498,15.341,34.355,5.862,13.258,1.303,19.352,2.71,4.221,24.18,8.18,10.97,25.682,-5.627,16.513,-0.267,19.174,14.618,24.827,8.752,15.213,1.521,-3.336,8.558,28.154,7.108,9.744,16.904,4.333,5.02,17.185,11.176,14.405,11.223,5.615,22.932,-0.812,-2.777,27.819,24.475,15.392,4.81,10.315,23.422,7.804,7.031,0.438,13.449,3.856,22.998,8.74,8.159,-2.414,11.649,23.644,5.558,5.729,24.946,17.777,13.399,-3.556,22.472,20.853,8.986,1.281,3.821,20.057,4.131,26.294,25.145,5.722,25.6,20.652,-9.01,-2.262,18.186,-2.877,12.14,2.46,19.592,19.549,19.983,16.354,16.81,9.191,-9.713,13.781,15.135,21.189,9.718,6.91,18.554,14.372,23.984,10.327,8.271,3.067,1.158,12.472,14.938,11.505,15.851,9.459,12.08,7.736,23.071,4.388,14.588,-1.013,23.359,13.625,15.012,17.402,14.635,-0.898,0.041,4.534,35.711,22.35,2.631,24.915,7.253,4.223,10.329,17.901,19.091,5.85,9.074,14.877,16.618,12.588,15.121,1.743,2.999,12.362,5.649,33.658,12.152,12.149,2.957],[15.342,27.015,15.772,0.717,10.267,3.819,-2.516,8.764,17.97,-3.848,10.049,23.213,26.279,16.201,4.078,6.434,6.549,22.053,8.653,-3.651,4.158,10.233,1.817,23.395,12.637,6.378,26.91,19.63,23.901,19.336,3.153,17.697,-2.857,20.984,12.623,-9.221,8.212,14.999,16.893,13.386,-0.575,22.096,14.332,6.15,10.39,4.441,23.429,13.193,9.548,15.959,15.515,0.38,13.804,15.204,34.137,6.042,13.396,1.331,19.305,2.368,4.243,24.009,8.302,10.843,25.624,-5.575,16.182,-0.344,18.649,15.021,25.268,9.339,15.012,1.985,-3.42,8.41,28.055,6.847,9.566,17.003,3.894,4.975,17.205,11.492,14.369,11.146,5.631,22.615,-0.649,-2.859,27.729,23.636,15.642,4.844,10.467,23.559,7.956,7.022,0.511,13.868,4.121,22.542,8.66,8.115,-1.966,11.9,23.548,6.192,5.575,24.84,17.785,13.192,-3.603,22.917,21.1,8.895,1.417,3.766,20.179,4.539,26.23,25.381,5.063,25.538,20.719,-8.804,-2.114,17.703,-2.689,12.175,1.886,19.481,19.429,20.313,16.302,16.714,9.251,-9.752,14.025,14.847,21.523,10.263,7.313,18.775,14.085,23.886,10.414,8.851,2.846,0.621,12.717,14.406,11.822,15.667,9.232,12.077,7.306,22.887,4.89,14.836,-1.411,23.214,13.837,15.115,17.382,14.721,-1.011,0.118,4.799,35.186,22.252,2.896,24.971,6.777,4.776,10.32,17.865,18.718,5.648,8.582,15.381,16.681,12.703,15.137,1.598,2.976,12.745,5.412,33.015,11.743,11.959,2.94],[15.227,27.075,15.851,0.676,10.3,3.826,-2.374,8.727,18.049,-3.69,10.181,23.196,26.207,16.235,4.165,6.5,6.701,21.957,8.441,-3.465,4.083,10.284,2.049,23.439,12.84,6.175,26.914,19.664,23.96,19.503,3.052,17.525,-3.012,20.886,12.818,-9.185,8.361,15.063,17.024,13.304,-0.784,22.054,14.099,6.226,10.545,4.585,23.263,13.303,9.513,16.261,15.461,0.223,14.058,15.083,33.795,6.067,13.436,1.142,19.269,2.165,4.145,23.936,8.402,10.513,25.77,-5.443,16.311,-0.504,18.214,14.695,25.159,9.427,14.801,2.29,-3.49,8.614,27.928,6.966,9.732,17.011,3.751,5.006,17.52,11.395,14.586,11.143,5.505,23.225,-0.725,-2.913,27.691,23.44,15.942,5.17,10.057,23.6,7.853,7.054,0.948,14.074,4.097,22.72,8.793,8.309,-2.017,11.909,23.864,5.725,5.393,24.976,17.878,13.406,-3.681,22.733,20.986,9.076,1.703,3.518,20.406,5.325,26.291,25.473,5.443,25.592,20.424,-8.717,-2.443,17.485,-2.596,12.856,2.152,19.06,19.328,20.688,16.467,16.895,9.527,-9.7,13.835,15.235,21.694,10.773,7.014,18.622,14.233,23.797,9.909,9.058,2.884,0.587,12.314,13.901,11.815,15.3,9.191,11.864,7.628,23.091,4.568,14.626,-1.544,23.013,13.864,15.031,17.409,14.649,-1.512,0.388,5.004,35.252,22.046,2.476,24.26,6.537,4.674,10.555,18.147,18.2,5.073,8.299,16.141,16.742,12.568,14.939,1.396,2.299,12.651,5.155,33.374,12.134,12.057,3.021],[15.211,27.138,16.007,0.751,10.434,3.967,-2.414,8.789,17.979,-3.532,10.579,23.214,26.144,16.184,4.252,6.457,6.685,21.942,8.256,-3.321,4.034,10.324,2.144,23.386,12.982,5.93,26.94,19.607,23.971,19.607,3.051,17.348,-3.306,20.857,12.997,-9.154,8.573,15.124,17.106,13.048,-0.983,22.05,13.911,6.376,10.792,4.779,23.082,13.474,9.557,16.471,15.536,-0.023,14.165,14.948,33.596,5.752,13.307,1.027,19.163,2.146,3.941,23.837,8.392,10.43,25.791,-5.331,16.541,-0.349,18.576,14.733,24.889,8.904,15.074,1.687,-3.222,8.849,27.861,6.859,10.189,16.409,4.464,5.249,17.723,11.529,14.692,11.278,5.617,23.181,-0.564,-2.761,27.659,23.947,15.472,5.321,9.672,23.255,7.96,7.108,1.882,14.103,3.568,23.184,8.594,8.223,-1.861,11.932,24.224,5.289,5.875,25.122,18.104,13.988,-3.443,22.357,20.537,9.141,1.675,3.852,20.341,5.559,26.372,25.252,5.736,25.668,20.232,-8.704,-2.464,17.557,-2.464,13.393,2.23,19.06,19.062,20.605,16.506,16.731,10.124,-9.282,13.69,14.855,21.686,10.64,6.743,18.907,14.501,23.754,9.53,8.536,3.285,0.542,11.764,13.915,11.701,15.375,9.042,11.776,7.957,22.971,4.317,14.619,-1.679,23.05,14.234,15.42,17.456,14.441,-1.595,-0.157,4.548,35.154,22.227,2.493,23.785,6.819,4.376,10.232,18.227,18.726,5.322,8.542,16.296,16.803,13.112,15.224,0.757,2.347,12.332,4.931,33.154,11.717,12.36,2.631],[15.163,27.127,16.123,0.975,10.586,4.15,-2.554,8.743,17.874,-3.518,10.767,23.229,26.07,16.094,4.291,6.293,6.489,22.045,8.125,-3.149,3.97,10.286,2.174,23.238,13.197,5.922,27.019,19.449,23.997,19.687,3.128,17.166,-3.42,20.989,13.131,-9.03,8.79,15.178,17.085,12.736,-1.131,22.133,13.897,6.368,10.901,5.017,22.868,13.656,9.595,16.472,15.583,-0.307,14.254,14.902,33.482,5.588,13.201,1.0,19.051,2.317,3.72,23.75,8.397,10.399,25.407,-5.32,16.137,-0.246,18.953,15.39,24.96,8.746,15.147,1.166,-3.187,9.167,28.074,7.083,10.353,16.793,4.527,5.155,17.646,11.95,15.002,11.492,5.738,22.973,-0.694,-2.509,27.599,24.283,15.517,5.342,9.915,23.204,7.559,7.054,2.583,14.14,3.833,23.045,8.209,7.996,-1.771,11.949,23.741,5.735,5.85,24.932,17.945,14.1,-3.015,22.562,20.337,9.171,2.222,4.258,20.194,5.47,26.392,25.621,4.871,25.655,20.338,-8.899,-2.69,17.443,-3.435,12.627,1.922,19.666,18.854,20.434,16.603,17.094,10.421,-9.194,14.14,14.484,21.423,10.498,7.149,18.959,14.571,24.001,10.371,8.313,3.825,0.303,11.665,13.875,12.118,15.168,9.025,12.428,7.761,22.402,4.018,15.041,-2.067,23.055,14.083,15.22,17.697,14.447,-1.739,-0.704,4.438,34.964,21.98,2.792,23.853,6.958,4.101,10.188,17.823,19.134,5.667,8.751,16.191,16.631,13.444,15.272,0.982,3.169,12.577,4.764,32.808,11.79,12.088,2.319],[15.202,27.085,16.206,1.234,10.695,4.224,-2.605,8.668,17.769,-3.724,10.682,23.253,26.035,16.162,4.151,6.173,6.319,22.182,8.337,-2.953,3.93,10.179,2.31,23.0,13.308,6.044,27.031,19.292,23.96,19.791,3.161,17.005,-3.432,21.098,13.107,-8.951,8.936,15.159,17.14,12.566,-1.226,22.252,13.94,6.285,11.005,5.228,22.562,13.852,9.64,16.337,15.468,-0.446,14.439,14.868,33.367,5.735,13.17,1.001,18.945,2.569,3.7,23.704,8.467,10.333,25.455,-5.531,16.286,-0.182,18.864,14.761,24.835,9.205,15.122,1.915,-3.884,9.168,28.054,6.903,10.126,16.977,3.51,5.049,17.901,11.864,15.058,11.298,5.838,23.181,-0.978,-2.72,27.264,24.183,15.98,5.016,9.777,23.279,7.728,6.769,2.66,14.25,4.468,22.585,8.328,7.796,-1.605,11.925,23.297,5.473,5.704,24.543,18.339,13.832,-2.495,23.07,20.899,9.134,2.17,4.448,19.511,5.161,26.342,25.655,4.954,25.521,20.408,-8.817,-2.335,17.153,-3.055,12.958,1.925,19.377,18.741,20.46,16.752,16.778,10.527,-9.263,14.552,15.044,21.327,10.454,7.355,18.918,14.305,24.057,10.89,8.573,4.015,0.556,11.716,13.749,12.518,15.155,9.507,12.473,7.598,22.075,4.519,15.436,-1.998,22.672,13.589,15.159,17.419,14.875,-1.842,-0.672,4.259,35.071,21.833,2.75,24.012,7.103,4.415,10.624,17.714,19.197,5.193,8.23,15.845,16.413,13.164,14.914,1.049,3.182,12.157,4.866,33.113,11.594,11.938,1.947],[15.289,27.088,16.332,1.474,10.618,4.179,-2.71,8.655,17.762,-4.04,10.517,23.334,25.83,16.266,3.866,6.083,6.27,22.256,8.602,-2.572,3.975,10.137,2.512,22.827,13.281,6.116,27.03,19.1,23.797,19.938,3.155,16.907,-3.349,20.987,13.098,-8.97,8.985,14.985,17.288,12.591,-1.182,22.317,14.036,6.19,11.213,5.322,22.304,13.915,9.702,16.175,15.279,-0.525,14.589,14.787,33.4,5.979,13.037,0.909,18.976,2.68,3.882,23.693,8.522,10.236,25.67,-5.723,15.986,0.351,18.478,14.708,24.745,9.194,15.081,2.779,-3.667,8.888,27.929,6.928,10.158,16.739,3.991,4.944,17.915,11.944,14.83,11.209,5.803,22.928,-1.085,-3.246,27.396,24.196,15.881,4.852,10.261,22.647,7.772,6.493,2.378,14.173,4.145,23.14,8.912,7.797,-1.516,11.935,23.324,5.003,5.709,24.339,18.286,14.236,-2.886,23.499,20.508,8.846,1.963,4.516,19.862,4.99,26.555,25.387,5.672,25.622,20.66,-8.65,-2.47,16.981,-2.299,13.246,2.244,19.218,18.665,20.762,16.744,16.828,10.604,-9.236,14.104,14.954,22.178,9.956,6.787,19.155,14.268,24.148,10.645,9.145,4.155,0.511,11.311,13.476,12.421,15.375,10.072,12.172,7.616,22.102,5.558,15.328,-1.843,22.55,13.179,15.115,17.127,15.052,-1.872,-0.313,4.154,34.9,21.899,3.158,23.904,7.288,4.81,10.441,17.745,18.875,4.978,7.76,15.735,16.319,13.142,14.978,0.803,2.348,11.965,4.882,32.861,11.419,12.303,2.45],[15.208,27.029,16.414,1.758,10.459,4.297,-2.622,8.671,17.649,-4.306,10.483,23.392,25.625,16.354,3.639,5.902,6.246,22.429,8.856,-2.269,3.98,10.134,2.757,22.561,13.254,6.213,27.112,18.852,23.681,19.969,3.195,16.949,-3.233,20.82,13.02,-9.032,9.016,14.828,17.482,12.637,-1.096,22.423,13.999,6.01,11.398,5.524,22.284,13.868,9.83,15.945,15.182,-0.656,14.632,14.622,33.36,6.09,12.869,0.892,19.139,2.673,4.03,23.626,8.557,10.18,25.285,-5.945,15.856,0.465,18.777,15.299,24.774,9.188,15.012,3.036,-3.807,8.976,28.133,6.804,9.925,16.802,4.748,4.433,18.08,11.797,15.127,11.183,5.837,23.011,-0.894,-3.431,27.263,23.869,15.674,4.648,10.46,22.363,7.412,6.246,1.874,14.183,3.775,23.512,9.272,8.003,-1.45,11.795,23.536,5.441,5.832,24.47,18.555,14.121,-2.73,23.42,19.607,8.953,1.931,4.386,19.854,5.263,26.437,25.115,5.807,25.871,20.884,-8.683,-2.365,17.33,-3.004,13.088,2.525,19.281,18.549,20.714,16.485,17.331,10.345,-8.891,13.729,14.996,22.69,9.93,6.53,19.31,14.081,24.18,9.735,9.888,3.888,0.258,11.388,13.381,12.199,15.117,10.317,12.14,7.625,21.841,5.923,15.064,-1.886,22.746,13.418,15.005,16.975,15.011,-2.044,0.098,4.58,35.025,22.179,2.79,23.675,7.593,5.275,9.865,17.983,18.544,5.538,7.508,15.823,16.229,13.371,14.937,0.883,2.77,11.953,5.026,32.864,11.746,12.077,2.725],[15.0,26.982,16.619,2.148,10.258,4.671,-2.512,8.67,17.565,-4.388,10.575,23.38,25.525,16.457,3.418,5.84,6.158,22.598,8.953,-2.064,4.045,10.013,2.784,22.288,13.095,6.387,27.208,18.624,23.718,20.016,3.374,17.074,-3.282,20.741,12.921,-8.977,9.08,14.644,17.644,12.657,-0.971,22.54,13.9,5.896,11.461,5.801,22.264,13.882,9.817,15.711,15.234,-0.704,14.599,14.472,33.292,6.243,12.719,0.91,19.206,2.631,4.103,23.545,8.626,10.206,25.203,-6.121,16.093,0.353,18.542,15.581,24.871,8.506,14.74,2.751,-3.676,9.144,27.552,7.03,9.732,16.286,4.281,4.495,18.298,11.514,15.345,11.231,6.172,22.811,-0.692,-3.411,26.975,23.479,15.646,4.125,10.552,22.5,7.445,5.982,1.723,14.205,4.241,23.53,9.135,7.776,-1.518,11.889,23.482,5.133,6.329,24.007,18.695,13.523,-2.188,23.573,20.074,9.147,2.588,3.573,19.411,5.571,26.372,25.292,5.414,25.943,21.049,-9.024,-2.289,17.579,-3.276,12.673,2.763,18.94,18.604,20.21,16.385,17.342,9.916,-9.161,13.972,14.98,22.205,10.224,6.257,19.302,13.834,24.334,10.187,10.437,3.996,0.451,11.626,13.529,12.109,15.069,10.524,12.465,7.673,21.969,5.807,14.943,-2.03,22.158,13.337,14.829,17.264,14.586,-2.127,0.125,4.697,35.056,21.916,2.342,23.799,7.404,4.633,9.929,18.304,18.818,6.24,7.928,15.603,16.203,13.64,14.483,0.787,3.638,11.472,5.368,33.256,11.366,11.748,2.711],[14.739,26.955,16.969,2.549,10.115,5.033,-2.52,8.694,17.575,-4.235,10.67,23.321,25.436,16.491,3.234,5.873,5.935,22.788,8.846,-1.913,4.284,9.959,2.637,21.979,12.728,6.488,27.227,18.463,23.851,20.027,3.544,17.202,-3.446,20.514,12.906,-8.877,9.168,14.468,17.664,12.669,-0.836,22.565,13.872,5.887,11.49,6.056,22.158,13.893,9.767,15.595,15.282,-0.711,14.478,14.361,33.227,6.234,12.581,0.89,19.215,2.639,4.125,23.605,8.692,10.111,25.159,-5.962,15.769,0.87,18.084,15.606,24.4,8.241,14.454,2.067,-2.958,8.876,27.664,7.035,10.312,16.185,4.309,4.393,18.179,11.359,15.257,10.94,6.675,22.933,-0.843,-3.385,27.004,23.754,16.139,4.035,10.417,22.624,7.569,6.338,1.727,13.812,4.597,22.948,8.373,7.183,-0.99,11.777,22.962,4.891,6.648,23.402,18.768,13.515,-2.017,23.975,19.897,9.018,3.357,3.597,19.251,5.51,26.523,25.644,5.602,25.651,20.883,-9.334,-2.553,17.253,-2.621,12.887,3.002,18.782,18.914,20.232,16.066,17.378,9.779,-8.996,14.072,14.616,21.872,10.344,6.324,19.522,13.518,24.475,10.525,10.694,4.397,0.721,11.613,13.681,12.239,15.178,10.185,12.715,7.526,22.125,5.898,15.164,-1.631,22.318,12.897,14.458,17.259,14.408,-2.022,-0.296,4.421,34.845,21.855,2.793,23.728,7.324,4.65,10.323,17.965,19.299,6.301,9.006,15.386,16.029,13.982,14.924,0.686,3.237,12.083,4.947,32.908,11.448,11.827,2.614],[14.604,26.917,17.206,2.88,10.035,5.275,-2.505,8.639,17.465,-3.938,10.576,23.246,25.394,16.481,3.139,5.819,5.639,22.827,8.648,-1.729,4.483,10.017,2.459,21.729,12.245,6.497,27.2,18.314,23.907,20.011,3.742,17.246,-3.39,20.156,13.069,-8.751,9.342,14.265,17.682,12.629,-0.602,22.46,13.928,5.874,11.512,6.309,22.112,13.988,9.726,15.604,15.352,-0.646,14.336,14.266,33.164,6.209,12.621,0.818,19.053,2.652,4.002,23.682,8.821,10.003,25.228,-5.816,15.795,1.397,17.992,15.235,24.556,8.997,14.153,2.585,-3.246,9.027,28.238,6.828,10.637,16.128,5.109,3.821,18.611,11.125,15.664,10.935,6.584,22.911,-0.696,-3.101,26.78,24.049,16.237,4.122,10.388,21.941,7.354,5.983,1.759,13.556,4.498,23.164,8.755,7.302,-0.603,11.604,22.44,5.557,6.413,23.449,19.152,13.066,-1.817,24.079,18.972,8.769,3.653,4.244,19.332,5.658,26.943,25.406,6.097,25.776,20.327,-8.478,-2.457,17.384,-2.449,12.667,2.994,18.569,18.981,20.499,16.015,17.576,9.992,-9.019,13.858,14.641,22.463,10.768,6.441,19.305,13.489,24.291,9.937,10.309,4.828,0.973,11.438,13.774,12.595,15.354,9.96,12.586,7.368,21.955,5.673,15.418,-1.72,22.729,12.549,14.571,17.243,14.442,-2.189,-0.548,4.525,34.894,22.205,3.167,23.551,7.949,4.842,10.079,18.258,19.891,5.68,9.119,15.229,15.554,13.732,15.128,0.854,2.935,11.682,4.735,32.587,11.446,11.663,2.337],[14.666,26.903,17.369,3.238,9.985,5.21,-2.442,8.687,17.311,-3.72,10.451,23.237,25.489,16.469,3.046,5.774,5.387,22.666,8.797,-1.468,4.61,10.036,2.429,21.651,11.725,6.632,27.317,18.143,23.727,20.019,3.94,17.195,-3.149,19.998,13.25,-8.599,9.556,14.131,17.788,12.568,-0.328,22.427,14.07,5.774,11.564,6.382,22.068,14.223,9.714,15.612,15.445,-0.582,14.177,14.157,33.234,6.21,12.491,0.742,18.971,2.793,3.953,23.695,8.877,9.831,25.378,-5.5,15.775,1.48,18.337,15.379,24.449,9.001,14.062,3.448,-4.016,9.193,28.02,7.113,10.219,15.645,5.826,3.97,19.206,10.935,16.239,11.14,6.478,22.691,-0.812,-2.739,27.098,23.539,15.571,3.697,10.321,21.609,7.455,5.522,1.423,13.255,4.5,23.777,9.257,7.1,-0.267,11.7,22.411,5.387,6.469,23.44,18.372,12.266,-2.104,23.641,18.701,9.009,3.456,3.848,19.684,5.697,26.337,25.172,5.535,25.995,20.097,-8.778,-1.94,17.877,-3.057,12.187,2.868,18.25,18.763,19.963,15.846,17.404,10.227,-8.613,13.832,14.819,22.562,10.842,6.355,19.17,13.718,24.09,9.854,9.614,5.275,0.842,11.352,13.392,12.649,15.495,9.913,12.63,7.404,22.015,5.224,15.646,-1.391,22.477,12.585,14.718,17.168,14.528,-2.134,-0.741,4.748,34.77,22.124,2.433,23.514,9.233,4.884,9.584,17.965,20.182,5.068,9.038,15.492,15.28,13.338,14.73,0.981,2.752,11.534,4.852,32.675,11.514,11.648,2.389],[14.771,26.91,17.53,3.513,9.915,5.263,-2.557,8.889,17.223,-3.527,10.429,23.149,25.573,16.508,3.032,5.621,5.235,22.363,8.964,-1.168,4.727,10.129,2.492,21.63,11.214,6.828,27.26,18.006,23.501,19.903,3.845,17.234,-2.918,19.968,13.315,-8.448,9.707,14.028,17.918,12.567,-0.09,22.482,14.162,5.659,11.634,6.287,22.077,14.604,9.828,15.634,15.372,-0.625,13.991,13.988,33.331,6.081,12.225,0.584,18.903,2.873,3.993,23.656,9.098,9.587,25.167,-5.259,15.796,1.761,18.542,15.48,24.348,8.796,13.559,4.341,-3.398,8.693,27.811,7.079,9.957,15.943,5.163,3.869,19.198,10.933,16.296,10.802,6.868,22.706,-1.016,-2.529,27.151,23.448,15.464,3.615,10.666,22.363,7.15,5.396,1.396,12.81,4.887,23.843,9.009,6.833,-0.555,11.948,22.247,5.054,6.633,22.982,18.384,11.709,-2.168,22.988,19.076,8.832,2.627,4.153,18.999,6.041,26.202,25.09,5.777,25.941,19.766,-8.802,-1.856,17.958,-3.193,13.068,2.954,18.249,18.61,19.586,15.685,17.456,10.479,-8.46,14.209,14.655,22.308,10.62,6.183,19.318,13.845,24.225,10.029,8.919,5.386,1.379,11.339,13.133,12.852,15.479,10.186,12.893,7.254,21.964,5.165,15.732,-0.917,21.772,12.445,14.586,17.337,14.489,-1.6,-0.312,4.72,34.78,22.019,2.461,23.244,8.895,4.931,9.486,17.931,19.693,5.165,8.837,15.597,15.625,13.292,14.722,0.734,2.977,11.387,5.115,32.548,11.292,11.503,2.456],[14.703,26.839,17.643,3.604,9.761,5.472,-2.644,8.938,17.339,-3.304,10.399,22.971,25.609,16.568,3.06,5.47,5.145,22.014,8.983,-0.931,4.858,10.18,2.605,21.591,10.882,7.022,27.046,17.821,23.246,19.788,3.773,17.311,-2.767,19.99,13.561,-8.332,9.788,13.969,18.113,12.626,0.137,22.62,14.007,5.512,11.72,6.102,22.065,14.906,9.931,15.657,15.241,-0.622,13.82,14.048,33.371,5.94,11.925,0.499,18.726,2.874,4.084,23.571,9.364,9.466,25.15,-5.126,15.396,2.407,17.988,16.005,24.4,8.79,14.141,5.284,-3.366,8.934,28.115,7.329,10.108,16.319,4.582,3.816,18.695,11.006,15.937,10.698,6.956,22.608,-0.79,-2.309,26.683,23.426,15.989,3.734,10.747,22.025,7.219,5.483,1.716,12.341,4.942,23.508,9.114,6.871,-0.778,11.918,22.21,4.992,6.794,22.826,18.925,11.613,-1.731,22.698,19.249,9.11,1.891,3.563,18.731,6.544,26.838,25.02,6.184,25.619,19.558,-8.738,-2.136,17.904,-2.832,12.849,3.234,18.602,18.839,20.107,15.575,17.965,10.151,-8.456,14.316,14.583,22.092,10.491,6.409,19.342,13.333,24.432,10.343,8.459,4.57,1.792,11.418,13.336,13.108,15.37,10.523,12.894,6.826,21.975,5.722,15.887,-0.787,21.888,12.387,14.749,17.184,14.181,-1.805,-0.317,4.517,35.139,22.024,3.003,22.949,8.12,4.489,9.675,17.934,19.622,5.546,9.078,15.137,15.323,13.243,14.916,1.028,3.274,10.694,5.033,32.906,10.721,11.335,2.227],[14.666,26.851,17.664,3.625,9.63,5.669,-2.662,8.997,17.368,-3.122,10.346,22.822,25.594,16.606,3.101,5.392,5.074,21.8,8.947,-0.669,5.005,10.224,2.542,21.514,10.719,7.14,26.924,17.748,23.021,19.628,3.798,17.283,-2.739,20.153,13.759,-8.259,9.793,13.849,18.423,12.657,0.302,22.732,13.795,5.411,11.803,5.929,22.065,15.072,10.076,15.606,15.123,-0.571,13.69,14.254,33.6,6.003,11.687,0.423,18.595,2.725,4.149,23.39,9.591,9.378,25.354,-4.878,15.772,3.48,17.512,16.199,24.347,9.212,14.753,5.412,-3.277,8.728,28.155,7.245,10.1,15.617,4.828,3.662,18.413,10.7,15.819,10.762,6.835,22.459,-1.391,-1.969,26.582,23.02,16.064,3.685,10.424,22.143,7.197,5.659,1.758,11.976,4.608,23.072,9.523,6.483,-0.753,11.942,22.677,4.832,6.731,22.926,18.924,11.775,-1.698,22.674,18.906,9.434,2.796,3.444,18.931,6.89,26.632,24.848,6.106,25.52,19.901,-8.364,-1.881,17.542,-2.31,12.5,3.097,18.656,18.973,20.578,15.448,18.139,9.664,-8.432,14.321,14.639,22.623,10.709,6.459,19.255,12.816,24.534,10.479,8.318,4.225,1.783,11.719,13.581,13.451,15.01,10.46,12.502,6.756,21.709,5.778,16.319,-0.849,22.458,12.411,14.828,16.851,14.184,-1.851,-0.784,3.644,35.188,22.044,3.215,22.887,8.054,4.45,9.526,17.916,20.186,5.292,9.256,15.191,14.85,12.513,14.779,0.964,3.173,10.598,4.798,33.215,11.041,11.222,2.234],[14.633,26.974,17.67,3.697,9.521,5.835,-2.722,9.174,17.28,-2.905,10.218,22.661,25.523,16.736,3.074,5.29,5.02,21.716,8.919,-0.235,5.221,10.404,2.325,21.611,10.662,7.071,26.846,17.691,22.969,19.48,3.802,17.038,-2.733,20.307,13.607,-8.15,9.726,13.594,18.704,12.712,0.414,22.87,13.711,5.375,11.751,5.839,22.148,15.271,10.229,15.576,15.062,-0.629,13.558,14.315,34.007,5.982,11.627,0.285,18.647,2.557,4.078,23.178,9.644,9.325,25.197,-4.631,15.489,3.932,17.769,15.839,24.318,9.509,14.336,5.436,-3.87,8.437,27.915,7.314,10.101,15.966,5.847,3.755,18.62,10.359,16.002,10.628,6.82,22.128,-1.222,-1.748,26.92,23.284,15.793,3.614,10.483,22.271,6.952,5.352,1.567,11.854,4.446,22.367,9.51,6.726,-0.946,11.97,22.644,5.053,6.587,23.258,18.897,11.825,-1.401,23.05,18.77,8.833,3.05,4.302,18.745,7.036,25.8,24.823,6.103,25.698,19.673,-7.692,-1.478,17.192,-1.913,13.119,2.908,18.416,18.417,20.409,15.481,17.986,9.413,-8.314,14.235,14.392,23.265,10.922,6.352,19.565,12.936,24.463,10.401,8.285,4.669,1.4,11.965,13.649,13.547,15.015,10.502,12.387,6.634,21.694,5.329,16.38,-0.74,22.279,12.687,14.47,17.009,14.233,-1.868,-1.102,3.26,35.607,21.603,2.444,22.633,8.916,4.678,9.258,18.108,19.983,5.341,10.127,15.41,14.946,12.167,14.732,1.026,2.803,10.554,4.912,33.066,10.875,11.131,1.787],[14.492,26.991,17.667,3.825,9.43,5.986,-2.837,9.382,17.03,-2.718,10.024,22.521,25.396,16.988,3.024,5.24,5.042,21.75,8.921,0.189,5.427,10.459,2.039,21.807,10.649,6.906,26.763,17.764,23.031,19.359,3.87,16.686,-2.714,20.209,13.396,-7.874,9.617,13.436,18.803,12.743,0.43,23.022,13.682,5.361,11.614,5.8,22.2,15.3,10.311,15.548,15.2,-0.737,13.378,14.344,34.381,5.853,11.675,0.123,18.662,2.352,3.978,22.905,9.832,9.246,25.294,-4.526,15.427,3.718,18.19,16.226,24.372,9.734,13.888,5.263,-3.993,8.444,28.162,7.641,10.224,16.051,6.039,4.145,19.241,10.292,16.251,10.637,7.463,21.802,-1.187,-1.702,26.923,23.062,15.758,3.559,10.715,22.187,7.052,5.33,1.897,11.729,5.161,22.029,9.08,6.898,0.017,12.055,22.15,4.935,5.986,23.211,18.536,11.547,-1.063,23.284,19.261,9.003,2.177,3.696,18.64,7.1,25.754,24.804,6.163,25.456,19.294,-8.014,-1.254,17.239,-2.607,13.354,3.008,18.65,18.311,20.508,15.058,18.312,9.88,-7.839,14.133,14.252,23.337,10.961,6.296,20.064,13.068,24.707,10.599,8.447,4.844,1.426,11.885,13.47,13.708,15.208,10.639,12.69,6.591,22.308,4.662,16.622,-0.667,21.886,12.625,14.698,16.961,13.967,-1.747,-1.079,3.763,36.163,21.383,2.348,22.32,9.299,4.469,9.399,17.892,19.709,5.368,9.846,15.108,15.297,12.797,14.885,0.909,2.758,10.862,5.011,33.485,10.65,11.093,1.803],[14.397,27.004,17.759,3.913,9.391,6.04,-3.067,9.657,16.909,-2.605,9.945,22.234,25.326,17.229,3.033,5.257,5.104,21.899,8.966,0.576,5.575,10.423,1.641,21.876,10.617,6.682,26.656,17.991,23.175,19.2,3.936,16.581,-2.718,20.123,13.392,-7.437,9.405,13.345,18.961,12.719,0.427,23.222,13.678,5.329,11.552,5.715,22.264,15.243,10.399,15.546,15.294,-0.894,13.209,14.388,34.652,5.649,11.746,0.095,18.472,2.264,3.861,22.682,10.089,9.239,25.299,-4.413,15.193,3.478,18.047,16.669,24.0,9.477,13.286,5.744,-3.895,8.162,28.14,7.916,9.995,15.523,5.73,3.588,19.285,10.422,16.288,10.572,7.487,22.424,-1.284,-1.629,26.522,22.637,16.214,3.905,10.54,22.264,7.096,5.628,1.509,12.351,5.514,22.046,9.268,6.467,0.651,12.139,21.753,4.706,6.405,23.43,17.976,11.144,-0.65,23.272,19.396,9.605,2.583,3.685,18.977,7.114,26.338,24.433,5.543,25.062,19.214,-8.012,-1.614,16.857,-3.682,12.607,3.281,18.547,18.047,20.419,15.128,18.559,10.695,-8.037,13.883,14.007,23.152,11.097,6.316,20.141,12.833,25.089,10.767,9.099,4.587,1.667,11.91,12.892,13.515,15.186,10.37,12.628,6.846,21.962,4.726,16.704,-0.652,22.062,12.68,15.055,17.247,13.796,-1.479,-0.995,4.209,36.349,21.118,2.514,22.159,8.793,4.258,9.14,18.267,19.932,5.239,9.6,14.84,15.712,13.241,14.979,0.813,2.663,10.902,5.022,34.086,11.017,10.909,1.92],[14.304,26.967,17.84,4.056,9.364,6.047,-3.314,9.84,16.763,-2.472,9.839,21.872,25.39,17.479,3.005,5.326,4.938,21.919,9.079,0.877,5.616,10.459,1.54,21.982,10.801,6.482,26.621,18.158,23.336,19.016,3.937,16.513,-2.87,20.213,13.333,-7.198,9.233,13.355,19.129,12.665,0.466,23.448,13.697,5.353,11.601,5.674,22.259,15.14,10.403,15.553,15.383,-0.974,13.128,14.591,34.87,5.414,11.768,0.144,18.319,2.22,3.794,22.543,10.097,9.279,25.157,-4.11,15.119,3.395,17.263,16.603,23.836,9.393,13.46,5.769,-3.859,8.496,28.035,8.261,9.52,15.799,5.721,3.515,19.021,10.12,16.157,10.748,7.019,22.258,-1.662,-1.295,26.01,22.598,16.623,4.146,10.391,21.982,7.211,5.313,0.744,12.482,5.043,22.191,9.998,6.564,0.559,12.048,21.596,4.76,6.321,23.731,17.857,11.269,-0.03,23.362,19.352,9.048,2.095,4.843,18.882,7.349,26.309,24.087,5.107,25.046,18.829,-7.639,-2.107,17.006,-3.616,12.301,3.927,18.422,18.21,20.023,15.075,18.999,10.56,-7.371,14.101,13.874,23.242,11.257,5.53,19.756,12.997,25.207,10.796,9.671,4.045,1.593,12.19,11.96,13.685,15.036,10.504,12.257,7.198,21.884,5.167,16.441,-0.496,22.359,12.781,15.155,17.196,13.602,-1.95,-1.003,3.995,36.663,20.942,2.485,22.339,8.355,4.042,9.363,17.965,19.918,5.256,10.282,15.038,15.663,13.122,14.925,0.722,2.716,10.591,4.905,34.472,10.938,10.94,1.885],[14.355,26.978,17.883,4.009,9.368,6.04,-3.378,9.894,16.574,-2.245,9.66,21.578,25.421,17.598,3.0,5.434,4.561,21.84,9.203,1.043,5.567,10.409,1.532,22.089,11.082,6.389,26.571,17.944,23.369,18.768,4.224,16.614,-3.136,20.213,13.259,-7.109,9.181,13.48,19.219,12.552,0.475,23.574,13.73,5.215,11.692,5.693,22.245,15.155,10.318,15.668,15.334,-0.998,13.088,14.886,35.144,5.359,11.655,0.302,18.137,2.073,3.836,22.58,9.904,9.286,25.208,-4.037,14.952,3.491,17.292,16.751,23.949,10.135,13.711,5.848,-4.118,8.403,27.971,8.076,9.732,15.909,6.145,3.833,18.604,10.257,16.144,10.781,7.169,21.375,-1.614,-1.121,26.674,22.544,16.408,3.776,10.749,21.983,7.25,5.086,0.887,12.373,5.047,22.683,9.938,6.319,0.768,11.724,21.577,5.275,5.867,23.653,18.044,11.76,0.097,22.883,19.621,8.855,1.721,4.009,18.463,6.955,25.753,24.322,5.452,25.074,18.727,-7.47,-1.879,17.032,-2.796,12.906,3.916,18.691,17.963,20.645,15.095,18.752,9.834,-7.738,14.041,13.873,24.156,11.168,5.22,20.221,13.187,25.285,10.82,9.95,4.299,1.959,12.034,12.02,13.736,14.665,10.888,12.293,7.088,22.3,4.924,16.757,-0.654,22.316,13.135,15.144,17.193,13.699,-2.266,-1.002,3.664,36.739,20.729,2.693,22.776,8.257,4.104,9.356,17.754,19.794,4.926,10.486,14.977,15.445,12.494,15.108,0.609,2.867,10.813,4.314,34.44,10.84,11.01,1.817],[14.546,27.053,17.866,3.873,9.329,6.073,-3.317,9.906,16.384,-2.106,9.512,21.479,25.464,17.523,3.025,5.531,4.373,21.85,9.264,1.164,5.482,10.368,1.514,22.046,11.244,6.432,26.452,17.558,23.344,18.523,4.558,16.659,-3.194,20.269,13.3,-7.119,9.241,13.646,19.294,12.523,0.581,23.795,13.662,5.038,11.776,5.609,22.354,15.284,10.285,15.778,15.259,-1.017,13.043,15.119,35.311,5.414,11.591,0.368,17.945,2.002,3.755,22.633,9.751,9.236,25.383,-3.9,14.628,3.461,17.446,17.118,23.998,10.327,13.692,5.624,-4.241,7.732,27.96,8.08,9.797,15.461,6.227,3.59,18.741,10.582,15.946,10.311,7.821,21.076,-1.55,-1.266,26.827,22.243,16.224,3.832,10.832,22.451,7.281,5.024,1.308,12.584,4.781,23.386,9.337,5.736,0.781,11.795,21.754,5.537,6.224,23.574,18.047,12.181,-0.355,22.532,19.012,8.837,1.91,3.989,18.483,7.023,25.871,24.597,5.174,24.882,19.393,-7.047,-1.909,17.105,-3.022,12.984,3.865,18.576,18.155,20.925,15.467,18.714,9.209,-7.768,14.151,13.974,24.281,11.137,5.534,20.111,12.871,25.435,10.528,9.626,4.835,1.961,12.239,12.489,13.876,14.985,10.723,12.591,6.704,21.956,4.595,17.028,-1.087,22.035,13.258,15.014,17.127,13.916,-1.881,-0.774,3.802,37.033,20.886,1.842,22.688,8.295,4.013,9.218,17.953,19.739,4.865,9.805,15.229,15.829,12.062,15.185,0.698,2.374,10.767,4.185,34.275,10.668,10.474,2.124],[14.606,26.969,17.808,3.758,9.152,6.155,-3.339,9.924,16.235,-2.092,9.243,21.498,25.396,17.455,2.995,5.567,4.431,21.98,9.161,1.13,5.388,10.357,1.592,21.923,11.307,6.471,26.487,17.316,23.269,18.484,4.908,16.668,-3.191,20.309,13.469,-7.026,9.289,13.722,19.396,12.679,0.735,24.045,13.613,5.091,11.804,5.468,22.374,15.486,10.226,15.882,15.27,-0.904,12.995,15.304,35.409,5.473,11.439,0.304,17.884,1.779,3.587,22.513,9.725,9.107,25.544,-3.866,14.517,3.307,17.29,16.584,23.84,9.851,13.78,5.666,-4.175,7.824,28.342,8.071,9.375,15.863,5.853,3.668,18.803,10.264,16.264,10.212,7.806,21.794,-1.394,-1.045,26.224,22.295,16.464,4.016,10.738,21.982,7.4,5.23,1.543,12.826,4.417,23.676,9.649,5.924,0.39,11.941,21.978,5.356,6.183,23.442,17.983,12.115,-0.436,22.188,18.078,9.016,2.019,4.854,18.627,6.948,26.195,24.868,5.087,24.836,19.863,-6.988,-2.132,17.004,-3.673,12.433,4.228,18.935,18.285,20.903,15.489,18.89,9.768,-7.417,13.887,13.772,24.172,11.483,5.552,20.271,12.992,25.732,10.504,8.997,3.982,1.627,12.171,12.49,13.834,15.089,10.639,12.719,6.508,21.872,4.598,16.678,-0.91,22.226,13.539,14.941,16.791,13.754,-1.446,-0.618,3.202,37.22,20.993,1.698,22.533,8.019,3.86,9.355,17.774,19.538,5.481,9.582,15.598,16.315,11.969,15.184,0.873,2.459,10.557,4.758,34.277,10.568,10.602,2.086],[14.56,26.901,17.774,3.766,9.076,6.133,-3.409,9.909,16.222,-2.18,9.032,21.635,25.276,17.401,2.991,5.538,4.664,22.069,9.079,0.881,5.309,10.447,1.673,21.826,11.364,6.431,26.622,17.322,23.181,18.621,5.311,16.638,-3.281,20.356,13.509,-6.769,9.347,13.667,19.463,12.657,0.829,24.246,13.615,5.238,11.81,5.126,22.328,15.599,10.202,16.052,15.201,-0.646,12.839,15.435,35.398,5.571,11.301,0.228,17.744,1.537,3.448,22.283,9.838,9.035,25.144,-3.818,14.404,2.803,16.652,16.381,23.636,9.696,13.674,5.275,-4.017,7.889,28.14,8.256,9.228,15.775,6.117,3.627,19.08,9.977,16.226,10.473,7.267,21.734,-1.744,-1.041,25.958,22.374,16.385,3.979,10.437,21.593,7.314,5.597,1.575,12.426,4.638,23.738,9.667,6.057,0.254,12.025,21.803,5.287,5.92,23.156,18.342,12.051,0.04,22.445,18.383,9.147,2.265,4.688,18.515,7.044,25.934,24.772,5.186,25.05,20.162,-7.324,-1.998,16.727,-3.405,12.427,4.466,18.989,18.269,20.952,15.148,18.768,10.736,-7.058,14.259,13.795,24.519,11.415,5.314,20.82,13.205,25.627,10.55,8.463,3.58,2.223,12.403,12.229,13.865,14.982,10.623,12.368,6.772,22.239,4.738,16.78,-0.598,22.46,13.715,15.095,16.365,13.725,-1.344,-0.933,3.025,37.039,20.615,2.297,23.163,7.92,3.914,9.062,18.096,19.359,5.587,10.084,15.837,16.348,12.042,15.763,1.131,2.358,10.149,4.794,34.769,10.497,10.849,1.807],[14.532,26.814,17.786,3.599,9.185,6.13,-3.544,10.077,16.208,-2.284,9.129,21.624,25.259,17.301,3.06,5.51,4.838,22.192,9.004,0.681,5.478,10.617,1.661,21.703,11.279,6.306,26.631,17.583,23.096,18.901,5.399,16.525,-3.153,20.475,13.511,-6.583,9.451,13.579,19.471,12.542,0.976,24.346,13.489,5.341,11.865,4.872,22.28,15.695,10.187,16.308,15.006,-0.375,12.642,15.497,35.318,5.558,11.206,0.166,17.521,1.471,3.335,22.206,9.896,8.936,25.027,-4.048,14.487,2.744,16.644,16.963,23.669,10.056,13.23,5.372,-4.476,7.609,27.786,8.448,9.541,15.433,6.026,3.726,18.95,9.912,15.945,10.467,7.342,21.589,-1.727,-1.063,26.474,22.382,16.36,3.568,10.124,22.247,7.413,5.313,1.361,12.158,4.632,23.769,9.573,6.291,0.301,12.077,21.59,5.044,5.688,23.151,18.746,12.549,-0.596,22.673,19.116,9.06,2.354,4.717,18.418,6.765,25.984,24.473,5.328,25.075,20.004,-6.616,-2.106,16.877,-3.711,12.806,4.889,18.855,18.144,20.663,15.222,18.882,10.792,-6.981,14.45,14.085,25.089,10.605,5.292,20.794,13.503,25.861,10.66,8.672,3.786,2.386,12.114,11.985,14.114,14.983,10.974,12.265,6.957,22.267,4.312,17.257,0.117,22.327,13.673,15.23,16.588,13.779,-1.44,-1.094,3.631,36.936,20.572,1.786,22.907,8.154,3.99,8.726,17.58,19.078,5.311,10.278,15.85,15.815,11.685,15.584,1.276,2.199,10.193,4.587,35.379,10.57,10.113,1.786],[14.434,26.799,17.823,3.533,9.324,6.081,-3.704,10.416,16.232,-2.357,9.379,21.463,25.459,17.321,2.981,5.541,4.825,22.358,8.832,0.547,5.642,10.73,1.639,21.718,11.146,6.238,26.54,17.944,23.097,19.174,5.318,16.542,-3.06,20.466,13.468,-6.535,9.651,13.704,19.449,12.354,1.164,24.531,13.192,5.394,11.977,4.806,22.184,15.925,10.257,16.493,14.849,-0.281,12.522,15.415,35.293,5.373,11.025,0.164,17.211,1.475,3.463,22.222,9.724,8.933,25.152,-4.034,14.324,2.738,16.964,16.679,23.949,10.57,13.212,5.442,-4.827,7.668,27.801,8.588,9.393,15.537,6.24,3.962,18.628,10.482,16.128,10.388,7.813,21.215,-1.797,-1.085,26.688,22.252,16.198,3.905,10.146,22.373,7.421,5.087,1.492,12.305,4.836,23.718,9.452,6.629,0.388,12.049,21.455,5.197,5.489,22.974,18.515,12.14,-1.198,22.81,19.339,9.047,1.938,5.134,18.706,6.928,26.11,24.393,5.153,25.117,20.147,-6.64,-1.841,16.944,-3.529,12.955,4.572,19.277,18.152,20.961,15.517,18.945,10.079,-7.099,14.359,13.789,24.652,11.103,5.51,20.354,13.261,26.081,10.546,8.995,3.668,2.773,11.98,12.11,14.506,14.441,10.675,12.503,6.976,21.959,3.828,17.28,0.139,22.064,13.492,15.364,16.604,13.252,-1.652,-1.012,3.465,37.161,20.617,1.133,22.402,7.964,3.79,9.152,16.701,19.115,5.356,9.985,15.702,16.073,11.167,15.088,1.114,1.876,10.576,4.475,34.945,10.456,9.917,1.544],[14.342,26.869,17.793,3.561,9.578,6.036,-3.73,10.582,16.23,-2.37,9.301,21.305,25.71,17.307,2.853,5.744,4.779,22.5,8.65,0.53,5.768,10.685,1.645,21.7,10.988,6.202,26.475,18.125,23.195,19.402,5.431,16.579,-2.944,20.348,13.407,-6.618,9.88,13.856,19.393,12.172,1.329,24.637,12.716,5.476,12.193,4.626,22.016,16.219,10.29,16.45,14.681,-0.412,12.494,15.296,35.359,5.206,10.851,0.061,16.942,1.271,3.685,22.233,9.444,9.146,25.135,-3.874,14.57,2.748,17.227,16.751,23.926,10.763,13.577,5.074,-4.854,7.665,27.945,8.85,9.739,15.827,6.204,3.174,18.881,10.845,16.071,10.288,7.594,21.227,-2.142,-0.957,26.656,21.841,16.109,4.001,10.312,22.119,7.438,5.543,1.915,12.344,5.334,23.607,9.076,6.278,0.313,12.119,21.754,5.086,5.831,23.256,18.563,11.652,-0.906,23.2,19.523,9.192,1.743,4.601,18.846,7.029,26.119,24.544,4.862,25.017,19.998,-7.364,-1.227,16.995,-2.993,12.65,4.162,19.061,18.19,20.839,15.376,18.65,9.55,-6.854,14.424,13.036,24.444,11.634,5.809,19.916,13.32,26.333,10.409,9.456,3.461,2.875,12.022,12.069,14.656,14.35,10.78,12.366,7.067,22.271,4.28,17.409,-0.017,22.433,13.713,15.567,16.028,12.958,-1.895,-0.518,3.474,37.056,20.631,1.844,22.53,7.835,3.797,9.343,16.576,18.487,5.182,9.603,15.909,16.613,11.706,15.073,1.107,1.994,10.048,4.902,34.516,10.581,10.434,1.804],[14.458,26.879,17.672,3.46,9.711,5.938,-3.708,10.484,16.23,-2.377,9.079,21.145,25.808,17.197,2.667,5.895,4.928,22.621,8.582,0.543,5.799,10.66,1.692,21.608,10.774,6.152,26.42,18.017,23.421,19.536,5.596,16.616,-2.675,20.226,13.369,-6.687,10.096,13.882,19.301,12.145,1.397,24.817,12.477,5.551,12.447,4.591,22.112,16.408,10.389,16.305,14.351,-0.653,12.634,15.35,35.383,5.119,10.771,0.048,16.728,1.132,3.803,22.246,9.161,9.16,25.16,-3.925,14.881,2.905,17.832,17.524,24.08,10.327,13.358,5.232,-4.816,7.989,28.175,8.76,9.883,15.801,6.444,3.313,18.998,10.665,16.042,10.745,7.438,21.444,-1.965,-0.819,26.538,21.938,16.216,3.707,10.015,22.024,7.593,5.345,1.662,11.876,5.646,23.669,8.639,6.462,-0.129,12.002,22.078,5.021,5.825,23.173,18.752,11.656,-0.2,23.347,19.581,9.015,2.158,5.042,18.919,7.546,26.227,25.027,5.115,24.772,19.716,-6.586,-1.118,16.845,-3.262,12.154,4.946,18.837,18.128,20.225,14.904,18.378,10.6,-6.995,14.4,12.847,24.122,11.165,6.324,20.182,13.426,26.184,10.733,9.404,3.549,2.814,12.08,11.574,14.679,14.111,11.128,12.053,7.171,22.077,4.114,17.435,-0.081,22.456,13.847,15.317,15.725,13.252,-1.48,-0.674,4.264,37.108,20.654,2.079,22.871,7.632,3.41,9.452,17.401,18.112,5.228,9.269,16.064,16.412,11.716,14.932,1.018,2.25,9.895,5.189,34.711,10.54,10.083,1.818],[14.616,26.879,17.555,3.489,9.689,5.9,-3.639,10.263,16.374,-2.455,8.978,21.095,25.785,17.286,2.602,5.873,5.193,22.699,8.512,0.574,5.919,10.621,1.779,21.505,10.562,6.121,26.471,17.886,23.622,19.609,5.913,16.509,-2.505,20.119,13.346,-6.637,10.278,13.779,19.152,12.233,1.301,25.005,12.521,5.713,12.49,4.703,22.317,16.504,10.699,16.158,13.993,-0.813,12.743,15.518,35.452,5.114,10.694,0.053,16.676,1.098,3.987,22.222,8.877,8.993,25.247,-3.859,15.718,2.814,18.167,16.969,24.056,10.145,13.205,5.322,-4.963,7.301,27.874,8.447,9.418,15.652,6.231,3.851,18.61,10.778,15.84,10.689,7.141,21.018,-1.946,-0.916,26.753,21.898,16.395,3.216,9.68,21.644,7.637,5.637,1.595,11.189,5.396,23.805,8.854,6.796,0.108,12.158,22.437,5.428,5.428,22.917,18.601,12.105,-1.002,23.153,19.212,9.022,2.296,5.421,18.725,7.512,26.197,25.246,5.034,24.781,19.819,-7.057,-1.267,16.724,-2.972,11.786,4.923,18.867,18.283,20.068,15.285,18.885,11.142,-6.526,14.248,12.916,24.167,11.075,6.505,20.537,13.491,26.43,11.162,9.616,3.598,2.734,12.109,11.712,14.874,14.014,11.284,12.385,6.923,22.104,3.889,17.617,-0.027,21.847,13.652,15.224,14.953,13.537,-1.341,-0.888,4.04,37.196,20.622,1.943,23.154,7.224,3.347,9.228,16.928,18.104,5.16,9.406,15.51,16.255,11.478,14.357,0.973,1.997,10.48,4.915,34.953,10.409,9.488,1.593],[14.65,26.736,17.447,3.609,9.684,5.792,-3.575,10.239,16.686,-2.526,8.864,21.075,25.681,17.411,2.623,5.82,5.39,22.646,8.481,0.46,5.913,10.718,1.826,21.365,10.505,5.932,26.591,17.874,23.744,19.615,5.991,16.351,-2.33,19.983,13.31,-6.585,10.507,13.692,19.054,12.333,1.07,25.126,12.578,5.788,12.461,4.712,22.322,16.537,11.055,15.975,13.567,-0.945,12.636,15.465,35.485,5.137,10.633,0.066,16.523,1.118,4.151,22.139,8.728,9.034,25.331,-4.089,16.34,2.828,18.459,16.481,24.046,10.586,13.499,5.155,-4.894,7.02,27.768,8.52,9.235,15.939,6.255,3.517,18.105,10.862,15.643,10.477,7.267,21.087,-2.091,-1.161,26.974,22.291,16.613,3.383,9.244,21.431,7.718,6.25,1.923,10.677,5.182,24.154,8.744,6.697,0.597,12.02,22.531,5.997,5.787,23.073,19.037,11.961,-1.292,23.133,19.274,9.08,2.253,5.423,18.485,7.422,26.298,25.52,5.023,25.004,20.56,-7.026,-0.737,16.474,-3.052,11.6,4.8,18.531,17.853,20.493,15.454,19.133,10.412,-6.747,14.164,13.135,25.214,11.17,6.088,20.744,13.4,26.777,10.739,9.96,3.366,2.585,12.18,12.47,15.01,14.081,11.745,12.687,7.27,22.828,4.786,17.894,0.731,22.543,13.609,15.545,15.029,13.137,-2.008,-1.233,3.315,37.238,20.697,1.44,22.725,7.213,3.361,9.082,16.783,18.37,5.231,9.661,15.165,16.389,11.498,14.25,0.765,1.331,10.306,4.798,35.178,10.267,10.064,1.493],[14.738,26.549,17.426,3.639,9.767,5.807,-3.588,10.582,16.978,-2.664,8.841,21.303,25.582,17.495,2.758,5.915,5.41,22.596,8.432,0.424,5.802,10.745,1.813,21.351,10.357,5.812,26.716,18.102,23.861,19.738,5.743,16.123,-1.995,19.9,13.265,-6.679,10.726,13.624,19.01,12.511,0.974,25.182,12.554,5.704,12.481,4.718,22.444,16.481,11.284,15.754,13.36,-1.039,12.369,15.249,35.486,5.074,10.626,0.033,16.545,0.965,4.118,22.07,8.8,9.189,24.939,-4.411,16.43,2.71,18.774,17.424,23.945,10.636,13.519,5.466,-4.804,7.461,27.643,8.889,9.286,16.038,6.076,3.262,17.958,10.875,15.663,10.776,7.308,21.353,-1.894,-1.336,26.81,22.205,16.382,3.97,9.176,21.307,7.653,5.957,1.782,11.113,5.019,24.289,8.514,6.834,0.345,12.163,22.461,6.029,5.73,22.93,19.368,11.784,-1.216,22.984,19.513,9.112,2.279,5.491,18.886,7.799,26.317,25.384,4.709,25.093,20.667,-6.424,-0.809,16.285,-2.979,11.545,4.727,18.33,17.845,20.381,15.513,18.608,9.944,-6.805,13.736,13.046,25.456,11.044,5.522,20.875,13.162,26.942,10.857,10.344,3.873,2.564,12.44,12.456,14.968,13.92,12.08,12.709,7.516,22.413,4.843,17.787,0.222,22.451,13.612,14.838,14.686,12.469,-2.219,-1.144,4.313,37.254,20.496,1.762,22.333,7.194,3.759,9.552,16.395,18.138,5.135,9.548,16.059,16.288,10.992,14.112,0.557,1.436,9.963,4.88,35.145,10.436,10.173,1.806],[14.886,26.296,17.501,3.73,9.923,5.917,-3.636,10.775,17.197,-2.755,8.823,21.703,25.573,17.605,2.855,6.16,5.185,22.581,8.392,0.503,5.789,10.759,1.798,21.408,10.331,5.672,26.782,18.479,23.865,19.863,5.582,16.034,-1.689,19.833,13.065,-6.888,10.883,13.576,18.921,12.785,0.913,25.041,12.36,5.547,12.569,4.741,22.487,16.478,11.406,15.67,13.263,-1.085,11.933,15.172,35.485,4.948,10.628,0.058,16.624,0.91,4.138,21.959,8.975,9.478,24.878,-4.234,16.233,2.471,18.76,17.796,23.887,10.495,13.457,5.385,-4.339,7.443,27.477,8.931,9.767,15.794,5.871,3.687,18.422,10.918,15.746,10.735,7.325,21.744,-1.814,-1.645,26.515,22.192,16.399,3.882,9.923,21.451,8.018,5.712,1.378,10.964,5.408,24.182,8.345,6.685,0.021,12.037,22.321,5.593,5.305,22.781,19.096,11.581,-1.075,22.596,19.774,9.093,2.54,5.201,19.389,7.483,26.305,25.273,4.965,25.167,20.682,-7.029,-0.589,16.265,-2.198,11.605,4.364,18.391,17.68,20.078,15.384,18.226,10.02,-6.898,13.745,12.669,24.673,10.946,5.151,20.725,13.157,26.791,11.595,10.644,3.452,2.349,12.51,12.182,14.973,13.978,12.074,12.546,7.079,22.042,3.981,17.467,-0.378,22.083,13.543,14.589,14.487,12.322,-2.05,-0.772,4.001,37.18,20.343,1.75,22.682,7.492,3.81,9.534,16.586,17.985,5.049,9.671,15.994,16.181,10.919,14.126,0.622,1.886,10.121,4.651,34.707,10.761,9.616,1.703],[15.029,26.15,17.52,3.692,9.785,6.022,-3.526,10.57,17.23,-2.812,8.715,22.105,25.615,17.758,2.914,6.379,4.937,22.424,8.426,0.583,5.783,10.794,1.694,21.461,10.35,5.576,26.874,18.79,23.698,19.809,5.54,16.037,-1.498,19.85,12.753,-7.137,10.997,13.555,18.763,12.892,0.715,24.763,12.133,5.303,12.654,4.609,22.313,16.583,11.531,15.81,13.133,-1.12,11.702,15.317,35.458,4.815,10.532,0.077,16.755,1.11,4.014,22.022,9.13,9.765,24.655,-4.325,16.085,2.787,19.003,16.996,23.941,10.611,13.414,5.565,-4.446,7.265,27.34,8.687,9.86,16.198,6.189,3.864,18.822,10.857,15.962,10.826,7.273,21.866,-1.76,-1.261,26.392,22.638,16.858,3.728,10.125,21.839,8.308,5.627,1.159,10.891,5.462,24.056,8.906,6.397,0.558,11.752,22.217,6.041,4.829,22.882,18.789,11.814,-0.987,22.637,19.966,8.952,2.624,5.046,19.49,7.414,26.345,25.174,5.125,25.255,20.691,-7.475,0.203,16.36,-1.777,12.176,4.797,18.237,17.757,20.201,15.409,18.444,10.197,-7.215,13.915,12.127,23.826,11.3,5.202,20.584,13.284,26.13,11.661,10.971,3.688,2.362,12.629,12.716,14.833,13.845,11.736,12.303,6.951,22.172,4.225,17.389,-0.184,22.091,13.665,14.934,14.386,12.637,-2.034,-0.717,3.302,37.141,20.45,1.594,22.806,7.561,3.114,9.983,17.039,18.28,5.347,9.634,15.608,16.396,10.333,13.932,0.744,1.428,10.487,5.089,34.245,10.535,9.638,1.988],[15.217,26.139,17.515,3.721,9.467,6.106,-3.249,10.296,17.132,-2.833,8.559,22.172,25.798,17.774,2.854,6.613,4.878,22.422,8.579,0.624,5.746,10.702,1.529,21.497,10.5,5.506,26.945,18.803,23.491,19.584,5.601,16.041,-1.279,20.051,12.54,-7.385,11.006,13.619,18.667,12.938,0.502,24.509,11.985,5.071,12.728,4.659,22.015,16.655,11.626,15.947,12.999,-1.031,11.686,15.509,35.468,4.778,10.464,0.162,16.986,1.219,3.791,22.187,9.061,9.967,24.669,-4.453,16.663,3.053,19.139,16.833,24.13,10.496,13.79,5.577,-4.369,6.773,26.982,8.575,8.933,16.412,6.478,3.745,18.453,10.575,15.719,10.422,7.249,22.028,-1.612,-1.621,27.066,23.228,17.121,4.108,9.886,21.832,8.451,5.504,1.339,11.288,4.984,23.802,8.885,6.35,0.413,11.975,22.215,6.363,5.017,23.073,18.983,11.718,-0.783,21.671,20.101,9.029,2.121,5.02,19.468,7.422,26.522,25.048,4.835,25.184,20.187,-7.045,-0.136,16.545,-2.037,12.924,4.432,18.663,17.62,19.996,15.398,18.402,11.007,-6.912,13.523,12.03,24.118,11.148,5.416,20.473,13.071,26.385,11.544,11.536,3.452,2.125,12.561,12.985,15.134,13.732,11.936,12.454,6.739,21.892,4.466,17.984,0.192,22.183,14.152,14.991,14.499,12.631,-2.012,-0.996,3.768,36.946,20.713,2.023,22.389,7.529,3.176,9.922,16.896,18.741,4.893,9.442,16.014,16.934,10.328,13.748,0.719,1.55,10.397,5.434,34.058,10.575,9.9,1.66],[15.452,26.162,17.472,3.939,9.151,6.153,-3.007,10.143,17.202,-3.012,8.32,22.008,26.211,17.66,2.853,6.809,5.029,22.386,8.67,0.634,5.666,10.559,1.316,21.523,10.596,5.416,26.93,18.61,23.382,19.258,5.491,15.954,-1.222,20.269,12.529,-7.43,11.062,13.686,18.653,12.981,0.439,24.541,11.987,4.951,12.807,4.853,21.745,16.857,11.718,16.035,12.956,-0.886,11.7,15.764,35.491,4.737,10.506,0.107,17.306,1.365,3.649,22.219,8.882,10.023,24.601,-4.583,17.152,2.72,19.136,17.413,24.558,10.141,13.776,5.211,-4.035,7.086,27.341,8.518,8.897,16.325,6.171,3.181,17.963,10.089,15.665,10.33,7.604,22.022,-1.212,-1.752,27.292,22.902,16.852,3.97,10.122,21.537,8.621,5.493,1.299,11.389,5.109,23.587,8.649,6.703,0.073,12.146,21.776,6.345,5.33,23.094,18.608,11.928,-0.937,21.083,19.863,9.183,1.625,5.055,19.558,7.329,26.621,24.818,4.934,25.25,20.019,-7.46,-0.235,16.332,-2.03,12.61,4.523,18.713,17.565,20.446,15.522,18.5,11.593,-7.509,12.928,12.191,24.416,11.146,5.667,19.97,13.121,26.179,11.467,12.075,3.417,1.693,12.548,12.559,15.275,13.62,12.907,12.485,6.356,21.696,4.141,18.163,-0.235,21.858,14.386,15.305,14.612,12.265,-1.883,-1.039,3.99,37.025,20.887,2.062,22.953,7.274,3.419,9.636,16.884,18.859,4.689,9.533,16.199,17.095,10.769,13.278,0.74,1.829,9.955,4.95,34.141,10.823,9.601,1.973],[15.591,26.308,17.328,4.018,8.981,6.18,-2.842,10.125,17.421,-3.182,8.107,21.933,26.598,17.36,2.757,6.784,5.283,22.288,8.712,0.573,5.62,10.469,1.099,21.514,10.685,5.447,26.953,18.323,23.277,18.835,5.233,15.808,-1.373,20.355,12.505,-7.535,11.192,13.772,18.706,13.013,0.333,24.576,12.144,4.931,12.876,4.791,21.526,17.045,11.879,16.153,13.07,-0.928,11.699,15.907,35.538,4.778,10.54,0.037,17.59,1.615,3.667,22.363,8.886,9.906,24.627,-4.814,16.635,2.698,19.301,17.92,24.858,9.965,13.909,5.84,-3.529,7.021,27.061,8.36,9.291,16.668,5.812,3.6,18.244,9.812,15.466,10.163,7.799,21.92,-1.31,-2.022,27.395,22.163,17.091,4.141,10.164,21.373,8.65,5.792,0.695,11.14,5.031,23.082,8.715,6.91,0.351,11.801,21.762,6.927,5.027,23.052,18.412,11.992,-1.144,20.686,19.281,9.145,1.77,4.898,19.484,7.588,26.768,24.526,4.745,25.23,19.746,-7.568,-0.104,15.882,-2.006,11.835,4.471,18.72,17.523,20.902,15.613,18.359,11.793,-6.853,13.483,12.241,24.606,11.346,5.52,19.12,13.565,26.256,11.624,12.518,3.713,1.871,12.584,12.348,15.286,13.663,13.432,12.494,6.248,22.066,4.461,17.931,-0.315,21.825,14.883,15.072,14.805,11.893,-1.89,-0.84,3.888,36.959,20.603,2.084,22.994,7.427,3.391,9.879,17.686,18.976,4.822,9.594,16.01,16.735,10.695,12.919,0.972,1.977,10.306,4.339,34.453,10.757,9.357,1.632],[15.633,26.403,17.089,4.143,8.964,6.189,-2.71,10.116,17.374,-3.374,8.062,22.027,26.752,17.189,2.839,6.765,5.565,22.082,8.81,0.547,5.687,10.387,0.987,21.378,10.638,5.436,27.107,18.001,23.247,18.417,4.952,15.798,-1.501,20.321,12.617,-7.527,11.327,13.87,18.681,13.096,0.261,24.603,12.184,4.978,12.944,4.629,21.539,17.283,12.078,16.194,13.16,-1.19,11.609,16.012,35.496,4.932,10.562,-0.186,17.9,1.682,3.749,22.323,9.07,9.737,24.749,-4.813,16.452,3.329,19.103,17.365,25.09,10.1,14.024,5.822,-2.793,6.728,27.21,8.191,8.85,16.595,5.806,3.653,18.541,9.831,15.606,10.03,7.655,21.979,-1.123,-2.016,27.732,22.61,16.969,3.977,9.884,21.498,8.322,6.236,0.487,11.71,5.221,23.029,8.541,7.143,0.136,11.306,21.648,7.13,4.825,23.044,17.884,11.71,-0.93,20.308,19.115,8.788,2.019,4.65,19.167,7.61,26.82,24.58,5.091,25.305,19.436,-6.789,-0.361,16.006,-1.815,11.608,4.108,18.918,17.572,20.398,15.751,17.818,11.916,-6.939,13.34,12.43,24.377,11.35,4.908,18.911,13.727,26.533,12.059,13.003,3.252,2.01,12.676,12.486,15.526,13.891,13.592,12.469,6.605,21.584,4.379,18.09,-0.551,21.534,14.792,15.069,14.864,12.016,-2.152,-1.026,3.745,36.834,20.801,2.658,22.746,7.623,3.451,9.998,17.665,19.542,5.117,9.673,16.306,16.473,10.271,13.252,0.65,2.508,10.653,4.985,34.636,10.691,9.378,1.667],[15.659,26.469,16.973,4.23,9.08,6.192,-2.454,9.98,17.063,-3.491,8.041,22.32,26.754,17.082,3.013,6.799,5.656,21.802,8.849,0.561,5.783,10.22,0.927,21.231,10.566,5.529,27.236,17.794,23.245,18.211,4.728,16.083,-1.433,20.217,12.715,-7.356,11.485,13.718,18.564,13.036,0.208,24.61,12.116,5.061,13.025,4.442,21.522,17.518,12.224,16.327,13.426,-1.492,11.401,15.934,35.342,5.055,10.665,-0.36,18.004,1.86,3.833,22.159,9.205,9.901,24.755,-4.958,16.8,3.386,18.897,17.011,25.129,10.331,13.755,5.806,-2.562,6.953,27.511,8.316,8.499,16.174,6.546,3.848,18.17,10.28,15.291,10.164,7.167,21.778,-0.827,-2.098,27.843,22.938,16.788,3.543,10.157,21.688,8.154,5.908,0.537,11.694,5.455,22.76,8.624,7.348,0.088,10.893,21.687,6.824,5.181,22.651,18.129,11.987,-0.657,20.04,19.239,8.492,1.989,4.474,18.693,7.576,27.135,24.661,5.021,25.624,19.381,-6.956,-0.239,16.434,-2.083,11.879,4.146,18.559,17.617,20.098,15.607,17.439,11.928,-7.104,12.489,12.451,23.866,11.463,4.451,18.965,13.408,26.366,12.733,13.003,2.998,1.912,12.836,13.09,15.802,13.78,13.443,12.568,6.324,21.677,3.983,18.547,-0.151,21.514,14.742,15.351,15.454,12.498,-2.451,-1.086,4.242,36.962,21.166,2.542,22.818,7.403,3.462,9.451,17.492,19.508,5.335,9.764,16.548,16.928,10.243,13.203,0.216,1.884,10.563,5.414,34.412,10.753,9.648,1.203],[15.634,26.461,16.937,4.307,9.312,6.155,-2.217,9.829,16.859,-3.566,8.033,22.538,26.633,16.951,3.005,6.833,5.514,21.513,8.835,0.661,5.816,10.048,0.807,21.087,10.688,5.73,27.323,17.751,23.302,18.32,4.59,16.349,-1.192,20.052,12.54,-7.156,11.538,13.429,18.449,12.928,0.369,24.547,12.128,5.109,13.111,4.322,21.502,17.689,12.431,16.491,13.728,-1.673,11.245,15.774,35.224,5.183,10.819,-0.531,17.834,1.922,3.955,22.023,9.187,10.186,24.841,-5.175,16.546,2.964,18.759,17.575,24.988,10.176,13.801,5.915,-2.41,6.796,27.259,8.071,8.396,16.035,6.52,4.235,18.114,10.164,15.428,10.56,6.999,22.437,-0.688,-2.224,27.904,22.792,17.101,4.053,10.331,21.391,8.441,5.6,0.645,11.473,5.324,22.534,9.271,7.247,0.365,10.689,21.756,6.554,5.147,22.597,18.063,11.736,-0.919,20.142,19.202,8.351,1.652,4.056,18.548,7.655,27.27,24.729,4.842,25.522,19.307,-7.753,-0.205,16.53,-1.416,11.915,4.123,18.864,18.024,20.133,15.237,17.827,12.045,-6.665,11.911,12.465,24.224,11.581,4.545,18.365,13.152,26.333,12.728,13.205,3.002,1.215,12.208,13.282,15.97,13.603,13.339,12.945,5.945,21.491,4.057,18.53,-0.094,21.863,14.048,15.165,15.498,12.888,-2.717,-1.408,4.491,36.7,21.521,2.629,22.858,7.526,3.787,10.148,17.367,19.461,5.292,9.715,16.542,17.107,10.367,12.734,0.05,2.185,10.534,5.227,34.101,11.129,9.952,1.176],[15.644,26.398,16.98,4.431,9.538,6.012,-2.116,9.633,16.814,-3.627,8.132,22.585,26.565,16.93,2.986,6.939,5.535,21.34,8.879,0.778,5.732,9.94,0.682,21.119,10.764,5.636,27.322,17.818,23.412,18.401,4.451,16.415,-1.038,20.003,12.166,-7.044,11.588,13.296,18.38,12.772,0.488,24.677,12.257,5.028,13.155,4.313,21.614,17.846,12.61,16.506,13.685,-1.79,11.14,15.362,35.012,5.227,11.004,-0.691,17.753,2.088,3.93,22.045,9.133,10.492,24.547,-5.13,15.946,3.029,18.543,17.674,24.801,9.839,13.829,5.819,-2.069,7.334,27.363,7.671,8.454,16.489,5.749,3.777,18.209,9.786,15.474,10.974,7.371,22.619,-0.445,-2.114,27.515,22.784,16.865,4.215,10.018,20.955,8.807,5.957,0.974,11.998,5.378,22.624,9.671,7.271,0.54,11.081,21.779,6.31,5.109,22.669,17.845,11.472,-0.914,19.72,19.054,8.397,0.625,3.775,18.934,7.595,27.105,24.577,5.562,25.546,19.478,-7.194,0.005,16.326,-1.265,11.412,3.835,18.685,18.304,20.223,15.103,17.714,11.748,-6.632,11.971,12.507,24.752,11.749,5.063,17.721,13.21,26.68,12.387,13.301,3.007,1.967,12.362,12.757,15.951,13.974,13.764,12.866,6.099,21.165,4.131,18.184,-0.136,21.58,13.811,15.324,15.068,12.887,-2.601,-1.649,4.948,36.445,21.009,2.936,22.751,7.786,3.81,10.479,17.883,19.353,5.25,9.534,16.552,16.536,10.522,12.99,-0.179,2.85,10.67,5.433,34.437,11.21,9.767,1.126],[15.752,26.379,16.98,4.631,9.572,5.866,-2.114,9.371,16.813,-3.552,8.383,22.396,26.605,16.954,2.925,7.06,5.768,21.27,9.006,0.871,5.619,9.994,0.617,21.321,10.769,5.516,27.322,17.941,23.422,18.314,4.308,16.282,-1.026,19.954,11.831,-7.08,11.635,13.373,18.3,12.696,0.731,24.947,12.423,4.956,13.021,4.28,21.622,17.787,12.731,16.415,13.541,-1.912,11.127,15.003,34.859,5.235,11.064,-0.768,17.863,2.459,3.941,22.093,9.126,10.716,24.471,-4.772,15.647,3.047,18.519,17.686,24.873,9.732,14.075,5.616,-1.968,7.211,27.298,7.561,9.047,16.948,5.524,3.476,17.991,10.231,15.181,10.425,7.239,22.068,-0.406,-1.79,27.481,22.414,16.519,4.088,9.685,21.32,8.888,6.101,0.672,11.958,5.52,22.902,9.251,7.238,0.57,10.972,21.94,6.21,4.716,22.92,18.066,11.803,-0.684,19.789,19.069,8.662,-0.46,4.304,18.992,7.341,26.944,24.566,5.074,25.747,19.518,-7.21,0.262,16.09,-1.565,11.222,3.585,18.71,18.147,20.095,15.254,17.386,11.12,-6.094,12.439,12.728,24.525,11.605,5.457,17.71,13.176,26.815,12.329,13.427,3.194,2.466,12.643,12.412,15.905,14.087,14.327,12.571,6.243,21.702,4.097,18.033,0.122,21.444,13.02,15.438,15.308,12.964,-2.658,-1.802,4.664,36.428,20.895,3.071,23.296,7.811,3.885,10.227,17.792,19.01,4.996,9.892,16.844,15.658,10.464,13.088,-0.105,2.652,10.897,5.18,34.632,11.304,9.929,0.982],[15.997,26.382,16.719,4.841,9.364,5.692,-2.032,9.172,16.812,-3.404,8.825,22.013,26.595,17.017,2.87,7.061,5.878,21.362,9.076,0.951,5.7,10.086,0.473,21.528,10.67,5.346,27.363,17.916,23.396,18.179,4.325,16.216,-1.055,19.841,11.576,-7.054,11.673,13.566,18.24,12.708,1.03,24.994,12.643,4.949,12.706,4.215,21.607,17.61,12.766,16.345,13.68,-1.915,11.233,14.563,34.805,5.13,11.102,-0.776,17.978,2.789,3.886,22.203,9.227,10.864,24.644,-4.579,15.67,3.252,18.532,17.363,25.079,9.741,14.276,6.087,-2.117,7.213,27.32,7.374,9.246,17.056,6.093,3.821,17.808,10.313,14.861,10.51,6.805,21.878,-0.49,-1.798,28.01,22.298,16.412,4.053,10.091,21.838,8.86,6.215,0.002,11.635,5.39,22.878,9.09,7.5,0.69,10.823,21.712,7.035,4.688,23.076,17.834,11.72,-0.728,20.052,19.161,8.646,-0.946,4.424,19.061,7.441,26.909,24.651,4.47,25.694,19.463,-7.571,0.013,16.201,-1.478,11.252,3.63,18.704,17.934,19.676,15.39,17.895,10.925,-6.466,12.502,13.103,24.255,11.296,4.905,17.871,13.1,26.794,12.664,13.395,3.143,2.539,12.261,12.655,15.858,13.705,14.224,12.357,6.423,20.902,3.784,18.397,0.792,21.581,12.907,15.479,15.232,12.806,-2.756,-1.497,4.19,36.392,21.051,3.301,23.227,7.632,3.906,10.499,17.105,19.425,4.987,9.964,17.031,15.507,10.183,13.097,-0.126,2.892,10.925,5.196,33.974,11.346,9.977,0.948],[16.176,26.465,16.443,5.017,9.182,5.651,-1.927,9.148,16.825,-3.26,9.181,21.671,26.648,17.032,2.996,7.12,5.995,21.399,9.013,0.888,5.902,10.124,0.242,21.69,10.495,5.049,27.243,17.778,23.371,18.126,4.391,16.318,-1.049,19.624,11.554,-7.013,11.653,13.649,18.381,12.788,1.322,24.809,12.754,4.944,12.515,4.229,21.449,17.338,12.683,16.337,14.016,-1.843,11.318,14.267,34.707,5.033,11.22,-0.668,18.039,2.978,3.757,22.243,9.288,10.964,24.573,-4.804,16.386,3.689,18.739,16.737,24.951,9.393,14.368,6.832,-1.978,7.728,27.469,7.206,9.128,16.897,5.977,4.089,17.479,9.462,14.734,10.634,6.102,21.759,-0.145,-1.656,27.82,22.415,16.787,3.772,10.345,21.493,8.899,5.914,-0.146,11.651,5.37,23.127,9.906,7.901,1.075,10.848,21.758,7.758,5.144,23.247,17.576,11.649,-0.768,20.214,19.118,8.431,-1.358,4.384,18.8,7.765,27.127,24.417,4.887,25.481,19.502,-7.883,-0.091,16.637,-1.527,10.898,3.726,18.501,18.091,19.852,15.472,17.362,10.991,-7.293,11.529,13.543,24.758,11.08,4.825,18.172,13.111,26.615,12.92,13.509,2.771,2.339,12.212,12.812,15.48,14.28,13.604,12.375,6.437,21.241,3.71,18.02,0.953,21.548,12.57,15.433,15.135,12.958,-2.634,-1.309,3.767,36.122,21.268,3.152,23.1,7.575,3.782,10.135,17.709,19.068,4.932,9.531,16.289,15.623,10.714,13.297,-0.106,3.091,10.754,5.285,33.507,11.522,10.367,1.0],[16.247,26.577,16.208,5.207,8.944,5.558,-1.783,9.144,16.871,-3.135,9.319,21.569,26.628,17.006,3.17,7.356,6.114,21.509,8.902,0.855,5.99,10.064,-0.048,21.753,10.611,4.912,26.984,17.593,23.424,18.194,4.428,16.569,-1.013,19.393,11.587,-7.103,11.626,13.581,18.58,12.87,1.476,24.754,12.907,4.873,12.509,4.302,21.311,16.865,12.508,16.242,14.329,-1.702,11.468,14.0,34.642,5.165,11.376,-0.511,18.109,2.947,3.626,22.312,9.204,10.917,24.655,-4.598,16.987,3.736,18.703,16.823,24.862,9.431,14.459,6.594,-1.693,7.694,26.728,7.412,9.328,16.987,5.584,4.007,17.362,9.792,14.518,10.268,5.939,21.823,0.019,-1.472,27.387,22.033,16.956,3.957,9.948,21.446,8.577,5.715,0.192,11.888,5.434,23.18,10.049,7.933,0.727,10.72,21.54,7.939,4.501,23.466,17.643,11.685,-0.802,20.244,18.726,8.523,-1.801,4.13,18.719,7.56,27.118,24.011,4.708,25.221,19.302,-8.253,-0.254,16.441,-1.651,10.899,3.813,18.657,18.271,19.835,15.459,17.235,11.416,-6.794,10.9,13.218,24.629,11.198,5.37,18.509,13.269,26.521,12.56,13.174,2.668,2.664,12.332,13.151,15.055,14.559,13.512,11.845,6.236,21.341,4.257,17.541,0.499,21.639,13.024,14.867,15.44,13.095,-2.553,-1.466,3.472,36.182,20.897,3.53,23.001,7.415,4.115,10.348,17.871,18.889,4.673,9.504,15.981,15.595,11.155,13.77,-0.171,3.282,11.433,5.473,33.412,11.983,10.772,1.364],[16.354,26.482,16.074,5.311,8.821,5.421,-1.618,9.133,16.857,-3.1,9.419,21.651,26.531,16.91,3.313,7.424,6.035,21.64,8.777,0.787,5.904,10.018,-0.296,21.844,10.994,4.788,26.721,17.434,23.387,18.318,4.514,16.778,-1.082,19.339,11.54,-7.14,11.501,13.465,18.787,12.898,1.388,24.695,13.119,4.781,12.226,4.324,21.311,16.547,12.398,15.942,14.7,-1.51,11.627,13.899,34.759,5.353,11.628,-0.307,18.249,2.929,3.533,22.283,9.149,10.824,24.682,-4.163,16.412,3.704,18.77,17.272,24.756,9.278,14.508,6.346,-1.301,8.052,27.125,7.45,9.611,17.019,5.696,4.195,17.402,9.715,14.413,10.019,5.938,21.954,-0.223,-1.381,27.787,22.203,16.992,4.733,9.731,21.556,9.115,6.168,0.261,12.395,5.085,23.038,9.374,7.748,0.161,10.128,21.584,8.187,4.29,23.482,17.519,11.698,-0.725,20.363,18.323,8.672,-2.092,4.014,18.863,7.642,26.566,23.849,3.898,24.995,19.46,-8.202,-0.083,16.516,-1.311,10.935,4.259,17.969,18.558,19.534,15.39,17.746,11.695,-6.832,10.708,12.457,24.467,11.101,5.266,18.811,13.055,26.419,11.962,13.236,2.748,2.855,12.344,13.131,14.694,14.78,13.935,12.023,5.77,20.638,4.645,17.446,0.914,21.241,12.463,14.836,15.652,13.471,-2.151,-1.265,3.616,36.087,20.957,3.311,23.155,7.37,4.245,10.763,17.119,19.184,5.131,9.539,16.485,15.413,11.125,14.176,0.306,3.143,11.607,4.983,33.42,11.852,10.881,1.462],[16.492,26.429,16.228,5.162,8.759,5.335,-1.575,9.129,16.891,-2.995,9.675,21.928,26.395,16.789,3.53,7.563,5.867,21.693,8.559,0.675,5.755,9.912,-0.519,21.935,11.252,4.645,26.414,17.404,23.253,18.411,4.659,16.978,-1.07,19.294,11.239,-7.081,11.411,13.365,19.034,12.796,1.341,24.613,13.17,4.669,11.773,4.313,21.118,16.494,12.497,15.723,15.064,-1.232,11.718,13.85,34.823,5.494,11.828,-0.104,18.313,2.906,3.379,22.234,9.149,10.833,24.589,-4.464,15.711,3.638,18.654,17.268,25.028,9.153,14.638,6.558,-1.025,8.078,27.402,7.343,9.786,16.988,5.562,4.105,17.223,9.549,14.485,10.117,6.276,22.004,-0.022,-1.329,27.728,22.212,16.628,5.056,10.071,21.575,9.136,5.871,-0.031,12.618,5.278,23.08,9.053,7.683,0.571,10.159,21.413,7.736,4.36,23.572,17.783,12.336,-1.02,20.26,18.43,8.684,-1.593,4.708,18.804,7.644,26.226,24.073,3.985,24.734,19.648,-7.483,-0.174,16.878,-1.158,11.092,3.728,17.892,18.88,19.419,15.199,17.642,11.413,-7.827,11.507,13.172,24.412,10.641,5.429,18.997,12.775,26.434,12.002,13.214,2.643,2.573,12.755,12.766,14.921,14.927,13.719,12.102,5.528,20.851,4.551,17.21,0.617,21.732,12.291,14.602,16.325,13.444,-2.263,-1.26,4.208,36.21,20.953,3.051,22.835,7.429,4.459,10.539,17.607,19.21,5.346,9.58,16.508,14.744,11.611,14.315,0.549,2.873,11.133,4.309,33.813,11.407,10.812,1.618],[16.609,26.383,16.425,4.898,8.643,5.307,-1.558,9.085,16.909,-2.885,10.068,22.236,26.258,16.614,3.635,7.673,5.685,21.668,8.442,0.577,5.677,9.805,-0.618,21.963,11.331,4.61,26.186,17.552,23.171,18.473,4.771,17.272,-0.985,19.259,11.05,-7.16,11.342,13.326,19.154,12.654,1.257,24.555,13.194,4.663,11.394,4.194,20.965,16.481,12.69,15.68,15.47,-1.002,11.754,13.909,34.879,5.543,11.763,-0.134,18.39,2.841,3.354,22.057,9.112,10.743,24.483,-4.526,15.782,3.653,18.598,17.146,24.758,9.285,15.0,6.345,-1.402,8.212,26.803,7.485,9.88,16.985,5.122,4.298,17.178,9.847,14.589,9.805,6.706,22.206,0.199,-1.356,27.218,22.963,16.893,4.976,10.185,22.058,9.468,5.631,-0.555,12.837,5.496,22.965,8.371,7.408,0.641,10.333,21.433,7.213,4.199,23.804,18.227,12.26,-1.118,20.285,18.654,8.573,-0.609,4.109,18.75,7.354,26.003,24.318,4.175,24.552,19.301,-7.676,-0.335,16.947,-1.392,10.703,4.064,18.348,18.873,19.597,15.166,18.143,10.948,-7.728,11.989,13.835,23.934,10.578,4.858,19.089,12.836,26.341,12.457,13.166,2.699,2.318,12.384,12.931,15.01,14.72,13.487,11.581,5.811,21.052,4.25,16.978,0.763,21.429,11.95,14.843,16.772,13.373,-1.967,-0.74,4.35,36.502,21.025,3.302,22.891,7.215,4.53,10.55,17.961,19.247,5.286,9.834,16.066,14.684,11.691,14.826,0.56,3.21,11.241,3.281,34.692,11.894,11.165,1.777],[16.657,26.277,16.537,4.681,8.444,5.298,-1.571,9.172,16.934,-2.941,10.398,22.538,26.085,16.458,3.51,7.707,5.559,21.596,8.337,0.486,5.622,9.779,-0.491,22.112,11.335,4.646,26.091,17.817,23.244,18.534,4.771,17.493,-0.875,19.302,11.042,-7.315,11.286,13.31,19.199,12.568,1.169,24.431,13.282,4.743,11.141,4.035,20.866,16.377,13.048,15.862,15.82,-0.764,11.822,13.991,35.056,5.538,11.666,-0.14,18.443,2.914,3.205,21.866,8.995,10.617,24.489,-4.114,16.051,3.125,18.76,16.754,24.428,9.326,14.888,6.04,-1.663,8.97,26.488,7.729,10.025,17.048,5.248,4.693,17.605,9.733,14.788,9.08,6.821,22.377,-0.135,-1.323,27.223,22.867,16.819,4.843,9.831,22.027,9.545,5.581,-0.566,12.967,5.07,22.881,8.2,7.374,0.105,10.225,21.639,7.318,4.179,23.814,17.667,11.684,-1.237,20.006,18.758,8.39,-0.858,3.945,19.171,7.285,25.951,24.115,3.79,24.499,19.435,-8.303,-0.198,17.486,-1.267,10.392,4.044,18.255,19.146,19.697,15.175,18.429,11.097,-7.162,11.057,13.767,24.041,10.328,4.584,18.93,13.039,26.013,12.496,13.029,2.616,2.532,11.945,13.005,14.796,14.722,13.327,10.86,6.394,20.89,3.898,17.651,0.868,21.264,12.307,14.756,16.954,13.649,-1.964,-0.611,3.917,36.718,20.907,3.113,22.907,7.377,4.36,10.608,17.964,19.53,5.231,9.956,16.165,15.158,11.505,15.498,0.364,3.225,11.394,3.529,34.716,11.851,11.367,1.71],[16.523,26.103,16.538,4.44,8.267,5.405,-1.569,9.399,17.087,-3.018,10.542,22.552,25.948,16.223,3.386,7.775,5.582,21.446,8.227,0.288,5.457,9.815,-0.338,22.202,11.252,4.575,26.058,18.033,23.302,18.486,4.714,17.8,-0.745,19.419,11.087,-7.451,11.28,13.347,19.221,12.502,1.111,24.344,13.294,4.833,10.955,3.913,20.861,16.365,13.381,16.108,16.023,-0.706,11.931,14.274,35.233,5.603,11.686,-0.128,18.644,2.906,3.012,21.652,8.875,10.446,24.215,-4.396,16.572,2.734,18.897,16.107,24.744,9.618,14.677,5.513,-1.195,8.863,27.028,7.518,10.307,17.243,5.507,4.133,17.81,9.883,14.786,8.528,6.376,22.663,-0.108,-1.432,27.409,22.394,16.59,4.931,9.351,21.794,9.6,5.601,-0.144,12.872,5.057,22.715,8.212,7.391,0.181,9.931,21.552,7.234,4.107,24.052,18.023,12.029,-1.373,19.982,18.815,8.236,-1.832,4.421,19.5,6.989,26.102,24.261,3.974,24.466,19.471,-7.963,0.398,17.597,-1.118,10.145,3.694,18.281,19.523,19.666,15.137,17.938,11.688,-7.361,10.651,13.581,24.3,9.999,4.988,18.898,13.226,26.181,12.646,13.038,2.228,2.672,12.329,12.809,14.594,14.995,13.587,10.724,5.864,20.643,3.821,17.445,0.373,21.244,12.731,14.67,17.174,13.604,-2.145,-1.073,3.627,36.761,20.554,3.193,22.537,7.371,4.958,10.556,17.994,19.61,5.188,9.836,16.279,15.584,11.922,15.563,0.77,2.785,11.288,4.354,34.473,11.55,11.092,1.746],[16.331,25.904,16.445,4.128,8.181,5.462,-1.357,9.585,17.307,-3.131,10.506,22.357,25.938,15.935,3.488,7.812,5.672,21.269,8.075,0.116,5.31,9.86,-0.377,22.121,11.228,4.53,26.098,18.068,23.275,18.357,4.759,18.123,-0.613,19.539,11.021,-7.472,11.386,13.433,19.139,12.489,0.985,24.442,13.246,4.811,10.766,3.816,20.922,16.328,13.568,16.289,16.152,-0.861,12.041,14.64,35.356,5.829,11.702,-0.229,18.83,2.854,3.005,21.473,8.754,10.31,24.118,-4.587,17.034,2.709,19.128,16.122,24.809,10.049,14.701,5.275,-0.921,8.62,26.823,7.781,10.528,17.279,5.563,3.839,17.343,9.396,14.692,8.843,6.463,22.422,0.225,-1.643,27.282,22.935,16.312,4.968,9.284,21.948,9.728,5.851,0.184,12.626,4.92,22.513,8.468,7.345,0.436,9.675,21.652,7.187,4.099,24.045,18.226,12.161,-1.619,20.14,18.97,8.229,-2.092,3.992,19.344,6.806,25.758,24.533,3.843,24.46,19.56,-7.978,0.488,17.675,-1.146,10.885,3.547,18.537,19.683,19.909,15.341,17.888,11.428,-7.865,11.824,13.435,23.941,9.871,5.526,19.01,13.113,26.122,12.961,12.982,2.122,2.238,12.351,12.661,14.606,15.015,14.229,11.407,5.66,20.42,4.38,17.045,0.324,21.317,13.226,15.132,16.804,13.707,-1.771,-1.378,3.428,36.478,20.652,2.934,22.502,7.092,5.034,10.207,18.378,20.274,5.416,9.915,16.41,15.924,11.941,15.28,0.863,2.795,11.389,4.423,34.694,11.443,10.974,1.529],[16.152,25.777,16.399,3.924,8.275,5.4,-1.139,9.835,17.578,-3.213,10.472,22.217,25.892,15.794,3.677,7.833,5.732,21.073,8.002,-0.007,5.273,9.909,-0.491,22.036,11.327,4.5,26.093,18.148,23.306,18.224,4.76,18.325,-0.571,19.631,11.171,-7.507,11.362,13.554,18.88,12.486,0.74,24.506,13.274,4.794,10.6,3.78,20.919,16.181,13.704,16.501,16.182,-1.039,12.128,14.9,35.303,6.143,11.722,-0.363,19.107,2.858,2.996,21.532,8.731,10.273,23.915,-4.807,17.414,2.399,19.443,16.071,24.426,10.017,14.582,5.057,-1.388,8.713,26.377,8.118,10.57,16.766,5.69,4.601,17.073,9.257,14.553,9.083,6.618,22.232,0.203,-1.918,27.063,22.752,15.761,5.064,9.317,21.896,9.251,5.784,0.174,12.578,4.613,22.088,8.792,7.525,0.017,9.663,21.563,7.365,4.092,23.728,17.314,12.01,-1.382,20.432,19.038,8.649,-1.548,4.205,19.557,6.934,25.92,24.43,3.733,24.522,19.367,-7.752,0.331,18.1,-0.858,10.889,3.558,18.319,19.817,20.092,15.435,18.236,10.931,-7.736,11.472,13.31,23.568,9.962,5.078,19.421,13.138,26.353,13.004,13.207,2.33,1.798,12.527,12.537,14.587,14.973,14.946,11.601,5.409,20.741,4.783,17.065,0.528,21.238,13.1,15.129,16.875,13.781,-1.756,-1.458,3.378,36.954,20.136,2.701,22.33,6.864,4.713,9.836,18.583,20.466,5.819,9.371,16.971,16.083,11.645,15.843,0.602,2.81,11.452,4.336,34.523,11.432,11.052,1.34],[15.974,25.733,16.447,3.777,8.458,5.279,-1.167,10.035,17.871,-3.284,10.644,22.198,25.776,15.777,3.882,7.895,5.691,20.922,8.015,-0.081,5.36,9.962,-0.468,22.036,11.38,4.444,26.088,18.359,23.226,18.12,4.752,18.405,-0.507,19.746,11.357,-7.462,11.104,13.574,18.732,12.516,0.445,24.444,13.378,4.717,10.512,3.796,20.797,15.949,13.879,16.546,16.205,-1.171,12.07,15.069,35.236,6.122,11.713,-0.497,19.385,2.834,3.123,21.497,8.703,10.376,23.89,-4.736,17.45,2.636,19.637,16.188,24.357,9.843,14.248,5.179,-1.295,8.948,26.615,8.272,10.426,16.624,5.757,4.863,17.001,9.702,14.607,9.233,6.199,22.194,0.324,-2.024,27.211,22.481,15.605,5.245,9.51,21.78,8.672,5.425,0.068,12.917,4.84,21.614,8.814,7.565,-0.094,10.1,21.479,7.016,3.953,23.917,17.479,12.106,-1.803,20.359,19.052,9.198,-1.539,4.43,19.945,7.173,26.045,24.221,4.011,24.326,19.089,-7.566,0.23,18.454,-0.975,11.094,3.914,18.416,19.685,19.82,15.419,17.75,11.071,-7.899,10.946,13.377,24.099,10.098,4.344,19.103,13.107,26.113,12.731,12.956,2.425,1.855,12.041,12.701,14.343,15.112,15.279,10.884,5.521,21.091,4.661,17.044,0.519,21.209,13.384,15.071,17.138,13.629,-2.479,-1.489,2.98,36.96,20.559,3.08,22.746,6.929,5.122,9.47,18.475,20.446,5.94,9.19,17.216,16.226,11.846,15.921,0.229,2.68,11.238,3.577,34.721,11.294,11.324,1.392],[15.906,25.825,16.441,3.681,8.653,5.135,-1.188,10.077,17.962,-3.414,10.944,22.414,25.691,15.769,4.016,7.945,5.618,20.824,8.004,-0.128,5.512,10.082,-0.346,22.207,11.492,4.469,26.124,18.584,23.016,18.187,4.834,18.433,-0.495,19.826,11.465,-7.385,10.82,13.41,18.651,12.483,0.308,24.467,13.435,4.561,10.514,3.835,20.723,15.641,14.022,16.49,16.187,-1.394,11.921,15.368,35.206,5.96,11.598,-0.516,19.608,2.864,3.13,21.472,8.594,10.422,24.037,-4.761,17.514,2.155,19.777,16.21,24.461,10.058,14.265,5.15,-1.139,9.247,26.589,8.393,10.681,16.593,5.477,4.35,17.271,9.851,14.639,9.622,6.17,21.953,0.388,-1.903,27.168,22.4,16.017,5.474,9.627,21.976,8.268,5.347,0.126,13.193,5.183,21.106,8.117,7.461,-0.196,10.577,21.307,6.997,3.917,24.013,17.795,12.01,-1.694,19.994,19.183,9.566,-1.821,4.018,20.029,7.219,26.252,24.124,3.807,24.276,19.187,-7.612,0.479,18.487,-0.995,11.559,3.693,18.63,19.64,20.157,15.358,17.684,11.13,-8.307,11.679,13.613,24.22,9.649,4.478,18.406,12.863,26.303,12.695,12.201,2.273,1.952,12.293,12.879,14.112,15.128,15.556,10.497,6.046,20.341,3.742,16.71,-0.16,21.212,13.601,15.331,17.415,13.786,-3.008,-1.354,3.423,36.704,21.068,2.879,22.334,7.073,4.842,9.558,18.254,20.799,5.354,9.693,16.526,16.498,11.988,15.547,0.026,2.677,11.452,2.92,34.677,11.596,11.407,1.317],[15.986,25.871,16.498,3.619,8.87,5.005,-1.043,10.072,17.918,-3.619,11.123,22.675,25.611,15.755,3.989,7.984,5.521,20.696,7.864,-0.104,5.726,10.28,-0.239,22.368,11.61,4.497,26.268,18.692,22.882,18.232,4.855,18.469,-0.53,19.868,11.729,-7.453,10.661,13.297,18.539,12.594,0.343,24.678,13.477,4.482,10.583,3.759,20.639,15.285,14.175,16.306,16.142,-1.738,11.905,15.614,35.193,5.81,11.499,-0.41,19.694,2.816,3.035,21.416,8.419,10.399,24.104,-5.083,17.506,1.938,19.63,15.669,24.649,10.508,14.284,4.916,-1.507,9.516,26.768,8.19,10.985,16.748,5.074,4.404,17.218,9.721,14.675,9.707,6.357,22.99,0.35,-1.995,26.972,22.78,16.053,5.219,9.525,22.399,8.331,5.692,0.113,13.233,4.818,21.005,7.884,7.223,-0.439,10.818,21.071,7.145,4.397,24.148,17.803,12.017,-1.725,19.526,19.281,9.473,-1.699,4.315,20.146,7.233,26.184,23.962,3.632,24.581,19.169,-7.504,0.698,18.227,-0.81,10.824,3.78,18.584,19.694,20.088,15.131,18.062,10.782,-7.885,11.757,13.638,24.127,9.606,4.469,18.62,12.95,26.33,12.818,11.855,2.275,1.955,12.475,12.647,13.726,15.093,15.628,10.821,6.058,20.47,2.968,16.415,-0.001,20.786,14.308,14.985,17.278,13.339,-2.815,-1.399,3.675,36.647,20.17,2.623,22.181,6.754,5.141,10.342,18.558,20.737,4.972,9.533,16.719,16.831,12.266,16.044,-0.101,2.642,11.015,2.837,34.446,11.553,11.005,1.414],[16.125,25.858,16.603,3.551,9.045,4.96,-0.921,10.028,17.865,-3.859,11.19,22.979,25.542,15.658,3.841,7.991,5.509,20.583,7.67,-0.219,5.882,10.488,-0.213,22.576,11.449,4.571,26.396,18.701,22.887,18.137,4.978,18.497,-0.522,19.743,11.833,-7.53,10.492,13.277,18.535,12.735,0.49,24.882,13.505,4.47,10.74,3.626,20.592,14.938,14.281,16.026,16.162,-2.07,11.985,15.929,35.193,5.76,11.354,-0.291,19.657,2.633,2.971,21.227,8.204,10.227,24.016,-5.381,17.463,2.573,19.713,15.613,24.373,10.63,14.608,4.974,-1.267,9.664,26.703,8.202,11.401,17.305,5.169,4.64,17.326,9.672,14.761,9.635,6.216,23.085,0.779,-2.443,27.08,23.422,15.431,5.43,9.388,21.982,8.567,5.704,0.189,13.005,4.825,21.351,8.084,7.211,-0.139,10.837,21.073,7.326,4.374,24.505,17.864,12.135,-1.889,19.1,19.426,9.175,-1.392,4.584,20.191,7.335,25.844,23.516,3.827,24.717,19.309,-7.94,0.695,18.197,-0.494,11.605,4.015,18.613,19.696,19.889,15.092,17.747,10.645,-7.882,11.903,13.371,24.48,9.611,4.183,18.896,13.376,26.537,13.088,12.262,2.201,2.056,12.416,12.999,13.402,15.395,16.0,11.32,5.592,21.064,3.084,16.037,0.462,20.602,14.401,15.1,17.174,13.174,-2.838,-1.191,3.045,36.709,20.536,2.595,22.126,6.331,5.384,10.477,18.13,20.547,5.376,8.827,16.947,16.941,11.973,16.901,-0.221,2.609,10.703,3.367,34.32,11.822,10.602,1.562],[16.279,25.799,16.733,3.503,9.039,4.952,-0.871,10.029,17.945,-4.065,11.216,23.225,25.543,15.482,3.908,7.912,5.557,20.589,7.595,-0.255,5.955,10.693,-0.216,22.602,11.243,4.671,26.374,18.75,22.985,17.952,5.24,18.535,-0.445,19.523,11.934,-7.71,10.463,13.471,18.5,12.905,0.697,25.054,13.515,4.499,10.911,3.575,20.635,14.655,14.379,15.796,16.263,-2.329,12.058,16.229,35.191,5.945,11.233,-0.194,19.536,2.621,2.927,21.064,7.861,10.064,24.02,-5.433,17.341,2.485,19.752,15.186,24.339,10.236,14.556,4.988,-0.891,9.424,26.416,8.276,11.3,17.306,5.523,4.167,17.788,10.155,14.966,9.974,6.246,22.872,0.57,-2.567,26.89,23.053,15.404,5.513,8.938,21.833,9.18,5.148,0.444,12.891,5.525,21.34,8.212,7.503,-0.088,10.645,21.136,7.609,3.846,24.536,17.838,11.803,-1.924,19.0,19.426,9.173,-1.65,4.61,20.174,7.799,25.867,23.583,4.384,24.883,19.165,-7.543,0.476,18.221,-0.964,11.453,3.923,18.544,19.81,19.317,15.418,17.624,10.17,-8.589,12.063,13.244,24.629,9.617,4.371,18.855,13.113,26.922,13.532,12.345,1.978,2.054,12.59,13.42,13.082,15.39,16.208,11.82,5.18,20.784,3.716,15.758,0.452,20.836,14.42,15.191,17.104,13.816,-3.404,-0.998,2.677,36.795,20.504,2.377,22.411,6.43,4.696,9.478,18.004,20.098,5.763,8.679,16.392,16.905,12.009,17.19,-0.623,2.54,10.523,3.913,34.455,11.57,10.681,1.76],[16.306,25.69,16.937,3.468,9.002,5.014,-1.001,10.124,18.027,-4.168,11.1,23.178,25.632,15.359,4.034,7.852,5.363,20.665,7.603,-0.206,6.178,10.823,-0.262,22.441,11.155,4.794,26.438,18.829,23.165,17.755,5.374,18.708,-0.494,19.316,12.03,-7.951,10.413,13.557,18.401,13.111,0.8,25.127,13.349,4.573,11.114,3.654,20.669,14.39,14.59,15.726,16.273,-2.496,12.256,16.449,35.203,6.192,11.177,-0.17,19.405,2.715,2.86,21.057,7.486,9.929,23.968,-5.371,17.393,1.971,19.753,14.286,24.43,9.866,14.514,4.964,-1.124,9.222,26.682,8.214,10.699,16.873,5.728,4.467,17.665,10.208,15.148,9.977,5.893,23.21,0.206,-2.383,27.326,23.216,16.063,5.18,8.865,22.183,9.66,5.051,0.592,12.471,5.488,20.856,7.934,7.267,-0.192,10.508,21.377,7.759,4.305,24.286,17.526,11.759,-1.546,19.045,19.469,9.613,-2.052,4.81,20.173,8.053,25.751,23.368,4.162,24.847,19.316,-7.415,0.328,18.267,-0.686,11.244,4.303,18.023,19.723,19.23,15.427,17.903,9.906,-8.366,11.805,13.535,24.423,9.481,4.286,18.566,13.119,26.899,13.452,12.066,1.989,2.291,12.487,13.66,12.925,15.024,16.065,12.09,5.701,20.529,3.738,15.661,0.682,20.883,14.736,14.392,17.16,13.827,-3.729,-1.274,2.904,36.651,20.153,2.908,22.636,6.452,4.654,9.082,17.563,20.041,5.924,8.716,16.015,17.148,12.086,17.024,-0.997,2.841,10.888,4.179,34.623,10.948,11.402,1.836],[16.32,25.747,17.096,3.287,8.913,5.041,-1.158,10.195,18.024,-4.048,10.915,23.019,25.861,15.254,3.974,7.871,5.138,20.677,7.637,-0.104,6.407,10.878,-0.343,22.337,11.126,4.972,26.546,18.794,23.361,17.617,5.393,18.875,-0.555,19.04,11.974,-8.106,10.304,13.408,18.241,13.131,0.874,25.068,13.168,4.703,11.26,3.845,20.671,14.293,14.887,15.575,16.104,-2.568,12.414,16.586,35.156,6.368,11.231,-0.222,19.151,2.93,2.885,21.226,7.154,9.766,23.864,-5.511,17.778,2.17,19.821,14.12,24.568,10.207,14.486,4.902,-1.219,9.181,26.799,8.196,10.768,17.341,5.767,4.886,17.705,9.953,15.25,10.068,6.04,22.947,0.365,-2.406,27.0,23.767,15.941,5.54,8.921,21.867,9.493,5.154,0.395,12.503,5.574,21.0,7.22,6.814,0.206,10.451,21.684,7.831,4.679,24.062,17.647,11.967,-1.79,18.915,19.638,10.334,-2.041,4.538,20.336,7.89,25.99,23.011,3.966,24.935,19.337,-7.706,0.478,18.185,-0.368,11.945,4.426,17.847,19.896,19.567,15.206,17.925,9.828,-9.226,12.505,13.507,24.737,9.499,4.442,18.231,13.061,26.777,13.181,11.912,2.172,2.39,13.101,14.147,12.754,14.817,15.917,11.873,6.352,20.555,3.514,15.503,0.551,20.792,14.969,14.742,16.865,13.832,-3.905,-1.225,2.985,36.326,20.242,2.683,22.763,6.172,5.283,9.668,17.393,20.196,5.685,8.293,16.713,17.719,12.282,17.096,-1.019,2.561,10.857,3.946,34.838,11.024,11.449,1.478],[16.53,25.832,17.191,3.077,8.996,5.182,-1.02,10.213,18.069,-3.908,10.995,22.851,26.015,15.171,3.933,8.001,5.066,20.55,7.547,0.026,6.405,11.019,-0.48,22.301,11.26,5.129,26.611,18.631,23.42,17.621,5.361,18.914,-0.495,18.84,12.089,-8.333,10.19,13.12,18.061,13.23,0.821,25.104,13.152,4.843,11.263,3.978,20.73,14.128,15.22,15.625,15.749,-2.549,12.399,16.714,35.138,6.299,11.314,-0.34,18.938,3.092,2.922,21.348,6.826,9.695,24.128,-5.406,17.549,2.094,19.955,14.215,24.37,10.619,14.802,4.862,-1.14,9.394,26.574,8.307,11.171,17.456,5.771,3.929,17.858,9.995,15.333,9.504,6.252,22.854,0.68,-2.437,26.969,23.071,15.76,5.529,9.104,21.482,9.135,5.363,0.095,12.878,5.753,21.376,7.527,6.729,0.579,10.125,22.099,7.565,4.691,24.148,18.043,12.082,-1.779,18.74,19.275,10.272,-1.725,4.399,20.06,8.364,26.485,22.694,4.615,24.949,19.135,-8.143,0.516,18.363,-0.97,12.011,4.067,17.783,20.304,18.956,14.891,17.797,10.08,-8.722,12.555,13.232,25.016,9.445,4.556,18.106,12.894,26.966,13.537,12.063,2.407,2.388,12.895,14.097,12.996,14.811,15.752,11.535,6.362,20.837,4.005,15.515,0.521,20.419,15.31,15.18,16.435,13.643,-3.536,-1.133,2.848,36.493,20.8,3.088,22.658,5.846,5.503,9.878,17.276,19.725,5.394,7.938,16.653,17.445,12.526,17.1,-0.76,2.89,10.291,3.432,34.496,10.994,10.702,1.477],[16.72,25.887,17.258,2.984,9.116,5.419,-0.867,10.236,18.043,-3.895,11.259,22.718,26.084,15.224,3.801,8.04,5.212,20.397,7.531,0.17,6.362,11.082,-0.544,22.432,11.437,5.317,26.714,18.383,23.383,17.647,5.329,18.84,-0.489,18.687,12.35,-8.455,10.154,12.959,17.949,13.327,0.64,25.306,13.187,4.853,11.198,4.039,20.899,14.137,15.461,15.797,15.356,-2.432,12.388,16.769,35.093,6.157,11.181,-0.407,18.74,3.352,2.831,21.443,6.534,9.631,24.072,-5.204,17.499,1.645,19.808,13.693,24.723,10.567,15.072,4.607,-1.001,9.347,26.966,8.436,11.174,17.589,5.673,4.062,17.954,10.398,15.569,9.197,6.524,22.382,0.694,-2.316,27.12,22.481,15.988,5.313,9.137,21.663,9.574,5.194,-0.115,12.648,5.978,21.362,7.555,6.991,0.756,10.722,22.115,7.075,4.724,24.206,17.797,11.748,-1.636,18.702,19.337,9.894,-1.928,4.926,19.736,8.269,26.442,22.584,5.083,25.05,19.061,-8.107,0.468,18.579,-1.018,11.562,4.093,17.412,20.113,18.737,14.727,17.464,10.153,-8.635,12.068,12.97,24.805,9.62,4.351,17.995,13.304,27.029,14.536,11.828,2.279,2.063,12.624,14.21,12.625,15.048,15.771,11.38,6.005,20.252,4.025,15.44,0.958,20.054,15.481,14.628,16.041,13.67,-2.842,-1.662,2.564,36.533,20.575,3.51,22.777,5.816,5.09,9.372,17.709,19.459,5.399,7.861,16.271,17.119,12.017,16.696,-0.712,3.029,10.189,3.17,34.248,10.976,10.956,1.505],[16.794,25.923,17.268,2.903,9.117,5.626,-0.897,10.199,17.904,-3.877,11.334,22.562,26.199,15.425,3.711,8.003,5.448,20.209,7.503,0.265,6.413,11.048,-0.623,22.526,11.215,5.567,26.792,18.24,23.289,17.576,5.488,18.741,-0.524,18.618,12.548,-8.409,10.088,13.088,17.856,13.303,0.403,25.417,13.205,4.759,11.131,3.953,20.919,14.187,15.676,15.707,15.03,-2.259,12.398,16.736,34.991,6.182,11.054,-0.544,18.565,3.602,2.65,21.597,6.416,9.587,24.046,-5.373,17.377,1.855,19.695,13.515,25.042,10.635,14.981,4.331,-0.866,9.499,27.052,8.347,11.09,17.738,5.988,4.666,17.949,10.364,15.448,9.62,6.455,23.029,0.718,-2.364,27.322,23.265,15.962,5.387,9.19,21.992,9.742,5.515,-0.202,12.734,5.333,20.817,7.633,7.144,0.471,11.231,21.696,7.401,5.205,24.279,17.899,11.893,-1.545,18.429,19.262,9.368,-2.384,4.882,19.755,8.016,26.386,22.96,4.631,25.092,19.056,-7.921,0.716,18.328,-0.525,11.184,4.144,17.592,19.725,18.902,14.891,17.673,10.449,-9.564,12.588,12.823,24.79,9.765,4.117,17.882,13.223,27.116,15.671,11.705,2.2,2.092,12.96,14.564,12.756,15.011,15.355,11.665,5.781,20.71,3.64,15.739,0.548,20.554,15.72,14.877,16.074,13.958,-3.144,-1.718,2.71,36.19,20.405,3.456,22.878,5.571,4.92,9.063,17.896,19.54,5.818,7.561,16.81,17.062,11.925,15.787,-0.567,3.179,10.065,3.282,34.516,11.024,11.608,1.155],[16.669,25.936,17.291,2.86,9.033,5.731,-0.98,10.294,17.837,-3.919,11.161,22.714,26.392,15.649,3.892,7.913,5.71,20.045,7.54,0.228,6.272,10.921,-0.915,22.519,10.866,5.732,26.739,18.302,23.066,17.485,5.759,18.657,-0.407,18.697,12.621,-8.4,10.041,13.357,17.905,13.384,0.181,25.403,13.103,4.614,11.05,3.738,21.016,14.304,15.93,15.699,14.827,-2.106,12.369,16.731,34.877,6.433,11.182,-0.576,18.363,3.676,2.536,21.783,6.403,9.59,24.078,-5.508,17.468,1.741,19.704,13.832,24.762,10.504,14.878,4.594,-0.801,9.507,26.71,8.416,11.27,17.367,6.677,4.293,17.65,10.105,15.413,10.109,6.629,23.012,0.8,-2.593,27.437,22.446,15.893,5.177,9.276,22.027,9.736,6.286,-0.609,12.304,5.28,20.459,7.278,7.284,0.33,10.954,21.495,8.003,5.514,24.315,17.914,11.414,-1.489,18.207,18.667,9.117,-2.215,4.736,19.843,7.848,26.434,23.648,5.008,25.104,19.211,-7.934,0.422,18.02,-0.579,11.411,4.395,17.476,20.105,19.345,15.127,17.867,10.723,-8.999,12.992,12.956,25.144,10.107,4.186,17.927,12.948,27.176,16.53,11.516,1.988,1.987,12.754,14.28,12.686,14.971,14.593,11.68,6.231,20.504,3.89,15.636,-0.166,20.877,16.116,14.864,16.063,13.926,-3.54,-2.0,2.57,36.244,20.935,3.689,22.735,5.535,5.626,9.317,18.232,19.597,5.961,7.375,16.425,16.504,12.629,15.534,-0.464,3.159,10.172,3.456,34.447,11.005,11.13,0.965],[16.348,25.86,17.35,2.956,8.998,5.916,-0.872,10.517,17.855,-4.059,11.008,22.737,26.528,15.66,3.909,7.925,5.958,19.998,7.606,0.095,5.954,10.69,-1.259,22.49,10.748,5.988,26.659,18.31,22.899,17.467,5.861,18.732,-0.346,18.869,12.669,-8.361,9.97,13.484,18.025,13.388,-0.055,25.393,12.909,4.667,10.98,3.657,21.146,14.377,15.99,15.609,14.687,-2.147,12.511,16.715,34.843,6.798,11.438,-0.703,18.359,3.639,2.538,22.082,6.279,9.67,23.911,-5.649,17.338,1.983,19.643,14.126,25.177,10.545,14.597,4.705,-0.963,9.361,26.606,8.569,10.787,17.237,6.349,4.553,17.755,9.985,15.613,9.867,6.848,22.917,0.768,-2.587,27.595,22.825,16.044,5.296,9.13,21.502,9.365,6.116,-0.986,11.779,4.895,20.659,7.307,7.595,-0.139,10.498,21.348,8.309,5.248,24.145,17.78,11.471,-1.633,18.213,18.535,9.278,-2.185,5.019,20.015,7.8,26.471,24.024,5.626,24.976,18.999,-8.039,0.372,17.975,-1.004,11.433,4.637,17.495,20.183,19.376,15.084,17.766,10.502,-8.062,12.597,13.281,25.004,10.417,4.398,18.114,13.378,27.061,17.246,11.452,1.749,1.835,12.713,14.567,13.112,14.459,14.402,11.273,6.048,20.519,3.989,15.606,-0.344,20.85,16.035,14.958,15.532,13.29,-3.101,-2.191,2.569,36.297,20.814,3.789,22.941,5.415,5.871,9.671,18.431,19.203,5.799,7.668,16.371,16.246,12.837,15.762,-0.466,3.352,10.208,3.603,34.043,11.134,10.983,0.91],[15.973,25.92,17.348,3.085,8.985,6.1,-0.759,10.649,17.877,-4.124,11.123,22.772,26.665,15.461,3.832,8.135,5.992,20.023,7.701,-0.07,5.597,10.525,-1.368,22.479,10.699,6.227,26.584,18.306,22.823,17.465,5.79,18.77,-0.426,18.986,12.551,-8.179,9.837,13.532,18.015,13.413,-0.26,25.298,12.669,4.699,10.982,3.632,21.137,14.586,15.944,15.534,14.584,-2.25,12.639,16.603,34.87,6.859,11.521,-0.753,18.471,3.609,2.681,22.351,6.135,9.907,24.095,-5.507,16.836,2.188,19.538,14.039,25.24,11.02,14.297,4.691,-0.861,9.468,26.617,8.803,10.766,17.317,5.607,4.87,18.24,10.085,15.508,9.433,6.952,22.86,0.874,-2.928,27.846,23.132,16.23,5.41,9.071,21.829,9.486,6.21,-1.092,11.895,4.895,20.913,7.278,7.627,-0.446,10.558,21.318,7.641,5.34,24.26,17.67,11.617,-1.765,18.552,18.992,8.796,-3.119,5.083,20.078,7.312,26.594,24.234,5.454,24.814,19.247,-7.945,0.653,18.357,-0.812,11.877,4.476,17.973,20.238,18.619,15.1,17.921,9.957,-9.0,12.889,13.454,24.583,10.105,4.484,17.771,13.899,26.839,17.428,11.549,1.856,1.424,12.783,14.764,12.891,14.099,14.51,11.15,5.953,20.862,3.504,15.964,-0.145,21.054,15.425,14.668,15.069,13.891,-2.781,-1.95,2.755,36.169,21.04,3.896,23.322,5.493,5.575,9.611,18.205,19.484,5.878,7.658,16.506,16.886,11.948,15.729,-0.387,3.175,11.035,3.405,34.274,11.168,11.462,0.9],[15.814,26.066,17.31,3.158,8.98,6.2,-0.687,10.701,17.842,-4.086,11.405,22.901,26.871,15.246,3.895,8.259,5.924,20.071,7.724,-0.229,5.226,10.582,-1.482,22.602,10.608,6.157,26.565,18.488,22.801,17.498,5.68,18.806,-0.55,18.967,12.499,-8.178,9.702,13.652,17.852,13.56,-0.431,25.122,12.516,4.592,11.042,3.568,21.137,14.78,15.795,15.609,14.41,-2.17,12.709,16.434,34.914,6.685,11.494,-0.662,18.676,3.598,2.871,22.525,6.131,10.199,24.213,-5.885,17.044,1.693,19.607,13.713,25.357,11.205,13.932,4.855,-0.631,9.649,26.832,8.899,11.509,16.556,5.861,4.424,18.16,10.624,15.522,9.225,6.769,22.492,0.891,-3.026,27.881,22.424,15.426,5.257,9.305,22.19,9.624,6.513,-1.147,12.213,4.867,20.774,7.803,7.433,-0.223,10.501,21.407,7.09,5.733,24.304,17.891,11.452,-1.836,18.581,19.434,8.796,-2.879,4.852,19.823,7.091,26.481,24.055,5.325,25.049,19.087,-7.911,0.482,18.195,-0.577,12.079,4.475,17.612,20.028,19.29,14.877,17.911,9.541,-8.589,12.697,13.268,24.413,9.629,4.392,17.99,14.377,26.728,17.335,11.421,1.814,0.98,13.237,14.577,13.159,13.625,14.822,11.357,6.379,20.588,3.567,15.926,-0.072,20.559,15.03,14.624,15.335,13.847,-3.226,-1.713,3.132,36.309,21.519,3.667,23.454,5.314,5.36,9.588,17.876,19.782,6.043,7.123,16.197,17.423,12.124,15.953,-0.399,3.103,11.496,3.273,34.616,10.832,11.086,1.143],[15.677,26.221,17.31,3.048,9.02,6.321,-0.724,10.729,17.854,-4.001,11.677,22.78,26.984,14.993,3.952,8.155,5.964,19.925,7.821,-0.27,5.131,10.745,-1.555,22.709,10.479,5.95,26.644,18.677,22.715,17.545,5.724,18.855,-0.758,18.991,12.432,-8.291,9.527,13.806,17.791,13.733,-0.567,24.965,12.35,4.56,11.159,3.494,21.119,14.958,15.582,15.659,14.324,-2.053,12.734,16.281,35.125,6.536,11.318,-0.585,18.943,3.546,3.009,22.601,6.197,10.357,24.356,-5.615,17.131,1.917,19.694,13.372,25.606,10.719,13.984,4.855,-0.537,9.955,27.162,8.835,11.634,16.523,6.127,4.443,17.726,10.51,15.519,9.372,6.705,23.388,1.011,-2.764,27.892,23.027,15.256,5.483,9.495,21.854,10.125,6.34,-1.485,11.999,4.2,20.334,7.791,7.449,-0.175,10.237,21.453,7.536,5.388,24.442,18.027,10.847,-2.063,18.443,19.456,9.298,-2.36,4.605,20.051,6.814,26.697,24.219,5.208,24.912,18.979,-7.795,-0.104,17.986,-0.736,11.992,4.301,17.677,19.886,19.491,14.818,17.432,9.77,-8.247,12.51,13.337,24.595,9.406,3.98,17.849,14.884,26.607,17.182,11.035,1.61,0.868,12.919,14.511,13.301,13.274,14.661,11.66,6.127,20.755,3.806,15.778,-0.528,21.18,14.604,15.391,15.368,13.955,-3.247,-1.555,3.032,36.115,21.638,4.045,23.471,4.882,5.645,9.445,17.694,19.996,5.775,7.298,16.818,17.435,13.117,15.596,-0.463,3.628,10.64,3.302,34.535,10.786,11.162,1.201],[15.505,26.445,17.229,2.885,8.986,6.449,-0.77,10.589,17.992,-3.764,11.896,22.894,26.969,14.823,4.063,8.166,6.136,19.526,7.891,-0.233,5.175,10.768,-1.553,22.746,10.233,5.773,26.67,18.68,22.683,17.605,5.793,18.833,-1.02,19.028,12.394,-8.329,9.443,13.981,17.798,13.847,-0.689,24.861,12.304,4.499,11.267,3.324,21.304,14.995,15.374,15.933,14.249,-1.937,12.897,16.1,35.21,6.497,11.069,-0.469,19.076,3.716,2.998,22.584,6.252,10.128,24.575,-5.522,17.289,2.127,19.843,13.387,25.213,10.547,13.985,4.619,-0.807,10.385,27.231,8.848,11.249,16.834,6.009,5.029,17.646,9.918,15.412,10.108,6.873,22.766,0.925,-2.584,27.991,23.075,15.46,5.622,9.724,21.972,9.765,6.289,-1.407,11.842,4.166,20.479,7.582,7.822,-0.546,10.43,21.371,7.741,4.647,24.568,18.166,10.917,-1.943,18.401,19.486,9.237,-2.721,5.208,20.32,6.928,26.858,24.278,4.98,24.91,18.951,-8.407,-0.008,18.349,-1.224,11.402,4.533,18.165,20.357,19.169,15.265,17.606,10.226,-8.674,12.517,13.442,24.493,9.549,3.968,17.524,14.802,26.425,17.134,10.341,1.496,1.157,13.1,14.796,13.434,13.133,14.123,11.816,5.921,20.718,3.562,16.119,-0.733,21.496,14.595,15.353,15.456,13.966,-2.99,-1.856,2.633,36.53,21.303,4.016,23.342,5.229,5.751,9.822,18.071,19.916,5.673,7.641,16.497,17.056,13.33,15.199,-0.342,3.303,10.758,3.416,34.816,10.985,11.365,1.136],[15.531,26.581,17.18,2.751,9.029,6.561,-0.803,10.423,18.108,-3.567,11.973,22.982,26.876,14.804,4.149,8.195,6.425,19.12,7.911,-0.248,5.213,10.625,-1.617,22.783,10.067,5.514,26.648,18.526,22.694,17.739,5.926,18.907,-1.188,19.121,12.223,-8.45,9.687,14.177,17.833,14.057,-0.63,24.835,12.337,4.352,11.373,3.154,21.615,15.0,15.267,16.217,14.152,-1.754,13.07,15.91,35.341,6.598,10.956,-0.413,18.983,3.883,2.814,22.412,6.236,9.831,24.733,-5.321,17.179,1.712,19.801,13.588,25.347,10.757,13.723,4.636,-0.958,10.52,27.476,8.74,11.326,16.339,5.909,4.941,17.689,9.919,15.354,9.793,6.994,22.811,0.781,-2.301,28.134,23.009,15.165,5.349,9.718,22.107,9.901,6.876,-1.295,11.584,4.964,20.4,7.494,7.846,-0.812,10.643,21.25,7.586,4.628,24.488,17.732,11.209,-1.268,18.009,19.612,8.823,-3.132,5.234,19.889,7.18,26.587,24.292,4.808,25.151,19.643,-8.173,-0.096,18.602,-1.624,11.487,4.75,18.013,20.096,19.547,15.626,18.034,9.482,-8.586,12.603,13.927,24.049,9.471,4.18,17.853,14.435,26.538,16.602,9.404,1.429,1.144,13.345,14.763,13.459,12.956,13.646,11.688,6.027,20.693,3.398,15.973,-0.771,21.571,14.639,15.305,15.74,14.015,-2.597,-1.773,2.863,36.653,21.102,3.655,23.21,5.638,5.526,9.602,18.791,19.659,5.803,7.157,16.716,16.525,13.26,14.69,0.003,3.824,10.709,3.418,34.45,10.97,11.083,1.21],[15.466,26.803,17.217,2.646,9.047,6.632,-0.872,10.296,18.086,-3.368,11.799,22.988,26.796,14.901,4.068,8.23,6.622,18.817,7.884,-0.204,5.395,10.36,-1.847,22.821,10.192,5.319,26.596,18.313,22.694,17.962,6.029,18.995,-1.336,19.366,11.973,-8.397,9.865,14.293,17.964,14.339,-0.415,24.735,12.437,4.33,11.296,3.188,21.807,15.039,15.107,16.36,13.968,-1.433,13.124,15.671,35.415,6.774,10.884,-0.385,18.752,3.916,2.614,22.254,6.041,9.629,24.988,-5.222,16.995,1.756,19.904,13.706,25.533,10.724,13.982,4.125,-0.406,10.062,27.554,8.576,11.685,16.47,6.08,4.689,17.647,10.602,15.323,9.445,7.192,23.148,0.644,-2.447,28.175,23.36,15.307,5.548,9.467,22.349,9.585,7.353,-1.461,11.362,4.811,19.821,7.694,7.935,-0.713,10.503,21.453,7.682,4.669,24.498,17.7,10.803,-1.648,17.581,19.532,8.691,-2.926,5.174,19.267,7.189,26.414,24.117,4.217,24.789,19.659,-8.397,-0.319,18.553,-1.29,11.974,4.758,18.248,19.903,19.717,15.818,17.904,9.544,-8.679,12.208,13.999,24.274,9.542,4.144,18.212,14.729,26.364,16.481,9.083,1.368,1.245,13.168,14.992,13.556,12.974,13.59,11.594,5.997,20.978,3.503,15.699,-0.512,21.647,14.881,15.992,15.499,14.543,-2.344,-1.469,2.587,36.456,21.106,4.067,23.44,5.02,5.885,8.908,18.781,19.787,6.124,7.104,17.392,16.871,13.136,14.515,0.385,3.981,10.162,3.209,34.141,11.032,11.072,1.293],[15.39,27.064,17.183,2.534,9.057,6.713,-0.832,10.274,18.066,-3.449,11.49,23.092,26.876,15.078,4.0,8.244,6.447,18.682,7.782,-0.205,5.52,10.104,-2.139,22.91,10.281,5.141,26.364,18.218,22.709,18.054,6.147,19.065,-1.386,19.793,11.801,-8.247,9.899,14.463,18.151,14.692,-0.176,24.661,12.549,4.477,11.047,3.248,21.871,15.083,15.046,16.625,13.936,-1.007,13.088,15.557,35.195,7.023,10.778,-0.234,18.571,3.943,2.471,22.285,5.762,9.627,25.135,-5.259,17.374,1.239,19.917,13.383,25.117,10.193,13.747,3.876,-0.545,9.744,27.615,8.527,11.278,16.498,6.228,4.777,17.952,10.636,15.334,9.702,7.316,22.949,0.689,-2.351,27.943,22.951,15.208,5.692,9.218,22.517,9.257,7.356,-1.466,11.784,4.324,19.295,8.367,7.68,-0.539,10.19,21.597,7.518,4.47,24.531,18.571,10.738,-1.897,17.496,19.437,8.463,-2.717,4.899,19.477,7.204,26.563,23.792,4.222,24.528,19.516,-8.374,-0.456,18.32,-1.151,12.006,4.864,18.445,20.252,20.085,15.71,17.713,10.509,-8.266,11.816,14.106,24.288,9.215,4.111,17.935,14.596,26.314,16.443,9.271,1.441,1.241,13.956,14.617,13.503,13.17,13.865,11.322,6.304,21.071,3.475,15.807,0.241,22.042,14.465,15.725,15.286,14.508,-2.217,-1.517,2.146,36.524,20.809,4.03,22.893,4.778,5.937,9.129,18.01,19.393,6.41,6.922,16.794,16.835,12.942,14.352,0.296,3.886,10.089,3.015,34.553,10.739,10.985,1.336],[15.37,27.173,17.177,2.409,9.059,6.897,-0.746,10.244,18.054,-3.579,11.262,22.958,26.86,15.041,4.116,8.206,6.006,18.777,7.742,-0.318,5.446,9.789,-2.326,22.945,10.36,4.992,26.236,18.353,22.78,18.16,6.148,19.161,-1.333,20.158,11.711,-8.093,9.974,14.583,18.264,15.045,0.103,24.602,12.628,4.723,10.659,3.191,21.925,15.195,15.116,16.709,14.057,-0.751,13.047,15.39,35.073,7.121,10.608,-0.052,18.319,3.904,2.428,22.045,5.519,9.796,25.245,-5.346,17.392,1.072,19.838,13.498,25.397,9.814,13.573,3.887,-0.978,9.775,27.775,8.736,10.735,16.147,6.485,4.705,18.103,10.227,15.39,9.999,6.846,23.394,1.065,-2.309,28.133,23.518,14.625,5.422,9.104,22.377,8.695,6.491,-1.645,11.84,4.724,19.573,8.079,7.581,-0.578,9.638,21.187,7.633,4.435,24.709,18.394,10.976,-1.7,17.28,19.212,8.175,-3.317,5.142,19.946,7.314,26.337,23.659,4.3,24.69,19.22,-7.826,-0.52,18.537,-1.388,11.273,5.194,19.173,20.31,20.363,15.737,17.811,10.748,-8.402,11.893,13.884,24.374,9.192,4.138,18.031,14.675,26.481,16.566,9.475,1.315,1.659,13.711,14.98,13.484,13.495,13.821,10.839,6.296,20.968,3.384,15.872,0.355,22.443,14.072,16.263,15.635,14.239,-1.894,-1.234,2.21,36.088,21.122,3.642,22.842,4.706,5.655,9.597,17.32,19.046,6.532,6.726,16.993,16.308,12.697,14.904,0.671,4.512,10.427,3.218,34.955,10.712,10.761,1.695],[15.314,27.222,17.285,2.285,9.067,7.098,-0.759,10.104,18.12,-3.488,11.333,22.997,26.658,14.889,4.191,8.116,5.734,18.901,7.574,-0.355,5.466,9.404,-2.416,22.965,10.513,5.0,26.356,18.55,22.868,18.137,6.218,19.269,-1.249,20.374,11.644,-8.052,10.126,14.568,18.273,15.266,0.274,24.513,12.624,4.84,10.295,2.943,21.961,15.289,15.335,16.751,14.326,-0.63,13.047,15.23,35.123,6.922,10.446,0.265,18.022,3.913,2.607,21.777,5.506,9.95,25.398,-5.203,16.942,1.343,19.947,13.411,25.279,9.918,13.678,3.856,-0.887,9.788,27.741,8.914,10.744,16.335,6.182,4.588,17.858,10.35,15.447,9.566,6.919,22.67,1.062,-2.35,28.033,22.957,14.331,5.534,9.233,22.409,8.409,6.034,-1.824,11.874,4.939,19.976,7.492,7.316,-0.992,9.189,21.368,7.643,4.08,24.729,18.198,11.299,-1.661,17.666,19.017,7.815,-3.474,5.094,20.135,7.304,26.157,23.522,3.76,24.437,19.563,-8.284,-0.497,18.767,-1.54,10.829,5.087,19.41,20.318,20.233,15.584,17.805,10.077,-8.072,11.627,13.692,24.248,9.015,4.456,18.374,15.41,26.342,16.444,9.234,1.219,1.933,13.671,15.548,13.482,13.898,13.568,10.797,6.528,21.16,3.402,16.07,0.227,21.915,13.662,16.688,15.614,14.361,-1.917,-0.739,2.644,36.391,20.949,3.953,22.948,4.547,5.823,9.467,17.256,19.296,6.047,6.554,17.365,16.277,12.447,15.358,0.809,3.9,10.126,3.055,34.545,11.271,10.867,2.009],[15.275,27.135,17.356,2.163,9.134,7.247,-0.917,9.934,18.181,-3.306,11.405,22.932,26.443,14.787,4.129,8.114,5.608,19.058,7.337,-0.391,5.643,9.019,-2.353,22.915,10.75,4.887,26.424,18.589,22.948,17.955,6.207,19.442,-1.175,20.496,11.487,-8.054,10.224,14.53,18.179,15.538,0.289,24.416,12.669,4.823,9.948,2.61,21.951,15.357,15.506,16.874,14.575,-0.662,13.109,15.108,35.18,6.731,10.36,0.578,17.798,3.987,2.969,21.626,5.584,10.041,25.337,-5.109,16.978,1.264,19.762,13.53,24.77,9.818,13.639,3.665,-0.938,10.162,27.867,8.324,10.589,16.444,6.179,4.498,18.082,10.813,15.517,9.291,7.16,22.704,0.727,-1.907,27.287,23.569,14.086,5.706,9.14,22.778,8.531,6.433,-1.681,11.871,4.729,19.746,7.249,7.042,-0.698,9.148,21.737,7.072,3.934,24.641,18.546,11.778,-1.532,18.208,19.857,7.512,-3.079,5.175,19.854,7.414,26.471,23.824,4.175,24.562,19.409,-8.157,-0.05,18.728,-1.807,11.223,4.784,19.079,20.449,20.308,15.688,18.132,9.606,-8.392,11.787,13.266,23.648,8.899,4.885,18.002,15.507,26.194,16.634,8.942,0.779,1.995,14.017,15.622,13.865,14.123,13.781,10.916,6.533,21.259,3.128,16.301,-0.072,22.201,13.908,16.047,15.409,14.489,-2.018,-0.326,2.686,36.471,20.297,4.097,22.606,4.837,5.861,9.417,17.368,19.181,5.509,6.614,17.229,16.644,12.488,15.572,0.842,4.206,9.792,2.972,34.284,11.304,10.513,2.359],[15.265,27.012,17.454,2.058,9.229,7.392,-1.15,9.737,18.048,-3.156,11.343,22.926,26.258,14.802,4.005,8.119,5.559,19.274,7.162,-0.33,5.721,8.834,-2.177,22.821,10.974,4.681,26.433,18.587,23.122,17.686,5.978,19.641,-1.147,20.432,11.404,-7.987,10.193,14.516,18.044,15.735,0.136,24.344,12.721,4.83,9.729,2.387,22.102,15.427,15.583,16.856,14.613,-0.727,13.249,15.164,35.216,6.625,10.252,0.875,17.695,4.137,3.232,21.38,5.649,10.066,25.256,-4.789,17.269,1.334,19.773,13.236,24.625,9.366,13.609,3.851,-0.85,10.277,28.15,8.153,10.628,16.128,7.018,4.519,18.223,10.859,15.615,9.833,7.11,23.199,0.597,-1.785,27.066,23.721,14.137,5.508,8.591,22.773,8.598,6.478,-1.239,12.355,5.076,19.606,7.537,6.646,-0.937,8.953,21.7,7.363,3.973,24.574,18.515,12.239,-1.757,17.977,20.173,7.484,-3.17,5.362,19.255,7.664,26.354,24.016,4.301,24.82,19.17,-8.191,-0.038,18.935,-1.745,11.405,4.714,19.477,20.344,20.55,15.833,18.111,9.794,-8.543,11.994,13.261,23.724,8.716,5.121,18.185,14.783,26.204,16.852,9.082,0.516,1.799,14.539,15.732,13.992,14.202,13.983,10.58,6.457,21.082,2.541,16.285,0.274,22.312,14.58,16.588,16.026,14.572,-2.208,-0.44,2.642,36.093,20.364,3.919,22.454,4.793,5.665,9.453,17.092,19.179,5.496,7.166,17.327,16.42,13.007,15.366,0.698,4.413,10.304,3.574,34.151,10.795,10.518,2.452],[15.229,26.928,17.556,2.041,9.376,7.607,-1.301,9.597,17.939,-3.02,11.195,22.92,26.142,14.825,3.871,8.008,5.441,19.322,7.033,-0.301,5.907,8.782,-1.989,22.735,11.239,4.599,26.457,18.491,23.28,17.557,5.8,19.741,-1.143,20.342,11.434,-7.979,10.096,14.371,17.957,16.006,0.08,24.378,12.748,5.097,9.595,2.284,22.301,15.381,15.57,16.986,14.67,-0.863,13.394,15.369,35.28,6.479,10.344,0.988,17.7,4.282,3.303,21.151,5.805,9.993,25.348,-4.764,17.37,1.284,19.749,13.253,24.5,9.027,13.435,3.651,-0.685,9.642,28.085,8.037,11.085,15.75,7.134,4.266,18.147,10.326,15.752,10.188,6.784,23.378,0.251,-1.997,27.363,23.375,14.822,5.189,8.565,22.382,8.833,5.979,-1.332,12.529,5.243,20.299,7.478,7.157,-0.962,8.737,22.188,8.073,3.576,24.408,17.762,12.147,-1.412,17.881,19.556,7.287,-3.105,4.872,19.264,7.578,26.186,24.013,3.428,24.51,18.978,-7.98,-0.458,18.774,-1.471,10.937,4.637,19.125,20.876,20.821,15.645,17.599,10.378,-8.191,11.741,13.551,24.168,8.485,5.042,18.765,14.664,26.249,17.19,9.31,0.635,1.681,14.51,15.799,14.002,14.076,14.348,10.116,6.58,21.295,2.667,16.055,-0.026,22.336,14.793,16.409,16.03,14.73,-2.186,-0.382,2.992,35.771,20.392,3.795,22.133,4.447,5.816,9.633,16.963,19.023,6.298,7.204,16.79,15.985,13.471,15.174,0.558,4.066,10.084,3.951,34.882,10.946,10.409,2.53],[15.157,26.872,17.431,2.104,9.469,7.688,-1.4,9.594,17.868,-2.994,10.96,22.822,26.028,14.944,3.744,7.929,5.464,19.368,6.97,-0.203,6.097,8.737,-1.902,22.652,11.292,4.525,26.308,18.343,23.421,17.447,5.611,19.844,-1.242,20.389,11.399,-7.948,10.076,14.229,18.011,16.208,0.033,24.518,12.738,5.479,9.48,2.296,22.34,15.215,15.61,16.906,14.82,-1.01,13.447,15.521,35.426,6.389,10.46,0.94,17.767,4.32,3.271,21.051,5.977,9.851,25.131,-4.805,16.881,0.777,19.541,13.175,24.858,9.573,13.375,3.237,-0.569,9.351,27.871,8.073,10.984,15.887,6.818,4.126,18.611,10.761,15.722,10.019,6.75,23.01,-0.048,-2.05,27.574,23.713,15.256,5.299,8.736,22.246,8.866,6.185,-1.183,12.432,5.047,20.388,7.182,7.021,-0.485,8.943,22.101,8.047,3.52,24.418,17.833,12.114,-1.903,18.011,19.307,7.099,-3.164,4.665,19.646,7.657,26.095,23.739,3.653,24.606,18.952,-8.105,-0.105,18.855,-1.639,11.034,4.239,19.176,20.776,20.475,15.094,17.706,10.018,-7.958,11.799,13.749,24.361,8.144,5.054,18.449,14.851,26.226,17.126,9.383,0.616,1.706,14.502,16.082,13.394,13.883,14.436,10.176,6.713,21.676,3.152,15.877,-0.093,22.296,14.915,16.621,15.636,14.817,-2.053,-0.101,2.816,36.655,19.98,3.835,21.818,4.521,5.6,9.928,17.453,18.872,7.062,6.852,17.322,16.419,13.421,15.791,0.543,4.367,10.125,4.282,34.958,11.3,10.235,2.663],[15.183,26.826,17.259,1.977,9.574,7.602,-1.411,9.75,17.796,-3.076,10.654,22.782,25.962,15.113,3.702,7.886,5.66,19.456,6.995,-0.186,6.062,8.774,-1.94,22.621,11.148,4.537,26.056,18.301,23.479,17.306,5.377,19.807,-1.344,20.394,11.401,-7.892,10.075,14.131,18.094,16.326,0.007,24.757,12.762,5.813,9.412,2.464,22.189,14.989,15.703,16.846,15.018,-1.08,13.565,15.644,35.744,6.445,10.468,0.994,17.977,4.282,3.236,20.97,6.023,9.736,24.973,-4.693,16.506,0.913,19.464,13.582,24.622,9.639,13.353,3.449,-0.982,9.326,27.594,8.063,10.515,16.369,7.171,4.257,18.324,11.422,15.534,9.771,7.324,22.419,0.129,-1.835,27.357,23.445,15.337,5.269,8.636,22.069,8.545,6.692,-1.194,12.385,5.401,19.87,6.944,6.808,0.143,9.042,22.02,7.252,3.749,24.248,17.965,11.868,-1.964,18.359,19.407,7.344,-3.031,4.824,19.639,7.604,25.97,23.889,4.172,24.379,18.724,-7.675,-0.198,19.092,-1.785,11.065,4.298,19.206,20.807,20.643,15.314,17.895,9.64,-8.28,11.777,13.273,24.11,7.942,5.702,18.214,14.664,26.571,16.638,8.973,0.582,1.898,14.67,16.824,13.201,14.03,14.549,10.45,7.34,21.648,2.64,15.527,-0.308,21.834,15.155,16.868,16.026,14.656,-1.851,-0.095,2.763,36.519,19.797,3.908,22.188,4.942,5.3,10.017,16.912,18.84,6.528,7.129,17.389,16.816,12.832,16.13,0.597,4.392,10.457,4.541,34.519,11.02,10.244,2.584],[15.304,26.716,17.113,1.776,9.776,7.617,-1.368,9.828,17.711,-3.103,10.308,22.667,25.955,15.349,3.706,7.716,5.742,19.539,7.095,-0.152,6.005,8.947,-1.96,22.523,11.005,4.745,25.836,18.447,23.56,17.185,5.239,19.731,-1.498,20.34,11.331,-7.765,9.996,14.011,18.029,16.489,0.022,25.016,12.728,6.133,9.442,2.709,21.835,14.719,15.814,16.889,15.192,-1.076,13.751,15.745,35.978,6.535,10.475,1.014,18.105,4.126,3.263,20.923,6.025,9.81,24.915,-4.816,16.844,0.896,19.507,14.04,24.293,9.55,13.535,3.651,-1.32,9.172,27.511,8.068,9.878,16.134,6.849,3.856,17.783,11.272,15.264,9.877,7.638,22.816,0.424,-1.821,27.245,23.555,15.162,5.054,8.753,22.25,8.479,6.434,-1.763,12.454,5.579,20.076,7.105,7.278,-0.234,8.941,22.338,6.855,3.791,24.335,17.165,11.699,-1.98,18.026,19.493,7.332,-3.04,4.332,19.321,7.766,25.843,23.93,3.591,23.979,18.775,-7.778,-0.117,18.738,-1.439,11.429,4.199,19.141,20.751,20.966,15.377,17.902,9.677,-8.214,12.255,13.143,24.154,7.978,6.306,18.685,14.396,26.88,16.502,8.708,1.034,1.734,14.997,17.324,12.945,14.336,14.451,10.312,7.625,21.046,2.681,15.596,-0.353,21.876,15.761,16.234,16.29,14.778,-2.284,-0.311,2.736,36.561,20.012,3.975,22.4,4.769,5.574,9.675,16.761,19.21,5.922,7.664,16.814,16.723,12.535,16.311,0.568,3.981,10.119,4.326,35.295,10.382,10.106,2.605],[15.353,26.527,16.937,1.632,9.908,7.703,-1.213,9.736,17.649,-3.034,10.005,22.611,25.996,15.577,3.578,7.58,5.574,19.492,7.26,-0.241,6.04,9.141,-1.867,22.514,10.974,4.824,25.57,18.609,23.673,17.05,5.15,19.768,-1.593,20.265,11.488,-7.67,9.941,13.967,17.93,16.823,-0.075,25.121,12.636,6.326,9.496,2.885,21.428,14.435,15.928,16.7,15.405,-1.11,13.821,15.899,36.095,6.608,10.41,0.949,18.144,3.819,3.29,20.97,6.179,9.932,24.769,-4.857,17.744,1.291,19.466,14.11,24.524,9.683,13.622,3.431,-1.295,8.714,27.436,8.499,9.754,16.188,6.706,3.713,17.639,11.339,15.091,10.721,7.544,22.626,0.618,-2.047,27.135,23.446,15.144,5.054,9.084,22.56,8.225,6.317,-1.496,12.142,5.349,20.085,6.939,7.269,-0.626,9.231,22.308,7.306,4.083,24.218,17.296,11.599,-1.662,18.063,19.809,7.409,-3.301,4.235,19.607,7.899,25.64,24.038,3.576,23.917,18.741,-7.828,-0.195,18.364,-1.764,11.157,3.911,19.282,20.553,20.228,15.158,17.795,9.852,-8.064,12.101,13.005,24.907,8.18,6.654,18.38,14.014,26.733,16.692,8.53,1.189,1.749,15.209,16.86,13.098,14.174,14.361,10.378,7.47,20.644,3.239,15.91,-0.298,21.717,15.672,16.519,16.003,15.002,-2.497,-0.416,2.269,37.063,20.218,4.011,22.218,4.874,5.437,9.541,17.356,19.352,6.422,7.513,16.914,16.74,12.967,16.101,0.315,3.731,10.127,3.934,35.355,11.119,10.201,2.53],[15.366,26.207,16.78,1.615,10.138,7.707,-1.103,9.681,17.774,-3.044,9.824,22.528,26.023,15.642,3.403,7.529,5.449,19.385,7.397,-0.323,6.032,9.414,-1.724,22.544,10.906,4.847,25.367,18.856,23.746,16.999,5.068,19.705,-1.654,20.165,11.711,-7.651,9.903,13.842,17.851,17.153,-0.12,25.053,12.567,6.45,9.511,2.945,21.144,14.363,16.051,16.51,15.461,-1.206,13.81,16.048,36.214,6.617,10.379,0.803,18.151,3.441,3.225,21.071,6.513,10.079,24.503,-4.719,16.864,0.807,19.701,13.915,24.627,9.736,13.518,3.281,-0.888,8.558,27.287,8.009,9.981,16.558,7.297,3.999,17.734,11.299,14.997,11.2,7.206,22.778,0.616,-1.857,27.469,23.001,15.858,4.53,9.068,22.369,8.452,6.16,-1.375,12.002,5.732,19.906,7.154,6.791,-0.785,9.653,22.263,7.381,4.277,24.222,17.257,11.971,-1.424,18.14,19.601,7.731,-2.88,4.738,20.32,7.671,25.289,24.002,3.808,23.653,18.703,-7.232,-0.38,18.613,-1.934,11.242,4.088,18.922,20.397,20.491,15.298,17.553,9.966,-8.481,11.611,12.933,25.239,8.755,6.651,18.302,14.454,26.763,16.918,8.649,1.075,1.592,15.623,16.84,13.306,14.093,14.243,10.822,7.493,20.629,3.369,14.96,-0.699,21.006,15.722,16.766,16.047,14.822,-2.516,-0.313,1.95,37.077,19.986,4.003,22.237,4.876,4.984,9.974,17.7,19.38,6.872,7.619,16.794,17.019,13.804,16.285,0.373,3.434,10.175,3.866,35.191,11.22,9.943,2.408],[15.473,25.839,16.667,1.617,10.438,7.726,-1.222,9.627,17.812,-3.052,9.893,22.482,25.926,15.547,3.348,7.481,5.516,19.333,7.551,-0.35,6.019,9.739,-1.599,22.439,10.86,4.965,25.158,19.041,23.754,17.077,5.026,19.504,-1.753,20.164,11.845,-7.607,9.919,13.713,17.827,17.357,-0.12,25.092,12.775,6.508,9.545,2.979,20.931,14.319,16.133,16.409,15.413,-1.281,13.71,16.275,36.233,6.46,10.395,0.653,18.153,3.305,3.077,20.994,6.843,10.186,24.125,-4.494,16.577,0.491,19.254,14.086,24.616,9.734,13.927,3.244,-0.927,8.385,26.705,7.723,10.093,16.587,7.331,4.171,17.957,11.574,15.081,11.22,6.946,22.514,0.633,-1.72,27.553,22.984,15.993,4.475,8.802,22.131,8.13,6.082,-0.923,12.006,6.163,20.081,7.495,7.136,-0.561,9.962,22.357,7.215,4.429,24.398,17.358,12.051,-1.81,17.687,19.513,7.951,-2.944,4.853,20.366,7.789,25.065,23.682,3.607,23.522,18.524,-7.696,-0.269,18.921,-1.796,12.075,3.695,18.725,20.722,20.365,14.955,17.228,9.955,-8.385,11.315,12.594,24.438,9.073,6.379,18.24,14.526,26.703,16.918,8.664,1.265,1.784,16.075,16.949,13.134,14.635,14.513,10.902,7.862,20.29,3.246,14.804,-0.657,21.316,15.935,16.555,16.195,14.743,-2.364,-0.678,2.268,37.271,20.069,3.577,22.86,5.305,4.728,10.193,17.465,19.287,6.889,8.128,17.046,17.197,14.125,16.379,0.386,2.997,10.022,4.069,35.459,10.484,9.811,2.21],[15.69,25.478,16.729,1.642,10.64,7.696,-1.385,9.67,17.706,-3.021,10.054,22.501,25.831,15.409,3.416,7.348,5.665,19.302,7.686,-0.364,6.085,10.027,-1.466,22.327,10.758,5.126,24.91,18.908,23.707,17.203,4.94,19.398,-1.718,20.05,11.878,-7.632,9.994,13.526,17.833,17.379,0.022,25.145,13.193,6.489,9.634,3.083,20.753,14.239,16.168,16.432,15.369,-1.18,13.617,16.492,36.246,6.249,10.367,0.511,18.135,3.371,2.93,20.844,7.062,10.196,23.606,-4.688,16.589,0.861,19.381,13.749,24.517,9.739,13.837,3.266,-1.326,8.603,26.253,8.057,9.877,16.796,6.809,3.883,18.081,12.041,15.06,11.495,7.535,22.311,0.408,-1.705,26.951,23.253,15.306,4.84,9.072,21.684,8.524,6.562,-0.846,11.968,6.214,20.127,7.447,7.297,-0.134,9.906,22.102,7.014,4.451,24.048,17.41,11.63,-2.136,18.068,19.89,8.393,-2.951,4.104,20.137,7.902,24.939,23.669,3.816,23.102,18.956,-7.217,-0.497,18.475,-2.081,12.221,3.691,18.86,20.291,20.217,14.979,17.288,9.794,-8.158,11.622,12.529,24.257,9.087,6.418,18.182,14.099,26.776,17.423,8.638,1.704,1.657,16.267,16.834,12.523,14.963,14.768,10.675,8.06,20.502,2.673,15.531,-0.579,21.395,15.941,16.388,16.064,14.727,-2.29,-0.987,2.66,36.993,20.126,3.164,22.605,5.808,4.752,9.602,16.971,19.251,6.661,8.575,16.878,17.583,13.659,15.942,0.608,3.0,10.23,4.173,35.361,11.155,10.15,2.043],[15.794,25.196,16.846,1.742,10.89,7.643,-1.452,9.784,17.627,-3.107,10.19,22.489,25.794,15.107,3.389,7.255,5.695,19.303,7.855,-0.352,6.144,10.256,-1.373,22.119,10.547,5.261,24.618,18.65,23.594,17.337,4.773,19.222,-1.675,19.791,11.88,-7.615,10.084,13.438,17.838,17.274,0.152,25.113,13.496,6.373,9.864,3.271,20.651,14.254,16.264,16.384,15.211,-0.985,13.542,16.629,36.301,6.124,10.46,0.341,18.107,3.36,2.84,20.749,7.211,10.312,23.383,-4.829,17.25,1.154,19.457,13.739,24.2,10.244,13.969,3.288,-1.077,9.106,26.198,8.203,9.804,16.576,6.861,3.517,17.645,12.101,15.189,11.224,7.818,22.956,0.085,-1.983,27.025,23.048,15.263,4.91,9.345,22.066,8.334,6.426,-1.102,11.65,6.467,20.234,7.76,6.964,-0.116,10.148,21.943,6.919,4.345,23.79,17.035,11.564,-2.034,18.327,19.453,8.58,-2.373,3.814,19.93,7.86,25.175,23.805,4.173,23.042,18.815,-7.436,-0.278,18.44,-1.84,11.996,3.816,18.632,20.052,20.651,15.014,17.831,9.685,-8.417,11.769,13.1,25.156,8.737,6.963,18.084,13.988,26.864,17.235,8.714,1.405,1.832,16.088,16.883,12.969,15.365,14.958,11.105,7.923,20.134,3.306,15.324,-0.204,21.174,16.272,16.989,15.983,14.594,-1.893,-0.838,2.709,37.086,19.787,3.611,22.294,5.859,4.912,9.428,16.64,18.621,6.214,8.354,16.5,17.37,12.997,16.03,0.722,2.98,10.364,4.107,35.189,11.937,10.149,2.061],[15.72,25.222,16.877,1.905,11.023,7.612,-1.37,9.932,17.664,-3.284,10.33,22.448,25.915,14.831,3.212,7.267,5.456,19.308,8.101,-0.286,6.22,10.405,-1.308,21.96,10.242,5.37,24.473,18.344,23.551,17.21,4.652,18.964,-1.459,19.643,11.887,-7.613,10.13,13.582,17.942,17.176,0.258,25.102,13.782,6.281,10.216,3.489,20.474,14.434,16.273,16.263,15.008,-0.822,13.36,16.696,36.329,6.095,10.719,0.192,17.934,3.362,2.807,20.702,7.222,10.566,23.488,-4.86,17.604,0.92,19.352,13.463,24.521,10.444,14.094,3.345,-0.826,9.27,25.632,8.106,9.888,16.613,7.073,3.548,18.016,12.521,15.021,11.539,7.428,22.827,0.35,-1.95,27.224,22.833,15.45,4.359,9.536,22.143,8.296,6.235,-0.727,11.663,6.587,20.177,7.997,6.996,-0.274,10.617,21.795,6.79,4.586,23.733,17.677,11.26,-1.659,17.801,19.052,8.992,-2.377,4.319,19.68,7.738,24.702,23.615,4.228,22.901,18.775,-7.742,-0.369,18.567,-1.75,12.017,3.312,18.562,20.027,19.533,14.957,17.762,10.062,-8.948,11.588,13.624,25.265,8.73,7.256,17.959,13.795,26.71,17.056,8.881,1.752,1.871,15.382,17.275,12.889,15.587,15.361,11.495,7.477,19.733,3.985,15.264,-0.092,20.747,16.092,16.621,15.736,14.477,-1.817,-0.91,2.423,37.52,19.514,3.229,22.287,5.605,5.234,10.216,16.952,18.738,5.654,8.348,16.581,16.843,12.858,15.995,0.973,2.589,10.043,4.151,35.71,12.165,10.237,1.958],[15.578,25.24,16.888,2.007,11.177,7.506,-1.192,10.007,17.833,-3.529,10.463,22.396,26.057,14.636,3.041,7.284,5.313,19.157,8.307,-0.134,6.229,10.561,-1.246,21.891,10.111,5.543,24.407,18.207,23.523,17.122,4.75,18.911,-1.15,19.505,11.903,-7.731,10.179,13.675,18.059,16.972,0.271,25.066,13.959,6.166,10.552,3.681,20.203,14.624,16.244,16.137,14.782,-0.722,13.114,16.614,36.519,6.144,10.976,0.106,17.722,3.226,2.892,20.693,7.159,10.919,23.28,-5.072,16.959,1.095,19.623,13.148,24.895,10.219,13.827,3.46,-1.055,8.957,25.628,8.17,10.396,16.295,7.458,3.539,17.949,12.605,15.098,11.608,7.472,22.228,0.549,-2.033,27.423,22.571,15.149,4.28,9.603,21.696,8.496,5.857,-0.442,11.41,6.281,20.234,8.111,6.827,-0.02,10.49,21.832,6.693,4.834,23.444,17.48,11.064,-1.712,17.673,19.157,8.731,-2.58,4.489,19.526,7.405,24.695,23.425,3.911,22.625,18.826,-7.062,-0.182,18.148,-1.988,11.97,3.458,18.281,19.587,19.938,15.018,17.229,10.733,-8.345,11.717,13.695,24.641,9.497,7.179,18.188,14.12,26.684,17.13,8.965,2.012,2.064,15.455,17.246,13.106,15.859,15.667,11.79,7.573,19.933,3.329,15.455,-0.15,20.01,15.752,16.25,15.424,14.229,-2.065,-1.298,1.848,37.522,19.723,3.234,22.271,5.685,4.98,10.681,16.74,19.271,5.755,8.379,16.612,17.231,12.854,15.71,0.952,2.664,10.393,4.184,35.278,11.451,10.437,1.833],[15.406,25.08,16.788,2.001,11.206,7.355,-1.184,9.884,17.874,-3.626,10.56,22.365,26.097,14.539,2.967,7.243,5.387,18.975,8.392,0.056,6.032,10.474,-1.189,21.738,10.122,5.705,24.385,18.337,23.449,17.136,5.193,18.946,-0.98,19.382,12.006,-7.668,10.266,13.682,18.105,16.856,0.261,24.953,13.921,6.107,10.868,3.584,20.001,14.893,16.176,16.054,14.526,-0.725,12.854,16.55,36.628,6.178,11.008,0.067,17.618,3.076,2.986,20.746,7.161,11.199,23.169,-5.273,16.735,1.555,19.622,12.886,24.717,10.414,13.623,3.802,-0.749,8.98,25.426,8.252,10.667,16.203,7.589,3.295,17.809,12.897,15.105,11.946,7.86,22.135,0.369,-2.386,27.249,23.159,15.257,4.492,9.8,21.961,8.422,5.882,-0.775,11.161,5.97,20.313,8.176,6.785,-0.087,10.247,21.849,6.639,5.002,23.471,16.864,11.175,-1.625,17.865,19.131,8.875,-2.148,4.141,19.628,7.583,24.92,23.421,4.441,22.633,18.56,-7.52,0.42,18.662,-1.648,11.962,4.04,18.108,19.966,19.481,15.154,17.87,11.131,-7.814,11.848,13.253,24.694,10.355,6.747,18.477,14.196,26.665,17.526,9.151,1.912,1.984,15.669,16.192,13.269,15.72,15.655,11.939,7.563,19.346,3.091,15.541,-0.107,19.673,15.692,16.196,15.352,14.086,-2.098,-1.379,2.285,37.12,19.703,3.232,22.416,6.195,4.733,10.567,16.682,18.735,6.285,8.49,16.71,17.121,12.521,15.516,0.588,2.828,11.439,4.234,35.179,11.499,10.76,1.495],[15.394,24.937,16.74,2.144,11.272,7.27,-1.241,9.818,17.847,-3.658,10.639,22.523,26.081,14.593,3.031,7.191,5.495,18.862,8.419,0.176,5.783,10.276,-1.056,21.771,10.069,5.965,24.367,18.462,23.365,17.159,5.582,19.098,-0.805,19.237,12.153,-7.616,10.431,13.577,18.274,16.852,0.134,24.955,13.697,6.11,11.17,3.353,19.822,15.036,16.088,16.008,14.359,-0.709,12.594,16.552,36.364,6.256,10.961,0.111,17.618,2.976,3.054,20.826,7.299,11.4,23.397,-5.097,17.09,1.595,19.528,13.04,24.54,10.348,13.496,3.955,-0.765,8.945,24.809,7.998,10.308,16.354,7.433,3.204,17.541,12.451,14.855,11.775,7.755,22.289,0.249,-2.067,27.177,22.893,15.137,4.27,9.841,21.858,8.372,6.438,-0.904,10.906,5.796,20.048,8.218,6.788,0.074,10.085,21.552,6.743,4.943,23.504,17.284,11.613,-1.117,17.523,18.694,8.687,-2.096,4.501,20.204,7.494,25.072,23.754,4.821,23.047,18.752,-7.527,0.281,18.491,-1.203,12.177,4.498,18.106,19.829,19.501,14.992,17.778,11.168,-8.171,11.905,13.063,24.414,10.833,6.245,18.652,13.959,26.546,17.306,9.02,1.819,1.696,15.469,16.138,13.6,15.506,15.109,12.037,7.845,19.086,3.443,16.318,-0.056,18.86,15.376,16.331,15.348,13.78,-2.322,-1.542,2.963,37.211,19.615,3.009,22.194,5.832,4.768,10.253,16.681,17.819,6.845,8.16,16.551,16.885,12.153,15.213,0.142,2.828,10.932,4.318,35.74,12.416,11.042,1.36],[15.478,24.927,16.763,2.547,11.081,7.26,-1.26,9.953,17.859,-3.553,10.577,22.664,26.045,14.769,3.114,7.147,5.56,18.716,8.389,0.237,5.607,10.024,-0.946,21.95,9.896,6.205,24.438,18.371,23.354,17.266,5.714,19.033,-0.613,19.137,12.207,-7.747,10.573,13.426,18.442,16.896,-0.029,24.873,13.568,6.24,11.418,3.276,19.501,15.168,16.01,16.001,14.186,-0.793,12.345,16.583,36.111,6.419,10.895,0.078,17.586,2.932,3.137,20.837,7.319,11.42,23.321,-5.079,17.057,2.013,19.616,13.271,24.909,9.682,13.946,4.052,-1.312,8.84,24.151,8.403,10.327,16.294,7.371,3.415,17.587,12.671,15.021,11.448,7.54,22.939,0.576,-2.068,27.402,22.891,14.633,4.448,9.688,21.833,8.624,6.161,-0.364,10.991,5.791,19.832,8.282,7.005,0.164,10.0,21.574,7.163,5.066,23.277,17.52,11.111,-1.43,17.206,19.124,8.57,-2.406,4.975,19.832,7.146,24.345,23.822,4.86,23.636,18.924,-7.383,0.0,18.384,-0.826,11.756,4.299,17.948,20.046,19.489,15.015,17.725,10.899,-8.247,12.132,13.245,24.775,10.488,6.264,18.418,13.708,26.591,16.993,8.977,1.49,1.512,15.232,16.586,13.87,15.441,14.198,12.001,8.14,19.801,3.348,16.288,-0.195,18.165,15.384,16.337,14.97,13.672,-2.309,-1.581,2.678,37.203,19.928,3.128,22.362,5.64,5.323,10.424,16.905,17.988,6.639,8.299,16.491,17.594,12.524,14.976,0.413,2.762,10.662,4.341,35.001,13.011,10.509,1.53],[15.528,24.887,16.8,3.135,10.784,7.22,-1.326,10.039,17.91,-3.582,10.645,22.847,26.042,14.824,3.235,7.287,5.623,18.598,8.381,0.189,5.557,9.799,-0.929,22.082,9.63,6.217,24.537,18.257,23.476,17.376,5.707,18.895,-0.492,19.097,12.095,-7.912,10.633,13.291,18.506,16.847,-0.018,24.713,13.688,6.468,11.385,3.366,19.305,15.308,16.031,15.912,13.92,-0.922,12.234,16.766,35.944,6.41,10.843,-0.04,17.613,3.074,3.134,20.882,7.322,11.343,23.453,-5.182,17.529,1.801,19.763,13.21,25.148,10.049,13.808,3.998,-1.175,9.038,24.365,8.472,10.523,16.564,7.433,3.437,17.923,12.335,15.107,11.405,7.609,22.937,0.381,-2.348,27.295,23.092,15.27,4.719,9.639,22.355,8.508,5.854,-0.028,10.963,6.1,19.592,8.069,7.223,0.159,9.816,21.819,6.869,5.444,23.865,17.557,10.328,-1.563,17.608,18.923,8.488,-2.291,5.273,19.604,7.035,24.527,23.373,4.779,23.579,18.622,-7.614,0.244,18.247,-0.841,11.444,4.199,18.078,19.953,19.618,14.801,18.247,10.777,-8.538,12.022,13.244,24.993,10.044,6.788,17.574,13.924,26.504,16.242,9.07,1.494,1.587,15.156,16.85,13.814,15.348,14.217,12.146,8.227,19.334,3.171,16.133,-0.39,18.415,15.702,16.37,14.788,13.585,-2.289,-1.407,2.854,36.764,19.973,2.922,22.536,5.948,5.38,10.951,16.773,18.697,6.249,8.103,16.785,17.1,12.292,15.214,0.642,2.594,10.75,4.537,35.053,12.76,10.583,1.617],[15.6,24.874,16.879,3.544,10.716,7.099,-1.372,10.088,18.153,-3.778,10.875,22.956,26.099,14.829,3.374,7.454,5.643,18.64,8.483,0.081,5.574,9.754,-0.896,22.285,9.38,6.03,24.691,18.113,23.534,17.469,5.718,18.898,-0.449,19.228,11.868,-8.197,10.596,13.236,18.428,16.798,0.116,24.637,13.802,6.557,11.103,3.546,19.218,15.276,16.146,15.82,13.77,-1.057,12.217,16.958,35.924,6.211,10.817,-0.115,17.647,3.152,3.231,20.917,7.219,11.24,23.031,-5.352,17.383,2.065,20.054,13.067,24.612,10.36,13.837,4.529,-0.978,9.154,24.929,8.273,10.616,16.39,7.339,3.663,17.849,12.147,15.11,11.215,7.205,22.538,0.08,-2.35,27.356,23.336,15.418,4.841,9.798,22.179,8.831,5.981,-0.5,10.61,6.011,19.59,8.167,7.391,-0.082,9.528,21.977,6.984,5.276,24.083,17.475,10.491,-1.297,17.139,18.418,8.16,-1.958,4.894,19.648,7.207,25.198,22.957,4.569,23.042,18.711,-7.39,0.33,18.201,-1.199,11.499,4.387,17.981,19.369,19.219,14.237,17.874,10.968,-8.347,11.975,12.972,24.55,9.959,6.989,18.034,14.15,26.163,16.26,9.441,1.96,1.682,15.149,16.654,13.586,15.651,14.448,11.886,8.164,18.732,3.386,16.385,0.082,18.962,15.472,16.333,15.043,13.543,-2.01,-1.431,3.145,36.761,19.615,3.29,22.19,6.401,5.019,11.404,17.122,19.116,6.269,8.105,16.218,16.845,11.725,15.042,0.711,2.763,10.809,4.534,35.202,12.042,11.259,1.479],[15.529,24.865,16.944,3.747,10.918,6.877,-1.4,10.017,18.295,-3.997,10.945,22.945,26.139,14.797,3.503,7.569,5.717,18.61,8.599,0.055,5.501,9.735,-0.855,22.359,9.433,5.765,24.864,18.168,23.44,17.589,5.741,18.837,-0.533,19.224,11.756,-8.323,10.549,13.175,18.318,16.686,0.272,24.562,13.802,6.366,10.894,3.769,19.234,15.259,16.229,15.737,13.81,-1.079,12.242,16.933,36.06,6.148,10.888,-0.088,17.752,3.119,3.421,20.85,7.146,11.21,23.055,-5.622,17.558,2.729,19.933,13.132,24.957,10.137,13.916,4.91,-0.986,9.092,25.321,8.568,11.06,16.757,6.857,3.686,17.498,12.595,15.052,11.195,6.873,23.0,0.265,-2.589,27.174,23.214,15.251,5.052,9.83,21.978,9.159,6.334,-0.764,10.372,5.793,19.755,8.801,7.048,-0.226,9.568,22.203,7.423,4.917,23.928,17.271,10.507,-1.709,17.029,18.781,8.099,-1.87,4.578,19.459,6.694,25.217,22.782,4.326,23.151,18.755,-7.642,0.347,19.23,-1.461,11.146,4.41,17.988,19.632,19.567,14.609,17.666,11.417,-8.307,12.021,13.26,24.555,10.194,6.682,18.493,13.534,26.287,17.447,9.444,2.218,1.869,15.467,16.002,13.746,15.375,14.897,11.398,8.019,18.967,3.764,16.217,0.341,18.641,15.65,16.202,14.836,13.561,-2.574,-1.766,3.297,36.782,19.477,3.043,22.185,5.99,4.917,10.634,17.212,19.126,6.162,8.138,16.547,16.974,11.677,14.841,0.367,2.662,10.822,4.44,34.902,11.889,11.058,1.339],[15.52,24.933,16.905,3.872,11.032,6.52,-1.35,9.807,18.312,-4.16,10.888,23.002,26.095,14.698,3.641,7.662,5.808,18.531,8.652,-0.006,5.327,9.744,-0.831,22.297,9.509,5.498,24.945,18.426,23.41,17.663,5.796,18.937,-0.779,19.133,11.703,-8.295,10.589,13.106,18.274,16.503,0.344,24.528,13.677,6.302,10.893,3.94,19.406,15.253,16.395,15.881,13.96,-1.167,12.253,16.773,36.279,6.167,11.041,-0.135,17.915,2.998,3.416,20.749,7.133,11.119,23.1,-5.668,17.886,2.899,20.134,13.176,25.294,9.832,13.766,5.66,-0.989,9.069,25.042,8.238,10.889,16.479,6.96,3.393,17.489,12.543,15.102,11.274,7.197,23.14,0.237,-2.767,27.229,23.173,15.068,4.923,9.943,22.582,8.694,6.444,-0.355,10.162,5.205,19.962,8.711,7.061,0.138,9.837,21.912,7.438,5.186,24.025,17.557,10.801,-1.607,17.518,19.137,8.089,-2.025,5.123,19.887,6.761,25.321,22.767,3.9,23.617,18.838,-8.056,0.088,18.709,-1.217,10.806,4.252,17.763,19.812,19.957,14.736,18.349,11.532,-8.776,11.994,13.63,24.481,9.921,6.02,17.962,13.381,26.372,17.484,9.416,2.052,2.173,14.999,15.991,13.909,14.998,14.93,11.557,8.185,19.212,3.979,15.905,0.42,18.417,15.724,16.192,14.469,13.755,-2.582,-1.691,3.48,36.827,19.787,3.042,22.193,5.709,5.228,10.224,17.048,19.154,6.048,7.931,16.515,17.161,12.001,15.375,0.259,2.235,10.612,4.557,35.605,11.89,10.433,1.319],[15.533,24.96,16.908,4.055,10.835,6.191,-1.174,9.604,18.254,-4.125,10.734,23.156,26.123,14.656,3.682,7.646,5.892,18.546,8.658,0.052,5.095,9.754,-0.865,22.382,9.506,5.378,24.86,18.666,23.333,17.647,5.892,19.032,-1.118,19.112,11.699,-8.434,10.749,13.154,18.429,16.393,0.414,24.452,13.47,6.42,10.985,4.047,19.692,15.151,16.437,16.202,14.19,-1.275,12.276,16.573,36.423,6.231,11.001,-0.281,18.13,2.856,3.376,20.799,7.143,10.894,23.416,-5.764,17.554,2.922,20.115,13.187,24.866,9.387,14.074,5.746,-0.96,9.166,24.451,8.124,10.415,16.645,7.286,3.565,17.305,12.719,15.117,11.344,7.39,22.75,0.288,-2.658,27.565,23.489,14.941,5.029,10.251,22.476,8.918,6.027,-0.37,10.084,5.12,20.075,8.084,7.341,0.108,10.086,21.658,7.132,5.326,24.006,18.065,11.058,-1.604,17.418,19.095,8.304,-2.22,5.53,20.094,6.758,25.073,22.996,3.841,23.969,18.96,-7.736,-0.243,18.087,-0.872,10.553,4.42,18.014,20.124,19.107,14.61,17.653,11.15,-8.644,11.906,13.482,24.415,9.827,5.741,17.732,13.763,26.295,16.848,9.317,2.089,2.174,14.778,16.395,13.724,15.24,14.58,11.527,8.075,19.299,4.142,16.038,0.096,18.474,15.381,16.561,14.372,13.649,-2.608,-1.575,3.329,37.269,19.815,2.726,22.254,5.81,5.13,10.415,17.413,19.329,6.057,7.87,16.672,17.617,12.395,15.777,0.363,2.489,11.036,4.108,35.5,11.867,10.602,1.138],[15.767,24.984,16.85,4.229,10.764,6.064,-0.914,9.402,18.101,-4.014,10.554,23.302,26.093,14.686,3.752,7.535,5.911,18.539,8.544,0.131,4.868,9.792,-0.98,22.517,9.473,5.443,24.674,18.835,23.14,17.644,6.054,18.978,-1.355,19.067,11.81,-8.454,10.84,13.28,18.442,16.602,0.369,24.392,13.41,6.442,11.067,4.075,19.923,15.117,16.26,16.511,14.367,-1.37,12.295,16.468,36.309,6.344,10.971,-0.39,18.339,2.706,3.37,20.935,7.094,10.647,23.452,-5.582,17.167,2.774,19.769,12.921,24.862,9.361,13.876,5.64,-0.991,8.963,24.318,8.119,9.963,16.888,7.095,3.571,17.346,12.389,15.045,10.875,7.013,23.037,0.63,-2.554,27.467,23.37,15.433,5.17,10.258,21.965,9.152,5.884,-0.666,9.99,5.264,19.68,8.217,7.75,-0.098,10.218,21.697,7.129,5.027,24.148,17.899,11.003,-1.427,17.246,19.368,8.191,-2.138,5.266,20.213,6.434,24.95,23.798,4.061,23.147,18.752,-7.788,-0.563,18.82,-1.466,10.566,4.43,18.32,20.227,19.276,14.677,17.834,10.836,-8.942,12.013,12.938,24.234,9.85,5.971,18.228,14.03,25.938,16.555,9.576,2.384,2.207,15.146,16.485,13.61,14.951,14.426,11.683,8.0,19.488,4.21,16.221,0.143,18.843,15.215,16.53,14.789,13.656,-2.539,-1.772,3.482,36.995,19.743,2.854,22.33,5.906,4.9,10.67,17.757,19.648,6.324,8.414,17.268,17.072,12.892,15.893,0.244,2.718,10.643,3.758,34.902,11.91,10.816,0.794],[16.034,25.091,16.639,4.314,10.675,6.01,-0.781,9.194,17.941,-3.847,10.37,23.388,25.984,14.769,3.818,7.385,5.991,18.48,8.428,0.22,4.603,9.961,-1.171,22.677,9.443,5.522,24.393,18.888,22.977,17.702,5.971,19.093,-1.517,19.157,12.015,-8.466,10.774,13.403,18.451,16.903,0.294,24.27,13.3,6.415,11.182,4.141,20.166,15.174,15.979,16.738,14.495,-1.476,12.427,16.49,36.025,6.436,10.991,-0.509,18.461,2.745,3.395,20.97,7.189,10.428,23.295,-5.479,16.837,3.172,19.571,12.985,25.314,10.019,14.032,5.457,-0.851,8.466,24.918,7.805,10.02,16.901,6.585,3.498,17.676,12.462,15.01,10.771,6.8,23.464,0.737,-2.647,27.47,23.534,15.347,5.275,9.574,22.531,8.907,6.132,-1.017,10.113,5.498,19.532,8.182,7.59,-0.211,9.709,21.518,7.172,4.983,24.133,17.377,10.848,-1.385,16.98,19.613,8.111,-1.501,5.149,20.276,5.878,24.853,24.35,3.798,22.565,18.814,-8.226,-0.629,18.793,-2.035,11.104,4.41,17.802,19.887,19.441,14.985,18.432,11.208,-8.678,12.033,12.709,24.663,10.138,6.495,17.765,13.733,25.963,16.534,9.953,2.309,2.061,15.343,16.65,13.73,15.018,14.548,11.956,7.883,19.664,4.021,16.112,0.024,19.116,15.713,16.836,15.074,13.876,-2.607,-1.767,3.678,36.572,19.787,2.857,22.38,6.065,5.016,10.273,17.453,19.885,6.336,8.465,17.198,16.185,12.823,15.709,0.049,2.542,10.438,4.233,35.152,12.136,10.846,0.244],[16.126,25.198,16.451,4.46,10.632,6.036,-0.862,9.153,17.809,-3.705,10.434,23.471,25.892,14.768,3.769,7.326,6.142,18.353,8.246,0.343,4.353,10.097,-1.185,22.919,9.446,5.462,24.066,18.911,22.88,17.762,5.734,19.189,-1.654,19.298,12.13,-8.447,10.6,13.417,18.47,17.083,0.098,24.227,13.259,6.445,11.42,4.137,20.447,15.29,15.679,16.781,14.646,-1.497,12.637,16.452,35.738,6.315,11.013,-0.7,18.344,2.99,3.565,20.809,7.368,10.193,23.364,-5.446,17.27,2.986,19.681,13.256,25.137,9.713,14.417,5.361,-1.138,8.656,25.572,7.852,10.151,17.251,5.969,3.587,17.563,12.195,14.624,10.932,6.652,23.28,0.518,-2.478,27.536,23.898,15.491,5.154,9.461,22.728,8.469,6.766,-1.281,10.457,5.407,19.674,8.144,7.527,-0.016,9.952,21.356,6.69,5.302,24.516,17.728,10.801,-1.207,17.22,19.26,8.437,-1.942,5.443,20.1,5.532,24.908,24.14,3.784,22.866,19.083,-7.689,-0.505,18.087,-1.608,11.512,4.114,18.445,20.177,19.778,15.223,17.777,11.875,-8.502,12.041,13.358,24.622,10.436,6.353,17.849,13.267,25.907,16.582,10.327,2.293,1.944,15.726,16.117,13.67,14.943,14.32,11.977,8.129,19.923,4.072,15.925,-0.223,19.204,15.594,17.368,15.151,14.313,-2.652,-1.908,3.442,36.168,19.968,2.566,22.187,6.091,5.09,9.772,17.588,19.386,6.065,8.446,17.223,16.555,12.217,16.023,0.205,2.771,10.664,4.589,34.876,11.761,10.615,0.008],[16.187,25.31,16.476,4.491,10.601,6.037,-1.062,9.129,17.928,-3.569,10.602,23.419,25.789,14.81,3.622,7.39,6.351,18.301,8.169,0.529,4.183,10.127,-1.139,23.07,9.432,5.382,24.111,18.887,22.879,17.964,5.605,19.128,-1.695,19.518,12.034,-8.223,10.592,13.343,18.327,17.06,-0.134,24.208,13.36,6.531,11.61,4.002,20.518,15.354,15.516,16.8,14.754,-1.331,12.837,16.346,35.549,6.145,11.103,-0.878,18.147,3.128,3.735,20.608,7.39,10.039,23.47,-5.386,17.358,2.885,19.81,13.183,24.773,8.959,14.413,5.611,-1.307,8.753,25.393,7.639,10.199,17.458,5.698,3.897,17.111,12.309,14.7,10.852,6.818,23.315,0.462,-2.284,27.39,24.039,15.259,5.044,9.368,22.626,8.411,6.598,-0.624,10.457,5.051,19.922,8.106,7.817,0.299,10.67,21.341,6.644,5.238,24.769,18.053,10.714,-1.248,17.31,19.376,8.523,-2.617,5.631,20.385,5.317,24.541,23.589,4.099,22.57,19.11,-8.001,-0.79,18.537,-1.286,11.202,3.955,18.628,20.439,19.977,15.092,17.624,12.01,-8.642,12.558,13.599,24.486,10.457,5.807,17.899,13.34,25.718,16.269,10.626,2.203,1.658,15.825,16.151,13.686,14.808,13.671,12.37,8.216,20.198,4.375,16.348,-0.67,19.652,15.534,17.191,14.753,14.353,-2.434,-2.074,3.597,35.928,19.644,2.895,22.027,5.927,5.039,9.664,17.848,19.293,6.204,8.789,16.889,17.055,11.69,15.968,0.326,3.018,10.398,4.649,34.472,10.595,10.862,0.295],[16.271,25.468,16.6,4.413,10.669,6.027,-1.177,8.916,18.195,-3.314,10.647,23.276,25.676,14.9,3.529,7.512,6.266,18.383,8.097,0.68,4.048,10.103,-1.153,23.081,9.372,5.43,24.289,18.992,22.969,18.064,5.638,19.069,-1.71,19.67,11.89,-8.108,10.829,13.374,18.17,16.932,-0.32,24.151,13.388,6.683,11.681,3.801,20.467,15.402,15.368,16.752,14.651,-1.082,12.961,16.074,35.386,6.012,11.215,-0.927,18.052,3.164,3.828,20.454,7.358,9.995,23.693,-5.154,17.042,3.119,19.799,13.286,24.783,9.212,14.33,5.724,-1.287,8.825,25.119,7.628,10.381,16.873,5.659,3.772,17.372,12.097,14.854,11.014,6.835,23.335,0.529,-2.354,27.141,23.612,15.599,5.098,9.827,23.14,9.156,6.597,-0.677,10.363,4.527,19.828,7.691,7.744,0.593,10.135,21.327,7.008,4.885,24.413,18.266,10.493,-0.874,17.528,19.542,8.361,-2.168,4.897,20.266,5.638,24.302,23.153,3.684,22.528,19.001,-7.955,-1.224,19.046,-1.953,10.486,4.03,18.154,20.21,19.99,14.978,17.581,12.055,-8.05,12.611,13.478,24.492,10.195,5.992,17.82,13.748,25.601,15.921,10.663,1.781,1.49,15.554,16.649,13.695,15.073,13.772,12.572,8.065,19.79,4.242,16.383,-0.949,19.661,15.965,16.547,14.462,14.592,-2.02,-2.024,4.2,35.945,19.383,3.123,22.114,6.136,5.194,9.68,17.057,19.221,6.458,8.5,17.402,17.442,11.796,15.934,0.62,2.803,10.587,4.289,34.708,11.194,11.052,0.643],[16.224,25.653,16.722,4.483,10.757,5.988,-1.216,8.805,18.347,-2.979,10.552,23.17,25.513,15.072,3.55,7.712,6.125,18.615,8.105,0.799,3.957,9.933,-1.246,22.97,9.25,5.435,24.41,18.991,23.102,18.046,5.657,19.082,-2.017,19.638,11.679,-7.995,11.274,13.421,18.056,16.711,-0.344,24.196,13.516,6.808,11.608,3.633,20.32,15.489,15.219,16.564,14.444,-0.797,13.062,15.856,35.351,5.969,11.302,-0.818,17.929,3.195,3.784,20.425,7.153,10.031,24.107,-4.706,17.644,3.017,20.223,13.403,24.732,9.325,14.275,5.741,-1.346,8.923,25.17,7.467,10.804,17.13,5.693,3.199,17.784,12.297,14.988,11.295,6.785,23.259,0.444,-2.198,27.17,23.227,15.788,5.264,9.65,22.873,9.501,6.265,-1.225,10.61,4.601,19.268,8.134,7.187,0.255,9.692,21.689,7.345,4.673,24.601,18.176,10.342,-0.718,17.731,19.893,8.309,-1.855,4.656,20.356,5.513,24.713,23.083,3.977,22.636,19.184,-7.859,-1.147,18.581,-1.747,10.296,4.506,18.451,19.944,20.333,15.184,17.477,12.032,-8.3,12.158,13.086,24.038,10.124,6.663,17.699,14.026,25.608,16.286,10.289,1.745,1.396,14.967,16.595,13.847,15.366,14.015,12.048,8.363,19.507,3.472,15.931,-1.043,19.367,15.874,16.723,14.46,14.814,-1.389,-1.733,4.001,35.921,19.165,2.77,21.875,6.108,4.938,9.763,16.771,18.901,6.153,8.647,17.738,17.023,12.579,15.923,0.863,2.983,10.764,4.723,34.58,11.848,10.721,0.938],[16.245,25.869,16.785,4.769,10.981,5.925,-1.164,8.836,18.383,-2.63,10.546,23.202,25.326,15.268,3.537,7.858,6.074,18.813,8.245,0.6,3.919,9.753,-1.509,22.87,9.193,5.447,24.458,18.921,23.201,17.982,5.722,19.033,-2.356,19.757,11.388,-7.912,11.612,13.406,17.931,16.42,-0.339,24.261,13.761,6.866,11.516,3.485,20.212,15.459,15.199,16.566,14.351,-0.7,13.163,15.673,35.405,5.876,11.212,-0.603,17.752,3.215,3.853,20.449,7.017,10.003,24.464,-4.526,17.821,3.235,20.342,13.724,24.405,9.203,14.563,5.71,-1.182,8.677,25.459,7.637,10.942,17.527,5.842,3.37,17.841,12.469,15.214,10.884,6.58,23.113,0.126,-1.8,26.982,23.059,15.671,5.411,9.711,22.605,9.654,5.707,-1.239,10.427,4.731,19.938,8.028,7.166,0.284,9.831,21.811,7.378,4.774,24.582,18.312,10.18,-0.813,17.449,19.446,8.012,-2.278,5.052,20.188,5.159,24.578,23.516,4.48,22.589,19.055,-7.796,-1.502,18.29,-1.555,10.774,4.397,18.458,20.337,20.234,15.167,17.482,12.241,-8.391,12.043,13.276,24.041,9.907,6.909,17.397,13.688,25.849,16.413,10.359,1.754,1.534,14.688,16.093,13.772,15.438,13.974,11.676,8.539,19.685,3.426,16.132,-0.728,18.94,15.281,16.496,14.403,14.783,-1.286,-1.663,3.694,36.09,19.289,2.662,21.858,5.696,5.002,10.17,17.548,18.975,6.122,8.274,16.611,16.479,13.127,15.312,1.064,3.232,10.885,5.226,34.143,11.504,10.667,1.193],[16.495,26.056,16.847,4.982,11.187,5.786,-1.017,9.051,18.203,-2.437,10.602,23.295,25.078,15.417,3.59,7.883,5.998,18.947,8.499,0.406,3.904,9.701,-1.833,22.734,9.113,5.431,24.449,18.687,23.268,17.976,5.749,18.982,-2.563,19.883,11.143,-7.851,11.747,13.265,17.826,16.15,-0.273,24.194,13.975,6.89,11.441,3.389,20.142,15.454,15.219,16.428,14.252,-0.747,13.208,15.34,35.358,5.798,11.044,-0.348,17.672,3.134,4.143,20.51,6.81,9.935,24.244,-4.216,17.179,3.726,19.852,13.9,24.144,9.35,14.657,5.921,-1.033,8.742,25.661,7.565,10.87,17.088,6.228,3.625,17.653,13.047,15.22,10.855,6.548,23.695,0.398,-1.26,26.725,23.466,15.981,5.304,9.493,22.621,9.727,5.994,-1.589,10.22,5.133,20.116,8.257,7.349,0.208,9.664,21.661,7.357,5.305,24.305,18.463,10.101,-1.354,17.931,19.194,8.216,-3.184,5.327,20.094,4.856,24.434,24.085,4.1,22.867,18.766,-7.56,-1.456,18.839,-2.385,11.131,4.297,19.032,20.362,20.617,14.861,17.331,12.065,-7.984,11.628,14.161,24.549,10.154,7.028,17.569,13.602,25.792,16.213,11.119,1.465,1.448,14.74,15.716,14.11,15.507,13.775,11.77,8.609,19.825,3.949,15.99,-0.851,18.86,15.105,16.674,14.857,14.945,-1.607,-1.412,3.895,36.159,19.465,3.125,22.106,5.795,4.791,10.474,17.131,18.899,6.312,8.118,16.667,16.63,13.053,15.539,1.1,3.261,10.73,4.767,34.492,11.021,10.765,1.304],[16.569,25.916,16.806,5.057,11.371,5.657,-0.875,9.539,17.876,-2.287,10.67,23.439,24.868,15.525,3.704,7.882,5.984,18.939,8.634,0.243,3.914,9.766,-2.116,22.634,8.96,5.411,24.637,18.385,23.347,17.901,5.687,19.114,-2.757,20.093,11.049,-7.602,11.677,13.152,17.696,16.171,-0.166,24.132,14.072,7.042,11.396,3.422,20.136,15.43,15.175,16.353,14.21,-0.678,13.21,14.972,35.22,5.864,10.947,-0.006,17.669,2.987,4.319,20.573,6.664,9.892,24.295,-3.926,17.321,3.491,19.696,14.027,24.22,9.4,14.739,6.272,-1.063,8.881,25.547,8.131,11.007,16.991,6.621,3.454,17.939,13.236,15.094,11.312,6.896,23.376,0.769,-1.396,26.584,24.121,15.996,5.406,10.177,22.421,9.301,6.31,-1.989,9.905,5.177,19.686,8.592,6.992,0.097,9.811,21.8,7.385,4.904,24.023,18.489,10.389,-1.363,18.216,19.142,8.146,-3.595,5.322,19.994,4.903,24.761,23.994,3.739,22.692,19.15,-8.313,-1.43,18.66,-2.754,10.963,4.111,18.802,20.11,20.744,14.397,17.603,12.207,-7.862,11.345,14.345,24.717,10.819,6.735,18.381,13.911,25.397,15.931,11.946,1.562,1.524,14.643,15.452,13.805,15.595,13.83,12.56,8.452,19.763,3.755,15.887,-1.383,19.243,15.119,16.327,15.022,14.851,-1.838,-1.145,4.816,35.81,19.462,3.037,21.915,5.539,4.871,10.248,16.973,18.979,6.251,7.981,17.47,16.395,12.637,15.597,0.856,3.175,10.444,4.708,34.788,11.253,10.567,1.351],[16.388,25.596,16.77,5.089,11.47,5.743,-0.945,9.993,17.778,-2.213,10.689,23.562,24.757,15.51,3.664,7.846,5.98,18.908,8.759,0.2,3.941,9.921,-2.352,22.566,8.868,5.324,24.805,18.262,23.418,17.738,5.696,19.313,-3.034,20.228,11.164,-7.326,11.595,13.059,17.701,16.193,-0.093,24.08,14.053,7.254,11.432,3.446,20.214,15.285,14.985,16.456,14.154,-0.582,13.224,14.489,35.239,6.0,10.968,0.391,17.736,3.0,4.397,20.653,6.693,9.895,24.046,-4.127,17.357,3.534,19.716,14.041,24.422,10.12,14.575,6.47,-1.042,8.947,25.153,8.238,11.346,17.037,6.367,3.551,18.201,13.124,15.092,11.522,6.748,23.273,0.516,-1.182,26.568,23.686,16.415,5.531,10.28,22.903,8.829,6.077,-1.932,9.332,4.83,19.9,8.083,6.917,-0.179,9.798,22.021,7.607,4.51,24.087,18.135,10.273,-1.443,17.564,18.751,8.21,-3.31,5.044,19.704,5.133,25.074,23.459,3.997,23.108,19.349,-7.869,-1.684,18.431,-2.558,10.425,4.466,18.746,20.571,20.853,14.471,17.324,12.242,-7.918,11.766,13.875,24.321,11.43,6.306,17.849,13.765,25.541,16.002,11.596,1.642,1.572,14.701,15.805,13.669,15.628,14.073,12.881,8.887,19.446,3.386,15.589,-1.263,19.191,14.602,16.543,14.629,14.46,-1.246,-0.726,4.944,35.165,19.444,2.386,21.917,5.224,5.053,10.112,17.636,18.931,6.543,7.463,16.932,15.926,12.079,15.449,0.979,2.783,10.761,4.96,34.871,11.17,10.664,1.595],[16.193,25.218,16.822,5.139,11.492,5.823,-1.181,10.198,17.93,-2.184,10.73,23.481,24.722,15.411,3.499,7.854,6.016,18.916,8.752,0.119,3.949,10.046,-2.323,22.878,8.775,5.201,24.912,18.142,23.438,17.517,5.724,19.368,-3.196,20.251,11.414,-7.064,11.478,13.04,17.648,16.223,-0.078,23.941,13.9,7.407,11.484,3.288,20.222,15.115,14.81,16.535,13.977,-0.397,13.201,13.986,35.413,6.15,11.226,0.658,17.921,3.038,4.446,20.853,6.703,9.866,23.617,-4.13,17.196,3.569,19.613,13.847,24.055,10.731,14.252,6.431,-1.214,8.998,24.937,8.61,11.625,16.825,6.415,3.72,17.934,13.377,15.15,10.823,7.012,23.712,0.29,-1.157,26.589,23.956,16.096,5.146,9.671,22.604,9.061,5.884,-2.172,8.985,4.44,19.595,8.531,7.172,0.136,9.7,21.845,7.151,4.813,24.484,17.927,10.162,-1.219,17.568,18.927,8.575,-3.645,5.386,19.471,5.61,24.875,23.603,4.321,23.576,19.032,-7.207,-1.965,19.328,-2.357,10.142,4.384,19.454,20.332,21.12,14.81,17.356,11.944,-7.631,12.379,13.725,23.89,11.784,6.653,17.515,13.133,25.681,16.337,10.893,1.492,1.68,14.796,15.665,14.025,15.62,13.878,12.16,9.208,19.889,3.538,15.423,-0.853,19.122,13.84,16.693,14.401,13.585,-1.145,-0.279,4.287,35.105,19.654,2.316,22.143,5.353,4.877,10.37,17.48,18.684,6.688,7.61,16.872,15.509,12.577,15.555,1.396,2.512,10.704,5.24,34.677,10.756,10.593,1.952],[16.07,24.875,16.86,5.08,11.538,5.98,-1.416,10.292,18.151,-2.021,10.843,23.315,24.715,15.309,3.353,7.783,6.104,18.891,8.727,0.156,4.025,10.052,-2.255,23.281,8.648,5.284,24.946,17.886,23.44,17.34,5.752,19.34,-3.248,20.412,11.619,-6.834,11.306,13.016,17.586,16.299,-0.023,23.803,13.752,7.43,11.491,3.108,20.19,15.061,14.62,16.577,13.763,-0.267,13.314,13.501,35.499,6.224,11.376,0.887,18.056,2.996,4.545,21.059,6.742,9.698,23.262,-3.852,17.129,3.938,19.945,13.486,23.979,11.259,14.135,5.887,-1.454,9.079,24.749,8.606,11.748,16.559,6.435,3.046,17.583,13.272,15.224,10.465,7.2,23.384,0.319,-1.523,26.571,24.492,15.697,5.124,10.237,22.915,9.374,6.084,-2.619,9.103,4.221,19.919,8.49,7.356,0.178,10.021,21.852,7.48,4.71,24.45,18.088,10.066,-1.241,17.979,19.013,8.349,-3.431,5.805,19.449,5.76,24.629,24.215,3.84,23.522,18.548,-7.466,-2.222,19.382,-2.652,10.184,4.002,19.352,20.657,20.743,14.65,17.473,11.783,-7.547,12.523,13.689,23.64,11.065,7.415,17.861,12.459,25.27,16.203,11.179,1.233,1.824,15.004,15.327,13.516,15.569,13.965,12.282,9.246,19.823,3.447,15.592,-0.805,19.103,13.939,16.789,14.175,13.158,-0.946,-0.185,4.221,35.777,20.302,2.762,22.334,5.526,5.035,10.516,17.139,19.028,6.748,8.02,17.407,15.121,12.37,15.159,1.511,2.503,10.801,5.248,34.969,11.031,10.865,2.277],[16.093,24.705,16.768,4.955,11.498,6.232,-1.571,10.399,18.423,-1.813,10.974,23.17,24.806,15.326,3.217,7.701,6.212,18.886,8.769,0.264,4.127,9.977,-2.137,23.535,8.59,5.297,24.816,17.612,23.508,17.248,5.836,19.449,-3.341,20.549,11.819,-6.741,11.116,12.709,17.584,16.372,0.014,23.699,13.696,7.452,11.503,2.943,20.03,15.043,14.433,16.709,13.587,-0.164,13.499,13.17,35.601,6.29,11.255,1.157,18.088,2.963,4.766,21.102,6.88,9.603,23.047,-3.597,17.648,3.722,20.381,13.564,24.427,11.184,14.232,6.124,-1.516,9.23,24.305,8.737,11.714,16.572,6.373,2.632,17.884,13.318,15.417,10.727,7.007,23.29,-0.003,-0.824,26.598,23.865,15.338,5.029,10.228,23.453,9.191,6.385,-2.659,9.2,4.605,20.045,8.149,7.091,-0.019,10.3,21.772,7.696,4.419,25.005,18.195,9.782,-1.037,17.483,18.112,8.168,-3.236,5.575,19.164,5.617,25.238,24.279,3.918,23.215,18.604,-7.513,-2.006,18.411,-2.919,10.721,4.105,18.93,20.559,21.145,14.461,17.599,11.667,-7.792,12.043,13.834,24.149,10.005,7.367,18.57,12.508,25.309,16.112,11.256,1.071,1.819,14.873,15.602,13.302,15.243,13.66,12.401,8.942,19.661,2.955,15.435,-0.676,19.113,13.811,17.398,13.993,13.561,-0.605,-0.144,4.522,35.838,20.133,3.024,22.311,5.462,5.404,9.681,17.322,18.675,6.288,7.948,17.186,14.702,12.385,15.073,1.491,2.574,10.46,4.989,34.832,11.304,11.147,2.621],[16.214,24.754,16.685,4.808,11.432,6.366,-1.625,10.588,18.542,-1.514,11.019,23.19,25.104,15.387,3.019,7.643,6.249,18.713,8.59,0.504,4.263,9.975,-2.047,23.704,8.613,5.087,24.78,17.263,23.491,17.299,5.897,19.53,-3.377,20.694,12.107,-6.609,10.961,12.406,17.806,16.382,0.101,23.752,13.633,7.386,11.513,2.831,19.756,14.928,14.269,16.905,13.471,0.059,13.656,13.08,35.605,6.39,10.965,1.341,17.978,2.95,4.969,20.9,7.043,9.466,22.991,-3.43,17.958,3.174,20.34,13.638,24.444,11.164,14.411,6.269,-1.069,9.391,24.314,8.675,11.583,16.412,6.649,2.561,18.166,13.205,15.311,11.478,7.069,23.625,-0.376,-0.582,26.931,23.468,15.699,4.972,9.947,23.512,9.406,6.457,-2.448,9.377,5.233,19.648,8.356,7.323,0.148,9.989,22.037,7.312,4.493,25.005,17.86,9.415,-0.973,17.95,17.974,8.246,-3.561,5.158,18.595,5.444,25.115,24.115,3.859,23.129,18.212,-7.455,-2.127,19.023,-2.93,11.17,4.445,19.453,20.71,21.153,14.114,17.252,11.395,-7.798,12.135,13.661,23.941,10.051,6.871,18.362,12.477,25.317,15.792,10.486,1.092,1.801,14.753,16.045,13.725,15.33,13.512,11.903,8.969,19.38,2.935,15.037,-0.881,19.054,12.982,17.132,13.883,14.061,-0.756,-0.059,5.114,35.314,20.121,2.876,21.849,5.422,5.199,9.318,17.188,18.674,6.193,7.949,17.529,14.708,12.851,15.182,1.45,2.247,9.975,4.808,34.543,11.119,10.37,2.873],[16.23,24.816,16.706,4.592,11.371,6.314,-1.609,10.763,18.535,-1.343,10.931,23.37,25.38,15.491,2.884,7.566,6.296,18.485,8.48,0.68,4.424,9.918,-2.184,23.735,8.781,4.976,24.752,16.941,23.502,17.242,5.881,19.691,-3.323,20.914,12.311,-6.417,10.824,12.26,18.015,16.372,0.255,23.66,13.589,7.342,11.59,2.933,19.582,14.805,14.025,17.148,13.406,0.306,13.836,12.978,35.435,6.438,10.573,1.378,17.787,2.78,5.096,20.666,7.162,9.384,23.323,-3.202,17.643,3.017,20.243,13.875,24.618,11.449,14.322,5.883,-0.586,9.259,24.618,8.893,11.611,16.469,6.924,2.755,18.046,12.876,15.044,11.977,7.29,23.684,-0.165,-0.642,27.376,24.576,16.221,4.742,9.899,23.586,9.231,6.203,-2.47,9.042,5.178,19.88,7.949,7.424,0.288,9.955,22.093,7.36,4.282,24.5,17.634,9.736,-0.681,18.262,18.212,8.16,-3.245,5.321,18.172,5.575,24.897,24.125,3.603,23.273,18.024,-7.592,-2.486,19.335,-2.488,12.0,4.365,19.52,20.616,21.299,13.435,17.448,10.855,-7.264,12.646,13.172,23.994,10.533,6.425,17.909,12.06,25.342,15.539,10.256,1.063,1.437,14.958,15.601,13.375,15.377,13.613,11.774,8.71,19.053,3.025,14.794,-1.082,18.475,13.165,16.472,13.838,15.018,-0.724,0.047,5.396,35.104,19.667,2.918,21.363,5.499,5.142,9.331,17.181,18.857,6.525,8.197,17.636,14.578,12.892,14.934,2.028,2.469,9.588,5.072,34.943,10.787,10.534,2.933],[16.101,24.887,16.9,4.516,11.233,6.145,-1.48,10.938,18.587,-1.352,10.837,23.693,25.446,15.694,2.881,7.619,6.45,18.444,8.525,0.657,4.474,9.803,-2.3,23.532,9.054,4.979,24.608,16.763,23.617,17.028,5.922,19.81,-3.153,20.998,12.439,-6.261,10.596,12.087,18.134,16.276,0.338,23.499,13.514,7.205,11.684,3.052,19.352,14.714,13.814,17.241,13.305,0.669,14.081,12.917,35.302,6.474,10.255,1.463,17.575,2.579,5.201,20.481,7.237,9.449,23.306,-3.058,17.618,3.391,20.53,14.17,25.008,11.924,14.327,5.398,-0.53,9.033,24.375,9.274,11.678,16.295,7.031,2.075,17.681,12.735,15.139,11.851,7.001,23.52,-0.365,-0.259,27.321,24.501,16.073,4.502,9.724,23.506,8.317,6.349,-2.372,8.528,4.802,19.499,8.232,7.081,0.315,9.963,21.92,7.352,4.075,24.785,17.593,10.127,-0.917,17.323,17.976,7.969,-3.083,5.881,17.743,5.991,25.063,24.26,3.415,23.285,18.328,-7.524,-2.313,19.092,-2.664,12.471,4.097,19.853,20.49,21.784,13.811,17.795,10.745,-6.995,12.856,12.873,23.99,10.701,6.539,18.193,11.315,25.087,15.529,10.958,1.162,1.858,15.408,15.086,13.004,15.291,13.061,12.393,8.674,19.381,3.201,15.06,-1.015,18.654,13.167,16.925,13.97,15.652,-0.033,0.015,4.995,34.949,18.997,2.986,21.44,5.619,5.201,9.031,16.957,18.284,6.633,8.502,17.825,14.632,12.548,14.936,2.363,2.562,9.495,5.645,35.103,10.98,10.806,2.864],[15.834,24.867,17.077,4.591,11.058,5.928,-1.474,11.094,18.783,-1.271,10.873,23.961,25.405,15.799,2.821,7.66,6.669,18.367,8.689,0.443,4.543,9.738,-2.253,23.244,9.271,4.909,24.439,16.646,23.734,16.758,6.079,19.684,-2.955,21.081,12.621,-6.232,10.446,11.967,18.303,16.252,0.386,23.328,13.367,7.082,11.799,3.131,19.219,14.735,13.7,17.327,13.144,1.144,14.218,12.883,35.312,6.472,10.129,1.491,17.394,2.503,5.262,20.331,7.352,9.532,23.455,-3.006,17.965,2.946,20.713,14.077,25.075,12.261,14.01,5.8,-0.649,9.164,24.181,9.448,11.486,15.846,7.252,1.946,17.96,12.785,15.427,10.928,6.494,23.804,-0.093,-0.333,27.304,24.125,16.296,4.539,9.739,23.583,8.062,6.464,-2.439,8.27,4.467,19.053,8.32,7.672,0.611,9.549,22.185,7.094,4.577,24.517,17.339,10.396,-0.782,17.649,17.492,8.02,-3.433,6.201,17.938,5.601,24.659,24.576,3.547,22.643,18.298,-7.688,-2.095,19.462,-2.963,11.639,4.257,19.699,20.961,21.543,13.759,18.018,11.125,-6.983,13.168,13.123,23.482,10.843,6.745,18.754,11.124,24.955,15.501,10.609,1.385,2.21,15.109,15.007,13.107,14.773,12.633,12.94,8.591,19.361,3.234,15.329,-0.373,18.362,12.876,17.421,13.734,15.76,0.244,0.149,4.723,34.756,19.704,2.769,21.756,5.712,4.94,9.49,16.366,18.06,6.302,8.336,17.497,14.416,12.98,14.85,2.626,2.227,9.708,6.391,34.555,10.882,10.017,3.157],[15.452,24.817,17.288,4.629,10.822,5.766,-1.607,11.079,18.973,-1.158,10.95,24.082,25.474,15.828,2.735,7.57,6.912,18.28,8.839,0.338,4.602,9.632,-2.232,23.061,9.493,4.86,24.058,16.556,23.838,16.455,6.251,19.614,-2.813,21.156,12.674,-6.356,10.466,11.887,18.571,16.199,0.463,23.172,13.188,7.0,11.993,3.26,19.055,14.831,13.824,17.38,13.025,1.637,14.282,12.799,35.254,6.329,10.059,1.401,17.208,2.455,5.334,20.428,7.397,9.691,23.425,-2.959,18.184,3.095,20.693,14.013,24.941,12.335,13.532,6.011,-0.773,9.284,24.572,9.499,11.359,15.825,6.639,2.141,18.414,12.58,15.543,10.528,6.311,24.097,0.128,-0.504,27.363,24.83,15.851,4.455,10.429,23.432,8.934,6.444,-2.533,8.144,4.742,19.372,8.736,7.869,0.317,9.598,22.28,6.851,4.44,24.124,17.082,10.383,-1.24,17.406,17.366,7.839,-2.888,6.228,17.965,5.669,24.578,24.623,3.492,22.64,17.852,-7.499,-2.237,19.125,-1.962,11.048,4.665,19.557,20.595,21.534,13.567,17.935,11.111,-7.118,13.423,12.878,23.134,10.982,6.507,18.978,10.921,25.048,15.174,10.066,1.608,2.135,14.761,15.619,13.138,14.852,12.572,13.019,8.548,18.985,2.888,15.294,-0.459,18.023,12.835,17.327,12.586,15.961,0.456,0.706,5.021,35.229,19.974,2.962,21.825,5.705,4.958,10.518,16.645,18.248,6.313,8.305,17.653,14.09,13.494,14.652,3.057,1.816,9.879,6.844,34.837,10.516,10.057,3.208],[15.079,24.881,17.514,4.666,10.644,5.594,-1.605,11.098,19.073,-1.133,10.95,24.267,25.668,15.714,2.667,7.447,7.048,18.248,9.008,0.185,4.684,9.495,-2.07,23.047,9.612,4.761,23.744,16.478,23.835,16.212,6.326,19.481,-2.675,21.234,12.576,-6.473,10.499,11.745,18.786,16.23,0.442,23.161,13.05,6.935,12.2,3.332,18.79,14.953,13.882,17.334,12.818,1.937,14.46,12.844,35.21,6.163,10.077,1.406,17.155,2.408,5.494,20.661,7.472,9.962,23.563,-2.882,17.852,3.494,20.752,14.114,25.234,12.022,13.304,5.795,-0.949,9.218,23.994,9.361,11.388,15.592,6.197,2.636,18.784,12.237,15.86,10.811,6.884,23.773,-0.306,-0.236,27.512,24.534,15.46,4.312,10.702,23.763,9.297,7.036,-2.501,7.903,5.267,19.399,8.318,7.322,0.271,10.035,22.345,7.154,4.06,23.746,16.696,10.176,-1.424,17.637,17.601,7.559,-2.92,5.714,17.616,6.01,24.353,24.328,3.118,22.554,17.61,-7.297,-2.209,18.988,-1.906,11.059,4.738,20.189,20.047,22.146,13.504,18.457,11.328,-7.361,13.417,12.646,23.344,10.635,6.023,18.758,11.196,24.818,15.634,10.359,1.483,1.789,14.525,15.958,13.256,14.846,12.98,12.7,8.344,18.585,2.97,15.229,-0.793,18.385,12.321,16.892,11.901,16.205,1.083,0.941,5.151,36.018,19.38,3.356,21.537,5.874,5.059,10.653,16.435,18.132,6.533,8.537,17.74,14.096,13.353,14.485,3.379,1.907,10.188,6.832,34.736,10.262,10.396,3.041],[14.9,24.904,17.879,4.616,10.556,5.586,-1.628,11.061,19.078,-1.058,10.895,24.379,25.862,15.648,2.734,7.346,7.129,18.339,9.122,0.116,4.699,9.468,-1.764,23.114,9.577,4.511,23.474,16.468,23.773,16.059,6.173,19.183,-2.613,21.512,12.437,-6.565,10.594,11.575,18.858,16.205,0.332,23.229,12.936,6.884,12.325,3.28,18.572,14.964,13.931,17.327,12.545,2.237,14.691,12.971,35.288,6.079,10.152,1.356,17.214,2.446,5.669,20.817,7.437,10.202,23.771,-2.811,17.798,3.051,20.44,14.033,25.681,12.296,12.972,6.029,-0.635,9.234,24.04,9.305,11.241,14.908,5.613,2.423,18.74,11.266,15.965,11.134,7.232,23.988,-0.478,-0.046,27.637,24.77,15.42,4.356,10.137,24.05,8.922,7.005,-2.212,8.124,5.244,19.629,8.744,7.384,0.143,9.594,22.273,7.254,4.331,23.882,16.183,9.821,-1.496,18.001,17.274,7.575,-3.019,5.006,17.581,6.172,24.232,24.278,2.944,22.142,17.782,-7.347,-2.181,19.152,-2.521,11.379,5.002,20.114,20.313,21.934,13.423,18.919,11.551,-7.137,13.239,12.414,23.581,10.817,6.266,18.728,10.917,24.838,15.717,10.275,1.421,1.524,14.679,15.778,13.321,14.769,13.236,12.166,8.087,18.205,3.57,15.565,-0.54,18.371,12.638,16.867,11.959,16.17,1.13,0.306,5.124,36.073,19.149,3.467,21.385,6.002,4.785,9.913,16.438,17.709,6.088,8.774,17.523,14.18,13.501,14.422,3.315,2.272,10.004,6.928,34.941,10.955,10.023,3.156],[14.939,24.929,18.202,4.58,10.374,5.705,-1.711,11.127,18.965,-0.984,10.706,24.539,25.949,15.658,2.878,7.226,7.252,18.583,9.211,0.112,4.575,9.344,-1.528,23.267,9.523,4.355,23.307,16.373,23.659,16.045,5.925,19.036,-2.67,21.665,12.341,-6.486,10.773,11.323,18.834,16.083,0.17,23.378,12.801,6.761,12.358,3.347,18.387,15.038,13.999,17.4,12.476,2.463,14.916,13.158,35.532,6.032,10.009,1.239,17.224,2.672,5.707,20.747,7.368,10.317,23.913,-2.742,17.708,3.073,20.368,14.082,25.487,12.043,13.036,5.794,-0.542,9.094,23.985,9.326,11.353,15.307,5.38,2.174,18.895,10.949,16.51,10.81,7.063,24.207,-0.151,-0.158,27.827,24.798,15.417,4.49,10.184,23.912,8.723,6.799,-1.983,8.385,4.906,19.942,8.324,7.853,-0.221,9.012,21.948,7.023,3.966,24.504,15.893,9.783,-1.318,17.565,17.161,7.627,-2.532,4.526,17.677,5.913,23.933,24.397,2.879,22.263,17.813,-8.037,-2.057,18.787,-1.948,11.609,5.297,20.595,19.987,22.192,13.032,18.533,10.982,-6.872,13.406,12.08,23.45,10.975,6.216,18.966,10.352,25.143,15.272,10.056,1.496,1.895,14.604,15.461,13.265,14.58,13.713,11.616,7.648,18.442,3.551,15.722,-0.205,17.753,12.858,17.338,12.131,15.965,1.2,0.353,5.214,35.972,19.383,3.345,21.824,5.694,4.684,10.173,16.564,17.993,5.585,8.482,17.771,14.009,13.507,14.179,3.744,1.871,9.168,7.332,34.684,11.937,10.044,2.977],[15.138,24.836,18.472,4.504,10.11,5.882,-1.665,11.189,18.768,-0.986,10.553,24.697,25.93,15.633,2.954,7.174,7.352,18.714,9.178,0.086,4.339,9.056,-1.433,23.468,9.554,4.332,23.293,16.277,23.466,16.022,5.849,19.0,-2.554,21.776,12.35,-6.273,10.811,11.071,18.775,16.063,0.196,23.603,12.614,6.494,12.298,3.434,18.261,15.218,14.007,17.645,12.472,2.553,15.017,13.213,35.574,6.01,9.703,1.227,17.27,2.766,5.682,20.634,7.16,10.474,23.464,-2.819,17.544,3.049,20.24,14.027,25.118,11.785,13.25,5.52,-1.096,8.714,23.986,9.347,11.215,15.891,5.199,2.302,19.528,10.951,16.751,11.225,7.205,24.262,-0.2,-0.537,27.757,24.147,15.631,4.802,10.592,24.121,8.728,6.951,-2.012,8.536,4.759,20.213,8.813,8.594,0.14,9.35,22.061,6.418,3.892,24.574,16.189,9.993,-1.484,17.976,17.129,7.185,-2.164,4.349,17.561,5.644,23.637,24.55,2.72,22.085,17.77,-7.784,-2.52,18.544,-2.112,11.207,5.162,20.719,19.797,22.297,12.561,18.451,11.046,-6.885,13.708,11.976,23.377,10.789,5.824,18.883,10.291,25.34,15.736,10.258,1.524,2.009,14.508,15.389,13.56,14.402,13.435,11.853,7.29,18.832,3.529,15.937,-0.57,17.127,12.964,17.127,12.247,16.06,1.449,0.356,5.172,35.768,19.439,3.428,21.959,5.551,4.736,10.717,16.467,18.002,5.564,8.294,17.841,14.788,13.602,14.117,3.992,2.577,9.085,7.467,34.935,12.025,10.117,3.051],[15.392,24.639,18.726,4.227,10.002,6.079,-1.751,11.135,18.51,-1.041,10.518,24.665,25.849,15.565,2.923,7.264,7.396,18.842,9.175,0.123,4.336,8.858,-1.516,23.671,9.619,4.343,23.298,16.377,23.473,16.032,5.894,18.995,-2.492,21.817,12.415,-5.941,10.789,10.937,18.715,16.097,0.245,23.573,12.414,6.09,12.174,3.556,18.25,15.448,14.079,17.861,12.52,2.524,15.046,13.213,35.471,5.922,9.516,1.149,17.365,2.925,5.621,20.473,6.935,10.766,23.473,-2.857,17.535,2.979,20.023,14.029,25.387,12.2,13.565,5.668,-1.047,9.025,24.012,9.403,10.744,15.675,5.454,2.151,19.83,10.635,17.12,11.291,7.459,24.471,-0.357,-0.6,27.575,24.417,15.965,4.601,10.959,24.485,8.564,7.371,-1.893,8.135,4.368,19.978,8.948,8.709,0.276,9.29,21.729,6.772,4.41,24.431,16.89,10.084,-1.648,17.928,16.986,6.868,-2.137,4.557,17.749,5.23,23.78,24.225,2.61,21.947,17.091,-7.214,-2.79,18.601,-1.929,11.049,5.047,20.339,20.017,22.36,12.653,19.034,11.425,-6.918,13.63,12.018,23.825,10.304,5.828,18.469,10.012,25.341,15.745,10.564,1.791,2.005,15.012,14.864,13.608,14.267,13.165,12.526,7.104,18.712,3.551,16.314,-0.701,17.655,12.827,17.091,11.665,16.221,1.524,0.982,4.914,35.712,19.512,4.01,21.541,5.639,4.793,10.425,16.615,17.556,6.16,8.185,17.925,14.272,13.721,14.252,3.716,2.672,9.053,7.354,34.812,11.523,9.659,2.913],[15.544,24.498,19.065,3.938,9.949,6.307,-1.815,10.992,18.296,-1.035,10.524,24.554,25.765,15.483,2.765,7.437,7.419,18.893,9.135,0.262,4.551,8.879,-1.698,23.821,9.622,4.316,23.364,16.354,23.574,16.023,6.02,19.093,-2.551,21.66,12.566,-5.669,10.857,10.932,18.748,16.186,0.275,23.252,12.374,5.748,12.025,3.758,18.551,15.604,14.133,17.996,12.509,2.494,15.06,13.188,35.363,5.921,9.416,1.063,17.423,3.228,5.491,20.266,6.76,11.1,23.398,-2.852,17.116,2.531,19.901,13.821,25.613,12.37,13.661,5.37,-0.771,8.976,23.529,9.199,10.761,15.822,6.109,2.254,19.976,10.985,17.234,10.667,7.329,24.449,-0.352,-0.343,27.461,25.233,15.726,4.394,10.864,24.349,8.139,7.24,-1.824,7.867,4.501,20.191,8.715,8.652,0.116,8.627,21.791,7.608,4.497,24.733,17.369,10.267,-1.444,17.467,17.066,7.02,-2.307,5.034,17.901,5.195,23.873,23.694,2.592,22.265,16.817,-7.102,-2.992,18.508,-1.924,11.324,4.85,20.684,20.1,22.33,12.699,18.855,11.709,-6.546,13.32,11.392,23.828,10.549,4.939,18.5,9.832,24.705,15.523,10.282,2.102,1.974,15.1,15.065,13.972,14.084,13.293,12.731,6.447,18.483,3.522,16.569,-0.604,18.158,12.781,17.412,11.468,16.364,0.869,0.497,5.152,35.637,19.729,3.749,21.518,5.501,4.854,10.102,16.825,17.735,5.709,8.245,18.338,14.191,13.713,14.284,3.594,2.169,8.352,7.033,34.64,11.425,9.528,2.701],[15.517,24.329,19.21,3.623,9.869,6.475,-1.712,10.81,18.152,-1.162,10.52,24.484,25.739,15.26,2.768,7.546,7.394,18.87,9.011,0.48,4.648,8.925,-1.836,23.798,9.623,4.344,23.537,16.397,23.548,15.994,6.15,19.238,-2.732,21.55,12.845,-5.523,10.978,10.849,18.843,16.34,0.285,22.939,12.508,5.365,12.1,3.885,19.032,15.729,14.153,18.209,12.505,2.485,15.016,13.113,35.22,5.886,9.365,0.827,17.534,3.363,5.368,20.248,6.66,11.283,23.323,-2.786,16.864,2.019,19.815,13.482,25.06,11.875,13.695,4.832,-0.975,8.807,23.302,9.315,11.146,16.164,6.52,2.468,20.139,11.201,17.566,10.349,7.787,24.426,-0.708,0.054,27.427,25.2,15.306,4.588,10.881,24.588,7.597,7.052,-1.904,7.969,5.157,20.075,8.217,8.596,0.135,8.793,22.042,7.311,4.263,24.718,17.186,9.457,-1.169,17.787,17.4,7.276,-2.69,5.37,17.629,5.557,23.776,24.182,2.502,21.97,16.927,-6.957,-2.859,18.459,-2.14,11.47,4.753,20.22,20.265,22.073,12.597,19.067,11.772,-6.149,13.51,10.979,23.569,10.52,4.655,18.734,10.374,24.588,15.423,9.88,2.069,1.924,14.578,16.185,14.021,13.917,13.126,12.74,6.615,18.974,3.696,16.835,-0.579,17.976,12.85,17.596,11.127,16.573,0.682,-0.221,5.468,35.584,19.113,3.709,21.194,5.656,5.087,10.943,16.731,18.596,5.121,8.221,18.635,14.724,13.464,13.968,3.567,2.636,7.895,6.608,34.655,11.526,9.51,2.605],[15.364,24.225,19.333,3.302,9.887,6.647,-1.754,10.783,18.05,-1.296,10.581,24.43,25.716,14.954,3.035,7.448,7.206,18.972,8.931,0.498,4.611,9.068,-1.885,23.724,9.519,4.444,23.622,16.732,23.634,15.924,6.128,19.442,-2.993,21.335,13.068,-5.385,11.069,10.723,19.04,16.396,0.283,22.823,12.687,5.134,12.332,3.828,19.54,15.807,14.161,18.411,12.364,2.544,14.901,13.076,35.065,5.769,9.338,0.527,17.737,3.583,5.235,20.149,6.732,11.417,22.677,-2.909,17.029,2.163,19.561,13.305,25.333,11.762,13.594,4.449,-0.796,9.052,23.657,8.944,11.212,15.987,6.779,2.228,19.931,10.775,18.037,10.407,7.868,24.098,-0.518,-0.085,27.552,24.007,14.907,4.59,10.589,24.614,7.355,7.598,-2.388,8.016,4.807,19.695,8.054,8.779,0.802,9.423,21.892,6.666,3.92,24.507,16.226,8.984,-1.192,17.609,17.61,7.165,-2.732,5.291,17.841,6.017,23.791,24.635,2.858,22.255,17.396,-6.951,-2.379,18.635,-2.146,12.422,4.705,20.037,20.202,22.295,12.379,18.859,11.549,-6.131,14.484,11.232,22.989,10.653,4.617,18.935,10.406,24.647,15.359,9.843,2.046,1.693,14.644,16.39,14.124,13.812,13.357,12.226,6.66,19.121,3.987,16.611,-0.57,18.279,13.11,17.538,11.196,16.475,1.05,-0.32,5.303,35.683,19.056,3.234,21.146,5.413,4.866,11.823,16.605,19.015,5.365,7.997,18.604,14.345,13.533,13.93,3.34,2.738,8.169,6.554,34.547,11.222,9.489,2.307],[15.09,24.124,19.395,3.159,9.911,6.783,-1.846,10.829,18.05,-1.164,10.634,24.261,25.829,14.688,3.259,7.222,7.139,19.01,8.875,0.259,4.36,9.246,-1.909,23.542,9.353,4.53,23.712,17.158,23.957,15.744,5.877,19.597,-3.142,21.245,13.37,-5.469,11.127,10.639,19.175,16.358,0.234,22.899,12.766,5.028,12.554,3.649,19.905,15.85,14.151,18.478,12.29,2.658,14.814,13.123,35.005,5.718,9.496,0.323,17.895,3.812,5.057,20.037,6.805,11.574,22.585,-2.967,16.788,1.942,19.547,13.373,25.083,11.952,13.327,4.36,-1.093,8.963,23.959,8.98,10.843,15.782,7.351,2.045,20.182,10.87,18.624,10.574,7.541,24.007,-0.503,-0.398,27.657,23.16,14.321,4.863,10.42,24.496,7.664,7.464,-2.787,7.531,4.652,19.903,8.238,8.75,0.547,9.25,22.201,6.676,4.478,24.503,15.343,9.686,-1.456,17.42,17.984,7.458,-2.693,4.689,18.208,5.934,24.124,24.531,3.15,22.21,17.492,-7.019,-2.459,18.723,-2.532,12.614,4.948,20.699,20.585,21.559,12.237,18.921,10.963,-5.987,14.385,11.722,22.891,10.947,4.538,19.144,9.87,24.572,15.286,10.288,1.827,1.576,14.753,15.904,14.117,13.952,14.172,12.336,6.483,19.224,3.713,16.146,-0.569,19.263,13.46,17.245,11.302,16.541,1.346,-0.182,5.124,35.292,19.32,3.061,21.2,5.345,4.818,11.313,17.454,18.987,5.341,8.255,18.619,14.125,13.743,13.683,3.546,2.493,8.036,6.715,34.636,11.232,9.478,1.926],[14.759,24.098,19.531,3.176,9.948,6.934,-1.974,10.897,18.114,-0.981,10.502,23.99,25.92,14.522,3.286,7.201,7.147,18.982,8.923,-0.168,4.017,9.24,-1.931,23.349,9.168,4.754,23.934,17.428,24.176,15.422,5.613,19.706,-3.174,21.283,13.566,-5.735,11.123,10.655,19.223,16.154,0.185,22.907,12.874,4.965,12.704,3.385,20.089,15.853,14.271,18.561,12.23,2.805,14.841,13.276,35.083,5.742,9.641,0.211,18.011,3.935,4.907,20.08,6.821,11.656,22.745,-2.855,16.519,1.977,19.679,13.067,25.044,11.89,12.968,4.392,-1.297,8.906,23.449,9.238,10.67,15.741,7.693,2.79,19.776,11.304,18.08,10.776,7.595,23.844,-0.389,-0.314,27.673,23.479,14.369,5.004,10.2,24.35,8.032,7.321,-2.379,7.641,4.264,19.724,8.265,8.787,-0.125,8.983,22.64,6.752,4.518,24.527,15.37,9.888,-1.667,18.044,18.683,7.578,-2.607,4.207,18.359,5.68,24.308,24.663,2.922,22.214,17.071,-7.186,-2.842,19.121,-2.983,12.117,4.969,19.827,20.962,21.564,12.392,19.46,11.278,-5.805,14.323,12.193,23.425,10.962,4.432,19.21,9.709,24.691,15.637,10.562,1.565,1.715,14.828,15.537,14.159,13.747,13.913,13.311,6.098,19.422,3.377,16.176,-0.783,20.555,12.934,17.586,11.422,16.449,1.449,-0.262,5.046,34.98,19.138,3.394,21.407,5.775,4.87,10.585,17.527,18.725,5.224,8.156,18.391,14.461,13.579,13.792,3.812,2.93,7.876,6.663,34.441,11.449,9.961,1.907],[14.596,24.087,19.333,3.183,10.035,7.09,-1.995,10.896,18.151,-0.862,10.353,23.651,26.023,14.427,3.321,7.43,7.143,18.905,9.001,-0.421,3.763,9.094,-1.918,23.373,9.085,4.811,24.162,17.536,24.26,15.246,5.473,19.848,-3.343,21.126,13.608,-6.002,11.088,10.763,19.255,15.961,0.111,22.894,13.1,4.92,12.812,3.126,20.371,15.822,14.513,18.531,12.285,2.764,14.854,13.51,35.043,5.756,9.687,0.26,18.04,4.031,4.889,20.127,6.843,11.532,23.031,-2.588,16.779,2.15,19.608,12.809,25.169,12.14,12.717,4.785,-1.383,8.739,23.125,9.174,10.446,15.193,7.996,3.02,20.154,11.44,17.579,10.483,7.962,23.573,-0.49,-0.029,27.819,24.399,14.99,4.782,10.012,24.55,7.776,7.597,-2.122,7.593,4.205,19.952,8.267,8.832,-0.241,9.325,22.794,6.82,4.029,24.3,15.298,9.498,-2.078,18.142,18.604,7.113,-2.468,4.437,18.639,5.203,24.463,25.158,3.425,22.655,16.634,-7.563,-2.444,19.049,-2.646,12.112,4.282,20.169,20.488,21.954,12.488,19.626,11.638,-6.041,14.278,12.184,23.104,11.01,3.953,19.39,9.79,24.645,15.814,10.606,1.306,1.749,14.678,15.768,14.156,13.229,13.785,13.704,5.81,19.724,3.218,16.41,-0.625,21.185,12.843,17.626,11.128,16.344,1.469,-0.529,4.867,35.512,19.587,3.514,21.069,5.376,5.046,11.197,17.033,18.669,5.64,8.054,18.395,14.563,13.441,13.957,3.938,3.398,7.751,6.575,34.753,11.787,10.121,1.814],[14.558,24.098,18.964,3.226,10.056,7.309,-1.964,10.816,18.228,-0.701,10.273,23.452,26.224,14.521,3.419,7.66,7.123,18.954,9.037,-0.569,3.68,9.04,-1.878,23.573,8.978,4.62,24.337,17.506,24.269,15.233,5.325,20.009,-3.449,20.936,13.566,-6.192,11.067,10.724,19.293,15.959,0.143,22.803,13.361,4.953,12.874,2.934,20.719,15.639,14.837,18.49,12.374,2.597,14.892,13.65,34.935,5.824,9.561,0.384,18.097,4.253,5.073,20.146,6.842,11.37,22.967,-2.585,16.773,2.085,19.56,12.713,25.293,12.216,12.723,4.893,-1.397,8.337,23.626,9.169,10.243,14.877,8.394,2.612,20.066,11.587,17.303,10.572,7.966,23.278,-0.627,-0.194,28.014,23.988,14.855,4.827,9.788,24.923,7.488,7.769,-2.883,8.033,4.52,19.778,8.435,8.572,-0.112,8.888,22.84,6.736,4.148,24.247,15.203,8.792,-2.156,17.283,18.281,7.132,-2.792,4.879,18.704,5.035,24.757,25.23,3.275,23.25,16.792,-7.898,-2.266,18.773,-3.086,12.273,3.775,20.055,19.945,21.829,12.174,19.236,11.513,-6.236,14.248,12.027,22.682,11.186,4.311,19.534,10.318,24.311,15.852,10.42,1.117,1.748,14.183,16.029,14.13,12.899,14.305,13.79,5.75,20.239,3.306,16.75,-0.861,21.088,13.4,17.101,11.047,16.305,1.144,-0.401,4.974,35.682,19.775,3.282,20.786,5.154,5.118,11.733,17.211,18.335,5.622,8.157,18.492,14.871,13.49,13.97,3.717,3.12,7.897,6.608,34.675,12.475,9.823,1.643],[14.408,24.264,18.573,3.427,10.065,7.59,-2.008,10.657,18.332,-0.699,10.115,23.381,26.362,14.731,3.502,7.749,7.091,18.894,8.99,-0.71,3.76,9.076,-2.132,23.783,8.866,4.449,24.458,17.366,24.259,15.34,5.169,19.996,-3.631,20.832,13.516,-6.18,10.992,10.449,19.251,15.915,0.182,22.715,13.576,5.092,12.99,2.912,20.968,15.461,15.123,18.374,12.527,2.453,14.911,13.781,34.844,5.883,9.525,0.421,18.21,4.398,5.372,20.141,6.892,11.36,22.896,-2.529,16.676,1.942,19.616,12.987,25.128,12.277,12.523,4.637,-0.88,8.475,23.795,9.208,10.265,15.185,8.662,2.608,19.543,11.401,17.077,10.848,7.781,23.216,-0.761,-0.43,28.139,23.449,14.699,5.13,9.485,24.566,7.489,7.738,-3.066,7.914,4.238,19.431,8.195,8.507,-0.291,8.718,22.763,6.622,3.737,24.668,15.656,8.474,-2.23,17.543,18.215,7.402,-2.761,4.539,18.62,5.111,25.256,25.097,2.956,22.974,16.966,-7.628,-2.569,19.242,-3.152,12.979,3.756,19.524,20.225,21.456,12.192,18.788,11.482,-6.669,13.871,12.536,23.062,11.246,4.717,19.347,10.629,24.323,16.229,10.431,1.109,1.604,14.144,16.627,13.892,12.655,14.558,13.889,5.907,19.8,3.19,16.455,-1.078,21.842,13.331,17.059,11.041,16.689,1.013,-0.563,5.49,35.453,19.49,3.869,21.088,5.306,4.887,11.458,16.685,18.441,5.009,8.23,18.45,15.046,13.685,13.512,3.386,2.92,7.659,7.101,34.142,12.87,9.72,1.79],[14.225,24.355,18.187,3.587,10.104,7.878,-1.921,10.504,18.486,-0.901,10.045,23.282,26.448,14.942,3.605,7.72,7.114,18.733,8.866,-0.811,3.806,9.133,-2.391,23.852,8.691,4.323,24.443,17.332,24.203,15.483,5.014,19.935,-3.8,20.843,13.512,-6.018,10.866,10.277,19.06,15.838,0.154,22.79,13.845,5.306,13.168,2.867,21.134,15.29,15.295,18.068,12.57,2.36,14.912,13.838,34.736,5.834,9.561,0.341,18.289,4.442,5.675,20.107,7.047,11.364,23.179,-2.685,16.822,1.952,19.493,13.425,25.287,12.073,12.352,4.097,-0.949,8.364,24.056,9.135,9.915,15.054,8.649,2.764,18.859,10.938,17.089,10.918,8.25,23.829,-0.986,-0.018,28.091,23.586,14.921,5.207,9.036,24.6,7.668,7.479,-3.241,7.509,3.828,19.772,8.21,8.563,-0.22,9.286,22.67,6.846,3.763,25.436,15.689,8.966,-2.429,18.002,18.279,7.414,-2.99,3.807,18.462,5.606,25.19,25.194,3.005,22.752,16.998,-7.226,-3.312,19.497,-2.793,13.355,4.121,20.065,21.008,21.465,11.975,18.748,11.2,-6.883,14.109,12.687,22.766,11.323,4.656,19.165,9.767,24.657,16.508,10.462,1.145,1.572,14.57,16.704,13.497,12.708,14.478,13.404,6.169,19.753,2.929,16.02,-0.933,22.221,13.257,17.222,11.248,16.569,1.167,-0.652,5.908,35.595,19.746,3.821,21.197,5.418,5.131,11.003,16.849,18.945,4.66,8.19,18.273,14.695,13.88,13.406,3.586,3.472,7.774,7.3,34.031,12.989,9.918,2.102],[14.182,24.399,17.836,3.556,10.088,8.261,-1.781,10.409,18.607,-1.074,9.97,23.261,26.57,15.215,3.636,7.624,7.148,18.71,8.753,-0.93,3.864,9.178,-2.451,23.963,8.454,4.307,24.314,17.478,24.167,15.553,4.803,19.989,-3.886,20.99,13.608,-5.875,10.677,10.083,18.795,15.713,0.15,22.863,14.166,5.506,13.243,2.709,21.291,15.198,15.329,17.675,12.481,2.373,14.845,13.686,34.73,5.799,9.596,0.324,18.33,4.583,5.869,20.14,7.195,11.319,23.225,-2.924,16.81,1.836,19.604,14.094,25.202,12.017,12.296,4.167,-0.517,8.303,24.19,8.972,9.379,14.551,8.554,3.36,18.729,11.403,16.72,11.047,8.388,24.307,-0.992,-0.207,28.2,23.287,14.745,5.248,8.37,24.907,8.188,7.387,-3.457,7.447,3.918,19.575,8.215,8.751,-0.524,9.566,22.477,7.104,3.646,25.111,14.975,9.29,-2.177,17.446,18.718,7.286,-3.386,3.796,18.453,5.593,24.862,25.074,2.995,22.862,17.122,-7.193,-3.006,19.17,-3.024,13.133,4.626,19.879,21.095,21.511,11.867,18.681,11.223,-6.369,14.285,12.97,22.689,11.53,5.196,19.027,9.013,24.536,16.522,10.198,0.8,1.615,15.122,16.294,13.517,13.274,14.934,12.912,6.878,20.703,2.939,15.794,-0.643,22.035,13.719,17.048,11.156,16.38,0.916,-0.669,6.453,35.491,19.788,3.598,21.144,5.688,5.123,10.792,17.138,18.911,4.522,8.588,18.289,14.64,13.56,13.832,3.825,3.509,7.735,7.387,34.275,13.123,9.917,2.097],[14.194,24.466,17.63,3.679,10.222,8.612,-1.646,10.445,18.518,-1.174,9.742,23.318,26.574,15.356,3.575,7.752,7.211,18.693,8.638,-1.066,3.832,9.132,-2.402,24.016,8.293,4.362,24.198,17.787,24.112,15.472,4.748,20.082,-3.807,21.015,13.718,-5.843,10.638,9.829,18.566,15.614,0.224,22.806,14.475,5.8,13.156,2.464,21.375,15.147,15.27,17.357,12.414,2.499,14.682,13.587,34.832,5.808,9.592,0.415,18.297,4.743,5.932,20.263,7.355,11.282,23.491,-3.005,16.988,1.79,20.03,13.927,25.281,11.663,12.391,4.153,-0.424,8.329,23.632,8.818,9.525,14.537,9.152,3.376,18.909,11.772,16.15,10.813,8.207,23.931,-0.558,-0.875,28.174,23.587,15.179,5.296,7.985,25.32,7.741,7.818,-2.846,7.696,4.336,19.312,8.179,8.784,-0.705,9.373,22.756,7.096,3.325,24.677,14.848,8.657,-2.391,17.945,18.991,7.265,-3.133,4.07,18.625,5.325,24.63,25.194,3.1,22.676,17.106,-7.459,-2.74,19.242,-3.39,12.814,4.222,19.363,20.457,21.931,11.576,18.042,10.921,-5.947,14.608,13.365,23.232,11.694,4.863,18.933,9.237,24.425,16.878,10.187,0.612,1.536,15.116,15.366,13.712,13.969,15.211,12.747,7.062,20.478,2.887,16.138,-0.21,22.151,13.321,16.999,11.109,16.187,0.766,-0.533,6.915,35.247,19.471,4.183,21.016,5.549,4.917,10.697,16.71,18.783,4.7,8.505,18.266,14.908,13.024,13.942,3.663,3.094,7.729,7.287,34.25,13.071,9.796,2.036],[14.275,24.386,17.416,3.85,10.436,8.965,-1.481,10.445,18.472,-1.195,9.624,23.46,26.596,15.336,3.479,7.964,7.406,18.797,8.52,-1.277,3.845,9.023,-2.32,23.927,8.127,4.344,24.138,18.052,24.169,15.378,4.825,20.08,-3.758,20.949,13.846,-5.96,10.656,9.636,18.369,15.41,0.228,22.776,14.733,5.982,13.039,2.426,21.411,15.111,15.189,17.155,12.409,2.659,14.461,13.659,34.82,5.791,9.606,0.514,18.288,4.835,5.953,20.281,7.368,11.192,23.143,-3.084,16.942,2.02,19.867,13.849,25.323,11.571,12.569,4.566,-0.422,7.957,24.141,8.72,9.584,14.493,9.21,2.656,19.03,11.568,16.036,10.707,8.218,23.214,-0.432,-0.739,28.012,24.04,15.715,5.185,7.982,25.188,7.363,8.209,-3.063,7.809,4.349,19.64,8.178,8.593,-0.602,9.023,22.836,7.145,3.741,24.939,15.009,8.023,-2.861,17.54,19.055,7.296,-3.155,4.226,19.271,4.874,24.498,25.567,3.034,22.405,16.921,-7.483,-2.902,19.495,-3.003,13.105,3.511,20.203,19.548,22.128,11.484,17.554,11.122,-6.222,14.21,13.963,23.011,11.457,5.095,18.638,9.403,24.393,16.565,10.3,0.567,1.915,14.169,15.545,13.764,14.591,14.523,12.36,7.337,20.467,2.824,16.257,0.053,22.079,12.951,16.651,10.976,15.918,1.138,-0.541,6.934,35.711,19.106,4.412,21.196,5.608,5.221,11.107,17.034,18.678,4.968,8.337,18.172,14.742,13.008,13.349,3.58,3.766,7.843,7.119,34.387,12.592,10.105,2.294],[14.292,24.358,17.256,4.07,10.537,9.301,-1.31,10.412,18.549,-1.102,9.722,23.538,26.663,15.341,3.288,8.099,7.573,18.814,8.344,-1.441,3.754,8.892,-2.371,23.835,7.925,4.322,24.127,18.278,24.427,15.256,4.917,19.886,-3.842,21.077,13.86,-6.128,10.75,9.571,18.158,15.085,0.22,22.707,14.975,6.081,12.757,2.684,21.408,15.091,14.92,17.14,12.334,2.774,14.243,13.777,34.794,5.557,9.734,0.762,18.301,5.083,5.9,20.098,7.308,11.117,23.355,-2.896,16.95,2.413,19.5,13.59,25.42,11.806,12.733,5.17,-0.266,7.928,24.179,8.682,9.442,14.341,8.475,2.579,18.653,11.804,15.931,11.407,8.667,23.714,-0.357,-0.516,28.316,23.939,15.743,5.14,8.586,24.425,8.124,8.317,-3.145,7.592,4.06,19.771,8.016,8.638,-0.832,9.27,22.802,7.071,3.695,25.288,14.965,8.306,-3.299,17.575,19.213,7.05,-3.374,4.256,19.613,5.539,24.631,25.205,2.931,22.551,16.916,-7.488,-2.867,19.147,-2.735,14.223,3.48,19.626,19.472,21.546,11.133,18.047,11.451,-6.559,13.735,14.434,22.812,11.149,5.74,18.285,9.221,24.387,16.409,10.193,0.775,1.757,13.593,15.499,13.781,14.802,14.222,12.073,7.339,20.271,2.701,15.799,0.052,22.268,13.476,16.603,10.699,15.952,1.399,-0.565,6.88,35.858,19.191,4.098,21.252,5.628,5.545,10.985,17.06,18.701,5.997,8.345,17.583,14.58,13.148,13.323,4.033,3.894,8.169,7.086,34.134,12.206,10.154,2.273],[14.19,24.464,17.134,4.317,10.638,9.43,-1.211,10.395,18.663,-1.03,9.939,23.574,26.729,15.362,3.219,8.201,7.648,18.681,8.152,-1.545,3.669,8.784,-2.449,23.791,7.858,4.22,24.159,18.451,24.512,15.111,5.071,19.514,-4.007,20.949,13.887,-6.16,10.919,9.442,17.949,14.723,0.265,22.675,15.254,6.254,12.379,2.909,21.52,14.966,14.62,17.202,12.29,2.857,14.12,13.858,34.801,5.369,9.969,1.057,18.265,5.323,5.872,19.919,7.224,11.073,23.379,-2.77,17.026,2.953,19.835,13.613,25.501,11.76,12.617,5.795,0.325,8.376,23.786,8.936,9.334,14.16,8.526,2.595,18.657,12.03,16.105,11.309,9.777,23.748,-0.381,-0.471,28.394,23.843,15.551,5.041,9.219,24.497,8.009,8.405,-2.988,7.258,3.797,19.149,7.866,9.087,-1.077,9.114,23.052,7.144,3.407,25.178,15.237,8.354,-3.348,18.009,19.346,6.875,-3.429,4.096,19.69,5.39,24.6,25.357,3.007,22.52,16.609,-7.423,-2.819,19.053,-3.078,14.881,4.117,19.55,20.505,21.384,11.335,18.038,10.899,-6.807,14.005,14.659,22.93,10.709,5.311,18.426,9.492,24.43,16.018,10.325,1.165,1.529,13.829,15.349,13.349,14.192,13.945,12.439,7.453,20.207,3.157,15.497,-0.372,22.209,13.428,16.482,10.856,15.901,1.192,-0.211,6.639,35.59,19.326,4.625,20.85,5.644,5.284,10.54,16.955,18.988,6.417,8.55,17.021,15.113,12.906,13.373,4.079,3.692,8.496,7.419,33.733,12.522,9.888,2.721],[13.992,24.535,17.074,4.499,10.623,9.6,-1.084,10.38,18.829,-0.975,10.109,23.563,26.889,15.406,3.374,8.045,7.67,18.549,8.175,-1.589,3.484,8.661,-2.376,23.824,7.786,4.014,24.058,18.51,24.41,15.063,5.339,19.333,-4.244,20.716,14.015,-6.04,10.922,9.483,17.746,14.415,0.206,22.713,15.406,6.418,12.106,3.111,21.637,14.789,14.31,17.127,12.218,2.845,14.074,13.987,34.785,5.388,10.158,1.343,18.257,5.49,5.899,19.744,7.14,11.146,23.529,-2.788,17.293,3.098,20.381,13.868,25.594,11.883,12.404,5.929,0.308,8.461,24.408,8.75,9.896,14.059,9.033,2.379,18.495,12.089,15.867,10.864,9.814,23.631,-0.446,-0.511,28.45,24.085,15.429,5.067,9.519,25.215,7.882,8.496,-3.179,7.428,3.701,19.206,7.677,8.975,-0.88,9.143,22.611,7.081,3.373,24.695,15.283,8.515,-3.465,17.357,19.685,6.877,-3.63,4.327,19.605,4.839,24.721,25.508,2.725,22.478,16.495,-7.331,-3.467,18.831,-3.135,14.191,4.668,19.965,20.625,21.631,11.295,17.33,11.495,-6.7,14.899,15.068,23.054,10.404,5.273,18.301,9.104,24.274,15.467,10.188,1.341,1.739,13.766,14.887,13.233,13.734,13.746,12.727,7.702,20.853,3.327,15.559,-0.687,21.923,13.313,16.602,10.856,15.636,1.198,0.596,5.883,35.471,19.316,5.348,20.872,5.624,5.235,10.45,16.888,19.111,5.548,8.567,17.48,15.328,12.729,13.666,3.872,4.186,8.531,7.561,34.261,12.678,10.429,3.046],[13.831,24.699,16.981,4.592,10.506,9.887,-1.015,10.514,19.008,-0.936,10.158,23.522,27.057,15.38,3.35,7.697,7.699,18.397,8.336,-1.476,3.276,8.617,-2.301,23.89,7.655,3.804,23.938,18.471,24.216,15.101,5.634,19.395,-4.505,20.74,14.119,-5.92,10.771,9.636,17.48,14.271,0.054,22.735,15.349,6.533,12.049,3.127,21.676,14.82,13.957,17.049,12.28,2.812,14.128,14.127,34.802,5.424,10.218,1.604,18.241,5.723,5.824,19.643,7.101,11.197,23.888,-2.771,17.642,2.936,20.324,14.105,25.872,11.221,12.279,5.72,0.138,8.375,24.133,8.6,10.635,14.048,9.517,2.642,18.615,12.061,15.789,11.226,8.828,23.57,-0.08,-0.589,28.705,24.108,15.341,5.127,9.467,25.254,8.429,8.644,-3.204,7.719,3.573,19.294,7.795,8.749,-1.373,9.126,22.438,6.572,3.324,24.677,15.126,8.009,-3.21,17.85,19.707,6.678,-3.215,4.684,19.479,4.927,24.572,25.249,2.289,22.208,16.424,-7.185,-3.839,18.423,-3.185,14.174,5.177,19.367,20.006,21.545,11.396,17.315,11.523,-6.181,15.072,15.731,23.161,10.496,5.584,17.648,9.076,24.24,15.576,10.079,1.279,1.453,13.44,14.243,13.336,13.49,13.571,12.95,7.871,20.656,3.326,15.772,-0.639,22.735,13.639,16.719,10.47,15.581,1.265,0.849,5.552,35.557,19.069,5.17,20.619,5.635,5.428,11.298,16.778,19.095,5.768,8.379,17.926,14.956,12.656,13.602,4.085,4.328,8.942,7.717,34.3,12.485,10.9,3.461],[13.726,24.924,17.057,4.68,10.471,10.102,-0.929,10.618,19.104,-0.887,10.146,23.524,27.157,15.407,3.174,7.431,7.839,18.308,8.491,-1.3,3.033,8.559,-2.211,23.917,7.634,3.606,23.677,18.368,23.971,15.132,5.819,19.467,-4.612,20.804,14.188,-5.83,10.622,9.83,17.158,14.158,-0.089,22.697,15.231,6.717,12.145,2.968,21.755,14.992,13.629,17.045,12.334,2.911,14.236,14.204,34.831,5.472,10.276,1.855,18.32,5.871,5.78,19.472,7.062,11.159,23.592,-2.849,17.718,2.842,20.498,14.084,25.995,11.359,12.528,5.285,0.195,8.421,24.298,8.842,10.865,14.033,10.06,2.705,18.343,11.76,15.797,10.94,9.271,23.504,0.167,-0.535,28.678,23.854,14.913,4.96,8.863,24.752,8.398,8.864,-3.072,7.437,3.413,19.432,7.957,8.689,-1.481,8.858,22.785,6.891,3.249,25.25,14.897,7.634,-2.551,18.209,19.56,6.852,-2.933,4.557,18.994,4.802,24.247,25.242,2.509,22.106,16.722,-6.904,-4.083,17.899,-3.702,14.833,5.208,19.4,19.519,21.443,11.598,17.238,10.841,-6.122,14.292,16.056,22.927,10.63,5.839,17.813,9.473,24.401,15.411,9.944,1.131,0.979,13.654,14.103,13.302,13.466,13.022,13.207,7.938,20.395,2.992,15.683,-0.774,22.586,13.724,16.073,10.625,15.838,1.311,0.629,5.578,36.179,18.943,4.892,20.828,5.404,5.845,12.275,16.846,18.759,6.242,8.307,17.937,15.188,12.561,13.405,4.129,4.538,9.045,7.4,34.149,12.2,10.847,3.531],[13.667,25.109,17.209,4.71,10.331,10.319,-0.847,10.745,19.034,-0.941,10.214,23.555,27.179,15.457,2.936,7.382,7.991,18.368,8.494,-1.04,2.829,8.451,-2.135,23.903,7.631,3.601,23.407,18.175,23.727,15.099,5.797,19.411,-4.601,20.877,14.167,-5.755,10.435,10.047,16.904,14.134,-0.28,22.577,15.248,6.866,12.247,2.738,21.663,15.123,13.385,17.073,12.365,3.05,14.276,14.294,34.916,5.669,10.304,1.92,18.455,5.937,5.777,19.433,6.962,11.055,23.878,-2.721,17.926,2.916,20.718,14.085,25.871,11.976,12.491,5.417,0.503,8.501,24.808,9.003,10.49,14.109,9.64,2.61,17.984,11.919,15.601,10.58,10.521,23.326,0.011,-0.618,28.876,24.544,15.047,4.721,9.147,24.737,7.82,8.964,-2.993,7.587,2.872,19.463,7.979,9.048,-1.07,9.046,23.018,7.197,3.086,25.248,15.234,8.357,-1.687,17.655,19.428,6.626,-3.114,4.807,18.814,4.486,23.606,25.153,2.188,21.864,16.848,-6.749,-4.12,17.942,-3.39,14.676,4.569,19.873,19.329,21.416,11.915,17.184,10.953,-6.556,13.992,15.626,22.565,10.826,6.029,18.225,9.903,24.327,14.868,9.886,1.04,0.992,13.84,14.11,13.391,13.318,12.876,13.501,8.201,20.607,2.725,15.432,-1.042,22.121,13.958,15.96,10.757,15.758,1.356,0.566,6.056,36.123,18.888,5.165,20.583,5.391,5.675,12.411,17.137,18.548,5.621,8.155,17.839,15.722,12.862,13.221,3.996,4.584,8.824,7.516,34.712,11.717,10.342,3.531],[13.662,25.295,17.237,4.755,10.291,10.527,-0.758,10.954,18.846,-1.042,10.374,23.708,27.25,15.433,2.669,7.378,8.093,18.493,8.511,-0.556,2.627,8.459,-2.251,23.818,7.821,3.553,23.063,18.002,23.569,15.038,5.652,19.309,-4.421,20.967,13.998,-5.838,10.339,10.296,16.777,14.176,-0.476,22.298,15.336,6.819,12.288,2.621,21.523,15.111,13.342,17.181,12.473,3.059,14.251,14.498,35.039,5.79,10.204,1.947,18.571,5.948,6.08,19.459,6.779,10.875,24.185,-2.929,18.162,3.076,20.641,13.811,25.934,11.798,12.206,5.937,0.393,8.774,24.746,9.158,10.424,14.086,10.082,2.914,18.787,11.824,16.236,10.712,10.145,23.49,0.128,-0.446,28.676,25.006,16.003,4.42,9.583,25.376,7.624,8.861,-2.673,7.541,3.002,18.95,7.772,9.292,-0.607,9.009,22.094,6.538,3.06,24.301,15.56,8.279,-1.359,17.494,19.104,6.496,-3.568,4.8,18.554,4.284,23.324,25.171,2.065,21.546,16.627,-6.809,-3.921,18.298,-2.975,14.224,4.357,19.813,19.134,21.879,12.294,17.106,10.884,-6.656,14.203,14.994,22.6,11.169,6.019,17.834,9.747,23.683,14.55,9.909,0.866,0.853,13.794,14.116,13.469,13.589,12.582,14.027,8.31,20.471,2.615,15.615,-1.345,22.374,14.411,16.8,10.694,15.863,1.351,0.666,6.256,35.44,19.041,5.318,20.455,5.331,5.163,11.626,17.122,19.095,5.376,7.843,17.726,15.555,13.02,12.949,4.106,4.827,8.741,7.729,34.616,12.094,10.12,3.571],[13.685,25.34,17.36,4.915,10.544,10.642,-0.64,11.047,18.756,-1.063,10.658,23.98,27.306,15.392,2.505,7.168,8.071,18.442,8.552,0.06,2.566,8.563,-2.483,23.653,7.968,3.4,22.702,17.978,23.437,15.061,5.542,19.171,-4.202,21.116,13.845,-6.054,10.35,10.481,16.784,14.27,-0.754,21.986,15.462,6.585,12.315,2.46,21.506,15.053,13.33,17.403,12.616,2.982,14.271,14.61,35.005,5.737,10.022,1.99,18.662,5.96,6.515,19.352,6.561,10.715,24.058,-3.063,18.318,3.208,20.354,13.767,26.139,11.33,12.464,6.084,0.421,8.783,24.575,9.256,10.754,13.731,10.738,2.722,18.791,11.765,16.735,11.024,9.481,24.022,0.698,-0.503,28.752,24.079,16.503,4.24,9.195,25.278,7.976,9.405,-3.333,7.79,3.106,19.269,7.918,9.014,-0.051,8.792,21.928,6.827,2.833,23.929,15.544,8.004,-1.211,17.67,18.894,6.807,-3.313,4.263,18.485,4.006,23.128,24.581,2.261,21.581,16.465,-7.257,-3.614,17.847,-2.727,13.622,4.793,19.648,18.971,21.593,12.351,16.714,10.771,-6.473,14.065,15.002,22.733,11.159,6.003,17.544,9.703,23.538,14.655,9.644,0.602,0.518,13.957,13.999,13.25,13.932,12.289,14.031,7.861,20.343,2.609,15.573,-1.086,22.136,14.509,16.944,10.845,16.034,1.296,0.783,6.135,35.586,19.056,5.21,20.355,4.842,5.743,11.249,17.137,19.981,5.757,7.977,17.567,15.158,12.944,12.96,4.298,4.742,8.721,8.363,34.683,12.339,10.623,3.674],[13.695,25.217,17.511,5.269,10.705,10.684,-0.338,10.943,18.816,-1.14,10.862,24.198,27.33,15.442,2.444,6.923,8.21,18.365,8.544,0.494,2.537,8.575,-2.659,23.433,7.998,3.349,22.405,18.09,23.335,15.161,5.588,18.863,-4.071,21.189,13.809,-6.226,10.336,10.516,16.85,14.452,-1.018,21.855,15.668,6.326,12.275,2.178,21.488,14.965,13.216,17.52,12.678,2.955,14.312,14.434,34.953,5.74,10.04,1.962,18.772,5.89,6.81,19.246,6.395,10.579,24.099,-2.972,18.245,3.443,20.508,13.861,26.411,11.542,12.597,6.01,0.653,9.034,24.399,9.028,11.486,13.959,10.29,2.021,18.581,11.966,16.504,11.595,9.676,23.706,0.883,-0.57,28.907,24.05,16.539,4.242,9.351,24.574,7.775,9.199,-3.779,7.984,2.544,19.514,7.625,8.695,0.218,8.966,21.979,7.553,2.922,24.364,15.203,8.652,-0.713,17.156,19.207,6.72,-3.333,4.171,18.65,4.287,22.956,24.462,1.851,21.519,16.905,-7.021,-3.608,17.532,-2.752,13.309,4.832,19.959,19.187,21.399,12.321,16.879,10.944,-6.918,13.789,15.245,22.274,10.843,5.594,17.889,10.149,23.438,14.97,10.079,0.296,0.427,14.429,14.12,13.245,13.946,12.641,13.558,7.642,20.405,2.498,15.397,-0.995,21.862,14.171,16.606,11.093,15.984,1.433,0.709,6.259,36.246,18.774,5.248,19.93,4.834,6.14,10.795,17.1,19.972,6.235,7.589,17.392,15.679,13.182,13.531,4.445,4.344,8.502,8.753,34.712,12.286,10.929,3.657],[13.717,24.937,17.66,5.634,10.678,10.715,-0.032,10.709,18.888,-1.21,11.13,24.251,27.453,15.547,2.313,6.67,8.328,18.285,8.471,0.604,2.466,8.488,-2.968,23.158,8.227,3.297,22.253,18.259,23.269,15.228,5.763,18.709,-4.047,21.168,13.891,-6.403,10.365,10.562,17.049,14.72,-0.985,21.73,15.78,6.17,12.16,1.943,21.454,14.841,13.206,17.589,12.842,2.919,14.432,14.273,35.127,5.909,10.218,1.884,18.664,5.683,6.823,19.243,6.233,10.391,23.957,-3.063,18.468,3.707,20.798,13.986,26.191,11.754,12.297,6.559,0.834,9.44,24.487,9.004,11.849,14.42,9.619,2.035,18.749,11.986,16.067,11.266,10.241,23.674,1.194,-0.974,28.698,25.137,16.407,4.155,9.833,24.185,7.714,9.239,-3.161,7.294,2.606,18.94,7.687,8.977,0.288,8.757,21.858,7.685,2.935,24.501,15.328,8.588,0.039,17.173,19.647,6.536,-3.858,4.558,18.972,4.278,22.492,24.778,1.786,20.859,16.845,-6.533,-3.416,17.47,-2.766,13.9,4.662,20.175,19.071,21.829,12.464,17.594,10.882,-7.031,13.825,15.676,21.916,10.63,5.78,17.33,9.731,23.435,14.743,10.321,0.065,0.268,15.052,13.989,13.202,14.009,12.912,13.739,7.792,20.399,1.894,15.488,-1.429,21.771,13.691,16.444,11.054,15.961,1.778,0.678,6.541,36.119,18.85,5.335,20.258,4.664,5.889,10.71,17.162,19.649,6.174,7.387,17.888,15.656,13.172,13.54,4.477,4.155,8.441,8.649,34.699,11.885,10.335,3.511],[13.744,24.697,17.735,5.893,10.539,10.75,0.133,10.535,19.057,-1.269,11.409,24.302,27.516,15.619,2.221,6.441,8.329,18.109,8.51,0.59,2.404,8.233,-3.355,22.94,8.355,3.209,22.209,18.402,23.259,15.259,5.888,18.753,-4.036,21.282,14.055,-6.365,10.34,10.515,17.254,14.897,-0.755,21.668,15.744,6.173,12.254,1.787,21.444,14.787,13.253,17.725,12.886,2.961,14.562,14.182,35.326,6.138,10.248,1.917,18.436,5.547,6.665,19.314,6.111,10.152,23.427,-3.163,18.526,4.165,20.84,14.362,26.24,11.483,12.251,6.768,0.996,9.636,23.84,8.83,11.52,14.208,9.962,2.202,18.916,11.784,16.321,10.736,10.79,23.74,1.571,-1.248,29.019,25.204,15.869,3.845,9.073,24.216,7.538,9.507,-3.938,7.583,2.825,18.874,7.398,9.264,0.038,8.998,21.97,7.55,2.384,23.769,16.007,8.829,0.615,17.579,19.45,6.536,-4.323,5.086,18.892,4.081,22.052,24.606,2.073,20.934,16.859,-7.38,-3.749,17.505,-2.328,14.384,4.658,19.659,18.8,21.932,12.273,17.652,10.718,-7.106,14.63,16.041,21.778,10.599,6.353,17.991,9.855,23.415,14.633,9.664,-0.009,0.412,15.311,14.204,13.04,13.962,12.78,13.726,7.576,20.16,2.054,15.279,-1.501,22.236,13.87,16.827,11.501,16.345,1.513,0.294,6.047,35.917,18.989,4.711,20.418,4.574,5.911,11.169,16.768,19.741,5.836,7.36,18.708,15.356,13.316,13.458,4.259,4.378,8.691,8.498,34.872,11.635,10.185,3.404],[13.673,24.425,17.736,6.209,10.318,10.975,0.412,10.523,19.261,-1.378,11.512,24.332,27.505,15.595,2.154,6.232,8.287,17.987,8.465,0.62,2.401,8.086,-3.719,22.827,8.3,3.094,22.2,18.314,23.157,15.493,5.89,18.878,-4.011,21.397,14.269,-6.325,10.155,10.491,17.431,14.907,-0.583,21.632,15.751,6.215,12.455,1.66,21.373,14.646,13.33,18.083,12.894,2.898,14.75,14.229,35.305,6.374,10.155,1.937,18.313,5.475,6.431,19.394,5.909,10.085,23.368,-3.148,18.652,4.34,21.047,14.749,26.578,10.989,12.996,6.573,1.012,9.98,23.157,8.697,11.123,13.897,10.318,2.056,19.252,11.817,16.907,10.834,10.959,23.855,1.634,-0.738,29.161,24.585,15.519,3.817,9.014,24.545,6.973,9.215,-4.507,8.15,2.672,18.873,7.207,9.04,-0.224,8.884,22.032,7.377,2.516,23.121,16.195,9.172,0.639,17.258,19.351,6.179,-4.6,5.136,18.878,3.993,21.974,24.868,1.879,21.632,17.035,-7.453,-3.982,17.716,-2.151,14.738,4.49,20.286,18.643,21.855,12.151,17.553,10.237,-7.05,14.648,15.72,21.674,11.36,6.243,18.116,9.928,23.384,14.8,9.352,-0.145,0.725,15.34,15.066,13.004,13.955,12.719,13.975,7.425,20.091,2.179,15.014,-1.246,22.314,14.175,16.891,11.461,16.596,1.267,0.511,5.738,35.75,18.872,4.848,20.289,4.395,5.839,11.42,16.794,19.593,6.009,7.173,18.616,15.335,13.999,13.524,4.344,4.172,8.578,8.335,34.785,10.985,10.798,3.186],[13.622,24.153,17.815,6.409,10.251,11.182,0.746,10.538,19.516,-1.377,11.548,24.3,27.493,15.506,1.954,6.111,8.141,17.838,8.542,0.728,2.422,7.99,-3.922,22.882,8.328,2.985,22.238,18.308,23.052,15.801,5.632,19.001,-3.931,21.695,14.468,-6.302,9.844,10.559,17.504,14.911,-0.412,21.673,15.809,6.267,12.671,1.587,21.299,14.382,13.467,18.365,12.954,2.791,14.873,14.299,35.029,6.507,10.14,1.869,18.19,5.383,6.273,19.498,5.532,10.073,23.495,-3.146,18.892,4.658,21.188,14.743,26.62,11.04,12.621,6.416,1.197,9.911,23.531,8.762,11.49,14.263,10.466,1.828,19.349,11.487,16.895,11.342,10.765,23.765,1.865,-0.493,28.82,24.992,15.671,3.739,9.238,24.61,7.047,9.444,-4.38,7.924,2.616,18.613,7.437,8.512,0.006,8.258,22.226,7.122,2.558,23.231,15.74,8.178,0.091,17.042,19.228,6.332,-4.422,4.514,18.492,4.148,22.328,24.832,1.714,21.199,17.213,-7.003,-3.494,17.961,-2.401,15.151,4.699,20.352,18.495,22.084,12.429,17.172,10.082,-6.823,13.853,15.477,21.872,11.367,6.153,17.864,10.039,23.16,15.003,9.793,-0.312,0.66,15.712,14.641,12.884,14.116,12.735,14.49,7.341,20.133,1.608,14.859,-1.548,21.532,13.936,17.23,11.136,16.743,1.366,0.803,5.821,35.943,18.818,5.359,19.788,4.025,6.269,11.48,16.827,19.828,6.801,6.83,17.804,15.778,14.253,13.482,4.097,3.624,8.32,8.021,34.991,10.543,10.788,3.656],[13.643,24.088,17.905,6.521,10.391,11.27,1.046,10.547,19.727,-1.211,11.475,24.353,27.372,15.39,1.647,6.064,8.049,17.606,8.654,0.767,2.485,7.814,-3.912,22.968,8.163,2.897,22.313,18.577,23.049,15.894,5.223,19.088,-3.678,21.969,14.55,-6.168,9.601,10.678,17.428,14.922,-0.407,21.7,15.908,6.442,12.834,1.425,21.147,14.153,13.501,18.528,12.924,2.716,14.856,14.291,34.7,6.68,10.167,1.973,18.195,5.258,6.12,19.529,5.195,10.068,23.133,-3.109,19.245,4.749,21.583,14.171,26.2,11.416,12.035,6.803,1.806,9.853,23.524,8.742,11.928,13.835,10.643,1.668,19.352,11.581,16.566,11.18,10.603,23.222,2.321,-0.67,28.889,24.839,16.009,3.24,9.141,24.379,7.111,9.379,-4.353,7.981,2.59,18.458,7.331,8.626,0.415,8.378,21.895,7.073,2.303,23.705,16.034,8.043,-0.209,17.043,19.233,6.503,-4.455,3.789,18.763,4.252,22.365,24.632,1.603,20.826,17.602,-7.406,-2.705,17.765,-2.094,14.963,4.975,21.0,18.74,22.371,12.503,17.638,10.157,-6.708,14.235,15.246,22.403,11.246,5.691,18.309,10.211,23.335,15.129,9.369,-0.357,0.641,15.869,13.94,12.524,14.559,13.008,14.218,7.592,19.79,1.443,14.647,-1.522,21.86,14.01,17.298,11.242,16.688,1.101,0.716,5.902,35.921,18.716,5.048,20.264,3.76,6.609,11.53,16.617,19.278,7.351,6.419,18.032,15.85,13.721,13.674,4.088,3.5,8.362,8.019,35.077,10.256,10.24,3.528],[13.428,24.146,18.014,6.513,10.568,11.316,1.4,10.593,19.921,-1.014,11.348,24.275,27.152,15.192,1.477,5.971,8.063,17.544,8.608,0.74,2.554,7.668,-3.804,22.973,7.97,2.79,22.387,18.949,23.021,15.831,4.913,19.177,-3.273,22.218,14.429,-6.039,9.451,10.828,17.334,14.837,-0.523,21.927,15.944,6.617,12.961,1.181,20.928,13.912,13.345,18.694,12.839,2.579,14.702,14.337,34.473,6.978,10.127,2.133,18.153,5.101,5.977,19.598,4.938,10.14,22.991,-2.859,19.795,4.899,21.529,13.659,26.271,11.388,12.49,7.647,1.995,9.693,23.014,8.743,11.405,14.291,10.609,1.318,19.463,12.184,16.774,10.58,10.798,23.384,2.645,-0.539,28.93,24.864,16.218,3.233,9.553,24.43,7.121,9.128,-4.472,7.589,2.571,18.181,7.296,8.992,0.213,8.745,21.599,6.759,2.319,23.555,16.52,8.44,-0.208,16.401,19.717,5.966,-4.472,3.66,19.505,4.219,22.23,24.566,1.569,21.312,17.205,-7.326,-3.219,17.836,-1.255,14.564,4.423,21.177,19.414,22.465,12.677,18.003,9.898,-6.723,15.38,15.598,22.725,11.371,5.755,18.237,10.027,23.364,15.097,8.993,-0.641,0.777,15.986,14.306,12.425,14.153,13.158,14.088,8.073,19.575,1.742,14.907,-1.384,22.056,13.957,17.384,11.42,16.435,1.501,0.943,5.236,35.223,18.971,4.256,20.806,3.428,6.113,11.594,16.49,19.062,7.251,6.379,19.104,15.633,13.664,13.885,4.116,3.831,8.446,7.777,35.196,9.817,10.437,3.808],[13.304,24.192,18.137,6.513,10.688,11.196,1.685,10.594,20.05,-0.812,11.221,24.076,26.989,14.898,1.472,5.796,8.145,17.419,8.617,0.668,2.602,7.608,-3.838,22.855,7.867,2.704,22.446,19.422,22.903,15.687,4.645,19.308,-2.889,22.464,14.303,-5.878,9.373,10.94,17.36,14.781,-0.583,22.255,15.888,6.806,12.999,1.007,20.782,13.732,13.182,18.932,12.81,2.606,14.682,14.388,34.345,7.198,10.062,2.363,18.039,4.93,5.688,19.728,4.624,10.025,23.188,-2.606,20.535,4.797,21.681,13.248,26.083,11.169,13.096,7.597,2.142,9.703,23.148,8.809,10.71,14.421,10.913,1.178,19.866,12.556,16.992,10.557,11.417,23.933,3.068,-0.564,28.669,24.969,16.271,3.295,9.463,24.209,6.857,9.317,-4.163,7.39,2.728,18.454,7.241,8.812,-0.009,8.187,21.805,6.833,2.001,23.734,16.364,7.793,0.148,16.331,19.851,5.82,-4.063,4.18,19.575,4.418,22.641,24.608,1.722,21.514,17.056,-7.147,-3.441,18.02,-0.917,14.519,3.403,21.224,20.068,22.974,12.846,17.301,9.645,-6.687,15.141,16.362,22.855,11.371,6.432,17.735,10.14,23.651,14.71,8.973,-0.914,0.783,16.127,14.358,12.428,14.16,12.672,14.578,8.253,19.722,1.697,14.789,-1.695,21.534,13.688,17.491,11.282,16.385,1.078,1.39,4.879,35.146,19.648,4.18,20.31,3.455,6.307,11.467,16.449,19.242,7.292,6.272,19.643,15.597,13.624,13.725,4.032,3.616,8.427,7.372,34.953,10.22,10.988,4.204],[13.505,24.283,18.103,6.442,10.815,11.116,1.971,10.455,20.146,-0.667,11.188,24.071,26.9,14.643,1.555,5.699,8.072,17.335,8.675,0.692,2.697,7.571,-3.888,22.879,7.718,2.665,22.559,19.713,22.927,15.632,4.451,19.562,-2.758,22.686,14.287,-5.763,9.322,10.991,17.348,14.845,-0.595,22.408,16.031,6.987,12.862,0.965,20.703,13.683,13.007,19.198,12.688,2.637,14.756,14.447,34.253,7.328,10.076,2.691,18.005,4.891,5.317,19.804,4.38,9.698,22.757,-2.589,20.337,4.629,21.813,12.965,25.953,11.261,12.762,7.103,2.269,9.644,23.565,8.549,10.889,14.258,10.962,1.302,19.9,12.428,17.423,10.92,11.96,23.637,3.11,-0.144,28.56,24.402,15.823,3.241,9.037,23.907,6.702,9.39,-4.656,7.868,2.879,17.954,7.312,8.681,-0.085,7.817,21.631,6.537,1.859,23.275,15.695,7.368,0.663,16.539,20.09,5.861,-4.163,3.851,19.906,4.353,22.301,24.671,1.715,21.435,17.244,-6.96,-2.35,18.057,-1.022,14.978,3.021,21.841,19.709,23.192,12.719,17.823,9.884,-6.423,13.666,16.407,22.871,11.616,7.055,18.391,10.16,24.039,14.293,8.843,-0.895,0.372,15.722,14.13,12.173,14.242,12.425,14.58,8.51,19.379,1.499,14.16,-1.824,20.691,13.848,17.49,11.07,16.497,0.893,1.435,4.795,35.581,19.466,4.558,20.764,3.183,6.474,10.993,16.452,19.265,8.049,5.911,19.647,15.862,13.597,13.457,3.702,3.269,8.285,7.085,34.726,11.088,10.554,4.164],[13.728,24.287,18.115,6.279,10.993,11.197,2.138,10.191,20.153,-0.61,11.178,24.138,26.87,14.382,1.516,5.767,7.898,17.181,8.723,0.904,2.813,7.463,-3.987,22.829,7.623,2.779,22.675,19.776,23.025,15.694,4.354,19.722,-2.586,22.914,14.318,-5.727,9.283,10.878,17.548,14.937,-0.745,22.465,16.158,7.188,12.631,0.918,20.538,13.613,12.844,19.451,12.402,2.533,14.776,14.676,34.199,7.594,10.1,2.967,17.98,4.994,5.023,19.812,4.167,9.588,22.855,-2.51,19.521,4.37,21.694,12.927,26.097,11.028,12.303,6.544,2.817,9.564,23.761,8.489,11.224,14.11,10.904,1.626,19.614,12.232,17.415,11.655,11.692,23.514,3.409,0.122,28.563,25.157,14.997,3.184,8.832,24.4,6.868,9.171,-4.658,7.55,2.821,18.051,7.53,8.513,0.338,7.45,21.826,5.628,2.179,23.314,16.094,7.718,0.454,16.061,20.262,5.957,-4.926,3.436,20.372,4.557,22.498,24.479,1.678,21.347,17.33,-6.932,-1.582,18.229,-1.259,14.721,3.161,21.411,19.514,23.193,12.553,17.69,10.046,-6.223,13.092,16.156,23.181,11.399,6.826,18.593,10.145,24.026,14.458,8.982,-0.745,0.786,15.083,14.165,12.028,14.323,12.567,14.256,8.511,19.139,1.452,13.556,-1.726,20.488,14.115,17.78,10.746,16.594,1.2,1.702,4.578,35.471,18.877,4.176,21.054,2.75,6.336,10.573,16.408,19.256,8.166,5.681,19.851,16.061,13.986,13.351,3.742,3.458,8.349,6.858,34.257,10.493,10.157,4.662],[13.762,24.33,18.137,5.963,11.215,11.39,2.273,9.897,20.089,-0.629,11.209,24.341,26.915,14.083,1.468,5.832,7.759,16.957,8.728,1.243,2.945,7.347,-4.133,22.865,7.66,3.057,22.755,19.71,23.191,15.815,4.321,19.68,-2.458,22.958,14.265,-5.816,9.285,10.664,17.622,14.956,-0.966,22.587,16.148,7.282,12.457,0.863,20.321,13.413,12.863,19.54,12.025,2.448,14.76,15.046,34.206,7.86,10.094,3.266,17.978,4.957,4.932,19.672,3.984,9.621,23.078,-2.364,19.105,4.114,21.532,12.668,25.849,10.549,12.635,6.671,3.141,9.741,23.8,8.325,11.101,14.206,10.801,1.297,19.732,12.432,16.913,12.229,10.606,23.659,3.474,-0.531,28.578,25.486,14.533,3.229,9.283,24.037,6.696,9.177,-4.557,7.549,2.965,18.158,7.595,8.396,0.272,7.052,22.092,5.379,2.238,23.67,16.663,7.746,0.324,15.948,20.121,5.578,-4.602,3.572,20.217,4.741,22.997,24.732,1.796,21.462,17.302,-6.651,-1.988,18.524,-0.649,14.217,3.471,21.79,19.65,23.487,12.487,17.88,9.781,-5.914,13.799,15.848,23.156,11.003,6.405,18.379,10.45,24.098,14.405,8.893,-1.023,0.803,14.708,14.411,12.144,14.532,12.628,14.091,8.606,19.114,1.329,13.625,-1.467,21.378,13.887,18.157,10.504,16.566,1.062,2.076,4.456,34.836,19.078,4.17,20.57,2.668,6.589,11.288,16.746,19.493,7.521,5.345,20.128,16.593,14.471,13.169,3.731,3.92,8.274,6.754,33.54,9.788,10.698,5.051],[13.782,24.444,18.145,5.724,11.507,11.296,2.337,9.429,20.036,-0.742,11.368,24.533,26.887,13.822,1.429,5.883,7.811,16.829,8.741,1.246,3.078,7.239,-4.131,22.956,7.839,3.177,22.877,19.693,23.436,15.791,4.454,19.652,-2.338,23.108,14.137,-5.818,9.291,10.523,17.518,14.953,-1.18,22.659,16.108,7.276,12.377,0.742,20.238,13.18,12.988,19.482,11.517,2.294,14.835,15.468,34.054,8.071,10.122,3.621,18.139,5.008,4.94,19.539,3.783,9.724,23.284,-2.504,19.159,4.003,21.704,12.116,26.028,10.721,12.804,6.912,3.128,9.898,23.341,7.871,10.725,14.225,11.208,0.855,19.64,12.735,16.962,12.259,10.545,24.135,3.7,-0.637,28.487,25.44,14.738,3.217,10.01,24.034,6.774,9.305,-5.006,7.889,3.529,17.248,7.426,8.225,0.726,7.038,22.087,5.178,2.257,23.916,16.425,7.368,0.79,15.999,19.738,5.475,-4.548,3.548,20.022,4.582,22.713,25.051,2.098,21.653,17.178,-7.018,-2.528,18.283,-0.655,14.679,3.393,21.694,20.193,23.761,12.304,18.328,9.594,-6.353,14.971,15.372,23.262,11.018,6.774,18.424,10.279,24.187,14.104,8.539,-1.215,0.364,14.625,14.521,12.238,14.807,12.449,13.995,9.062,18.803,1.328,14.027,-1.795,21.38,14.093,18.377,10.432,16.639,1.192,2.193,4.484,34.582,19.319,4.264,20.619,2.734,6.717,11.56,16.484,19.611,7.459,5.502,19.743,17.075,14.425,12.919,3.713,3.518,8.3,6.786,33.726,9.411,10.729,5.134],[13.832,24.423,18.179,5.753,11.755,11.216,2.434,9.087,20.033,-0.83,11.473,24.725,26.895,13.768,1.405,5.901,7.9,16.619,8.816,1.141,3.207,7.278,-4.257,22.979,7.934,3.082,22.958,19.828,23.672,15.576,4.652,19.688,-2.419,23.328,14.201,-5.958,9.268,10.48,17.451,14.917,-1.284,22.72,16.025,7.536,12.354,0.698,20.22,13.028,13.142,19.396,11.14,2.268,15.014,15.722,33.88,8.277,10.17,3.773,17.993,5.051,5.08,19.577,3.754,9.79,22.976,-2.788,19.062,3.972,21.878,12.197,26.115,10.067,12.148,6.838,3.04,10.285,23.54,7.279,10.521,14.144,10.982,0.657,19.501,13.046,17.089,12.342,10.822,24.168,3.715,-0.629,28.571,25.967,14.379,3.264,10.079,24.285,7.405,9.205,-4.669,8.208,3.432,16.929,7.603,8.508,0.465,6.722,22.061,5.055,2.103,23.732,15.973,7.342,0.46,15.318,20.125,5.693,-5.162,3.696,20.1,4.757,22.942,24.756,2.055,21.62,17.271,-6.805,-2.13,18.435,-0.694,15.212,3.496,21.849,20.793,23.835,11.829,17.953,9.771,-6.905,15.245,15.321,23.371,11.051,6.722,18.469,9.777,24.198,14.031,8.761,-1.137,0.559,14.888,14.276,11.682,14.578,12.198,13.847,8.929,18.878,1.21,14.112,-2.187,20.592,14.266,17.921,9.988,16.768,0.858,2.317,4.198,34.558,18.782,4.626,20.802,2.59,6.677,11.622,16.552,19.345,7.71,5.457,19.466,17.243,14.388,12.446,3.323,3.448,8.293,6.583,33.583,9.144,10.577,5.291],[13.752,24.256,18.124,5.918,11.858,11.207,2.536,8.855,19.997,-0.953,11.511,24.808,26.949,13.825,1.397,5.919,7.98,16.307,8.902,0.947,3.218,7.474,-4.49,22.91,7.942,2.918,22.945,20.107,23.714,15.465,4.858,19.823,-2.542,23.435,14.464,-6.099,9.068,10.322,17.302,14.728,-1.143,22.849,15.898,7.91,12.331,0.678,20.227,12.976,13.119,19.368,10.914,2.255,15.264,15.747,33.687,8.435,10.132,3.824,17.609,5.108,5.233,19.61,3.835,9.837,22.731,-2.735,19.513,4.152,21.771,12.769,25.932,9.667,11.845,6.533,3.465,10.326,23.973,7.253,10.503,14.405,10.739,0.937,19.673,13.178,17.229,12.486,11.073,23.973,3.792,-0.302,28.634,26.133,13.807,3.134,9.921,24.148,6.815,9.243,-5.344,8.374,3.257,17.489,7.655,8.934,0.308,6.891,22.187,5.27,2.092,23.364,15.414,7.586,0.053,15.219,20.487,5.82,-4.969,3.784,20.631,4.943,23.341,25.047,1.647,21.463,16.904,-6.954,-1.665,18.731,-1.157,14.657,3.524,22.291,20.735,23.848,11.535,17.989,9.738,-7.18,15.166,15.338,23.224,11.198,6.627,18.38,9.463,24.582,14.402,9.036,-1.128,0.624,15.315,14.641,11.344,14.321,12.747,14.014,9.19,18.885,1.219,13.733,-1.821,20.357,14.272,17.48,9.939,16.972,0.744,2.798,4.271,34.672,18.85,4.155,20.75,2.656,7.19,11.682,16.251,19.375,7.988,5.297,19.722,17.005,14.149,12.541,3.476,3.907,8.259,6.761,32.957,9.263,10.555,5.49],[13.691,24.146,18.035,5.962,11.982,11.243,2.67,8.756,19.99,-1.111,11.502,24.686,27.032,13.943,1.486,5.894,8.08,16.174,8.794,0.803,3.312,7.641,-4.669,22.745,8.011,2.874,22.864,20.407,23.674,15.24,4.833,20.023,-2.618,23.509,14.909,-6.342,8.631,9.984,17.266,14.61,-1.037,22.931,15.779,8.229,12.345,0.59,20.184,12.981,13.161,19.464,10.938,2.245,15.459,15.637,33.412,8.493,10.109,4.033,17.35,5.076,5.415,19.522,3.928,9.991,22.606,-2.959,19.759,4.079,21.858,12.506,25.959,9.823,11.947,6.565,3.514,10.22,24.243,7.39,10.77,14.458,10.361,1.087,19.513,13.046,17.703,12.78,11.319,24.015,3.909,-0.234,28.716,25.738,13.653,3.086,10.242,24.013,6.12,9.314,-5.803,8.166,3.053,17.41,7.587,8.768,0.083,7.804,22.513,5.78,2.101,23.308,15.669,7.813,0.199,15.344,20.497,5.865,-4.988,4.153,20.615,5.01,23.288,25.374,1.635,21.54,16.822,-7.124,-1.392,18.434,-1.679,14.675,3.384,21.778,20.282,23.421,11.627,17.604,9.071,-6.734,14.549,15.125,23.498,11.336,7.622,18.019,9.688,24.48,14.28,8.492,-1.335,0.883,15.171,14.88,11.364,14.236,12.822,14.125,9.806,18.411,0.886,13.9,-1.407,20.685,14.036,17.72,9.827,17.24,0.95,2.929,5.012,34.472,18.899,4.289,20.747,2.719,7.905,11.457,16.199,18.87,8.763,5.562,19.792,17.179,14.338,12.573,3.615,4.103,8.298,7.182,33.066,8.913,10.514,5.833],[13.726,24.24,17.928,5.919,12.224,11.312,2.782,8.87,20.159,-1.31,11.509,24.468,27.21,14.014,1.58,5.79,8.092,16.139,8.63,0.79,3.497,7.772,-4.774,22.566,8.09,2.91,22.904,20.493,23.612,15.062,4.68,20.034,-2.686,23.481,15.267,-6.562,8.155,9.756,17.233,14.668,-1.025,22.893,15.703,8.515,12.328,0.389,20.058,13.038,13.182,19.565,10.875,2.309,15.51,15.518,33.25,8.513,10.095,4.201,17.233,5.064,5.642,19.347,3.969,9.998,22.296,-2.922,19.606,4.142,21.203,12.252,26.226,9.84,12.058,7.063,3.504,10.184,24.191,7.404,10.92,14.817,10.02,1.351,19.491,13.56,17.889,13.094,11.374,24.252,4.141,-1.175,28.867,25.645,13.903,3.435,10.122,23.431,6.891,9.485,-5.175,7.985,3.522,16.648,7.441,8.815,0.235,8.321,22.575,6.498,1.767,23.793,15.779,8.267,0.471,15.361,20.564,5.811,-5.181,4.135,20.912,4.935,23.124,25.225,1.881,21.508,16.64,-7.115,-1.629,18.537,-1.501,15.426,3.188,21.783,20.165,23.407,11.578,17.559,8.696,-6.822,14.531,15.026,23.606,11.384,7.818,18.209,9.278,24.21,14.09,7.748,-1.43,0.693,15.144,14.705,11.301,14.135,12.631,14.103,9.933,18.595,0.946,13.869,-1.103,20.862,14.378,17.97,10.29,17.362,0.952,2.878,5.19,34.075,18.92,4.674,20.373,2.829,8.592,11.566,15.779,18.826,9.402,5.636,19.446,17.042,15.296,12.79,3.547,3.752,8.177,7.289,32.84,8.315,10.576,5.798],[13.875,24.318,17.952,5.992,12.472,11.284,2.876,9.055,20.336,-1.644,11.535,24.356,27.4,14.042,1.709,5.852,8.19,15.967,8.566,0.869,3.616,7.805,-4.849,22.359,8.238,2.917,23.017,20.434,23.547,15.1,4.625,19.944,-2.698,23.535,15.686,-6.761,7.871,9.539,17.302,14.839,-1.071,22.704,15.731,8.744,12.313,0.21,19.97,13.025,13.09,19.482,10.783,2.414,15.63,15.487,33.29,8.632,9.985,4.084,17.335,5.027,5.776,19.122,3.891,9.805,22.841,-3.167,19.371,4.198,20.608,12.568,26.35,10.237,12.59,6.63,3.433,10.622,24.07,7.59,10.681,15.07,10.109,1.681,19.526,13.811,17.616,13.43,11.446,24.167,4.322,-1.634,29.077,25.68,14.221,3.444,9.823,23.304,7.243,9.503,-5.359,8.6,4.156,16.619,7.468,9.165,0.602,8.488,22.283,6.629,1.813,23.858,15.279,8.628,-0.006,15.1,20.526,6.266,-5.227,3.617,20.782,5.072,23.123,25.068,1.778,21.514,16.261,-7.086,-1.936,18.399,-1.454,15.376,3.372,22.415,20.238,23.808,11.392,17.599,8.672,-7.435,15.119,14.964,23.237,10.966,7.678,18.261,8.869,24.373,14.242,7.84,-1.632,0.453,15.605,14.264,11.277,14.241,12.72,14.032,10.14,18.688,1.071,13.762,-1.682,20.905,14.521,17.834,10.416,17.393,1.014,3.341,4.672,33.669,18.763,4.615,20.373,2.487,8.452,11.306,15.559,18.641,9.175,5.27,19.334,17.173,16.107,12.486,3.412,3.492,8.093,7.244,32.484,8.368,10.644,5.864],[14.12,24.465,18.023,6.097,12.628,11.181,2.968,9.277,20.362,-2.001,11.672,24.504,27.564,14.04,1.868,5.909,8.391,15.747,8.674,0.878,3.646,7.82,-4.975,22.289,8.511,2.893,23.072,20.231,23.516,14.967,4.735,19.743,-2.74,23.74,16.1,-6.876,7.863,9.411,17.416,14.978,-1.235,22.558,15.759,8.899,12.221,0.142,20.024,12.947,12.971,19.343,10.625,2.364,15.916,15.572,33.382,8.742,9.915,3.922,17.493,4.98,5.746,18.939,3.515,9.549,22.803,-3.878,19.263,4.213,20.816,12.902,26.276,10.306,12.801,6.065,3.287,10.966,24.352,7.572,10.435,14.789,10.661,1.984,19.715,13.793,17.687,13.288,11.558,23.827,4.3,-1.477,29.051,25.312,14.326,3.376,9.755,23.393,7.026,9.572,-5.554,9.169,3.857,17.007,7.464,8.748,0.166,8.882,22.011,6.807,2.011,23.013,15.463,8.629,0.65,14.844,20.158,6.134,-5.47,3.569,20.296,5.398,23.387,25.031,1.651,21.576,16.495,-7.715,-1.787,18.246,-1.455,15.58,3.652,22.263,20.209,23.335,11.109,17.522,8.546,-7.541,15.887,15.292,23.186,11.222,7.78,18.112,8.671,24.06,13.97,8.096,-1.592,0.58,15.799,14.286,11.117,14.245,12.648,14.059,10.049,18.25,0.726,13.694,-1.6,20.626,14.347,17.684,9.878,17.575,1.709,3.263,4.83,33.855,18.666,4.388,20.345,1.897,8.316,11.248,15.922,18.516,8.748,4.756,19.429,17.302,16.02,12.381,3.472,3.524,8.063,7.122,33.262,8.661,10.214,5.753],[14.357,24.633,18.12,6.094,12.672,11.261,2.977,9.434,20.338,-2.28,11.904,24.631,27.605,13.966,1.944,5.882,8.372,15.599,8.861,0.807,3.588,7.877,-5.095,22.218,8.774,2.834,23.116,19.935,23.476,14.848,4.897,19.463,-2.728,23.75,16.455,-7.002,7.967,9.418,17.364,15.01,-1.276,22.621,15.777,8.946,12.161,0.118,20.048,12.864,12.868,19.255,10.431,2.279,16.137,15.536,33.551,8.822,9.891,3.714,17.597,4.943,5.783,18.87,2.953,9.387,22.711,-3.908,19.139,4.36,21.627,12.902,26.52,10.269,12.697,6.336,3.479,10.958,24.802,7.665,10.553,14.569,11.053,2.087,19.717,14.185,17.855,12.604,11.451,23.851,4.364,-1.529,29.077,25.268,14.686,3.6,10.147,23.659,6.755,9.63,-5.453,9.088,3.212,16.666,7.738,9.132,0.321,8.751,22.145,7.279,1.823,22.672,15.362,8.452,1.154,14.641,20.281,5.991,-5.315,4.188,20.534,5.144,23.544,25.158,1.721,21.518,16.541,-7.871,-1.729,18.041,-1.686,15.643,3.609,22.167,20.126,22.979,11.318,18.267,8.437,-7.495,16.801,15.624,23.355,11.148,7.614,18.342,8.421,23.959,13.949,8.133,-1.648,0.489,15.621,14.778,11.396,14.117,12.169,13.943,10.294,18.266,0.912,13.217,-1.612,20.212,14.376,17.584,9.587,18.024,2.171,2.887,4.584,34.08,18.091,4.405,20.068,1.791,8.354,11.248,15.969,19.19,8.676,4.442,19.343,17.263,15.449,12.007,3.793,3.805,8.085,7.134,33.551,8.704,9.897,5.528],[14.504,24.738,18.311,6.154,12.615,11.492,2.944,9.52,20.452,-2.426,12.108,24.643,27.498,13.833,1.904,5.99,8.312,15.413,9.13,0.847,3.363,7.888,-5.023,22.123,8.825,2.692,23.117,19.953,23.585,14.789,5.045,19.421,-2.579,23.539,16.77,-7.195,8.081,9.532,17.325,14.988,-1.304,22.81,15.767,8.874,12.121,0.162,20.032,12.93,12.82,19.201,10.141,2.315,16.098,15.262,33.706,8.848,9.91,3.534,17.723,4.94,5.906,18.696,2.514,9.42,23.075,-3.864,19.211,4.266,21.947,12.463,26.64,10.833,12.649,6.544,3.517,10.774,25.219,7.849,11.197,15.339,10.636,1.973,19.384,14.355,18.158,12.551,11.704,23.946,4.355,-2.008,29.271,25.756,14.914,3.39,10.323,23.42,6.354,9.649,-5.9,8.633,3.626,16.329,8.142,8.954,0.433,8.826,22.199,7.03,1.532,23.143,15.209,9.404,0.149,14.638,20.176,6.16,-5.505,4.287,20.659,4.921,23.546,24.999,1.593,21.649,16.1,-7.651,-1.625,17.874,-1.362,15.768,3.618,22.154,19.367,23.16,11.299,17.792,8.881,-8.012,16.824,15.346,23.42,10.743,7.662,18.341,8.77,24.372,13.749,7.842,-1.624,0.58,15.259,14.737,11.222,14.133,12.049,13.868,10.542,18.767,1.011,12.63,-1.844,20.023,14.11,17.955,9.702,17.983,2.062,2.493,4.334,34.092,17.903,4.744,20.204,1.821,8.649,11.202,16.461,19.348,9.193,4.153,19.127,16.968,15.081,12.123,3.949,4.002,8.009,7.225,33.076,8.885,10.128,5.202],[14.587,24.969,18.426,6.106,12.601,11.547,2.901,9.723,20.621,-2.609,12.129,24.714,27.365,13.639,1.798,5.968,8.223,15.316,9.485,0.863,3.358,7.814,-4.996,22.138,8.794,2.501,23.031,20.129,23.76,14.669,5.069,19.504,-2.309,23.278,16.987,-7.386,8.189,9.788,17.238,14.908,-1.396,22.938,15.693,8.849,12.07,0.266,19.983,13.013,12.712,19.167,9.959,2.404,15.934,14.999,33.659,8.967,9.972,3.426,17.897,5.057,6.053,18.483,2.277,9.653,23.303,-4.279,19.321,4.215,22.056,12.081,26.429,10.476,13.007,6.396,3.144,11.045,25.373,8.109,11.299,15.773,10.363,1.615,19.223,14.251,18.584,12.57,11.67,23.758,4.537,-2.031,29.071,25.529,14.734,3.08,9.962,22.919,7.064,9.856,-5.373,8.895,3.655,16.561,8.512,8.586,0.589,9.138,22.16,6.936,1.496,23.242,15.437,9.572,-0.242,14.932,19.704,6.191,-5.496,3.986,20.471,4.963,23.541,25.114,1.396,21.737,15.999,-7.692,-1.568,18.046,-0.932,16.347,4.056,21.787,19.393,23.076,11.676,17.201,8.659,-8.769,16.422,15.171,23.399,11.147,7.49,17.826,8.954,24.332,13.9,8.204,-1.563,0.237,14.998,14.202,11.302,14.11,12.163,13.874,10.369,18.529,0.821,12.727,-2.004,20.665,13.846,18.352,9.906,17.788,1.972,2.089,4.584,34.121,18.265,4.42,20.075,1.435,8.823,11.617,16.652,19.161,9.021,3.988,19.649,16.806,15.264,11.634,3.799,3.879,8.171,6.781,33.246,9.264,10.314,5.118],[14.686,25.237,18.35,5.803,12.535,11.418,2.889,9.873,20.768,-2.883,11.967,24.622,27.314,13.512,1.643,5.947,8.212,15.544,9.727,0.902,3.583,7.719,-4.886,22.171,8.825,2.374,22.862,20.111,23.924,14.698,5.069,19.592,-2.114,23.089,17.127,-7.536,8.236,9.983,16.978,14.736,-1.701,22.819,15.656,8.924,12.049,0.334,19.94,13.191,12.555,19.143,9.838,2.444,15.904,14.916,33.478,9.151,9.977,3.297,18.113,5.145,6.077,18.435,2.176,9.992,23.658,-4.648,19.533,4.027,22.037,12.022,26.029,10.39,12.961,6.208,3.214,10.945,25.437,8.091,10.841,15.613,10.785,1.495,19.811,14.276,18.332,12.752,11.578,23.541,4.354,-2.114,28.786,25.552,14.62,3.346,9.475,23.471,7.107,9.449,-4.834,9.166,3.572,16.358,8.905,8.818,0.661,9.005,22.367,6.541,1.368,23.001,15.332,9.066,0.152,14.506,20.544,6.399,-5.579,3.814,20.466,5.15,23.559,25.441,1.349,21.482,15.979,-7.79,-1.482,17.922,-0.418,17.068,4.142,21.448,20.059,22.613,11.979,17.826,8.586,-8.711,16.269,15.244,23.59,11.653,7.422,17.843,9.478,24.339,13.523,8.161,-1.481,0.146,15.098,14.184,11.566,14.066,12.089,13.893,10.142,18.062,1.07,12.823,-1.768,20.834,14.159,18.374,9.517,17.772,2.246,2.174,4.861,33.876,17.869,4.675,19.7,1.219,8.701,11.696,16.534,19.514,8.735,3.678,20.236,16.727,15.64,11.768,3.475,3.702,8.21,7.052,33.776,9.709,10.421,5.0],[14.685,25.449,18.419,5.513,12.486,11.199,2.825,9.887,20.872,-3.151,11.73,24.305,27.365,13.499,1.552,5.75,8.123,15.59,9.832,0.929,3.814,7.689,-4.637,22.316,8.789,2.331,22.661,20.003,24.061,14.924,5.111,19.747,-1.974,22.974,17.219,-7.603,8.183,10.102,16.854,14.745,-1.912,22.76,15.692,8.954,12.119,0.307,19.965,13.457,12.419,19.126,9.859,2.383,16.133,14.993,33.23,9.331,9.731,3.241,18.344,5.217,6.131,18.337,2.162,10.203,23.539,-4.933,20.092,3.742,21.866,12.021,26.014,10.733,12.896,5.991,3.48,10.783,25.635,7.966,10.766,15.446,10.771,1.411,19.625,13.89,17.708,13.152,11.417,23.691,4.402,-2.173,28.713,25.505,14.883,3.333,9.394,23.48,7.128,9.238,-5.213,9.125,3.611,16.801,8.898,9.182,0.369,8.607,22.597,6.641,1.448,23.384,15.212,8.988,0.416,14.68,20.684,6.177,-5.424,3.985,20.777,5.207,23.388,25.528,0.969,21.079,16.136,-7.922,-1.777,18.218,-0.256,17.337,3.994,21.432,19.91,22.526,11.999,17.017,8.796,-8.378,16.58,15.585,23.365,11.115,7.696,17.972,10.078,24.309,13.591,7.898,-1.46,-0.244,15.085,14.357,11.912,13.818,11.523,13.984,10.302,18.3,1.371,12.949,-2.122,20.293,14.171,18.211,9.225,18.046,2.765,2.105,4.807,34.182,18.088,5.038,20.093,1.308,8.183,11.917,16.561,19.525,8.977,3.558,19.891,16.836,15.609,11.552,3.843,3.703,8.131,7.34,33.473,10.119,10.767,4.914],[14.669,25.483,18.613,5.501,12.494,10.955,2.848,9.825,20.978,-3.3,11.598,24.016,27.402,13.594,1.519,5.558,8.077,15.627,9.858,0.723,3.908,7.551,-4.422,22.491,8.637,2.282,22.423,19.859,24.149,15.127,5.257,19.806,-1.865,22.794,17.232,-7.712,8.123,10.179,16.756,14.994,-2.106,22.803,15.744,8.981,12.068,0.352,20.098,13.717,12.313,19.112,9.866,2.426,16.555,15.183,33.075,9.443,9.553,3.394,18.366,5.303,6.038,18.484,2.233,10.387,23.871,-4.822,20.679,3.737,21.939,12.077,26.313,10.745,12.818,5.764,3.419,10.345,25.39,8.3,11.014,15.28,10.056,1.378,18.721,13.83,17.548,13.036,11.351,23.598,4.2,-2.262,29.085,24.7,14.605,3.146,9.877,23.301,6.723,9.404,-4.637,8.722,3.893,16.964,8.917,8.512,0.584,8.698,22.614,6.302,1.441,23.355,15.61,9.498,-0.064,14.979,19.776,5.915,-5.165,4.283,20.68,5.419,23.18,25.496,0.925,20.607,16.438,-7.91,-1.917,18.499,-0.197,16.973,3.983,21.406,20.054,22.769,12.031,17.209,8.173,-8.631,16.889,15.622,23.245,10.926,7.507,17.892,10.079,24.214,13.655,8.043,-1.486,-0.159,15.087,14.123,12.15,14.148,11.508,13.843,10.438,18.695,0.903,13.044,-2.432,19.802,13.899,18.012,9.278,18.232,2.782,1.886,4.865,34.614,18.327,4.558,20.126,1.477,7.901,12.234,16.906,19.534,9.495,3.696,19.068,16.923,15.373,11.801,3.973,3.841,7.881,7.521,32.843,9.979,10.016,4.514],[14.667,25.447,18.717,5.637,12.599,10.819,2.863,9.89,21.086,-3.277,11.472,23.793,27.405,13.679,1.567,5.349,7.874,15.809,9.927,0.422,3.89,7.431,-4.27,22.476,8.502,2.249,22.216,19.732,24.205,15.374,5.342,19.813,-1.887,22.665,17.071,-8.061,7.993,10.211,16.809,15.243,-2.085,22.85,15.879,8.957,11.862,0.496,20.193,13.866,12.316,19.007,9.887,2.516,16.891,15.19,33.171,9.467,9.42,3.525,18.233,5.222,5.631,18.674,2.381,10.589,23.671,-4.757,21.183,3.776,22.16,12.173,26.331,10.566,12.937,5.74,3.672,10.31,25.177,8.211,10.562,15.497,10.181,1.602,19.191,14.313,18.475,12.146,11.291,23.17,4.166,-2.657,29.15,24.381,14.201,3.17,10.601,23.639,6.539,9.381,-4.766,8.418,3.851,16.421,8.98,8.614,0.549,8.514,22.457,6.222,1.362,23.288,16.015,9.658,-0.31,15.014,19.998,5.646,-5.118,4.613,20.536,5.586,22.91,25.307,1.139,20.742,16.356,-7.898,-1.138,18.412,-0.239,16.307,4.136,21.109,20.493,22.315,12.001,17.527,8.281,-8.209,17.348,15.589,23.495,10.981,7.369,17.466,9.688,24.24,13.17,7.823,-1.502,-0.344,15.341,14.261,12.509,14.224,12.18,13.681,10.298,18.772,0.886,13.097,-2.655,20.171,14.291,17.985,9.564,18.66,2.887,1.831,4.52,35.031,18.085,4.329,20.184,1.543,7.944,12.033,16.708,19.73,9.434,4.038,18.57,17.022,15.989,11.673,3.462,3.947,7.775,7.256,32.707,9.865,9.841,4.415],[14.761,25.321,18.943,5.745,12.624,10.902,2.893,9.943,21.17,-3.182,11.264,23.623,27.383,13.642,1.707,5.2,7.688,15.865,10.132,0.313,3.777,7.25,-4.278,22.345,8.468,2.3,22.164,19.816,24.178,15.508,5.332,19.738,-1.721,22.474,16.866,-8.346,7.773,10.206,16.852,15.377,-2.021,22.991,16.0,8.834,11.732,0.614,20.286,14.047,12.397,18.9,9.907,2.654,17.191,15.049,33.377,9.385,9.324,3.478,17.97,5.1,5.147,18.678,2.545,10.742,23.61,-4.705,21.664,3.9,22.15,11.939,25.826,10.188,12.955,5.95,3.734,10.676,25.596,8.392,10.124,15.984,10.56,2.117,19.233,14.314,18.724,12.103,10.919,22.924,4.22,-2.795,28.557,24.53,14.393,3.169,11.058,23.6,6.582,8.566,-4.822,8.793,3.853,16.931,9.377,8.661,0.392,8.335,22.442,5.852,1.434,23.312,15.955,9.086,-0.919,15.496,20.414,5.606,-4.976,4.412,20.793,5.412,22.733,25.533,0.922,20.97,16.876,-8.427,-0.964,18.526,-0.673,16.143,4.398,21.175,20.656,21.729,12.188,17.419,8.718,-8.492,16.853,15.989,23.093,10.775,7.445,17.691,9.642,24.698,13.489,7.857,-1.283,-0.074,15.542,14.973,12.599,14.247,11.897,13.53,10.281,18.656,1.578,13.118,-2.641,20.821,14.218,17.832,9.94,19.084,2.456,2.165,4.074,35.16,18.357,4.525,20.084,1.899,8.107,12.362,16.496,19.114,8.913,4.304,18.32,16.73,16.553,11.523,3.613,3.802,7.971,6.543,33.263,9.942,10.009,4.83],[14.94,25.285,19.119,5.822,12.539,10.945,2.962,9.949,21.177,-3.215,11.008,23.562,27.171,13.665,1.916,5.132,7.58,16.037,10.462,0.279,3.643,7.098,-4.253,22.219,8.462,2.3,22.256,20.01,24.228,15.597,5.281,19.65,-1.498,22.151,16.683,-8.518,7.71,10.371,16.875,15.595,-1.966,23.198,16.062,8.693,11.602,0.78,20.406,14.089,12.478,18.783,10.023,2.674,17.391,14.93,33.482,9.306,9.29,3.365,17.769,5.072,4.74,18.728,2.748,10.917,23.674,-4.389,22.0,4.203,21.958,12.002,25.517,10.677,13.347,5.472,3.279,10.436,25.922,8.255,9.717,15.902,10.419,1.937,19.257,14.221,18.073,12.303,11.342,22.8,4.346,-2.485,28.398,24.669,14.503,3.197,10.766,23.348,6.481,8.736,-4.303,8.467,3.479,17.287,9.27,8.651,0.306,8.221,22.732,5.878,1.503,23.201,15.884,8.829,-0.751,15.124,19.931,5.461,-5.377,4.139,20.828,5.213,22.813,25.508,0.973,20.71,16.903,-8.952,-1.223,18.277,-0.04,16.066,4.453,21.49,20.192,22.022,12.273,17.432,8.322,-8.878,16.605,16.075,23.602,11.059,7.491,18.098,9.777,24.699,13.736,7.534,-1.048,-0.273,15.55,14.633,12.622,14.5,11.761,13.469,10.301,18.718,1.479,13.333,-2.072,21.049,13.637,17.651,9.919,19.29,2.748,2.037,3.657,35.273,18.001,4.795,20.117,1.985,8.101,12.562,16.152,18.829,8.782,4.336,17.974,16.533,16.491,11.317,4.185,3.624,7.722,6.179,33.558,10.324,9.778,4.836],[15.051,25.407,19.093,5.745,12.379,11.016,2.996,9.921,21.086,-3.231,10.649,23.556,27.072,13.757,2.074,5.179,7.701,16.169,10.787,0.331,3.538,6.945,-4.177,22.137,8.372,2.287,22.382,20.077,24.318,15.621,5.257,19.653,-1.237,22.052,16.422,-8.604,7.707,10.504,16.899,15.728,-1.888,23.353,16.012,8.617,11.656,0.933,20.464,13.826,12.568,18.64,10.021,2.635,17.502,14.878,33.447,9.327,9.157,3.121,17.769,5.104,4.448,18.768,2.784,11.12,23.619,-4.441,22.061,4.302,21.621,12.165,25.657,11.131,13.766,5.167,3.185,9.877,25.716,8.287,9.21,16.238,10.293,1.281,19.812,13.817,18.283,12.797,11.233,22.919,4.458,-2.798,28.592,24.39,14.785,3.365,10.646,23.103,6.187,8.957,-5.328,8.429,3.236,17.312,9.226,8.881,0.207,8.197,22.644,6.004,1.526,23.265,16.164,9.161,-0.163,15.167,20.336,5.403,-4.73,4.149,20.89,5.274,22.92,25.51,1.087,20.921,16.573,-8.991,-1.017,18.662,0.413,16.258,4.187,21.041,18.967,21.723,12.218,17.319,8.007,-8.359,17.254,15.847,24.142,11.192,7.304,17.882,10.48,24.772,13.914,7.675,-0.929,-0.058,15.546,14.249,12.262,14.247,11.812,13.57,9.94,18.985,1.327,13.374,-1.87,20.496,13.566,17.4,10.023,19.158,3.383,1.575,3.761,34.995,17.973,4.742,20.375,2.088,7.813,12.626,16.243,19.094,8.828,4.598,17.742,16.387,16.266,11.598,3.582,3.606,7.541,6.061,33.237,10.625,9.583,4.463],[15.14,25.582,19.063,5.534,12.124,11.069,3.107,9.831,20.881,-3.312,10.225,23.58,27.131,13.919,1.981,5.179,8.04,16.278,11.041,0.551,3.608,6.89,-4.158,22.12,8.312,2.274,22.473,20.114,24.296,15.674,5.255,19.671,-0.995,21.972,16.272,-8.665,7.668,10.589,16.799,15.652,-1.758,23.421,15.808,8.535,11.903,0.921,20.521,13.526,12.663,18.449,10.101,2.439,17.562,14.778,33.324,9.275,9.051,2.829,17.807,5.15,4.383,18.865,2.751,11.395,23.955,-4.643,21.895,4.175,21.421,12.149,26.048,10.783,13.687,4.948,3.278,9.564,25.397,8.088,8.894,16.567,10.252,1.964,19.544,13.609,18.537,12.762,11.192,22.924,4.569,-2.647,28.651,24.23,14.696,3.359,10.764,23.099,6.367,8.967,-4.968,8.56,3.454,17.389,9.639,9.159,0.487,7.919,22.626,6.405,1.552,23.171,16.034,9.016,-0.334,15.74,20.726,5.442,-4.662,4.546,20.973,5.232,23.225,25.624,0.824,21.208,16.579,-8.391,-0.585,18.37,0.082,16.661,3.998,20.44,19.356,21.559,12.408,17.587,8.768,-8.01,17.36,15.964,23.539,11.02,7.106,17.701,11.097,24.991,14.138,7.884,-0.965,0.072,15.752,14.869,12.175,14.002,12.123,13.713,9.976,18.947,1.633,12.815,-2.233,20.035,13.624,17.377,9.626,19.258,3.5,1.086,3.488,34.556,18.552,4.43,20.238,2.017,7.755,12.673,16.278,19.329,9.033,4.533,17.451,16.493,16.629,11.575,3.397,3.887,7.846,6.245,32.865,10.836,9.219,3.659],[15.194,25.771,19.13,5.342,11.903,10.99,3.298,9.549,20.611,-3.468,9.895,23.595,27.238,14.019,1.874,5.35,8.208,16.494,11.057,0.765,3.827,6.944,-4.104,22.14,8.327,2.223,22.527,20.171,24.288,15.764,5.315,19.54,-0.948,21.541,16.411,-8.511,7.756,10.752,16.736,15.57,-1.645,23.216,15.674,8.461,12.067,0.759,20.515,13.494,12.857,18.278,10.308,2.264,17.748,14.713,33.078,9.184,8.998,2.607,17.985,5.28,4.445,19.099,2.659,11.831,24.024,-4.803,21.442,3.707,21.722,12.435,25.905,10.208,13.457,5.015,3.265,9.53,25.718,8.275,8.355,16.338,10.501,2.07,18.905,13.656,18.304,11.833,11.381,22.957,4.556,-2.237,28.733,24.954,14.153,3.269,11.245,23.403,6.593,9.243,-4.426,8.157,3.599,17.333,9.59,9.348,0.874,8.049,22.775,6.293,1.533,22.939,15.85,8.845,-0.539,15.716,20.19,5.355,-5.443,4.785,21.244,5.503,23.616,25.332,0.845,20.998,16.771,-8.549,-0.078,18.122,0.297,15.909,4.157,20.638,20.472,21.339,12.371,17.409,8.579,-9.139,16.79,16.079,23.572,11.269,7.034,17.872,11.171,24.631,13.621,7.249,-1.011,0.169,15.477,15.169,12.109,13.962,12.767,13.927,9.918,19.04,1.557,12.561,-1.915,20.244,13.463,17.241,9.243,19.581,2.475,0.858,3.391,34.649,18.472,4.361,20.355,1.815,7.974,13.164,16.229,19.103,9.269,4.232,16.862,16.453,16.653,11.493,3.774,4.198,7.922,6.154,32.671,11.042,9.436,3.54],[15.135,25.88,19.057,5.258,11.753,10.909,3.484,9.148,20.376,-3.734,9.647,23.779,27.263,13.955,1.861,5.621,8.199,16.622,11.032,0.87,3.974,7.06,-4.233,22.207,8.225,2.252,22.523,20.106,24.321,15.755,5.445,19.442,-0.842,21.125,16.452,-8.339,7.716,10.857,16.878,15.532,-1.528,22.958,15.691,8.328,12.105,0.58,20.506,13.502,13.011,18.019,10.527,2.096,17.888,14.623,32.859,9.171,9.094,2.527,18.113,5.408,4.522,19.347,2.437,12.255,24.082,-5.139,20.889,3.436,21.796,12.245,25.732,10.571,13.464,5.097,3.373,9.434,26.306,8.154,7.948,16.218,10.635,1.6,19.061,13.565,18.329,11.726,11.081,22.93,4.794,-2.638,28.7,24.883,14.167,3.395,11.272,23.46,6.758,9.284,-4.629,8.289,3.469,17.738,9.21,9.665,1.092,8.007,22.483,6.595,1.382,23.085,16.049,9.185,-0.804,16.185,20.107,5.351,-4.91,4.51,21.3,5.619,23.536,25.217,1.006,21.143,17.227,-8.722,-0.46,18.331,0.621,15.788,4.234,20.442,20.262,20.201,12.41,17.649,8.196,-9.396,17.008,15.897,23.664,11.578,6.963,17.839,11.507,24.502,14.28,7.579,-1.214,0.173,15.184,14.74,12.437,13.954,12.265,13.988,9.817,19.226,1.43,12.973,-1.743,20.734,13.4,17.702,10.051,19.688,1.772,0.783,3.872,34.6,18.475,5.018,20.662,1.92,8.669,13.758,16.537,19.373,8.667,3.86,16.844,16.299,16.978,11.26,3.749,4.114,7.915,6.155,32.781,11.004,9.438,3.478],[15.027,25.975,18.963,5.3,11.739,10.861,3.59,8.91,20.126,-4.133,9.432,23.905,27.238,13.774,1.893,5.9,8.302,16.933,11.06,0.78,3.918,7.23,-4.345,22.301,8.29,2.349,22.502,19.949,24.253,15.844,5.431,19.409,-0.608,20.925,16.409,-8.29,7.585,10.939,17.192,15.464,-1.718,22.9,15.754,8.082,12.01,0.489,20.578,13.705,13.11,17.778,10.733,1.948,18.001,14.523,32.713,9.227,9.286,2.394,18.195,5.487,4.7,19.573,2.383,12.376,24.217,-5.739,20.798,3.564,21.578,12.226,25.88,10.547,13.338,5.275,3.456,9.11,26.023,7.561,8.01,16.441,10.294,1.649,19.497,13.301,18.047,12.378,11.317,23.119,5.307,-3.072,28.728,24.459,14.447,3.481,10.876,23.194,6.606,8.918,-5.046,8.137,3.346,17.59,9.684,9.864,1.142,8.136,22.648,7.248,1.271,23.451,16.148,8.878,-0.678,15.89,20.487,5.486,-5.087,4.354,20.745,5.479,23.253,25.621,1.215,21.538,16.843,-8.328,-1.049,18.513,0.883,16.571,4.654,19.538,19.373,20.248,12.793,17.645,8.576,-8.509,17.484,15.788,23.366,11.439,6.81,17.949,11.094,24.412,14.527,7.88,-1.36,0.06,15.763,14.463,12.575,14.117,12.297,13.996,9.734,19.169,1.032,12.492,-2.013,21.001,13.477,17.45,10.046,19.604,1.69,0.616,3.998,33.903,18.891,5.6,20.744,1.701,8.993,13.816,16.756,19.843,8.53,3.743,16.903,16.335,17.291,11.44,3.257,3.953,8.021,6.243,32.964,11.292,9.234,3.548],[14.927,26.006,18.978,5.389,11.843,10.847,3.675,8.91,19.906,-4.508,9.275,23.725,27.348,13.71,1.976,5.957,8.535,17.161,11.08,0.611,3.749,7.478,-4.499,22.355,8.272,2.502,22.574,19.754,24.289,16.033,5.349,19.363,-0.548,20.716,16.413,-8.246,7.706,10.923,17.36,15.501,-2.03,22.92,15.775,7.824,12.025,0.339,20.693,13.912,13.192,17.591,10.93,1.888,18.077,14.504,32.583,9.336,9.45,2.219,18.353,5.588,4.786,19.743,2.393,12.238,24.284,-5.886,20.847,3.805,21.13,12.058,25.988,10.118,13.448,5.26,3.569,8.944,26.036,7.641,8.052,16.284,10.528,1.757,18.957,13.272,17.675,12.532,11.331,23.205,5.259,-3.671,28.787,24.617,14.578,3.686,10.768,23.15,6.589,9.214,-5.278,8.094,3.382,17.888,9.578,9.799,0.569,8.417,22.97,7.421,1.462,23.528,16.244,9.299,-0.545,15.742,20.049,5.853,-4.977,4.273,21.027,5.368,22.827,25.681,1.352,21.314,16.835,-8.117,-0.325,18.34,1.36,16.698,4.292,19.713,19.401,20.755,12.727,18.008,8.47,-8.586,17.496,15.73,23.344,11.185,6.655,18.338,10.806,24.398,14.195,7.261,-1.579,-0.166,15.81,14.752,12.654,14.106,12.731,13.926,9.343,19.314,1.085,13.211,-2.275,20.92,13.567,16.691,9.783,19.613,2.099,0.357,4.62,33.479,19.478,5.594,20.815,1.421,8.507,13.415,16.541,19.589,9.52,3.405,16.208,16.235,17.648,11.625,2.925,3.989,7.94,6.423,32.882,11.292,9.208,3.144],[14.836,25.87,19.104,5.33,11.945,10.879,3.82,8.982,19.737,-4.832,9.148,23.533,27.534,13.853,2.139,5.873,8.747,17.218,11.13,0.397,3.586,7.676,-4.608,22.261,8.135,2.64,22.634,19.69,24.332,16.206,5.299,19.398,-0.571,20.528,16.365,-8.277,7.874,10.935,17.466,15.676,-2.224,23.065,15.72,7.75,12.201,0.189,20.822,14.061,13.221,17.376,11.062,1.905,18.133,14.477,32.657,9.513,9.432,2.026,18.392,5.626,4.646,19.86,2.296,11.94,24.328,-5.996,20.798,3.78,20.846,12.202,26.139,10.173,13.198,4.911,3.45,9.485,26.469,7.489,7.709,15.71,10.67,2.026,18.52,13.55,17.82,12.453,10.996,22.709,5.651,-3.707,29.053,24.394,14.218,3.706,10.908,23.201,6.725,10.009,-4.576,8.114,3.344,17.783,9.384,9.917,0.228,8.927,22.93,7.008,1.524,23.519,16.508,9.423,-0.692,16.578,19.935,6.322,-5.452,4.085,20.95,5.013,22.876,25.627,1.669,21.196,17.538,-8.092,0.145,18.043,0.806,16.372,4.184,19.933,19.681,20.064,12.791,18.102,8.338,-8.929,17.39,16.113,23.267,11.661,6.513,18.127,10.949,24.667,14.484,7.377,-1.761,-0.445,15.004,14.844,12.736,13.953,13.0,13.973,9.269,19.875,0.973,13.543,-2.518,20.385,13.553,16.713,9.867,20.01,2.685,0.286,4.982,33.638,19.22,5.375,20.877,1.552,8.685,13.036,16.63,19.366,9.413,2.792,16.199,16.264,17.881,12.024,3.326,4.278,8.115,6.486,32.776,10.634,9.423,2.502],[14.673,25.776,19.154,5.135,12.027,10.916,3.964,8.995,19.637,-5.09,9.112,23.438,27.721,14.082,2.251,5.934,9.004,17.249,11.189,0.178,3.494,7.901,-4.709,22.073,7.941,2.706,22.672,19.773,24.234,16.433,5.218,19.443,-0.676,20.264,16.33,-8.424,7.981,11.123,17.381,15.662,-2.274,23.192,15.636,7.885,12.412,0.176,20.926,13.985,13.219,17.394,11.211,2.024,18.186,14.484,32.82,9.689,9.344,1.815,18.369,5.642,4.48,19.88,2.054,11.568,24.027,-6.095,20.797,3.485,20.438,12.606,26.556,10.125,12.874,4.625,3.72,9.086,26.226,8.464,7.446,15.632,10.563,2.144,18.872,13.764,18.751,12.262,11.459,22.802,5.633,-3.522,29.192,24.162,14.226,3.777,11.532,23.253,6.986,9.85,-4.98,7.553,3.453,17.828,10.199,10.161,0.622,9.093,22.54,6.94,1.651,23.151,16.434,8.505,-1.182,16.656,20.287,6.417,-5.237,4.283,20.53,5.247,23.398,25.564,1.466,21.719,17.5,-8.242,-0.155,18.301,0.722,16.239,3.98,19.381,19.307,19.476,12.899,18.338,8.39,-9.218,17.403,16.586,23.498,12.088,6.397,18.371,11.179,24.788,14.661,7.777,-1.741,-0.609,15.115,14.789,12.919,14.249,13.056,14.347,9.526,19.595,1.044,13.318,-2.593,20.483,13.502,16.532,10.401,20.017,2.991,-0.016,4.247,34.02,18.936,4.927,21.259,1.431,9.292,12.834,16.882,19.778,8.763,2.934,16.201,16.209,17.818,12.007,3.171,4.613,8.344,6.199,32.621,10.309,9.414,2.62],[14.56,25.612,19.377,4.856,12.053,10.965,3.915,9.1,19.529,-5.155,9.021,23.459,27.815,14.358,2.226,6.034,9.265,17.292,11.464,0.046,3.6,8.111,-4.791,21.961,7.69,2.607,22.781,19.815,23.996,16.558,5.176,19.535,-0.784,19.966,16.475,-8.619,8.126,11.312,17.468,15.474,-2.303,23.292,15.702,7.985,12.626,0.379,20.895,13.784,13.248,17.51,11.482,2.055,18.153,14.524,32.788,9.661,9.4,1.593,18.297,5.724,4.256,19.981,1.863,11.278,23.793,-6.624,20.593,3.148,20.441,12.577,26.812,10.728,13.032,4.871,3.917,8.742,25.864,9.012,7.507,15.964,11.316,2.089,18.741,13.644,18.37,12.23,11.663,23.019,5.679,-3.681,29.547,23.911,14.653,3.79,11.571,23.239,7.569,9.936,-5.414,7.567,3.269,17.897,9.93,10.044,0.295,8.802,22.631,6.856,1.68,22.814,16.244,8.095,-1.18,16.182,20.533,6.323,-5.296,4.469,20.917,5.391,23.728,25.544,1.207,21.625,17.804,-8.984,-0.554,18.473,0.945,16.351,3.962,18.927,18.881,19.241,12.855,17.924,8.407,-9.161,17.136,16.707,23.368,11.955,6.796,18.275,11.809,24.866,14.539,8.34,-1.438,-0.482,15.825,14.627,12.897,14.417,12.78,14.574,9.632,19.385,0.911,12.949,-2.588,21.265,13.618,16.629,10.548,19.764,2.987,-0.217,3.406,34.365,19.173,4.854,21.16,1.206,9.608,12.915,16.839,19.78,9.202,2.779,16.026,16.408,17.43,11.617,3.095,4.533,8.227,6.109,32.863,10.587,8.918,2.48],[14.546,25.399,19.413,4.649,12.092,11.135,3.824,9.386,19.427,-5.15,8.952,23.551,27.912,14.481,2.145,6.138,9.427,17.217,11.692,-0.031,3.633,8.219,-4.828,21.982,7.633,2.369,22.92,19.876,23.818,16.58,5.154,19.548,-0.768,19.723,16.557,-8.859,8.317,11.528,17.647,15.255,-2.305,23.295,15.905,8.11,12.667,0.598,20.915,13.585,13.16,17.547,11.723,1.979,17.949,14.633,32.771,9.575,9.513,1.421,18.237,5.796,4.093,20.189,1.721,11.2,23.634,-6.792,20.457,3.025,20.658,12.665,26.549,10.934,13.275,4.336,3.496,8.957,25.685,8.719,7.454,16.114,11.489,2.011,19.25,13.715,18.119,12.286,11.65,22.59,5.526,-4.288,29.598,23.497,14.91,3.617,11.437,23.435,7.514,10.506,-5.276,7.755,3.433,17.742,9.897,9.907,-0.218,8.703,22.791,6.741,1.512,22.858,16.654,8.635,-1.285,16.489,20.419,6.404,-5.399,4.37,21.313,4.952,23.352,25.568,1.132,21.514,17.842,-9.411,-0.603,18.547,0.78,16.764,4.117,19.093,19.069,19.27,13.061,18.493,8.414,-8.917,17.514,17.196,23.261,12.195,6.81,18.28,12.129,24.837,14.799,8.499,-1.363,-0.545,15.323,14.938,12.554,14.337,12.713,14.519,9.54,19.575,1.235,12.636,-2.788,21.537,13.71,17.256,10.176,19.845,2.546,-0.438,3.073,34.515,19.346,5.352,20.744,1.414,9.525,12.849,16.403,18.997,9.047,2.493,16.04,16.522,17.258,11.395,3.216,4.195,8.04,5.738,32.769,10.216,9.443,1.565],[14.705,25.314,19.409,4.478,12.244,11.432,3.583,9.615,19.462,-5.139,9.144,23.406,27.993,14.599,2.128,6.095,9.455,17.15,11.794,-0.235,3.555,8.25,-4.817,22.105,7.742,2.189,22.932,19.936,23.808,16.604,5.005,19.585,-0.659,19.563,16.598,-9.158,8.458,11.713,17.882,15.053,-2.48,23.184,16.176,8.131,12.71,0.626,21.053,13.465,12.991,17.713,11.796,1.942,17.777,14.717,32.791,9.406,9.712,1.121,18.129,5.834,3.956,20.3,1.651,11.24,23.733,-6.985,20.105,2.832,20.915,12.708,26.686,10.974,12.99,3.974,3.338,9.065,25.592,8.306,7.441,16.019,10.98,2.018,19.41,13.88,18.401,12.324,11.985,22.719,5.501,-4.422,29.53,24.204,14.995,3.595,11.791,23.318,6.882,10.121,-4.729,7.932,3.59,17.81,10.162,10.381,0.176,8.87,22.355,7.415,1.362,23.019,16.736,9.112,-1.528,16.221,20.327,6.448,-5.071,3.967,21.074,5.194,22.942,25.407,0.9,21.928,17.856,-8.613,0.003,18.238,0.728,16.814,3.801,19.109,19.149,19.541,13.42,18.718,8.34,-9.26,17.484,17.1,23.419,12.551,6.498,18.682,11.786,24.426,14.583,8.884,-1.153,-1.081,14.59,14.688,12.272,14.476,13.005,14.529,9.698,19.429,1.652,12.557,-2.552,20.716,13.945,16.959,10.117,19.58,2.215,-0.588,3.136,34.209,19.686,5.421,21.456,1.355,9.27,12.307,16.288,18.742,8.716,2.429,16.365,16.462,17.38,11.58,3.095,4.299,8.125,5.52,32.517,10.143,9.689,1.002],[14.828,25.31,19.429,4.358,12.486,11.699,3.325,9.527,19.547,-5.143,9.437,23.263,28.031,14.661,2.167,6.088,9.387,17.024,11.852,-0.295,3.496,8.248,-4.635,22.139,8.014,2.157,22.757,19.943,23.879,16.64,4.696,19.579,-0.505,19.426,16.65,-9.387,8.525,11.75,18.188,14.736,-2.696,23.196,16.241,7.94,12.942,0.61,20.97,13.526,12.993,17.877,11.656,2.043,17.699,14.874,32.65,9.196,9.913,0.819,17.982,5.903,3.765,20.42,1.578,11.336,23.777,-6.803,20.401,2.692,20.923,12.747,26.754,10.813,13.132,4.078,2.861,9.25,25.912,7.993,7.869,15.814,10.93,2.105,18.745,13.765,18.359,12.958,11.739,22.87,5.021,-3.948,29.71,24.421,15.16,3.801,12.222,23.375,6.605,10.083,-4.613,7.875,3.164,17.706,10.163,10.199,-0.058,9.263,22.178,7.631,1.379,23.113,16.69,9.065,-1.61,16.309,20.864,6.56,-5.084,3.965,20.975,5.343,23.607,25.063,0.921,21.696,18.008,-8.928,-0.045,18.264,1.011,16.298,3.557,19.033,19.414,19.323,13.584,18.018,8.107,-9.343,16.893,17.426,23.138,12.327,6.783,18.887,11.124,24.895,14.331,8.808,-1.222,-1.103,14.751,14.074,12.441,14.908,13.057,14.855,9.626,19.564,1.323,12.692,-2.608,20.616,14.055,16.65,10.657,19.555,2.242,-1.101,3.762,34.252,19.789,5.117,21.354,1.239,9.118,12.325,16.441,19.17,8.83,2.501,16.774,16.798,17.058,12.079,2.967,4.511,8.684,5.437,32.657,10.011,9.309,1.465],[14.892,25.242,19.222,4.319,12.725,11.85,3.085,9.165,19.582,-5.097,9.596,23.329,28.095,14.727,2.187,6.083,9.393,16.919,11.86,-0.198,3.53,8.277,-4.394,22.146,8.257,2.271,22.5,20.077,23.935,16.645,4.536,19.635,-0.444,19.299,16.447,-9.461,8.514,11.595,18.284,14.455,-2.747,23.33,16.282,7.723,13.12,0.602,20.857,13.724,13.125,17.923,11.571,2.236,17.592,15.068,32.401,8.925,9.977,0.685,18.012,6.008,3.687,20.439,1.526,11.32,23.685,-6.669,20.764,2.745,20.742,13.086,26.668,10.511,13.512,4.069,2.811,9.405,25.881,7.948,8.36,15.697,11.695,2.423,19.357,14.27,18.297,13.149,12.363,22.717,4.842,-3.813,29.734,23.468,15.162,3.746,12.305,23.511,6.498,10.433,-5.247,7.881,2.793,17.548,10.226,9.585,-0.117,9.55,22.491,7.675,1.645,23.094,16.693,9.448,-1.587,16.167,20.762,6.58,-4.719,4.168,21.486,5.128,23.529,25.377,0.771,21.412,17.986,-9.711,-0.825,18.597,1.134,16.6,3.239,18.76,19.17,18.574,13.425,18.893,8.188,-9.67,17.061,17.358,23.293,12.364,6.693,18.865,10.943,25.038,14.569,7.84,-1.336,-0.845,14.878,13.763,12.796,14.812,12.794,14.967,9.394,19.347,0.892,13.254,-3.455,21.447,13.944,17.005,10.491,19.097,2.382,-1.291,3.872,34.196,19.476,4.886,21.674,1.143,9.473,12.701,16.325,19.218,8.723,2.328,16.897,16.833,17.266,12.718,2.948,4.94,8.621,5.371,32.313,9.902,10.149,1.627],[14.891,25.087,19.21,4.367,12.967,12.187,3.153,8.835,19.543,-5.028,9.809,23.282,28.005,14.825,2.167,6.012,9.48,16.869,11.932,-0.049,3.535,8.259,-4.245,22.286,8.362,2.415,22.206,20.294,24.094,16.632,4.498,19.748,-0.622,19.111,16.317,-9.563,8.374,11.473,18.37,14.428,-2.811,23.545,16.297,7.612,13.243,0.642,20.821,13.978,13.107,17.92,11.634,2.374,17.476,15.114,32.062,8.653,10.039,0.585,18.147,6.147,3.805,20.32,1.531,11.012,23.419,-6.582,20.618,2.613,20.395,12.906,27.018,10.373,13.713,3.783,2.662,9.11,25.625,7.675,8.519,15.793,12.036,2.504,19.477,14.157,17.862,12.552,12.687,23.137,4.698,-3.92,29.773,23.583,15.478,3.588,12.127,23.509,6.711,10.598,-4.772,7.999,3.442,17.927,10.139,9.682,0.455,9.477,22.989,7.361,1.859,23.099,16.703,9.714,-1.828,16.208,20.522,6.687,-4.518,3.868,21.723,5.273,22.58,25.712,0.91,21.153,18.169,-9.431,-0.317,18.69,0.729,16.49,3.488,18.69,19.198,18.611,13.282,19.044,8.337,-9.243,17.196,17.435,23.433,12.598,6.024,18.677,10.857,25.019,14.571,7.588,-1.149,-1.068,14.409,14.09,12.412,14.716,12.816,15.086,9.322,19.261,0.853,13.219,-3.644,21.644,13.963,17.286,10.044,19.278,2.572,-1.293,2.99,33.93,19.559,5.302,21.299,0.853,9.174,12.564,16.311,19.256,8.518,2.337,16.466,16.886,17.053,12.523,3.137,5.069,8.504,5.532,31.559,9.979,9.752,1.518],[14.805,24.918,19.22,4.081,13.02,12.562,3.239,8.586,19.488,-4.898,9.874,23.268,28.025,14.915,2.057,5.832,9.578,16.928,11.989,0.203,3.676,8.199,-4.054,22.522,8.276,2.588,21.833,20.321,24.323,16.634,4.487,19.87,-0.813,18.993,16.273,-9.642,8.14,11.455,18.445,14.553,-3.018,23.705,16.279,7.687,13.365,0.766,20.799,14.08,13.008,17.733,11.563,2.413,17.497,15.199,31.722,8.318,9.988,0.528,18.364,6.313,3.999,20.171,1.52,10.634,23.419,-6.786,20.168,2.737,21.004,13.007,26.697,10.127,13.49,4.216,2.426,9.414,25.62,7.925,8.603,15.962,11.801,2.224,18.755,13.767,18.104,12.427,12.663,22.965,5.135,-4.035,29.647,23.626,15.485,3.72,12.256,23.757,7.135,10.347,-4.169,7.986,3.861,17.75,10.335,10.212,0.128,9.366,23.113,6.772,1.797,23.513,16.731,9.261,-1.282,16.21,21.055,6.59,-4.629,3.633,21.337,5.46,22.636,25.804,1.231,21.345,17.583,-8.929,0.093,18.714,0.475,15.859,3.556,19.434,19.141,18.866,13.35,18.342,8.513,-9.084,16.889,17.549,23.978,12.696,6.176,19.236,11.095,24.947,14.186,8.157,-1.041,-1.196,14.15,14.231,12.724,15.167,13.005,15.249,9.099,19.367,1.454,13.243,-2.875,21.225,13.898,17.365,10.348,19.313,3.125,-1.275,2.685,33.515,19.392,5.715,21.233,0.804,8.734,12.04,16.622,19.138,8.636,2.589,16.52,16.875,16.561,12.609,3.171,4.985,8.537,5.603,31.038,9.605,9.503,1.175],[14.628,24.783,19.021,3.872,12.863,12.707,3.166,8.438,19.628,-4.847,9.82,23.4,28.07,14.942,1.901,5.698,9.627,16.93,12.044,0.47,3.963,8.107,-3.803,22.865,8.099,2.741,21.636,20.221,24.407,16.433,4.412,20.001,-0.865,19.148,16.092,-9.674,7.945,11.477,18.454,14.655,-3.079,23.796,16.41,7.833,13.499,1.025,20.831,14.194,12.873,17.547,11.449,2.447,17.477,15.36,31.553,8.034,9.87,0.521,18.591,6.516,4.114,20.025,1.381,10.371,23.763,-6.627,20.079,2.678,21.228,13.394,26.484,10.022,13.727,4.056,3.153,9.775,25.623,8.187,8.683,15.976,11.911,1.571,18.971,14.249,18.425,12.743,12.416,22.323,4.843,-4.402,29.564,23.751,15.274,3.542,12.564,24.172,7.319,10.879,-4.129,7.941,3.899,17.78,10.387,9.801,0.014,9.291,22.977,6.258,2.167,23.833,16.562,9.079,-1.104,16.516,20.902,6.488,-4.314,3.847,21.433,5.514,22.55,25.925,1.144,20.722,17.662,-9.034,-0.476,19.052,0.482,16.352,3.435,19.161,19.168,18.966,13.367,18.709,8.712,-9.452,16.324,17.766,24.123,12.871,6.463,19.407,11.181,25.354,14.119,8.357,-0.938,-1.618,14.778,13.607,13.558,15.064,12.98,15.344,9.318,19.538,1.951,13.05,-2.748,20.772,13.844,16.554,10.534,19.331,3.295,-1.278,3.289,32.911,19.548,5.854,21.218,1.342,8.534,11.604,16.761,19.094,8.403,2.528,16.545,16.956,16.617,12.784,2.789,4.953,8.56,5.91,30.592,8.788,9.593,0.854],[14.496,24.73,18.912,3.898,12.815,12.563,3.038,8.298,19.848,-4.896,9.851,23.446,28.107,14.977,1.765,5.705,9.578,16.92,12.04,0.491,4.093,8.025,-3.526,23.049,8.177,2.824,21.586,20.124,24.346,16.196,4.257,20.097,-0.868,19.239,15.93,-9.685,7.924,11.46,18.582,14.544,-2.957,23.831,16.658,7.972,13.554,1.421,20.914,14.316,12.726,17.376,11.372,2.507,17.5,15.332,31.47,7.883,9.779,0.644,18.631,6.638,4.195,19.954,1.296,10.063,23.917,-6.77,20.555,2.953,21.111,13.022,26.746,9.904,13.867,3.728,2.946,9.42,25.571,7.995,8.428,16.081,12.187,0.429,19.427,14.239,17.976,12.812,12.731,22.951,4.386,-4.248,29.65,24.354,15.417,3.143,12.807,24.423,7.188,11.101,-3.994,7.621,3.827,17.995,10.429,9.817,0.949,9.021,23.113,6.24,2.574,23.795,16.772,9.307,-1.337,16.259,20.579,6.336,-3.992,4.142,21.443,5.82,22.552,25.945,1.11,20.591,17.563,-9.204,-0.706,19.076,0.432,16.388,3.372,18.479,19.4,19.312,13.246,18.745,8.728,-9.648,16.677,17.757,24.016,12.785,6.608,18.795,11.089,25.368,14.131,8.209,-0.535,-1.03,15.191,13.889,12.971,15.373,12.721,15.414,9.732,19.215,1.824,13.323,-3.373,21.499,14.256,16.15,10.79,19.079,2.992,-1.338,3.368,33.239,19.292,5.785,21.189,1.405,8.711,11.349,16.921,19.44,7.839,1.96,16.437,17.168,16.603,12.932,2.596,5.483,8.668,5.925,30.132,8.389,9.447,1.079],[14.373,24.73,18.902,4.073,12.873,12.494,2.825,8.117,20.094,-4.963,9.782,23.54,28.214,14.862,1.538,5.725,9.513,16.834,12.087,0.482,4.036,7.928,-3.181,23.15,8.472,2.93,21.693,20.018,24.288,16.113,4.127,20.136,-0.899,19.2,15.911,-9.698,8.105,11.384,18.618,14.415,-2.712,23.839,16.973,8.027,13.523,1.669,21.082,14.29,12.713,17.298,11.37,2.604,17.543,15.218,31.574,7.774,9.797,0.853,18.499,6.722,4.06,19.871,1.232,9.71,23.639,-6.654,21.067,2.738,21.028,13.08,26.797,9.789,14.251,4.084,2.309,9.294,25.333,7.54,8.458,15.87,11.72,0.197,19.07,13.6,17.604,12.478,13.048,23.643,4.598,-3.778,29.836,24.131,15.939,3.107,12.296,24.38,6.976,10.634,-3.989,7.927,3.951,17.829,10.287,10.004,0.764,8.806,23.31,6.562,2.527,24.092,16.675,9.485,-1.306,16.118,20.445,6.319,-3.571,4.424,20.902,5.849,22.681,25.907,1.2,21.203,17.332,-9.138,-0.415,19.143,0.485,15.481,2.945,18.837,19.353,18.816,13.149,18.628,8.545,-9.886,16.587,17.625,23.745,12.559,6.814,19.223,10.622,25.336,13.947,7.856,-0.244,-1.028,14.79,13.589,12.72,15.406,12.526,15.347,9.649,19.526,2.174,13.852,-2.843,22.148,14.834,16.275,10.591,19.333,2.724,-0.901,3.097,32.922,19.216,5.642,21.392,1.388,8.385,11.128,16.862,19.714,7.867,2.108,16.012,17.122,16.431,12.515,2.646,5.583,8.329,5.928,30.126,8.391,9.727,1.669],[14.293,24.603,18.981,4.189,12.73,12.503,2.674,7.941,20.302,-4.969,9.601,23.654,28.285,14.88,1.443,5.678,9.421,16.669,12.1,0.468,4.06,7.834,-2.959,23.309,8.792,3.022,22.046,19.903,24.267,16.003,4.082,20.2,-0.957,19.135,15.807,-9.687,8.352,11.145,18.602,14.177,-2.446,23.708,17.196,8.056,13.447,1.848,21.348,14.274,12.661,17.224,11.216,2.664,17.577,15.136,31.68,7.606,9.87,1.068,18.396,6.641,3.85,19.927,1.294,9.509,23.145,-6.567,21.09,2.95,21.265,13.065,26.923,9.714,14.657,4.242,2.265,9.394,25.162,7.193,8.394,15.825,11.883,0.106,18.313,14.065,17.681,12.192,12.756,23.538,4.35,-3.724,29.989,24.147,15.683,2.861,11.569,24.33,6.804,10.205,-3.845,8.896,3.928,17.751,10.547,9.653,0.331,8.769,23.195,6.973,2.495,24.592,16.653,9.584,-1.264,16.197,20.391,6.073,-3.665,4.439,21.018,5.599,22.296,25.706,1.369,20.906,17.555,-9.525,-0.384,19.495,0.418,15.232,2.858,19.433,19.156,18.655,12.894,18.635,8.545,-10.017,16.582,18.002,24.03,12.94,6.541,19.544,10.045,25.192,14.143,7.841,-0.011,-0.881,13.965,13.577,13.133,15.318,12.799,15.333,9.515,19.761,2.435,13.607,-2.485,21.843,14.899,16.728,10.542,19.299,2.901,-0.585,3.003,33.061,19.746,5.988,21.117,1.188,8.598,10.827,16.518,19.313,8.053,2.403,16.02,17.015,16.501,12.385,3.096,5.404,8.702,5.54,30.107,8.479,10.241,2.26],[14.385,24.362,18.994,4.118,12.401,12.483,2.672,7.819,20.442,-5.055,9.414,23.734,28.331,14.987,1.463,5.67,9.251,16.637,11.99,0.433,4.084,7.697,-2.991,23.492,9.164,3.119,22.266,19.9,24.158,15.822,4.114,20.335,-1.032,19.064,15.748,-9.797,8.553,10.836,18.582,13.845,-2.174,23.613,17.374,8.194,13.446,2.057,21.434,14.386,12.623,17.221,11.02,2.766,17.464,15.059,31.792,7.491,10.11,1.212,18.353,6.62,3.725,19.976,1.412,9.378,23.583,-6.425,21.163,3.664,21.727,13.057,26.783,9.43,15.31,4.276,2.024,9.048,24.784,6.963,7.932,15.679,12.02,0.064,18.512,13.9,18.362,12.117,12.412,23.165,4.35,-3.749,29.892,24.207,15.267,2.855,12.135,24.453,6.432,10.559,-3.509,8.862,3.949,17.614,10.39,9.369,0.418,8.877,23.17,6.442,2.915,24.676,16.573,9.809,-0.913,15.814,20.659,6.267,-3.538,3.947,20.939,5.695,22.525,25.951,1.376,21.159,17.429,-9.524,-0.332,19.261,0.041,15.751,3.381,19.655,19.363,18.933,12.244,18.738,8.99,-9.532,16.435,18.101,24.182,13.091,6.581,18.974,9.276,25.186,14.078,8.218,0.209,-0.672,13.839,13.161,12.977,15.989,12.745,15.291,9.633,19.745,2.32,13.264,-2.477,22.066,14.562,16.693,10.562,19.288,2.757,-0.389,2.766,33.198,19.2,5.877,21.455,1.454,8.744,11.049,16.358,18.952,7.655,2.476,16.163,16.943,17.003,12.506,2.919,5.454,9.043,5.533,30.316,8.877,9.503,2.469],[14.579,24.249,19.145,4.181,12.042,12.463,2.615,7.637,20.518,-5.163,9.069,23.777,28.235,15.095,1.628,5.566,9.186,16.724,11.932,0.547,4.159,7.623,-3.106,23.611,9.428,3.277,22.379,20.003,24.082,15.674,4.212,20.458,-1.184,19.005,15.792,-9.865,8.662,10.427,18.534,13.609,-1.908,23.79,17.526,8.305,13.438,2.165,21.368,14.339,12.517,17.206,10.868,2.883,17.418,15.0,31.89,7.392,10.276,1.138,18.418,6.763,3.748,19.837,1.506,9.284,23.331,-6.611,21.313,3.202,22.01,13.3,26.957,9.434,15.702,4.234,2.613,9.047,24.873,7.188,7.253,15.558,11.694,-0.075,19.06,13.102,17.821,12.263,12.602,23.325,4.334,-3.856,29.873,24.29,15.266,2.788,12.321,24.728,6.174,10.552,-3.851,8.62,3.901,17.682,10.235,9.471,0.379,9.18,22.95,6.029,3.043,24.897,15.807,10.089,-1.021,16.309,20.357,6.42,-3.267,3.492,21.037,6.053,23.131,25.726,1.57,21.422,17.259,-9.501,-0.788,19.382,0.269,15.688,3.182,19.569,19.741,19.24,11.95,18.579,9.372,-9.046,16.263,18.477,23.519,12.437,7.203,19.276,8.998,25.403,14.164,8.663,0.277,-0.836,13.899,12.773,13.015,16.076,12.388,15.238,9.933,19.965,2.466,13.749,-2.422,22.261,14.292,16.105,10.509,18.859,2.423,-0.59,2.687,33.351,19.486,5.768,21.162,2.046,8.316,11.121,16.673,19.409,7.898,2.696,16.55,16.696,17.241,12.108,2.557,5.368,9.248,5.383,30.658,8.976,9.373,2.173],[14.66,24.278,19.353,4.232,11.925,12.47,2.512,7.444,20.603,-5.241,8.621,23.899,28.189,15.234,1.788,5.333,9.156,16.937,11.971,0.589,4.443,7.75,-3.144,23.657,9.51,3.404,22.535,19.983,24.047,15.527,4.092,20.679,-1.161,19.129,15.736,-9.762,8.663,10.194,18.493,13.561,-1.762,23.818,17.61,8.321,13.376,2.077,21.285,14.337,12.382,17.152,10.749,2.904,17.374,14.955,31.869,7.397,10.421,0.975,18.629,6.81,3.792,19.728,1.581,9.157,22.795,-6.535,21.201,3.127,21.849,13.393,26.605,9.28,15.386,4.113,2.292,9.117,25.26,7.286,6.818,16.203,11.369,0.297,18.726,13.438,17.795,12.157,13.061,23.53,4.269,-4.124,29.586,24.069,16.044,3.128,11.614,24.649,6.3,10.327,-4.06,8.709,3.939,18.142,10.545,9.933,0.382,9.113,23.018,6.22,2.99,24.907,15.647,9.862,-1.076,16.274,20.434,6.461,-3.768,3.839,21.098,6.206,22.833,25.683,1.652,21.671,16.977,-9.535,-1.74,19.485,0.254,15.358,2.83,19.131,19.639,18.914,11.765,18.819,9.265,-9.65,16.494,18.318,23.915,12.181,6.991,19.226,8.802,25.441,14.005,8.637,0.208,-0.275,13.764,12.99,13.164,15.863,12.355,15.049,9.871,19.765,2.755,13.498,-1.86,22.111,14.52,15.86,10.751,19.018,2.96,-0.915,3.108,33.648,19.502,5.906,21.133,1.88,7.999,10.57,17.192,19.967,7.414,2.813,16.936,16.78,16.971,11.596,3.353,5.486,9.045,5.385,31.007,8.494,9.835,1.85],[14.747,24.278,19.473,4.216,12.031,12.55,2.37,7.271,20.597,-5.337,8.341,24.019,28.042,15.38,2.012,5.178,9.089,17.073,11.826,0.499,4.695,8.029,-3.229,23.575,9.4,3.472,22.64,19.871,24.177,15.369,3.787,20.725,-1.101,19.374,15.659,-9.752,8.658,10.164,18.42,13.503,-1.662,23.781,17.546,8.16,13.304,1.793,21.196,14.386,12.387,17.248,10.792,3.065,17.331,15.076,31.827,7.343,10.502,0.759,18.95,6.707,4.001,19.721,1.654,8.978,23.454,-6.724,21.476,3.1,21.482,13.801,26.796,9.122,14.595,4.119,1.478,8.935,25.438,7.018,6.558,16.58,11.56,0.407,18.761,13.638,18.41,11.59,12.924,23.507,3.911,-3.962,29.423,24.206,16.752,3.405,11.618,24.372,6.109,10.539,-3.658,9.302,4.626,18.249,10.496,9.676,0.824,9.2,23.392,6.072,2.762,25.064,16.298,9.669,-0.965,16.431,20.488,6.445,-3.727,3.936,20.864,6.432,22.677,25.487,1.885,21.417,16.864,-9.231,-1.657,19.612,0.341,15.381,2.472,19.014,19.986,18.997,11.676,19.134,8.845,-9.55,16.143,18.383,24.341,12.279,6.597,19.41,8.792,25.293,13.886,8.238,-0.095,-0.093,13.894,13.236,12.893,15.806,12.415,15.061,9.556,19.335,2.748,13.524,-1.692,22.117,14.846,16.029,10.711,19.098,3.032,-0.907,3.794,33.583,19.19,5.912,20.998,1.926,8.123,10.077,17.16,20.192,7.739,2.851,16.667,16.891,16.394,11.229,3.697,5.564,9.039,5.628,31.278,8.145,9.783,1.857],[14.776,24.261,19.663,4.206,12.051,12.684,2.125,7.331,20.513,-5.397,8.242,24.011,27.995,15.627,2.101,5.09,8.936,16.966,11.716,0.457,4.804,8.306,-3.267,23.539,9.306,3.447,22.668,19.791,24.368,15.348,3.465,20.694,-1.11,19.662,15.641,-9.676,8.577,10.206,18.423,13.482,-1.683,23.712,17.484,8.022,13.254,1.509,21.219,14.371,12.476,17.385,10.976,3.174,17.224,15.26,31.816,7.372,10.492,0.605,19.206,6.677,4.381,19.687,1.882,8.88,23.498,-6.797,21.886,2.626,21.62,14.033,27.219,9.033,14.279,4.237,1.329,8.736,25.235,6.768,6.348,16.565,11.91,0.603,19.144,13.234,18.291,11.114,12.519,23.456,3.873,-3.77,29.661,24.564,17.169,3.368,11.625,24.278,5.895,10.618,-3.539,9.138,4.697,17.99,10.08,8.868,0.493,9.151,23.316,5.62,2.847,25.095,16.455,9.828,-0.884,16.591,20.232,6.657,-3.512,3.674,20.926,6.407,22.968,25.859,1.78,21.49,16.521,-9.566,-0.507,19.608,0.18,15.184,2.235,19.669,20.135,18.561,11.909,18.517,8.567,-9.433,15.65,18.48,23.836,12.748,6.558,19.32,9.076,25.28,14.001,8.504,-0.305,-0.17,13.956,12.759,13.234,15.761,12.691,15.138,9.368,19.722,2.28,13.698,-1.766,21.913,15.016,15.843,10.176,18.917,2.888,-1.071,4.17,33.772,19.621,5.572,20.942,1.867,7.759,10.292,17.216,19.919,8.046,2.815,16.319,17.034,16.004,11.208,3.068,5.407,9.225,6.157,31.668,7.658,9.717,1.577],[14.703,24.096,19.799,4.319,11.87,12.847,1.988,7.519,20.538,-5.333,8.187,23.888,28.214,15.963,2.12,4.951,8.612,16.851,11.71,0.321,4.73,8.574,-3.348,23.589,9.285,3.397,22.65,19.84,24.565,15.376,3.27,20.661,-1.113,19.962,15.52,-9.67,8.424,10.365,18.326,13.422,-1.696,23.598,17.514,7.934,13.285,1.365,21.262,14.435,12.505,17.38,11.054,3.125,17.035,15.304,31.97,7.48,10.553,0.555,19.228,6.661,4.805,19.691,2.166,8.892,22.795,-7.017,21.342,2.809,21.662,14.127,26.718,9.17,14.42,4.184,1.639,8.687,24.872,6.746,6.288,16.645,11.645,0.36,19.277,13.337,18.282,10.856,12.767,23.937,3.837,-4.007,29.624,24.303,16.754,3.225,11.492,24.429,5.93,10.352,-3.974,8.289,4.207,17.521,10.076,8.683,0.349,9.329,23.182,6.193,3.16,25.029,15.907,9.621,-1.411,16.268,20.147,6.846,-3.969,3.043,21.035,6.429,23.012,25.915,1.664,21.329,16.409,-9.501,-0.507,19.49,-0.379,15.377,2.19,19.533,19.696,18.969,11.992,19.011,8.329,-9.23,16.099,18.322,23.39,12.608,6.407,19.368,9.345,25.393,14.254,8.979,-0.459,-0.107,13.924,12.864,13.443,15.807,12.672,15.114,9.453,20.088,1.651,13.082,-2.173,22.376,15.412,16.234,10.346,18.719,3.173,-1.38,4.547,33.607,19.84,5.765,20.969,1.523,7.61,10.412,17.566,20.065,7.362,3.197,16.574,16.99,16.259,12.097,2.775,5.393,9.192,6.155,31.205,7.636,9.869,1.289],[14.664,23.735,19.686,4.384,11.633,12.951,1.985,7.773,20.468,-5.25,8.148,23.859,28.253,16.036,2.023,4.944,8.333,16.851,11.684,0.198,4.552,8.825,-3.697,23.784,9.15,3.341,22.53,19.939,24.631,15.349,3.175,20.587,-1.243,20.059,15.538,-9.674,8.226,10.512,18.256,13.37,-1.647,23.45,17.557,7.818,13.361,1.309,21.337,14.489,12.388,17.3,11.154,2.986,16.88,15.304,31.997,7.471,10.783,0.55,19.151,6.68,5.174,19.756,2.335,9.006,22.811,-6.727,21.317,2.958,21.778,14.443,26.734,9.576,14.753,4.948,1.857,8.64,24.327,6.662,6.454,16.358,11.749,0.583,19.524,13.124,18.044,10.686,13.241,23.848,3.684,-4.349,29.771,24.162,16.555,3.252,11.394,24.711,5.73,9.906,-4.136,8.694,4.119,17.888,10.331,8.475,0.444,9.874,23.605,6.209,3.061,25.0,16.114,9.408,-1.206,16.937,20.737,7.238,-4.495,2.142,20.567,6.367,23.199,26.116,1.644,21.373,16.665,-9.095,-0.839,19.592,-0.392,15.526,2.434,19.182,19.734,19.762,12.108,19.096,8.657,-9.309,15.711,18.451,23.24,12.111,6.193,19.524,9.427,25.359,14.219,9.067,-0.645,0.107,13.829,13.109,13.0,15.813,12.563,14.948,9.409,19.702,1.738,13.661,-2.134,22.535,15.633,16.02,11.014,18.595,3.44,-1.164,4.189,33.91,19.375,5.997,21.022,2.004,7.811,10.481,17.308,20.44,7.423,3.442,16.641,16.952,16.269,12.485,2.96,5.57,9.176,6.574,31.162,7.78,10.089,1.58],[14.684,23.429,19.452,4.232,11.373,12.935,1.911,7.94,20.394,-5.217,8.185,23.94,28.17,16.01,1.945,4.899,8.207,17.109,11.619,0.283,4.397,9.05,-4.14,23.991,9.047,3.266,22.474,19.97,24.693,15.478,3.018,20.62,-1.388,20.016,15.592,-9.598,8.214,10.645,18.206,13.301,-1.567,23.294,17.588,7.966,13.359,1.248,21.409,14.452,12.319,17.237,11.339,2.786,16.688,15.377,32.124,7.422,10.995,0.643,19.02,6.779,5.339,19.746,2.486,9.234,22.619,-6.435,21.508,2.844,21.624,14.209,26.661,9.675,15.32,4.812,1.619,8.875,23.704,7.161,6.21,16.384,12.233,0.344,19.153,12.921,18.207,10.874,13.028,23.41,3.727,-3.92,29.578,24.58,16.891,3.238,11.677,24.92,5.787,9.701,-4.085,8.488,4.294,18.236,10.221,8.262,0.206,10.286,24.079,6.164,2.619,25.545,16.482,9.453,-1.197,17.183,20.769,7.733,-4.529,1.674,20.813,5.885,23.002,26.403,1.794,21.445,16.784,-9.129,-1.174,19.482,-0.286,15.078,2.141,19.585,19.898,19.79,12.268,18.581,9.088,-9.744,15.275,18.754,23.599,12.196,6.288,18.857,9.564,25.037,13.64,8.267,-0.438,0.219,13.587,12.461,13.036,15.847,12.851,15.111,9.17,19.635,2.018,14.255,-1.65,22.3,15.242,15.666,11.19,18.492,3.646,-0.457,4.544,33.957,19.258,5.806,21.08,2.651,7.735,10.569,17.255,20.236,8.079,3.57,16.398,17.092,16.22,12.125,3.22,5.416,9.741,7.201,31.597,8.419,10.234,1.83],[14.841,23.19,19.289,3.945,11.249,12.822,1.759,7.982,20.462,-5.142,8.221,24.028,28.059,15.949,1.888,4.977,8.222,17.377,11.63,0.353,4.269,9.131,-4.301,24.168,8.891,3.195,22.491,19.971,24.832,15.702,2.769,20.578,-1.445,20.098,15.453,-9.519,8.285,10.806,18.009,13.077,-1.437,23.27,17.633,8.185,13.366,1.234,21.355,14.402,12.361,17.147,11.537,2.599,16.483,15.441,32.374,7.464,11.171,0.799,18.968,6.813,5.363,19.657,2.724,9.536,22.418,-6.36,21.345,2.756,21.511,14.184,26.382,9.29,15.651,4.082,1.3,8.744,22.7,7.537,6.401,16.183,12.012,0.3,18.436,12.693,18.48,10.823,12.995,23.87,3.632,-3.594,29.236,24.37,17.082,3.162,11.423,24.779,5.859,10.057,-4.738,8.914,4.263,17.884,10.153,8.407,0.141,10.401,23.913,5.817,2.323,25.669,16.437,9.439,-1.24,16.881,20.467,8.067,-4.593,1.869,20.956,5.873,22.798,26.503,2.053,21.104,16.844,-9.375,-1.561,19.488,-0.054,15.096,1.974,19.481,19.892,19.463,12.535,18.365,8.975,-9.231,15.506,18.713,23.241,12.549,6.517,19.212,9.79,24.956,13.863,8.128,-0.599,0.259,13.217,12.75,13.393,16.039,12.738,15.187,9.142,20.044,1.872,13.357,-1.8,22.292,15.509,15.867,10.999,18.295,3.929,-0.484,4.772,34.14,19.373,6.025,20.968,2.562,7.648,11.093,17.263,20.156,8.2,3.608,16.711,17.215,15.928,11.762,3.084,5.639,10.107,7.035,31.633,8.695,10.106,2.068],[15.006,22.986,19.093,3.576,11.223,12.698,1.52,7.78,20.522,-5.074,8.222,24.109,28.005,16.035,1.889,5.114,8.387,17.433,11.595,0.35,4.275,9.133,-4.315,24.264,8.797,3.203,22.445,19.958,24.958,15.845,2.63,20.566,-1.45,20.213,15.288,-9.47,8.324,10.953,17.929,12.929,-1.396,23.183,17.597,8.331,13.351,1.07,21.232,14.3,12.637,17.114,11.695,2.52,16.303,15.467,32.526,7.576,11.189,0.871,18.993,6.889,5.326,19.542,2.924,9.84,22.31,-6.412,21.501,2.711,21.643,14.222,26.231,9.557,15.342,4.351,1.7,8.21,22.059,7.271,6.394,16.723,11.695,0.159,18.923,12.754,17.748,10.71,12.964,23.944,3.227,-3.455,29.026,23.903,16.806,2.926,11.183,24.542,6.04,9.762,-4.526,8.657,3.604,18.057,10.158,9.137,0.326,10.367,23.777,6.069,2.514,25.957,16.456,9.54,-1.103,16.652,20.548,8.241,-5.077,2.31,20.694,5.861,23.332,26.271,1.813,21.467,17.09,-8.72,-1.169,19.26,-0.388,15.573,1.734,19.647,20.024,19.36,12.658,18.304,8.928,-8.907,15.477,18.499,23.397,12.571,6.608,19.151,9.858,24.957,14.345,8.676,-0.801,0.289,13.141,12.709,13.333,16.029,13.056,15.099,9.611,20.135,1.737,13.023,-1.991,22.708,16.059,15.772,10.657,18.039,3.76,-0.544,4.724,34.484,19.313,5.918,20.784,2.061,7.658,11.473,17.24,20.329,7.775,3.664,16.76,17.094,15.638,11.605,2.299,5.735,9.646,6.931,32.003,9.078,10.616,2.155],[15.284,22.69,18.873,3.424,11.295,12.53,1.428,7.641,20.517,-5.002,8.078,24.07,27.936,16.177,1.841,5.245,8.563,17.307,11.5,0.218,4.237,9.06,-4.271,24.31,8.721,3.153,22.527,20.007,25.04,15.902,2.611,20.607,-1.597,20.328,15.154,-9.413,8.422,10.995,17.868,13.018,-1.314,23.118,17.435,8.297,13.278,0.851,21.265,14.261,13.087,17.156,11.784,2.386,16.156,15.576,32.659,7.652,11.016,0.81,18.958,7.014,5.435,19.525,2.945,10.08,22.37,-6.572,21.57,2.882,21.769,14.404,26.23,9.419,14.762,4.099,1.425,8.081,22.819,6.765,6.356,16.919,12.034,0.169,19.181,12.924,17.362,10.968,12.656,24.102,3.34,-3.427,29.054,24.229,16.313,2.894,11.178,24.743,6.26,9.787,-4.15,8.512,3.876,18.038,10.072,9.072,0.831,10.477,23.639,6.337,2.894,26.064,17.054,9.577,-0.966,17.388,20.317,8.452,-4.764,2.182,21.161,5.903,23.356,26.237,1.531,21.396,17.021,-8.848,-1.063,19.62,-0.5,15.318,1.447,19.705,20.138,19.823,12.66,18.608,8.931,-9.613,15.796,18.478,23.537,12.162,6.808,18.826,9.998,24.818,14.582,8.975,-0.934,0.322,13.366,12.404,12.984,15.696,13.397,15.027,9.656,19.506,1.573,13.743,-1.616,22.265,15.63,15.96,10.675,17.972,3.284,-0.688,4.864,34.631,19.042,6.215,20.669,2.277,8.103,11.554,17.3,20.052,7.672,3.767,16.151,17.38,15.206,11.547,2.151,5.672,9.553,6.588,32.332,9.234,11.123,1.795],[15.43,22.504,18.753,3.514,11.461,12.378,1.608,7.635,20.409,-4.906,7.942,24.027,27.843,16.207,1.782,5.209,8.676,17.15,11.446,0.156,4.214,9.028,-4.13,24.415,8.664,3.129,22.689,20.214,25.098,15.868,2.526,20.672,-1.772,20.517,15.125,-9.412,8.498,11.077,17.886,13.241,-1.182,23.129,17.358,8.165,13.113,0.791,21.269,14.164,13.34,17.207,11.842,2.273,16.082,15.64,32.697,7.703,10.939,0.54,18.842,7.175,5.581,19.564,2.886,10.198,21.857,-6.431,21.182,2.847,21.798,14.491,26.698,9.353,14.706,3.981,1.095,7.745,23.444,6.748,6.445,17.3,11.784,0.066,18.366,13.205,17.716,10.929,12.643,24.022,3.235,-3.765,29.199,24.527,16.185,2.872,11.45,24.901,6.238,10.276,-4.618,8.533,4.357,17.952,10.121,8.791,0.996,10.425,23.499,6.321,2.513,26.007,16.467,9.253,-1.336,17.926,20.961,8.473,-4.662,2.11,20.962,5.855,23.157,26.19,1.672,21.127,17.073,-9.277,-1.517,19.395,-0.455,14.925,1.577,19.456,20.392,19.838,12.792,17.863,8.963,-9.648,15.401,18.386,22.965,12.021,6.739,19.03,10.25,24.64,14.818,9.18,-1.184,0.399,13.751,13.675,13.308,15.975,13.474,14.848,9.541,19.557,1.328,13.776,-1.074,21.906,15.288,16.229,10.894,17.927,2.522,-0.951,4.943,34.494,19.355,6.281,20.89,2.371,8.727,11.358,17.204,20.172,7.986,3.708,16.12,17.479,15.224,11.295,2.453,5.626,9.497,6.699,31.972,9.01,10.483,1.532],[15.557,22.443,18.599,3.64,11.691,12.308,1.879,7.67,20.191,-4.953,7.834,23.994,27.945,16.125,1.715,5.182,8.818,17.205,11.494,0.081,4.253,9.088,-4.14,24.491,8.669,3.111,22.84,20.477,25.124,15.758,2.513,20.665,-1.916,20.618,15.082,-9.47,8.597,11.142,17.886,13.65,-1.178,23.028,17.362,8.024,12.944,0.87,21.25,14.07,13.468,17.296,11.943,2.116,16.07,15.597,32.405,7.787,10.877,0.076,18.799,7.186,5.722,19.656,2.903,10.119,21.441,-5.717,20.967,2.655,21.572,14.312,26.719,9.425,14.947,4.533,1.294,8.027,22.98,6.921,5.933,17.412,11.445,0.086,17.884,13.181,17.624,11.398,12.169,23.637,3.732,-3.509,29.14,24.577,16.547,2.888,11.297,25.173,5.958,10.283,-4.583,8.382,3.994,18.297,10.06,9.049,0.766,10.458,23.605,6.302,2.104,25.937,15.927,8.923,-1.63,16.968,21.239,8.235,-4.652,1.985,21.123,5.671,23.257,26.022,1.776,21.559,17.245,-8.595,-1.555,19.342,-0.919,15.283,1.6,20.066,20.746,19.876,12.805,18.03,9.101,-9.238,15.17,18.513,23.322,12.186,6.358,18.96,10.298,24.693,14.61,8.673,-1.095,0.495,14.198,13.353,12.916,15.795,13.483,14.787,9.448,19.74,1.205,12.928,-1.133,22.485,15.632,16.303,10.899,17.768,2.347,-1.004,5.114,34.308,19.318,6.503,20.858,2.208,8.393,11.461,17.084,20.258,7.939,3.4,16.493,17.214,15.641,11.009,3.07,5.7,9.658,6.79,31.774,9.399,9.829,1.488],[15.7,22.367,18.41,3.837,11.896,12.126,2.366,7.705,20.061,-4.966,7.639,23.823,28.062,15.904,1.693,5.116,8.924,17.411,11.496,-0.045,4.234,9.28,-4.187,24.527,8.537,3.074,22.979,20.68,25.104,15.688,2.623,20.719,-2.098,20.57,15.023,-9.422,8.675,11.043,17.916,14.027,-1.265,23.077,17.33,7.827,12.881,0.931,21.337,13.876,13.257,17.493,11.951,1.948,16.078,15.73,32.103,7.787,10.888,-0.17,18.705,7.107,5.777,19.735,2.923,10.159,21.177,-5.616,20.984,2.741,21.33,14.094,26.897,9.312,15.474,4.6,1.524,8.124,22.027,7.348,5.869,17.342,11.935,0.344,18.446,13.158,16.874,11.938,12.404,23.881,4.117,-3.171,29.261,24.66,16.382,2.903,11.412,25.078,5.803,10.092,-4.3,8.537,3.901,18.091,9.944,9.294,0.211,10.308,23.724,6.407,2.403,26.001,16.695,9.31,-1.61,16.491,21.246,8.431,-4.749,1.666,21.281,5.672,22.838,26.123,1.549,22.153,17.038,-9.194,-1.253,19.271,-1.118,15.094,1.604,20.524,20.563,20.104,12.508,18.326,9.297,-9.316,15.849,17.868,23.713,12.094,6.275,18.835,10.043,24.632,14.98,8.215,-0.917,0.512,14.635,13.33,13.236,15.5,13.352,14.665,9.124,19.875,1.75,12.897,-1.626,22.575,15.844,16.284,10.911,17.859,3.195,-1.181,5.242,33.933,18.864,6.643,20.703,2.311,7.978,11.688,17.063,20.043,8.001,3.824,16.784,17.449,15.678,10.968,2.911,5.426,9.708,7.052,31.569,9.022,9.829,1.046],[15.732,22.12,18.33,4.038,12.018,12.061,2.863,7.659,20.045,-4.728,7.53,23.593,28.267,15.598,1.788,5.004,8.874,17.585,11.415,-0.166,4.211,9.493,-4.124,24.577,8.526,3.132,22.92,20.786,25.026,15.806,2.699,20.627,-2.25,20.359,14.932,-9.434,8.635,10.849,17.969,14.322,-1.516,23.365,17.068,7.721,12.927,1.053,21.385,13.926,12.966,17.738,11.739,2.001,16.177,15.886,31.931,7.67,10.954,-0.116,18.528,7.013,5.726,19.597,3.137,10.245,21.383,-6.134,21.079,3.204,21.299,13.671,27.15,9.504,16.038,4.245,1.959,7.85,21.53,7.821,5.94,17.392,11.504,0.269,18.648,13.141,17.072,12.118,12.221,24.231,4.632,-3.527,29.387,24.798,16.038,2.864,11.752,25.031,6.351,10.165,-4.349,8.172,3.918,17.535,9.973,9.555,0.001,10.925,23.736,6.03,2.505,26.078,16.747,9.21,-1.958,16.621,21.154,8.983,-4.896,1.782,21.602,5.722,23.082,26.374,1.759,21.482,17.065,-9.156,-1.298,19.372,-1.298,14.927,2.284,20.417,20.448,20.242,12.566,17.819,9.486,-9.411,15.453,17.955,23.326,11.879,6.251,19.128,9.818,24.686,14.759,8.481,-0.724,0.328,14.425,14.014,13.121,15.465,13.074,14.699,8.989,19.993,1.448,13.025,-1.574,22.182,16.147,16.437,10.771,17.989,3.676,-1.356,5.041,33.703,19.436,6.592,20.767,1.833,8.586,11.67,16.928,19.946,7.79,3.913,17.071,17.522,15.487,11.669,2.019,5.383,9.475,7.016,31.681,8.941,10.064,1.039],[15.792,21.939,18.425,3.978,11.946,11.993,3.127,7.68,20.111,-4.536,7.543,23.456,28.54,15.308,1.979,5.107,8.852,17.584,11.407,-0.37,4.092,9.846,-4.114,24.586,8.534,3.16,22.733,20.858,24.814,15.881,2.838,20.498,-2.37,20.239,14.772,-9.522,8.58,10.637,17.925,14.547,-1.663,23.543,16.899,7.745,12.984,1.099,21.369,14.113,12.773,18.005,11.499,2.037,16.407,16.061,31.899,7.744,10.857,0.05,18.456,7.085,5.605,19.542,3.126,10.391,21.654,-6.322,20.828,3.496,21.474,13.528,27.386,9.061,16.18,4.473,2.537,7.354,21.343,7.491,5.972,17.315,11.007,0.566,18.696,13.225,17.312,12.537,11.961,23.882,5.166,-3.603,29.916,24.474,15.375,2.196,11.626,25.196,6.291,10.209,-4.731,8.015,4.051,18.351,9.827,9.363,0.23,11.475,23.548,5.694,2.47,26.1,16.311,9.138,-2.148,16.936,20.796,9.129,-4.317,2.591,21.713,5.802,23.491,26.211,1.662,21.275,17.357,-8.572,-1.407,19.155,-2.019,15.133,2.577,20.124,20.108,19.616,12.458,17.994,9.258,-9.728,14.753,17.99,23.583,12.129,6.246,19.013,9.849,25.25,14.355,8.795,-0.832,0.138,14.453,14.124,12.637,15.233,12.816,14.817,9.442,19.768,1.33,13.262,-1.711,22.261,16.165,17.021,10.286,18.009,3.494,-1.174,4.786,33.705,18.872,6.309,20.792,2.848,8.413,11.661,16.668,19.764,7.399,3.977,17.143,17.682,15.376,12.208,1.634,5.564,9.413,6.874,31.639,8.771,10.331,1.326],[15.793,21.765,18.561,3.808,11.861,11.796,3.353,7.449,20.15,-4.634,7.544,23.385,28.834,15.13,2.188,5.161,8.895,17.509,11.41,-0.409,4.116,10.189,-3.99,24.573,8.388,3.06,22.677,20.866,24.49,15.787,3.047,20.291,-2.454,20.203,14.674,-9.649,8.55,10.435,17.908,14.737,-1.725,23.692,16.871,7.844,13.037,1.134,21.208,14.091,12.738,18.309,11.278,2.009,16.476,16.267,32.03,7.912,10.611,0.31,18.336,7.222,5.444,19.547,2.949,10.317,21.832,-6.175,20.626,3.338,21.497,13.465,27.641,8.871,16.072,4.414,1.917,7.379,21.901,7.718,5.839,17.327,11.375,0.786,19.148,12.961,17.073,12.946,12.25,23.184,5.177,-3.31,29.977,24.01,15.061,1.857,11.26,25.198,6.35,9.982,-4.415,8.291,3.795,18.784,9.997,9.131,0.132,11.342,23.182,5.91,2.413,25.874,16.289,9.321,-2.148,17.54,21.388,9.594,-4.429,2.77,21.716,5.55,23.23,26.028,1.556,21.747,17.364,-8.884,-1.41,19.25,-2.266,14.794,2.475,20.034,19.704,19.71,12.123,18.117,8.602,-9.318,15.572,17.494,23.881,12.269,6.488,18.826,9.628,25.239,14.558,9.006,-0.64,-0.056,14.779,14.208,13.023,15.109,12.398,14.884,9.473,19.698,1.635,13.4,-1.705,22.385,15.583,17.279,10.276,18.286,3.047,-0.776,5.076,33.848,18.819,6.734,20.998,3.625,8.525,11.882,16.649,19.595,8.158,4.08,17.247,18.12,15.582,12.254,2.271,5.78,9.252,6.684,31.613,9.54,9.844,1.597],[15.694,21.651,18.621,3.698,11.934,11.787,3.485,7.142,20.053,-4.783,7.43,23.445,28.951,14.951,2.306,5.205,8.888,17.354,11.458,-0.226,4.147,10.571,-3.739,24.495,8.257,3.019,22.69,21.046,24.164,15.575,3.134,20.049,-2.404,20.268,14.772,-9.724,8.442,10.38,17.938,14.945,-1.814,23.725,16.889,7.972,13.026,1.245,21.224,14.009,12.769,18.486,11.14,1.91,16.42,16.183,32.246,8.1,10.416,0.529,18.243,7.368,5.388,19.705,2.984,10.244,21.536,-5.968,20.755,2.8,21.162,13.171,28.257,8.624,16.126,4.12,1.804,7.502,22.391,7.931,6.081,17.348,11.205,1.115,18.625,12.458,17.184,13.03,12.017,23.096,4.691,-3.261,30.06,23.441,15.262,2.286,11.171,25.248,6.141,10.157,-4.423,8.253,3.889,18.313,9.839,9.305,-0.089,11.098,23.258,6.197,2.29,25.811,16.301,8.705,-2.078,17.752,21.347,9.584,-4.731,3.026,21.95,5.645,23.132,25.835,1.622,21.934,16.949,-8.717,-1.457,18.973,-1.382,15.134,2.74,19.95,19.514,19.83,11.977,17.98,8.622,-9.212,15.641,17.428,23.63,12.283,6.337,18.877,9.388,25.216,14.571,9.135,-0.591,-0.006,14.693,14.463,12.849,15.048,13.087,14.846,9.148,19.507,1.998,12.938,-1.783,22.054,15.825,17.053,10.001,18.266,3.081,-0.515,5.075,34.009,19.297,6.677,20.898,2.926,8.812,12.095,16.726,19.601,8.198,3.488,17.607,18.131,15.517,12.547,2.982,5.911,9.3,6.785,31.601,9.722,9.176,2.106],[15.596,21.478,18.475,3.608,12.078,11.92,3.5,6.931,19.906,-4.835,7.303,23.422,28.921,14.844,2.453,5.118,8.952,17.307,11.406,0.051,4.063,10.8,-3.7,24.349,8.084,3.152,22.784,21.174,23.961,15.398,3.182,19.888,-2.169,20.36,15.002,-9.648,8.345,10.343,17.899,15.174,-1.851,23.61,16.863,7.836,12.988,1.354,21.246,13.869,12.766,18.476,11.086,1.957,16.278,16.141,32.33,8.2,10.346,0.76,18.275,7.395,5.477,19.887,2.927,10.244,22.205,-6.227,20.665,2.363,21.029,12.963,27.96,8.585,15.611,4.376,2.109,7.997,21.84,7.616,5.555,17.179,10.907,0.905,18.137,13.191,17.377,13.103,11.879,24.06,4.996,-3.539,30.288,23.636,15.68,3.237,11.445,24.758,6.327,10.404,-3.901,7.881,4.118,17.731,9.714,9.244,-0.043,11.867,23.043,6.074,2.525,25.974,16.055,9.093,-1.692,17.234,21.353,9.786,-4.201,3.253,22.124,5.852,22.956,25.593,1.758,21.439,16.693,-9.176,-1.192,18.731,-1.547,15.074,2.873,20.351,19.561,19.712,12.144,18.284,8.775,-9.321,15.207,17.679,23.789,12.071,6.253,18.85,9.418,25.073,14.181,9.181,-0.442,-0.059,14.65,14.428,12.479,15.164,13.721,14.789,9.406,19.842,2.121,12.968,-1.988,21.894,16.146,17.102,9.997,18.113,3.018,-0.705,4.48,34.291,19.101,6.572,21.104,2.0,8.427,12.002,16.569,19.447,8.093,3.658,17.896,17.77,15.924,12.584,3.058,5.989,9.116,7.008,31.625,9.606,9.685,2.218],[15.45,21.277,18.353,3.615,12.315,12.105,3.521,6.947,19.71,-4.86,7.396,23.498,28.74,14.912,2.596,4.964,9.04,17.332,11.271,0.282,3.854,10.947,-3.704,24.271,8.096,3.355,22.715,21.118,23.864,15.232,3.125,19.825,-1.938,20.379,15.178,-9.685,8.288,10.375,17.932,15.269,-1.908,23.614,16.88,7.6,12.868,1.503,21.376,13.838,12.697,18.565,11.097,2.038,16.191,16.232,32.429,8.131,10.34,0.96,18.304,7.363,5.451,19.86,2.75,10.245,22.566,-6.574,20.584,2.575,21.111,13.166,27.439,8.474,15.23,4.317,2.754,7.358,21.548,6.978,5.785,17.131,11.208,1.427,18.201,13.561,17.165,13.161,12.237,23.938,5.341,-4.043,30.006,24.148,15.883,4.043,11.513,24.6,6.311,10.271,-4.177,7.942,3.586,17.992,9.524,9.189,0.511,11.744,22.454,5.684,2.799,25.751,15.931,9.174,-1.305,17.214,21.635,9.99,-4.266,2.559,21.849,5.434,23.099,25.204,1.829,21.722,16.721,-9.012,-0.824,18.838,-2.011,14.892,3.294,20.419,19.74,19.965,12.19,18.148,8.468,-9.384,15.923,17.465,24.019,12.036,6.559,18.392,9.354,25.1,14.28,9.153,-0.311,-0.109,15.234,14.154,12.648,15.177,12.976,14.741,9.392,19.717,1.85,13.004,-2.112,21.898,15.922,17.475,9.932,18.049,3.417,-0.8,4.931,34.133,19.188,6.688,21.43,2.259,8.668,12.047,16.638,19.541,7.718,3.832,17.441,18.022,15.881,12.729,2.591,5.884,8.914,7.062,31.726,9.402,9.546,1.874],[15.346,21.119,18.337,3.681,12.471,12.315,3.519,7.005,19.499,-4.929,7.488,23.599,28.437,15.15,2.828,4.824,9.092,17.375,11.118,0.491,3.626,10.994,-3.712,24.177,8.196,3.425,22.677,20.945,23.746,15.194,2.999,19.839,-1.853,20.262,15.36,-9.645,8.196,10.465,17.857,15.198,-2.096,23.782,16.879,7.473,12.742,1.599,21.596,13.916,12.5,18.728,11.221,2.122,16.201,16.345,32.535,8.008,10.231,1.175,18.335,7.318,5.347,19.805,2.555,10.258,22.076,-6.606,20.37,3.059,20.855,13.298,27.828,8.767,15.726,4.077,2.574,7.457,21.71,6.413,6.078,16.879,11.633,1.975,18.431,13.145,17.11,13.481,12.564,23.223,5.323,-3.613,29.719,24.524,15.361,4.311,11.552,24.985,6.087,10.015,-4.631,7.781,3.251,18.684,9.554,9.485,0.816,11.619,22.335,5.617,2.915,25.485,15.999,8.829,-1.162,17.476,21.53,10.084,-4.35,2.344,21.715,5.299,23.289,25.19,1.776,21.51,16.697,-8.687,-0.71,18.465,-1.623,15.283,4.087,20.379,19.875,20.063,12.037,17.877,8.453,-9.303,15.793,17.419,23.836,12.11,6.326,18.734,9.275,25.045,14.303,9.033,-0.217,-0.306,14.896,14.47,12.67,15.146,12.235,14.646,9.119,19.88,1.799,12.791,-1.875,22.143,15.873,17.832,9.814,17.98,3.65,-0.581,5.021,34.332,19.448,6.237,20.655,2.699,9.058,12.002,16.836,19.638,7.494,3.787,17.219,18.155,15.642,12.704,2.256,6.158,9.141,6.931,31.84,9.227,9.286,2.064],[15.418,21.003,18.455,3.786,12.501,12.572,3.493,7.073,19.183,-4.888,7.523,23.547,28.11,15.235,3.11,4.767,9.12,17.419,11.045,0.635,3.491,10.956,-3.735,24.021,8.161,3.372,22.769,20.866,23.692,15.328,2.925,19.934,-1.788,20.043,15.505,-9.387,8.08,10.539,17.751,15.01,-2.227,23.881,16.748,7.467,12.672,1.664,21.82,13.936,12.288,18.844,11.39,2.332,16.287,16.262,32.626,7.921,10.097,1.403,18.37,7.262,5.183,19.613,2.45,10.275,21.66,-6.126,19.908,3.104,20.506,13.435,27.353,8.888,16.098,4.474,2.27,7.985,21.882,6.156,6.119,16.86,11.797,2.495,18.463,13.218,17.369,13.437,12.302,23.046,5.028,-3.613,29.642,24.423,15.384,4.721,11.613,25.134,5.473,10.472,-3.885,7.718,3.495,18.417,9.471,9.459,0.912,11.318,22.435,5.654,2.8,25.299,16.017,9.07,-1.169,17.78,21.91,10.211,-4.407,2.937,21.563,5.145,22.851,25.152,1.846,21.616,16.754,-8.979,-0.812,18.751,-1.164,15.276,4.375,19.917,19.704,20.054,12.138,17.962,8.711,-8.949,15.48,17.681,24.008,12.141,5.86,18.806,9.347,24.854,13.804,8.832,-0.22,-0.546,14.61,15.115,12.703,15.15,12.379,14.528,8.922,20.23,1.846,12.995,-2.362,22.878,15.987,18.305,10.102,18.08,3.044,-0.246,4.5,34.336,19.239,6.188,20.334,2.616,9.011,11.914,16.682,19.415,8.1,2.46,17.197,18.06,15.472,13.035,2.07,6.057,9.0,6.873,31.767,8.938,9.613,2.551],[15.592,20.908,18.784,3.905,12.463,12.744,3.4,7.068,18.913,-4.772,7.538,23.344,27.791,15.157,3.411,4.745,9.125,17.353,11.06,0.622,3.416,10.847,-3.56,23.902,8.077,3.277,22.852,20.929,23.689,15.413,2.915,20.106,-1.687,19.824,15.52,-9.177,8.004,10.615,17.74,14.961,-2.402,23.834,16.613,7.623,12.665,1.616,22.081,13.995,12.109,18.845,11.605,2.522,16.376,16.037,32.646,8.018,10.044,1.459,18.44,7.181,4.953,19.443,2.196,10.197,21.582,-6.165,19.417,2.732,20.609,13.325,27.391,8.861,16.071,4.472,2.114,8.556,21.586,6.286,6.174,16.908,11.521,2.659,18.121,13.558,17.596,13.289,12.289,23.309,4.968,-3.797,29.162,24.351,15.254,5.057,11.584,24.828,5.737,10.676,-3.84,8.142,3.635,17.837,9.45,9.412,0.772,11.023,22.88,5.658,2.626,25.169,16.043,9.064,-0.94,17.709,21.355,10.519,-4.486,3.607,21.969,5.092,22.789,25.397,1.971,21.794,16.899,-8.477,-0.944,18.902,-1.006,15.401,4.426,19.72,19.547,19.901,12.373,17.952,8.889,-9.194,15.836,17.227,24.364,11.765,6.121,18.096,9.565,25.055,13.64,8.615,-0.089,-0.513,15.011,15.341,12.696,15.26,12.095,14.441,9.218,20.393,2.482,13.196,-2.604,22.963,15.919,18.202,10.712,18.097,2.67,-0.069,4.366,34.499,18.931,6.346,20.611,1.928,8.796,11.619,16.662,19.208,8.387,2.264,17.417,17.698,15.969,12.988,2.967,5.775,8.737,6.542,31.967,9.312,9.687,2.821],[15.696,20.764,19.106,3.983,12.445,12.694,3.344,6.971,18.855,-4.774,7.529,23.172,27.642,14.912,3.645,4.831,9.061,17.136,11.22,0.562,3.476,10.692,-3.425,23.788,8.182,3.33,22.784,20.868,23.775,15.429,3.104,20.057,-1.585,19.719,15.572,-9.064,7.932,10.634,17.601,15.176,-2.546,23.764,16.521,7.914,12.62,1.595,22.143,14.081,11.815,18.756,11.808,2.749,16.5,15.991,32.635,8.238,10.036,1.434,18.447,7.153,4.727,19.5,1.771,10.057,21.967,-6.465,19.535,2.902,20.288,13.117,26.948,8.665,15.873,4.1,2.574,9.009,21.351,6.555,6.671,17.327,11.845,2.808,18.812,13.441,17.716,13.318,12.72,23.379,5.199,-3.522,29.073,23.963,14.943,5.517,11.25,24.48,6.011,10.498,-4.1,7.774,3.232,18.156,9.398,9.378,0.368,11.146,22.719,5.783,2.672,25.253,15.983,8.487,-0.993,17.319,21.584,10.905,-3.935,3.57,21.875,5.084,23.309,25.475,1.734,21.509,17.048,-8.879,-0.757,19.082,-0.963,15.279,4.25,19.748,20.235,19.472,12.278,18.479,8.687,-8.68,16.324,17.194,23.789,11.719,6.815,18.299,9.789,24.941,13.219,8.715,-0.341,-0.733,14.893,16.128,12.949,15.038,12.49,14.559,9.557,20.634,2.67,12.955,-2.322,22.69,15.558,17.459,10.663,18.255,3.07,-0.331,4.191,34.456,19.185,5.952,20.634,1.54,8.533,11.559,16.696,19.449,7.75,3.255,17.484,17.895,16.219,13.147,3.292,5.884,8.918,6.232,32.274,9.409,9.317,2.483],[15.679,20.644,19.418,4.052,12.475,12.549,3.4,6.738,18.939,-4.8,7.62,23.158,27.7,14.539,3.906,5.002,8.871,16.963,11.29,0.373,3.502,10.534,-3.307,23.706,8.203,3.433,22.631,20.842,23.87,15.396,3.306,19.99,-1.516,19.814,15.708,-9.15,7.894,10.6,17.604,15.6,-2.516,23.616,16.484,8.102,12.621,1.595,22.112,14.141,11.597,18.429,11.93,3.022,16.632,16.08,32.633,8.326,9.987,1.28,18.381,7.038,4.566,19.737,1.612,9.849,22.18,-6.453,19.585,3.325,20.311,12.61,26.736,8.461,15.719,4.28,2.874,8.922,21.182,6.874,7.528,17.366,12.286,3.067,19.521,13.387,18.148,13.575,12.716,23.554,5.176,-3.981,29.21,23.511,15.213,5.619,11.613,24.278,6.421,9.969,-3.768,7.902,3.373,17.986,9.642,9.395,0.844,11.126,22.408,5.79,2.804,25.542,16.054,8.86,-1.276,17.091,21.769,11.366,-4.588,3.654,21.287,5.24,23.197,25.301,1.922,21.605,16.861,-8.496,-0.463,18.515,-0.867,15.345,4.008,19.609,20.206,19.096,12.267,18.056,8.153,-8.337,16.377,16.891,23.709,12.061,6.904,18.472,9.698,24.797,12.923,8.788,-0.278,-0.77,15.215,16.732,13.406,15.098,12.184,14.56,9.898,20.325,2.147,12.819,-2.697,22.643,15.53,17.201,10.691,18.482,3.69,-0.403,3.451,34.458,19.04,5.806,20.736,1.221,8.687,11.531,16.699,19.469,8.004,2.64,17.483,17.712,16.316,13.423,2.898,6.16,9.002,6.29,31.698,9.503,9.342,2.269],[15.543,20.504,19.551,4.231,12.585,12.436,3.472,6.477,18.956,-4.999,7.72,23.268,27.843,14.375,4.139,5.189,8.581,16.838,11.366,0.314,3.506,10.378,-3.293,23.855,8.254,3.53,22.496,20.788,23.992,15.336,3.535,19.778,-1.482,19.886,15.908,-9.209,7.928,10.564,17.515,16.03,-2.543,23.414,16.464,8.168,12.689,1.512,22.075,14.255,11.55,18.124,12.078,3.228,16.792,16.169,32.539,8.335,9.868,1.098,18.303,6.93,4.491,19.915,1.544,9.666,22.106,-5.996,19.647,3.138,20.405,12.458,27.229,8.286,15.964,4.545,2.781,9.394,21.141,6.356,8.0,17.127,11.67,3.582,19.641,13.558,18.707,13.62,12.028,23.25,5.263,-3.781,29.239,24.244,14.93,5.955,11.836,24.173,6.499,9.85,-3.963,8.241,3.753,17.593,9.602,9.22,1.282,10.871,22.506,5.421,3.187,25.566,16.026,9.389,-1.304,16.703,21.773,11.792,-4.3,3.475,21.397,5.272,22.965,25.125,2.006,21.65,16.828,-8.625,-0.583,18.688,-0.503,15.655,3.47,19.672,19.8,19.221,12.149,17.834,7.438,-8.671,16.238,17.215,23.763,12.793,6.688,18.649,9.244,24.957,13.006,8.748,-0.334,-0.896,15.765,16.484,13.138,14.815,11.921,14.431,9.748,20.303,2.233,13.067,-2.27,22.404,15.632,17.49,11.011,18.538,3.798,-0.536,3.39,34.246,19.354,5.944,21.044,1.821,9.3,11.305,16.662,19.333,8.394,1.395,16.623,17.784,16.328,13.797,2.993,5.871,8.336,6.031,31.283,9.446,9.183,2.421],[15.468,20.388,19.467,4.463,12.626,12.1,3.642,6.189,18.952,-5.099,7.87,23.376,28.019,14.409,4.436,5.127,8.402,16.692,11.58,0.539,3.596,10.251,-3.283,23.984,8.526,3.512,22.433,20.85,24.143,15.455,3.711,19.565,-1.416,19.91,16.167,-9.229,7.9,10.386,17.438,16.347,-2.504,23.259,16.538,8.173,12.757,1.545,21.994,14.181,11.629,17.968,12.355,3.4,16.865,16.165,32.37,8.329,9.556,1.016,18.321,6.889,4.396,19.961,1.499,9.543,21.681,-6.321,19.432,2.812,20.56,12.6,27.534,8.049,16.287,4.682,2.397,9.647,20.953,6.026,7.575,16.849,11.103,4.31,19.613,13.889,18.41,13.177,12.232,23.296,5.47,-4.282,29.128,24.417,14.694,5.661,11.325,24.586,6.278,9.823,-4.083,8.142,3.728,17.582,9.869,8.979,1.182,10.773,22.961,5.74,2.737,25.575,16.025,8.906,-1.007,16.008,21.376,11.915,-4.116,3.43,22.158,5.07,23.049,25.492,1.976,21.365,16.974,-8.954,-1.047,18.625,-0.349,15.535,3.329,19.354,19.735,19.57,12.101,18.047,6.875,-8.865,16.504,17.042,23.399,12.449,6.711,17.798,9.143,24.794,13.15,9.035,-0.388,-0.88,15.524,16.378,13.137,15.009,11.567,14.568,9.588,20.28,2.407,13.162,-2.377,22.563,15.997,17.58,10.972,18.534,3.379,-0.528,3.719,34.07,19.743,5.931,21.28,1.561,9.612,11.028,16.515,19.164,8.268,1.814,16.274,17.981,16.572,13.852,3.558,5.647,8.225,6.286,31.376,9.051,8.786,2.408],[15.464,20.241,19.342,4.686,12.547,11.729,3.747,5.999,18.885,-5.228,7.914,23.484,28.137,14.427,4.652,4.92,8.332,16.462,11.636,0.757,3.65,10.309,-3.208,24.01,8.701,3.249,22.472,21.023,24.382,15.611,3.903,19.384,-1.323,19.904,16.419,-9.311,7.848,10.171,17.391,16.41,-2.521,23.13,16.582,8.059,12.649,1.596,21.857,13.964,11.613,17.853,12.522,3.56,16.884,16.229,32.197,8.308,9.278,1.02,18.432,6.898,4.38,19.855,1.547,9.47,21.128,-6.951,19.542,3.292,20.258,12.544,27.507,7.618,16.62,4.429,2.645,9.77,21.234,6.043,7.198,16.714,11.28,5.435,19.016,13.762,18.209,13.372,12.176,23.652,5.659,-4.03,29.384,23.674,14.715,5.651,11.164,24.924,6.008,9.426,-3.578,8.473,4.004,17.486,10.359,8.862,1.292,10.897,23.204,5.722,2.723,25.674,16.171,9.08,-0.814,15.926,21.343,11.641,-4.394,3.501,22.179,5.362,22.911,25.973,1.711,21.386,17.17,-8.818,-1.178,18.296,-0.635,15.736,3.343,19.336,19.941,19.466,11.704,18.423,6.493,-8.832,16.932,17.105,23.446,12.052,6.813,17.963,9.367,24.711,13.362,8.707,-0.058,-0.842,15.893,17.033,13.135,14.887,12.115,14.61,9.863,20.493,1.756,13.018,-2.528,22.645,15.848,17.744,11.137,18.402,3.102,-0.468,3.93,34.106,19.522,5.917,21.11,1.631,9.356,10.942,16.755,19.386,8.547,2.865,16.232,17.957,17.288,14.225,3.909,5.73,8.688,6.05,31.771,8.541,8.004,2.409],[15.624,20.214,19.326,4.746,12.457,11.455,3.709,5.876,18.698,-5.457,7.966,23.491,28.247,14.395,4.92,4.82,8.29,16.247,11.458,0.908,3.824,10.314,-3.186,23.981,8.804,2.934,22.599,21.184,24.567,15.752,4.097,19.393,-1.277,19.895,16.56,-9.332,7.767,10.065,17.554,16.481,-2.484,23.093,16.393,8.077,12.474,1.642,21.815,13.955,11.752,17.81,12.632,3.656,17.002,16.296,32.144,8.408,9.128,1.046,18.622,7.006,4.336,19.613,1.871,9.4,20.612,-6.89,19.547,4.202,20.109,12.648,27.236,7.672,16.394,4.742,2.999,9.469,20.995,5.811,6.998,17.06,11.044,5.605,18.293,13.591,18.249,13.336,11.87,24.055,5.556,-4.331,29.699,23.689,14.872,5.614,11.62,24.957,5.767,9.313,-3.348,8.316,3.59,17.338,9.521,8.899,1.329,11.198,23.333,5.502,3.229,25.287,16.321,9.079,-0.721,15.876,21.619,11.632,-4.016,3.398,21.761,5.673,23.273,25.976,1.294,21.451,17.234,-8.992,-0.581,18.154,-0.886,16.426,3.602,19.254,19.946,19.127,11.774,18.344,6.261,-9.063,16.985,17.096,23.509,12.2,6.92,17.959,8.756,24.679,13.195,8.649,-0.037,-0.757,15.852,16.959,12.968,14.572,12.121,14.316,9.73,20.697,1.775,12.759,-2.669,22.455,15.735,17.177,11.469,17.886,3.585,-0.664,3.652,33.704,19.306,5.957,20.988,1.575,9.062,10.801,16.692,19.536,8.528,2.313,16.35,18.07,18.03,14.222,3.954,5.729,8.517,6.004,32.203,8.438,7.365,2.549],[15.813,20.307,19.229,4.801,12.407,11.269,3.588,5.834,18.556,-5.866,7.968,23.428,28.297,14.293,5.191,4.824,8.315,16.101,11.242,1.002,3.951,10.191,-3.141,23.828,8.769,2.899,22.563,21.235,24.642,15.833,4.281,19.532,-1.256,19.86,16.669,-9.288,7.588,10.141,17.732,16.51,-2.373,23.119,16.069,8.242,12.392,1.635,21.831,14.114,11.956,17.716,12.642,3.744,17.148,16.372,32.059,8.584,8.991,1.065,18.788,6.957,4.344,19.481,2.217,9.327,20.074,-6.778,19.219,3.728,19.95,12.485,27.449,7.634,16.025,4.727,2.703,9.454,20.833,5.309,6.95,17.558,10.29,5.213,18.712,13.718,18.888,13.212,11.235,23.384,5.346,-4.358,29.267,24.359,14.7,5.997,11.662,24.974,5.568,9.676,-3.711,8.414,3.489,17.286,9.515,8.8,1.17,11.039,23.239,5.727,3.396,24.898,16.312,9.532,-0.221,15.417,21.482,11.633,-4.261,3.324,21.894,5.73,23.506,25.878,1.216,21.313,17.163,-9.296,-0.485,18.252,-1.059,16.159,3.965,19.603,19.974,19.429,11.56,18.223,6.129,-9.434,16.944,16.694,23.447,12.311,6.958,18.451,8.577,24.904,13.537,8.714,-0.167,-0.683,15.967,16.141,13.358,14.408,11.866,14.101,9.601,20.912,2.237,12.777,-2.511,22.766,15.845,16.884,11.18,17.624,3.894,-0.517,3.491,33.626,19.348,6.132,20.764,1.927,8.894,10.751,16.893,19.667,8.387,2.102,16.291,17.739,18.456,14.076,3.896,5.673,8.371,6.174,32.769,8.348,7.662,2.207],[15.846,20.332,19.355,4.679,12.48,11.075,3.486,5.783,18.462,-6.081,7.939,23.314,28.197,14.024,5.389,4.819,8.375,15.912,11.169,1.116,3.931,10.105,-3.294,23.602,8.785,3.079,22.382,21.181,24.557,15.743,4.474,19.751,-1.191,19.977,16.676,-9.32,7.325,10.279,17.856,16.443,-2.157,23.158,15.753,8.382,12.439,1.618,21.931,14.339,11.962,17.58,12.552,3.862,17.226,16.355,32.052,8.638,9.065,1.013,18.859,6.759,4.441,19.551,2.438,9.273,19.855,-7.498,19.251,3.615,19.757,12.083,27.761,7.599,16.21,4.643,2.375,9.494,21.441,4.793,7.184,17.493,10.677,5.72,18.561,13.765,18.368,13.506,11.302,23.073,5.303,-4.87,29.528,24.471,14.497,6.289,11.325,25.067,5.943,9.435,-3.088,8.416,4.407,17.707,9.466,8.707,1.313,10.873,23.186,5.776,3.643,24.916,15.872,9.233,-0.425,15.511,21.701,11.378,-4.033,3.866,22.011,5.55,22.904,25.999,1.678,21.401,17.046,-8.987,-1.047,18.443,-1.533,16.199,3.602,19.25,19.573,19.499,11.944,18.183,5.971,-9.138,17.078,16.402,23.378,11.769,6.802,18.631,9.024,24.953,13.759,8.501,-0.024,-0.607,15.871,15.915,13.317,14.159,12.186,14.421,9.975,21.065,2.176,13.304,-2.172,22.446,15.921,17.028,11.075,17.968,3.863,-0.322,3.304,33.632,19.283,6.384,21.091,2.179,8.94,10.652,17.223,19.936,8.819,3.312,16.418,18.036,18.514,14.203,3.644,5.117,8.056,6.084,32.484,8.143,7.997,2.539],[15.773,20.363,19.526,4.494,12.681,11.045,3.563,5.608,18.409,-6.182,7.938,23.136,28.215,13.778,5.536,4.96,8.259,15.839,11.134,1.089,4.124,10.124,-3.341,23.517,8.562,3.247,22.373,21.097,24.374,15.541,4.617,19.886,-1.208,20.068,16.501,-9.342,7.208,10.504,17.922,16.248,-1.895,23.146,15.429,8.498,12.599,1.662,22.071,14.526,11.747,17.535,12.511,3.936,17.318,16.348,32.049,8.562,9.203,1.099,19.005,6.683,4.419,19.751,2.741,9.199,19.981,-8.037,19.166,3.888,19.942,11.853,27.233,7.244,16.121,4.847,2.255,9.569,21.148,4.626,7.657,17.438,10.97,5.187,18.673,13.636,18.301,13.68,11.935,23.269,5.298,-5.627,29.42,24.218,14.303,6.353,10.901,24.796,5.77,9.456,-2.726,8.577,4.123,17.629,9.408,8.919,1.753,10.696,23.597,5.451,3.809,24.231,15.778,8.902,-0.494,15.493,21.7,10.648,-4.245,3.92,22.054,5.419,22.552,25.899,1.63,21.013,16.824,-8.174,-0.728,18.943,-1.999,16.472,3.664,19.161,19.453,19.489,12.399,18.767,5.541,-8.81,17.174,16.06,23.628,11.532,7.293,18.482,9.68,24.652,13.306,8.072,0.256,-0.171,15.514,16.309,13.544,13.846,12.154,14.371,10.102,21.692,2.559,13.247,-1.953,22.064,15.512,16.622,11.339,18.301,3.81,-0.647,3.877,33.856,19.659,5.777,21.127,2.037,9.129,10.542,17.208,19.887,8.842,3.447,16.297,18.277,18.3,14.228,3.744,5.465,8.125,6.074,31.781,8.221,8.093,2.472],[15.682,20.369,19.689,4.485,12.812,11.106,3.577,5.316,18.458,-6.371,8.031,23.004,28.144,13.81,5.524,4.968,8.161,15.811,11.127,1.052,4.196,10.081,-3.231,23.364,8.239,3.177,22.308,21.089,24.238,15.455,4.726,19.949,-1.354,20.071,16.389,-9.205,7.154,10.792,17.982,16.016,-1.646,23.246,15.256,8.695,12.712,1.74,22.19,14.511,11.317,17.497,12.492,3.921,17.44,16.358,32.061,8.474,9.142,1.069,19.258,6.897,4.48,19.925,2.998,9.145,20.277,-7.687,18.991,3.848,19.962,11.934,27.499,7.241,15.805,4.175,2.587,9.578,20.996,4.57,7.73,17.354,10.612,4.978,19.57,13.943,18.61,13.818,11.87,23.031,5.366,-6.138,28.989,23.44,14.056,6.708,10.961,24.836,5.984,9.208,-2.9,7.957,3.765,17.125,9.482,8.876,1.764,11.119,23.625,5.276,3.877,23.926,15.642,9.296,-0.531,15.212,21.38,9.98,-4.353,3.732,21.892,5.96,22.922,25.546,1.721,21.171,16.559,-8.573,-0.445,19.355,-1.959,15.715,4.259,19.746,19.326,19.414,12.545,18.958,5.402,-9.147,16.854,16.218,23.818,12.206,7.32,18.625,9.486,24.845,12.949,8.134,0.531,0.219,14.978,16.4,13.654,13.449,11.642,14.488,10.184,22.1,3.154,13.544,-1.844,22.479,15.642,16.706,11.262,18.353,3.688,-0.457,4.264,33.78,19.749,5.75,21.237,1.923,9.127,10.275,17.36,20.159,8.736,3.516,16.15,17.959,17.87,14.105,4.211,5.749,8.315,6.292,31.541,8.709,7.822,2.199],[15.75,20.386,19.95,4.387,12.796,10.948,3.607,5.11,18.513,-6.505,8.046,22.832,27.934,13.948,5.361,4.801,8.164,15.656,11.193,0.998,4.176,10.101,-3.096,23.26,8.129,3.035,22.203,21.022,24.26,15.528,4.881,20.015,-1.542,20.026,16.344,-9.253,7.274,10.776,18.021,15.743,-1.413,23.499,15.308,8.766,12.945,1.953,22.363,14.443,10.858,17.528,12.434,3.833,17.369,16.329,32.198,8.443,8.939,0.997,19.505,7.124,4.547,20.034,3.056,9.104,20.59,-7.39,18.833,3.919,20.057,12.128,27.419,6.797,15.25,4.109,2.645,9.766,21.195,4.811,7.534,16.923,10.74,5.61,20.191,14.082,18.638,13.693,11.766,22.723,5.335,-6.395,28.981,23.479,14.259,6.913,11.385,25.125,6.056,9.159,-3.041,8.14,3.695,17.147,9.457,8.715,1.01,11.209,22.858,5.444,3.83,23.581,15.655,9.107,-0.306,15.075,21.814,9.917,-3.768,4.118,21.398,5.594,22.777,25.587,1.726,21.942,16.887,-8.964,-0.887,19.146,-1.448,15.914,4.48,20.009,18.908,19.143,12.343,18.365,5.966,-9.334,16.568,16.15,23.393,12.7,7.237,18.632,9.345,25.278,12.63,8.369,0.653,0.289,15.471,16.336,13.601,13.488,11.015,14.656,10.333,21.471,2.939,13.114,-1.744,22.414,15.989,17.075,10.856,18.365,3.85,-0.632,3.999,34.012,19.777,6.841,21.558,2.166,9.101,10.348,17.932,20.743,8.792,3.343,15.948,17.942,18.219,14.025,4.497,5.435,8.407,6.443,31.649,9.351,7.832,2.386],[15.841,20.458,20.209,4.221,12.662,10.851,3.634,4.939,18.401,-6.514,8.173,22.607,27.803,14.023,5.253,4.662,8.145,15.493,11.441,0.888,4.131,10.201,-2.937,23.208,8.085,2.965,22.229,20.878,24.178,15.76,5.017,19.879,-1.793,19.935,16.363,-9.466,7.567,10.621,17.981,15.642,-1.248,23.575,15.404,8.714,13.134,2.287,22.493,14.285,10.473,17.534,12.391,3.732,17.238,16.302,32.478,8.567,8.932,0.922,19.837,7.15,4.582,20.131,2.969,9.164,20.784,-7.592,19.252,3.772,20.072,12.2,27.253,6.737,15.094,4.675,2.506,9.831,21.06,4.925,7.281,17.386,10.904,6.012,20.119,13.629,18.959,13.634,11.265,22.926,5.307,-6.586,28.871,24.096,14.602,5.995,11.513,24.86,5.467,9.54,-3.26,8.545,4.086,17.189,9.62,8.39,0.663,10.667,22.959,5.354,3.686,23.372,15.973,9.144,-0.547,15.489,21.854,10.284,-3.74,3.983,21.652,5.487,22.979,25.7,1.234,21.35,17.357,-8.696,-1.05,18.637,-0.711,16.369,4.123,20.068,19.536,18.981,12.328,18.495,6.276,-8.953,16.906,16.538,23.738,12.991,7.345,19.069,9.392,25.317,12.215,8.632,0.504,0.532,15.21,15.853,13.231,14.024,10.652,14.797,10.177,21.353,2.801,12.972,-1.811,22.606,15.862,17.166,10.886,18.19,4.142,-0.725,3.575,34.167,20.027,6.383,21.528,2.618,8.592,10.233,17.974,20.74,8.632,3.458,15.784,17.929,18.372,13.765,4.117,5.682,8.122,6.335,32.246,9.609,8.186,2.373],[15.873,20.499,20.401,4.144,12.666,10.912,3.639,4.819,18.367,-6.453,8.441,22.524,27.812,14.142,5.128,4.484,8.099,15.414,11.819,0.671,4.152,10.322,-2.858,23.141,8.231,3.041,22.276,20.8,23.996,16.032,4.927,19.779,-1.904,19.83,16.531,-9.499,7.814,10.621,18.094,15.608,-1.299,23.538,15.603,8.594,13.166,2.579,22.593,14.162,10.192,17.53,12.318,3.606,17.091,16.172,32.737,8.56,8.983,0.871,20.003,6.897,4.61,20.174,3.11,9.254,20.96,-7.994,19.087,3.469,19.715,12.436,27.034,6.6,15.636,3.91,2.617,9.944,21.38,4.67,7.48,17.704,10.529,6.13,19.831,12.978,18.957,14.236,11.475,23.147,5.525,-6.749,29.073,23.641,14.446,5.183,11.777,24.317,5.202,8.957,-2.932,7.995,3.76,17.059,10.097,8.468,1.283,10.117,22.957,5.245,3.144,24.001,16.188,8.794,-0.627,15.244,21.355,10.405,-3.979,4.289,21.849,5.857,22.65,25.336,1.418,20.816,17.502,-9.094,-0.906,18.465,-0.929,16.179,4.206,20.013,19.311,19.002,12.389,18.943,6.278,-9.332,16.728,16.787,24.237,12.733,6.809,18.622,9.861,24.922,11.616,8.649,0.913,0.481,14.856,15.18,13.042,14.108,10.749,15.059,9.85,22.04,2.491,13.417,-1.605,22.991,15.456,16.983,11.196,17.906,4.058,-0.611,3.543,34.448,20.258,5.731,21.689,2.685,8.746,9.988,18.266,20.647,8.859,3.891,16.008,17.898,18.125,13.991,3.689,5.63,8.318,6.262,32.949,9.322,8.096,1.943],[15.923,20.492,20.415,3.892,12.788,11.032,3.752,4.605,18.431,-6.436,8.708,22.514,27.769,14.159,4.881,4.224,8.099,15.298,12.238,0.589,4.212,10.306,-2.794,23.217,8.366,3.097,22.358,20.753,23.827,16.147,4.806,19.567,-1.871,19.882,16.653,-9.469,7.98,10.786,18.276,15.502,-1.444,23.617,15.757,8.321,13.106,2.695,22.739,14.281,9.976,17.594,12.281,3.431,16.844,15.895,32.945,8.496,9.083,0.819,20.005,6.68,4.597,20.086,3.496,9.321,20.934,-8.151,19.146,3.172,19.722,12.504,27.128,6.416,15.832,3.805,2.779,10.057,21.75,4.343,8.078,17.503,10.411,6.183,19.962,13.092,19.003,13.625,11.914,22.726,5.686,-6.519,28.986,23.549,14.501,4.949,12.497,24.122,4.867,9.034,-2.782,8.039,3.644,16.708,10.519,8.57,1.279,9.969,22.31,5.315,3.527,24.844,16.57,9.094,-0.622,15.208,21.591,10.54,-3.503,4.178,21.427,5.722,22.272,25.141,1.604,21.17,17.497,-8.72,-1.193,18.623,-1.714,16.485,4.174,19.699,18.801,18.884,12.577,19.282,6.389,-9.638,16.701,16.539,23.693,12.303,6.683,18.821,9.428,25.28,11.13,8.501,1.322,0.394,14.782,15.052,12.86,14.109,11.207,14.921,9.9,22.43,2.612,13.853,-1.952,23.163,15.155,16.61,11.248,18.079,3.707,-0.903,4.132,34.477,20.744,5.919,21.26,2.984,8.771,9.364,18.082,20.825,8.744,3.803,16.466,17.541,17.652,14.086,3.191,5.32,8.271,6.477,33.002,9.111,8.014,1.979],[15.781,20.445,20.294,3.592,12.903,11.196,3.93,4.431,18.53,-6.421,8.906,22.522,27.607,14.063,4.615,3.971,8.3,15.127,12.582,0.612,4.24,10.254,-2.628,23.441,8.475,3.126,22.462,20.712,23.653,16.133,4.734,19.268,-1.93,19.922,16.725,-9.279,8.093,10.853,18.53,15.258,-1.533,23.688,15.817,8.087,12.967,2.691,22.956,14.524,9.863,17.642,12.201,3.169,16.612,15.699,32.924,8.446,9.174,0.707,19.874,6.758,4.699,20.003,3.8,9.245,21.242,-7.944,19.248,3.042,20.211,12.245,27.325,6.265,15.722,3.941,2.707,10.46,21.518,3.946,8.317,17.277,11.0,6.096,20.185,13.934,18.996,13.719,11.743,22.684,5.607,-6.529,28.816,23.414,14.516,5.236,13.065,23.749,4.677,9.546,-3.129,8.397,4.204,16.616,10.796,8.252,0.565,10.047,22.209,5.363,3.554,24.996,16.685,9.675,-0.635,15.648,21.963,10.396,-3.037,3.952,21.194,5.69,22.628,24.754,1.562,21.685,17.198,-8.833,-1.032,18.047,-2.269,16.856,3.526,20.178,19.08,19.357,12.273,19.365,7.053,-9.317,16.787,16.493,23.817,12.649,6.703,18.784,9.369,25.432,10.656,8.627,0.92,0.267,15.112,15.538,13.409,14.144,11.267,14.775,9.45,22.053,2.982,14.096,-2.251,23.066,14.945,16.887,11.275,17.714,3.722,-0.752,4.535,34.773,20.086,6.188,21.626,3.084,8.449,9.221,18.115,20.794,8.086,4.229,16.282,17.133,17.615,13.954,3.22,5.327,8.24,6.478,32.783,9.388,8.084,2.22],[15.599,20.458,20.212,3.469,13.113,11.415,3.953,4.311,18.561,-6.383,9.054,22.557,27.484,13.903,4.511,3.88,8.566,15.12,12.846,0.569,4.342,10.259,-2.463,23.542,8.732,3.202,22.502,20.668,23.515,15.984,4.587,19.038,-2.149,20.044,16.81,-8.961,8.383,10.806,18.784,15.097,-1.554,23.85,15.838,7.873,12.911,2.547,23.09,14.88,9.779,17.637,12.128,2.852,16.503,15.614,32.895,8.348,9.192,0.654,19.631,7.06,4.898,20.005,3.915,9.039,21.287,-7.889,19.061,2.794,20.019,12.077,26.979,6.167,15.43,3.641,2.634,10.501,20.887,3.607,8.615,17.389,11.563,5.528,20.044,14.07,18.767,13.804,11.769,22.925,5.614,-6.891,28.968,23.883,14.315,5.636,12.952,24.124,4.143,9.458,-2.984,8.327,3.967,16.563,11.021,8.418,0.308,10.083,21.875,5.257,3.671,24.937,16.631,9.219,-0.778,15.249,22.011,10.059,-3.107,4.463,21.253,5.972,23.135,24.564,1.685,21.46,17.443,-9.861,-0.765,17.635,-2.393,16.699,3.275,20.765,18.798,19.224,12.34,19.079,7.761,-8.888,16.532,16.283,24.113,13.053,6.295,18.721,9.696,25.196,10.479,8.514,0.781,0.258,15.367,15.079,13.824,14.382,11.058,14.608,9.445,22.054,3.452,14.223,-2.183,23.238,15.041,17.187,10.641,17.289,3.58,-0.914,4.411,34.642,19.514,5.934,21.479,3.594,8.526,9.705,17.935,20.616,8.647,4.24,16.123,17.278,17.666,13.715,3.992,5.609,8.492,6.675,32.143,9.682,7.739,1.761],[15.629,20.472,20.129,3.445,13.203,11.739,3.766,4.258,18.486,-6.433,9.134,22.627,27.485,13.715,4.564,3.919,8.703,15.105,13.033,0.406,4.479,10.294,-2.406,23.496,8.795,3.419,22.468,20.662,23.437,15.853,4.552,18.824,-2.404,20.164,16.746,-8.895,8.691,10.748,18.854,14.956,-1.539,23.997,15.726,7.845,12.982,2.496,23.096,15.133,9.681,17.629,12.025,2.612,16.448,15.58,32.874,8.466,9.125,0.615,19.513,7.267,5.09,19.925,3.908,8.794,21.129,-7.824,19.092,2.506,19.542,12.048,27.117,5.942,15.332,3.578,2.802,10.291,20.819,3.345,8.728,17.183,11.137,4.423,19.959,13.601,18.849,13.842,12.191,22.976,5.373,-7.044,28.817,24.061,13.93,6.064,13.127,24.47,3.979,9.792,-2.778,8.386,4.126,16.816,11.462,8.983,0.576,10.166,21.893,5.42,3.553,24.763,16.281,9.206,-0.969,14.715,21.786,9.734,-3.344,4.059,21.423,5.643,22.794,24.924,1.795,21.335,17.413,-9.154,-1.175,17.993,-2.144,16.275,3.341,20.542,18.441,18.98,12.477,19.291,8.335,-7.926,16.74,16.617,24.058,12.909,5.934,19.402,9.761,25.686,10.772,8.534,0.672,0.342,15.586,14.871,13.796,14.364,10.982,14.865,9.074,22.689,3.395,14.502,-2.019,23.719,15.14,17.139,10.622,17.146,3.608,-1.011,4.55,34.523,20.157,6.001,20.898,3.725,8.503,9.889,17.512,20.417,8.857,3.809,15.954,17.329,17.79,13.631,3.983,6.209,8.609,6.892,31.946,9.582,7.602,1.532],[15.651,20.499,20.038,3.386,13.105,12.076,3.561,4.251,18.428,-6.524,9.132,22.582,27.632,13.566,4.658,4.074,8.766,15.051,13.329,0.235,4.637,10.34,-2.308,23.426,8.667,3.723,22.368,20.675,23.451,15.735,4.594,18.724,-2.61,20.019,16.546,-8.749,8.908,10.695,18.833,14.862,-1.534,23.97,15.623,7.917,13.242,2.405,23.117,15.087,9.683,17.529,11.894,2.449,16.506,15.616,32.86,8.605,9.01,0.68,19.861,7.334,5.218,19.777,3.834,8.56,20.78,-7.834,19.107,2.396,19.949,11.791,27.19,6.028,15.697,3.772,2.64,10.609,21.336,3.513,8.201,17.336,10.999,3.688,19.992,13.672,18.651,14.078,12.375,23.287,5.41,-6.981,28.927,23.577,13.827,6.387,13.455,24.123,4.256,10.062,-2.848,8.298,4.26,16.881,11.473,8.599,0.167,10.051,22.202,5.72,3.889,24.588,15.956,9.701,-1.047,14.806,21.561,9.351,-3.32,3.59,21.174,6.143,22.417,24.831,2.079,21.284,16.847,-8.243,-1.438,17.957,-2.24,16.132,3.339,20.339,18.407,19.153,12.427,19.742,8.117,-8.05,16.905,16.317,24.351,12.821,6.249,19.267,9.728,25.569,10.861,9.22,0.746,0.24,15.421,14.86,13.535,14.435,10.696,15.075,9.164,22.736,2.982,14.434,-1.778,23.535,14.794,17.034,11.169,17.312,3.543,-0.944,5.04,34.558,20.089,6.7,21.458,3.088,9.12,9.531,17.862,20.261,8.381,3.838,16.145,17.399,17.574,13.632,3.485,6.081,8.192,6.952,32.491,9.155,7.756,1.828],[15.614,20.604,19.953,3.372,13.072,12.375,3.39,4.384,18.59,-6.547,9.012,22.466,27.861,13.5,4.717,4.202,8.692,15.036,13.588,0.16,4.814,10.319,-2.129,23.423,8.664,4.021,22.257,20.634,23.586,15.579,4.568,18.727,-2.711,19.831,16.336,-8.45,9.035,10.708,18.788,14.831,-1.573,23.874,15.519,8.052,13.528,2.215,23.082,14.96,9.728,17.394,11.845,2.256,16.611,15.692,32.908,8.714,8.914,0.751,20.155,7.304,5.348,19.825,3.652,8.417,20.474,-8.016,19.103,2.121,19.75,11.566,27.434,6.109,15.988,3.886,2.502,10.079,21.346,3.762,8.127,17.282,11.862,3.672,19.84,13.94,18.543,13.367,12.703,22.784,5.091,-7.077,29.376,23.744,14.056,6.398,13.755,23.915,4.644,10.076,-2.895,8.435,4.529,16.812,11.728,8.504,-0.198,10.001,22.013,5.509,4.253,24.965,15.844,9.404,-1.462,14.638,21.611,9.083,-2.935,3.33,20.869,6.397,22.528,24.545,2.312,21.148,16.323,-8.243,-1.527,17.791,-2.843,16.133,3.751,20.356,18.405,18.918,12.255,19.187,7.611,-8.819,16.304,16.254,24.188,13.323,6.472,18.416,9.491,25.386,10.917,9.611,0.456,0.319,14.817,14.99,13.424,14.256,10.759,15.342,9.469,22.214,3.075,14.696,-1.697,23.026,14.851,16.703,10.845,17.866,3.277,-0.673,5.087,34.44,20.013,6.491,21.313,3.196,9.042,8.8,18.426,21.02,8.351,4.385,16.291,17.43,17.579,13.538,3.366,5.647,8.112,6.783,33.292,8.406,7.395,2.106],[15.574,20.696,19.748,3.4,13.023,12.598,3.212,4.68,18.748,-6.639,8.824,22.383,28.117,13.547,4.772,4.178,8.609,15.035,13.771,0.104,4.956,10.24,-1.961,23.498,8.745,4.132,22.257,20.559,23.628,15.331,4.462,18.677,-2.84,19.734,16.052,-8.148,9.09,10.654,18.595,14.805,-1.515,23.742,15.451,8.266,13.753,2.171,22.833,14.914,9.872,17.229,11.707,2.024,16.684,15.745,32.961,8.775,8.729,0.804,20.311,7.239,5.439,19.991,3.556,8.157,20.76,-8.354,19.509,1.999,19.937,11.707,27.942,6.192,15.953,3.315,2.082,9.865,21.047,3.592,8.416,16.981,12.508,4.1,19.823,14.088,18.57,13.293,13.647,22.135,5.03,-6.813,29.465,23.52,14.048,6.386,14.179,23.92,4.804,9.749,-2.477,8.552,4.89,16.715,12.131,8.875,0.466,9.833,22.046,5.661,4.445,25.043,16.012,9.066,-1.376,14.661,22.066,9.125,-2.906,3.441,20.721,6.04,22.708,25.035,2.281,21.279,16.379,-8.25,-1.343,17.479,-2.992,15.99,4.156,20.042,18.306,18.934,12.084,18.409,7.369,-9.237,16.089,16.38,23.907,13.647,6.727,18.735,9.362,25.586,11.099,9.36,0.555,0.208,14.588,14.81,13.667,14.176,11.048,15.423,9.723,22.385,2.978,14.682,-2.26,22.76,14.846,16.149,10.849,17.734,3.262,-0.649,4.67,34.475,20.008,6.038,21.473,2.997,8.464,8.748,18.56,21.462,8.781,4.374,16.762,17.382,17.726,13.29,3.195,6.345,8.448,7.067,33.582,8.155,7.217,2.064],[15.544,20.722,19.521,3.315,12.904,12.839,3.177,5.136,18.943,-6.764,8.698,22.208,28.206,13.614,4.932,4.088,8.711,15.071,13.934,0.18,4.902,10.138,-1.892,23.53,8.774,4.11,22.478,20.524,23.717,15.226,4.382,18.603,-2.959,19.66,15.821,-7.985,9.01,10.474,18.477,14.652,-1.479,23.789,15.436,8.561,13.781,2.22,22.457,15.001,10.175,16.955,11.54,1.884,16.643,15.727,33.166,8.684,8.691,0.846,20.421,7.352,5.376,20.081,3.582,7.795,21.613,-8.37,19.702,2.095,20.321,11.939,27.347,6.443,15.453,3.111,1.969,9.688,21.151,3.558,8.547,17.169,12.081,4.843,19.739,13.833,18.114,13.438,14.009,22.575,4.687,-6.992,29.498,23.592,13.785,6.157,14.474,24.331,4.526,9.846,-2.619,8.587,4.5,16.579,12.036,8.865,0.732,9.681,22.097,5.659,4.274,24.842,16.011,9.567,-1.234,14.932,22.138,9.024,-2.971,3.188,20.908,6.533,22.925,25.313,2.423,21.397,16.579,-7.703,-1.395,17.618,-2.968,15.628,4.162,20.273,18.158,19.111,12.195,18.472,7.476,-8.519,16.404,16.667,24.135,13.815,6.932,18.791,9.372,25.565,11.051,9.204,0.415,0.302,15.181,15.004,13.769,14.372,11.483,15.349,10.005,22.487,2.719,14.579,-2.741,22.582,14.863,16.301,10.869,17.535,3.182,-0.857,4.998,34.663,19.987,6.192,21.59,2.633,8.593,8.946,18.529,21.007,9.263,3.904,16.535,17.408,17.92,12.994,2.659,6.321,7.949,7.182,32.644,8.061,7.269,1.894],[15.459,20.727,19.335,3.172,12.758,12.975,3.211,5.435,19.25,-6.847,8.583,22.183,28.01,13.65,5.139,3.826,8.98,15.157,13.919,0.366,4.702,9.991,-2.018,23.602,8.881,4.044,22.845,20.592,23.849,15.334,4.277,18.62,-3.054,19.71,15.875,-7.801,8.871,10.474,18.544,14.59,-1.576,24.034,15.471,8.691,13.639,2.155,22.188,15.181,10.467,16.648,11.397,1.76,16.577,15.74,33.305,8.547,8.71,0.8,20.323,7.405,5.254,20.044,3.691,7.565,21.554,-8.379,19.842,2.28,19.987,11.72,27.346,6.955,15.262,3.731,1.869,9.686,21.691,4.657,8.539,17.286,11.524,5.378,19.186,13.74,18.0,13.455,13.739,23.014,4.776,-7.551,29.242,23.567,14.072,6.704,14.497,24.427,4.248,10.445,-2.786,8.778,4.319,16.679,12.076,8.368,0.075,9.628,22.364,5.249,4.649,24.843,15.493,9.479,-1.417,14.789,21.947,9.341,-2.945,2.898,20.93,6.133,23.058,24.835,2.32,21.746,16.999,-7.934,-1.286,18.12,-3.297,15.358,4.146,20.653,17.841,18.642,12.141,19.11,7.68,-7.607,15.746,16.819,24.27,14.424,7.161,18.33,9.149,25.651,10.646,9.407,0.533,0.022,15.742,14.835,13.604,14.476,11.856,15.234,9.963,21.931,2.849,14.784,-2.714,22.228,14.939,16.159,10.415,17.481,3.29,-0.906,5.084,34.944,20.313,6.421,21.432,3.116,9.273,8.921,18.542,21.021,9.011,3.841,16.07,17.537,17.981,12.919,2.468,5.819,8.085,6.862,32.771,8.024,7.283,1.887],[15.333,20.711,19.15,3.236,12.83,13.005,3.261,5.713,19.479,-6.974,8.514,22.324,27.708,13.58,5.475,3.441,9.262,15.312,13.793,0.393,4.538,9.915,-2.252,23.648,8.955,4.067,23.214,20.767,23.808,15.581,4.161,18.756,-3.092,19.762,15.821,-7.61,8.849,10.541,18.676,14.685,-1.766,24.089,15.521,8.604,13.704,2.228,21.991,15.359,10.379,16.297,11.231,1.651,16.45,15.733,33.404,8.42,8.714,0.729,20.15,7.172,5.125,20.079,3.766,7.475,20.659,-8.513,20.28,2.28,20.532,11.91,27.431,7.382,15.172,3.839,2.234,9.525,21.863,5.279,8.442,17.137,11.925,5.622,19.122,13.626,18.251,13.339,13.123,22.771,4.944,-7.247,29.088,23.515,14.416,7.024,14.426,24.347,4.011,10.762,-2.494,9.011,4.366,16.851,12.079,8.389,0.33,9.148,22.37,4.987,4.765,24.865,15.677,9.403,-1.097,15.028,21.906,9.734,-3.118,2.721,21.005,5.858,23.524,25.334,2.197,22.153,16.852,-7.961,-1.653,17.879,-3.583,15.364,3.998,20.512,17.915,18.835,12.123,19.088,8.127,-7.689,16.253,16.83,24.666,14.239,6.909,18.714,9.315,25.512,11.018,8.849,0.971,0.068,15.836,14.227,13.919,14.573,11.653,15.169,10.057,21.468,2.745,14.857,-2.64,22.101,14.894,15.555,10.47,17.453,2.815,-0.922,4.772,35.278,19.968,6.411,21.633,3.119,9.689,8.719,18.262,21.082,8.137,4.428,15.645,17.569,17.77,12.914,2.882,6.024,8.351,6.89,33.099,8.263,7.241,1.867],[15.141,20.584,19.083,3.509,12.898,13.019,3.363,5.995,19.665,-6.98,8.489,22.459,27.548,13.576,5.79,3.283,9.436,15.453,13.627,0.445,4.475,9.858,-2.452,23.46,8.967,4.217,23.51,20.939,23.83,15.929,4.134,18.967,-3.323,19.821,15.738,-7.515,8.9,10.612,18.84,14.678,-1.818,23.949,15.57,8.422,13.744,2.408,21.781,15.452,10.125,15.962,11.131,1.566,16.424,15.809,33.508,8.265,8.763,0.662,20.021,7.031,5.098,20.157,3.764,7.472,21.001,-8.578,20.177,2.421,21.029,11.702,26.877,7.768,15.254,3.391,2.595,9.294,21.71,4.924,7.929,16.923,12.527,5.983,19.049,13.995,17.71,13.328,12.809,22.695,5.21,-6.926,28.883,23.822,13.987,6.907,14.389,24.413,3.793,10.682,-3.024,8.649,4.368,17.195,11.71,8.879,0.494,8.615,22.242,4.877,4.31,24.605,15.607,9.441,-1.336,15.688,22.53,9.916,-3.157,2.69,21.226,6.2,23.586,25.424,2.656,22.102,15.987,-7.469,-1.64,17.542,-3.24,15.937,3.41,20.139,18.081,19.063,12.271,18.562,7.913,-7.653,16.232,17.213,24.641,13.654,6.763,19.317,9.612,25.425,11.303,8.959,0.662,-0.077,16.22,14.318,14.01,14.605,11.658,15.441,9.69,21.705,2.902,14.789,-2.794,22.161,14.751,15.472,10.602,17.582,2.277,-0.75,4.926,35.248,20.325,5.875,21.351,3.292,9.214,8.482,18.035,20.668,8.016,4.304,15.143,17.592,17.57,12.912,2.939,6.051,8.271,6.549,33.468,8.114,7.137,1.919],[14.955,20.466,18.95,3.859,12.925,13.114,3.541,6.026,19.898,-6.786,8.379,22.569,27.439,13.543,6.126,3.279,9.403,15.784,13.412,0.407,4.509,9.815,-2.641,23.148,8.93,4.334,23.614,21.236,23.92,16.117,4.039,19.09,-3.454,19.754,15.728,-7.415,8.851,10.765,19.041,14.732,-1.87,23.81,15.609,8.129,13.621,2.467,21.592,15.294,10.234,15.764,11.139,1.395,16.489,16.055,33.516,8.012,8.76,0.676,19.946,6.995,5.036,20.203,3.758,7.48,21.515,-8.351,20.288,2.718,21.122,11.596,26.889,7.7,15.079,3.838,2.661,9.426,21.505,4.757,7.379,16.663,12.279,6.632,18.599,13.614,17.758,13.702,13.449,22.678,5.281,-7.334,28.856,24.053,13.686,6.775,14.075,24.246,3.876,10.524,-2.906,8.684,4.36,17.499,11.61,9.529,0.546,8.058,22.277,4.651,4.681,24.302,16.029,9.75,-1.427,15.827,22.852,10.128,-3.406,2.871,21.28,6.073,23.731,24.869,2.715,22.528,16.008,-7.87,-2.057,17.575,-3.635,16.315,3.443,20.371,18.667,19.031,12.45,18.778,7.908,-7.135,15.514,17.317,23.954,13.377,6.524,19.176,9.519,25.401,10.707,9.181,0.703,-0.31,16.134,14.842,13.808,14.682,11.517,15.42,9.486,21.669,3.18,14.662,-2.903,22.033,15.034,15.336,10.374,17.614,2.578,-0.922,4.833,35.17,20.597,5.584,21.488,3.162,8.294,8.304,18.085,20.569,8.52,3.845,14.529,17.841,17.651,12.774,2.686,5.907,8.147,6.569,33.705,8.158,7.211,1.828],[14.815,20.49,18.82,4.089,12.868,13.201,3.821,5.86,20.119,-6.495,8.32,22.629,27.406,13.499,6.376,3.278,9.324,16.237,13.282,0.329,4.59,9.799,-2.725,22.926,8.884,4.354,23.668,21.494,23.9,16.172,3.938,19.136,-3.574,19.53,15.674,-7.381,8.613,10.873,19.191,14.848,-1.917,23.649,15.612,8.021,13.547,2.521,21.44,14.946,10.385,15.646,11.158,1.287,16.503,16.313,33.422,7.761,8.718,0.696,19.997,7.019,4.977,20.359,3.63,7.544,20.879,-8.059,20.867,2.91,21.101,11.739,27.236,7.276,14.766,4.469,2.335,8.955,21.49,4.65,7.238,16.603,12.112,7.06,18.363,13.282,17.846,13.413,13.699,22.956,5.278,-6.909,28.839,23.848,14.0,7.563,13.844,23.518,4.124,10.766,-3.171,8.365,4.285,18.115,11.48,8.91,0.604,8.05,22.293,4.798,4.818,24.403,16.164,9.701,-1.313,15.405,23.064,10.112,-3.523,3.269,21.865,5.958,23.994,25.167,2.61,22.432,17.129,-7.194,-2.225,17.551,-3.91,15.906,3.564,20.566,18.717,19.06,12.648,19.183,7.881,-7.337,15.847,17.195,23.612,13.099,6.282,19.296,9.667,25.096,10.431,8.917,0.679,-0.405,16.078,15.391,13.968,14.91,11.961,15.372,9.56,21.235,3.019,14.477,-3.319,21.481,15.447,15.172,10.317,17.779,2.601,-0.976,5.036,35.103,20.341,6.148,21.52,3.24,7.917,8.476,18.107,20.591,7.721,4.306,14.316,18.1,17.634,12.957,2.073,6.203,8.187,6.564,33.284,7.888,7.341,1.685],[14.594,20.594,18.809,4.039,12.694,13.214,3.807,5.699,20.356,-6.177,8.235,22.569,27.628,13.59,6.574,3.391,9.208,16.477,13.234,0.285,4.623,9.772,-2.563,22.891,8.791,4.295,23.641,21.659,23.807,16.272,3.884,19.087,-3.657,19.4,15.609,-7.278,8.371,10.879,19.243,15.009,-1.952,23.477,15.55,8.135,13.654,2.443,21.206,14.684,10.444,15.643,11.11,1.167,16.463,16.645,33.305,7.654,8.673,0.637,19.919,7.24,4.994,20.459,3.576,7.546,20.677,-7.954,20.471,2.977,21.528,11.796,27.749,7.226,14.475,4.415,2.17,9.2,21.74,4.642,7.458,16.374,11.962,7.318,18.659,13.758,17.506,13.277,13.397,23.1,5.235,-6.377,28.897,23.698,14.383,7.645,13.797,23.332,4.125,10.677,-3.09,8.677,4.46,18.03,11.313,8.213,0.34,8.308,22.315,4.876,4.716,24.177,16.158,9.603,-1.457,15.308,22.927,9.952,-3.203,3.342,22.296,6.39,23.438,25.25,2.621,22.58,18.038,-7.122,-2.326,17.362,-3.315,15.225,3.601,20.254,19.026,18.795,12.549,19.022,7.127,-8.406,16.277,17.224,23.756,13.081,6.678,19.524,9.98,25.031,10.747,9.16,0.987,-0.303,15.795,15.67,14.35,14.939,12.086,15.41,9.438,21.303,2.476,14.299,-3.032,21.066,15.507,15.427,10.545,17.715,2.427,-0.855,4.677,34.739,20.619,6.398,21.451,3.107,8.477,8.902,18.081,20.68,7.607,4.166,14.151,18.485,17.364,12.916,2.148,5.974,7.712,6.846,32.41,7.899,7.472,2.124],[14.378,20.671,18.844,3.97,12.639,13.083,3.464,5.669,20.53,-6.053,8.173,22.474,28.023,13.784,6.783,3.506,9.031,16.354,13.08,0.253,4.565,9.722,-2.095,22.804,8.882,4.339,23.449,21.752,23.692,16.37,3.884,19.055,-3.616,19.289,15.535,-7.171,8.214,10.823,19.223,15.091,-1.823,23.424,15.479,8.282,13.786,2.192,21.024,14.652,10.423,15.676,11.053,1.18,16.37,16.872,33.101,7.853,8.572,0.69,19.767,7.44,5.018,20.508,3.586,7.531,21.592,-7.707,20.834,2.488,21.653,11.813,27.593,7.409,14.194,4.147,2.324,9.561,21.799,5.069,7.749,16.212,12.18,7.378,18.505,13.586,17.907,12.883,13.39,22.554,5.139,-6.393,28.908,23.311,14.345,6.922,13.777,23.934,4.143,10.26,-2.966,8.61,4.698,18.157,11.253,8.579,0.403,8.518,22.288,4.938,4.546,23.888,16.452,9.482,-1.754,15.26,23.047,10.313,-2.992,2.953,22.627,6.132,23.702,25.161,2.608,22.512,18.105,-7.14,-2.45,17.334,-3.225,15.371,3.852,19.75,19.132,18.936,12.475,18.881,6.536,-8.869,15.913,17.333,23.72,13.946,6.956,19.286,9.548,24.982,10.88,8.354,0.531,-0.041,15.896,15.715,14.272,14.581,11.806,15.494,9.858,21.01,2.102,13.946,-2.891,21.183,15.991,15.886,10.598,17.774,2.271,-0.94,4.331,34.767,20.476,6.436,21.577,2.78,8.684,8.78,17.958,20.631,8.274,3.502,15.268,18.671,17.129,12.867,2.46,6.338,8.072,6.764,33.037,7.999,7.26,2.115],[14.283,20.748,18.9,3.906,12.682,12.902,3.218,5.674,20.557,-6.069,8.262,22.273,28.271,13.909,6.883,3.491,8.902,16.144,12.911,0.189,4.385,9.592,-1.84,22.695,9.07,4.525,23.315,21.891,23.708,16.449,3.895,19.0,-3.488,19.119,15.533,-7.074,7.968,10.747,19.155,15.182,-1.667,23.375,15.464,8.374,13.97,2.021,20.962,14.709,10.332,15.856,11.122,1.39,16.242,16.954,33.117,8.083,8.543,0.804,19.677,7.631,4.925,20.513,3.436,7.566,21.667,-7.712,21.372,2.631,21.69,12.16,27.219,7.572,13.684,4.159,2.205,9.249,21.75,4.934,7.863,16.087,12.623,7.438,18.291,13.388,17.676,13.03,12.991,22.576,4.942,-6.446,29.458,23.544,14.266,7.035,13.31,23.571,4.449,9.995,-2.93,8.496,4.334,17.93,11.09,9.214,0.802,8.39,22.01,4.863,4.668,24.097,16.047,9.699,-1.693,15.414,23.154,9.86,-2.609,2.363,22.641,5.891,23.785,25.068,2.738,22.012,18.248,-7.185,-2.71,17.095,-3.578,15.529,4.355,20.14,18.868,18.946,12.092,19.041,6.564,-8.713,15.518,17.245,23.602,14.209,6.731,19.396,9.112,25.056,11.137,8.394,0.472,0.078,16.212,15.104,13.837,14.585,11.591,15.279,9.966,21.726,2.08,14.151,-2.484,21.707,16.316,15.773,10.343,17.712,2.704,-0.926,4.893,34.867,20.557,6.429,21.823,2.927,8.172,8.422,17.784,20.329,8.448,3.611,15.962,18.772,17.071,12.953,2.328,6.419,8.541,6.72,32.843,7.717,6.948,1.712],[14.21,20.79,18.897,3.842,12.875,12.773,2.99,5.529,20.413,-6.199,8.365,22.177,28.438,14.006,6.891,3.478,8.825,15.926,12.75,0.213,4.165,9.359,-1.882,22.717,9.19,4.74,23.36,22.033,23.718,16.463,3.916,18.92,-3.36,19.002,15.51,-7.052,7.729,10.75,19.196,15.215,-1.555,23.327,15.458,8.224,14.064,2.105,21.204,14.776,10.277,16.127,11.122,1.618,16.17,17.066,33.074,8.319,8.62,0.917,19.65,7.636,4.942,20.413,3.309,7.562,20.886,-7.883,21.014,2.917,21.357,12.168,27.523,7.412,13.018,4.243,2.163,9.18,21.885,4.433,8.107,15.924,12.066,7.552,18.731,13.848,17.832,13.348,12.932,22.09,4.79,-6.301,29.813,23.875,14.487,7.617,13.131,22.816,4.439,10.298,-2.488,9.224,3.697,17.731,10.857,8.907,0.516,8.011,22.127,4.916,5.052,24.433,16.126,10.046,-1.613,15.663,23.479,10.053,-2.897,2.226,22.526,6.073,23.382,24.97,2.892,22.387,18.12,-7.005,-2.839,17.609,-3.31,15.485,4.193,20.254,18.17,18.74,12.152,19.056,6.909,-8.654,15.653,17.344,23.445,13.812,6.669,19.018,9.281,25.02,11.304,8.441,0.704,0.18,16.415,14.781,13.257,14.868,11.732,14.837,9.604,21.393,2.876,14.552,-1.904,21.622,16.117,15.749,10.419,17.541,2.859,-0.915,4.995,34.897,20.287,6.68,21.746,2.988,7.691,8.305,17.766,20.035,8.179,3.997,15.727,18.898,17.011,12.975,2.576,6.439,8.432,6.529,32.919,7.912,6.863,1.874],[13.996,20.814,18.976,3.916,13.144,12.683,2.965,5.375,20.033,-6.361,8.397,22.208,28.58,14.115,6.891,3.564,8.765,15.839,12.649,0.251,3.992,9.172,-1.96,22.586,9.363,4.904,23.606,22.154,23.693,16.596,3.88,18.861,-3.238,18.939,15.54,-7.133,7.708,10.906,19.268,15.152,-1.535,23.302,15.582,7.964,13.936,2.316,21.418,14.776,10.215,16.363,11.08,1.706,16.176,17.239,33.031,8.42,8.707,1.063,19.649,7.614,5.119,20.233,3.421,7.565,20.642,-8.127,20.522,2.602,21.041,12.343,27.483,6.998,12.646,4.134,1.605,9.769,21.719,4.446,8.039,15.739,11.595,7.512,18.257,13.784,18.147,13.651,13.221,22.268,4.591,-6.556,29.655,23.667,14.495,7.66,13.219,23.304,4.037,10.527,-2.675,8.802,3.504,17.697,10.768,8.181,0.139,7.647,22.198,5.014,4.857,24.251,15.879,9.512,-1.451,15.036,23.518,9.764,-3.165,2.197,22.315,5.659,23.668,25.045,3.132,22.197,17.233,-6.971,-2.783,18.097,-3.075,15.488,4.42,19.938,17.625,18.548,12.534,19.003,6.776,-8.228,15.638,17.21,23.539,13.723,6.699,18.749,9.631,24.976,10.666,7.482,0.589,0.223,16.156,14.853,13.192,14.397,11.807,15.194,9.579,21.453,3.403,14.554,-1.593,21.589,16.285,16.438,10.764,17.644,2.741,-0.513,4.232,34.826,20.583,6.676,21.106,2.95,8.547,8.842,17.88,20.112,7.918,3.856,15.281,18.977,16.933,12.9,3.012,6.371,8.385,6.853,33.005,8.193,6.984,2.103],[13.65,20.771,19.05,3.967,13.211,12.549,3.045,5.317,19.643,-6.568,8.464,22.386,28.439,14.218,6.883,3.578,8.659,15.845,12.67,0.322,3.762,8.987,-2.027,22.519,9.237,4.88,23.879,22.203,23.702,16.592,3.752,18.818,-3.077,18.885,15.688,-7.293,7.677,11.053,19.266,15.014,-1.612,23.281,15.582,7.823,13.755,2.559,21.49,14.706,9.974,16.532,11.205,1.72,16.181,17.378,33.037,8.458,8.779,1.208,19.715,7.805,5.286,19.967,3.654,7.734,21.001,-8.162,20.349,2.698,20.679,12.391,27.905,7.15,12.856,4.347,1.699,9.347,21.99,4.293,8.262,15.461,11.665,7.485,18.162,14.06,18.009,13.348,13.613,22.292,4.252,-6.86,29.956,23.08,14.805,7.277,12.993,23.548,4.202,10.255,-2.671,8.412,3.829,17.679,10.916,8.316,0.47,7.634,22.459,5.007,4.708,23.805,16.5,10.13,-1.546,14.923,23.325,9.11,-3.009,2.089,22.397,5.453,23.869,25.446,3.172,22.488,17.015,-6.838,-2.62,17.915,-3.642,15.217,4.563,19.499,17.78,18.401,12.916,19.03,6.502,-7.932,15.893,17.043,23.789,13.644,6.476,19.14,9.73,24.689,10.283,7.687,0.756,0.259,15.922,15.316,13.299,14.118,11.659,15.5,9.53,21.928,2.975,14.175,-1.776,21.84,16.54,16.601,10.366,17.751,2.799,-0.339,4.89,34.876,20.422,6.624,21.408,3.044,9.216,8.821,17.769,20.459,8.177,3.305,15.195,19.154,17.115,13.053,2.821,6.531,8.463,6.835,32.741,7.776,7.146,2.472],[13.435,20.831,18.99,3.994,13.028,12.324,3.16,5.271,19.47,-6.609,8.409,22.515,28.364,14.287,6.809,3.521,8.682,15.92,12.707,0.533,3.638,8.85,-1.863,22.571,8.904,4.745,24.016,22.133,23.918,16.512,3.671,18.794,-2.95,18.776,15.839,-7.527,7.77,11.252,19.194,14.785,-1.676,23.228,15.463,7.868,13.612,2.666,21.574,14.639,9.719,16.669,11.337,1.679,16.222,17.528,33.08,8.558,8.824,1.241,19.776,8.032,5.434,19.895,3.775,7.776,21.271,-8.195,20.37,2.92,20.524,12.371,27.816,7.191,12.431,4.314,2.032,9.85,22.039,4.143,8.535,15.212,11.634,7.534,18.659,14.095,18.052,12.693,13.777,22.01,4.278,-6.821,29.415,23.511,14.791,7.167,13.072,23.281,4.848,9.758,-2.741,8.625,3.975,17.75,10.777,8.663,0.776,7.694,22.32,4.749,4.635,23.987,16.558,10.058,-1.392,15.741,23.58,9.089,-2.837,2.058,22.689,5.334,23.794,25.312,3.197,22.72,17.757,-6.913,-2.562,17.775,-3.747,15.276,3.989,18.842,18.379,18.342,12.741,19.126,6.438,-7.724,15.784,16.901,23.754,13.692,6.247,19.522,9.99,24.819,10.699,8.103,1.132,0.153,15.959,15.207,13.528,14.283,11.303,15.313,9.176,21.194,2.142,13.562,-1.857,21.56,16.957,16.446,10.311,17.664,2.994,-0.12,5.594,34.735,19.787,6.784,21.022,3.434,8.626,8.449,17.892,20.572,8.503,3.262,15.017,19.341,16.943,13.154,2.458,7.045,8.564,7.177,32.818,8.081,7.12,2.75],[13.243,20.923,19.107,4.008,12.672,12.157,3.26,4.973,19.436,-6.427,8.42,22.553,28.271,14.311,6.751,3.583,8.613,16.072,12.664,0.791,3.623,8.767,-1.634,22.646,8.58,4.767,24.033,22.221,24.1,16.493,3.605,18.854,-2.921,18.541,15.852,-7.755,8.014,11.508,19.148,14.485,-1.616,23.218,15.394,7.946,13.39,2.593,21.477,14.619,9.795,16.756,11.475,1.616,16.147,17.706,33.191,8.64,8.868,1.367,19.633,8.189,5.655,19.854,3.784,7.683,21.382,-8.236,20.085,2.648,20.865,12.588,27.476,6.796,12.064,4.27,2.197,9.816,22.2,4.274,8.49,14.947,11.715,7.47,18.223,13.359,17.949,12.953,13.216,22.418,4.832,-6.555,29.163,23.421,14.292,7.235,13.507,23.157,4.509,9.869,-2.304,8.629,3.855,17.893,10.78,8.571,0.852,7.473,22.486,4.476,4.432,24.292,16.305,9.291,-0.907,15.657,23.267,9.76,-2.584,2.256,22.264,5.284,23.879,25.332,2.996,22.667,18.319,-7.431,-1.987,18.066,-3.34,15.709,4.109,18.621,18.238,18.56,12.642,18.863,6.496,-7.875,15.866,16.788,23.283,13.791,6.269,19.143,10.193,24.781,10.691,7.926,1.484,0.094,15.805,14.365,13.451,14.051,10.98,15.067,9.16,21.952,1.557,13.479,-1.435,21.646,16.927,16.134,10.631,17.397,2.97,-0.132,5.532,35.093,20.191,7.352,21.089,3.511,8.144,8.172,17.975,20.559,8.394,4.029,15.272,19.497,17.115,13.207,2.229,6.857,8.569,7.221,33.02,8.729,7.193,2.418],[13.188,21.136,19.274,3.941,12.414,12.119,3.417,4.671,19.485,-6.267,8.491,22.606,28.101,14.266,6.757,3.682,8.303,16.153,12.712,0.919,3.708,8.761,-1.284,22.741,8.309,4.805,23.925,22.318,24.155,16.692,3.651,18.932,-2.874,18.35,15.726,-8.018,8.158,11.51,19.03,14.257,-1.444,23.152,15.329,7.922,13.207,2.519,21.437,14.619,9.884,16.731,11.602,1.534,16.141,17.633,33.403,8.574,8.924,1.478,19.563,8.213,5.763,19.918,3.763,7.554,21.007,-7.936,20.281,2.894,20.326,12.345,27.643,6.461,11.699,4.439,2.569,9.192,21.936,4.122,8.603,14.651,12.271,7.139,18.496,12.848,18.266,12.773,12.591,22.292,5.124,-6.344,29.662,23.196,14.358,7.343,13.402,23.386,3.825,9.859,-2.159,8.021,3.581,18.022,11.017,8.296,1.311,7.349,22.724,4.98,4.439,24.194,15.915,8.925,-0.977,15.245,23.596,9.837,-2.473,2.667,22.03,5.208,24.199,25.83,3.228,22.422,18.437,-7.269,-1.814,17.955,-3.057,15.883,3.807,18.643,18.347,18.226,12.974,19.02,6.479,-8.237,16.3,16.772,23.463,13.158,6.543,18.85,10.367,24.731,10.721,8.374,1.108,0.274,15.696,14.483,13.446,14.025,11.021,14.678,9.658,21.698,1.523,13.781,-1.231,21.856,16.777,16.091,10.689,17.121,2.757,0.325,5.605,35.312,19.835,7.245,21.071,3.638,8.466,8.468,17.636,20.049,8.161,4.547,15.488,19.396,17.538,13.333,2.737,6.866,8.883,7.217,33.027,8.181,7.182,2.09],[13.136,21.308,19.505,3.826,12.437,12.213,3.668,4.469,19.509,-6.21,8.483,22.532,28.159,14.13,6.772,3.694,7.973,16.099,12.782,1.016,3.853,8.753,-1.197,22.782,8.026,4.805,23.879,22.283,24.233,16.918,3.819,19.021,-2.813,18.307,15.63,-8.216,8.15,11.365,18.883,14.36,-1.258,23.127,15.251,7.787,13.027,2.593,21.349,14.648,9.854,16.673,11.612,1.682,16.221,17.376,33.375,8.445,8.955,1.527,19.501,8.155,5.784,19.956,3.746,7.514,21.164,-7.965,20.782,3.272,20.165,12.348,27.241,6.405,11.608,4.505,2.963,9.589,22.084,3.759,8.778,14.736,11.901,6.837,19.398,13.273,18.04,12.957,12.422,22.273,5.334,-6.447,29.176,23.508,14.73,7.737,13.485,23.47,4.156,9.521,-1.991,7.807,3.161,17.895,10.857,8.059,1.158,7.632,22.863,5.405,4.283,24.254,16.662,8.697,-0.882,15.489,23.928,9.149,-2.336,2.884,22.39,5.353,23.883,25.802,3.429,22.266,17.707,-7.307,-1.915,17.953,-2.996,16.254,3.394,18.583,18.273,17.73,13.171,19.315,6.262,-8.35,16.259,16.7,23.449,12.719,6.624,18.764,10.816,24.856,11.158,8.599,1.09,0.439,15.531,14.681,12.924,14.45,11.171,14.671,9.491,21.493,1.88,14.35,-1.636,22.226,16.943,15.915,10.915,16.941,2.311,0.565,5.32,34.685,19.889,7.032,20.956,3.764,8.33,8.7,17.709,20.226,7.673,4.556,15.589,19.202,17.694,13.018,3.091,7.043,8.965,7.581,33.559,7.686,7.393,2.371],[13.174,21.525,19.729,3.785,12.714,12.335,3.849,4.398,19.559,-6.301,8.569,22.516,28.216,14.077,6.885,3.651,7.784,15.939,12.844,1.143,3.919,8.713,-1.298,22.753,7.796,4.805,23.878,22.22,24.207,17.07,4.011,19.132,-2.706,18.285,15.642,-8.326,8.008,11.274,18.754,14.556,-1.197,23.244,15.332,7.601,12.922,2.882,21.247,14.581,9.924,16.557,11.571,1.992,16.237,17.181,33.257,8.277,8.961,1.554,19.563,8.048,5.77,19.984,3.712,7.608,21.694,-8.092,20.441,2.927,20.594,12.189,28.042,6.045,11.824,4.479,3.371,9.8,22.437,3.503,8.8,14.474,11.286,6.399,19.366,13.615,18.205,13.045,12.576,21.986,5.567,-6.44,29.149,23.495,14.59,7.874,13.002,23.415,4.487,9.111,-2.129,7.743,2.992,17.734,11.072,7.815,0.82,7.965,22.708,4.895,4.147,24.341,16.775,8.6,-0.53,15.692,23.66,9.062,-2.671,3.06,22.499,5.531,23.565,25.636,3.236,22.409,17.286,-7.69,-2.158,18.112,-3.37,16.256,3.5,18.823,18.171,18.106,13.06,18.95,6.153,-8.299,15.847,16.857,23.34,12.274,6.056,19.045,10.327,24.811,11.035,8.341,1.546,0.687,15.199,14.912,13.005,14.35,10.795,14.729,9.093,21.76,2.335,14.038,-1.557,22.18,16.389,16.24,10.824,16.774,2.711,0.661,4.916,35.02,20.034,6.909,20.962,3.771,8.207,8.549,17.781,20.389,7.821,4.251,15.085,18.988,17.779,13.23,3.326,7.094,8.633,7.457,33.267,7.748,7.48,2.454],[13.28,21.86,19.733,3.824,12.93,12.353,4.034,4.326,19.642,-6.366,8.731,22.54,28.356,14.082,7.049,3.582,7.76,15.773,12.861,1.267,3.793,8.671,-1.322,22.598,7.764,4.723,23.927,22.026,24.016,17.0,4.194,19.227,-2.76,18.379,15.743,-8.478,7.891,11.062,18.514,14.651,-1.254,23.419,15.482,7.404,12.84,3.066,21.24,14.465,9.927,16.427,11.543,2.398,16.186,17.013,33.086,8.291,8.905,1.578,19.685,7.954,5.626,20.051,3.618,7.754,21.827,-8.039,20.116,2.806,20.552,12.185,27.781,6.182,11.692,4.606,3.159,9.66,22.546,3.637,8.894,14.677,11.461,5.769,18.541,13.657,19.039,12.71,12.665,21.725,5.634,-6.569,28.904,23.379,14.474,7.689,12.948,23.71,4.455,9.214,-2.238,7.555,3.602,17.507,11.021,7.567,1.31,7.939,22.517,4.589,4.357,23.941,16.589,8.665,-0.605,15.617,23.653,9.983,-2.453,3.151,22.372,5.172,23.888,25.547,3.242,22.408,18.138,-7.479,-1.887,18.174,-2.868,15.468,3.806,18.457,18.293,18.577,12.819,18.799,6.171,-8.526,15.915,16.822,23.558,12.221,5.826,19.296,9.934,24.84,11.142,8.273,1.858,0.512,15.873,15.1,13.259,14.217,10.745,14.69,8.873,21.527,2.738,13.588,-1.128,21.647,15.771,16.36,10.286,16.945,3.563,0.443,5.46,34.942,20.039,6.927,20.775,4.01,8.196,8.852,17.806,20.44,8.067,4.295,15.001,18.696,17.778,13.031,3.521,6.948,8.718,7.17,32.613,8.284,7.324,2.076],[13.306,22.265,19.66,3.959,12.934,12.347,4.072,4.41,19.664,-6.314,8.865,22.59,28.321,14.076,7.124,3.545,7.82,15.604,12.685,1.33,3.639,8.704,-1.229,22.392,7.813,4.626,23.961,21.851,23.871,16.869,4.349,19.258,-2.84,18.661,15.885,-8.63,7.879,10.779,18.317,14.78,-1.281,23.612,15.494,7.255,12.853,3.154,21.186,14.417,9.946,16.401,11.402,2.902,16.178,16.868,32.823,8.558,8.855,1.471,19.659,7.957,5.494,20.077,3.589,7.923,21.76,-7.871,20.704,3.059,20.482,12.313,27.626,6.218,11.585,4.247,2.631,9.793,22.78,3.696,8.942,14.476,11.443,5.589,18.833,13.774,18.984,13.555,12.232,21.858,5.633,-6.987,29.618,23.289,14.666,7.523,13.315,23.569,4.458,9.394,-2.058,7.747,3.913,17.36,10.828,7.715,1.233,7.783,22.489,4.594,4.2,23.382,16.766,8.841,-0.575,15.345,23.327,10.09,-2.37,3.203,21.977,5.144,24.173,25.236,3.145,22.756,18.39,-7.98,-1.659,18.063,-2.84,14.94,3.758,18.186,18.644,18.067,12.548,18.461,6.119,-8.468,16.048,16.843,24.097,12.183,6.004,18.533,9.906,24.882,11.075,8.476,1.73,0.511,16.391,15.256,13.479,14.671,11.141,14.707,8.851,21.511,2.321,13.286,-1.321,21.32,15.843,15.669,10.041,17.199,4.135,0.417,5.371,34.407,20.061,7.1,21.343,3.67,8.099,8.821,18.034,20.377,7.553,4.575,15.057,18.593,17.482,12.854,3.7,6.485,9.205,7.258,32.873,8.665,7.149,2.161],[13.35,22.641,19.764,3.995,12.982,12.256,3.891,4.587,19.79,-6.231,9.002,22.618,28.23,14.036,7.058,3.52,8.005,15.454,12.31,1.232,3.621,8.766,-1.124,22.158,8.027,4.484,23.987,21.724,23.878,16.647,4.306,19.139,-2.879,18.888,15.905,-8.757,7.977,10.548,18.08,15.001,-1.27,23.794,15.464,7.306,12.89,2.986,20.978,14.499,10.07,16.381,11.161,3.315,16.249,16.688,32.709,8.632,8.949,1.354,19.58,8.04,5.39,20.232,3.548,8.002,22.057,-7.942,21.014,3.402,20.222,12.113,27.908,6.434,11.513,4.387,2.784,9.946,22.749,3.869,8.992,13.763,11.546,5.851,19.284,13.645,18.351,13.256,12.326,22.508,5.659,-6.64,29.545,23.126,14.7,7.778,13.123,23.639,4.734,9.489,-1.882,7.473,3.927,17.142,10.491,8.232,0.926,7.556,22.204,4.521,4.078,23.053,16.965,8.489,-0.595,14.9,23.246,9.331,-2.495,3.189,21.81,5.285,24.042,25.275,3.005,23.078,18.247,-8.043,-1.843,18.392,-3.291,15.521,4.155,18.595,18.85,18.28,11.906,18.35,6.28,-8.655,16.352,17.093,24.026,12.445,6.237,18.292,9.739,25.309,11.04,8.574,1.836,0.539,16.054,14.992,13.137,14.835,11.356,14.749,9.101,21.962,2.331,13.385,-1.934,21.704,16.057,15.472,10.276,17.276,4.145,0.121,4.424,34.418,19.896,6.811,21.409,3.458,8.768,8.634,17.651,20.524,8.124,4.587,15.159,18.57,17.251,13.048,4.174,7.022,9.549,6.992,32.975,8.537,7.203,2.36],[13.401,22.94,19.869,4.001,12.916,12.146,3.833,4.837,19.919,-6.17,9.12,22.49,28.147,13.895,6.898,3.587,8.376,15.267,11.962,1.066,3.82,8.692,-1.055,22.08,8.09,4.417,24.006,21.645,23.891,16.528,4.238,19.117,-2.965,19.107,15.933,-8.845,8.023,10.379,17.871,15.067,-1.38,23.794,15.522,7.605,12.958,2.804,20.91,14.459,10.215,16.422,10.993,3.398,16.371,16.665,32.8,8.66,9.126,1.307,19.531,8.124,5.213,20.344,3.386,8.073,22.191,-7.685,21.112,3.135,20.5,12.065,27.468,6.654,11.666,4.76,2.903,10.008,23.016,3.935,9.129,13.528,11.878,6.379,19.115,13.606,18.724,13.167,12.762,23.072,5.458,-6.6,29.05,23.751,14.69,8.283,12.403,23.435,4.648,9.488,-2.086,7.689,3.742,16.92,10.071,8.469,1.148,7.789,22.385,4.306,4.173,23.095,16.049,8.881,-0.703,15.009,23.29,9.628,-2.341,2.784,21.99,5.394,23.805,25.287,2.854,22.569,17.859,-7.858,-2.044,17.999,-3.087,16.483,4.491,18.646,18.332,18.955,11.801,18.593,6.266,-8.926,16.213,17.02,23.866,12.318,6.299,18.516,9.367,25.343,11.301,8.825,1.634,0.382,15.852,15.319,13.07,14.513,11.086,14.829,9.266,21.388,2.357,13.869,-1.87,21.189,15.641,16.113,10.186,17.665,4.015,-0.051,4.556,34.408,20.341,6.719,21.407,3.527,8.147,8.562,17.666,20.34,7.741,4.323,15.286,18.242,17.476,12.736,4.671,7.413,9.585,6.976,32.583,7.923,7.151,2.283],[13.466,23.14,19.684,4.01,12.749,12.133,3.698,5.176,20.049,-6.067,9.162,22.517,27.979,13.847,6.758,3.584,8.612,15.124,11.644,1.085,4.196,8.68,-1.131,22.155,8.021,4.417,23.83,21.706,23.896,16.384,4.261,18.998,-3.054,19.37,16.12,-8.997,8.018,10.436,17.9,15.199,-1.632,23.633,15.534,7.995,12.885,2.744,20.745,14.424,10.246,16.513,10.907,3.327,16.609,16.583,32.893,8.578,9.146,1.422,19.633,8.068,5.174,20.422,3.177,8.022,22.315,-7.545,20.943,2.822,21.021,12.006,27.988,6.948,11.573,4.319,3.142,9.793,23.732,4.198,9.255,13.733,11.589,6.813,18.853,13.948,19.295,13.114,12.95,22.798,5.437,-7.029,29.154,23.714,14.388,8.299,11.856,23.413,4.315,10.022,-2.251,8.056,3.622,16.836,9.993,8.578,1.229,7.772,22.67,4.631,4.213,23.166,15.716,8.846,-0.71,14.932,23.46,9.798,-2.0,2.65,21.718,5.526,23.914,25.356,3.08,22.313,17.345,-8.02,-2.183,18.07,-3.471,16.138,4.141,18.815,17.975,19.633,12.208,18.451,6.039,-9.083,16.271,17.127,24.094,12.612,6.452,18.293,9.702,24.985,11.932,8.174,1.189,0.129,15.572,15.449,12.777,14.252,10.827,14.805,9.439,21.182,2.101,14.144,-1.614,20.922,15.477,16.254,9.679,17.919,3.511,-0.433,4.865,34.548,20.517,6.852,21.921,3.194,8.196,9.249,17.884,20.019,7.873,4.296,15.63,18.488,17.632,12.781,4.185,6.845,9.335,6.878,32.606,8.308,7.343,2.271],[13.481,23.285,19.484,3.895,12.782,12.256,3.648,5.447,20.061,-6.08,9.041,22.71,28.059,13.863,6.648,3.52,8.62,15.057,11.425,1.146,4.389,8.73,-1.299,22.343,7.945,4.44,23.677,21.845,23.963,16.114,4.335,18.858,-3.203,19.728,16.34,-9.209,7.77,10.695,18.046,15.326,-1.903,23.525,15.49,8.235,12.832,2.694,20.497,14.398,10.379,16.57,11.016,2.943,16.802,16.524,32.999,8.522,9.043,1.518,19.766,7.894,5.171,20.498,3.042,8.09,22.268,-7.458,21.307,2.865,20.978,11.977,27.253,7.342,11.615,4.299,3.036,9.846,23.734,4.792,9.342,13.839,10.864,6.951,18.595,13.424,18.544,13.092,12.896,22.041,5.368,-7.041,29.018,23.905,14.512,8.282,11.179,23.499,4.159,10.271,-2.364,8.001,4.02,16.817,9.738,8.854,1.297,7.585,22.508,5.119,4.124,23.647,16.206,8.825,-0.844,14.494,23.437,9.449,-2.359,2.732,21.927,5.749,23.493,25.584,2.887,22.475,16.955,-8.369,-2.031,18.492,-3.501,15.382,4.257,19.1,18.055,19.995,12.603,18.166,6.155,-9.316,16.792,17.217,24.347,12.704,6.903,18.432,10.193,24.996,12.066,7.36,1.306,-0.106,15.784,15.267,12.731,14.335,10.669,14.621,9.945,21.092,2.53,14.078,-1.962,21.37,15.979,15.71,9.869,17.889,3.823,-0.212,4.522,34.575,20.527,7.219,21.621,3.423,9.17,9.232,17.781,20.179,8.084,3.929,15.683,18.26,17.638,12.633,3.606,6.532,9.037,6.817,33.262,8.599,7.493,2.378],[13.409,23.318,19.279,3.794,12.947,12.366,3.567,5.62,20.166,-6.181,8.913,22.878,28.104,13.935,6.587,3.626,8.633,14.996,11.143,1.153,4.388,8.776,-1.555,22.626,8.021,4.295,23.655,21.87,24.0,15.907,4.397,18.843,-3.337,20.101,16.37,-9.391,7.447,10.961,18.16,15.381,-2.009,23.511,15.492,8.261,12.861,2.753,20.381,14.33,10.563,16.54,11.215,2.524,16.799,16.485,33.179,8.674,8.95,1.611,19.738,7.878,5.142,20.454,2.929,8.251,22.043,-7.544,21.516,3.395,20.789,12.119,27.313,7.441,11.734,4.334,2.904,10.01,23.289,5.108,9.063,13.975,11.289,7.092,18.754,13.748,18.031,13.626,13.402,21.745,5.361,-6.784,29.304,23.785,14.676,8.064,11.287,23.687,3.993,10.172,-2.176,7.915,4.158,16.724,9.79,8.515,1.2,7.459,22.723,4.673,4.61,23.839,15.516,9.024,-0.616,14.554,23.586,9.366,-3.068,2.972,21.969,5.964,23.801,25.485,2.545,22.291,16.663,-8.783,-1.849,18.737,-3.245,15.425,4.669,19.466,17.928,19.878,12.752,18.65,5.68,-9.17,16.907,17.049,24.055,12.453,7.251,18.405,9.709,25.19,12.192,7.488,1.154,-0.181,16.294,15.072,12.657,14.632,10.953,14.706,10.086,20.619,2.349,14.104,-2.382,20.97,15.721,15.912,10.365,18.005,3.809,-0.087,4.196,34.505,20.683,6.803,21.651,3.129,8.257,8.541,18.011,20.32,8.384,3.828,15.398,18.399,17.819,13.095,3.516,6.686,8.971,7.017,33.022,8.538,7.124,2.583],[13.392,23.229,19.175,3.871,13.313,12.54,3.565,5.872,20.313,-6.228,8.811,23.0,28.111,14.049,6.536,3.763,8.467,14.946,10.864,1.128,4.278,8.84,-1.853,22.764,8.191,4.255,23.649,21.689,24.114,15.694,4.449,18.772,-3.372,20.455,16.26,-9.513,7.315,11.021,18.274,15.47,-2.015,23.598,15.508,8.284,13.013,2.624,20.169,14.236,10.681,16.543,11.532,2.333,16.744,16.456,33.294,8.85,8.816,1.673,19.655,7.839,4.991,20.331,2.831,8.223,22.334,-7.706,21.689,3.4,21.109,12.196,28.027,7.663,11.67,3.916,2.653,9.937,23.133,4.794,8.935,13.537,12.161,7.219,18.732,14.381,18.324,13.6,13.875,21.829,5.326,-7.168,29.5,23.599,14.439,7.959,11.533,23.919,3.935,9.979,-2.898,8.106,4.117,16.772,9.286,8.59,1.304,7.555,22.745,4.539,4.444,24.152,15.879,9.035,-0.7,14.764,23.494,9.517,-2.851,3.064,21.579,5.891,23.915,25.574,2.669,22.017,16.701,-8.395,-1.929,18.945,-3.591,15.879,5.138,19.577,18.337,19.702,12.616,18.563,5.375,-9.292,16.197,17.292,23.793,12.392,6.896,18.365,9.875,25.119,12.188,7.828,1.116,-0.187,16.635,15.011,12.974,14.495,11.272,14.987,9.946,20.703,2.049,13.747,-2.595,21.089,15.275,16.039,10.606,18.164,3.423,0.041,4.57,34.822,20.375,6.487,21.648,2.614,8.391,9.226,17.689,20.148,8.222,3.556,15.228,18.135,17.611,13.231,3.189,6.775,8.905,6.734,32.535,9.079,7.016,2.723],[13.379,23.184,19.221,3.983,13.831,12.748,3.752,6.048,20.447,-6.292,8.749,23.022,28.288,14.045,6.564,3.829,8.285,14.983,10.664,1.03,4.113,8.954,-1.972,22.814,8.358,4.377,23.54,21.195,24.264,15.748,4.536,18.718,-3.405,20.574,16.086,-9.368,7.408,10.894,18.246,15.605,-2.178,23.619,15.659,8.323,13.195,2.251,20.047,14.184,10.749,16.668,11.748,2.27,16.669,16.357,33.157,8.855,8.688,1.698,19.421,7.69,4.811,20.162,2.766,8.355,21.893,-7.666,21.563,2.7,21.414,12.107,27.505,7.875,11.454,4.095,2.536,9.846,23.593,5.218,9.073,13.702,12.219,7.154,18.418,13.802,18.423,13.497,14.393,22.758,5.337,-7.347,29.185,23.351,14.508,7.408,11.074,23.787,4.33,9.851,-3.076,8.387,4.326,16.722,9.03,8.568,1.521,7.881,22.739,5.154,4.508,24.086,15.777,9.527,-0.752,14.717,23.018,9.725,-2.952,3.112,21.338,5.69,23.646,25.626,2.79,22.463,17.387,-8.334,-2.177,19.013,-3.676,15.719,5.269,19.551,18.791,19.979,12.334,18.504,5.649,-9.697,16.393,17.088,23.591,12.588,6.649,18.651,9.763,25.419,12.22,7.74,0.696,-0.302,16.732,15.204,12.833,14.54,11.618,14.949,9.649,20.577,2.36,13.443,-2.402,20.764,15.606,15.881,10.713,17.856,3.108,-0.007,4.613,34.811,19.978,6.606,21.684,2.805,9.185,9.383,17.588,20.123,8.169,3.21,15.367,18.146,17.302,13.505,3.468,6.474,8.6,6.715,33.174,9.047,7.278,2.709],[13.442,23.134,19.216,3.924,14.115,12.974,3.883,6.227,20.509,-6.329,8.801,22.96,28.292,13.809,6.575,4.096,8.273,14.995,10.474,0.974,4.031,9.081,-2.072,22.799,8.642,4.522,23.45,20.774,24.406,16.061,4.655,18.773,-3.463,20.492,15.932,-9.221,7.438,10.719,18.234,15.688,-2.367,23.553,15.83,8.347,13.23,2.033,19.896,14.019,10.91,16.832,11.796,2.147,16.574,16.266,33.009,8.745,8.77,1.651,19.173,7.507,4.761,20.144,2.758,8.455,21.909,-7.43,21.493,2.699,21.658,12.114,28.026,8.109,11.49,4.314,3.073,9.75,23.214,5.607,8.91,13.985,12.134,7.223,18.544,14.401,18.381,14.027,14.466,23.621,5.497,-7.255,29.317,23.812,14.842,7.079,10.916,23.77,4.393,9.638,-2.715,8.524,4.445,16.801,9.303,8.093,1.296,8.267,22.841,5.48,5.08,24.085,15.649,9.322,-0.865,14.749,22.425,10.036,-3.461,2.885,21.026,5.517,23.942,25.768,2.904,22.321,17.226,-8.595,-2.265,18.48,-3.498,15.183,5.025,19.226,19.021,20.315,12.519,18.591,5.507,-9.312,16.713,17.426,23.537,12.607,6.62,18.57,9.431,25.128,12.616,8.215,0.286,-0.593,16.582,15.91,12.708,14.499,11.574,15.124,9.583,20.155,2.085,13.777,-2.587,20.971,15.566,16.142,10.865,17.466,3.083,-0.213,3.855,34.623,20.001,6.605,21.266,2.863,8.732,9.353,17.406,19.822,8.985,3.281,15.444,18.239,17.718,13.59,3.553,6.294,8.34,6.56,32.985,8.892,7.118,2.826],[13.592,22.995,19.204,3.74,14.277,13.116,4.007,6.481,20.542,-6.23,8.885,22.954,28.255,13.655,6.629,4.344,8.266,15.041,10.272,0.923,4.034,9.357,-2.29,22.883,8.865,4.713,23.448,20.594,24.512,16.358,4.64,18.882,-3.454,20.288,15.902,-9.249,7.437,10.559,18.233,15.827,-2.544,23.358,15.981,8.487,13.219,1.94,19.775,13.899,11.132,17.049,11.649,1.937,16.593,16.112,32.848,8.709,8.812,1.601,18.975,7.337,4.68,20.118,2.742,8.423,22.013,-7.511,21.503,3.348,21.897,11.773,27.75,8.238,11.77,4.073,3.6,10.073,23.167,5.392,8.778,13.6,12.351,7.178,18.718,15.084,18.008,14.56,14.371,23.57,5.7,-7.325,29.562,24.334,14.654,7.066,11.252,23.783,4.863,9.759,-3.036,8.663,4.112,16.966,9.374,8.351,0.759,8.858,23.17,5.687,5.261,24.453,16.076,9.49,-0.888,14.354,22.376,9.856,-3.184,2.953,20.516,5.622,23.945,26.04,3.135,21.796,16.911,-8.292,-1.985,17.851,-3.473,15.217,4.977,19.114,18.985,20.529,12.272,18.556,5.61,-8.852,16.251,17.731,23.772,12.821,6.783,18.484,9.467,24.669,12.842,7.958,0.799,-0.667,16.188,15.887,12.307,14.918,11.074,15.071,9.603,20.219,1.63,13.951,-2.728,20.926,14.989,16.635,10.931,17.438,2.953,-0.214,4.1,34.433,19.972,6.055,21.138,2.605,7.932,9.857,17.068,19.411,8.808,3.554,15.521,17.926,17.82,13.419,2.785,6.555,8.596,6.518,32.424,9.039,7.182,2.633],[13.673,22.897,19.179,3.701,14.404,13.149,4.106,6.538,20.668,-6.199,9.006,22.988,28.133,13.535,6.692,4.604,8.348,15.076,10.126,0.82,4.02,9.76,-2.58,23.144,9.039,4.877,23.53,20.536,24.563,16.37,4.596,19.013,-3.455,20.262,15.929,-9.323,7.44,10.576,18.26,15.959,-2.554,23.159,16.173,8.577,13.223,2.01,19.819,13.787,11.239,17.268,11.418,1.566,16.652,15.877,32.676,8.658,8.736,1.552,18.752,7.191,4.609,20.022,2.714,8.496,21.497,-7.205,21.471,2.852,21.99,11.625,27.744,8.425,11.988,3.645,3.299,10.273,23.437,5.748,8.806,13.664,12.778,7.332,18.607,14.402,18.231,14.706,14.002,22.838,5.886,-7.473,29.402,24.581,14.357,7.254,11.579,23.543,5.195,10.106,-3.42,8.928,4.36,16.776,9.129,8.551,0.758,9.445,23.042,5.81,5.415,24.634,16.658,9.724,-0.915,14.365,22.254,10.16,-3.045,3.204,20.528,5.377,23.559,25.97,3.165,22.264,17.526,-8.47,-1.799,17.704,-3.411,15.752,5.257,19.084,18.961,20.367,11.963,18.78,5.566,-9.412,16.499,17.505,23.901,12.519,6.861,18.835,9.284,24.641,12.885,7.575,0.873,-0.825,16.051,15.5,12.268,15.336,11.594,14.964,9.871,20.143,1.176,13.56,-3.19,20.072,14.728,16.68,10.47,18.108,2.743,-0.263,4.402,34.297,20.072,6.085,21.169,2.233,8.125,9.708,16.959,19.32,8.54,3.468,15.786,17.355,17.345,13.316,2.78,6.197,8.904,6.48,32.506,8.967,7.477,2.023],[13.714,22.893,19.186,3.707,14.449,13.179,4.071,6.516,20.888,-6.261,9.166,22.925,28.012,13.374,6.745,4.853,8.529,15.01,10.09,0.661,3.949,10.111,-2.769,23.345,9.186,4.965,23.75,20.521,24.419,16.233,4.723,19.125,-3.526,20.425,16.072,-9.508,7.324,10.715,18.389,16.039,-2.606,23.098,16.343,8.529,13.242,2.032,19.742,13.619,11.251,17.295,11.287,1.314,16.723,15.528,32.632,8.657,8.736,1.393,18.601,7.092,4.57,20.151,2.624,8.616,21.96,-7.015,21.696,2.388,21.632,11.613,27.536,8.294,11.838,3.952,3.347,9.783,22.621,6.003,8.886,13.724,12.585,7.494,18.542,13.816,18.394,14.57,13.889,22.689,5.895,-7.4,29.407,24.725,14.384,7.565,11.605,23.742,5.413,10.221,-3.724,8.942,4.626,16.749,9.016,8.645,1.245,10.009,22.911,6.018,5.487,24.949,16.474,9.436,-1.24,14.785,22.106,10.862,-3.956,3.064,20.886,5.287,23.812,25.814,3.303,22.484,17.962,-8.764,-1.926,18.343,-3.3,16.075,5.083,19.382,19.451,20.45,11.927,18.811,5.638,-10.032,16.281,17.557,23.435,11.973,6.833,18.614,9.28,24.784,12.719,8.003,0.574,-0.683,16.4,15.263,12.552,15.291,12.257,14.95,9.8,20.246,1.464,13.342,-3.122,20.74,14.354,16.492,10.421,18.203,1.949,-0.228,4.08,34.178,19.501,6.369,21.294,2.384,8.755,9.359,16.798,19.529,8.606,3.207,15.973,17.356,17.473,13.035,2.508,5.721,8.371,6.17,32.551,8.913,7.155,2.455],[13.682,23.017,19.22,3.805,14.429,13.123,3.973,6.509,21.023,-6.255,9.215,22.841,27.955,13.268,6.764,5.018,8.837,14.909,10.164,0.585,3.902,10.465,-2.926,23.518,9.237,4.953,23.992,20.451,24.242,16.041,4.729,19.329,-3.535,20.57,16.253,-9.834,7.27,10.833,18.399,16.06,-2.685,23.131,16.441,8.397,13.245,1.944,19.975,13.576,11.243,17.274,11.276,1.085,16.687,15.224,32.621,8.781,8.636,1.43,18.407,7.034,4.478,20.333,2.462,8.708,21.665,-7.363,21.841,2.661,21.692,11.538,27.733,8.308,11.793,4.115,2.881,10.06,22.95,5.484,8.963,13.772,12.283,7.64,18.985,14.147,17.909,14.144,14.212,22.567,5.677,-7.512,29.41,24.664,14.432,8.054,11.348,24.601,5.556,10.028,-3.571,8.84,4.607,16.803,8.787,8.825,0.904,10.389,22.549,6.347,5.263,24.865,16.308,9.531,-1.348,14.521,21.944,10.708,-3.813,3.011,20.977,5.274,24.305,25.426,3.214,22.544,17.41,-9.456,-2.343,18.717,-3.208,15.93,5.378,19.452,20.082,20.389,12.473,18.783,5.616,-9.752,16.112,18.079,23.038,11.865,6.554,18.559,9.622,24.832,12.693,8.019,0.3,-0.899,16.994,15.571,12.46,15.245,11.99,14.795,9.189,19.897,1.845,13.544,-2.563,21.138,14.282,16.413,10.693,17.445,1.745,-0.293,3.977,33.964,19.34,5.82,21.322,2.585,8.67,9.72,16.649,19.262,8.767,2.987,15.93,16.986,17.909,13.134,2.648,6.214,8.182,6.168,32.696,8.81,7.217,2.784],[13.603,23.103,19.283,3.901,14.398,12.956,3.854,6.492,21.047,-6.269,9.198,22.722,27.879,13.226,6.83,5.074,8.976,14.902,10.22,0.553,3.913,10.746,-2.969,23.747,9.324,4.874,24.134,20.31,24.052,15.78,4.692,19.636,-3.431,20.599,16.25,-10.205,7.198,10.985,18.256,16.159,-2.776,23.162,16.552,8.207,13.198,1.88,20.255,13.735,11.162,17.267,11.462,1.114,16.477,14.911,32.535,8.882,8.527,1.571,18.17,7.075,4.382,20.4,2.272,8.789,22.012,-7.472,21.981,2.884,22.321,11.532,27.596,8.244,11.767,3.891,2.494,10.271,23.821,5.494,8.884,13.734,12.594,7.408,18.57,14.305,18.212,14.16,14.606,22.877,5.321,-7.445,29.394,24.205,14.293,8.248,11.134,24.349,5.786,10.646,-4.029,9.079,4.073,16.781,8.855,9.019,0.668,10.643,22.322,6.302,5.508,25.067,16.143,9.831,-0.863,14.246,21.923,10.997,-3.494,3.095,20.489,5.58,24.047,25.218,3.023,22.937,16.975,-9.711,-1.955,18.53,-3.207,16.586,5.501,19.504,20.998,20.159,12.685,18.672,5.504,-9.858,17.053,18.16,23.264,12.679,6.316,18.876,10.147,24.877,12.8,8.12,0.433,-1.0,16.879,15.577,12.41,15.707,11.252,15.005,8.937,20.19,1.512,13.367,-2.733,21.356,14.339,16.64,10.555,16.704,1.708,-0.03,3.909,33.876,20.074,5.547,21.183,2.093,8.834,10.141,16.399,18.655,8.964,2.918,15.893,16.663,17.636,13.192,2.649,6.454,8.136,6.149,32.599,9.174,7.151,2.67],[13.505,23.323,19.38,3.67,14.378,12.914,3.658,6.498,21.067,-6.436,9.155,22.736,27.697,13.195,6.902,5.035,9.048,15.024,10.279,0.588,3.959,10.933,-2.967,24.024,9.497,5.003,24.019,20.077,23.845,15.586,4.707,19.927,-3.234,20.595,16.47,-10.49,7.122,11.195,18.098,16.247,-2.92,23.224,16.683,8.213,13.26,1.828,20.493,13.761,10.961,17.301,11.674,1.266,16.163,14.721,32.444,9.0,8.453,1.556,17.947,7.224,4.271,20.524,2.011,8.881,22.833,-7.365,21.97,3.088,22.445,11.326,27.628,8.287,11.726,3.904,2.996,9.895,23.438,5.784,8.883,13.655,12.585,7.117,18.163,14.203,18.536,14.571,14.696,23.242,5.408,-7.464,29.383,24.47,14.368,8.563,10.931,23.744,5.753,10.803,-3.788,8.848,4.131,16.753,9.158,8.746,0.49,11.11,22.226,6.288,5.417,25.767,15.883,10.064,-1.094,14.251,21.951,11.31,-3.884,3.095,19.988,5.542,24.019,25.171,3.267,22.555,16.659,-9.743,-1.595,18.402,-3.003,16.461,5.051,19.836,21.017,20.103,12.676,18.679,5.414,-10.618,16.677,18.317,24.147,12.84,6.372,18.73,10.093,24.618,12.729,8.039,0.931,-1.112,16.449,15.756,12.845,16.253,11.353,15.022,9.3,20.719,1.154,13.707,-3.595,21.382,13.531,17.17,10.605,16.837,2.068,0.078,3.842,33.807,19.655,6.168,20.97,1.749,8.814,10.178,16.399,19.022,8.808,2.882,15.658,16.495,17.515,13.453,2.589,6.258,7.935,5.94,32.226,9.326,6.941,2.538],[13.551,23.622,19.387,3.401,14.406,12.898,3.65,6.482,21.192,-6.738,9.084,23.042,27.592,13.192,7.05,4.986,9.04,15.098,10.434,0.598,4.043,11.123,-2.939,24.317,9.503,5.175,23.74,19.833,23.783,15.453,4.646,19.821,-3.184,20.743,16.735,-10.765,7.078,11.366,18.062,16.335,-3.129,23.395,16.767,8.265,13.287,1.92,20.715,13.659,10.92,17.316,11.776,1.364,16.159,14.549,32.32,8.98,8.275,1.343,17.963,7.475,4.084,20.449,1.759,8.959,22.524,-7.709,21.899,2.758,22.562,11.369,27.57,8.297,11.771,3.371,3.434,10.196,23.357,5.748,8.767,13.518,12.821,6.977,19.091,14.091,18.429,14.431,14.593,23.321,5.369,-7.842,29.13,24.875,14.318,8.693,11.365,24.65,5.392,10.167,-3.689,8.744,4.864,17.014,8.968,8.867,0.551,11.647,22.025,6.325,5.586,25.854,16.03,10.094,-1.141,14.737,21.426,11.424,-4.078,3.173,19.969,5.579,23.553,25.022,3.325,22.578,16.542,-9.818,-1.631,18.716,-2.886,16.177,5.393,19.923,21.207,20.178,12.686,18.494,5.478,-10.565,16.068,18.737,24.338,12.291,6.618,18.628,9.754,24.405,12.395,7.179,0.637,-1.276,16.183,16.058,12.662,16.085,11.645,14.941,9.413,20.607,1.165,13.502,-3.748,21.627,13.057,17.044,10.887,17.145,2.358,-0.061,3.873,33.648,19.183,6.336,21.415,1.582,8.928,9.647,16.348,19.151,8.911,2.697,15.724,16.187,17.59,13.444,2.807,6.478,8.127,5.877,32.264,8.879,7.094,2.279],[13.631,23.755,19.401,3.211,14.345,12.856,3.805,6.539,21.427,-6.964,9.083,23.238,27.727,13.229,7.189,4.986,8.891,15.221,10.614,0.593,4.32,11.279,-2.923,24.625,9.387,5.252,23.578,19.568,23.837,15.383,4.706,19.774,-3.346,20.904,16.914,-10.899,6.844,11.428,18.078,16.438,-3.325,23.505,16.863,8.227,13.035,1.951,20.763,13.541,11.041,17.165,11.652,1.474,16.527,14.389,32.105,8.954,8.1,1.198,17.941,7.672,3.925,20.301,1.57,8.794,22.498,-7.978,22.333,2.18,22.521,11.667,27.106,8.267,11.775,3.262,2.829,10.041,23.561,5.471,8.871,13.722,13.045,6.87,19.348,14.182,18.476,14.094,14.472,23.245,5.218,-8.237,29.082,24.902,14.419,9.09,11.955,25.245,5.072,9.829,-3.806,9.105,4.943,16.94,9.112,9.622,1.072,12.255,22.109,6.015,5.917,25.821,15.999,10.177,-0.89,15.333,20.984,11.645,-3.722,2.984,20.101,5.381,23.291,24.651,3.479,22.078,16.566,-9.852,-2.257,18.587,-2.492,15.866,5.681,20.219,20.734,20.144,12.649,18.64,5.508,-10.574,16.446,18.427,24.3,12.265,6.449,18.692,9.994,24.959,12.456,7.203,0.173,-1.459,16.166,16.086,12.265,15.942,11.698,14.87,9.236,20.694,1.937,13.374,-3.366,22.19,13.158,16.6,10.896,16.937,2.244,-0.316,3.533,33.277,19.386,6.516,21.421,1.9,8.9,9.885,16.314,19.01,8.786,2.463,16.443,15.818,17.686,13.409,2.813,6.842,8.295,5.734,32.077,9.01,6.801,2.061],[13.721,23.645,19.534,3.095,14.107,12.876,3.696,6.711,21.682,-7.015,9.174,23.208,27.928,13.395,7.354,4.834,8.738,15.439,10.772,0.669,4.563,11.422,-2.907,24.908,9.388,5.321,23.487,19.386,23.838,15.324,4.815,19.715,-3.462,20.963,17.027,-10.824,6.652,11.423,18.094,16.544,-3.402,23.705,17.01,8.083,12.746,1.939,20.772,13.368,11.198,16.995,11.374,1.557,16.765,14.27,31.795,8.997,8.053,1.102,17.721,7.878,3.735,20.259,1.484,8.669,22.785,-7.793,22.79,2.151,22.257,11.436,27.967,8.384,11.792,3.388,2.755,9.516,23.926,5.527,8.916,13.91,12.659,7.059,18.33,14.584,18.654,14.115,14.165,23.568,5.319,-8.302,29.586,24.836,14.326,9.007,11.578,25.016,5.318,10.404,-3.875,9.035,4.525,17.355,9.701,8.834,1.409,12.772,22.256,6.327,5.837,26.047,16.186,9.98,-0.97,14.988,20.432,11.296,-3.748,3.08,19.85,5.956,23.842,25.073,3.538,22.101,16.777,-10.196,-2.12,18.364,-2.633,15.77,5.531,20.808,21.095,19.81,12.758,18.702,5.28,-10.84,17.437,18.347,24.409,12.419,6.237,18.352,10.258,25.08,12.911,7.584,0.142,-1.701,16.362,15.616,12.66,15.636,11.553,14.49,9.144,21.065,2.007,13.467,-3.512,22.042,13.13,16.875,10.699,17.649,2.141,-0.512,3.122,33.289,19.387,6.465,20.727,1.929,8.383,9.983,16.319,18.319,8.757,2.379,16.344,16.125,17.404,13.224,2.994,6.829,7.806,5.468,31.659,8.892,6.589,1.946],[13.761,23.578,19.547,3.138,13.911,12.937,3.596,6.898,21.804,-6.97,9.197,23.174,28.141,13.405,7.475,4.874,8.722,15.726,10.864,0.795,4.747,11.614,-2.913,24.871,9.391,5.246,23.682,19.19,23.963,15.367,4.875,19.751,-3.308,21.004,17.255,-10.718,6.622,11.419,17.997,16.646,-3.539,23.853,17.066,7.831,12.574,1.975,20.913,13.274,11.307,16.83,11.008,1.61,16.759,14.241,31.543,9.004,8.129,0.951,17.476,7.972,3.437,20.079,1.488,8.62,22.516,-8.138,22.807,2.421,22.287,11.614,27.836,8.654,11.836,3.056,2.671,9.794,23.475,5.942,8.525,13.633,12.506,7.507,18.3,14.799,18.787,14.437,14.191,23.558,5.388,-8.059,29.751,24.899,14.437,9.126,11.412,25.282,5.665,10.359,-3.849,8.824,5.389,17.503,9.452,7.822,0.972,12.888,22.342,6.218,5.964,26.188,15.766,10.021,-0.88,14.846,20.198,11.291,-4.174,3.107,19.424,6.191,23.695,25.309,3.545,22.598,17.087,-10.136,-1.85,18.443,-2.931,15.6,5.686,21.119,20.941,19.61,12.839,18.541,5.315,-10.587,17.15,18.893,24.255,12.228,6.109,18.903,9.875,25.248,13.079,7.437,0.385,-1.669,16.53,15.598,12.341,15.858,11.465,14.311,8.967,20.728,1.453,12.893,-3.667,21.494,13.35,16.754,10.787,17.384,2.118,-0.674,3.033,33.129,19.294,6.545,20.827,1.564,8.681,9.912,15.814,18.601,8.842,2.363,15.742,16.002,17.985,12.711,3.038,7.36,7.761,5.299,31.53,8.426,6.762,1.849],[13.74,23.525,19.493,3.249,13.835,12.895,3.559,7.097,21.743,-6.977,9.124,23.176,28.03,13.403,7.612,5.097,8.697,15.902,10.73,0.854,5.001,11.755,-3.05,24.644,9.347,5.247,23.929,18.999,24.06,15.406,4.909,19.878,-3.076,21.021,17.381,-10.558,6.705,11.501,17.883,16.747,-3.549,23.842,17.053,7.594,12.529,1.987,20.911,13.098,11.423,16.563,10.701,1.592,16.681,14.27,31.39,8.995,8.301,0.787,17.294,8.102,3.137,19.958,1.455,8.521,22.415,-8.305,22.712,2.8,23.052,11.772,27.505,8.897,11.927,2.74,2.837,9.415,23.208,6.229,8.321,13.77,12.593,7.596,19.383,14.93,18.606,14.357,14.525,23.877,5.34,-7.833,29.685,24.637,14.557,9.338,11.656,24.942,5.401,10.106,-3.68,8.604,5.133,17.653,9.104,8.905,0.37,12.946,22.514,6.188,6.091,25.928,15.71,10.541,-0.712,15.106,20.231,11.313,-3.973,3.205,19.494,6.359,23.796,25.524,3.438,22.513,16.996,-10.26,-1.409,18.512,-2.515,15.78,5.578,21.633,21.153,19.65,12.795,18.331,5.39,-10.525,17.033,18.762,24.087,12.002,6.068,18.615,10.182,25.406,13.083,7.308,0.681,-1.696,16.563,16.266,12.457,16.376,11.501,14.285,9.031,20.697,1.543,13.009,-3.889,22.003,13.336,16.582,10.476,16.624,2.283,-0.725,2.93,32.714,18.776,6.758,21.072,1.604,9.03,9.79,15.962,18.503,8.614,2.74,15.312,15.961,18.091,12.491,3.051,7.214,8.389,4.967,31.526,8.269,6.774,1.588],[13.669,23.424,19.509,3.311,13.928,12.714,3.576,7.22,21.839,-6.973,8.947,23.286,27.809,13.461,7.774,5.173,8.738,15.962,10.465,0.727,5.23,11.886,-3.112,24.397,9.299,5.431,23.904,19.028,24.076,15.372,4.893,20.02,-2.792,21.056,17.29,-10.442,6.812,11.825,17.749,16.856,-3.466,23.675,16.996,7.553,12.594,2.069,20.882,12.97,11.559,16.239,10.426,1.548,16.579,14.157,31.228,8.956,8.474,0.552,17.204,8.192,2.974,19.909,1.511,8.471,22.479,-8.016,22.153,2.805,23.369,11.762,27.624,9.015,11.883,3.221,2.97,9.002,23.83,6.246,8.873,14.076,12.885,7.167,19.374,14.901,19.208,13.828,14.064,23.858,5.397,-7.969,28.959,24.861,14.843,9.553,11.826,24.133,5.47,10.191,-4.005,8.578,4.732,17.734,9.155,9.176,1.034,12.844,22.623,6.405,5.784,26.062,15.85,10.028,-0.772,16.017,20.227,11.267,-3.989,3.17,19.96,6.693,24.194,25.517,3.465,22.568,16.944,-9.627,-1.496,18.692,-2.489,15.999,5.564,22.122,21.336,19.732,13.1,18.35,5.89,-10.628,17.519,18.894,24.074,11.888,5.96,17.966,10.318,25.521,13.282,7.235,0.538,-1.776,16.347,16.846,12.454,16.299,11.69,14.416,9.002,20.856,1.807,13.024,-3.818,22.341,12.737,16.813,10.183,16.239,2.042,-0.541,2.416,32.593,19.216,6.939,21.079,1.521,8.726,9.485,15.791,18.195,8.423,2.527,15.465,15.81,17.931,12.134,2.956,7.129,8.629,4.749,31.795,8.402,7.441,1.737],[13.666,23.355,19.707,3.484,14.039,12.473,3.585,7.177,21.984,-6.988,8.804,23.515,27.642,13.6,7.852,5.144,8.664,16.126,10.273,0.612,5.313,11.962,-3.149,24.191,9.033,5.546,23.876,19.214,24.036,15.346,4.954,20.15,-2.568,21.131,17.155,-10.3,6.913,12.202,17.556,17.067,-3.355,23.551,16.958,7.62,12.615,2.118,20.938,12.883,11.711,16.003,10.177,1.335,16.463,13.997,31.111,8.804,8.708,0.344,17.257,8.29,2.914,19.967,1.475,8.544,22.395,-7.716,22.177,2.291,23.812,11.952,27.466,8.987,11.837,3.306,3.275,9.099,23.635,6.498,8.917,13.655,12.683,7.105,18.536,15.146,19.107,13.622,13.859,23.422,5.466,-8.273,29.187,24.978,14.787,9.54,11.548,24.512,5.941,10.029,-4.096,8.759,5.589,17.801,9.268,8.648,1.354,13.086,22.346,6.431,6.154,25.955,16.042,10.088,-1.079,16.275,20.196,11.406,-4.352,3.216,20.248,7.194,23.823,25.272,3.679,22.502,16.845,-9.621,-1.446,18.752,-2.41,16.793,5.407,21.907,20.903,20.165,13.616,18.304,6.449,-10.548,16.835,18.721,23.75,12.224,5.941,18.529,10.963,25.009,13.371,7.222,0.315,-1.732,16.542,16.446,11.818,16.108,12.044,14.496,8.85,20.74,1.734,12.517,-3.608,22.126,12.497,16.507,9.759,16.68,1.855,-0.772,2.41,32.776,19.707,7.17,20.995,2.086,8.546,9.934,15.472,17.979,8.428,2.483,15.699,15.424,17.192,11.967,2.922,7.223,8.68,4.632,31.458,8.203,7.462,1.458],[13.621,23.281,19.653,3.647,14.059,12.204,3.604,7.107,22.167,-7.03,8.745,23.54,27.657,13.793,7.813,5.169,8.516,16.314,10.258,0.598,5.501,11.876,-3.299,24.226,8.733,5.532,23.861,19.35,23.893,15.537,5.078,20.023,-2.419,21.131,17.066,-10.183,6.939,12.566,17.564,17.298,-3.271,23.305,16.905,7.763,12.625,2.075,20.885,12.603,11.907,15.901,9.977,1.151,16.298,13.97,31.08,8.621,8.843,0.118,17.46,8.517,2.907,20.1,1.459,8.677,22.352,-8.096,22.51,2.572,23.782,12.045,27.299,8.936,11.95,3.336,3.191,8.745,23.596,6.259,8.402,13.235,12.303,7.35,18.891,15.001,19.064,14.027,13.515,23.759,5.416,-8.186,29.43,25.332,14.962,9.594,11.168,24.689,5.85,9.82,-4.133,8.393,5.935,18.098,8.924,7.948,0.67,13.448,22.284,6.365,6.132,25.433,16.01,10.334,-1.127,15.706,20.566,11.614,-4.245,3.35,20.095,6.985,23.909,25.143,3.783,22.536,17.045,-10.159,-1.283,18.595,-1.836,17.043,5.31,22.067,21.504,20.729,13.713,18.116,6.553,-10.392,17.091,18.487,23.867,12.168,6.084,18.654,10.986,24.927,13.622,7.223,0.566,-1.653,17.111,16.449,11.974,15.682,12.164,14.257,8.7,20.733,1.48,12.757,-3.352,22.096,12.38,16.152,9.39,16.947,1.344,-1.019,2.578,32.692,19.256,7.341,21.137,1.967,8.859,10.103,15.753,18.295,8.462,2.893,15.407,15.187,16.707,11.769,2.78,7.644,9.028,4.722,30.913,8.189,7.298,1.217],[13.5,23.366,19.475,3.777,13.876,12.014,3.643,7.075,22.265,-7.066,8.614,23.633,27.726,13.942,7.691,5.238,8.333,16.409,10.235,0.591,5.565,11.767,-3.379,24.333,8.576,5.51,23.871,19.486,23.803,15.886,5.102,19.868,-2.33,21.113,17.159,-10.186,6.888,12.722,17.64,17.571,-3.209,23.197,16.807,7.873,12.641,1.94,20.701,12.447,12.109,15.74,9.774,1.036,16.174,13.904,31.076,8.572,8.909,-0.052,17.682,8.746,2.888,20.158,1.527,8.701,22.223,-8.306,22.932,3.221,23.742,12.292,27.329,8.717,11.859,3.334,2.513,8.846,23.024,6.04,8.423,13.121,12.063,7.574,19.23,14.834,19.071,14.459,13.385,23.786,5.306,-7.715,29.396,25.322,15.294,9.573,10.98,24.749,5.393,9.766,-4.464,7.978,5.856,18.059,9.084,8.049,0.079,13.146,22.258,6.52,5.608,25.944,16.132,10.053,-0.881,15.452,20.937,11.51,-4.119,3.379,19.91,7.041,23.889,25.123,3.692,22.592,17.56,-9.534,-1.398,18.414,-1.483,16.941,5.905,22.196,21.237,20.774,14.185,18.257,6.336,-10.584,17.441,18.514,23.508,11.918,6.038,18.245,11.241,24.838,13.886,7.531,0.481,-1.407,16.911,17.353,12.425,15.414,11.981,14.28,8.84,20.271,1.63,12.631,-3.356,21.946,12.238,16.703,9.718,16.51,1.275,-0.836,2.623,32.545,19.545,7.474,21.319,1.708,8.691,9.963,16.042,18.741,8.539,3.01,15.33,15.116,15.897,11.63,2.348,7.971,9.053,4.686,31.196,8.668,7.553,1.274],[13.297,23.54,19.43,3.846,13.64,11.893,3.536,7.043,22.346,-7.012,8.533,23.685,27.691,14.042,7.522,5.237,8.282,16.394,10.127,0.559,5.508,11.703,-3.334,24.456,8.508,5.43,23.869,19.625,23.74,16.219,5.134,19.597,-2.355,21.073,17.358,-10.24,6.857,12.834,17.585,17.96,-3.113,23.246,16.731,7.868,12.68,1.856,20.408,12.507,12.236,15.658,9.751,0.935,15.964,13.912,31.176,8.594,9.037,-0.001,17.786,8.903,2.87,20.212,1.556,8.746,22.09,-8.089,22.89,3.317,24.0,12.412,27.587,8.864,11.476,3.757,2.361,8.347,23.551,6.273,8.461,13.246,12.361,7.919,18.531,14.709,19.089,14.181,13.402,24.059,5.287,-7.723,29.145,25.044,15.317,9.106,11.357,24.629,5.501,9.477,-4.34,7.768,5.457,17.863,8.813,8.976,0.273,13.147,22.195,6.459,5.922,26.156,16.482,10.121,-0.892,15.623,21.417,11.019,-4.26,3.49,20.009,6.991,23.992,25.042,3.672,22.74,17.747,-9.383,-1.422,18.371,-1.485,16.764,6.044,21.971,20.949,20.287,14.409,18.536,6.031,-10.569,16.972,18.484,22.862,12.136,6.467,18.38,11.525,25.047,13.765,7.963,0.311,-1.387,16.905,17.737,12.076,15.87,12.378,14.565,9.344,20.164,1.282,12.405,-3.546,21.97,12.057,16.306,9.89,16.217,1.72,-1.04,2.796,32.56,19.943,7.554,21.214,1.54,8.35,10.35,16.018,18.725,8.847,3.189,15.356,14.548,15.158,11.367,1.747,7.778,9.055,4.481,31.388,8.408,7.675,1.035],[13.133,23.789,19.431,3.903,13.502,11.906,3.327,7.16,22.476,-6.964,8.503,23.545,27.65,14.138,7.339,5.333,8.321,16.264,10.045,0.528,5.35,11.632,-3.338,24.411,8.502,5.398,23.92,19.702,23.622,16.379,5.242,19.427,-2.389,20.961,17.473,-10.319,6.9,12.929,17.564,18.191,-3.027,23.265,16.786,7.915,12.808,1.756,20.244,12.608,12.389,15.59,9.787,0.877,15.568,13.85,31.338,8.637,9.229,0.124,17.828,8.833,2.959,20.38,1.544,8.803,22.369,-8.089,22.796,2.746,24.087,12.25,27.632,8.97,11.277,3.921,2.789,7.934,24.133,6.384,8.462,12.917,12.846,7.665,18.484,14.758,19.132,13.221,13.119,24.041,5.158,-8.177,28.885,25.193,14.833,9.152,11.297,24.612,5.53,9.618,-3.761,8.377,5.5,17.837,8.656,8.649,0.483,13.344,22.19,6.724,6.094,25.911,16.988,9.897,-1.054,15.923,21.448,10.607,-4.287,3.386,20.159,7.183,24.141,25.043,3.633,22.548,17.946,-9.852,-1.579,17.937,-1.907,16.439,5.476,21.805,20.956,19.824,14.169,18.179,5.509,-10.393,16.765,18.545,23.216,12.111,6.715,18.445,11.63,25.057,13.979,8.191,0.046,-1.494,17.921,17.712,11.94,16.024,12.975,14.401,9.54,19.861,1.389,12.567,-3.518,21.524,11.981,16.469,9.343,16.767,1.823,-1.08,2.669,32.576,19.533,7.841,21.122,1.788,8.769,10.032,16.014,18.489,8.498,3.101,15.003,14.109,15.609,11.714,1.461,7.871,9.597,4.816,31.396,8.364,7.604,0.928],[12.992,24.079,19.438,3.857,13.43,12.064,3.171,7.367,22.573,-6.995,8.425,23.42,27.655,14.109,7.222,5.441,8.301,16.334,9.995,0.584,5.289,11.572,-3.361,24.089,8.48,5.483,24.067,19.689,23.587,16.473,5.189,19.381,-2.38,20.854,17.406,-10.429,6.928,13.021,17.585,18.331,-2.994,23.234,16.937,8.027,12.845,1.629,20.176,12.748,12.542,15.445,9.878,0.959,15.338,13.702,31.523,8.692,9.444,0.268,17.874,8.751,3.142,20.478,1.529,8.821,22.954,-8.032,23.366,2.768,23.875,12.345,27.074,9.128,11.446,3.5,2.674,8.402,23.743,6.521,8.993,12.738,12.839,7.025,18.794,14.843,18.728,12.565,13.35,23.607,4.899,-8.105,29.338,25.091,14.898,8.966,11.023,24.934,5.698,9.235,-4.068,8.889,5.285,17.713,8.632,8.601,0.4,13.327,21.846,6.512,5.776,25.615,16.786,10.09,-1.258,15.578,21.038,10.501,-4.292,3.5,19.982,6.971,23.669,24.705,3.709,22.745,17.972,-10.189,-1.863,17.742,-2.539,16.142,5.596,22.148,20.845,19.616,14.211,18.153,5.266,-10.55,17.367,18.589,23.724,11.934,6.515,18.227,11.475,24.879,14.151,8.263,-0.246,-1.392,18.191,17.571,12.121,15.606,13.069,14.384,9.398,19.65,1.771,12.857,-3.043,21.5,12.002,16.472,8.983,16.436,1.747,-0.798,2.233,32.909,19.589,7.645,21.253,1.645,8.723,10.12,16.005,18.604,8.036,2.854,14.936,14.072,15.185,11.662,1.698,7.546,9.79,4.982,31.532,8.613,7.956,1.049],[12.854,24.31,19.401,3.776,13.493,12.146,3.094,7.583,22.56,-6.96,8.402,23.354,27.639,14.152,7.086,5.375,8.275,16.46,9.976,0.624,5.167,11.606,-3.459,23.797,8.56,5.608,24.198,19.545,23.479,16.412,5.174,19.27,-2.433,20.937,17.225,-10.607,7.033,13.034,17.618,18.388,-2.944,23.189,17.036,8.106,12.719,1.519,20.124,12.938,12.597,15.347,9.936,1.197,15.156,13.56,31.777,8.704,9.628,0.455,17.892,8.564,3.271,20.625,1.4,8.884,22.964,-8.268,23.465,2.731,23.9,12.516,26.784,9.094,11.412,3.437,2.121,8.867,24.145,6.8,8.868,13.275,12.547,6.747,18.559,14.636,18.658,12.246,13.59,23.649,4.675,-7.898,29.057,24.742,15.557,8.996,10.534,24.493,6.51,9.782,-4.229,8.507,5.614,17.813,8.429,8.69,0.517,13.08,21.729,5.918,5.664,25.218,16.825,10.202,-0.926,15.532,21.203,10.381,-4.691,3.692,19.784,6.768,23.496,24.421,3.912,23.247,18.081,-10.117,-2.045,18.171,-2.116,16.128,5.783,22.096,20.811,19.679,14.554,18.513,5.293,-10.85,17.403,18.605,23.343,12.257,6.304,18.187,11.638,24.68,13.913,7.695,-0.265,-1.137,17.537,17.748,12.234,15.656,12.771,14.392,8.84,20.105,2.063,12.889,-3.306,21.542,11.793,16.213,9.106,15.863,1.914,-0.972,2.577,33.239,19.549,7.511,21.023,1.331,8.415,10.42,16.156,19.082,8.627,3.064,15.047,14.027,14.73,11.637,1.985,7.469,9.573,4.946,31.618,9.062,7.689,1.235],[12.834,24.389,19.301,3.712,13.666,12.218,3.044,7.707,22.546,-6.989,8.367,23.209,27.499,14.513,7.122,5.266,8.389,16.493,9.885,0.665,5.019,11.547,-3.587,23.682,8.622,5.715,24.465,19.46,23.333,16.462,5.297,19.258,-2.574,21.028,17.043,-10.781,7.049,12.958,17.614,18.337,-2.905,23.011,17.163,8.172,12.601,1.495,20.138,13.074,12.57,15.316,9.925,1.467,14.985,13.448,32.024,8.733,9.509,0.422,17.847,8.424,3.418,20.711,1.412,8.977,22.851,-8.346,23.153,2.734,23.982,12.875,27.431,9.425,11.144,3.663,2.078,8.79,24.339,6.93,8.932,13.54,12.193,6.753,18.506,14.436,18.705,11.892,13.39,23.471,4.705,-7.818,28.415,25.014,15.814,8.943,10.304,24.118,6.205,9.878,-4.206,8.42,5.734,17.631,8.594,8.548,0.54,13.257,21.719,6.212,5.931,24.969,17.264,10.312,-1.016,15.852,21.184,10.545,-4.674,3.524,19.735,6.705,24.128,24.649,3.813,22.936,17.843,-9.98,-1.813,18.092,-1.372,15.86,5.69,22.163,20.501,20.076,14.518,18.333,5.33,-11.023,16.862,18.687,23.04,12.07,6.334,18.053,11.673,24.845,14.19,7.433,-0.43,-1.202,17.585,18.202,12.235,15.686,12.208,14.178,8.435,19.637,1.933,12.766,-3.545,21.401,11.731,16.512,9.589,16.048,1.97,-0.707,3.11,33.437,19.497,7.388,20.835,1.273,8.581,10.283,16.247,18.945,8.909,2.537,14.95,14.038,14.747,11.931,2.425,7.399,9.432,5.224,31.972,8.819,7.905,1.641],[12.896,24.225,19.239,3.65,13.807,12.206,3.097,7.758,22.653,-7.078,8.306,23.102,27.384,15.048,7.218,5.301,8.548,16.457,9.705,0.708,4.943,11.559,-3.7,23.607,8.749,5.741,24.711,19.483,23.404,16.679,5.178,19.201,-2.645,21.087,16.681,-10.827,7.025,12.791,17.432,18.38,-2.951,22.862,17.271,8.249,12.488,1.412,20.105,13.083,12.409,15.373,9.865,1.695,14.973,13.436,32.094,8.699,9.574,0.342,17.731,8.392,3.701,20.671,1.515,8.978,23.025,-8.139,23.031,2.917,23.972,13.323,27.01,9.574,11.228,3.611,2.079,9.059,24.545,7.253,8.744,13.564,12.666,6.906,18.485,14.461,18.559,12.116,13.502,23.151,4.823,-8.147,28.929,24.814,15.578,8.995,10.677,24.487,5.284,9.356,-4.235,8.638,5.168,18.008,8.828,8.9,0.367,13.263,21.689,6.382,6.444,24.933,17.357,10.113,-1.076,15.981,20.907,10.477,-4.265,3.871,19.777,6.425,24.452,24.649,4.021,23.199,17.972,-10.269,-1.989,17.736,-1.978,15.867,5.329,22.218,20.591,20.485,14.12,17.983,5.301,-10.71,16.701,18.824,22.898,11.857,6.415,17.883,11.131,24.644,14.111,7.298,-0.452,-1.303,17.953,17.667,12.429,15.947,12.311,13.987,8.662,19.449,1.337,12.54,-3.182,21.465,11.55,16.253,9.662,16.106,2.484,-0.899,2.992,33.552,19.911,7.392,21.134,1.652,8.715,10.288,15.746,18.527,8.933,2.463,14.699,14.294,14.893,11.786,2.969,7.306,9.858,5.528,31.643,8.685,7.885,1.356],[13.006,24.095,19.2,3.645,13.926,12.218,3.174,7.838,22.733,-7.183,8.294,22.96,27.364,15.358,7.215,5.345,8.613,16.399,9.691,0.687,4.735,11.642,-3.681,23.677,8.796,5.948,24.858,19.53,23.607,16.871,4.879,19.087,-2.863,21.066,16.314,-10.658,6.996,12.589,17.158,18.374,-3.051,22.774,17.414,8.316,12.365,1.244,20.204,12.972,12.192,15.316,9.831,1.957,15.087,13.498,31.863,8.578,9.73,0.171,17.574,8.421,3.991,20.677,1.691,8.934,22.77,-8.101,23.319,2.683,24.376,13.692,26.567,9.643,11.241,3.687,2.461,8.771,24.263,7.125,8.799,13.58,13.025,7.562,18.636,14.826,18.301,12.351,13.448,23.199,5.022,-8.515,28.917,24.529,16.254,8.87,10.818,24.143,5.097,9.751,-4.679,9.026,5.18,17.835,8.304,9.075,0.743,13.243,21.815,6.146,6.371,25.328,17.364,10.343,-0.873,16.107,20.414,10.563,-4.775,3.898,20.267,6.495,24.217,24.561,4.124,23.444,18.451,-10.391,-1.863,17.759,-2.176,15.594,5.763,22.063,20.486,20.418,13.865,17.717,5.18,-10.762,16.307,18.886,22.719,12.042,6.541,18.03,10.954,24.454,13.762,7.328,-0.453,-1.312,18.085,17.559,12.101,16.001,12.893,13.995,8.997,19.821,0.884,13.224,-3.065,21.66,12.126,16.513,9.389,16.059,2.783,-1.134,3.092,33.182,19.574,7.238,21.243,1.795,8.607,10.267,15.748,18.432,8.814,3.143,14.636,14.546,15.011,11.459,3.315,7.225,9.973,5.669,31.618,9.272,8.11,0.77],[13.137,23.959,19.126,3.595,14.095,12.316,3.28,7.941,22.843,-7.286,8.345,22.88,27.291,15.52,7.195,5.289,8.626,16.352,9.826,0.662,4.574,11.689,-3.81,23.843,8.879,6.167,24.919,19.566,23.694,16.919,4.744,18.997,-3.033,20.859,15.994,-10.588,6.841,12.469,16.959,18.341,-3.167,22.736,17.559,8.413,12.431,1.093,20.403,12.933,12.048,15.255,9.73,2.177,15.22,13.729,31.667,8.407,9.836,-0.017,17.541,8.376,4.133,20.608,1.936,8.968,22.476,-8.432,23.377,3.054,24.449,14.073,26.947,9.624,11.327,4.116,2.594,8.213,23.983,6.718,8.683,13.686,12.458,8.003,18.558,14.739,18.472,12.237,13.653,22.977,5.2,-8.244,28.646,24.513,16.815,8.613,10.537,24.208,5.415,10.154,-4.535,9.093,4.918,17.675,8.454,8.733,1.167,13.285,22.044,6.108,6.285,25.54,17.489,10.383,-1.049,16.169,20.482,10.737,-4.746,3.169,20.04,6.292,24.109,24.982,4.471,23.555,18.439,-9.962,-1.995,17.707,-1.799,15.222,5.888,21.955,20.22,20.03,14.103,17.938,5.076,-10.717,15.563,19.183,23.055,11.482,6.523,17.469,11.095,24.467,13.582,7.91,-0.691,-1.472,17.723,18.186,12.578,16.17,12.498,13.906,9.204,20.496,1.047,12.33,-3.361,21.672,11.953,16.483,9.423,16.169,2.729,-0.893,3.23,33.002,19.604,7.157,20.996,1.726,8.681,10.106,15.927,18.571,8.181,3.147,14.568,14.705,14.837,11.756,3.642,7.664,10.181,5.736,32.01,9.086,8.448,1.155],[13.38,23.777,19.099,3.688,14.136,12.43,3.409,7.987,22.977,-7.359,8.474,22.892,27.286,15.679,7.217,5.192,8.532,16.389,9.945,0.697,4.373,11.848,-3.894,23.875,8.938,6.371,24.981,19.554,23.71,16.812,4.663,18.793,-3.006,20.569,15.626,-10.535,6.731,12.517,16.872,18.3,-3.199,22.83,17.797,8.453,12.312,1.023,20.747,12.853,11.874,15.23,9.599,2.347,15.195,13.883,31.738,8.198,10.026,0.042,17.633,8.319,4.054,20.436,2.164,8.923,22.368,-8.678,23.232,2.982,24.118,14.22,27.543,9.61,11.463,3.775,2.255,8.516,24.325,6.964,8.131,13.845,12.071,7.79,18.216,14.813,18.756,12.403,13.774,23.243,5.059,-8.301,28.309,24.395,17.164,8.777,10.592,25.052,5.523,9.808,-4.508,8.985,4.811,17.72,8.464,8.818,0.932,13.499,22.208,6.46,6.588,25.177,17.593,10.758,-0.954,16.023,20.962,10.76,-4.757,3.096,19.647,6.057,24.472,25.309,4.552,23.573,18.125,-9.837,-2.687,17.844,-2.054,14.661,5.835,21.801,20.443,19.854,14.006,17.852,5.082,-10.725,15.553,19.315,23.068,11.495,6.613,16.761,11.121,24.606,13.696,7.857,-0.827,-1.625,17.326,18.267,12.551,16.355,11.632,14.121,9.287,20.104,1.081,12.89,-3.736,21.825,12.051,15.675,9.377,16.214,2.89,-1.167,3.43,33.266,19.784,7.248,20.865,1.793,8.281,10.307,15.893,18.484,8.26,2.386,14.774,14.709,15.001,11.616,3.834,7.843,9.712,5.754,31.391,8.764,8.885,1.228],[13.682,23.728,19.101,3.774,14.148,12.364,3.362,7.983,22.953,-7.511,8.645,22.967,27.348,15.763,7.313,5.268,8.32,16.421,9.917,0.741,4.112,12.168,-3.957,23.839,9.067,6.526,25.121,19.55,23.816,16.552,4.693,18.651,-3.075,20.363,15.27,-10.372,6.627,12.675,16.932,18.103,-3.241,23.003,18.002,8.417,12.066,1.05,20.973,12.885,11.719,15.241,9.55,2.497,15.079,13.921,31.866,8.101,10.28,0.22,17.728,8.323,3.98,20.212,2.141,8.848,22.537,-8.621,23.303,2.8,24.621,14.126,27.224,9.692,11.92,3.644,2.194,9.042,24.278,7.174,7.866,14.219,12.76,7.225,18.205,14.704,18.625,12.266,13.504,23.526,5.139,-8.507,28.944,24.328,16.929,8.934,11.146,24.702,5.695,9.774,-4.732,8.658,4.869,18.027,8.474,8.705,0.704,13.72,22.158,6.02,6.921,25.22,17.405,10.402,-0.913,15.95,21.382,10.729,-5.105,3.314,19.603,5.479,24.78,24.848,4.876,23.396,17.9,-9.889,-2.641,17.645,-2.222,14.318,5.453,21.297,20.154,19.212,13.957,17.246,5.018,-10.662,15.453,19.77,22.985,11.823,6.661,16.966,11.111,24.709,13.635,7.434,-0.586,-1.469,17.459,17.992,11.87,16.936,11.571,13.901,9.259,20.206,0.721,12.777,-3.555,22.279,12.394,15.697,9.247,16.323,3.249,-1.071,3.363,33.355,19.868,7.206,20.973,1.925,8.044,10.074,15.956,18.506,8.471,2.928,14.687,14.861,14.884,11.14,3.748,7.266,9.22,5.791,31.093,8.747,8.95,0.822],[13.989,23.893,19.078,3.698,14.088,12.245,3.253,7.982,22.93,-7.596,8.798,22.943,27.531,15.678,7.381,5.427,8.15,16.501,9.911,0.634,3.859,12.393,-4.054,23.949,9.024,6.649,25.135,19.705,23.876,16.249,4.676,18.525,-3.231,20.318,15.012,-10.17,6.463,12.857,16.911,17.752,-3.256,23.089,18.259,8.411,11.821,1.14,21.09,12.861,11.681,15.261,9.504,2.511,14.979,13.886,31.941,8.158,10.411,0.295,17.769,8.37,4.042,20.133,1.999,8.679,22.796,-8.555,23.385,3.21,24.571,13.988,27.035,9.534,12.064,3.77,2.446,8.808,23.846,7.006,8.199,14.3,13.065,6.705,18.272,14.073,18.242,12.45,13.248,23.08,5.125,-8.481,29.123,24.835,16.371,8.999,10.638,24.269,6.245,9.585,-4.659,8.808,4.736,18.036,8.747,7.936,0.609,13.963,22.058,5.655,7.385,25.455,17.061,10.586,-0.932,16.295,21.405,11.189,-4.927,3.33,19.817,5.283,24.931,24.725,4.702,23.561,17.637,-9.7,-1.959,17.346,-2.111,13.84,5.489,21.01,19.949,18.897,14.202,17.927,5.104,-10.391,15.423,19.937,23.314,11.414,6.555,18.006,11.198,24.694,13.292,7.085,-0.466,-1.559,17.566,17.612,12.767,17.726,12.019,13.437,9.076,20.754,0.94,12.162,-3.481,22.016,12.322,16.058,9.458,16.287,3.361,-1.044,3.245,33.595,19.322,7.123,20.857,2.241,8.562,9.855,16.061,18.556,8.001,3.132,14.682,15.106,14.712,11.242,3.573,7.304,9.506,5.884,31.478,8.694,9.331,0.871],[14.146,24.047,19.034,3.564,13.854,12.159,3.205,7.829,22.98,-7.588,8.865,22.927,27.527,15.521,7.338,5.581,8.111,16.594,9.873,0.536,3.838,12.579,-4.031,24.074,8.961,6.706,25.009,19.988,23.884,16.112,4.728,18.484,-3.235,20.317,14.844,-10.005,6.353,12.971,17.144,17.335,-3.307,22.959,18.429,8.433,11.519,1.269,21.147,12.919,11.806,15.32,9.494,2.294,14.845,13.837,32.094,8.286,10.577,0.367,17.767,8.442,4.303,20.085,1.855,8.4,22.67,-8.414,23.757,2.939,23.845,13.699,26.817,9.677,12.561,3.588,2.322,9.278,24.117,7.065,8.873,14.079,12.501,6.862,18.174,14.223,17.866,11.975,13.43,22.649,4.949,-8.328,29.035,24.668,16.463,9.105,10.46,24.833,6.084,9.396,-4.833,9.324,4.578,17.79,8.396,8.221,0.622,14.166,22.049,6.418,7.063,25.722,16.789,10.387,-1.121,16.705,21.35,11.332,-5.137,3.221,19.999,5.258,25.053,24.981,4.926,23.686,17.587,-9.709,-2.002,17.16,-2.428,13.848,5.861,21.528,20.112,19.884,14.363,17.998,5.122,-10.416,14.983,20.232,23.53,11.534,6.537,17.461,11.581,24.67,13.399,7.109,-0.505,-1.579,17.521,17.364,13.031,17.854,12.169,13.334,8.934,20.286,1.037,12.278,-3.308,22.343,12.108,15.785,9.401,16.161,3.196,-1.198,3.052,33.671,19.214,6.963,20.865,1.834,8.524,9.66,16.201,18.715,8.074,2.603,14.834,14.851,14.688,11.035,3.612,7.852,10.105,5.715,32.004,8.533,9.075,1.272],[14.354,24.055,18.91,3.361,13.424,12.155,3.162,7.737,22.934,-7.454,8.982,22.849,27.211,15.353,7.295,5.702,8.199,16.62,9.733,0.447,3.976,12.75,-3.906,24.338,8.924,6.676,24.904,20.259,23.96,16.198,5.0,18.543,-3.212,20.506,14.802,-9.998,6.354,12.987,17.275,16.979,-3.294,22.762,18.432,8.504,11.491,1.201,21.11,13.1,11.976,15.34,9.531,2.115,14.647,13.784,32.337,8.416,10.659,0.486,17.77,8.583,4.479,20.092,1.612,8.174,22.638,-8.729,23.866,2.042,24.057,13.849,26.851,9.465,12.696,3.599,2.066,9.206,24.588,6.78,9.122,13.87,11.963,7.107,18.033,14.172,18.04,11.664,13.494,23.114,4.922,-8.334,28.747,24.554,16.792,8.772,10.958,24.903,5.669,9.629,-4.8,9.397,4.556,17.911,8.395,8.504,0.804,14.083,22.438,6.833,6.896,25.726,17.064,10.051,-1.359,16.356,21.415,11.08,-5.132,3.298,20.428,5.366,24.581,25.106,4.998,23.309,17.509,-9.716,-2.677,17.404,-2.388,14.204,6.234,21.83,20.047,19.977,14.217,17.619,4.716,-10.239,14.708,20.181,23.003,11.001,6.64,17.486,11.618,24.438,13.83,7.266,-0.47,-1.506,17.002,17.372,12.293,17.883,12.027,13.161,9.119,20.751,0.891,12.617,-3.469,22.433,11.976,16.056,9.055,15.745,2.772,-0.956,3.64,33.627,19.731,7.161,20.743,1.694,8.236,9.677,16.171,18.374,8.425,1.998,14.743,14.296,14.635,11.331,3.424,8.004,10.685,6.125,32.092,8.052,9.057,1.396],[14.507,24.141,18.703,3.128,12.979,12.095,3.183,7.734,22.907,-7.36,9.169,22.767,26.874,15.245,7.258,5.648,8.313,16.561,9.71,0.265,4.075,12.783,-3.621,24.552,8.806,6.601,24.649,20.526,24.113,16.302,5.457,18.766,-3.269,20.821,14.842,-10.118,6.372,12.892,17.101,16.708,-3.288,22.511,18.468,8.548,11.541,1.007,21.118,13.194,12.098,15.394,9.488,2.044,14.42,13.67,32.536,8.433,10.702,0.63,17.671,8.857,4.614,20.231,1.356,8.093,23.04,-8.872,23.193,2.336,24.425,13.747,27.258,9.163,13.062,3.104,2.145,9.196,24.082,6.664,8.665,13.93,12.224,6.963,17.973,13.568,18.489,11.211,13.457,23.623,4.864,-7.939,28.226,24.2,16.633,8.77,11.037,24.84,5.939,9.811,-4.332,8.913,4.833,18.372,8.244,7.691,0.79,13.935,22.509,6.381,6.519,26.213,17.43,10.339,-1.578,15.885,22.026,11.296,-4.321,3.879,20.338,5.66,24.452,25.527,4.844,23.097,17.586,-9.896,-2.766,17.652,-1.818,14.35,5.8,21.329,20.05,19.375,14.236,17.705,4.576,-10.079,15.305,20.329,22.754,10.992,6.783,17.785,11.333,24.181,13.844,7.148,-0.689,-1.727,16.236,17.152,13.201,17.557,12.133,13.394,8.773,20.756,1.001,13.454,-3.596,22.246,11.85,15.92,9.327,15.676,2.643,-0.809,4.069,34.041,19.484,7.577,20.84,1.356,8.785,9.661,16.183,18.547,8.585,1.9,14.964,14.372,14.452,11.562,3.154,7.885,10.736,6.324,32.122,7.326,9.155,1.418],[14.625,24.29,18.617,3.108,12.835,12.117,3.396,7.678,22.964,-7.324,9.231,22.695,26.759,15.189,7.298,5.458,8.274,16.597,9.775,0.128,4.169,12.762,-3.355,24.621,8.748,6.365,24.373,20.714,24.231,16.353,5.79,19.02,-3.28,20.872,14.998,-10.25,6.372,12.803,17.004,16.494,-3.374,22.33,18.529,8.283,11.61,0.995,21.172,13.399,12.038,15.518,9.463,2.036,14.339,13.602,32.619,8.454,10.691,0.743,17.59,9.135,4.728,20.304,1.199,7.975,23.026,-8.923,23.298,1.869,24.333,13.459,26.375,9.456,13.296,2.712,2.332,9.338,24.028,7.197,8.518,13.866,12.493,6.529,17.835,13.128,17.849,11.046,13.341,23.338,5.162,-7.626,28.286,24.076,16.336,9.1,10.421,25.366,6.245,9.625,-3.91,8.516,4.775,18.185,8.488,7.696,0.085,14.119,22.598,6.437,6.742,26.28,17.302,10.584,-1.51,15.992,22.41,11.635,-4.507,4.467,20.285,5.712,24.486,25.437,4.62,22.985,17.58,-9.562,-2.763,17.651,-2.121,14.383,6.056,21.273,20.482,19.066,14.098,17.318,4.514,-10.249,14.921,20.239,22.849,11.229,6.475,17.094,11.339,24.055,13.744,7.113,-0.766,-1.674,15.95,16.787,13.531,17.41,12.177,13.433,8.607,20.093,1.113,13.857,-3.483,22.488,11.846,15.661,9.509,15.441,3.07,-0.551,3.81,34.09,19.383,8.01,21.084,1.243,8.624,9.652,16.066,18.432,8.22,2.117,15.014,14.772,14.327,11.266,3.101,8.213,9.974,6.397,32.129,7.5,9.478,1.759],[14.671,24.432,18.534,3.039,12.891,12.207,3.636,7.776,23.082,-7.362,9.154,22.67,26.861,15.114,7.329,5.597,8.145,16.648,9.799,0.017,4.181,12.805,-3.443,24.514,8.823,6.186,24.272,20.768,24.21,16.399,6.037,19.147,-3.362,20.805,15.075,-10.272,6.368,12.755,16.741,16.258,-3.567,22.377,18.394,7.889,11.709,1.308,21.205,13.715,11.838,15.503,9.476,2.21,14.346,13.711,32.51,8.45,10.533,0.787,17.541,9.328,4.761,20.267,1.264,7.912,23.202,-8.98,23.82,2.01,24.492,13.494,26.525,9.511,13.48,2.698,2.661,9.203,24.434,6.909,8.896,13.799,12.282,6.3,17.639,13.014,17.072,11.167,13.481,22.881,5.412,-7.868,28.309,24.443,16.548,9.035,10.058,25.015,6.199,9.241,-3.993,7.969,4.901,18.321,8.336,8.328,0.406,14.044,22.429,6.162,6.495,26.092,17.136,10.212,-1.909,16.254,22.554,11.902,-4.699,4.745,20.473,5.593,24.283,25.138,4.216,22.633,17.744,-9.788,-2.495,17.775,-2.856,14.203,6.931,21.3,20.457,19.029,14.324,17.804,4.811,-10.351,14.873,20.017,22.854,11.541,6.137,17.735,11.402,23.912,13.558,6.881,-0.184,-1.864,16.349,16.547,12.887,17.763,12.201,13.441,8.743,20.771,0.953,13.568,-3.368,22.35,12.16,16.006,8.956,15.413,3.365,-0.651,3.446,33.899,19.571,8.342,20.472,1.666,8.288,9.68,16.237,18.421,7.633,2.266,14.881,14.689,14.269,11.255,3.083,8.222,10.099,6.306,32.408,8.102,9.423,1.646],[14.65,24.652,18.361,2.871,12.947,12.22,3.779,7.83,23.173,-7.501,9.054,22.714,27.037,15.116,7.331,5.747,8.042,16.666,9.71,-0.033,4.119,12.759,-3.596,24.329,8.814,5.975,24.235,20.77,24.052,16.42,6.338,19.163,-3.524,20.676,15.045,-10.278,6.331,12.84,16.702,16.084,-3.683,22.454,18.253,7.805,11.793,1.676,21.198,13.746,11.828,15.514,9.436,2.381,14.413,13.838,32.345,8.363,10.502,0.684,17.581,9.361,4.65,20.049,1.472,8.049,23.446,-8.851,23.778,1.843,24.696,13.56,27.103,9.599,13.443,2.255,2.827,9.133,24.198,6.706,9.225,13.888,12.449,6.274,18.02,13.195,17.395,11.068,13.446,23.416,5.492,-8.148,28.552,24.145,16.389,8.581,10.517,24.716,6.447,9.578,-3.951,8.005,5.187,18.234,8.353,8.206,0.669,14.427,22.335,6.318,6.251,25.942,17.4,9.925,-1.968,16.31,22.323,11.949,-5.066,4.911,20.737,5.41,24.653,25.087,4.476,22.951,17.761,-9.98,-2.534,17.858,-2.56,13.557,7.111,21.422,20.653,18.922,14.279,17.201,4.908,-10.151,15.38,20.239,23.01,11.448,5.945,17.549,11.426,24.011,13.124,6.913,0.506,-2.123,17.111,16.463,13.708,18.033,11.931,13.318,8.589,21.022,0.676,13.704,-3.51,22.561,12.074,15.909,9.115,15.647,3.526,-0.677,3.434,33.905,19.309,8.232,20.614,2.052,8.904,9.217,16.522,18.034,7.54,2.388,14.799,14.407,14.531,11.376,3.525,8.029,10.441,6.096,32.284,8.45,8.834,1.589],[14.538,24.876,18.314,2.553,12.936,12.1,3.874,7.843,23.188,-7.562,8.992,22.816,27.251,15.159,7.281,5.738,8.16,16.593,9.656,-0.115,4.12,12.83,-3.654,24.429,8.704,5.878,24.314,20.746,23.938,16.568,6.573,19.192,-3.568,20.511,14.997,-10.271,6.339,12.931,16.645,15.969,-3.762,22.472,18.283,7.849,11.773,2.009,21.162,13.83,11.876,15.646,9.431,2.574,14.594,13.817,32.236,8.311,10.532,0.663,17.588,9.178,4.353,19.88,1.711,8.177,23.475,-8.641,23.566,1.568,24.669,13.337,27.397,9.316,13.337,2.171,2.728,8.966,24.36,6.985,9.043,14.028,12.501,6.997,17.493,13.716,17.342,11.152,13.415,23.602,5.549,-8.607,28.523,23.907,16.146,8.765,10.771,25.366,5.973,9.509,-4.247,8.596,5.181,18.048,8.326,7.523,0.25,14.406,22.156,6.719,6.217,25.937,17.392,10.269,-1.832,16.195,22.527,11.879,-4.768,4.964,20.45,5.224,24.192,24.976,3.863,23.064,17.849,-9.558,-2.903,17.96,-2.259,13.885,7.254,21.442,20.364,18.836,14.469,16.862,4.716,-10.095,15.019,20.189,23.18,11.187,6.028,17.215,11.409,24.035,13.664,7.236,0.62,-1.9,17.262,16.357,13.027,17.741,12.104,13.276,8.168,20.21,1.15,14.157,-3.922,22.318,12.092,15.735,9.515,15.482,3.103,-0.961,3.722,33.812,19.088,7.883,20.703,2.284,8.452,9.719,16.349,18.373,7.982,2.397,15.16,14.699,14.842,11.258,3.991,8.127,10.294,6.22,31.84,8.157,8.964,1.376],[14.426,24.951,18.208,2.318,12.963,12.038,3.827,7.79,23.059,-7.535,8.952,22.91,27.368,15.092,7.306,5.653,8.275,16.43,9.577,-0.22,4.125,12.98,-3.603,24.783,8.723,5.816,24.342,20.703,23.764,16.828,6.647,19.25,-3.484,20.36,14.895,-10.152,6.392,12.977,16.466,15.903,-3.677,22.508,18.405,7.866,11.708,2.165,20.922,13.937,12.182,15.866,9.486,2.737,14.73,13.822,32.153,8.307,10.574,0.67,17.403,8.859,4.059,19.909,1.839,8.237,23.737,-8.902,23.472,1.329,24.722,13.504,27.491,9.635,12.892,2.435,2.625,9.433,24.87,7.066,8.623,13.776,12.095,7.151,17.153,13.653,17.334,11.496,13.209,23.394,5.447,-8.515,28.901,24.466,16.456,8.895,10.634,25.387,5.831,9.433,-4.503,8.11,5.381,18.343,8.551,7.376,0.067,14.074,22.153,6.447,5.824,26.292,17.553,10.131,-2.012,15.924,22.449,11.409,-4.643,5.108,20.086,5.133,23.99,25.133,4.13,22.742,17.959,-9.979,-3.184,17.929,-2.408,14.401,7.458,21.047,20.107,18.691,14.507,17.397,5.068,-9.773,14.976,19.885,22.984,10.997,6.049,17.101,11.592,24.141,13.841,7.057,0.582,-1.85,17.025,16.078,12.832,17.659,12.278,13.342,8.399,20.376,1.914,14.285,-4.184,22.096,12.134,16.105,9.237,15.798,3.027,-0.948,3.481,33.603,19.033,7.784,20.303,2.314,8.208,10.104,16.39,18.407,8.691,2.772,15.146,14.78,14.548,11.232,4.045,7.763,10.072,5.819,31.712,8.184,9.396,1.309],[14.168,25.095,18.047,2.193,13.006,12.025,3.654,7.743,22.872,-7.539,8.983,23.081,27.442,15.02,7.337,5.659,8.195,16.346,9.58,-0.202,4.214,12.955,-3.505,24.812,8.65,5.72,24.248,20.534,23.606,17.04,6.724,19.246,-3.497,20.166,14.903,-10.05,6.451,13.037,16.417,15.825,-3.45,22.546,18.447,7.82,11.639,2.294,20.792,13.998,12.659,16.032,9.545,2.868,14.799,13.766,32.036,8.378,10.548,0.639,17.073,8.722,3.784,19.911,1.885,8.296,23.764,-8.714,23.519,1.158,24.555,13.696,27.092,9.559,12.681,2.618,2.704,9.001,24.822,7.362,8.892,13.68,12.439,7.246,17.713,13.425,17.291,11.262,13.409,23.573,5.369,-8.367,29.098,24.596,16.606,8.887,10.873,25.225,6.121,9.793,-4.327,7.689,5.439,18.017,8.358,7.697,-0.227,14.194,22.164,6.581,5.54,26.382,18.126,10.219,-2.2,15.564,22.371,11.299,-4.72,5.59,20.317,5.08,24.318,25.08,4.012,22.764,18.232,-9.928,-2.86,18.196,-2.277,13.981,7.2,20.69,20.65,18.675,14.427,16.915,5.112,-9.3,15.157,20.325,22.83,11.183,6.003,16.979,11.54,24.131,13.946,6.802,0.647,-1.573,16.361,16.2,13.827,17.358,12.585,13.382,8.444,20.314,1.894,14.463,-3.668,22.296,12.033,16.399,8.904,15.546,3.404,-0.726,2.894,33.438,18.951,7.858,20.62,2.081,8.676,10.036,16.144,18.25,9.075,2.933,15.188,14.744,14.617,11.462,3.69,7.414,10.167,5.604,31.672,8.212,9.468,1.663],[13.943,25.194,18.121,2.141,12.908,12.18,3.569,7.744,22.787,-7.545,8.895,23.199,27.386,14.999,7.421,5.763,8.103,16.236,9.597,-0.3,4.295,12.993,-3.412,24.421,8.515,5.514,24.179,20.414,23.567,17.228,6.774,19.428,-3.445,19.877,14.956,-9.976,6.399,13.028,16.327,15.778,-3.135,22.533,18.393,7.747,11.592,2.29,20.877,14.132,13.122,16.147,9.577,2.992,14.812,13.743,31.893,8.499,10.588,0.734,16.78,8.766,3.718,19.918,1.782,8.356,23.738,-8.804,23.417,1.4,24.292,13.424,27.211,9.55,12.358,2.503,2.516,9.273,24.559,7.336,9.197,13.755,12.597,7.711,17.644,13.374,16.919,11.097,13.786,23.819,5.272,-8.268,28.833,24.737,16.478,9.059,11.043,25.395,5.919,9.613,-3.666,7.859,5.543,17.675,8.537,7.994,-0.109,14.264,21.9,6.998,5.747,25.856,18.218,9.921,-2.079,15.44,22.073,11.464,-4.572,5.65,20.491,5.18,24.143,24.888,3.537,22.747,18.349,-9.57,-2.476,18.319,-2.352,14.083,7.376,20.698,20.466,18.821,14.598,17.308,5.158,-9.108,15.112,20.397,22.783,10.983,6.058,17.407,11.549,24.392,14.419,7.121,1.159,-1.373,15.696,16.171,13.936,17.601,12.999,13.042,8.033,20.435,1.377,13.858,-3.018,21.796,11.984,16.302,9.222,15.39,3.51,-0.996,2.655,33.308,18.93,7.839,20.801,2.047,8.672,9.705,16.109,18.146,9.018,3.055,15.284,14.399,14.676,11.302,3.677,7.477,10.124,5.312,31.705,8.72,9.231,1.527],[13.872,25.096,18.285,2.144,12.726,12.466,3.592,7.84,22.695,-7.665,8.866,23.312,27.267,14.847,7.521,5.899,8.095,16.146,9.564,-0.317,4.337,13.024,-3.318,24.104,8.452,5.419,24.141,20.362,23.531,17.253,6.826,19.647,-3.269,19.628,15.013,-9.88,6.382,13.121,16.41,15.638,-2.954,22.631,18.363,7.599,11.535,2.131,20.931,14.218,13.491,16.172,9.639,3.0,14.761,13.798,31.783,8.57,10.645,0.769,16.705,8.689,3.735,19.975,1.747,8.56,23.805,-9.073,23.27,1.604,24.237,13.372,27.268,9.615,12.122,2.722,2.474,8.757,24.904,6.88,8.568,13.598,12.681,7.361,17.556,13.497,17.087,11.118,13.811,23.906,5.305,-8.506,28.496,24.506,16.1,9.271,10.831,24.953,5.988,9.496,-2.604,7.835,5.419,17.881,8.784,7.93,0.098,14.791,21.878,6.435,5.685,24.884,17.44,9.926,-2.134,15.885,21.863,11.81,-4.361,5.171,20.205,5.401,24.031,24.661,3.641,22.513,18.791,-9.473,-2.539,18.169,-2.516,14.409,7.48,20.838,20.754,18.348,14.707,16.909,5.578,-9.382,15.101,19.798,22.838,10.857,5.799,17.368,11.723,24.335,14.473,6.907,1.569,-1.186,15.768,16.273,13.02,18.049,13.346,12.764,8.211,20.913,0.959,13.938,-3.092,21.488,11.96,16.177,9.348,15.526,3.464,-1.109,2.828,33.328,18.75,7.93,20.654,1.764,8.219,9.929,16.17,17.927,8.618,3.207,15.345,14.117,14.992,11.416,4.167,7.68,9.796,5.576,31.818,8.747,9.254,1.638],[13.881,25.031,18.292,2.327,12.55,12.566,3.654,7.897,22.586,-7.929,8.739,23.288,27.11,14.6,7.476,5.87,8.061,16.241,9.537,-0.172,4.256,13.094,-2.98,23.816,8.449,5.513,24.005,20.275,23.498,17.083,6.889,19.737,-3.252,19.475,15.119,-9.816,6.405,13.365,16.596,15.452,-2.992,22.75,18.295,7.412,11.433,1.877,20.973,14.208,13.644,16.189,9.674,2.865,14.698,13.818,31.788,8.498,10.555,0.818,16.799,8.598,3.844,19.967,1.887,8.837,23.515,-9.158,23.567,1.206,24.16,13.159,26.916,9.707,12.148,2.729,2.727,9.354,24.907,7.115,8.013,13.603,12.991,7.278,18.073,13.542,17.839,10.872,13.972,23.886,5.452,-8.518,28.584,24.737,16.024,9.117,10.962,24.877,6.579,9.718,-2.457,7.695,5.312,18.009,8.506,8.17,-0.319,14.709,21.994,6.392,5.616,24.971,17.724,10.166,-2.087,15.55,21.821,11.939,-4.562,5.059,20.127,5.753,23.967,24.821,3.811,22.744,18.755,-9.699,-2.675,18.425,-1.847,14.269,7.016,20.535,21.304,18.001,14.753,16.534,5.936,-9.501,15.479,19.956,23.011,11.004,5.539,17.418,11.707,24.41,14.541,6.708,1.321,-1.087,16.079,16.24,13.09,18.324,13.799,13.043,7.83,20.231,1.153,14.41,-3.407,21.644,12.14,16.252,8.986,15.228,2.857,-0.888,3.261,33.35,18.678,7.826,21.189,2.121,8.327,10.594,16.119,18.09,8.268,2.937,14.89,14.444,15.236,11.672,4.588,7.421,10.02,5.667,31.456,8.854,9.276,1.345],[13.859,24.971,18.43,2.556,12.486,12.525,3.759,7.965,22.68,-8.079,8.572,23.218,26.902,14.484,7.544,5.725,8.191,16.263,9.47,-0.128,4.223,13.107,-2.669,23.874,8.376,5.667,23.934,20.145,23.58,17.042,6.848,19.757,-3.357,19.465,15.276,-9.774,6.438,13.538,16.672,15.387,-3.09,22.845,18.311,7.151,11.449,1.74,20.815,14.25,13.621,16.257,9.811,2.642,14.692,13.92,31.761,8.32,10.375,0.796,16.883,8.516,4.072,20.105,2.058,9.179,23.563,-9.339,23.571,1.275,23.909,12.909,26.926,9.775,12.418,2.903,2.863,8.738,24.639,7.349,8.246,13.409,12.878,6.49,17.822,13.156,17.598,10.675,14.059,23.515,5.523,-8.715,28.728,24.926,15.929,8.794,11.157,24.711,6.514,9.655,-2.72,7.846,4.642,18.165,8.422,8.147,-0.284,14.651,21.933,6.844,5.898,25.221,17.78,9.977,-1.879,15.464,21.989,11.838,-4.284,5.358,20.003,5.724,23.471,24.934,3.725,22.461,18.13,-9.755,-2.668,18.625,-2.065,14.618,6.877,20.339,21.349,17.873,14.773,17.626,6.044,-9.087,15.454,20.154,23.212,10.811,5.359,18.023,11.868,24.604,14.95,6.873,0.386,-1.316,15.586,16.082,13.363,18.404,14.09,13.056,7.441,20.137,1.522,14.24,-3.484,21.854,12.095,15.679,8.982,15.382,2.667,-0.97,3.297,33.208,18.695,7.961,21.174,1.897,8.353,10.8,16.125,18.244,8.045,3.213,15.223,14.554,14.628,11.586,4.486,7.213,9.815,5.593,31.282,9.204,9.234,1.557],[13.683,25.013,18.513,2.66,12.454,12.46,3.969,8.074,22.731,-8.151,8.401,23.141,26.855,14.415,7.496,5.657,8.358,16.246,9.417,-0.075,4.055,13.103,-2.504,24.176,8.281,5.74,23.803,20.057,23.636,16.995,6.854,19.692,-3.488,19.639,15.396,-9.688,6.512,13.606,16.977,15.255,-3.138,22.944,18.483,7.033,11.421,1.651,20.627,14.25,13.494,16.296,9.804,2.428,14.689,13.923,31.688,8.114,10.278,0.663,16.963,8.344,4.147,20.257,2.011,9.43,23.615,-9.367,23.354,1.999,24.113,13.105,27.009,9.904,12.649,2.918,2.443,9.225,24.651,7.328,8.759,13.363,12.88,6.175,17.771,13.072,17.314,10.608,13.836,23.451,5.502,-9.015,28.474,24.687,15.873,9.144,10.932,24.648,5.618,9.767,-3.027,7.703,4.632,18.007,8.517,8.172,0.111,14.401,22.035,6.694,6.198,25.737,17.719,9.493,-1.823,15.772,21.778,11.322,-4.027,5.365,19.916,5.486,24.015,24.598,3.938,22.574,18.292,-9.324,-2.503,18.381,-2.971,14.901,6.634,20.148,21.168,18.593,14.899,17.766,6.177,-8.558,15.406,20.029,23.172,10.888,5.269,17.73,12.131,24.689,14.899,6.931,-0.039,-1.361,15.149,16.151,13.928,18.877,14.262,13.112,7.463,20.708,1.291,13.771,-3.246,21.633,12.094,15.796,9.51,15.469,2.901,-1.186,3.349,32.447,19.07,8.191,21.173,1.885,8.376,11.21,16.193,18.082,7.595,3.765,15.192,14.458,14.473,11.494,4.027,7.324,9.341,5.866,31.977,9.86,8.909,1.577],[13.511,25.111,18.523,2.638,12.389,12.401,4.132,8.106,22.744,-8.115,8.378,23.036,26.883,14.42,7.363,5.584,8.403,16.223,9.426,0.054,3.984,12.959,-2.534,24.492,8.227,5.814,23.728,19.967,23.708,17.027,6.878,19.574,-3.684,19.876,15.423,-9.576,6.656,13.657,17.33,15.029,-3.056,22.984,18.673,7.194,11.394,1.569,20.636,14.141,13.324,16.339,9.85,2.304,14.711,13.864,31.757,7.84,10.147,0.371,17.105,8.241,4.015,20.524,1.973,9.728,23.611,-9.457,23.416,1.602,24.433,13.024,27.094,9.826,12.493,2.535,2.615,8.905,24.578,7.36,8.24,12.769,12.654,6.466,17.787,13.13,17.75,10.64,13.679,23.808,5.501,-8.65,28.454,24.352,15.768,8.898,10.985,25.174,5.073,9.835,-3.261,7.406,4.945,17.709,8.484,8.844,0.141,14.211,22.048,6.416,6.338,25.788,17.847,9.593,-1.827,15.792,21.73,11.347,-3.733,5.285,20.093,5.074,24.088,24.541,3.984,22.692,18.54,-9.226,-2.425,18.009,-2.904,14.605,6.577,20.264,20.748,19.154,15.298,17.456,6.128,-8.45,15.709,20.324,23.161,11.053,5.516,18.013,12.494,24.554,14.169,7.022,0.152,-1.32,15.566,15.994,13.567,19.006,14.709,12.952,7.53,20.836,0.755,13.821,-3.21,21.287,11.993,16.643,9.196,15.338,3.391,-1.243,3.047,32.203,19.411,7.701,21.35,1.836,8.541,11.327,16.107,18.11,7.58,3.534,14.876,14.199,15.15,11.818,2.864,7.144,9.599,5.377,31.931,9.992,8.809,1.505],[13.328,25.16,18.616,2.433,12.29,12.364,4.15,8.057,22.959,-7.821,8.309,22.908,26.865,14.534,7.143,5.502,8.381,16.068,9.523,0.113,4.049,12.674,-2.746,24.676,8.186,5.845,23.807,19.981,23.791,17.242,6.788,19.386,-3.767,19.967,15.407,-9.537,6.8,13.809,17.69,14.94,-2.968,22.889,18.75,7.378,11.39,1.574,20.708,13.894,13.247,16.49,9.729,2.124,14.928,13.729,31.857,7.681,10.05,0.166,17.191,8.237,3.716,20.852,1.926,9.916,23.952,-9.408,23.675,1.608,24.337,12.721,27.337,9.717,12.078,2.641,3.083,8.903,24.608,7.351,7.688,12.477,12.555,7.179,17.642,13.238,17.29,10.655,13.941,24.032,5.75,-8.295,28.242,24.116,15.8,8.714,11.155,25.367,4.438,9.49,-3.09,7.428,5.317,17.721,8.514,9.255,0.371,14.344,22.286,6.022,6.674,26.184,17.702,9.788,-1.646,16.024,21.363,11.364,-3.938,5.44,19.758,5.076,23.276,25.107,4.012,22.629,18.67,-9.686,-2.762,17.761,-2.759,14.699,6.86,20.633,20.517,19.005,15.043,17.802,6.238,-8.394,15.406,20.603,23.388,10.798,5.559,18.757,12.357,24.616,13.977,7.4,0.414,-1.143,15.439,15.835,12.863,18.461,14.437,13.072,7.679,20.616,0.638,14.278,-3.075,21.325,12.11,16.481,9.158,15.671,3.576,-1.38,2.918,32.134,19.238,7.566,21.458,1.824,8.146,11.248,16.324,18.655,7.762,2.969,15.252,14.36,14.748,11.805,2.292,7.027,9.754,5.378,31.547,10.633,8.81,1.249],[13.228,25.242,18.646,2.257,12.324,12.401,4.217,8.02,23.198,-7.524,8.217,22.786,26.844,14.587,7.013,5.314,8.181,15.927,9.649,0.135,4.239,12.33,-3.04,24.798,8.113,5.869,24.068,19.925,23.834,17.396,6.567,19.295,-3.797,19.821,15.228,-9.53,6.953,13.857,18.074,15.017,-2.846,22.839,18.699,7.373,11.441,1.672,20.7,13.728,13.272,16.559,9.673,1.944,15.11,13.586,31.849,7.67,10.13,0.267,17.317,8.375,3.453,20.939,1.785,10.003,23.95,-8.826,23.86,1.804,24.495,13.224,27.279,9.761,11.676,2.677,2.69,8.276,24.756,7.177,7.311,12.624,13.173,7.049,18.011,13.387,17.682,10.541,13.807,23.54,5.598,-8.297,28.365,24.152,16.129,8.694,11.101,24.929,4.07,9.643,-2.496,7.964,5.232,17.784,8.78,8.368,0.383,14.141,22.544,6.176,6.344,26.592,17.942,9.794,-1.73,15.832,21.496,11.644,-4.363,5.12,19.643,5.3,23.748,25.419,4.004,23.035,18.86,-9.771,-3.11,17.83,-2.754,14.874,6.767,20.59,20.56,19.308,15.173,18.513,6.922,-8.937,15.507,20.227,23.136,10.591,5.509,18.592,12.167,24.442,14.364,7.453,0.012,-1.151,15.33,15.589,12.952,18.483,14.02,12.965,7.924,20.536,1.303,14.014,-3.223,21.683,11.81,15.804,8.907,15.886,2.758,-1.352,2.771,32.654,19.514,7.784,21.533,1.911,7.646,10.996,16.363,18.41,7.867,2.934,15.497,14.637,14.967,11.259,2.15,7.178,9.265,5.33,31.896,11.472,8.987,0.834],[13.242,25.305,18.832,2.322,12.5,12.511,4.243,7.956,23.316,-7.318,8.084,22.587,26.924,14.764,6.947,5.22,7.845,15.854,9.75,0.092,4.402,12.113,-3.089,24.802,8.101,5.842,24.515,19.835,23.931,17.474,6.368,19.362,-3.879,19.608,15.209,-9.657,7.09,13.891,18.224,15.136,-2.79,22.737,18.583,7.316,11.475,1.638,20.74,13.652,13.309,16.302,9.521,1.544,15.223,13.421,31.834,7.61,10.255,0.402,17.366,8.653,3.241,21.052,1.722,10.163,23.789,-8.702,23.67,1.468,25.017,13.403,27.13,9.775,11.481,1.821,2.665,8.837,25.024,7.161,6.938,13.243,13.388,6.466,18.117,13.153,17.604,10.658,13.69,23.063,5.434,-7.785,28.685,24.197,16.157,8.774,11.445,25.011,3.72,9.352,-3.141,7.611,5.419,17.639,8.785,7.971,0.018,13.879,22.427,6.173,6.215,26.332,18.189,9.713,-1.742,15.372,21.506,11.282,-4.084,4.591,19.621,5.641,24.571,25.049,3.899,23.043,18.972,-9.543,-2.856,18.011,-2.616,14.466,6.445,20.168,20.694,20.144,15.28,18.786,7.577,-9.531,15.382,20.25,22.814,10.891,5.475,18.52,12.217,24.373,14.672,7.298,-0.202,-1.053,15.921,15.212,12.937,18.89,13.848,13.304,7.982,20.407,2.227,13.313,-3.16,21.698,11.811,15.989,8.889,16.233,1.914,-1.197,3.108,33.249,20.011,7.6,21.615,2.314,7.925,9.981,16.503,18.349,7.656,2.782,15.402,14.41,14.943,11.07,2.837,7.53,9.443,4.966,31.781,11.78,8.779,1.18],[13.39,25.228,18.915,2.416,12.697,12.561,4.322,7.862,23.311,-7.115,7.972,22.379,26.878,14.961,6.944,5.245,7.738,15.793,9.912,0.018,4.539,11.963,-3.04,24.729,8.073,5.915,24.869,19.715,24.028,17.547,6.261,19.41,-3.887,19.563,15.195,-9.783,7.208,13.906,18.213,15.253,-2.86,22.695,18.667,7.208,11.519,1.626,20.802,13.508,13.262,15.97,9.267,1.169,15.334,13.304,31.748,7.546,10.352,0.443,17.389,8.906,3.144,21.233,1.985,10.223,23.801,-8.745,23.694,1.375,24.987,13.239,26.983,9.651,11.581,2.01,2.848,8.882,25.159,6.96,6.775,13.406,13.212,5.908,18.07,13.105,17.508,10.905,13.976,23.217,5.399,-7.643,28.548,23.907,16.229,8.558,11.371,25.103,3.884,9.078,-4.028,7.534,5.231,17.645,8.759,8.333,-0.249,13.677,22.28,5.926,6.435,26.177,17.746,9.584,-1.695,15.256,21.31,11.045,-3.824,4.476,19.578,5.937,24.285,24.855,4.046,23.869,18.966,-9.684,-2.721,18.227,-2.902,14.818,6.348,19.262,21.075,20.569,15.205,18.524,7.895,-9.706,15.574,20.381,23.173,11.087,5.416,18.859,12.448,24.288,14.463,6.686,-0.191,-1.012,16.367,15.584,12.82,18.928,14.137,13.279,7.916,20.542,2.053,13.271,-3.104,21.776,11.488,16.104,9.159,16.38,1.601,-1.066,2.8,33.369,19.774,7.815,21.652,2.318,7.739,9.287,16.46,18.825,7.232,2.636,14.849,14.291,14.308,10.873,2.831,7.831,10.34,4.914,31.483,11.885,8.594,1.796],[13.453,25.062,18.706,2.481,12.882,12.516,4.456,7.707,23.196,-6.97,7.877,22.296,26.576,15.03,6.849,5.402,8.008,15.768,10.049,0.055,4.649,11.972,-3.056,24.7,8.055,6.127,25.064,19.598,24.005,17.5,6.263,19.48,-3.881,19.688,15.245,-9.879,7.277,13.904,18.165,15.431,-2.946,22.881,18.887,7.236,11.451,1.462,20.919,13.376,13.273,15.769,9.099,0.904,15.345,13.193,31.525,7.418,10.416,0.535,17.46,9.103,3.117,21.334,2.325,10.18,23.808,-8.435,23.94,1.524,24.25,13.462,26.891,9.511,11.728,2.51,2.881,7.95,24.97,6.871,6.833,13.377,13.208,6.115,17.933,13.507,17.52,11.042,14.021,23.336,5.655,-7.647,28.137,23.384,16.169,8.522,11.08,24.791,4.056,9.01,-3.379,7.849,4.766,17.545,8.939,8.863,-0.026,13.681,22.27,5.94,6.783,26.248,18.043,9.482,-1.72,15.603,20.84,10.872,-4.27,4.522,19.361,5.887,24.768,25.041,4.505,23.921,19.112,-9.837,-2.794,18.057,-3.283,14.574,6.521,19.065,20.897,20.172,15.184,18.562,7.948,-9.844,15.471,20.359,23.5,11.557,5.398,18.722,12.186,24.575,13.904,6.649,-0.194,-1.233,16.117,16.065,12.534,18.735,13.71,13.171,7.799,20.721,1.344,13.823,-2.98,21.695,11.381,15.58,8.787,16.192,1.634,-1.215,2.352,33.285,19.825,8.513,21.472,2.23,7.531,9.364,16.244,18.641,7.17,3.39,14.578,14.183,14.356,10.915,2.35,8.045,10.628,4.974,31.612,11.81,8.791,1.145],[13.405,24.882,18.553,2.571,13.021,12.423,4.531,7.665,22.928,-6.935,7.824,22.213,26.422,15.003,6.77,5.508,8.152,15.806,10.014,0.079,4.617,12.104,-3.177,24.68,8.128,6.375,25.259,19.448,23.863,17.5,6.383,19.543,-3.906,19.859,15.188,-9.956,7.342,13.839,18.041,15.532,-2.851,23.195,19.036,7.425,11.411,1.198,21.022,13.352,13.267,15.634,8.93,0.87,15.224,13.068,31.307,7.3,10.483,0.438,17.547,9.268,3.043,21.231,2.456,10.238,23.402,-8.457,23.862,1.662,24.255,13.482,27.08,9.334,11.784,2.452,3.134,7.703,24.95,6.646,7.127,13.1,13.373,6.512,17.781,13.575,17.118,11.212,13.548,23.271,5.907,-7.437,28.163,23.492,16.562,8.539,11.227,24.846,4.102,9.363,-2.926,7.601,4.644,17.452,9.294,8.953,0.733,13.77,22.329,6.256,6.855,26.119,18.226,9.581,-1.691,15.871,20.892,10.832,-4.119,4.65,19.152,6.33,24.716,25.082,4.559,23.739,18.908,-9.991,-2.708,17.787,-2.958,14.809,6.371,19.548,20.404,19.496,15.244,18.626,7.902,-9.998,15.092,20.726,23.804,11.649,5.613,18.911,12.126,24.462,14.006,7.183,-0.478,-1.032,16.321,16.162,12.574,18.511,13.0,12.96,7.619,20.84,0.697,13.525,-3.42,21.758,11.381,15.757,8.528,15.933,1.756,-1.461,2.775,33.03,20.465,8.398,21.895,2.822,7.973,9.373,16.154,18.226,7.187,3.886,15.137,14.083,15.136,10.771,0.846,8.173,10.733,4.847,31.309,11.944,8.826,1.423],[13.397,24.591,18.605,2.72,13.042,12.273,4.555,7.732,22.718,-6.937,7.82,22.211,26.545,15.005,6.842,5.311,8.153,15.951,10.009,0.15,4.674,12.323,-3.44,24.635,8.21,6.561,25.373,19.255,23.697,17.476,6.545,19.546,-3.903,19.778,14.932,-10.03,7.527,13.862,17.958,15.65,-2.721,23.508,19.053,7.515,11.442,1.157,21.048,13.407,13.168,15.568,8.769,0.761,15.02,12.965,31.136,7.358,10.621,0.474,17.656,9.316,2.889,21.19,2.508,10.368,23.219,-8.443,23.22,1.624,24.339,13.612,26.996,9.452,12.044,2.35,3.124,7.814,25.036,6.8,6.939,12.59,13.243,6.427,17.923,13.488,17.293,11.31,13.461,22.836,5.727,-7.605,28.046,23.563,16.453,8.725,11.237,24.9,3.767,9.802,-3.298,7.734,4.759,17.705,9.016,8.291,0.853,13.989,21.908,6.064,6.975,26.001,18.409,9.801,-1.668,15.565,20.998,11.121,-4.204,5.152,19.391,6.21,24.656,24.82,4.889,24.071,18.608,-10.251,-2.71,17.916,-2.641,14.18,6.784,19.558,20.403,19.765,15.169,18.616,7.348,-10.085,15.436,20.763,24.234,11.188,5.87,18.64,12.33,24.94,14.276,8.048,-0.566,-1.214,16.354,15.808,12.33,18.696,12.5,13.269,8.351,20.606,0.638,13.169,-3.67,22.464,11.289,16.157,8.66,16.156,1.713,-0.926,3.168,32.834,20.121,8.267,22.057,2.948,7.665,9.571,16.415,18.384,7.287,3.764,15.016,13.908,15.352,10.562,0.158,8.25,10.277,4.693,31.159,12.177,9.45,1.529],[13.412,24.275,18.719,2.807,12.966,12.269,4.462,7.805,22.718,-6.966,7.81,22.218,26.629,14.965,7.017,4.906,7.993,16.12,10.039,0.251,4.779,12.554,-3.681,24.636,8.233,6.751,25.473,19.146,23.549,17.371,6.814,19.529,-3.793,19.611,14.696,-10.193,7.709,13.909,17.854,15.682,-2.748,23.786,19.001,7.657,11.604,1.281,21.1,13.361,12.933,15.553,8.716,0.565,14.932,12.931,31.128,7.493,10.833,0.74,17.873,9.261,2.751,21.227,2.582,10.512,22.99,-8.312,22.999,1.97,24.255,13.606,26.686,9.587,12.365,2.274,2.884,7.14,24.8,6.926,6.922,12.136,12.725,6.171,18.321,13.441,17.251,11.225,13.575,22.741,5.825,-8.019,28.476,23.893,16.382,8.85,11.247,24.801,3.431,9.473,-4.127,8.21,5.228,17.995,8.846,8.271,0.721,14.147,21.856,5.921,6.982,26.218,18.111,9.825,-1.593,15.626,20.86,11.38,-4.722,5.171,19.248,5.81,24.939,24.399,4.974,24.214,18.95,-10.109,-2.988,18.038,-2.94,14.278,7.308,19.226,20.791,20.52,15.118,18.173,7.837,-10.167,14.888,20.277,24.298,10.862,5.751,18.411,12.153,25.401,14.191,8.56,-0.464,-1.117,16.355,15.887,13.175,18.885,12.494,13.362,8.37,20.245,1.229,13.697,-3.526,22.158,11.056,15.92,8.276,16.018,1.546,-0.933,2.423,32.641,19.834,7.794,21.81,2.122,7.691,9.709,16.304,18.78,7.436,3.617,14.695,13.499,15.081,10.469,0.221,8.549,10.018,4.609,31.199,12.309,9.3,1.657],[13.373,23.951,18.823,2.835,12.87,12.224,4.39,7.959,22.811,-7.063,7.728,22.301,26.597,14.856,7.194,4.575,7.843,16.277,10.015,0.372,4.965,12.926,-3.862,24.595,8.245,6.853,25.544,19.109,23.544,17.293,7.113,19.532,-3.879,19.578,14.489,-10.406,7.851,13.901,17.522,15.645,-2.86,24.028,18.853,7.86,11.743,1.288,21.011,13.485,12.616,15.535,8.548,0.352,14.893,12.87,31.199,7.699,10.886,0.901,18.038,9.05,2.611,21.333,2.486,10.652,22.93,-8.478,23.55,1.938,24.232,13.713,26.813,9.847,12.568,2.708,2.923,6.916,24.185,6.94,7.213,12.082,12.886,6.335,18.063,13.225,17.311,11.035,13.459,23.057,5.792,-7.852,28.471,23.937,16.35,9.002,11.155,25.11,3.274,9.17,-4.473,8.236,5.795,18.048,9.235,8.252,0.343,14.141,21.84,5.607,7.137,26.091,17.327,9.735,-1.354,16.031,20.393,11.714,-4.704,5.316,18.976,6.036,24.93,24.355,5.116,24.116,18.993,-10.368,-2.744,18.123,-2.616,14.679,7.438,18.941,20.863,20.588,15.186,18.338,7.837,-10.062,14.49,20.465,24.219,11.554,6.073,18.58,12.255,25.466,13.935,9.016,-0.582,-1.09,16.299,16.409,12.858,18.662,12.777,13.622,8.116,20.395,1.695,13.893,-3.062,22.194,11.077,15.652,8.595,15.79,1.107,-0.982,2.09,32.365,20.244,7.937,21.561,1.978,8.125,9.649,16.269,19.011,7.637,3.539,14.797,13.594,14.31,10.381,0.98,8.45,10.881,4.422,31.056,12.393,9.219,1.501],[13.373,23.766,18.791,2.931,12.757,12.135,4.451,8.102,22.94,-7.24,7.575,22.493,26.451,14.915,7.311,4.422,7.799,16.371,10.175,0.399,5.167,13.356,-3.978,24.53,8.286,6.858,25.434,19.024,23.686,17.088,7.311,19.449,-3.931,19.678,14.42,-10.603,7.931,13.861,17.301,15.685,-2.995,24.128,18.69,7.993,11.875,1.236,20.907,13.59,12.433,15.544,8.447,0.317,14.706,12.823,31.146,7.992,10.917,0.793,18.194,8.99,2.565,21.526,2.312,10.729,22.47,-8.899,23.276,2.06,24.425,13.388,26.995,9.703,12.29,2.616,3.27,7.45,24.277,6.727,7.542,12.188,13.166,6.854,17.992,13.165,17.994,10.945,13.184,23.247,5.767,-7.684,27.886,23.647,16.093,9.08,11.226,24.935,3.341,9.284,-4.155,7.955,5.811,18.047,9.358,7.984,0.661,14.282,21.938,5.3,7.467,25.946,17.982,9.776,-1.453,16.319,20.277,12.131,-4.996,5.438,18.856,6.527,24.851,24.727,5.013,24.409,18.528,-10.528,-2.811,18.14,-2.514,13.857,7.777,18.641,21.014,20.272,15.383,18.169,7.261,-10.596,14.694,20.295,24.601,12.282,6.106,18.069,12.37,25.573,13.665,9.154,-0.726,-1.201,15.985,16.158,13.078,18.461,12.811,13.422,8.331,20.642,1.327,13.612,-3.05,22.322,11.156,15.775,8.509,16.123,0.693,-0.75,2.469,31.892,20.323,8.14,21.89,2.587,8.127,9.611,16.724,18.813,7.91,3.311,15.283,13.808,14.065,10.098,1.08,7.861,11.122,4.349,31.671,12.332,9.56,1.568],[13.371,23.692,18.932,3.107,12.651,12.089,4.6,8.011,22.971,-7.424,7.603,22.577,26.243,15.014,7.415,4.439,7.735,16.309,10.461,0.347,5.269,13.705,-4.021,24.41,8.308,6.716,25.446,18.875,23.936,17.03,7.432,19.347,-3.856,19.768,14.412,-10.809,7.946,13.739,17.131,15.684,-3.124,24.186,18.596,8.0,11.993,1.196,20.886,13.553,12.459,15.68,8.442,0.335,14.521,12.808,31.047,8.273,11.004,0.675,18.404,9.106,2.607,21.645,2.203,10.644,22.31,-9.149,23.064,2.373,24.59,13.363,27.004,9.729,12.014,1.984,3.29,7.269,24.232,6.63,7.455,12.57,13.02,6.621,18.068,13.063,17.949,10.819,13.122,23.367,5.946,-8.023,27.718,23.922,16.029,9.143,11.547,24.737,3.325,8.852,-4.01,7.892,5.71,18.116,9.38,8.253,1.082,15.29,22.229,5.427,7.356,26.001,18.03,9.84,-1.457,16.109,20.522,12.6,-4.957,5.658,18.472,6.451,24.896,24.772,4.859,24.096,18.081,-10.599,-3.004,17.755,-2.965,13.684,7.925,18.493,20.7,20.513,15.076,17.474,6.91,-10.943,14.357,19.913,24.594,11.958,6.087,18.052,12.062,25.883,13.676,8.995,-0.326,-1.347,16.232,16.045,13.687,18.694,12.523,13.777,8.597,20.394,0.598,13.328,-3.646,21.904,11.129,15.748,8.071,16.231,0.86,-0.873,2.79,32.049,20.589,8.1,22.55,2.611,8.109,9.865,16.704,19.072,8.336,3.183,15.091,13.952,14.231,10.317,0.841,8.03,11.076,4.294,31.756,12.522,9.164,1.595],[13.384,23.632,19.083,3.1,12.515,12.045,4.715,7.924,22.904,-7.461,7.776,22.638,26.157,15.046,7.474,4.512,7.577,16.173,10.725,0.324,5.249,13.929,-4.006,24.356,8.265,6.489,25.482,18.722,24.14,17.166,7.421,19.251,-3.783,19.846,14.387,-11.016,7.915,13.55,16.984,15.647,-3.146,24.255,18.657,7.953,12.032,1.201,20.727,13.456,12.511,15.708,8.501,0.355,14.322,12.846,31.039,8.479,11.065,0.575,18.536,9.248,2.651,21.684,2.139,10.51,22.905,-8.986,23.387,2.126,24.403,13.432,26.594,9.778,12.275,2.941,3.2,6.625,24.135,6.938,7.426,12.516,12.387,6.528,18.221,12.906,17.865,10.665,13.407,23.131,6.155,-8.295,27.847,24.317,16.357,9.286,11.465,24.667,3.263,8.77,-4.433,8.098,5.629,17.853,9.721,8.522,0.892,15.712,22.412,5.9,6.823,25.642,17.874,9.856,-1.44,15.611,20.447,12.84,-4.645,5.786,18.333,6.554,25.481,24.798,4.908,23.909,18.443,-10.621,-3.051,17.778,-3.029,14.589,7.735,18.558,20.717,20.852,14.488,17.74,6.827,-10.717,14.388,20.155,24.303,11.768,6.103,18.115,11.786,25.906,14.031,8.915,-0.331,-1.348,16.381,16.289,13.569,18.404,12.025,13.844,8.657,20.071,0.632,13.445,-4.064,22.208,11.052,15.708,8.441,16.037,1.478,-1.13,2.466,32.295,20.558,7.979,22.827,1.842,8.4,9.97,16.73,19.324,8.372,3.43,14.999,13.712,14.392,10.332,0.56,8.353,11.292,4.488,30.8,12.324,9.448,1.562],[13.493,23.664,19.096,3.069,12.445,11.985,4.68,7.972,22.854,-7.337,7.884,22.757,26.334,15.056,7.514,4.613,7.47,16.033,10.842,0.219,5.196,13.927,-3.951,24.295,8.234,6.261,25.43,18.561,24.31,17.54,7.251,19.282,-3.798,20.019,14.585,-11.15,7.878,13.441,17.043,15.635,-3.151,24.337,18.73,7.903,12.009,1.236,20.571,13.344,12.523,15.528,8.608,0.311,14.151,12.882,30.965,8.582,11.305,0.451,18.454,9.234,2.82,21.714,2.015,10.38,22.579,-8.86,23.404,1.968,24.053,14.093,26.395,9.756,12.721,3.011,3.828,6.83,24.414,7.169,7.44,12.019,12.026,6.65,18.209,13.008,17.999,10.806,13.295,23.014,6.236,-8.17,27.96,24.221,16.617,9.284,11.652,24.318,3.498,8.999,-4.605,8.349,5.635,17.807,9.88,8.248,0.58,15.559,22.484,5.823,6.368,25.962,18.218,9.748,-1.608,15.575,20.102,12.88,-4.948,5.8,18.95,6.628,24.745,25.052,4.561,24.414,19.117,-10.699,-2.496,18.052,-2.851,14.103,7.473,18.379,20.824,20.823,14.559,18.195,7.038,-10.707,14.393,20.361,24.519,11.97,6.026,17.845,11.684,25.991,13.832,8.883,-0.498,-1.355,16.124,16.076,13.498,18.091,11.672,13.753,8.502,20.154,1.293,13.54,-3.685,21.597,11.017,15.73,9.042,15.457,1.83,-0.957,2.299,32.574,20.289,7.9,22.523,1.837,8.317,9.367,16.853,19.371,8.159,3.577,14.894,13.739,14.034,10.299,0.697,8.366,10.866,4.623,30.707,12.088,9.86,1.365],[13.55,23.747,18.899,3.018,12.649,11.841,4.601,8.008,22.888,-7.231,7.879,22.801,26.585,15.247,7.518,4.806,7.549,16.02,10.825,0.074,5.217,13.914,-3.937,24.189,8.249,6.131,25.214,18.536,24.311,18.014,7.072,19.369,-3.741,20.198,14.793,-11.137,7.829,13.369,17.174,15.544,-3.152,24.475,18.633,7.845,12.021,1.336,20.381,13.285,12.434,15.418,8.785,0.28,13.933,12.858,31.0,8.523,11.538,0.379,18.177,9.019,2.938,21.656,1.929,10.226,22.233,-8.739,23.261,2.024,24.338,14.367,27.261,9.816,13.125,2.275,3.942,7.66,24.222,6.885,7.525,11.841,12.354,6.913,18.29,13.163,18.379,10.966,13.197,23.619,6.355,-7.646,28.011,24.116,16.32,9.107,11.547,23.994,3.396,8.807,-4.117,8.528,5.763,17.427,9.783,7.473,0.659,15.261,22.739,5.344,6.445,25.991,18.365,9.686,-1.638,15.893,19.589,12.458,-5.224,5.608,19.207,6.339,24.814,25.21,4.52,23.796,19.375,-10.733,-2.463,17.829,-2.902,13.832,7.466,18.423,20.558,20.814,15.211,18.015,7.902,-11.101,14.904,20.316,24.667,12.107,5.952,17.981,12.052,26.163,13.545,8.951,-0.553,-1.436,16.107,15.785,13.413,17.82,11.884,13.761,8.514,20.307,1.704,13.307,-3.661,21.754,11.06,15.505,8.622,15.088,1.446,-0.948,2.594,32.323,20.598,8.111,22.48,2.487,8.216,8.915,16.87,18.838,8.392,2.906,14.447,13.762,13.678,10.65,0.96,7.883,10.9,4.808,31.317,11.917,10.201,1.236],[13.543,23.809,18.707,2.832,12.943,11.676,4.536,7.925,23.0,-7.073,7.942,22.862,26.862,15.439,7.419,4.982,7.53,16.014,10.74,0.094,5.291,13.877,-3.932,24.082,8.328,6.036,24.909,18.596,24.265,18.326,7.004,19.41,-3.624,20.339,14.994,-11.121,7.882,13.437,17.248,15.317,-3.18,24.497,18.413,7.904,12.056,1.455,20.221,13.194,12.292,15.315,8.934,0.216,13.696,12.773,31.191,8.488,11.753,0.43,17.84,8.825,2.959,21.61,1.904,10.028,22.163,-8.556,23.387,2.065,24.365,14.363,27.569,9.616,13.145,2.402,3.168,7.894,24.019,6.625,7.416,11.989,12.644,7.051,17.919,13.443,17.916,11.364,13.015,23.56,6.19,-7.475,28.277,24.281,16.951,9.169,11.236,23.982,3.517,8.567,-3.588,7.687,5.5,17.646,9.515,7.963,0.209,15.28,22.545,5.735,6.742,25.691,18.95,10.048,-1.716,16.243,18.989,12.424,-4.606,5.44,18.791,6.84,24.847,25.347,4.092,23.557,19.644,-10.402,-2.193,17.9,-2.845,14.209,6.979,18.494,20.432,20.73,14.986,17.802,8.458,-11.291,15.403,20.149,24.672,12.225,6.097,18.302,12.262,26.201,13.708,8.864,-0.427,-1.429,16.143,15.965,13.505,17.324,12.386,13.753,8.786,20.113,1.422,13.264,-3.79,21.92,11.049,15.322,8.462,14.923,1.108,-1.207,3.028,32.001,20.365,8.402,22.859,2.725,8.343,9.252,16.363,18.073,9.206,2.271,14.969,13.757,13.781,10.568,1.491,7.541,11.456,4.418,31.248,11.675,10.026,0.967],[13.705,23.823,18.46,2.696,13.154,11.619,4.364,7.669,23.034,-6.906,8.002,22.906,27.137,15.789,7.298,5.142,7.515,16.126,10.617,0.101,5.39,13.874,-3.718,24.006,8.41,5.823,24.775,18.548,24.176,18.408,6.967,19.506,-3.424,20.359,15.269,-11.136,7.958,13.595,17.315,15.102,-3.185,24.443,18.239,8.069,12.173,1.467,20.201,13.133,12.288,15.237,8.932,0.192,13.625,12.827,31.335,8.679,11.845,0.52,17.417,8.844,2.892,21.513,1.948,9.857,22.347,-8.349,23.612,1.949,24.022,14.1,27.191,9.323,12.764,2.576,2.784,7.413,24.18,6.737,7.31,12.221,12.415,7.164,17.912,13.801,17.191,11.595,12.607,22.958,5.499,-7.777,28.607,24.609,16.892,9.168,11.639,24.141,3.967,8.391,-4.034,7.376,5.749,17.82,9.526,8.647,0.029,15.435,22.461,6.195,6.726,25.568,19.297,9.97,-1.74,15.761,18.779,12.793,-4.395,5.308,18.873,6.761,24.491,25.406,4.11,23.339,19.816,-10.84,-2.479,18.014,-2.449,14.487,6.937,18.538,20.81,21.055,14.884,17.783,8.278,-10.905,14.954,19.866,24.267,11.811,6.153,18.179,11.914,26.153,13.698,8.771,-0.141,-1.464,16.02,15.637,13.041,16.889,12.671,13.82,8.73,19.453,1.031,13.477,-3.616,21.454,11.056,15.397,8.824,15.116,0.798,-1.012,2.94,32.238,20.023,8.314,22.298,2.108,8.205,9.753,15.774,18.392,9.58,2.263,14.766,14.028,13.344,10.852,1.66,7.565,11.939,4.683,30.643,11.72,10.042,0.921],[13.888,23.864,18.161,2.657,13.289,11.56,4.12,7.439,22.904,-6.794,7.893,22.888,27.324,16.032,7.2,5.253,7.521,16.201,10.565,-0.012,5.441,13.927,-3.556,23.925,8.385,5.654,24.66,18.393,24.113,18.297,6.935,19.629,-3.228,20.406,15.426,-11.188,7.975,13.736,17.318,14.912,-3.136,24.202,18.065,8.181,12.341,1.455,20.218,13.05,12.434,15.181,8.904,0.249,13.738,12.894,31.34,9.011,11.738,0.454,17.047,8.985,2.868,21.251,1.891,9.953,22.716,-8.0,23.262,1.823,23.66,14.522,27.413,9.143,12.826,2.434,2.803,6.966,24.204,6.449,7.36,12.655,12.172,7.143,18.158,13.927,17.715,11.858,13.058,22.942,5.68,-8.086,28.466,24.599,17.091,8.988,11.704,24.232,4.199,8.394,-3.894,8.495,5.67,17.602,9.646,8.302,0.418,15.813,22.41,5.975,6.272,25.515,18.872,10.133,-1.678,16.056,18.993,13.454,-4.73,5.43,19.535,6.824,24.34,25.289,4.165,24.001,19.65,-10.816,-2.166,18.165,-2.105,15.082,7.368,18.616,20.913,21.291,14.667,17.803,7.757,-10.436,14.669,19.578,24.3,11.549,6.362,18.199,11.868,25.869,13.592,8.749,-0.411,-1.398,15.853,15.59,13.025,17.021,12.573,14.013,8.673,19.622,1.0,13.342,-3.948,20.836,11.228,15.28,8.612,15.34,0.742,-0.852,2.393,32.71,20.017,7.947,22.423,1.762,8.467,8.879,15.593,18.484,9.011,3.241,14.105,14.533,13.515,10.594,1.123,7.846,11.863,4.757,31.325,11.791,10.307,1.514],[13.967,23.93,18.122,2.699,13.478,11.59,4.062,7.396,22.515,-6.78,7.728,22.917,27.237,16.168,7.077,5.204,7.635,16.217,10.577,-0.108,5.298,14.168,-3.595,23.86,8.532,5.623,24.637,18.372,24.085,18.049,7.038,19.648,-2.916,20.516,15.483,-11.119,7.874,13.778,17.288,14.822,-3.101,24.01,18.124,8.222,12.387,1.425,20.132,12.967,12.617,15.174,8.796,0.259,13.914,12.955,31.314,9.378,11.627,0.438,16.817,9.099,2.802,21.076,1.887,9.968,23.127,-7.991,23.237,1.772,23.842,15.122,27.64,9.166,12.921,2.332,2.902,6.836,23.713,6.22,7.127,12.872,11.973,6.999,17.776,14.104,17.849,11.691,13.248,23.483,5.778,-7.6,28.648,24.436,17.216,8.827,11.175,24.044,3.745,8.457,-3.464,9.028,5.606,17.532,9.548,8.501,0.815,15.955,22.359,5.707,5.911,25.554,18.665,9.965,-1.827,16.431,19.138,13.365,-4.434,5.326,18.941,6.793,24.465,25.269,3.859,23.31,19.432,-10.638,-1.713,18.348,-2.197,15.106,7.086,18.892,20.811,21.07,15.029,17.712,7.534,-10.386,15.241,19.909,24.095,12.185,6.316,18.184,12.285,25.683,13.702,8.873,-0.17,-1.498,15.603,15.848,13.026,16.892,12.328,14.134,8.947,20.199,1.252,12.942,-4.194,21.398,11.477,14.619,8.884,14.984,1.399,-1.092,2.395,32.748,19.5,7.804,22.045,2.169,8.701,8.88,15.669,17.764,8.856,3.447,14.604,14.159,14.388,10.266,0.691,8.085,11.196,4.42,31.877,11.405,9.873,1.301],[13.965,24.051,18.293,2.752,13.629,11.642,4.093,7.483,22.316,-6.818,7.658,23.008,27.016,16.209,6.956,4.976,7.93,16.34,10.542,-0.087,4.992,14.27,-3.684,23.876,8.728,5.625,24.459,18.281,24.09,17.902,7.079,19.635,-2.61,20.539,15.603,-10.974,7.71,13.859,17.341,14.775,-3.055,24.06,18.349,8.245,12.337,1.581,20.083,12.808,12.691,15.175,8.747,0.255,14.079,12.985,31.254,9.561,11.443,0.497,16.662,9.067,2.764,20.688,2.006,9.835,23.189,-8.252,22.703,1.95,23.895,15.521,27.073,9.208,12.983,2.816,3.073,6.517,23.759,6.594,7.194,12.547,12.299,6.783,17.799,14.074,17.377,11.88,13.038,23.333,5.764,-7.1,28.438,24.707,17.164,8.696,10.594,23.889,3.544,9.183,-3.689,8.662,5.445,17.837,9.504,8.226,0.471,16.014,22.433,5.473,5.942,25.555,18.527,10.338,-1.848,16.419,19.523,13.204,-4.143,5.339,18.95,6.184,24.481,25.227,3.976,22.717,19.345,-10.692,-1.201,18.314,-2.583,14.58,6.895,19.22,20.665,21.348,15.382,17.553,7.452,-10.411,15.349,19.877,23.989,12.846,6.39,17.913,12.277,25.713,13.869,9.17,-0.337,-1.59,15.701,15.318,13.238,16.809,12.36,13.928,9.033,19.649,1.603,12.991,-3.908,21.903,11.24,14.93,9.034,15.024,1.227,-0.817,2.531,32.577,19.246,8.034,21.751,2.267,9.456,9.119,15.471,17.519,9.245,2.908,14.817,13.735,14.229,10.589,0.59,8.091,10.896,4.592,31.446,11.785,9.976,0.65],[13.749,24.105,18.484,2.851,13.702,11.779,4.166,7.646,22.459,-6.786,7.749,22.995,26.882,16.177,6.852,4.721,8.237,16.43,10.378,-0.044,4.706,14.306,-3.673,23.97,8.894,5.586,24.218,18.262,24.139,17.884,6.966,19.597,-2.366,20.584,15.591,-10.864,7.622,13.838,17.369,14.76,-2.988,24.154,18.259,8.278,12.315,1.615,20.09,12.669,12.673,15.131,8.768,0.086,14.17,12.796,31.178,9.677,11.379,0.514,16.533,9.014,2.946,20.256,2.039,9.663,23.385,-8.312,22.314,2.435,24.217,15.47,26.566,9.389,13.252,2.651,3.223,6.238,24.323,6.775,7.52,12.441,12.616,6.507,18.077,14.434,17.523,12.123,12.897,22.972,5.796,-7.028,28.667,24.606,17.567,8.709,11.165,24.02,3.734,9.231,-4.386,8.714,5.207,18.065,9.282,8.588,0.136,15.326,22.419,5.318,6.178,25.759,18.661,10.562,-1.601,16.452,19.436,12.723,-4.692,5.296,19.332,6.287,24.045,25.299,4.071,23.248,19.016,-10.716,-1.244,18.185,-2.57,14.768,7.18,19.3,20.809,21.641,15.279,17.949,7.278,-10.724,15.474,19.804,24.449,12.633,6.467,18.11,12.613,25.825,14.117,9.412,-0.416,-1.292,15.314,15.713,13.5,17.055,12.834,13.481,8.836,19.557,1.97,13.212,-3.762,21.504,11.246,15.613,8.552,15.217,0.762,-0.757,2.749,32.246,19.078,8.268,21.61,2.259,9.584,9.496,15.135,17.662,9.104,2.4,14.739,14.156,13.889,10.54,0.903,7.635,10.84,4.691,30.589,11.372,9.967,1.239],[13.56,24.161,18.698,2.991,13.774,11.984,4.221,7.884,22.734,-6.759,7.848,22.902,26.831,16.118,6.778,4.6,8.443,16.396,10.178,0.043,4.594,14.175,-3.695,24.095,9.027,5.554,24.1,18.399,24.153,17.786,6.867,19.566,-2.232,20.67,15.688,-10.842,7.692,13.81,17.403,14.781,-2.952,24.238,18.21,8.206,12.2,1.49,20.242,12.71,12.804,15.167,8.729,-0.191,14.233,12.67,31.048,9.732,11.335,0.676,16.462,8.965,3.211,19.989,1.868,9.577,23.485,-7.97,22.621,2.744,24.528,15.382,26.736,9.422,12.777,2.553,3.132,6.684,24.407,6.65,7.449,12.065,12.763,6.241,18.32,14.32,18.175,12.726,13.223,23.312,6.031,-7.185,28.581,24.45,16.945,8.558,11.637,24.256,3.158,9.099,-3.859,8.744,5.168,17.777,9.23,9.0,0.039,15.484,22.425,4.987,6.348,25.727,18.61,10.786,-1.27,16.128,18.913,12.525,-4.908,5.259,19.037,6.215,23.998,25.27,3.944,23.439,18.819,-10.365,-1.489,18.112,-1.727,15.002,7.005,19.261,20.83,21.149,15.186,17.792,6.755,-11.015,15.391,19.781,24.3,11.655,6.394,18.515,12.35,25.756,13.958,9.17,-0.2,-1.226,15.241,15.83,12.848,16.82,13.139,13.797,9.13,20.211,1.944,12.713,-3.809,21.358,11.074,14.967,8.681,15.119,0.662,-0.68,2.743,31.899,18.915,8.432,20.807,2.415,9.063,8.918,15.121,17.635,8.812,2.986,14.853,13.95,13.878,10.421,0.817,7.548,10.768,4.787,30.693,11.374,9.988,1.615],[13.392,24.236,18.994,3.113,13.819,12.19,4.273,8.07,23.087,-6.805,7.857,22.821,26.845,15.978,6.709,4.424,8.529,16.236,10.045,0.171,4.725,13.966,-3.616,24.207,9.156,5.536,24.148,18.364,24.071,17.54,6.781,19.628,-2.18,20.681,15.891,-10.88,7.635,13.75,17.445,14.713,-3.034,24.165,18.135,8.028,12.017,1.362,20.49,12.611,12.975,15.258,8.72,-0.364,14.225,12.611,30.903,9.578,11.223,0.997,16.456,8.969,3.344,19.871,1.811,9.621,23.022,-7.779,23.521,2.765,24.733,15.172,27.208,9.257,12.524,3.562,3.04,7.57,23.978,6.676,7.163,12.07,12.692,6.076,18.539,14.499,18.166,13.402,13.478,23.448,5.907,-7.095,28.11,24.527,16.842,8.506,11.312,24.378,3.151,9.831,-3.296,8.538,4.722,17.816,8.967,8.534,0.476,15.481,22.44,5.112,6.244,25.836,18.434,10.701,-1.163,15.927,18.67,12.935,-4.314,5.424,19.376,6.099,24.394,25.26,3.935,22.64,18.789,-10.135,-1.418,18.067,-1.148,15.002,6.952,19.003,20.421,21.281,15.008,17.546,6.689,-10.643,15.285,19.658,23.951,11.12,6.342,18.146,12.159,25.516,14.163,9.471,-0.477,-1.384,15.69,15.499,12.857,16.7,13.106,13.74,9.256,20.33,1.726,13.182,-3.73,21.921,10.901,14.646,9.213,15.318,0.899,-0.448,2.728,32.037,18.423,8.266,20.059,2.144,9.4,8.576,15.248,17.748,9.371,3.029,14.406,13.406,13.891,10.139,0.018,7.842,10.681,4.969,31.05,11.361,9.681,1.447],[13.287,24.182,19.329,3.354,13.904,12.372,4.393,8.181,23.599,-6.862,7.846,22.82,26.813,15.761,6.636,4.232,8.62,16.231,9.909,0.355,4.706,13.741,-3.427,24.303,9.227,5.529,24.196,18.248,24.021,17.348,6.768,19.581,-2.099,20.666,16.0,-10.929,7.551,13.694,17.455,14.634,-3.14,23.922,18.045,7.926,11.749,1.358,20.734,12.59,13.039,15.275,8.818,-0.359,14.164,12.626,30.861,9.423,11.049,1.215,16.535,8.959,3.449,19.66,1.795,9.651,22.716,-7.827,23.906,2.347,24.797,15.194,27.54,9.171,12.319,3.281,3.268,7.883,24.038,6.564,6.909,12.111,12.516,6.236,18.884,14.835,18.338,13.38,13.859,23.179,6.044,-6.951,28.334,23.997,17.304,8.426,10.811,24.537,3.389,10.012,-4.047,8.726,5.162,17.969,8.739,8.495,1.041,14.895,22.277,5.367,5.905,25.931,17.727,10.381,-1.141,15.941,18.527,12.841,-3.954,5.391,19.607,6.332,24.484,25.121,3.862,22.397,18.627,-10.178,-1.167,18.332,-1.295,15.019,7.362,18.93,20.799,21.58,14.815,18.358,7.288,-10.055,15.613,19.451,24.094,11.091,6.07,17.612,11.91,25.622,14.546,9.306,-0.453,-1.614,15.531,15.17,12.452,16.65,13.073,13.6,8.603,20.168,1.108,13.04,-3.552,22.372,10.852,15.15,9.271,15.56,1.027,-0.472,2.611,32.465,18.478,7.718,20.156,1.848,9.408,8.575,15.106,17.917,9.1,2.781,14.364,13.524,14.193,10.49,-0.988,8.337,10.794,4.966,30.691,11.141,9.426,1.836],[13.221,24.062,19.757,3.42,14.077,12.472,4.673,8.179,24.011,-6.895,7.781,22.818,26.798,15.639,6.61,4.278,8.728,16.473,9.721,0.572,4.561,13.442,-3.418,24.376,9.223,5.537,24.252,18.184,23.983,17.078,6.847,19.478,-1.981,20.69,16.017,-10.908,7.527,13.629,17.445,14.567,-3.256,23.72,18.027,7.843,11.483,1.496,20.894,12.574,13.002,15.367,9.172,-0.301,14.206,12.796,30.869,9.315,10.825,1.29,16.553,8.886,3.398,19.549,1.644,9.543,22.542,-7.994,24.187,2.209,25.445,14.731,27.038,9.386,12.298,3.055,3.538,7.807,24.526,6.607,6.804,11.805,12.772,6.254,19.424,14.386,18.762,12.604,13.82,23.393,6.522,-7.17,28.567,24.433,17.011,8.51,10.559,24.234,2.988,9.915,-3.562,8.729,5.422,18.2,8.462,8.647,1.22,14.911,22.316,5.003,5.824,26.067,17.605,10.483,-0.882,16.08,18.182,12.444,-4.613,5.426,18.975,6.039,23.847,24.862,3.774,22.972,18.438,-10.786,-1.021,18.361,-1.511,15.127,7.425,18.852,20.914,21.467,14.937,18.571,7.381,-9.814,15.755,19.538,24.026,11.755,5.814,18.135,11.954,25.384,14.244,9.182,0.014,-1.519,14.966,15.078,12.182,16.598,13.099,13.229,8.575,20.595,0.804,12.284,-3.831,22.114,11.085,15.329,8.719,15.029,0.964,-0.423,3.025,32.567,18.298,7.665,20.466,2.363,8.814,9.24,15.557,17.722,8.501,2.899,14.59,14.009,14.123,10.874,-1.238,8.439,10.82,5.075,30.675,11.049,9.153,2.051],[13.159,23.965,20.193,3.155,14.038,12.526,4.824,8.161,24.306,-6.923,7.706,23.036,26.822,15.574,6.609,4.481,8.739,16.734,9.472,0.859,4.388,13.257,-3.591,24.307,9.217,5.553,24.37,18.137,23.891,16.914,6.923,19.483,-1.882,20.746,16.035,-10.868,7.479,13.493,17.501,14.358,-3.376,23.548,18.108,7.75,11.395,1.715,21.009,12.371,12.978,15.53,9.39,-0.243,14.279,12.844,31.016,9.171,10.526,1.311,16.343,8.849,3.255,19.618,1.676,9.521,22.759,-7.948,24.402,2.653,26.028,14.481,26.735,9.376,12.203,3.419,3.723,7.764,24.429,6.863,6.932,11.781,13.139,6.433,19.81,14.563,19.076,12.223,13.567,23.343,6.563,-7.699,28.535,24.783,16.881,8.362,10.378,24.167,3.164,10.064,-3.551,8.396,4.995,18.125,8.527,8.443,0.941,14.747,22.192,4.969,5.836,26.004,17.835,10.477,-0.79,16.116,17.435,11.806,-4.737,5.278,18.432,5.836,23.792,25.003,4.098,23.245,17.933,-10.882,-1.611,18.058,-0.657,14.91,7.655,18.976,20.52,20.965,14.945,18.085,7.135,-9.876,15.776,19.744,23.768,11.599,5.891,18.523,12.244,25.134,14.14,9.378,0.042,-1.599,15.242,15.669,12.372,16.818,12.759,13.11,8.789,20.487,1.291,12.741,-3.89,22.139,11.478,15.136,9.142,14.486,0.978,-0.179,2.532,32.641,18.39,8.303,20.734,2.934,9.332,9.773,15.622,18.126,8.901,2.382,14.478,13.996,13.984,11.233,-1.107,8.05,10.387,4.991,30.734,10.974,8.826,1.851],[13.071,23.994,20.391,2.974,13.932,12.505,4.778,8.176,24.556,-6.93,7.669,23.127,26.867,15.576,6.679,4.805,8.696,16.923,9.328,1.233,4.155,13.133,-3.858,24.164,9.187,5.598,24.581,18.082,23.752,16.822,6.884,19.506,-1.798,20.765,16.092,-10.854,7.473,13.425,17.493,14.314,-3.428,23.394,18.256,7.806,11.425,1.842,21.003,12.281,12.984,15.653,9.47,-0.164,14.316,12.753,31.187,9.266,10.15,1.345,16.117,8.878,3.145,19.765,1.77,9.654,22.883,-7.961,24.414,2.984,26.304,14.549,27.521,8.984,11.86,2.878,3.522,7.415,23.74,7.013,7.255,12.195,12.688,6.181,20.289,14.938,19.553,12.205,14.116,23.623,6.326,-7.948,28.385,24.402,16.653,8.236,10.154,24.698,3.753,9.981,-4.08,8.458,4.656,18.459,8.373,8.167,1.111,14.141,22.151,5.382,6.002,25.686,17.569,10.181,-0.384,16.594,16.687,11.661,-4.244,5.126,18.78,5.757,24.604,25.175,3.938,22.882,17.989,-10.242,-1.745,18.098,-0.354,14.86,7.506,19.043,20.79,20.9,14.691,18.273,6.902,-9.998,15.505,20.001,23.533,10.758,6.042,18.183,11.863,24.894,14.363,9.05,-0.009,-1.759,14.884,15.44,12.476,17.258,12.708,13.161,8.129,20.702,2.081,12.62,-4.083,22.363,11.276,15.124,10.176,14.988,1.346,-0.202,1.915,32.22,18.413,8.803,20.158,2.921,9.357,9.442,15.004,17.499,8.669,2.217,14.825,13.542,14.602,11.016,-1.456,7.642,9.703,4.631,31.318,11.34,8.861,1.804],[13.05,24.067,20.456,2.97,13.869,12.458,4.596,8.199,24.752,-7.078,7.708,23.042,27.062,15.552,6.798,5.182,8.555,17.068,9.176,1.671,3.939,13.008,-4.024,24.244,9.21,5.62,24.793,18.086,23.697,16.643,6.742,19.595,-1.677,20.696,16.129,-10.744,7.531,13.347,17.471,14.318,-3.546,23.185,18.481,7.807,11.401,1.898,20.927,12.205,13.008,15.877,9.455,-0.074,14.452,12.647,31.312,9.321,9.762,1.293,15.859,8.906,3.002,19.778,1.736,9.861,22.825,-7.99,24.558,2.55,26.334,14.732,27.668,8.542,11.606,2.596,3.376,7.386,23.509,7.084,7.471,12.247,12.278,5.718,20.876,14.947,19.711,12.421,13.538,23.471,6.295,-7.623,28.661,24.633,16.706,8.479,10.656,24.171,3.668,10.02,-4.4,8.448,4.496,18.745,8.295,8.432,1.359,14.412,22.123,5.808,6.204,25.873,17.123,9.965,0.262,16.49,16.503,11.702,-4.795,4.892,19.278,5.628,24.929,24.837,3.716,22.957,18.217,-10.729,-1.682,18.323,-0.653,15.136,6.891,19.234,20.934,21.536,14.717,18.513,6.465,-10.202,15.437,20.157,23.511,10.765,5.856,18.096,11.79,24.739,14.484,9.139,0.224,-1.877,14.936,15.201,12.369,17.314,12.873,13.153,8.044,20.598,1.835,12.523,-3.918,22.208,11.07,15.451,10.193,15.193,0.992,-0.132,2.633,32.125,18.734,8.515,20.027,2.84,9.238,8.95,14.511,17.059,9.113,2.642,14.74,13.257,15.215,10.874,-1.575,7.969,8.998,4.701,31.16,11.46,8.572,2.018],[13.08,24.094,20.577,3.045,13.872,12.357,4.411,8.145,24.825,-7.313,7.803,23.046,27.35,15.461,6.931,5.441,8.415,17.09,9.144,1.906,3.896,12.943,-4.082,24.436,9.24,5.775,24.918,18.196,23.693,16.43,6.479,19.633,-1.575,20.599,16.11,-10.607,7.531,13.246,17.458,14.334,-3.686,22.952,18.692,7.752,11.322,1.816,20.878,12.154,13.147,16.055,9.366,-0.06,14.579,12.635,31.234,9.288,9.358,1.207,15.624,8.972,2.97,19.767,1.738,9.901,22.882,-8.048,24.776,2.91,26.138,14.681,27.412,9.23,11.78,2.864,3.509,8.189,23.638,7.074,7.311,12.011,12.701,5.587,21.097,14.805,19.291,12.36,13.648,23.557,6.205,-7.039,28.873,24.668,17.129,8.479,10.725,23.86,3.749,9.668,-4.317,8.22,4.541,18.594,8.452,8.6,1.587,14.263,21.99,6.433,6.034,26.055,17.065,10.334,0.394,16.12,16.525,11.643,-5.32,4.715,19.417,5.077,24.941,24.632,4.071,23.236,17.746,-11.469,-1.328,18.34,-0.675,14.964,7.175,19.988,20.945,22.064,14.555,18.501,6.769,-10.054,15.758,20.357,23.491,10.741,5.978,18.023,12.067,24.586,14.533,9.368,0.108,-2.092,15.139,15.586,11.721,17.524,12.862,13.186,8.402,19.993,1.348,12.473,-4.165,22.261,10.967,15.634,9.61,14.86,0.603,-0.332,2.941,32.444,18.831,8.354,20.131,2.359,9.407,9.041,14.554,17.182,9.484,2.719,15.084,13.19,15.674,10.948,-1.722,8.031,8.914,4.649,30.73,11.629,8.028,2.01],[13.103,24.055,20.598,3.148,13.867,12.366,4.257,8.206,24.824,-7.436,7.985,23.181,27.53,15.341,7.067,5.66,8.324,17.057,9.284,2.082,3.819,12.74,-4.104,24.652,9.239,6.037,25.004,18.401,23.634,16.293,6.169,19.621,-1.554,20.618,16.094,-10.573,7.54,13.259,17.372,14.441,-3.831,22.848,18.952,7.803,11.308,1.558,20.795,12.067,13.367,16.179,9.205,-0.302,14.669,12.657,31.016,9.305,9.013,1.069,15.497,9.083,2.989,19.774,1.712,9.847,23.011,-7.966,24.772,3.407,25.829,14.234,27.689,9.293,12.245,3.044,3.374,8.698,24.396,7.169,7.108,11.872,12.711,5.615,20.977,14.565,19.025,12.241,13.723,23.928,6.061,-7.31,28.765,24.455,16.809,8.593,10.313,24.005,4.074,9.474,-4.094,8.408,5.068,18.66,8.225,8.452,1.426,13.991,21.932,6.32,5.871,26.458,17.182,10.622,0.745,16.513,16.59,11.42,-4.734,4.497,19.284,5.116,24.52,24.964,4.372,23.489,17.525,-10.503,-1.149,18.165,-0.202,15.128,7.497,20.408,20.769,21.658,14.212,18.456,7.14,-9.846,15.708,20.284,23.169,10.687,6.137,18.146,11.724,24.386,14.668,9.359,-0.178,-1.999,14.735,15.79,12.215,17.795,12.711,12.93,8.743,20.432,1.372,12.222,-4.615,22.332,11.05,15.722,9.097,14.898,1.118,-0.448,2.461,32.128,18.813,8.628,19.952,2.445,9.134,9.43,14.584,17.076,8.888,2.244,15.173,13.574,15.391,11.071,-1.845,7.936,8.992,4.606,30.811,11.659,7.746,1.621],[13.186,24.101,20.475,3.284,13.889,12.396,4.168,8.368,24.853,-7.463,8.19,23.306,27.631,15.201,7.163,5.778,8.139,17.094,9.355,2.255,3.902,12.498,-3.92,24.878,9.214,6.172,25.021,18.602,23.574,16.338,5.946,19.564,-1.598,20.748,16.084,-10.404,7.525,13.265,17.422,14.524,-3.899,22.768,19.046,7.941,11.33,1.257,20.953,12.104,13.486,16.158,9.09,-0.524,14.742,12.825,30.717,9.216,8.826,0.842,15.447,9.189,3.01,19.743,1.556,9.713,22.742,-8.222,24.688,3.021,25.97,13.985,27.846,8.854,11.924,2.966,3.01,8.201,24.819,7.414,7.157,12.059,12.405,6.011,20.598,14.415,19.265,11.985,13.676,24.004,5.866,-8.556,28.997,24.874,16.394,8.619,10.886,24.72,4.011,9.596,-4.177,8.726,4.977,18.541,8.301,8.534,1.147,13.994,22.15,6.073,6.632,26.567,17.284,10.562,1.389,16.546,17.019,10.902,-4.886,4.165,19.508,4.917,24.368,25.133,4.354,23.714,17.561,-10.294,-1.551,18.103,-0.339,15.104,6.894,20.314,20.713,21.038,14.408,18.089,6.851,-9.967,15.773,20.799,22.928,11.11,5.99,18.13,11.591,24.458,14.79,9.413,-0.569,-2.121,15.05,15.688,12.37,18.102,13.028,12.755,8.602,20.599,1.613,12.825,-4.614,22.466,11.12,15.831,8.862,15.035,0.916,-0.277,2.181,32.001,18.348,8.567,20.153,2.779,8.649,9.724,14.161,16.885,8.464,2.075,15.113,13.539,14.673,10.927,-1.817,8.404,8.62,4.416,31.18,11.526,7.458,1.78],[13.172,24.155,20.273,3.338,13.793,12.335,4.031,8.484,24.993,-7.593,8.319,23.462,27.723,15.037,7.22,5.598,7.962,17.031,9.474,2.347,3.98,12.342,-3.725,25.081,9.218,6.277,25.067,18.796,23.616,16.515,5.828,19.457,-1.704,20.92,16.101,-10.196,7.604,13.351,17.435,14.64,-3.943,22.625,19.026,8.01,11.44,1.029,21.313,12.313,13.633,16.036,8.977,-0.659,14.746,13.015,30.581,8.926,8.653,0.657,15.403,9.185,2.922,19.56,1.369,9.679,23.008,-8.192,24.54,2.89,26.063,13.928,27.891,8.684,11.772,3.52,2.967,7.738,24.362,7.82,7.369,12.205,12.38,6.206,19.97,14.549,19.685,12.477,13.923,23.892,5.884,-9.041,29.167,24.967,16.377,8.894,10.807,25.056,3.797,9.528,-3.793,8.494,4.792,18.809,9.028,8.156,1.362,13.622,21.985,6.39,6.725,26.854,17.545,10.172,1.476,16.186,17.433,10.716,-4.975,3.951,19.904,5.16,24.41,25.085,4.784,23.413,17.854,-10.512,-1.88,18.383,-0.636,14.894,6.164,19.847,21.017,21.064,14.612,18.396,6.599,-9.396,15.84,20.819,22.876,10.957,6.074,18.007,12.027,24.402,14.863,9.268,-0.821,-2.406,15.528,15.496,11.841,18.512,13.264,13.278,8.592,20.897,1.089,12.664,-4.244,22.592,11.339,15.514,8.857,14.925,0.178,-0.6,1.793,31.849,18.511,8.688,20.325,2.796,8.691,9.21,14.364,16.772,9.009,1.875,15.225,13.49,14.498,10.663,-1.425,8.195,8.083,4.357,30.738,11.472,7.711,2.006],[13.043,24.147,20.155,3.403,13.743,12.215,3.934,8.485,25.083,-7.686,8.355,23.517,27.687,14.863,7.363,5.263,7.86,16.903,9.699,2.326,3.981,12.149,-3.618,25.32,9.161,6.359,24.954,19.045,23.682,16.764,5.763,19.53,-1.821,20.986,16.16,-10.069,7.713,13.571,17.381,14.739,-3.928,22.522,18.918,8.03,11.629,0.858,21.739,12.27,13.806,15.991,8.822,-0.758,14.619,13.159,30.454,8.643,8.556,0.566,15.434,9.075,2.687,19.399,1.14,9.712,23.543,-8.649,24.319,3.063,26.053,13.7,28.253,9.276,12.022,3.031,2.834,7.58,23.932,8.161,7.197,11.846,12.233,6.197,19.417,14.768,19.11,12.708,13.774,23.961,5.651,-8.25,28.991,25.145,16.315,9.135,10.952,24.892,3.556,9.291,-3.596,8.6,4.675,18.707,8.775,8.098,1.864,13.397,22.01,6.269,6.692,27.087,17.541,10.405,1.479,16.249,17.407,10.969,-4.563,4.049,20.269,5.527,24.76,24.674,4.998,23.352,17.987,-9.793,-1.464,18.255,-0.506,15.296,6.623,19.584,20.948,21.679,14.824,18.641,6.733,-8.64,15.599,20.6,22.751,11.027,6.297,17.916,12.1,24.189,15.272,9.472,-0.766,-2.281,15.126,15.753,12.516,19.187,13.075,13.472,8.76,21.147,0.621,12.771,-4.325,23.27,11.658,15.629,9.023,14.683,0.069,-0.929,2.486,31.493,18.532,8.568,20.263,2.178,8.637,8.606,14.865,16.884,8.993,2.032,14.859,13.924,15.147,10.505,-1.6,8.228,8.134,4.116,31.042,11.401,7.338,1.894],[12.825,24.015,19.964,3.38,13.687,11.964,3.779,8.523,24.959,-7.683,8.26,23.501,27.743,14.822,7.484,4.979,7.827,16.949,9.866,2.267,3.932,11.999,-3.539,25.504,9.096,6.324,24.782,19.297,23.641,16.887,5.956,19.708,-1.897,20.988,16.192,-9.689,7.793,13.862,17.326,14.726,-3.862,22.566,18.871,8.072,11.909,0.791,22.244,12.297,13.881,15.951,8.709,-0.887,14.413,13.434,30.338,8.529,8.545,0.618,15.618,8.977,2.456,19.287,0.953,9.761,23.482,-8.807,24.572,3.431,25.968,13.483,27.804,9.334,11.942,2.448,2.651,8.266,24.73,8.076,7.086,11.43,12.505,6.35,19.453,14.578,18.65,12.958,13.376,24.161,5.469,-8.207,28.554,25.091,15.848,9.149,11.327,25.115,3.381,9.09,-4.062,8.39,4.656,18.597,8.469,8.623,2.069,13.601,22.006,5.824,6.952,27.118,17.575,10.884,1.415,16.085,17.502,10.694,-4.626,4.117,20.04,5.427,24.519,24.871,5.184,23.353,18.327,-10.226,-1.348,18.116,-0.42,15.629,7.025,19.373,20.892,22.042,14.715,18.498,6.894,-8.53,16.13,20.329,22.866,11.431,6.44,18.018,12.115,24.285,15.022,9.642,-0.757,-2.179,15.101,15.854,12.025,19.585,13.386,13.697,9.437,21.353,0.618,13.055,-4.259,23.398,11.682,15.904,9.055,14.508,0.428,-0.984,2.59,31.272,18.286,8.557,20.001,1.221,8.088,8.963,14.407,17.205,8.299,2.467,15.072,13.859,15.705,10.207,-2.176,8.361,8.341,4.03,31.11,11.433,7.071,1.377],[12.602,23.902,19.77,3.304,13.518,11.785,3.542,8.61,24.729,-7.633,8.219,23.472,27.691,14.788,7.441,4.889,7.84,17.062,9.964,2.202,3.906,11.919,-3.536,25.586,9.07,6.364,24.668,19.371,23.642,16.924,6.158,19.796,-2.033,20.955,16.261,-9.271,7.809,14.068,17.312,14.714,-3.907,22.75,18.95,8.195,12.245,0.735,22.52,12.425,13.893,16.008,8.585,-0.919,14.243,13.588,30.417,8.399,8.599,0.65,15.786,8.957,2.362,19.265,0.894,9.903,23.21,-8.345,24.668,3.295,25.625,13.342,27.459,8.958,11.534,2.892,2.484,8.396,24.4,8.02,7.464,11.222,12.298,6.658,19.825,14.628,18.627,13.114,12.949,24.392,5.427,-8.464,28.819,24.533,16.088,9.196,11.416,25.396,3.082,9.202,-3.802,8.357,4.833,18.799,9.139,8.54,1.815,13.393,22.165,5.905,6.891,27.14,17.697,10.841,1.017,16.315,17.56,10.485,-4.949,4.504,20.066,5.037,23.882,25.183,4.913,23.215,18.311,-9.547,-1.465,18.489,-0.579,15.528,6.986,19.206,21.051,21.663,14.758,18.025,6.637,-8.902,16.399,20.087,22.941,12.07,6.399,18.057,12.453,24.415,15.053,9.541,-0.974,-2.189,15.471,15.576,11.538,19.446,13.408,13.997,9.449,21.922,1.089,12.922,-3.811,23.498,11.739,15.626,8.652,14.8,0.062,-0.711,1.65,30.878,17.775,8.7,20.106,0.89,8.152,9.312,14.682,17.124,8.457,2.176,14.941,13.833,15.536,10.228,-2.549,8.215,7.985,3.913,30.159,11.705,7.186,1.441],[12.333,23.773,19.712,3.267,13.406,11.755,3.251,8.66,24.552,-7.543,8.201,23.337,27.516,14.758,7.403,4.999,7.898,17.149,10.005,2.049,3.851,12.029,-3.516,25.664,9.011,6.383,24.469,19.302,23.782,16.947,6.341,19.898,-2.19,20.841,16.294,-8.884,7.757,14.146,17.309,14.709,-3.838,22.864,18.98,8.21,12.585,0.625,22.581,12.426,13.901,16.016,8.502,-0.896,14.048,13.698,30.364,8.298,8.454,0.731,15.799,8.988,2.079,19.227,0.954,10.1,23.535,-8.384,23.931,3.007,25.443,13.667,27.032,9.291,11.167,3.036,2.78,7.804,23.646,7.826,7.933,11.162,11.571,6.722,20.302,14.454,18.594,13.216,13.235,24.382,5.091,-7.73,28.951,24.605,16.306,9.246,11.648,25.405,3.214,9.227,-3.336,8.305,5.003,18.935,9.689,7.927,1.372,13.429,22.272,5.927,6.846,27.281,17.752,10.826,0.43,16.442,17.524,10.526,-4.733,4.585,20.401,5.105,24.074,25.017,4.733,22.781,18.304,-9.104,-1.738,18.674,-0.971,15.625,7.121,19.105,21.115,21.318,15.358,17.933,6.57,-8.948,16.389,20.597,23.218,12.04,6.535,18.144,12.514,24.603,15.235,9.312,-0.829,-2.325,15.349,15.958,12.612,19.187,12.896,14.248,9.146,22.099,1.278,12.998,-4.175,23.765,12.056,15.606,8.263,14.819,0.083,-0.682,1.588,31.401,18.0,8.577,20.551,1.549,8.422,9.376,15.123,17.342,8.924,1.37,14.772,14.126,14.827,10.175,-2.346,8.294,7.532,3.818,31.087,11.923,7.337,1.628],[12.078,23.605,19.782,3.201,13.437,11.805,3.154,8.559,24.551,-7.439,8.303,23.192,27.23,14.916,7.473,5.168,7.846,17.276,10.103,1.759,3.9,12.386,-3.312,25.765,8.801,6.305,24.206,19.213,23.93,16.976,6.539,19.935,-2.365,20.643,16.307,-8.664,7.735,14.203,17.44,14.82,-3.661,22.817,18.953,8.128,12.661,0.619,22.578,12.571,13.941,15.912,8.483,-0.784,13.859,13.771,30.504,8.28,8.245,0.789,15.752,9.003,1.823,19.291,1.039,10.256,23.269,-8.531,24.333,3.302,25.157,13.492,26.743,9.387,11.015,2.22,2.197,7.568,23.504,8.053,7.653,10.984,11.231,6.561,20.448,14.594,18.906,13.492,13.447,23.978,4.927,-6.906,28.571,24.764,16.386,9.233,11.944,25.139,3.412,9.485,-3.711,8.339,4.6,19.018,9.154,7.843,1.537,13.625,22.202,5.961,6.764,27.581,17.889,10.68,0.049,16.269,17.575,10.664,-4.541,4.805,20.096,5.636,24.749,25.062,4.569,22.489,18.099,-9.183,-2.125,18.6,-0.786,15.312,6.656,18.799,21.319,21.357,15.386,18.586,6.687,-8.398,16.487,20.573,23.108,12.04,6.236,18.17,12.518,24.557,15.186,9.325,-0.706,-1.952,15.121,16.069,12.96,19.357,12.729,14.15,8.801,21.847,1.041,12.69,-4.056,23.719,12.046,15.683,8.29,14.05,0.018,-0.406,1.858,31.525,18.588,8.66,20.22,2.178,8.352,9.335,14.741,17.382,8.832,1.913,14.773,13.932,13.793,10.21,-1.895,8.436,7.417,3.639,31.176,12.04,7.273,1.787],[11.947,23.312,19.976,3.124,13.518,11.848,3.145,8.293,24.826,-7.311,8.426,23.122,26.848,14.97,7.651,5.31,7.779,17.369,10.216,1.432,4.093,12.658,-3.126,25.921,8.565,6.098,24.099,19.14,24.111,16.969,6.642,19.884,-2.568,20.551,16.317,-8.642,7.765,14.245,17.754,14.965,-3.472,22.579,19.037,7.878,12.502,0.725,22.476,12.733,13.944,15.767,8.511,-0.607,13.493,13.684,30.576,8.306,8.185,0.702,15.537,8.989,1.714,19.434,1.31,10.313,22.867,-8.485,24.609,3.297,25.5,13.679,26.86,9.117,10.703,1.948,2.041,7.956,23.876,8.384,7.726,10.664,11.195,6.448,20.476,14.683,18.679,13.684,13.307,23.428,4.94,-7.074,28.244,24.617,16.525,8.994,11.955,24.792,3.5,9.35,-3.89,8.133,4.266,18.991,9.301,8.243,1.374,14.336,22.466,6.299,6.653,27.66,18.033,10.377,-0.116,16.277,17.296,11.188,-4.417,4.739,19.856,5.679,24.307,25.177,4.814,22.439,17.931,-9.048,-2.183,18.526,-0.98,15.583,6.971,18.889,20.91,21.109,15.078,18.792,6.884,-7.943,16.575,20.247,23.052,12.334,6.074,18.443,12.435,24.219,14.947,9.501,-0.579,-1.579,15.582,15.932,12.355,19.769,13.243,14.099,8.907,21.607,0.975,13.342,-3.515,23.946,11.889,15.659,8.632,14.195,-0.039,-0.44,1.499,31.914,18.895,8.824,20.131,2.46,7.641,9.385,14.819,17.225,8.419,2.468,14.465,14.207,13.479,9.886,-2.052,8.567,7.584,3.495,30.517,11.942,7.085,2.067],[11.816,23.041,20.169,3.082,13.627,11.884,3.191,7.933,25.16,-7.258,8.548,22.943,26.564,14.894,7.795,5.534,7.718,17.434,10.407,1.232,4.1,12.776,-3.076,26.089,8.455,6.011,24.128,19.058,24.186,17.017,6.609,19.837,-2.616,20.726,16.384,-8.711,7.874,14.259,18.007,15.054,-3.227,22.319,19.124,7.691,12.416,0.819,22.307,12.809,13.941,15.618,8.478,-0.556,13.212,13.57,30.335,8.18,8.316,0.547,15.518,9.01,1.69,19.554,1.662,10.25,23.247,-7.996,24.174,3.01,25.819,14.129,26.377,9.154,10.463,2.32,2.337,8.619,23.407,7.951,8.046,10.835,11.081,6.402,20.267,14.289,18.757,13.628,13.152,24.006,5.056,-8.133,28.261,24.136,16.453,9.113,12.05,24.949,3.787,8.953,-3.12,7.557,4.617,19.1,9.728,8.53,1.064,14.365,22.687,6.473,6.718,27.83,17.943,10.265,-0.42,16.599,17.306,11.774,-4.257,4.944,19.765,5.621,23.568,25.26,4.395,22.539,18.083,-9.078,-2.324,18.42,-0.831,15.787,7.498,19.094,20.811,20.65,14.831,18.688,6.803,-8.887,16.354,20.928,22.889,12.524,6.104,18.817,12.385,23.847,15.4,9.535,-0.212,-1.73,15.559,16.382,12.454,19.247,13.521,14.036,8.97,21.762,1.177,13.242,-3.795,23.978,11.763,15.48,8.391,14.308,0.103,-0.969,1.06,31.854,18.988,8.446,20.724,2.491,8.003,9.631,14.356,17.289,8.245,2.877,14.257,14.126,13.809,10.116,-2.303,8.566,7.153,3.582,30.723,12.057,7.315,1.663],[11.682,22.978,20.313,3.095,13.672,11.85,3.315,7.627,25.43,-7.339,8.706,22.789,26.42,14.821,7.858,5.891,7.711,17.641,10.488,1.164,4.02,12.924,-3.051,26.201,8.393,5.916,24.132,19.037,24.092,17.188,6.705,19.828,-2.618,20.842,16.392,-8.772,8.001,14.191,18.175,15.162,-3.098,22.188,19.032,7.6,12.392,1.02,22.205,12.627,14.04,15.48,8.466,-0.509,13.219,13.491,30.136,8.074,8.468,0.361,15.603,9.049,1.758,19.695,1.951,10.202,22.737,-8.099,24.748,2.545,26.071,13.761,26.101,8.632,10.374,2.405,2.241,8.705,22.766,6.847,8.336,10.969,10.89,6.591,19.75,14.708,18.944,13.318,13.107,24.061,4.817,-8.136,27.832,23.866,16.451,9.588,12.065,25.559,4.157,8.97,-2.47,7.061,4.988,19.207,9.484,8.196,1.211,14.336,22.491,6.674,6.618,27.91,18.022,9.969,-0.654,16.895,17.173,11.331,-3.911,4.896,19.52,5.625,23.942,25.439,4.123,22.993,18.362,-9.271,-2.507,18.261,-0.908,15.625,6.977,19.439,20.886,20.754,14.958,18.863,6.927,-8.583,16.94,20.711,22.701,12.478,6.105,18.724,12.445,23.907,15.544,9.562,-0.341,-1.23,15.449,16.348,12.659,19.186,13.372,14.133,8.695,21.67,0.95,13.156,-3.485,23.611,11.548,15.056,7.966,13.614,0.272,-1.292,0.854,31.018,18.524,8.287,20.785,2.639,8.331,9.491,14.506,17.198,7.755,3.153,14.131,13.641,13.715,10.264,-2.371,8.43,6.915,3.479,30.621,12.103,7.733,1.003],[11.66,22.838,20.13,3.128,13.641,11.725,3.299,7.322,25.701,-7.364,8.777,22.63,26.284,14.813,7.932,6.198,7.708,17.887,10.214,1.316,3.996,12.907,-2.963,26.159,8.242,5.794,24.227,18.976,23.971,17.36,6.824,19.785,-2.692,20.772,16.51,-8.772,8.008,14.083,18.307,15.166,-2.978,22.332,18.849,7.563,12.486,1.234,21.951,12.4,14.115,15.276,8.495,-0.328,13.353,13.441,29.977,8.018,8.517,0.24,15.718,9.064,1.745,19.691,2.112,10.05,22.502,-8.779,25.267,2.491,26.268,13.428,26.57,8.392,10.509,2.374,2.234,8.22,23.447,7.09,8.119,10.574,10.973,7.118,19.187,14.654,18.755,13.27,13.165,23.828,5.201,-7.64,27.871,23.795,16.22,9.698,11.84,25.283,4.441,9.197,-2.657,6.995,4.809,19.59,9.738,7.907,1.548,14.371,22.189,7.19,6.309,27.943,18.104,9.891,-0.443,16.701,17.212,11.337,-4.037,5.272,19.797,5.271,24.589,25.04,4.012,22.984,18.803,-9.113,-2.243,18.417,-1.122,15.307,6.627,19.2,21.065,21.04,15.163,19.208,7.418,-7.755,17.735,20.187,22.612,11.613,6.001,18.244,12.329,24.029,15.545,9.817,-0.246,-1.156,15.763,16.328,12.593,19.693,13.226,13.891,7.771,21.626,1.198,13.234,-3.213,23.732,11.516,15.227,7.969,13.419,0.106,-1.453,1.485,30.796,18.13,9.023,20.269,3.11,7.954,10.215,15.01,17.563,8.007,2.856,14.008,13.84,13.731,10.3,-2.135,8.112,7.205,3.484,30.672,11.912,7.948,1.089],[11.621,22.782,19.806,3.251,13.433,11.647,3.366,7.214,26.018,-7.276,8.583,22.53,26.258,14.795,8.095,6.432,7.674,17.906,9.928,1.486,3.735,12.826,-2.786,25.819,8.174,5.713,24.426,19.059,23.88,17.512,7.057,19.797,-2.661,20.671,16.705,-8.796,7.943,13.982,18.286,15.125,-2.896,22.544,18.624,7.453,12.61,1.493,21.744,12.407,14.088,15.074,8.566,-0.168,13.405,13.494,29.929,8.066,8.598,0.089,16.033,9.067,1.75,19.6,2.253,10.014,22.533,-8.64,24.909,3.085,25.769,13.57,26.411,8.467,10.614,2.345,1.983,8.685,23.544,7.096,7.918,10.366,11.273,7.271,19.075,14.481,18.365,13.63,13.045,22.925,4.996,-7.697,27.899,24.055,16.171,9.9,11.584,25.171,4.571,9.141,-3.478,6.918,4.551,19.599,9.176,7.82,1.628,14.417,22.132,7.172,6.514,27.788,17.953,9.813,-0.215,17.326,17.196,11.51,-4.128,5.433,19.889,5.119,24.062,24.572,3.933,22.763,18.964,-9.134,-2.337,18.298,-0.768,15.58,6.643,18.771,20.56,20.979,14.989,19.454,7.246,-7.587,17.579,20.105,22.882,11.47,5.722,18.582,12.193,24.108,15.919,9.583,0.097,-1.148,15.786,16.49,12.39,19.182,13.17,13.577,7.333,21.347,1.714,12.785,-3.3,23.676,11.628,15.749,8.518,14.261,0.289,-0.805,1.875,31.067,17.911,9.415,20.193,3.606,7.427,10.745,14.961,17.769,8.187,2.654,13.76,14.133,13.888,10.255,-1.698,8.072,7.271,3.444,30.727,11.519,7.806,1.356],[11.573,22.815,19.666,3.377,13.181,11.664,3.254,7.236,26.056,-7.127,8.44,22.341,26.249,14.82,8.235,6.49,7.593,17.817,9.662,1.589,3.446,12.8,-2.637,25.512,8.209,5.756,24.347,19.269,23.752,17.602,7.201,19.767,-2.42,20.573,16.698,-8.856,7.736,13.846,18.292,15.113,-2.98,22.596,18.311,7.347,12.761,1.785,21.682,12.508,13.872,14.935,8.747,-0.086,13.479,13.587,30.025,8.123,8.645,0.131,16.316,9.12,1.819,19.462,2.449,10.046,22.689,-8.206,25.226,3.374,26.526,13.619,26.294,8.37,10.559,2.579,2.16,8.464,23.343,7.313,8.487,10.626,11.68,7.097,19.27,14.243,18.573,13.847,12.907,22.49,4.979,-7.828,27.987,24.031,16.285,9.929,11.157,25.206,4.741,8.682,-3.46,7.045,4.14,19.641,8.498,7.861,1.348,14.326,22.007,7.235,6.533,27.248,17.688,9.928,-0.219,17.289,17.469,11.762,-3.645,5.248,19.367,5.016,24.152,24.774,3.98,23.288,18.435,-9.607,-2.677,18.007,-0.657,15.726,7.135,19.089,20.394,21.018,14.724,18.409,6.856,-7.924,17.599,20.109,22.665,11.796,5.765,19.139,12.259,24.404,15.606,9.551,0.551,-1.089,15.392,16.255,12.361,18.651,13.097,13.867,7.582,21.367,1.92,13.119,-3.11,23.353,11.756,15.557,8.839,14.68,0.662,-0.816,1.514,31.267,18.478,8.687,20.621,3.947,7.626,10.808,15.259,17.843,7.925,3.09,13.75,13.881,13.792,10.257,-1.398,8.021,7.589,3.679,30.586,11.686,7.704,1.072],[11.639,22.901,19.715,3.415,13.038,11.698,3.204,7.285,26.067,-7.009,8.53,22.054,26.229,14.925,8.307,6.411,7.537,17.732,9.469,1.516,3.414,12.93,-2.495,25.464,8.264,5.808,24.282,19.433,23.711,17.516,7.249,19.71,-2.249,20.437,16.602,-9.063,7.473,13.644,18.292,14.982,-2.917,22.468,18.138,7.392,12.95,2.056,21.538,12.672,13.601,14.837,8.875,-0.018,13.578,13.494,30.168,8.005,8.71,0.205,16.459,9.129,1.959,19.524,2.636,10.178,22.128,-8.077,25.478,3.114,26.34,13.71,26.097,8.302,10.202,2.525,2.266,8.172,23.181,7.606,7.833,10.785,11.688,7.195,19.084,14.083,18.635,13.87,12.94,22.321,4.966,-7.445,28.007,23.735,16.207,9.912,10.789,24.881,4.773,8.709,-2.84,7.461,3.707,19.234,8.611,7.74,1.149,14.071,22.027,7.558,6.043,27.3,17.778,10.16,-0.071,16.807,17.631,11.14,-3.398,5.372,19.841,5.021,23.746,25.016,4.312,23.434,18.059,-9.234,-2.064,17.99,-0.475,15.558,7.291,19.437,20.572,21.683,14.651,18.112,7.002,-8.783,17.566,19.703,22.574,12.374,6.182,18.927,12.076,24.201,14.968,9.428,0.965,-1.285,15.338,16.416,12.355,18.569,12.823,14.281,8.167,21.399,1.874,13.242,-3.111,23.336,11.622,14.986,8.641,14.5,0.582,-1.107,1.268,31.173,18.944,8.218,20.673,4.158,8.417,10.128,15.216,18.134,7.615,3.353,13.846,13.981,13.767,10.643,-1.352,8.09,7.878,3.729,30.621,12.045,8.052,1.177],[11.752,22.848,19.771,3.396,13.207,11.55,3.216,7.387,26.085,-6.924,8.519,21.775,26.13,15.171,8.442,6.458,7.552,17.6,9.38,1.319,3.529,12.975,-2.322,25.531,8.269,5.815,24.212,19.629,23.722,17.314,7.163,19.629,-2.129,20.348,16.403,-9.311,7.285,13.427,18.205,14.883,-2.653,22.288,18.068,7.531,13.215,2.239,21.367,12.823,13.282,14.844,8.94,-0.055,13.65,13.344,30.32,7.845,8.824,0.213,16.432,9.151,2.076,19.803,2.798,10.281,22.421,-8.353,25.086,3.042,26.253,13.698,26.126,8.337,10.287,2.646,2.012,8.775,23.078,7.197,7.916,11.093,11.249,7.146,18.766,14.177,18.76,13.112,13.135,22.413,4.95,-7.428,27.898,23.411,16.02,10.029,10.899,24.93,4.658,9.142,-2.371,7.726,3.788,18.995,8.819,7.769,0.897,13.99,22.173,7.358,6.011,27.294,18.292,10.116,-0.127,16.815,17.976,11.264,-3.557,5.389,20.3,5.149,23.764,24.939,4.096,22.829,17.961,-9.704,-1.237,18.177,-0.631,15.322,7.377,19.866,20.419,21.682,14.56,19.379,7.028,-8.723,17.262,19.448,22.849,12.951,6.117,18.352,11.747,23.741,14.898,8.916,0.768,-0.799,15.73,16.358,13.343,18.687,12.51,14.348,8.218,21.356,1.826,12.767,-3.424,22.874,11.482,14.886,8.443,14.356,0.663,-1.237,1.682,30.902,18.582,8.575,20.42,4.434,8.335,9.739,15.03,17.841,7.594,3.007,13.755,14.006,14.102,10.729,-1.647,8.157,7.454,3.757,30.961,12.105,8.375,1.597],[11.82,22.724,19.83,3.447,13.366,11.376,3.236,7.391,26.029,-6.946,8.544,21.71,26.023,15.31,8.556,6.61,7.563,17.4,9.432,1.122,3.588,13.08,-2.112,25.473,8.296,5.636,24.042,19.76,23.782,17.136,7.139,19.436,-2.012,20.333,16.161,-9.564,7.196,13.258,18.111,14.976,-2.372,22.258,18.093,7.521,13.441,2.206,21.262,12.879,12.965,14.978,9.001,-0.233,13.78,13.295,30.414,7.678,8.852,0.209,16.394,9.283,2.277,19.948,2.922,10.265,22.722,-8.256,25.078,2.949,26.305,14.18,26.53,8.94,10.842,2.919,1.882,8.452,23.311,7.138,8.056,11.309,10.821,7.418,18.681,14.78,18.633,12.711,12.831,22.394,4.783,-8.017,27.658,23.325,16.536,10.173,11.211,25.127,4.807,9.093,-2.123,7.413,4.608,18.895,8.959,7.865,0.805,14.5,21.971,7.401,6.224,27.36,18.217,10.13,-0.634,16.797,18.012,11.622,-3.808,5.307,20.425,5.0,24.322,24.777,3.813,22.359,18.241,-9.77,-1.297,18.147,-0.596,15.035,7.174,20.129,20.175,20.825,14.1,19.055,6.805,-8.303,17.169,19.744,22.725,13.195,6.068,18.332,11.703,23.926,14.582,9.107,0.441,-0.919,16.121,15.857,12.854,18.779,12.36,15.042,7.959,21.018,2.069,12.88,-2.963,22.877,11.42,14.872,8.435,14.465,0.838,-1.009,2.39,31.374,18.573,9.011,20.359,4.382,7.734,9.981,15.24,18.06,7.964,3.091,13.862,13.757,13.708,10.567,-1.662,7.81,7.376,4.127,30.754,11.913,8.158,1.367],[11.973,22.699,19.756,3.529,13.342,11.286,3.224,7.381,25.999,-7.076,8.536,21.918,26.041,15.419,8.687,6.707,7.445,17.136,9.633,0.93,3.694,13.268,-2.124,25.361,8.404,5.292,23.872,19.794,23.822,17.06,7.166,19.147,-1.927,20.278,16.15,-9.632,7.377,13.094,17.853,15.113,-2.242,22.452,18.269,7.441,13.655,2.17,21.295,12.729,12.675,15.033,8.999,-0.431,13.882,13.224,30.575,7.533,8.821,0.15,16.536,9.411,2.608,19.881,3.014,10.334,21.612,-7.986,24.903,2.895,26.354,14.292,26.221,8.871,10.99,2.734,1.836,8.448,23.067,7.566,7.851,10.801,10.709,8.303,19.039,14.293,18.596,13.177,12.461,22.569,4.737,-8.32,27.471,23.432,16.796,10.469,11.454,24.77,4.961,8.716,-2.158,7.071,4.722,18.899,9.273,7.72,1.037,14.804,22.055,7.793,6.144,27.195,17.78,10.071,-0.843,16.554,17.974,11.711,-3.19,5.326,20.371,4.676,24.134,24.866,3.464,22.693,18.251,-9.795,-2.064,17.359,-0.053,15.01,7.021,20.276,19.999,20.362,14.027,18.59,7.012,-8.614,17.02,19.989,22.153,13.338,5.805,18.615,11.61,24.17,14.187,9.305,0.72,-0.591,16.403,15.791,12.692,18.497,12.208,15.141,7.312,21.19,2.177,12.897,-2.323,23.021,11.494,15.478,8.697,14.936,0.713,-0.858,2.369,31.47,18.733,8.938,20.722,4.292,7.717,10.503,15.543,18.103,8.062,3.489,14.144,13.949,13.585,10.271,-1.639,7.779,7.972,4.36,30.421,11.456,7.879,1.06],[12.065,22.481,19.62,3.515,13.234,11.126,3.088,7.278,26.048,-7.157,8.465,22.153,26.104,15.428,8.997,6.819,7.307,16.984,9.718,0.868,3.742,13.407,-2.253,25.202,8.508,5.001,23.791,19.751,23.78,17.068,7.055,18.901,-1.916,20.169,16.288,-9.436,7.68,12.983,17.761,15.183,-2.072,22.574,18.416,7.242,13.725,2.33,21.358,12.625,12.512,15.03,8.896,-0.538,13.959,13.213,30.723,7.683,8.982,-0.008,16.782,9.422,2.738,19.853,3.094,10.552,22.179,-7.973,24.715,2.829,26.369,14.175,26.228,8.336,11.06,3.272,1.946,8.814,22.793,7.936,8.124,10.692,10.645,8.623,18.834,13.97,18.545,13.587,12.5,22.862,4.941,-8.283,27.819,23.662,16.731,10.754,11.357,24.527,5.073,8.509,-2.786,6.859,4.057,18.522,9.17,7.259,0.724,14.68,22.29,7.69,5.598,26.953,17.127,9.858,-0.773,16.074,17.961,11.829,-3.069,5.244,20.361,5.355,23.313,24.985,3.374,22.585,18.105,-9.744,-1.486,17.287,-0.207,15.158,7.319,20.763,19.996,20.969,14.097,18.295,7.374,-9.003,16.786,20.181,22.228,13.229,6.061,18.106,11.612,24.391,13.694,9.447,0.987,-0.264,16.49,16.016,12.986,18.433,11.947,14.713,7.407,21.306,1.872,12.513,-2.342,23.114,11.433,15.235,8.824,15.275,0.349,-1.149,2.175,31.752,18.8,8.834,20.778,4.245,7.376,10.975,15.223,17.965,7.492,3.144,14.096,13.916,13.801,10.461,-1.806,8.008,7.963,4.426,31.052,11.623,7.771,1.235],[12.129,22.345,19.52,3.518,13.182,10.899,3.022,7.048,25.996,-7.173,8.545,22.416,26.215,15.339,9.309,7.005,7.187,16.725,9.595,0.803,3.829,13.418,-2.407,25.05,8.423,4.801,23.588,19.715,23.653,16.972,6.974,18.865,-1.862,20.32,16.498,-9.11,7.81,12.937,17.697,15.228,-1.931,22.704,18.398,7.046,13.532,2.433,21.467,12.7,12.3,14.865,8.827,-0.651,14.064,13.223,31.019,7.797,9.165,-0.053,16.785,9.404,2.756,19.873,3.067,10.811,22.197,-8.457,24.959,2.82,26.11,14.441,26.205,8.466,11.116,3.171,1.882,8.423,22.996,7.99,7.626,10.898,10.369,8.838,18.379,14.149,18.529,13.695,12.496,23.372,4.839,-8.015,27.938,23.85,16.959,10.916,11.279,24.786,5.187,8.619,-2.742,7.139,3.489,18.421,8.892,6.807,0.64,14.557,21.904,7.636,5.476,26.742,17.21,9.996,-0.869,15.999,17.894,11.76,-3.883,5.068,20.17,5.692,23.587,24.866,3.15,22.073,18.115,-9.314,-0.934,17.74,-0.657,14.845,7.196,21.13,19.798,20.47,13.852,18.702,7.268,-8.457,16.929,19.809,23.261,12.925,6.482,17.793,11.474,24.418,13.699,9.698,0.851,-0.243,16.041,16.217,13.241,19.311,11.789,15.181,8.057,21.322,1.761,12.765,-2.39,22.632,11.455,14.705,8.55,15.113,0.441,-1.53,2.271,31.744,19.003,8.795,20.567,4.514,7.839,11.089,15.555,18.465,7.724,3.118,13.916,14.022,14.091,10.485,-2.096,8.075,7.878,4.317,31.271,12.431,8.274,1.096],[12.184,22.326,19.59,3.585,13.205,10.657,3.04,6.976,25.816,-7.339,8.654,22.605,26.27,15.423,9.339,7.141,7.171,16.523,9.555,0.711,3.882,13.383,-2.603,25.047,8.346,4.652,23.386,19.608,23.46,16.76,6.839,19.004,-1.891,20.469,16.537,-8.797,7.707,12.886,17.666,15.153,-1.882,23.004,18.428,6.95,13.458,2.339,21.369,13.011,12.18,14.641,8.707,-0.733,14.15,13.294,31.266,7.917,9.27,-0.045,16.815,9.421,2.748,19.895,3.057,11.05,21.95,-8.55,24.804,2.709,26.281,14.563,26.147,8.531,11.245,3.036,1.734,8.179,22.475,7.483,7.989,10.85,9.825,8.878,18.76,14.54,18.428,13.518,11.914,23.803,4.667,-8.057,27.807,23.738,16.11,11.224,11.273,24.704,5.304,8.443,-2.12,7.09,3.836,18.175,9.002,6.742,0.588,14.684,21.789,8.172,5.676,26.774,17.679,10.005,-1.142,16.397,18.002,11.953,-4.126,5.166,20.242,5.637,23.799,24.657,2.816,22.233,18.008,-9.563,-1.134,17.414,-0.534,15.18,6.561,21.459,20.12,20.659,13.819,18.869,7.356,-7.602,17.596,19.609,23.198,12.996,6.587,17.923,11.252,24.643,13.647,9.698,0.583,-0.166,15.576,16.424,13.024,19.661,11.587,14.901,8.422,21.277,2.182,12.776,-2.281,22.832,11.68,14.871,8.391,14.717,0.579,-1.41,2.65,31.568,18.869,8.679,20.622,4.541,7.974,10.774,15.952,18.455,7.731,3.691,13.806,13.958,14.15,10.477,-1.694,7.745,7.855,4.43,31.413,12.679,8.788,1.26],[12.228,22.225,19.724,3.539,13.331,10.324,3.026,6.955,25.682,-7.546,8.728,22.667,26.271,15.435,9.245,7.185,7.091,16.5,9.672,0.679,3.918,13.455,-2.649,25.207,8.27,4.591,23.286,19.539,23.348,16.596,6.651,19.112,-1.941,20.668,16.613,-8.669,7.623,12.808,17.699,15.0,-1.857,23.156,18.554,7.057,13.546,2.243,21.215,13.253,12.183,14.464,8.606,-0.713,14.096,13.418,31.357,7.946,9.388,0.059,16.953,9.255,2.848,19.938,3.203,11.061,21.742,-8.415,24.271,2.693,25.801,14.671,26.518,8.734,11.702,3.276,2.034,8.665,22.584,6.76,8.242,10.604,9.681,8.563,19.063,14.414,18.495,13.277,11.394,23.462,4.874,-8.405,27.785,24.155,16.308,10.834,11.34,24.462,5.477,8.411,-2.076,6.785,4.498,18.131,9.023,6.972,0.424,14.758,21.656,8.29,5.232,27.123,17.531,9.865,-0.903,16.151,17.958,11.878,-3.85,4.976,20.432,5.433,23.108,24.563,2.936,22.34,17.851,-8.886,-1.753,17.605,-0.193,15.19,6.295,21.12,20.058,21.387,13.656,18.17,7.73,-7.814,17.752,19.677,22.623,12.593,6.454,18.296,11.939,25.036,13.559,9.352,0.57,-0.132,15.966,15.873,13.204,19.105,11.646,14.894,8.242,21.008,2.081,12.871,-2.627,22.909,11.713,14.549,8.727,14.453,0.695,-0.684,3.083,32.191,18.844,9.124,21.129,4.307,7.641,10.95,15.824,18.679,7.422,3.696,14.067,13.807,14.38,10.43,-1.692,7.705,8.254,4.379,31.249,12.536,8.494,1.203],[12.29,22.024,19.708,3.432,13.456,10.126,3.029,6.925,25.58,-7.667,8.763,22.673,26.473,15.385,9.101,7.024,6.905,16.464,9.882,0.797,3.967,13.63,-2.629,25.358,8.25,4.57,23.241,19.598,23.178,16.526,6.396,19.074,-2.057,20.952,16.671,-8.677,7.579,12.775,17.817,14.898,-1.901,23.013,18.652,7.266,13.562,2.235,21.108,13.408,12.215,14.336,8.755,-0.622,13.916,13.57,31.318,7.757,9.444,0.27,17.069,9.177,3.139,20.06,3.374,10.916,21.573,-8.364,24.16,2.814,25.721,14.627,26.431,8.792,12.125,3.372,2.207,8.784,22.668,6.809,8.046,10.583,10.248,8.327,18.868,13.785,18.564,13.22,11.54,23.17,4.912,-8.727,28.071,24.213,16.951,10.446,11.619,24.689,5.368,7.816,-2.742,6.518,4.492,18.211,9.182,6.684,0.393,14.494,21.56,8.245,5.084,27.115,17.233,9.408,-0.79,15.914,17.887,11.891,-3.729,4.601,19.949,5.668,23.043,24.59,2.899,21.848,17.797,-8.878,-1.766,17.908,-0.341,15.418,6.761,21.059,20.119,21.574,13.791,18.634,7.596,-7.98,17.772,20.135,23.135,12.328,6.786,17.702,11.582,24.806,13.715,9.16,0.708,-0.077,16.185,15.875,13.876,19.151,11.923,14.732,7.831,21.166,1.409,13.227,-2.478,22.533,11.673,14.412,8.877,14.796,0.279,-1.041,2.963,32.169,19.407,8.97,21.333,4.073,7.695,11.188,16.009,18.863,7.895,3.184,13.867,14.465,14.527,10.093,-1.96,7.532,8.76,4.691,31.26,11.989,7.969,1.576],[12.37,21.757,19.535,3.427,13.442,10.192,3.058,7.004,25.58,-7.671,8.794,22.687,26.603,15.49,8.976,6.737,6.702,16.458,10.198,0.933,4.057,13.729,-2.56,25.328,8.206,4.569,23.172,19.626,23.004,16.647,6.229,18.964,-2.213,21.093,16.644,-8.823,7.531,12.84,17.959,14.955,-1.933,22.877,18.742,7.512,13.369,2.194,21.04,13.672,12.3,14.211,8.883,-0.699,13.778,13.711,31.175,7.696,9.441,0.46,17.177,9.144,3.519,20.252,3.372,10.69,21.525,-8.654,24.141,2.464,25.973,14.418,26.25,8.672,12.561,3.615,1.817,8.472,22.289,7.185,7.657,10.617,10.29,8.464,18.611,13.474,18.529,13.485,11.682,23.659,4.669,-8.428,27.962,24.032,16.793,10.586,11.706,25.061,4.918,8.011,-3.025,6.556,4.115,18.054,9.664,6.502,0.58,14.392,21.457,7.837,5.132,27.217,17.27,9.417,-0.902,15.957,17.771,12.087,-3.944,4.41,19.924,5.788,23.305,24.362,2.557,22.297,17.819,-9.448,-1.205,17.506,-1.086,15.253,6.213,21.879,20.051,21.827,13.775,18.557,7.367,-7.563,17.713,20.18,23.357,12.553,7.3,17.958,11.208,24.309,13.985,8.935,0.79,-0.092,15.649,15.849,13.449,19.284,11.737,14.79,7.951,21.01,1.597,13.336,-2.532,22.42,11.967,14.537,8.641,15.046,0.728,-0.775,3.081,31.611,19.629,8.712,21.003,4.177,7.582,11.048,16.154,18.769,7.674,3.705,13.347,14.693,13.968,10.547,-1.716,7.307,8.885,5.004,31.565,11.896,8.043,1.425],[12.474,21.561,19.339,3.543,13.301,10.377,2.979,7.005,25.437,-7.625,8.811,22.881,26.283,15.561,8.96,6.419,6.725,16.464,10.339,0.883,4.102,13.597,-2.563,25.237,8.115,4.432,23.209,19.641,22.909,16.761,6.14,18.75,-2.353,21.293,16.511,-8.9,7.427,12.928,17.997,15.001,-1.926,22.954,18.83,7.754,13.223,2.132,21.072,13.839,12.327,14.029,8.882,-0.66,13.688,13.795,31.241,7.705,9.484,0.546,17.256,9.076,3.653,20.245,3.307,10.453,21.004,-8.626,24.568,2.77,25.956,14.484,26.435,8.399,12.679,3.683,2.207,8.275,21.732,7.623,7.882,10.597,10.016,8.734,18.754,14.089,18.328,13.405,11.924,23.735,4.802,-8.429,27.845,24.09,16.538,10.719,12.105,25.01,4.585,8.261,-2.274,6.633,4.311,18.311,9.858,6.73,0.478,14.999,21.126,7.439,5.057,26.882,17.711,9.563,-0.685,15.607,17.928,11.898,-3.365,4.441,20.239,5.668,23.114,24.039,2.699,22.112,17.969,-8.86,-1.397,17.157,-1.058,15.059,5.835,21.704,19.844,21.755,13.786,18.402,7.143,-7.799,17.529,20.111,23.115,12.299,7.699,18.462,11.629,24.688,14.048,9.055,0.389,-0.261,15.086,16.506,13.815,19.816,11.946,14.688,8.66,21.469,2.352,13.313,-2.272,22.516,11.971,14.343,8.381,14.962,1.114,-0.338,3.566,32.262,19.244,8.963,21.308,4.659,7.501,10.463,15.965,18.869,7.629,3.758,13.681,14.525,13.679,10.745,-1.698,7.458,8.435,5.164,31.244,12.254,8.243,1.559],[12.565,21.379,19.263,3.863,13.219,10.567,2.968,6.883,25.282,-7.679,8.865,23.065,25.989,15.58,8.926,6.243,6.833,16.392,10.349,0.8,4.112,13.509,-2.344,25.07,8.017,4.368,23.205,19.778,22.643,16.814,6.064,18.561,-2.393,21.437,16.224,-8.661,7.349,13.057,18.01,15.035,-1.86,23.224,19.091,7.988,13.114,2.114,21.239,13.883,12.327,13.944,8.743,-0.57,13.753,13.742,31.61,7.704,9.419,0.635,17.259,9.103,3.641,20.063,3.295,10.349,21.088,-8.157,24.326,2.836,25.65,14.877,26.069,8.385,12.728,3.67,2.222,8.424,21.725,7.436,8.105,10.797,10.094,8.952,19.096,14.666,17.939,12.98,11.89,23.842,4.829,-8.756,27.721,24.329,16.191,10.646,12.134,24.957,4.462,8.306,-2.015,6.577,4.26,18.402,9.706,6.473,0.115,14.994,21.147,6.957,5.044,26.897,17.534,9.586,-0.711,16.087,18.065,12.086,-3.896,4.513,20.298,5.828,22.744,24.157,2.603,21.932,18.302,-9.1,-1.865,16.962,-0.966,15.43,6.244,21.826,19.614,21.622,14.061,18.324,6.907,-7.873,17.649,19.764,22.94,12.476,7.91,18.0,11.663,25.008,13.906,9.043,0.234,0.012,15.237,16.812,13.918,20.078,12.052,14.505,9.235,21.401,1.949,13.497,-2.164,22.63,11.891,13.978,8.545,14.202,0.661,-0.464,3.443,32.263,18.966,8.59,21.06,4.809,7.583,9.962,16.312,18.72,8.092,3.209,14.263,14.739,14.009,10.317,-1.588,7.69,8.315,5.367,30.948,12.206,8.364,2.0],[12.59,21.151,19.244,4.174,13.268,10.649,2.979,6.7,25.066,-7.732,8.918,23.106,25.896,15.585,8.69,6.133,6.789,16.3,10.278,0.615,4.172,13.657,-2.144,25.046,7.996,4.35,22.993,20.0,22.306,16.921,6.075,18.409,-2.352,21.443,16.049,-8.367,7.26,13.31,17.768,15.081,-1.755,23.365,19.376,8.166,13.186,2.035,21.352,13.948,12.346,14.037,8.553,-0.571,13.763,13.663,31.86,7.852,9.237,0.785,17.193,9.154,3.689,19.854,3.308,10.478,21.633,-8.4,23.541,3.238,25.686,14.494,25.672,8.296,12.429,4.22,1.902,8.722,22.361,6.563,8.04,11.113,10.768,8.685,18.852,13.895,18.1,13.022,11.732,23.996,4.701,-8.98,27.449,24.264,16.872,10.469,12.055,24.549,4.482,8.282,-2.21,6.583,4.429,17.903,9.93,6.547,0.296,14.616,21.403,7.258,5.18,26.967,17.168,9.486,-1.122,16.791,18.19,12.054,-3.736,4.384,20.291,5.864,22.793,23.752,2.574,22.164,18.097,-9.007,-1.609,16.917,-0.842,14.889,6.114,21.997,19.481,22.28,13.876,18.498,6.78,-7.551,17.482,20.048,23.563,13.012,8.174,17.884,11.721,25.052,13.805,9.108,0.525,0.074,15.094,16.822,13.294,19.621,12.011,14.616,9.125,21.321,1.48,13.502,-2.312,22.97,11.973,14.155,8.409,13.966,0.735,-0.241,3.317,32.475,18.541,8.57,20.899,4.312,7.403,9.854,16.395,18.977,7.939,3.516,14.354,14.724,14.057,10.318,-1.733,7.532,8.461,5.119,31.098,12.291,8.117,1.98],[12.581,21.137,19.178,4.451,13.237,10.72,2.993,6.41,24.793,-7.868,8.879,23.004,25.775,15.698,8.41,6.083,6.639,16.223,10.354,0.373,4.334,13.719,-2.175,25.153,8.119,4.469,22.934,20.254,22.124,16.951,6.019,18.354,-2.259,21.523,16.002,-8.147,7.146,13.417,17.502,15.107,-1.693,23.411,19.568,8.273,13.34,2.031,21.386,13.889,12.403,14.293,8.392,-0.553,13.634,13.715,31.904,7.938,9.012,1.025,17.112,9.145,3.813,19.724,3.287,10.627,20.957,-8.765,23.464,3.286,25.211,14.783,26.067,8.146,12.195,4.531,2.346,8.473,21.469,6.442,7.868,10.871,10.911,7.84,18.45,13.687,18.139,13.296,12.082,24.016,4.781,-8.709,27.476,24.283,17.258,10.045,12.169,24.406,4.595,7.815,-2.49,6.682,4.645,17.863,9.64,6.665,0.292,14.745,20.436,7.469,4.967,26.963,17.39,9.682,-1.264,16.412,18.546,11.882,-3.17,4.317,20.451,5.792,22.456,23.472,2.834,21.421,17.814,-8.604,-1.397,16.936,-0.753,14.96,5.984,21.809,19.533,22.26,14.292,18.218,6.656,-7.311,17.157,20.753,24.003,13.232,8.24,17.783,11.662,24.948,13.637,8.909,0.537,0.128,15.566,16.256,13.963,19.693,12.17,14.996,9.094,21.887,1.606,13.544,-2.379,22.92,12.021,14.215,7.965,14.327,0.912,-0.359,3.629,32.607,18.489,8.729,20.59,4.271,7.79,10.499,15.924,18.847,8.034,3.961,14.083,14.581,13.617,10.27,-1.514,7.563,8.557,4.878,31.866,12.512,7.678,2.091],[12.462,21.128,18.93,4.631,13.044,10.847,3.205,6.266,24.587,-7.918,8.709,22.919,25.633,15.951,8.164,6.087,6.567,16.257,10.464,0.295,4.436,13.684,-2.259,25.07,8.323,4.655,22.756,20.564,21.98,16.943,5.815,18.354,-2.283,21.537,15.995,-8.039,6.995,13.363,17.633,15.104,-1.758,23.475,19.638,8.396,13.233,2.156,21.37,13.788,12.456,14.462,8.296,-0.436,13.392,13.77,31.888,7.998,8.914,1.181,17.098,9.136,3.987,19.47,3.378,10.784,20.434,-9.002,23.898,3.065,25.507,15.093,25.562,7.892,12.856,4.488,2.447,8.136,21.457,6.583,7.679,10.576,10.815,7.004,18.339,14.394,18.127,13.317,12.108,23.864,5.077,-8.581,27.319,24.036,17.301,9.894,12.277,24.686,4.512,8.029,-2.329,7.069,4.802,17.89,9.743,6.266,-0.307,14.836,20.592,7.487,5.272,26.923,17.75,10.038,-1.268,15.708,18.813,12.029,-3.723,4.163,20.601,5.993,22.534,23.345,2.886,21.859,17.363,-8.642,-1.464,17.182,-1.0,14.922,5.873,21.74,20.037,21.933,14.492,18.198,6.6,-7.137,17.196,20.958,23.584,13.179,8.091,17.544,11.879,25.083,13.576,8.874,0.542,0.103,16.039,16.06,14.103,20.149,12.408,14.62,9.209,21.723,1.513,13.473,-2.064,22.723,12.002,14.443,8.074,14.479,0.951,0.108,3.769,32.642,18.966,8.706,20.838,4.678,7.839,10.435,15.831,18.67,8.195,3.717,13.958,14.665,13.717,9.738,-0.934,7.73,8.578,5.179,31.916,12.424,7.508,2.59],[12.468,21.135,18.707,4.664,12.992,10.934,3.367,6.283,24.712,-7.887,8.488,22.812,25.515,16.258,7.949,6.226,6.633,16.285,10.64,0.194,4.503,13.701,-2.336,24.872,8.531,4.81,22.736,20.771,21.888,16.938,5.56,18.435,-2.391,21.517,16.029,-8.006,6.909,13.278,17.793,15.347,-1.726,23.456,19.639,8.514,12.954,2.195,21.216,13.642,12.527,14.526,8.179,-0.132,13.148,13.737,31.84,8.045,8.889,1.348,17.152,9.193,4.177,19.443,3.527,10.735,21.022,-9.217,23.281,3.311,25.414,15.112,25.647,7.79,13.28,4.514,2.607,8.28,22.059,6.534,7.736,10.622,10.943,6.946,18.163,14.103,17.723,12.964,12.163,23.66,5.134,-8.628,27.169,23.93,17.235,9.631,12.207,24.987,4.398,8.183,-1.988,7.688,4.837,17.909,9.993,6.137,-0.288,14.445,20.841,7.097,5.458,26.748,18.229,10.3,-1.416,15.486,18.911,11.969,-4.036,3.869,20.855,5.97,22.288,23.48,2.967,21.586,16.855,-8.547,-1.372,17.311,-1.206,14.867,5.606,21.869,19.953,21.635,14.055,18.087,6.863,-7.519,17.224,20.529,23.571,12.56,8.048,18.165,11.712,25.288,13.787,8.632,0.753,-0.04,15.5,15.999,13.561,20.192,12.385,14.517,8.999,21.309,1.516,13.364,-1.708,22.639,11.925,14.848,8.379,14.143,1.057,0.21,3.469,32.68,18.657,8.597,20.797,4.772,7.48,10.252,16.269,18.931,8.286,3.603,14.117,14.738,13.613,9.71,-1.365,7.558,8.526,5.424,31.111,12.413,7.671,2.749],[12.642,21.317,18.603,4.71,13.003,11.02,3.338,6.344,24.819,-7.929,8.404,22.661,25.558,16.416,7.815,6.321,6.799,16.29,10.854,0.062,4.538,13.568,-2.481,24.751,8.597,4.816,22.759,20.722,21.828,16.85,5.387,18.586,-2.361,21.459,15.966,-7.925,6.937,13.143,17.849,15.546,-1.427,23.397,19.606,8.642,12.631,2.17,21.028,13.404,12.663,14.606,8.173,0.2,12.861,13.581,31.625,8.086,8.838,1.536,17.258,9.154,4.252,19.514,3.58,10.456,21.205,-8.611,23.435,3.468,25.321,15.902,25.885,7.835,13.208,4.453,2.704,7.999,21.943,6.531,7.339,11.215,11.197,6.93,17.978,14.25,17.495,12.96,12.368,23.523,5.197,-8.982,27.273,24.111,17.089,9.518,12.513,24.248,4.644,8.175,-2.424,7.602,4.804,18.042,10.483,6.205,-0.27,14.668,20.407,7.24,5.372,26.489,18.485,10.237,-1.561,15.412,18.836,11.714,-3.333,3.672,21.362,5.854,22.369,23.274,3.247,21.358,16.784,-8.468,-1.678,17.029,-0.915,15.261,5.565,22.218,19.878,21.916,13.807,18.29,6.936,-7.48,17.508,20.26,23.976,11.915,7.931,18.021,11.325,25.041,13.896,8.811,0.533,0.412,15.991,16.327,13.39,19.699,12.16,14.311,8.861,21.126,1.582,13.253,-1.831,22.314,11.835,14.953,7.845,13.716,1.596,0.044,3.419,32.584,18.323,8.88,20.775,4.739,7.604,10.198,16.116,18.957,8.555,4.002,14.314,14.608,13.422,9.997,-1.196,7.621,8.722,5.445,31.141,12.221,7.687,2.451],[12.987,21.486,18.624,4.728,13.12,11.216,3.282,6.284,24.817,-7.984,8.342,22.683,25.686,16.388,7.883,6.342,6.924,16.331,11.146,-0.015,4.484,13.444,-2.502,24.465,8.43,4.755,22.62,20.591,21.819,16.782,5.47,18.521,-2.154,21.517,15.999,-7.829,7.131,12.999,17.834,15.654,-1.173,23.414,19.551,8.774,12.299,2.066,20.846,13.164,12.844,14.7,8.083,0.5,12.581,13.389,31.296,8.184,8.716,1.6,17.228,9.156,4.255,19.489,3.649,10.185,21.092,-8.447,23.614,3.195,25.684,15.981,25.939,8.079,13.303,4.616,2.624,8.057,21.856,6.49,7.248,11.166,11.461,6.754,18.046,14.098,17.599,13.57,12.27,23.487,5.013,-9.317,27.411,23.924,17.318,9.492,12.886,24.268,4.584,8.454,-2.597,7.096,5.122,17.845,11.218,6.328,-0.605,14.602,20.209,7.146,5.323,26.402,18.526,10.054,-1.654,15.94,18.797,11.741,-3.644,3.889,21.009,6.0,22.758,22.907,3.192,22.252,16.69,-8.492,-1.507,17.286,-0.696,14.707,5.279,22.246,20.113,21.599,13.885,18.34,6.78,-7.014,17.184,20.865,23.98,12.107,7.615,17.821,11.45,24.714,13.984,8.893,0.757,0.758,16.454,16.301,13.471,19.517,11.863,13.718,9.004,20.835,1.219,13.018,-1.846,22.246,11.529,14.971,7.521,13.55,2.032,0.113,3.949,32.493,18.865,8.867,20.979,4.527,8.028,10.013,15.877,18.867,8.225,4.592,14.429,14.389,13.695,9.818,-0.473,7.655,8.933,5.366,31.35,12.073,7.649,2.195],[13.327,21.513,18.733,4.666,13.279,11.469,3.331,6.06,24.87,-8.038,8.292,22.757,25.751,16.29,8.113,6.155,6.994,16.379,11.542,-0.047,4.471,13.406,-2.512,24.238,8.136,4.756,22.676,20.624,21.843,16.688,5.615,18.401,-1.86,21.561,15.937,-7.784,7.29,12.87,17.696,15.7,-1.136,23.438,19.583,8.822,12.067,1.977,20.664,12.938,13.032,14.794,7.85,0.752,12.578,13.21,31.031,8.204,8.569,1.53,17.074,9.157,4.396,19.529,3.855,10.091,21.125,-8.808,23.77,3.022,25.474,15.454,25.739,7.704,13.644,4.681,2.987,7.522,22.042,6.215,7.475,11.464,12.06,6.787,17.636,14.352,17.858,13.639,12.504,23.047,5.122,-9.311,27.52,24.145,18.05,9.352,13.091,24.493,4.477,8.441,-2.002,7.045,4.706,18.161,11.656,6.913,-0.404,14.349,20.259,7.097,5.363,26.026,18.198,9.873,-1.484,16.28,18.797,11.636,-4.073,3.876,20.224,5.881,22.059,22.876,3.118,22.166,17.183,-8.529,-1.069,17.528,-0.779,15.002,5.463,22.223,19.923,21.49,13.895,17.957,7.015,-7.135,17.131,21.265,23.978,12.114,7.284,17.803,11.37,25.155,13.8,9.163,0.748,0.574,16.271,16.237,13.172,19.751,12.316,13.377,9.342,20.91,1.043,13.146,-1.635,21.971,11.455,15.032,7.826,13.59,1.892,0.147,3.997,32.333,19.204,8.391,20.926,4.931,8.279,9.549,15.725,18.477,7.906,4.255,14.202,14.306,13.296,9.584,-0.355,7.92,8.712,5.64,30.775,11.917,7.552,2.843],[13.565,21.503,18.71,4.587,13.403,11.832,3.453,5.732,24.872,-8.122,8.227,22.624,25.709,16.089,8.332,5.902,7.1,16.433,11.733,0.107,4.232,13.371,-2.514,24.189,7.92,4.755,22.725,20.689,21.775,16.616,5.72,18.422,-1.72,21.592,15.901,-7.785,7.423,12.885,17.423,15.597,-1.185,23.596,19.737,8.749,11.962,1.835,20.62,12.721,13.147,14.8,7.676,0.84,12.6,13.129,30.94,8.233,8.438,1.562,16.871,9.189,4.523,19.627,4.12,10.051,20.963,-9.159,23.782,2.978,25.87,15.552,25.976,7.022,14.275,4.546,3.002,7.391,22.024,6.068,7.301,11.878,12.447,7.019,17.571,14.461,18.138,13.666,12.979,23.406,5.393,-9.185,27.442,24.229,17.873,9.503,13.286,24.32,4.333,8.44,-2.281,6.996,4.472,18.091,11.666,6.831,-0.423,14.195,20.588,7.021,5.091,25.849,18.013,9.626,-1.545,16.187,18.935,11.512,-3.518,4.056,21.145,5.747,22.275,23.449,3.127,21.627,17.652,-8.392,-0.96,16.924,-0.439,14.896,5.793,22.006,19.625,22.19,13.529,18.167,7.458,-7.223,17.427,21.342,24.005,11.745,7.421,17.581,11.486,25.263,13.87,9.192,0.515,0.606,16.014,16.089,12.822,20.11,13.155,13.409,9.75,20.772,1.47,13.251,-1.671,21.916,11.505,15.264,7.681,13.949,2.178,0.4,3.917,32.41,18.712,8.666,21.195,5.537,7.753,9.381,15.298,18.23,8.327,3.848,14.413,14.304,12.996,9.469,-0.673,7.698,8.27,5.714,30.54,11.943,7.232,2.887],[13.728,21.465,18.743,4.501,13.487,12.201,3.658,5.445,25.068,-8.283,8.096,22.469,25.681,15.907,8.496,5.74,7.13,16.377,11.66,0.235,3.937,13.218,-2.474,24.224,7.787,4.647,22.746,20.856,21.928,16.668,5.77,18.516,-1.707,21.756,15.932,-7.72,7.545,12.972,17.271,15.375,-1.296,23.645,19.876,8.775,11.952,1.708,20.667,12.572,13.291,14.827,7.663,0.778,12.666,13.171,31.139,8.248,8.323,1.724,16.639,9.33,4.462,19.76,4.319,9.999,21.089,-9.012,23.58,2.839,25.901,15.117,26.12,6.668,15.092,4.67,2.717,8.024,21.958,5.39,7.356,12.318,12.345,7.32,17.904,14.476,17.517,13.536,12.834,23.41,5.281,-9.092,27.226,23.424,17.493,9.749,13.198,24.168,4.257,9.089,-2.224,6.531,4.587,18.36,11.742,6.512,-0.537,14.171,20.513,6.78,5.074,26.126,17.84,9.419,-1.384,15.823,19.033,11.344,-3.912,4.071,21.845,5.446,22.679,23.414,2.796,21.515,17.642,-8.703,-1.004,16.992,-0.369,15.014,5.769,21.883,19.535,22.157,13.212,17.862,7.24,-7.023,17.347,21.441,24.08,11.693,7.147,17.253,11.378,25.053,14.131,9.349,0.034,0.517,15.651,15.898,12.875,20.382,13.275,13.408,9.799,20.639,1.472,12.817,-1.662,21.933,11.339,15.158,6.953,13.648,2.366,0.211,4.34,32.486,18.632,8.898,21.051,5.565,7.883,9.788,15.125,17.965,8.753,4.772,15.073,14.074,13.155,9.245,-0.572,7.578,7.911,5.761,31.006,11.827,7.355,2.38],[13.978,21.399,18.784,4.469,13.5,12.264,3.675,5.211,25.32,-8.382,8.066,22.179,25.599,15.698,8.627,5.599,7.319,16.226,11.531,0.079,3.842,12.988,-2.502,24.215,7.785,4.426,22.858,20.995,22.269,16.712,5.795,18.643,-1.723,21.866,15.976,-7.6,7.52,13.051,17.113,15.017,-1.341,23.481,19.959,8.814,12.15,1.578,20.754,12.474,13.459,15.012,7.671,0.709,12.686,13.18,31.462,8.339,8.299,1.776,16.446,9.414,4.521,19.754,4.514,9.989,21.123,-8.772,24.023,2.859,25.91,14.619,26.102,6.788,15.429,4.404,3.417,7.533,21.926,5.365,7.363,12.602,12.466,7.58,17.988,14.704,17.72,13.45,13.306,22.71,5.531,-9.717,27.279,23.534,17.313,10.02,13.209,24.176,3.901,9.052,-2.359,6.297,4.194,18.105,11.687,6.142,-0.208,14.186,20.701,6.665,5.019,26.092,17.789,8.901,-1.346,15.823,19.323,11.298,-4.264,4.035,21.777,5.112,22.547,22.982,2.592,21.862,17.933,-8.517,-1.127,17.263,-0.555,15.139,5.641,22.748,19.75,21.591,13.166,17.697,7.319,-7.367,17.253,21.27,24.197,11.474,7.13,17.005,11.257,24.897,14.597,9.269,0.077,0.507,15.072,15.888,12.706,20.675,12.882,13.225,9.162,20.89,0.918,12.98,-1.732,22.296,11.499,14.91,6.93,12.862,1.937,0.44,4.15,32.749,19.333,9.14,20.932,5.369,8.16,9.763,15.181,17.608,8.755,5.389,15.188,14.015,13.375,9.378,-0.604,7.951,7.678,5.593,31.399,11.827,7.534,2.909],[14.265,21.368,18.834,4.414,13.478,12.185,3.658,5.303,25.43,-8.339,8.096,21.892,25.613,15.537,8.728,5.486,7.538,16.06,11.526,-0.182,3.821,12.878,-2.662,24.073,7.86,4.188,23.116,21.106,22.492,16.818,5.842,18.683,-1.759,22.009,16.056,-7.477,7.38,13.088,16.916,14.655,-1.266,23.284,20.009,8.741,12.253,1.395,20.9,12.463,13.657,15.294,7.595,0.611,12.594,13.127,31.717,8.566,8.287,1.964,16.362,9.454,4.529,19.722,4.693,9.875,21.042,-8.96,24.383,2.733,26.084,14.392,26.106,6.78,15.569,4.603,3.281,7.148,21.776,5.559,7.182,12.686,12.603,7.537,17.794,14.389,18.17,13.805,13.196,22.161,5.585,-9.557,26.929,23.712,17.255,10.047,13.254,24.362,3.847,8.913,-2.16,6.854,3.948,17.717,11.47,6.167,-0.14,13.873,20.99,6.898,4.813,25.743,17.543,8.629,-1.94,15.807,19.384,11.177,-3.707,4.337,21.355,5.274,22.766,23.671,2.643,21.824,18.226,-8.403,-1.025,17.336,-0.551,15.048,5.645,22.895,20.178,21.328,13.833,17.818,7.389,-7.315,17.013,21.201,24.08,11.538,6.86,16.785,11.633,24.801,14.34,9.054,0.093,0.568,14.959,15.365,12.253,20.548,12.817,13.798,8.897,20.958,0.554,13.041,-1.709,22.074,11.269,15.584,7.686,13.202,1.962,0.308,4.203,32.867,19.161,9.001,20.948,5.631,7.931,9.295,14.843,17.349,8.731,4.659,14.404,14.222,12.82,9.385,-0.688,7.965,7.982,5.924,31.348,11.826,7.304,2.97],[14.463,21.309,18.743,4.364,13.436,12.254,3.678,5.588,25.441,-8.124,8.084,21.708,25.712,15.453,8.831,5.514,7.557,15.906,11.604,-0.353,3.8,12.885,-2.76,23.931,8.011,4.213,23.248,21.196,22.701,16.976,5.95,18.61,-1.775,22.097,16.081,-7.467,7.238,13.243,16.784,14.497,-1.114,23.231,20.11,8.501,12.317,1.208,20.921,12.373,13.825,15.596,7.508,0.579,12.441,13.01,31.831,8.722,8.163,2.116,16.349,9.382,4.491,19.6,4.736,9.478,21.284,-9.12,23.977,2.574,26.035,14.549,26.01,6.473,15.902,4.771,2.778,7.315,22.07,5.57,7.278,12.807,12.603,7.503,17.941,14.235,17.909,14.206,12.675,21.71,5.431,-9.093,27.509,23.37,17.196,9.593,13.223,24.459,3.8,9.312,-2.029,6.538,3.939,17.721,11.457,6.285,-0.686,13.461,21.037,6.883,4.339,25.442,17.658,9.405,-2.05,15.189,19.466,11.004,-4.276,4.234,20.905,5.363,22.823,23.95,2.33,22.033,18.271,-8.477,-1.103,17.476,-0.392,15.15,5.99,22.567,20.095,21.281,14.639,17.639,6.992,-6.907,17.275,20.617,23.733,12.101,6.8,16.557,11.78,24.638,14.051,9.064,-0.214,0.715,15.324,14.698,12.596,20.255,13.269,13.87,9.069,20.823,0.639,12.945,-1.481,21.987,11.102,15.492,7.605,13.59,2.052,0.741,4.553,33.028,18.591,8.81,20.913,5.966,8.525,9.188,14.737,17.107,9.173,4.112,14.798,13.929,13.197,8.78,-0.707,7.9,8.512,6.211,31.334,11.254,7.425,3.17],[14.676,21.27,18.475,4.294,13.415,12.354,3.588,5.759,25.309,-7.829,8.056,21.574,25.906,15.44,8.804,5.568,7.531,15.727,11.631,-0.43,3.774,12.82,-2.907,23.826,8.195,4.293,23.076,21.196,22.86,17.187,6.105,18.499,-1.765,22.026,16.089,-7.564,7.13,13.55,16.66,14.398,-0.942,23.232,20.129,8.316,12.457,1.064,20.818,12.26,14.005,15.77,7.291,0.555,12.432,12.937,31.848,8.985,8.119,2.241,16.445,9.283,4.567,19.372,4.7,9.072,21.268,-8.6,23.747,2.734,26.173,14.475,25.963,6.615,16.044,4.309,3.493,7.734,22.358,5.863,7.41,13.239,12.615,7.705,18.07,14.402,17.492,13.887,13.472,22.143,5.392,-8.738,27.517,23.181,17.214,9.839,13.278,24.043,3.712,9.208,-2.411,6.854,4.43,17.554,11.235,6.384,-0.88,13.277,21.225,6.645,4.487,25.539,18.188,9.651,-1.791,14.873,19.626,10.878,-4.665,4.205,21.388,4.932,23.136,23.853,2.615,22.052,18.336,-8.253,-1.364,17.19,-0.128,15.239,6.063,22.769,19.882,21.571,14.662,17.597,6.796,-7.066,17.593,20.052,23.837,12.172,6.381,16.709,11.921,24.763,14.628,8.991,-0.439,0.697,14.84,15.144,12.827,20.25,13.383,13.516,9.019,20.484,0.527,12.915,-0.988,22.114,11.173,15.156,7.346,13.521,2.019,1.036,4.62,33.243,18.51,8.822,20.651,5.703,8.35,8.646,14.804,17.147,8.913,4.851,15.834,13.618,13.111,8.931,-0.389,7.658,8.394,5.651,31.475,10.947,7.362,3.264],[14.938,21.267,18.32,4.236,13.438,12.558,3.705,5.895,25.178,-7.62,8.17,21.663,25.959,15.436,8.784,5.469,7.45,15.629,11.581,-0.37,3.83,12.645,-3.074,23.77,8.385,4.566,22.904,21.195,22.875,17.436,6.117,18.387,-1.676,21.955,16.064,-7.616,7.017,13.824,16.616,14.188,-0.75,23.207,20.022,8.015,12.476,0.927,20.621,12.196,14.226,15.812,7.175,0.578,12.339,12.976,31.785,9.109,8.213,2.391,16.524,9.182,4.512,19.211,4.606,8.821,21.231,-8.318,23.865,2.83,25.818,14.367,25.964,7.142,16.308,4.171,3.692,7.39,21.7,5.617,7.235,13.86,12.374,8.129,17.857,14.307,17.364,13.631,13.812,22.702,5.489,-8.854,27.487,22.983,17.178,10.312,13.142,23.658,3.785,9.163,-2.719,7.72,4.12,17.402,11.191,6.616,-0.218,13.341,21.212,6.795,5.133,25.633,18.027,9.951,-2.119,15.262,19.326,10.806,-4.634,4.468,21.863,5.043,22.718,24.269,2.814,21.789,18.578,-8.42,-1.252,17.119,-0.381,15.333,6.153,22.534,19.915,21.852,14.681,17.387,7.134,-7.035,17.158,19.839,24.156,11.854,6.29,17.004,12.224,24.703,14.807,8.809,-0.453,1.007,14.702,15.332,12.198,20.512,13.425,14.196,8.475,20.464,0.455,13.054,-1.244,21.788,11.228,15.379,6.868,13.472,2.247,0.711,4.506,32.825,18.376,8.684,20.611,5.606,8.487,8.513,14.932,17.917,8.837,5.041,15.72,13.884,13.116,9.024,-0.499,7.727,7.891,5.936,31.659,10.673,7.492,3.152],[15.223,21.162,18.344,4.212,13.445,12.594,3.883,6.021,25.032,-7.69,8.334,21.908,26.05,15.382,8.944,5.392,7.434,15.719,11.418,-0.186,3.897,12.527,-3.27,23.766,8.739,4.879,22.663,21.055,22.791,17.69,6.009,18.418,-1.521,21.901,15.913,-7.59,7.034,13.991,16.795,14.013,-0.602,23.224,19.792,7.764,12.481,0.783,20.402,12.154,14.489,15.716,7.118,0.566,12.185,13.147,31.684,9.128,8.294,2.492,16.656,9.104,4.57,19.149,4.456,8.679,20.873,-8.384,24.058,2.51,25.487,14.226,26.572,7.236,16.819,4.438,3.228,7.067,21.642,5.688,7.349,14.577,12.607,8.302,17.85,14.292,17.758,13.792,13.688,22.539,5.654,-9.068,27.415,23.382,17.084,10.297,12.974,23.774,3.638,9.246,-2.503,7.489,3.766,17.499,11.683,6.635,-0.195,13.298,21.291,6.75,5.811,25.444,17.904,10.056,-2.032,15.409,19.304,10.706,-4.761,4.196,21.872,5.429,22.674,24.182,2.937,21.375,18.586,-8.583,-0.652,17.264,-0.6,15.127,5.953,22.647,19.912,21.541,15.286,17.519,7.357,-7.509,17.184,20.073,23.955,11.669,5.868,16.529,12.348,24.564,14.554,8.749,-0.514,1.158,14.809,14.251,12.155,20.377,13.652,13.909,7.721,20.466,-0.031,12.915,-1.472,21.735,11.225,15.287,6.907,13.254,2.008,0.962,4.196,32.822,18.126,8.834,20.466,5.253,8.791,8.327,15.155,18.218,8.829,4.431,15.316,14.195,12.864,8.759,-0.95,7.872,8.345,6.095,31.589,10.367,7.416,3.405],[15.513,20.879,18.597,4.255,13.452,12.491,3.944,6.093,24.98,-7.904,8.366,22.109,26.227,15.264,9.114,5.434,7.602,15.734,11.279,-0.027,3.926,12.572,-3.356,23.792,8.967,5.105,22.405,20.904,22.748,17.828,5.807,18.539,-1.331,21.906,15.811,-7.626,7.169,14.073,16.894,13.718,-0.643,23.155,19.578,7.426,12.5,0.496,20.257,12.195,14.639,15.467,7.22,0.384,12.012,13.377,31.591,9.261,8.257,2.521,16.723,9.144,4.691,19.225,4.153,8.553,20.583,-8.739,23.406,2.595,26.032,14.165,27.147,6.803,17.244,4.683,3.03,7.361,21.554,6.261,7.363,14.769,12.773,8.226,17.656,14.498,17.49,13.883,13.448,22.383,5.776,-8.684,27.643,23.841,17.022,10.288,12.887,24.249,3.476,9.178,-2.165,7.303,4.105,17.572,11.743,6.688,-0.378,13.165,21.213,6.312,5.769,25.461,18.374,10.252,-1.58,15.599,19.011,10.644,-4.582,4.048,21.578,4.983,22.629,23.816,3.527,21.176,18.706,-8.304,-0.291,17.412,-0.302,14.805,5.513,22.863,20.155,21.474,15.287,17.557,7.112,-7.669,17.162,20.401,23.744,11.779,6.008,16.86,12.451,24.56,14.671,8.965,-0.766,1.131,14.805,14.224,12.321,19.718,14.116,13.8,7.588,19.897,0.011,12.902,-1.255,21.619,11.533,14.791,7.527,12.799,1.951,1.076,4.651,32.78,17.954,9.014,20.508,5.118,8.305,8.03,15.415,18.058,8.631,4.473,15.604,14.33,12.664,9.056,-0.995,7.764,8.742,5.73,31.582,10.53,7.707,3.26],[15.735,20.489,18.717,4.405,13.423,12.363,3.92,6.105,25.021,-8.045,8.31,22.183,26.458,15.183,9.102,5.449,7.77,15.683,11.155,0.128,3.873,12.567,-3.288,23.904,9.056,5.302,22.259,20.825,22.729,17.811,5.566,18.666,-1.103,22.047,15.776,-7.764,7.32,14.085,16.909,13.381,-0.805,23.11,19.457,7.147,12.689,0.175,20.213,12.316,14.666,15.218,7.55,0.221,11.843,13.681,31.474,9.354,8.28,2.362,16.793,9.281,4.762,19.25,3.959,8.456,20.752,-9.199,23.478,3.231,25.988,14.252,27.075,6.903,17.184,4.653,3.32,7.972,20.946,6.004,7.294,14.347,12.65,8.713,18.161,14.372,17.736,14.275,13.429,22.572,5.684,-9.036,27.913,23.836,16.868,10.25,12.69,24.166,3.492,9.658,-2.356,7.597,4.535,17.543,11.474,7.271,-0.02,12.86,21.135,6.475,5.654,25.473,18.563,10.349,-1.542,14.968,19.02,10.784,-4.688,3.9,21.127,5.073,22.39,24.013,3.992,21.064,19.012,-8.144,-0.627,17.936,0.376,15.022,5.647,22.247,20.492,21.739,14.889,17.767,6.874,-7.082,16.817,20.831,23.689,11.944,5.557,17.609,12.285,24.417,15.062,9.15,-1.184,1.158,14.282,14.497,12.517,18.975,13.976,14.024,7.688,19.999,0.319,13.182,-1.236,21.293,12.007,14.671,8.056,12.43,1.907,1.019,4.458,32.335,18.338,9.105,20.508,5.484,8.707,7.921,14.986,17.968,8.856,3.93,15.723,14.224,12.988,8.952,-0.543,7.827,8.391,5.867,31.521,10.314,7.734,3.239],[15.754,20.203,18.84,4.715,13.315,12.23,3.839,6.058,25.088,-8.265,8.356,22.189,26.732,15.088,8.952,5.492,8.007,15.509,11.033,0.36,3.834,12.466,-3.384,24.012,9.087,5.418,22.156,20.867,22.818,17.682,5.497,18.922,-0.922,22.175,15.764,-7.88,7.431,14.042,17.02,13.155,-0.808,23.098,19.443,6.991,13.01,-0.133,20.29,12.51,14.63,15.153,7.722,0.181,11.976,13.975,31.366,9.467,8.25,2.098,16.887,9.49,4.715,19.117,3.873,8.395,20.144,-8.838,23.709,3.158,25.548,14.393,26.557,7.222,17.13,4.652,3.317,7.884,20.774,5.567,6.96,14.069,12.833,9.382,18.47,14.449,18.246,14.399,13.584,22.827,5.619,-9.175,28.525,23.705,16.928,10.487,12.445,23.853,3.796,9.814,-2.198,7.95,3.948,17.34,10.573,7.132,0.335,12.616,21.355,6.56,6.575,25.844,18.233,10.467,-1.419,15.064,19.233,10.701,-4.862,3.755,20.89,5.357,22.484,24.095,4.52,21.108,18.497,-8.087,-0.514,17.958,0.546,15.209,5.828,22.248,20.651,21.684,14.676,17.56,6.99,-7.365,16.97,20.447,23.733,12.274,5.325,17.19,12.24,24.636,15.262,9.319,-1.006,1.011,13.334,14.145,12.463,18.628,13.467,14.018,7.392,20.35,-0.095,13.329,-1.591,21.713,12.329,14.648,7.821,12.369,1.791,0.68,3.967,32.52,18.497,9.003,20.459,5.39,9.212,7.924,14.949,17.628,8.64,3.719,14.994,14.632,12.563,9.177,-0.722,8.154,8.568,5.747,31.093,9.968,7.29,3.285],[15.579,20.02,19.054,4.896,13.33,12.305,3.754,5.909,25.001,-8.5,8.364,22.29,26.935,15.067,8.916,5.568,8.078,15.376,10.792,0.628,3.773,12.349,-3.484,24.175,9.129,5.6,22.085,20.957,23.041,17.474,5.642,18.954,-0.877,22.113,15.872,-8.036,7.636,13.904,16.977,12.956,-0.833,23.17,19.337,6.97,13.216,-0.24,20.427,12.566,14.526,15.179,7.564,0.122,12.26,14.19,31.278,9.616,8.098,1.943,16.937,9.595,4.455,19.014,3.918,8.309,20.033,-8.891,23.27,3.314,25.578,14.012,26.561,6.798,16.966,5.113,3.018,7.643,20.606,5.454,7.314,13.997,12.964,9.412,18.64,14.428,17.791,13.931,13.562,23.071,5.233,-8.623,28.726,23.544,16.8,10.254,12.503,23.946,3.751,9.703,-2.444,7.458,3.861,17.156,10.304,6.7,0.725,12.378,21.533,6.524,6.408,25.903,18.092,10.432,-1.091,15.61,19.079,10.563,-4.403,3.947,21.225,5.238,22.225,24.095,4.91,21.091,17.682,-8.01,0.092,17.8,0.048,15.242,5.844,22.995,20.637,21.757,15.216,17.615,7.363,-7.302,17.127,20.31,23.794,12.486,5.046,17.702,12.399,24.589,14.512,9.382,-1.313,0.832,13.454,13.71,12.266,18.756,13.481,14.558,7.299,20.411,-0.826,13.465,-1.702,21.894,12.462,14.446,7.863,13.31,1.76,0.645,4.461,32.455,18.246,9.299,20.583,4.74,9.218,7.795,15.225,17.83,8.455,4.096,15.331,15.108,12.751,9.308,-0.972,8.685,8.625,5.796,31.363,10.174,7.357,2.877],[15.25,19.873,19.139,4.91,13.36,12.52,3.674,5.684,24.794,-8.593,8.518,22.498,26.94,15.09,8.919,5.471,7.927,15.313,10.546,0.89,3.709,12.133,-3.418,24.306,9.094,5.837,21.958,20.991,23.273,17.349,5.83,18.721,-0.851,22.04,15.878,-8.028,7.773,13.968,17.156,12.919,-1.099,23.258,19.086,6.894,13.314,-0.298,20.525,12.608,14.322,15.294,7.469,0.065,12.61,14.291,31.293,9.743,7.962,1.847,17.048,9.624,4.358,19.095,4.036,8.169,20.275,-9.407,22.967,3.931,25.486,13.811,26.858,6.443,16.754,5.355,2.746,7.424,20.728,5.925,7.554,14.19,12.898,8.906,18.775,14.249,17.878,13.78,13.447,23.08,5.21,-9.192,28.71,24.021,16.886,10.315,12.199,24.245,3.812,9.743,-2.385,7.479,4.413,17.243,10.242,7.011,0.764,12.122,21.609,6.775,5.948,25.961,17.988,10.173,-0.675,15.08,19.255,10.511,-4.858,4.135,21.582,4.755,22.468,24.636,5.361,21.015,17.224,-8.455,0.251,17.717,-0.174,14.919,5.776,22.399,20.367,22.407,15.112,17.988,7.803,-7.17,17.256,20.552,23.456,12.636,5.212,17.424,12.289,24.678,14.298,9.589,-0.87,0.82,14.094,13.439,12.666,18.929,13.644,14.569,7.44,20.105,-0.788,12.943,-1.512,21.81,12.567,14.447,7.795,13.814,1.685,0.473,4.277,32.052,18.322,9.875,20.394,4.679,9.22,7.566,15.294,18.5,9.201,4.555,15.82,15.398,13.513,9.033,-1.205,8.423,8.385,5.362,31.401,9.984,7.638,2.712],[15.035,19.786,19.171,4.945,13.362,12.691,3.659,5.498,24.627,-8.675,8.778,22.885,26.811,15.143,8.903,5.488,7.845,15.3,10.324,1.203,3.775,11.97,-3.344,24.312,9.066,6.045,21.842,20.95,23.512,17.34,5.969,18.395,-0.826,22.015,15.765,-7.999,7.778,13.99,17.414,13.105,-1.297,23.13,18.807,6.899,13.225,-0.207,20.473,12.665,13.936,15.457,7.417,-0.121,12.846,14.311,31.277,9.925,7.912,1.659,17.255,9.565,4.379,19.315,4.113,7.909,20.273,-9.536,22.812,3.611,25.115,14.165,27.326,6.736,16.069,4.705,2.766,7.935,20.2,5.781,7.494,14.14,13.01,8.699,18.472,14.229,18.379,13.581,13.654,23.248,5.364,-9.647,28.47,24.559,16.821,10.615,12.023,24.612,3.558,9.593,-2.453,7.636,3.963,17.176,10.322,7.081,0.485,11.407,21.969,6.489,6.886,25.984,17.707,10.608,-0.323,14.576,19.123,10.417,-4.862,4.211,21.973,5.183,22.89,24.925,5.805,21.104,17.113,-8.256,-0.049,17.585,0.365,15.347,5.993,21.96,20.272,22.087,15.15,18.079,7.831,-7.532,16.964,20.102,23.912,12.873,5.458,17.225,12.222,24.574,14.842,9.591,-1.041,0.551,13.765,13.727,12.579,19.264,13.754,14.589,7.214,20.349,-0.202,13.269,-1.687,21.936,12.562,14.812,7.666,14.122,1.347,0.106,3.741,32.147,18.491,9.577,20.593,5.449,8.828,7.446,15.752,18.748,9.593,4.707,15.159,15.673,13.796,8.994,-1.284,8.127,8.142,5.568,31.228,9.742,7.301,2.976],[14.755,19.574,19.259,4.765,13.315,12.831,3.681,5.487,24.513,-8.872,9.015,23.336,26.716,15.196,8.885,5.464,7.82,15.307,10.317,1.369,3.803,11.807,-3.193,24.257,9.114,6.281,21.721,20.869,23.848,17.333,5.976,18.226,-0.736,21.827,15.805,-8.011,7.798,14.061,17.598,13.288,-1.464,23.101,18.518,6.864,13.135,-0.017,20.403,12.785,13.559,15.512,7.612,-0.443,13.071,14.369,31.237,9.994,7.811,1.39,17.446,9.375,4.243,19.459,4.267,7.725,19.956,-9.088,22.787,3.616,25.189,14.326,27.238,6.195,16.4,4.691,3.113,8.473,20.376,5.396,7.753,13.604,13.551,8.704,18.046,14.611,18.402,13.227,13.857,23.721,5.564,-9.252,28.106,24.787,16.947,10.433,12.148,23.935,3.739,9.509,-2.504,7.695,3.785,17.119,10.198,6.677,1.124,11.063,22.113,6.29,7.137,26.096,17.727,10.55,-0.226,14.892,19.029,10.537,-4.262,4.168,21.4,5.384,22.732,24.81,6.251,21.064,17.118,-8.302,-0.573,17.428,0.551,15.216,6.144,22.229,19.996,22.302,15.077,18.296,7.358,-7.474,17.196,19.362,23.878,12.916,6.265,17.588,12.394,24.601,14.213,9.65,-1.34,0.289,13.723,14.067,12.445,19.583,13.445,14.726,7.208,20.842,0.1,13.105,-1.912,21.917,12.923,14.757,7.739,13.5,1.208,0.417,4.378,32.362,18.8,9.189,20.888,5.775,9.053,7.694,15.973,18.716,9.716,4.129,15.159,15.393,13.254,9.197,-1.072,8.006,8.624,5.607,31.356,9.585,7.179,2.709],[14.592,19.56,19.252,4.598,13.253,12.944,3.775,5.53,24.617,-8.97,9.194,23.684,26.655,15.198,8.738,5.408,7.835,15.277,10.634,1.459,3.724,11.773,-3.071,24.141,9.119,6.399,21.603,20.707,24.091,17.365,5.876,18.355,-0.743,21.743,16.065,-8.032,7.812,14.128,17.794,13.398,-1.582,23.184,18.223,6.89,13.21,0.16,20.364,12.85,13.245,15.454,8.013,-0.632,12.996,14.344,31.241,9.94,7.771,1.245,17.432,9.237,4.106,19.574,4.382,7.736,19.362,-9.234,22.741,3.757,24.956,14.197,26.602,6.303,16.043,4.668,3.217,8.502,19.758,5.309,8.192,13.334,13.512,8.81,18.567,14.572,18.117,13.783,13.92,24.406,5.529,-9.332,28.504,24.743,16.858,10.176,12.384,23.482,3.434,9.503,-1.909,7.56,3.995,16.945,9.862,6.573,1.718,11.433,22.305,6.373,7.111,25.81,17.8,10.386,-0.262,15.282,18.853,10.158,-4.009,4.106,20.889,5.192,22.621,24.964,6.503,20.739,16.676,-8.329,-0.4,17.359,0.303,15.047,6.073,21.743,20.168,22.523,15.026,18.62,7.021,-7.152,17.082,18.866,23.374,13.319,6.924,17.722,12.398,24.785,13.495,9.634,-0.704,0.176,13.941,13.821,12.333,19.748,12.64,14.489,6.971,20.429,0.274,13.155,-1.459,21.927,13.136,14.642,8.368,13.26,1.111,-0.118,4.511,32.287,18.921,9.132,20.802,5.57,9.915,7.859,15.72,18.648,9.126,3.881,15.053,15.78,13.43,9.727,-1.754,8.072,8.545,5.082,31.242,9.418,7.409,2.287],[14.519,19.505,19.287,4.526,13.372,12.869,3.765,5.594,24.675,-8.96,9.283,23.921,26.716,15.184,8.53,5.281,7.934,15.243,10.881,1.537,3.721,11.863,-2.973,23.974,9.053,6.316,21.438,20.389,24.248,17.355,5.843,18.72,-0.854,21.627,16.27,-7.95,7.755,14.026,17.96,13.361,-1.36,23.233,18.148,6.987,13.365,0.429,20.132,12.782,12.937,15.344,8.375,-0.728,12.766,14.358,31.182,9.742,7.78,1.113,17.308,9.336,3.991,19.571,4.33,7.824,20.112,-9.953,22.973,3.526,24.982,13.829,26.544,6.514,15.629,4.436,3.03,8.508,20.03,5.939,8.049,12.703,13.31,8.82,19.164,14.349,18.009,14.157,13.884,24.58,5.235,-9.682,28.434,24.969,16.757,10.09,12.537,23.884,3.603,9.376,-2.173,7.354,3.584,16.625,10.214,6.821,1.555,11.638,22.422,6.426,7.028,25.665,17.888,10.451,-0.109,15.667,18.618,10.295,-4.115,4.103,21.305,5.438,22.825,25.187,6.431,20.984,16.4,-8.206,0.046,17.632,-0.104,15.827,5.834,21.609,20.398,22.406,15.178,18.328,7.371,-7.232,17.366,18.8,23.86,13.595,7.019,18.387,12.323,24.326,13.101,9.628,-0.474,0.47,13.827,13.889,12.703,19.32,12.823,14.811,6.957,19.837,0.2,13.03,-1.923,21.605,12.996,14.795,8.579,13.831,0.468,-0.223,3.828,32.49,18.791,9.193,20.797,5.809,10.062,7.952,15.598,18.248,8.611,4.27,15.067,15.912,13.661,9.961,-2.073,7.923,8.061,5.137,31.247,9.648,7.226,2.346],[14.451,19.642,19.459,4.351,13.513,12.672,3.641,5.613,24.656,-9.045,9.318,24.052,26.797,15.185,8.404,5.317,8.042,15.222,11.055,1.518,3.795,12.055,-2.835,23.891,8.939,6.109,21.477,20.16,24.277,17.277,5.835,19.215,-1.076,21.445,16.336,-7.773,7.727,13.986,18.061,13.247,-1.073,23.282,18.147,7.079,13.525,0.659,19.762,12.704,12.604,15.215,8.421,-0.879,12.853,14.423,31.093,9.361,7.758,1.101,17.1,9.513,3.808,19.498,4.243,8.128,19.533,-9.601,23.252,3.627,25.387,13.81,27.322,6.714,14.659,4.546,2.836,8.843,20.362,5.963,7.878,12.563,13.584,8.33,19.117,14.611,18.361,13.98,13.492,24.35,4.771,-9.548,28.498,25.496,16.666,10.167,12.712,23.807,3.55,9.727,-2.467,7.351,3.682,17.094,10.654,6.82,1.551,11.39,22.729,6.137,6.428,25.525,17.762,10.321,-0.019,15.204,18.344,10.487,-3.784,3.985,21.052,5.338,23.118,25.384,6.286,20.737,16.528,-8.361,-0.353,17.961,0.043,15.737,6.13,21.865,20.938,22.24,15.002,18.726,7.769,-7.098,17.95,19.009,23.907,13.498,6.991,18.477,12.424,24.644,13.036,9.522,-0.528,0.697,13.853,14.106,12.423,19.461,13.063,15.18,7.533,19.886,0.301,13.005,-2.303,21.32,12.608,14.628,7.941,14.101,0.486,-0.154,3.613,32.31,18.568,9.248,20.71,5.56,10.13,7.7,15.501,18.344,8.769,4.468,15.309,15.713,13.366,10.164,-1.65,8.166,7.964,5.044,31.649,9.927,7.184,2.496],[14.246,19.778,19.773,4.297,13.594,12.512,3.463,5.579,24.698,-9.099,9.309,24.041,27.094,15.281,8.286,5.491,8.082,15.292,11.182,1.461,3.909,12.018,-2.628,23.885,8.816,5.822,21.638,20.163,24.297,17.159,5.93,19.662,-1.353,21.355,16.292,-7.717,7.698,14.059,18.163,13.18,-1.014,23.234,18.251,7.217,13.583,0.726,19.467,12.661,12.296,15.111,8.208,-0.874,13.122,14.255,30.978,9.152,7.809,1.149,16.969,9.701,3.637,19.56,4.145,8.518,19.364,-8.914,23.057,3.632,25.177,14.278,27.682,6.844,14.372,3.774,2.433,8.559,20.063,5.443,8.293,12.605,13.16,7.992,19.188,14.749,18.421,14.019,13.512,24.413,4.457,-9.464,28.556,25.693,16.834,10.206,12.883,23.433,3.552,9.832,-1.508,7.491,4.153,16.97,11.303,6.895,1.494,11.654,22.724,6.568,6.082,25.65,18.008,10.332,-0.122,14.603,18.351,10.406,-3.81,4.102,20.57,5.638,23.303,25.373,6.235,20.595,16.647,-8.031,-0.495,18.564,-0.295,15.327,6.351,21.6,21.433,22.04,14.944,18.954,7.737,-7.029,17.151,18.709,23.6,13.247,6.787,17.943,12.397,24.885,13.457,9.44,-0.476,0.766,13.731,14.15,12.156,19.634,12.522,15.296,7.829,19.797,1.053,12.609,-1.634,21.029,13.047,14.443,7.518,13.512,0.826,-0.072,3.715,32.022,18.35,9.26,21.02,5.012,9.766,7.69,15.404,18.628,8.123,4.384,15.314,15.499,13.986,9.936,-2.073,8.301,7.973,4.778,31.851,10.415,7.119,2.357],[13.953,19.803,20.079,4.166,13.681,12.462,3.269,5.493,24.636,-9.04,9.328,24.033,27.358,15.478,8.184,5.724,7.99,15.255,11.394,1.421,4.132,11.856,-2.344,23.853,8.86,5.52,21.769,20.155,24.308,17.137,6.147,19.953,-1.612,21.244,16.179,-7.642,7.53,14.072,18.17,13.26,-1.044,23.198,18.31,7.249,13.509,0.99,19.291,12.587,12.044,15.051,8.022,-0.815,13.058,14.117,30.826,9.132,7.921,1.099,16.982,9.71,3.521,19.601,4.022,8.751,19.917,-9.143,22.973,3.455,24.903,14.367,27.648,6.777,14.831,3.912,2.261,8.615,20.693,5.654,8.271,11.996,12.895,8.106,19.627,14.745,18.777,13.932,13.63,24.556,4.479,-9.42,28.965,25.422,17.073,9.953,12.706,23.427,4.011,9.619,-1.831,7.403,4.194,16.718,11.443,6.917,1.066,12.001,22.953,6.675,6.43,25.653,18.191,10.304,-0.255,14.7,18.572,10.336,-3.591,4.293,20.798,5.811,23.122,25.483,6.097,20.968,16.686,-8.292,-0.352,19.269,-0.559,15.47,5.976,21.794,21.758,21.8,15.377,18.75,7.474,-7.476,17.486,18.196,23.447,12.726,6.541,18.351,12.309,24.669,13.493,9.409,-0.506,0.911,13.807,14.254,12.509,19.765,11.953,15.171,7.958,19.751,1.216,12.614,-0.941,20.779,12.708,14.442,7.644,13.474,0.632,-0.361,3.728,31.89,18.67,9.279,20.888,5.281,8.479,8.105,15.649,18.551,8.319,3.935,14.979,15.609,14.264,9.739,-1.934,8.527,8.257,4.604,31.47,10.683,7.455,2.238],[13.564,20.076,20.336,3.991,13.657,12.492,3.106,5.463,24.502,-8.931,9.386,24.035,27.426,15.789,8.139,5.974,7.775,15.133,11.447,1.344,4.227,11.917,-2.25,23.722,8.962,5.332,22.015,20.205,24.294,17.29,6.324,20.149,-1.79,21.086,16.316,-7.646,7.326,14.067,18.118,13.562,-1.041,23.239,18.339,7.105,13.228,1.402,19.28,12.637,11.827,15.054,8.032,-0.789,12.889,13.987,30.662,9.169,8.052,0.96,17.062,9.568,3.53,19.607,3.949,8.824,19.615,-9.542,23.284,3.078,25.153,14.174,27.575,6.793,15.036,4.304,2.19,8.669,20.084,6.001,8.148,12.047,13.163,7.89,20.492,14.714,18.907,13.828,13.524,24.957,4.352,-9.302,28.883,25.199,16.963,10.078,13.233,23.664,4.187,9.585,-2.208,7.4,4.421,16.785,11.311,6.775,1.301,11.846,22.971,6.824,6.227,25.356,18.07,10.365,-0.37,15.27,18.407,10.058,-3.271,4.646,20.484,5.572,23.061,25.756,5.475,21.166,16.743,-8.284,-0.835,19.374,-0.625,15.641,6.106,21.339,22.02,22.205,14.942,18.936,6.822,-7.175,17.3,17.815,23.709,13.193,6.144,19.048,12.596,24.574,12.951,9.161,0.612,0.734,14.109,14.18,12.3,19.498,11.972,14.643,7.942,19.721,1.14,12.749,-1.621,20.702,12.516,14.763,8.065,13.258,0.613,-0.487,3.908,32.009,18.439,9.339,20.638,5.376,9.053,8.44,15.85,18.283,8.587,4.001,14.304,15.653,13.707,9.659,-2.117,8.574,8.183,4.52,31.176,10.742,7.68,1.873],[13.329,20.153,20.622,4.002,13.446,12.497,2.976,5.57,24.581,-8.755,9.392,24.121,27.364,16.017,8.135,6.218,7.574,15.165,11.487,1.174,4.165,12.086,-2.318,23.475,8.945,5.21,22.202,20.157,24.275,17.475,6.408,20.255,-1.984,20.954,16.579,-7.739,7.157,13.982,18.167,13.917,-1.247,23.319,18.221,6.909,12.927,1.752,19.343,12.714,11.678,15.066,8.209,-0.907,12.658,13.953,30.705,9.294,7.933,0.855,17.126,9.4,3.652,19.502,3.92,8.926,20.056,-9.353,23.166,2.986,25.021,14.515,27.406,6.811,14.687,3.85,2.293,8.417,20.76,5.983,8.417,11.987,13.278,7.893,21.26,14.91,18.962,13.648,13.533,25.29,4.416,-9.557,28.925,25.179,17.307,9.968,13.105,23.873,4.54,9.334,-1.756,7.4,4.561,16.319,11.055,6.867,1.476,12.125,22.77,7.412,5.602,25.134,17.955,10.379,-0.456,15.547,18.264,10.438,-3.221,4.586,20.507,5.586,22.939,25.518,5.188,21.295,17.182,-8.595,-1.261,19.483,-0.551,15.676,6.457,21.216,21.932,22.003,15.206,19.223,6.561,-6.93,17.364,18.264,23.735,13.441,5.67,18.739,12.419,25.023,12.142,8.975,0.588,0.653,14.07,14.121,12.376,19.595,12.292,14.422,7.735,19.842,1.727,12.696,-2.036,20.769,12.755,15.228,8.584,13.19,0.835,-0.888,3.61,32.019,18.382,9.509,20.965,5.022,9.358,8.25,15.556,18.377,8.105,4.218,14.437,15.363,13.046,9.422,-1.84,8.492,8.109,4.722,31.243,10.809,7.514,1.918],[13.534,20.315,20.872,4.101,13.263,12.496,3.005,5.662,24.665,-8.602,9.42,24.265,27.219,16.219,8.133,6.376,7.443,15.157,11.415,1.126,4.124,12.393,-2.362,23.335,8.832,5.139,22.342,20.15,24.181,17.671,6.283,20.316,-2.018,20.764,16.818,-7.97,7.005,13.903,18.183,14.136,-1.45,23.464,18.032,6.722,12.888,2.102,19.44,12.722,11.578,15.225,8.306,-0.996,12.48,13.885,30.981,8.99,7.742,0.803,17.165,9.229,3.649,19.397,3.852,9.035,19.746,-8.699,23.08,3.295,24.861,15.278,27.841,6.978,14.214,3.817,2.111,8.854,21.267,5.91,8.18,11.648,13.373,7.734,21.472,14.534,19.445,13.434,13.187,25.217,4.185,-9.869,28.874,25.503,17.793,9.866,12.625,23.115,4.824,9.263,-1.933,7.714,4.065,16.247,11.259,7.026,0.794,12.068,22.42,7.578,5.757,25.046,17.904,10.487,-0.567,15.756,18.379,10.798,-3.786,4.432,20.988,5.666,23.354,25.287,4.884,21.048,17.319,-8.419,-1.175,19.299,-0.737,15.788,6.254,21.478,22.053,21.635,15.279,19.333,6.731,-7.121,18.013,18.631,23.599,13.061,5.337,18.577,12.229,25.148,11.684,8.871,0.374,0.416,14.498,14.808,12.63,18.926,12.186,14.26,7.462,20.032,1.848,12.759,-2.026,20.665,12.522,15.228,8.437,12.787,0.704,-0.55,3.184,31.973,18.55,9.111,20.817,4.727,9.339,8.476,15.641,18.437,8.308,4.031,14.452,15.299,13.345,9.582,-2.001,8.505,7.953,5.216,31.722,10.876,7.311,1.894],[13.786,20.548,21.011,4.2,13.171,12.414,3.087,5.665,24.594,-8.407,9.461,24.346,27.166,16.463,8.145,6.406,7.533,15.177,11.286,1.192,4.031,12.635,-2.465,23.238,8.744,5.114,22.432,20.202,23.961,17.776,6.004,20.286,-1.921,20.687,17.059,-8.174,6.943,13.93,18.046,14.347,-1.573,23.465,17.785,6.623,12.972,2.306,19.419,12.709,11.528,15.327,8.311,-1.038,12.346,13.79,31.513,8.566,7.664,0.795,17.146,9.095,3.494,19.353,3.694,9.136,20.108,-8.409,23.474,3.45,25.046,15.484,28.017,7.174,14.29,4.44,2.112,8.881,20.844,6.085,8.192,11.991,13.17,7.043,21.216,14.355,19.583,13.534,13.681,25.07,4.324,-9.647,28.556,25.629,18.005,10.038,12.67,22.454,4.685,9.376,-2.101,7.29,4.465,16.405,11.237,6.818,0.634,12.14,22.212,7.326,5.863,25.12,18.36,10.451,-0.214,15.693,18.396,10.894,-3.929,4.222,21.036,5.566,23.649,25.117,4.698,21.113,17.117,-8.374,-1.115,19.719,-0.858,16.098,5.868,21.007,21.907,21.642,14.929,19.179,6.956,-7.171,17.62,18.485,23.818,12.95,5.267,19.059,12.458,24.911,11.805,8.732,0.72,0.174,14.809,15.15,12.89,19.128,11.827,14.677,7.378,20.248,1.95,12.493,-2.144,20.786,12.508,14.878,8.043,12.322,0.765,-0.425,3.309,32.528,18.158,8.552,20.737,4.737,9.082,8.969,15.756,18.743,7.581,3.851,15.318,14.757,13.703,9.841,-2.121,8.309,7.768,4.854,31.565,11.051,7.033,1.636],[13.973,20.768,21.002,4.38,13.177,12.361,3.252,5.711,24.542,-8.047,9.33,24.243,27.197,16.709,8.112,6.282,7.675,15.261,11.268,1.346,4.064,12.685,-2.563,23.259,8.494,5.193,22.329,20.105,23.692,17.796,5.712,20.311,-1.836,20.709,17.119,-8.173,6.984,14.054,17.974,14.557,-1.724,23.259,17.661,6.564,13.152,2.445,19.421,12.677,11.491,15.41,8.196,-1.058,12.169,13.69,32.001,8.214,7.623,0.719,17.088,9.047,3.39,19.285,3.5,9.264,20.392,-8.676,23.311,3.466,24.882,15.23,27.737,6.953,14.795,4.218,2.551,8.433,21.435,6.196,8.753,12.4,12.74,6.911,21.57,14.579,19.744,13.581,13.696,24.953,4.534,-9.224,28.693,25.668,18.133,9.873,12.678,22.221,4.533,9.497,-2.054,7.068,4.44,16.746,11.373,6.669,0.859,12.768,22.082,7.295,5.57,24.706,18.672,9.868,-0.11,15.291,18.341,11.089,-3.637,3.886,20.85,5.681,23.613,24.804,4.845,21.514,17.479,-8.823,-0.962,20.089,-0.931,16.489,5.868,20.784,21.693,21.792,15.153,18.479,6.828,-7.658,18.012,18.053,23.661,12.417,5.358,18.822,12.511,24.912,12.448,8.801,0.912,0.221,14.698,14.948,12.649,19.138,11.702,14.859,7.362,19.941,2.005,12.572,-2.227,21.005,12.177,15.06,8.296,11.973,0.61,-0.736,3.877,32.826,18.221,8.627,20.636,4.813,8.194,9.121,16.188,18.692,7.216,3.847,15.993,15.097,13.452,9.714,-2.11,7.617,8.008,4.441,32.178,11.087,7.106,1.687],[14.097,21.028,20.962,4.45,13.305,12.31,3.425,5.728,24.321,-7.7,9.221,24.11,27.225,16.882,8.058,6.009,7.715,15.288,11.367,1.531,4.118,12.687,-2.471,23.325,8.179,5.21,22.299,19.939,23.435,17.928,5.667,20.338,-1.838,20.784,17.193,-8.148,7.047,14.283,17.842,14.681,-1.829,23.071,17.703,6.418,13.187,2.551,19.566,12.636,11.539,15.546,8.036,-1.095,11.968,13.631,32.33,7.909,7.705,0.545,17.144,9.123,3.43,19.311,3.438,9.273,20.022,-8.8,22.892,3.69,24.844,15.404,27.659,6.978,15.433,3.997,2.589,8.277,21.332,6.292,8.059,12.608,13.257,6.845,21.524,14.521,19.564,13.628,13.256,24.654,5.128,-8.289,28.922,25.41,18.249,9.606,12.78,22.317,4.511,9.547,-2.547,6.93,4.099,17.244,11.769,7.1,0.949,13.153,21.671,7.209,6.01,24.531,18.137,9.877,-0.158,15.172,18.136,10.904,-3.717,3.802,20.548,5.618,23.505,24.839,5.431,21.122,17.774,-9.084,-1.087,19.681,-0.865,16.108,5.934,20.673,22.017,22.162,15.257,18.697,6.505,-7.548,17.955,17.932,23.216,12.436,5.909,18.314,12.569,24.803,13.006,8.883,0.92,-0.023,15.173,14.965,12.323,19.074,12.022,14.594,7.665,19.508,1.913,12.36,-2.315,20.786,12.179,15.508,8.144,11.482,0.498,-0.375,3.489,32.775,18.467,8.424,20.426,4.398,7.74,9.183,16.024,18.645,7.677,3.641,16.034,15.151,12.62,9.193,-2.331,7.522,7.762,4.62,33.07,11.032,7.036,1.637],[14.177,20.927,20.813,4.202,13.364,12.366,3.52,5.762,24.082,-7.432,9.12,24.075,27.218,16.952,8.006,5.731,7.66,15.299,11.538,1.589,3.838,12.663,-2.435,23.314,8.118,5.271,22.31,19.782,23.226,18.082,5.796,20.215,-1.971,20.974,17.175,-8.141,7.068,14.485,17.769,14.767,-1.938,22.93,17.891,6.342,12.986,2.551,19.673,12.521,11.749,15.73,7.824,-1.177,11.606,13.649,32.534,7.819,7.826,0.408,17.215,9.21,3.513,19.336,3.311,9.275,20.832,-8.381,23.229,3.753,24.906,15.718,27.724,7.264,15.445,4.403,2.682,8.469,21.499,6.011,7.601,12.851,13.521,6.616,21.482,14.92,19.691,13.451,13.469,24.584,5.232,-7.586,28.6,25.475,18.46,9.77,13.097,22.819,4.197,9.584,-2.2,6.766,4.763,16.945,11.713,7.111,1.184,12.934,21.602,6.981,5.836,24.729,18.389,9.894,0.096,15.313,17.905,10.855,-3.624,3.924,20.387,5.244,23.344,24.435,5.924,20.964,17.626,-8.716,-1.42,19.151,-0.758,16.114,5.879,20.614,21.638,22.003,15.519,19.294,6.249,-7.185,17.679,18.353,23.217,13.143,6.224,18.243,12.744,24.624,12.825,8.845,0.875,-0.138,15.685,14.959,12.9,19.228,12.059,14.615,7.654,20.028,2.291,12.312,-2.21,20.934,12.247,15.725,8.0,11.386,0.592,-0.412,3.295,33.253,18.081,8.634,20.861,4.249,7.76,9.194,15.79,18.841,7.369,3.854,15.616,14.741,12.737,9.143,-2.212,7.898,7.447,4.936,32.4,11.191,6.939,1.659],[14.171,20.913,20.942,3.931,13.354,12.517,3.437,5.826,24.1,-7.146,8.939,24.023,27.121,16.956,7.939,5.472,7.601,15.36,11.768,1.634,3.558,12.628,-2.36,23.346,8.259,5.384,22.324,19.646,23.078,18.217,5.848,19.951,-2.088,21.27,17.146,-8.055,6.959,14.581,17.812,14.856,-1.925,22.824,18.182,6.247,12.825,2.416,19.868,12.444,11.96,15.977,7.638,-1.27,11.252,13.688,32.576,7.817,7.86,0.406,17.224,9.473,3.67,19.194,3.129,9.436,20.644,-8.077,23.024,3.225,24.744,15.785,27.897,7.121,15.285,3.803,2.944,8.48,21.452,5.721,8.034,12.627,13.163,7.44,21.304,14.935,19.629,13.837,13.755,24.547,5.277,-7.37,28.472,25.461,18.673,9.765,13.033,23.187,3.979,9.306,-1.868,6.996,4.022,16.783,11.506,6.579,0.911,12.585,21.312,6.95,5.83,25.177,18.584,9.746,0.13,14.804,17.967,11.106,-3.664,4.139,20.474,5.111,23.173,24.138,5.996,20.701,17.674,-8.435,-1.428,18.795,-1.005,16.217,5.935,20.273,21.384,21.979,15.94,18.875,6.436,-6.949,17.967,19.308,23.378,12.674,6.466,18.266,13.163,24.392,12.687,8.854,0.782,-0.002,15.36,15.259,12.824,19.132,12.075,14.561,7.557,20.514,2.393,12.696,-2.355,20.906,12.294,15.554,7.579,11.537,0.486,-0.734,3.431,33.397,18.241,8.559,20.778,4.377,8.314,9.36,16.077,19.014,7.054,3.484,15.417,14.713,12.651,8.978,-2.206,8.286,7.446,5.418,32.129,11.224,7.508,1.374],[14.044,20.969,21.187,3.704,13.415,12.55,3.393,5.79,24.156,-6.933,8.952,23.881,26.964,16.972,7.951,5.311,7.557,15.437,11.902,1.59,3.358,12.634,-2.211,23.508,8.382,5.586,22.232,19.65,22.988,18.322,5.916,19.67,-2.046,21.389,17.217,-8.008,6.861,14.59,17.712,14.866,-1.843,22.761,18.525,6.088,12.673,2.189,20.04,12.502,11.989,16.13,7.291,-1.387,11.015,13.694,32.469,7.842,7.909,0.527,17.29,9.726,3.888,18.971,3.02,9.67,20.092,-7.965,23.092,3.126,24.936,15.519,27.499,6.956,15.473,3.556,2.736,7.843,21.559,6.113,8.064,12.452,13.096,8.045,21.421,14.232,19.593,14.005,14.03,24.184,4.705,-7.429,28.567,25.477,18.411,9.812,13.049,23.42,3.903,9.369,-2.192,7.019,3.035,17.117,11.925,6.541,1.028,12.578,21.215,6.728,5.882,25.301,18.553,10.069,-0.153,14.779,17.907,11.008,-3.629,4.191,20.548,5.081,23.246,24.309,5.731,20.915,17.714,-8.473,-1.71,18.754,-1.166,16.057,5.929,20.212,21.438,22.828,15.845,19.002,6.446,-7.475,17.752,20.034,23.216,12.469,6.347,18.414,13.418,24.403,13.439,8.647,0.475,0.064,15.384,15.447,12.142,18.894,12.159,14.397,7.605,20.307,2.049,12.105,-2.335,21.222,12.304,15.61,7.57,11.541,0.402,-0.399,3.491,33.334,18.026,9.444,20.678,4.109,7.953,9.927,16.602,19.027,7.467,2.966,15.886,15.071,12.248,8.766,-2.512,8.367,7.731,5.615,32.321,11.342,7.147,1.355],[14.033,20.915,21.201,3.586,13.373,12.579,3.297,5.723,24.253,-6.832,9.026,23.667,26.809,16.922,8.026,5.287,7.601,15.674,11.911,1.58,3.086,12.63,-2.159,23.805,8.496,5.729,22.204,19.642,23.034,18.329,5.883,19.384,-2.005,21.494,17.183,-8.033,6.701,14.47,17.695,14.867,-1.755,22.676,18.732,5.978,12.738,1.852,20.141,12.432,11.905,16.319,6.956,-1.373,10.909,13.747,32.316,7.847,7.885,0.857,17.346,10.081,4.036,18.677,2.923,9.868,21.017,-7.82,23.325,3.156,25.189,15.371,27.028,7.054,15.505,4.068,2.439,7.889,21.43,6.281,7.938,12.409,13.305,7.802,21.754,14.537,19.99,13.816,13.629,24.163,4.75,-7.797,28.526,25.18,17.983,9.797,13.264,23.185,3.767,9.488,-2.097,7.26,3.348,17.5,12.271,6.772,1.064,12.569,21.393,6.395,6.114,25.447,19.195,10.093,-0.045,15.231,18.059,10.784,-3.599,4.357,20.476,4.605,23.216,24.032,5.824,21.038,18.084,-8.737,-1.787,18.669,-0.603,16.415,5.879,20.212,21.241,22.6,15.872,18.895,6.257,-7.212,17.598,20.207,22.938,12.365,6.029,18.175,12.949,24.354,13.665,8.573,0.232,0.072,16.003,15.137,12.545,19.312,11.991,13.982,7.481,20.522,1.927,12.253,-2.274,21.602,12.251,15.928,7.542,10.839,0.15,-0.631,3.642,32.817,17.92,9.853,20.055,3.967,7.226,9.949,16.614,19.138,7.431,3.317,15.898,15.013,12.038,8.373,-2.586,8.333,8.407,5.8,32.763,11.7,6.825,1.625],[14.165,20.962,21.126,3.782,13.332,12.66,3.197,5.762,24.522,-6.829,9.142,23.475,26.77,16.834,8.081,5.321,7.607,15.889,11.891,1.674,2.991,12.516,-2.234,24.035,8.638,5.818,22.249,19.573,23.07,18.458,5.766,19.125,-1.914,21.456,17.158,-7.965,6.586,14.297,17.817,14.925,-1.868,22.456,18.727,5.975,12.755,1.676,20.549,12.386,11.826,16.51,6.808,-1.198,10.71,13.731,32.177,7.754,7.881,1.13,17.406,10.415,4.17,18.383,3.047,9.933,21.089,-7.68,23.178,3.279,25.294,15.1,26.829,7.224,15.284,3.468,2.477,8.108,21.029,5.581,8.022,12.628,13.42,7.149,21.244,14.947,19.79,13.641,13.175,24.454,4.854,-7.945,28.387,24.587,18.129,9.786,13.231,23.228,3.59,9.364,-1.767,7.39,3.783,17.803,12.08,6.865,1.149,12.524,21.32,6.51,6.509,25.787,18.812,10.128,0.148,15.352,18.041,10.764,-3.641,4.123,20.639,4.114,23.245,24.145,5.538,20.898,18.102,-8.826,-1.266,18.123,-0.659,15.997,5.758,19.87,20.889,22.088,15.454,18.274,6.131,-7.151,17.435,19.651,23.363,12.901,5.387,17.422,12.937,23.66,13.028,8.281,-0.003,-0.068,15.938,15.672,12.805,19.988,12.143,14.119,7.369,20.716,1.738,12.109,-2.085,21.407,12.303,15.521,7.08,10.563,0.428,-0.112,3.751,32.957,17.767,9.961,19.76,3.993,7.578,9.516,16.171,19.064,7.362,3.18,15.576,15.021,12.136,7.909,-2.519,8.995,8.558,5.454,32.766,11.761,7.42,2.304],[14.3,20.966,20.922,4.182,13.433,12.602,3.114,5.783,24.77,-6.94,9.219,23.333,26.795,16.745,8.067,5.326,7.536,16.01,11.933,1.725,2.967,12.332,-2.329,24.191,8.749,6.077,22.251,19.597,23.142,18.602,5.639,18.897,-1.658,21.198,16.992,-7.927,6.466,14.126,17.688,15.034,-2.044,22.264,18.452,6.061,12.814,1.649,20.974,12.391,11.671,16.476,6.702,-0.965,10.465,13.749,32.103,7.736,8.044,1.439,17.288,10.731,4.124,18.201,3.227,9.758,20.729,-7.702,23.526,3.232,25.747,15.52,26.914,7.577,15.231,3.773,3.009,8.211,21.357,5.313,8.351,12.758,13.15,7.151,21.276,14.72,19.491,13.58,13.626,24.599,4.952,-7.643,28.126,24.255,18.23,9.902,13.114,23.678,3.907,9.27,-2.463,7.292,3.841,17.859,11.426,6.743,1.344,12.5,21.358,6.748,6.089,26.026,18.139,10.418,0.019,15.725,17.875,10.822,-3.599,3.839,20.622,3.994,23.186,24.37,4.929,20.702,17.802,-8.369,-1.088,17.7,-0.315,15.771,5.745,19.476,20.483,22.242,15.823,18.69,6.029,-6.996,17.275,19.14,23.036,12.546,4.949,18.045,13.029,23.421,12.872,8.334,0.269,-0.162,15.782,15.807,12.19,19.789,12.376,14.413,7.302,21.251,1.543,12.405,-2.323,22.167,12.164,15.706,6.853,10.864,0.75,0.218,3.642,33.259,17.496,9.747,19.412,3.68,8.186,9.539,16.075,18.794,7.086,3.42,15.55,15.093,11.933,8.165,-2.231,9.206,7.902,5.61,32.054,11.678,7.115,2.178],[14.259,20.926,20.677,4.551,13.521,12.495,3.252,5.824,25.036,-7.136,9.211,23.239,26.802,16.714,8.209,5.293,7.382,16.183,11.87,1.54,2.96,12.115,-2.405,24.395,8.84,6.205,22.188,19.786,23.357,18.625,5.474,18.644,-1.352,20.87,16.64,-7.889,6.431,14.13,17.64,15.067,-2.195,22.11,18.029,6.244,12.92,1.753,21.288,12.338,11.598,16.473,6.715,-0.737,10.342,13.907,31.993,7.833,8.232,1.638,17.056,10.811,4.044,18.124,3.192,9.551,21.08,-8.008,23.806,3.639,25.878,15.5,27.403,7.357,15.198,5.308,2.939,8.138,21.659,6.002,8.547,12.492,12.961,7.096,21.357,14.731,19.471,13.48,13.641,24.583,5.0,-7.398,28.124,24.171,18.328,9.865,13.209,24.077,4.219,9.244,-2.593,7.514,3.643,18.04,11.398,6.498,1.758,12.299,21.845,6.952,6.518,26.264,18.502,10.174,-0.086,16.327,18.025,10.862,-4.059,3.902,20.536,4.217,22.807,24.297,5.447,20.463,17.837,-8.353,-1.127,17.609,-0.137,15.875,5.634,19.281,20.389,22.011,16.037,19.009,5.882,-6.807,17.156,19.162,22.524,12.299,4.551,18.245,13.2,23.72,12.992,8.289,0.228,-0.304,15.574,15.562,12.044,18.993,11.999,14.412,7.514,21.654,1.545,12.199,-2.509,22.768,12.211,16.042,6.99,10.813,0.872,-0.108,3.27,33.254,17.135,10.209,19.603,4.088,7.849,9.68,15.752,18.637,7.025,3.305,15.708,15.11,11.406,7.837,-1.73,9.215,7.465,5.864,31.266,11.327,6.987,2.359],[14.034,21.034,20.539,4.994,13.394,12.402,3.406,5.922,25.191,-7.321,9.222,23.19,26.916,16.74,8.431,5.369,7.183,16.538,11.715,1.349,2.928,12.0,-2.512,24.689,8.96,6.32,22.07,20.049,23.616,18.696,5.48,18.506,-1.111,20.56,16.414,-7.819,6.534,14.207,17.652,14.89,-2.324,22.127,17.686,6.399,13.026,1.903,21.549,12.184,11.617,16.586,6.625,-0.576,10.217,14.023,31.879,7.929,8.333,1.616,16.803,10.796,4.128,18.013,3.021,9.459,21.183,-8.606,24.03,3.905,25.511,15.0,27.001,7.149,14.723,5.229,2.701,7.921,21.463,6.174,8.285,12.377,12.931,7.3,20.75,14.648,19.26,13.778,13.264,24.194,5.262,-7.61,28.205,24.295,17.885,10.078,13.427,24.305,3.985,8.909,-1.982,7.407,3.561,18.256,11.982,6.175,1.493,11.926,21.994,6.934,6.597,26.415,19.069,10.153,-0.304,16.22,18.227,10.474,-4.109,4.038,20.722,4.353,22.282,24.46,6.417,20.448,18.336,-8.537,-1.351,17.66,-0.235,15.898,5.458,19.321,20.259,21.665,15.754,18.993,5.732,-6.657,16.831,18.869,22.272,12.885,4.724,17.602,13.448,23.851,13.084,8.221,0.192,-0.534,15.603,15.496,12.481,18.751,11.68,14.299,7.543,21.523,1.617,11.681,-2.752,22.513,12.363,15.934,7.401,10.883,1.24,0.131,3.43,32.891,17.305,10.242,19.573,4.372,7.445,9.467,15.523,18.2,8.008,2.879,15.371,14.929,11.341,8.036,-1.584,9.347,7.691,5.694,30.819,11.188,7.462,2.639],[13.681,21.152,20.323,5.25,13.19,12.279,3.383,6.009,25.012,-7.507,9.093,23.169,27.018,16.611,8.649,5.557,6.946,16.837,11.729,1.287,2.917,11.929,-2.606,24.944,9.043,6.482,21.909,20.269,23.775,18.954,5.801,18.343,-0.994,20.315,16.305,-7.688,6.658,14.259,17.632,14.607,-2.498,22.194,17.563,6.545,13.19,2.041,21.643,12.016,11.65,16.654,6.569,-0.445,10.186,13.934,31.713,8.16,8.375,1.492,16.637,10.777,4.207,17.898,2.809,9.457,21.336,-8.586,24.221,3.755,25.759,15.132,26.472,7.505,14.746,5.018,2.596,7.984,21.35,5.589,8.126,11.765,12.73,7.472,20.589,14.169,18.974,13.756,13.041,23.862,5.201,-7.936,28.446,24.666,17.88,10.277,13.143,24.66,3.761,8.521,-1.868,7.448,3.218,18.762,11.669,6.271,0.914,11.894,21.928,6.395,6.549,26.51,18.905,10.552,-0.434,16.239,18.615,10.625,-3.666,4.136,21.146,4.28,22.32,25.004,6.801,20.127,18.845,-8.486,-1.07,17.853,-0.147,15.532,5.765,19.102,20.197,21.587,16.026,18.304,5.726,-6.877,16.663,18.212,22.568,12.793,4.885,17.513,13.07,23.745,13.16,8.496,0.504,-0.625,15.384,15.715,11.704,19.048,11.891,14.669,7.654,21.662,1.636,12.28,-2.658,22.658,12.411,15.727,7.343,10.954,1.217,0.342,3.944,32.742,17.429,9.906,19.44,4.21,7.564,9.142,15.18,17.704,8.45,2.979,15.433,15.124,11.737,7.877,-1.681,9.254,8.771,5.723,31.15,11.418,7.487,3.084],[13.329,21.253,20.06,5.244,13.079,12.056,3.278,6.001,24.82,-7.631,8.902,23.192,27.017,16.469,8.727,5.653,6.797,16.986,11.747,1.155,2.936,11.941,-2.724,25.165,9.08,6.692,21.675,20.454,23.913,19.227,6.194,18.276,-0.931,20.123,16.074,-7.571,6.743,14.258,17.54,14.408,-2.625,22.16,17.613,6.684,13.369,2.144,21.735,11.831,11.867,16.532,6.547,-0.409,10.361,13.787,31.622,8.423,8.528,1.405,16.533,10.67,4.272,17.896,2.668,9.519,21.209,-8.38,23.521,3.775,25.945,15.487,26.647,7.62,14.451,4.957,2.827,7.936,21.599,6.268,7.809,11.625,13.203,7.861,20.493,14.27,18.668,12.967,12.864,23.655,4.913,-8.477,28.286,24.667,18.023,10.496,13.085,24.836,3.982,8.391,-2.203,8.049,3.43,18.989,11.112,6.287,0.977,11.483,22.469,6.982,6.35,26.961,18.813,10.468,-0.318,16.458,18.778,10.743,-2.798,4.426,21.38,4.2,22.634,25.153,6.166,20.117,18.414,-8.103,-0.906,17.64,0.233,15.095,6.303,19.206,20.09,21.322,15.86,18.515,6.28,-7.264,16.873,18.028,22.752,12.781,5.404,17.735,13.341,23.764,13.061,8.499,0.511,-0.884,14.737,15.735,11.827,19.275,11.769,14.845,7.694,21.846,1.87,11.877,-2.41,23.186,12.263,15.758,7.279,10.537,1.081,0.687,3.641,32.782,17.048,10.575,19.642,3.462,8.508,9.324,14.83,17.627,7.94,2.985,15.495,15.25,11.496,7.901,-1.501,8.895,8.919,5.735,32.282,11.35,7.672,2.854],[13.137,21.274,19.884,5.094,12.938,11.875,3.287,6.148,24.729,-7.77,8.708,23.21,26.945,16.48,8.798,5.951,6.773,16.975,11.66,1.057,3.118,12.079,-2.688,25.309,9.291,6.648,21.454,20.564,24.191,19.308,6.459,18.366,-0.803,20.002,15.875,-7.515,6.719,14.212,17.521,14.257,-2.662,22.125,17.667,6.843,13.538,2.161,21.96,11.62,12.057,16.369,6.54,-0.413,10.48,13.697,31.834,8.645,8.669,1.426,16.411,10.625,4.278,17.928,2.538,9.55,21.407,-8.696,23.236,3.98,25.331,15.175,26.591,7.754,13.894,5.15,2.65,7.788,21.355,6.464,7.654,11.637,12.924,7.997,20.19,14.164,18.458,12.82,12.723,23.538,5.197,-8.508,28.267,24.324,17.906,10.605,13.043,25.084,4.706,8.411,-2.73,7.993,3.559,18.845,11.074,6.009,1.211,11.193,22.377,7.439,6.874,27.027,18.782,10.125,-0.61,16.611,18.688,10.816,-3.484,4.638,21.393,4.447,22.958,25.132,5.565,20.054,18.514,-8.451,-1.051,17.185,0.133,15.126,6.509,19.178,20.195,21.135,15.998,18.984,6.594,-6.715,16.647,18.402,22.146,12.99,5.216,17.709,13.221,23.679,13.498,8.6,0.619,-0.87,14.904,15.493,12.375,19.073,11.901,14.974,7.976,21.773,1.663,11.584,-2.778,23.334,12.364,15.437,7.465,10.635,1.155,0.52,3.541,32.967,17.008,10.477,19.331,3.142,8.67,9.292,14.825,17.679,8.125,2.744,15.288,14.776,11.703,7.639,-1.474,8.916,8.189,5.098,32.27,11.289,8.041,2.661],[13.004,21.06,19.779,5.13,12.827,11.668,3.405,6.377,24.802,-7.982,8.588,23.222,26.892,16.596,8.964,6.389,6.764,16.892,11.582,0.942,3.247,12.292,-2.667,25.34,9.359,6.516,21.236,20.548,24.355,19.248,6.509,18.498,-0.64,19.98,15.863,-7.598,6.692,14.169,17.595,14.174,-2.646,22.067,17.61,6.978,13.767,2.14,22.117,11.6,12.214,16.113,6.571,-0.402,10.454,13.615,32.07,8.837,8.709,1.456,16.27,10.604,4.171,17.95,2.356,9.562,21.552,-8.759,23.8,3.39,25.027,15.014,26.722,8.019,14.045,5.13,2.535,7.653,21.325,6.087,7.695,11.476,12.321,7.797,20.097,13.976,18.438,13.158,12.998,23.832,5.162,-8.444,28.191,23.791,17.425,10.569,13.318,25.46,4.747,8.533,-2.592,7.999,3.73,18.617,11.292,5.891,0.739,11.771,22.685,7.638,6.088,27.034,19.279,10.626,-0.694,16.592,18.837,11.179,-4.244,4.852,21.324,4.439,22.687,25.246,5.739,20.183,18.456,-8.163,-0.676,17.423,-0.204,14.515,6.217,18.598,20.08,21.271,15.911,18.77,6.281,-6.342,15.925,18.686,21.712,12.687,5.209,18.078,13.072,23.862,13.876,8.529,0.774,-0.9,14.866,15.147,11.679,18.763,12.425,15.12,8.115,22.184,1.449,11.901,-2.92,22.984,11.949,15.282,7.744,10.884,1.149,0.263,3.535,33.136,16.837,10.247,19.155,3.389,7.963,9.148,14.88,17.83,8.121,2.837,14.925,14.772,12.029,7.731,-1.43,9.147,8.368,5.258,31.487,11.435,8.058,2.792],[13.123,20.792,19.733,5.24,12.876,11.587,3.458,6.366,25.077,-8.131,8.569,23.216,26.961,16.581,9.116,6.677,6.698,16.792,11.697,0.718,3.255,12.512,-2.588,25.407,9.377,6.295,21.126,20.554,24.44,19.185,6.365,18.618,-0.616,19.957,15.765,-7.645,6.457,14.083,17.8,14.162,-2.71,22.052,17.652,7.219,13.843,2.14,22.144,11.696,12.51,15.703,6.707,-0.377,10.365,13.473,32.041,8.709,8.713,1.503,16.221,10.571,4.072,17.887,2.211,9.544,20.875,-8.732,23.686,3.328,25.952,15.43,26.918,7.849,13.603,5.019,2.656,7.227,21.067,7.011,7.873,11.378,12.357,7.553,20.023,14.292,18.381,13.069,12.681,24.549,5.332,-8.84,28.093,23.835,17.602,10.554,13.201,24.961,4.988,8.513,-2.996,8.401,3.698,18.756,11.107,6.107,0.669,12.576,22.721,7.95,5.88,27.062,19.341,10.308,-0.895,16.606,18.644,10.977,-4.318,4.55,21.475,4.738,22.014,25.108,6.042,20.041,18.415,-8.271,-0.295,17.711,0.238,14.365,6.419,18.414,20.271,21.133,15.54,18.321,6.032,-6.613,16.245,18.541,22.169,13.061,5.377,17.772,13.13,23.517,14.143,8.226,0.56,-0.982,14.44,15.413,11.847,18.917,12.399,14.91,7.698,22.254,1.627,11.515,-2.612,23.414,11.927,15.45,7.438,10.75,0.856,0.1,3.327,33.235,17.016,10.249,19.328,3.547,7.834,9.4,14.903,17.648,8.639,2.911,14.567,14.926,11.732,8.086,-1.137,8.819,9.505,5.718,31.984,11.498,8.091,2.881],[13.152,20.491,19.607,5.248,12.972,11.614,3.512,6.354,25.479,-8.25,8.51,23.313,27.067,16.508,9.107,6.861,6.643,16.971,11.8,0.566,3.197,12.695,-2.566,25.4,9.422,6.089,21.068,20.577,24.368,19.145,6.136,18.7,-0.752,19.86,15.744,-7.562,6.097,13.96,17.855,14.141,-2.815,22.147,17.893,7.384,13.608,2.161,22.068,11.745,12.877,15.379,6.824,-0.348,10.289,13.358,31.89,8.443,8.821,1.539,16.279,10.484,4.046,17.844,2.119,9.581,21.059,-8.659,23.747,3.93,26.235,15.442,26.722,7.915,14.151,5.306,2.832,7.344,20.854,6.992,7.568,11.51,12.397,8.152,20.106,14.288,18.261,13.655,12.521,24.329,5.353,-8.442,28.311,24.486,17.955,10.633,13.402,25.109,5.28,8.302,-3.341,8.226,3.603,18.856,11.236,6.613,0.812,12.526,22.664,8.031,6.282,27.22,18.947,10.469,-1.158,16.15,18.903,11.052,-3.668,4.331,21.423,4.644,21.869,25.301,5.998,19.837,18.455,-8.582,-0.695,17.634,0.826,14.55,6.646,18.538,20.55,21.055,15.671,19.05,6.164,-7.368,16.444,18.159,22.682,13.188,5.562,17.737,13.222,23.517,14.206,7.893,0.426,-1.118,14.576,15.6,12.336,19.631,12.189,15.27,8.232,21.94,1.964,11.87,-2.462,23.614,11.909,14.828,7.191,10.844,0.93,0.476,3.348,33.047,17.247,10.064,18.973,3.328,8.006,9.341,14.714,17.55,8.391,2.449,14.481,15.034,11.456,8.104,-1.489,8.949,10.242,5.399,32.276,11.379,7.771,2.636],[13.136,20.292,19.506,5.393,13.199,11.642,3.575,6.36,25.83,-8.261,8.47,23.392,27.083,16.483,9.164,6.909,6.746,17.128,11.798,0.513,3.071,12.728,-2.59,25.524,9.375,5.975,21.003,20.655,24.216,19.107,6.037,18.795,-0.955,19.729,15.783,-7.483,5.86,13.991,17.923,14.197,-2.8,22.353,18.21,7.474,13.477,2.247,21.936,11.84,13.292,15.152,6.795,-0.357,10.272,13.34,31.797,8.26,9.06,1.589,16.248,10.36,4.027,17.803,1.998,9.632,21.293,-8.911,24.052,3.579,25.962,15.231,26.549,7.846,14.193,5.253,2.9,8.144,20.757,6.563,7.019,11.572,12.474,8.489,20.386,14.179,18.171,13.159,12.802,23.791,5.317,-8.81,28.138,24.992,17.849,10.903,13.291,25.122,5.176,8.573,-2.937,8.028,3.29,19.046,11.575,6.593,0.377,12.487,22.582,7.91,5.886,27.159,19.061,10.495,-0.882,16.331,18.813,11.335,-3.156,4.426,21.341,4.313,22.355,25.54,5.85,19.837,18.085,-8.42,-0.831,17.565,0.601,14.742,5.792,18.346,20.398,21.223,15.718,19.465,6.154,-7.139,16.653,18.207,22.68,12.755,5.919,17.973,12.92,23.839,14.088,7.51,0.958,-1.29,14.838,15.59,12.022,19.854,12.275,14.902,8.614,21.469,1.425,12.491,-2.744,23.145,11.917,14.318,7.872,11.008,1.181,0.389,3.278,32.767,16.999,9.888,18.94,2.87,7.85,9.085,14.742,17.665,8.116,2.059,14.524,14.883,11.612,8.023,-1.591,8.94,9.926,4.697,31.798,11.61,7.776,2.654],[13.121,20.279,19.617,5.375,13.167,11.742,3.544,6.254,25.774,-8.336,8.55,23.355,27.008,16.395,9.269,6.732,6.94,17.075,11.77,0.544,2.917,12.711,-2.54,25.612,9.288,5.939,20.991,20.62,24.077,19.046,6.042,18.827,-0.976,19.561,15.972,-7.401,5.713,14.04,18.083,14.358,-2.781,22.512,18.18,7.505,13.451,2.326,21.827,11.999,13.6,15.039,6.732,-0.251,10.442,13.405,31.544,8.095,9.299,1.581,16.101,10.244,3.903,17.763,1.741,9.694,20.934,-9.085,24.613,3.478,26.378,15.409,26.539,7.873,14.389,5.712,2.897,7.767,20.724,6.646,7.557,11.604,12.908,8.29,20.084,14.832,18.352,12.835,12.947,23.857,5.414,-9.163,28.471,24.958,17.564,11.137,13.134,25.303,5.032,8.811,-2.574,7.986,2.742,19.042,11.918,6.543,0.395,12.609,22.397,7.911,5.166,27.155,19.11,10.454,-1.139,17.059,18.69,11.464,-3.811,4.321,21.6,4.449,22.815,25.051,5.276,19.924,18.367,-8.528,-0.942,17.616,0.425,14.707,5.663,18.349,20.443,21.286,15.644,18.851,6.075,-6.691,16.699,18.612,22.614,12.534,6.179,18.503,12.712,24.138,14.33,7.237,1.467,-1.15,14.763,15.396,12.133,19.756,12.759,14.935,8.631,21.534,0.976,12.399,-2.864,22.781,11.845,14.76,7.64,10.707,0.973,0.496,3.491,32.735,17.148,9.873,19.138,3.111,7.683,9.287,15.187,17.797,8.173,2.386,14.203,14.748,11.812,7.99,-1.241,8.541,9.137,4.5,31.554,11.554,8.256,3.018],[13.069,20.413,19.808,5.336,13.027,11.925,3.609,6.16,25.563,-8.495,8.701,23.339,26.997,16.442,9.303,6.474,7.152,16.959,11.774,0.53,2.773,12.827,-2.469,25.581,9.168,5.816,21.022,20.627,23.986,18.997,6.02,18.799,-0.797,19.395,16.265,-7.339,5.69,14.065,18.29,14.561,-2.808,22.55,17.918,7.481,13.559,2.311,21.745,12.201,13.84,15.144,6.633,-0.016,10.66,13.419,31.282,7.915,9.39,1.597,16.107,10.133,3.762,17.815,1.599,9.757,20.433,-9.32,24.654,3.962,26.405,15.11,26.479,7.649,14.573,5.519,2.648,6.934,20.289,6.803,8.138,11.779,12.425,7.898,19.687,14.63,18.523,13.176,13.228,24.415,5.39,-8.946,28.577,24.32,17.422,10.9,13.368,25.635,4.925,8.922,-2.589,8.04,2.613,18.709,11.81,6.403,0.65,12.176,22.107,8.001,5.128,27.261,19.099,10.507,-1.047,16.88,18.867,11.507,-4.04,4.447,21.552,4.567,22.713,24.225,4.819,20.018,19.075,-8.575,-0.595,17.51,-0.258,14.816,6.033,18.449,20.583,20.985,15.537,18.464,5.74,-6.9,16.59,18.722,22.639,13.11,6.114,18.107,12.6,24.12,14.558,6.897,1.163,-1.136,14.699,15.555,12.347,19.296,13.387,14.809,8.795,21.901,1.42,12.135,-2.589,23.275,11.734,14.857,7.284,10.591,0.841,0.85,3.612,32.448,16.897,9.795,19.31,3.017,7.545,9.61,15.026,17.782,8.193,2.251,14.413,14.89,12.148,8.049,-1.422,8.399,9.266,4.971,31.569,11.37,8.113,3.053],[13.161,20.444,19.922,5.383,12.964,12.057,3.558,6.21,25.304,-8.703,8.674,23.333,26.955,16.495,9.22,6.361,7.261,16.854,11.894,0.621,2.592,12.892,-2.301,25.639,9.053,5.629,20.96,20.765,23.809,19.011,6.022,18.733,-0.651,19.233,16.517,-7.461,5.691,13.974,18.285,14.632,-2.815,22.522,17.689,7.461,13.789,2.058,21.707,12.336,14.016,15.452,6.587,0.256,10.821,13.391,31.101,7.76,9.39,1.596,16.182,9.968,3.686,17.986,1.371,9.798,21.074,-9.479,24.308,3.643,25.869,15.59,26.688,7.499,14.482,5.028,3.04,7.399,20.432,6.428,8.133,11.89,12.348,7.957,19.547,14.263,18.96,13.094,13.081,24.44,5.518,-8.651,28.281,24.558,17.829,10.79,13.115,25.166,4.663,9.087,-2.674,8.14,2.84,18.626,11.277,6.692,0.299,12.208,21.982,7.668,5.46,27.125,18.928,10.178,-0.373,16.511,18.966,11.468,-3.238,4.381,21.65,4.17,22.631,24.305,4.545,19.885,19.092,-8.442,-0.462,17.594,-0.318,15.207,5.817,18.26,20.338,21.061,15.495,19.279,5.982,-7.467,16.976,18.297,22.842,13.517,5.827,17.862,12.769,23.756,14.994,7.346,0.435,-1.345,15.002,15.79,12.682,18.892,13.47,14.643,8.09,21.597,1.818,12.866,-2.473,23.418,11.871,15.244,7.367,10.913,1.207,1.02,3.494,32.558,16.747,9.632,19.143,2.825,7.571,9.652,14.845,17.77,8.73,2.003,14.613,14.838,12.452,7.987,-1.205,8.599,9.923,4.974,31.377,11.607,7.78,3.069],[13.376,20.527,20.005,5.326,12.874,12.122,3.342,6.222,25.085,-8.838,8.644,23.403,26.849,16.548,9.07,6.32,7.297,16.833,11.831,0.838,2.409,12.899,-2.057,25.691,9.035,5.361,20.908,20.985,23.708,18.926,5.874,18.657,-0.643,19.128,16.751,-7.77,5.865,13.864,18.308,14.579,-2.856,22.432,17.538,7.383,13.93,1.757,21.649,12.536,14.263,15.815,6.592,0.554,10.969,13.354,30.952,7.979,9.488,1.634,16.227,9.921,3.627,18.161,1.137,9.867,21.498,-9.442,23.351,3.77,25.632,15.675,27.161,7.986,14.21,5.105,2.944,7.793,21.134,6.289,7.26,11.612,12.999,8.257,19.66,14.1,19.098,12.815,13.367,23.728,5.137,-8.623,28.328,24.509,17.88,10.852,13.092,25.033,4.526,9.14,-2.821,7.853,2.359,18.791,11.567,6.558,0.229,12.676,21.813,7.265,5.873,27.006,18.967,10.253,-0.667,16.549,19.052,11.79,-3.44,4.191,21.756,3.914,22.333,24.948,5.047,19.802,18.452,-8.412,-0.516,17.585,0.399,15.808,5.85,18.284,20.356,20.845,15.623,19.465,5.989,-7.145,17.368,17.931,23.085,13.337,5.714,18.291,12.548,23.503,15.036,7.562,0.35,-1.257,14.949,15.549,12.701,19.219,13.105,15.486,7.722,21.429,1.102,13.317,-2.452,22.694,11.869,15.328,7.311,11.062,1.954,0.955,2.951,32.726,17.519,9.324,19.273,2.618,7.28,9.352,14.965,17.866,8.503,1.559,14.739,14.669,12.391,7.826,-0.739,8.295,10.111,4.838,31.279,11.756,8.188,2.969],[13.435,20.802,20.067,5.192,12.732,12.25,3.088,6.351,24.856,-8.851,8.487,23.404,26.848,16.54,8.923,6.085,7.28,16.804,11.617,0.918,2.059,12.951,-2.027,25.585,8.974,5.236,20.748,21.16,23.734,18.716,5.667,18.699,-0.688,19.094,17.023,-7.956,6.128,13.845,18.413,14.491,-2.819,22.337,17.565,7.234,14.015,1.584,21.582,12.843,14.568,16.101,6.578,0.863,11.067,13.26,30.866,8.324,9.671,1.722,16.408,9.852,3.648,18.468,1.028,9.807,21.167,-9.407,23.11,3.944,25.264,15.359,27.007,7.936,14.199,5.804,2.37,8.293,20.948,6.413,7.021,11.61,12.811,8.524,20.133,14.262,18.781,13.099,13.291,23.765,4.818,-9.133,28.387,24.397,17.655,10.747,13.167,25.263,4.491,8.829,-2.508,7.74,1.9,18.658,11.863,6.511,0.827,12.938,22.186,7.446,5.363,26.962,18.442,10.348,-0.611,16.384,19.467,11.655,-3.484,3.832,21.728,3.876,22.395,24.859,5.583,19.828,18.044,-9.032,-0.946,17.462,0.821,15.969,6.061,18.411,20.536,20.804,15.41,19.525,5.99,-7.441,17.363,17.741,23.021,13.224,5.33,18.405,12.377,23.675,14.575,7.857,0.388,-1.579,14.615,15.692,12.844,19.2,13.259,15.616,8.277,21.823,0.627,13.302,-2.293,22.605,11.968,15.172,7.331,11.316,2.099,0.677,2.57,32.177,17.605,9.452,19.754,2.672,8.443,9.349,15.133,18.02,7.948,1.505,15.052,14.84,11.997,7.903,-0.258,8.057,9.981,4.882,30.894,11.647,8.438,2.934],[13.473,20.854,20.147,5.152,12.761,12.303,2.828,6.468,24.847,-8.843,8.344,23.376,26.961,16.398,8.921,5.779,7.287,16.668,11.366,0.955,1.764,13.056,-2.098,25.433,8.896,5.283,20.485,21.322,23.843,18.367,5.585,18.751,-0.814,19.156,17.268,-8.103,6.42,13.824,18.567,14.406,-2.696,22.32,17.605,7.119,14.001,1.575,21.553,13.105,14.787,16.178,6.572,1.054,11.186,13.202,30.705,8.699,9.737,1.722,16.557,9.778,3.77,18.79,1.175,9.691,20.943,-9.7,23.335,3.681,24.512,15.521,26.214,7.544,14.059,5.766,2.265,8.137,20.636,6.817,7.265,11.708,12.892,8.293,20.184,14.187,18.978,13.077,13.229,24.356,4.611,-9.557,28.245,24.524,17.528,10.709,12.517,25.852,4.22,8.795,-2.612,7.465,1.285,18.329,12.025,6.387,0.89,13.048,22.119,7.046,4.841,26.695,18.734,9.985,-0.269,16.74,19.518,11.587,-3.179,3.839,21.895,3.583,22.2,24.832,5.035,19.371,18.677,-8.928,-1.071,17.77,0.561,15.832,5.61,18.302,20.563,20.873,15.125,19.659,5.886,-7.467,17.718,18.087,22.527,13.254,5.538,18.401,12.293,23.849,13.762,7.764,0.317,-1.607,14.524,15.364,13.012,19.293,14.303,15.43,8.143,21.816,1.108,13.984,-2.065,23.054,11.719,15.652,7.299,10.582,2.123,0.795,2.775,32.299,17.633,9.469,20.257,2.7,8.431,9.657,15.395,18.228,8.466,1.497,15.129,14.564,11.959,7.849,-0.093,8.324,10.136,4.9,30.226,11.444,8.076,3.126],[13.536,20.714,20.331,5.094,12.778,12.394,2.6,6.335,24.94,-8.949,8.273,23.453,26.957,16.229,8.935,5.562,7.248,16.431,11.211,1.062,1.581,13.294,-2.167,25.415,8.807,5.362,20.158,21.405,23.954,18.288,5.591,18.828,-0.928,19.213,17.448,-8.263,6.577,13.786,18.722,14.304,-2.395,22.322,17.67,7.095,13.892,1.735,21.477,13.466,14.994,16.287,6.434,1.169,11.226,13.151,30.421,8.987,9.675,1.606,16.564,9.691,3.945,19.151,1.294,9.6,21.082,-9.653,23.315,3.708,24.664,15.636,26.381,7.906,14.344,5.243,2.411,7.221,20.269,6.693,7.449,11.702,12.927,8.13,19.729,14.395,19.057,13.087,13.189,24.257,4.43,-9.2,28.563,24.675,17.007,10.7,12.494,25.421,3.703,9.068,-2.877,7.326,1.29,18.106,11.655,6.433,0.737,12.796,21.945,6.556,4.905,27.052,18.55,9.796,-0.596,17.209,19.643,11.83,-3.592,4.032,22.126,3.346,21.909,24.691,4.381,19.154,18.185,-8.663,-0.994,17.843,-0.346,16.008,5.54,18.439,20.595,21.037,15.197,19.12,6.552,-7.737,18.241,18.375,22.311,13.454,5.435,18.819,12.349,23.596,13.441,7.916,0.083,-0.948,14.386,15.051,12.928,18.958,14.946,15.329,8.073,21.465,1.422,14.199,-2.24,23.181,11.528,15.737,7.3,10.52,2.193,1.143,3.24,32.212,18.253,9.011,19.986,2.991,7.879,9.687,15.552,18.338,8.814,1.589,15.079,14.319,12.329,8.012,-0.355,8.19,10.445,5.267,30.168,11.352,8.028,3.187],[13.701,20.558,20.34,4.927,12.877,12.539,2.472,6.167,24.89,-9.02,8.171,23.54,26.963,16.03,8.953,5.576,7.23,16.277,11.067,1.23,1.539,13.457,-2.406,25.519,8.666,5.391,19.977,21.403,23.835,18.327,5.645,18.946,-1.16,19.393,17.584,-8.31,6.687,13.839,18.731,14.187,-2.01,22.37,17.635,7.129,13.716,1.729,21.457,13.817,15.185,16.368,6.316,1.244,11.22,13.185,30.308,8.976,9.733,1.474,16.636,9.486,4.038,19.439,1.371,9.475,21.145,-9.762,23.318,3.624,25.297,15.213,26.788,7.656,14.282,4.659,2.116,6.53,20.222,5.884,7.59,11.856,12.713,8.113,19.567,14.352,19.461,13.267,13.453,24.294,4.041,-8.881,28.463,25.079,16.847,10.483,12.631,24.696,3.78,9.088,-2.836,7.658,1.753,17.696,11.43,6.414,1.104,12.695,22.245,6.914,5.653,27.132,18.468,10.075,-0.401,16.879,19.557,11.935,-3.364,3.936,22.009,3.317,21.614,24.704,4.584,18.922,17.345,-9.347,-0.441,17.658,-0.488,16.359,5.601,18.644,20.71,21.101,15.324,19.713,6.91,-7.595,18.152,18.461,22.284,13.367,5.476,18.589,12.351,23.161,13.907,8.042,0.276,-0.597,14.489,15.251,13.648,18.581,14.872,15.425,7.767,21.114,1.178,14.305,-1.631,22.382,11.358,15.329,6.803,11.297,2.111,1.3,3.633,32.049,18.36,8.944,19.785,3.127,8.268,9.699,15.485,18.237,8.901,1.571,15.221,14.045,12.493,7.725,-0.286,7.936,10.847,4.826,30.108,11.29,8.077,2.57],[13.867,20.518,20.379,4.836,13.049,12.712,2.39,5.958,24.803,-8.974,8.029,23.703,27.069,15.708,8.931,5.753,7.204,16.178,10.98,1.313,1.693,13.444,-2.591,25.492,8.621,5.408,19.914,21.381,23.694,18.337,5.674,18.981,-1.396,19.666,17.626,-8.365,6.758,13.968,18.581,14.103,-1.651,22.444,17.531,7.237,13.648,1.675,21.27,13.995,15.334,16.22,6.179,1.173,11.208,13.092,30.203,8.899,10.022,1.355,16.877,9.376,4.128,19.442,1.442,9.339,21.154,-9.682,23.236,3.755,24.715,15.073,26.64,7.254,13.9,4.688,1.905,6.769,19.997,5.578,7.327,12.055,13.205,8.094,19.829,14.486,19.257,13.455,13.71,24.571,3.915,-9.523,28.56,24.9,16.879,10.815,12.568,25.105,4.33,8.882,-3.209,7.5,1.655,17.653,11.546,6.313,0.794,13.101,22.012,7.177,6.346,26.795,18.458,10.191,-0.061,16.553,19.609,11.868,-3.619,3.909,21.554,3.437,21.53,24.957,5.4,18.508,17.893,-9.068,-0.999,18.061,-0.076,16.364,5.571,18.581,20.82,21.321,15.111,19.863,6.857,-7.516,18.196,18.14,22.306,13.25,5.534,18.841,12.432,23.625,14.611,8.178,0.257,-0.557,14.477,15.07,14.113,18.875,14.333,15.476,7.315,21.224,0.999,14.902,-1.264,22.387,11.408,15.473,6.539,11.111,2.502,0.691,2.882,31.804,18.171,9.025,20.014,3.215,8.685,9.347,15.726,18.548,8.319,1.357,15.322,14.193,12.65,7.573,0.171,7.912,10.941,4.891,30.03,11.264,8.256,2.135],[13.838,20.559,20.474,4.863,13.265,12.913,2.349,5.656,24.632,-8.924,7.965,23.76,27.261,15.38,8.959,5.964,7.141,16.223,11.033,1.182,1.821,13.535,-2.693,25.4,8.615,5.592,19.813,21.379,23.586,18.442,5.722,19.106,-1.611,19.884,17.566,-8.411,6.806,14.12,18.34,13.962,-1.374,22.521,17.495,7.262,13.633,1.566,20.965,14.224,15.371,16.127,6.096,1.113,11.264,13.017,30.077,8.874,10.218,1.148,17.261,9.454,4.301,19.227,1.475,9.144,20.735,-9.397,23.08,3.808,24.256,15.389,26.664,6.981,13.904,5.125,1.882,6.915,20.19,6.571,6.733,12.048,13.675,8.126,20.08,14.822,19.314,13.694,14.055,24.803,4.071,-9.613,28.571,24.722,16.271,10.817,12.182,25.959,4.407,8.952,-3.327,7.216,1.298,18.101,11.561,6.33,0.826,13.271,21.813,7.26,6.295,26.759,18.72,9.893,-0.414,16.314,19.55,12.056,-4.056,3.992,21.472,3.536,21.345,24.87,5.238,18.351,17.693,-9.028,-1.684,18.152,-0.177,16.014,5.742,18.756,20.915,21.512,15.089,18.751,6.688,-7.556,18.441,17.542,22.587,13.013,5.469,18.262,12.343,23.887,15.539,8.231,0.042,-0.535,14.265,14.881,13.406,19.215,14.181,15.4,7.682,21.027,1.392,14.432,-1.229,22.677,11.427,15.429,7.078,10.482,2.323,0.541,2.885,31.496,18.505,8.929,20.33,3.242,8.637,8.682,16.333,19.088,8.23,1.688,15.413,14.327,12.202,7.661,-0.031,7.943,11.039,5.104,30.246,10.884,8.579,2.527],[13.714,20.571,20.33,4.851,13.535,13.127,2.43,5.64,24.529,-8.862,7.864,23.832,27.324,15.057,9.014,6.206,7.143,16.372,11.043,1.139,1.771,13.799,-2.774,25.343,8.471,5.778,19.681,21.33,23.492,18.499,5.748,19.248,-1.832,19.994,17.446,-8.498,6.804,14.157,17.92,13.769,-1.326,22.586,17.378,7.205,13.511,1.557,20.729,14.287,15.321,16.122,6.265,1.122,11.224,12.982,30.074,8.979,10.206,1.074,17.741,9.696,4.423,19.141,1.542,8.8,20.509,-9.275,23.192,3.221,24.285,15.35,27.178,6.815,13.77,5.273,1.905,7.223,20.354,6.486,6.921,11.912,13.722,8.134,20.588,15.027,19.151,14.075,14.036,24.079,4.25,-8.994,28.692,24.696,15.926,10.657,12.087,25.499,4.359,8.922,-2.914,7.211,1.147,18.169,11.88,6.711,1.254,13.231,21.81,7.174,6.174,26.876,18.709,9.957,-0.614,15.795,19.548,12.323,-3.909,4.13,21.637,3.661,21.128,24.51,4.768,18.475,17.664,-9.387,-1.425,18.056,-0.392,16.416,5.384,18.876,20.977,21.352,15.34,18.866,6.831,-7.28,17.429,17.513,22.501,12.941,5.479,17.787,12.504,23.993,16.084,8.146,-0.151,0.1,14.355,14.567,13.687,19.083,14.453,15.068,8.239,20.482,1.242,14.596,-0.531,22.38,11.562,15.281,7.187,10.959,1.882,0.7,3.218,31.64,18.574,9.159,20.798,3.245,8.375,8.279,16.604,19.334,8.263,2.069,15.236,14.541,11.214,7.488,-0.331,8.152,11.199,5.294,30.411,10.615,9.049,2.433],[13.7,20.524,20.188,4.658,13.832,13.27,2.626,5.776,24.71,-8.715,7.711,23.888,27.289,14.737,8.921,6.347,7.232,16.299,11.031,1.118,1.65,14.066,-2.775,25.145,8.344,5.889,19.655,21.252,23.4,18.433,5.747,19.263,-1.912,19.933,17.141,-8.619,6.748,14.234,17.694,13.592,-1.104,22.65,17.202,7.158,13.274,1.685,20.586,14.293,15.288,16.013,6.44,1.108,11.14,13.025,30.291,8.898,10.23,1.187,18.064,10.022,4.382,19.091,1.736,8.442,20.997,-9.126,23.014,3.712,24.445,15.002,27.163,7.139,13.789,4.516,1.956,7.846,19.732,5.883,7.394,11.975,13.498,8.065,20.768,14.946,19.009,14.027,14.159,24.025,4.412,-9.118,28.573,24.841,15.992,10.718,12.533,24.837,4.69,9.006,-3.185,7.294,1.42,18.092,11.88,7.001,0.94,13.534,21.653,7.353,6.475,26.604,18.686,10.164,-0.304,16.206,19.354,12.503,-4.041,4.182,21.611,3.43,21.165,24.652,4.678,18.054,18.053,-9.23,-1.501,18.294,-0.769,16.312,5.186,18.422,20.985,21.587,15.272,18.694,7.364,-7.43,18.044,17.879,22.591,13.016,5.701,18.271,12.745,23.784,16.008,8.01,0.248,-0.073,13.821,14.86,14.605,18.5,14.603,14.884,8.393,20.356,1.081,14.929,-0.199,22.162,11.482,15.299,7.123,10.609,2.174,0.879,3.66,31.828,18.727,9.285,20.913,3.416,8.284,8.182,16.75,19.784,8.138,1.956,15.264,14.443,11.145,7.276,-0.286,8.643,11.432,5.216,30.104,10.369,8.916,2.39],[13.831,20.503,20.272,4.181,13.746,13.281,2.906,5.838,24.788,-8.531,7.661,23.89,27.231,14.579,8.748,6.375,7.445,16.214,11.107,1.03,1.481,14.395,-2.803,24.873,8.406,6.039,19.607,21.091,23.387,18.325,5.81,19.289,-1.924,19.747,16.984,-8.646,6.696,14.406,17.687,13.374,-0.722,22.936,17.033,7.148,13.084,1.987,20.524,14.514,15.301,15.897,6.329,1.081,11.032,13.11,30.606,8.453,10.213,1.424,18.138,10.244,4.216,19.144,1.844,8.229,20.992,-8.781,23.313,4.24,24.963,14.695,26.944,6.938,13.951,4.698,2.439,7.869,20.043,6.275,7.164,11.996,13.844,7.772,20.329,15.19,18.92,13.724,14.334,24.654,4.297,-9.644,28.488,25.011,15.387,10.535,12.4,24.977,4.743,9.112,-3.541,7.225,1.841,17.747,11.497,6.774,0.293,13.793,21.586,7.752,7.235,26.143,18.389,10.136,-0.148,16.594,19.353,12.842,-4.139,4.074,21.36,3.123,21.055,24.672,4.819,18.169,17.945,-9.437,-1.857,18.561,-0.708,15.936,5.915,18.416,21.219,21.253,15.487,18.476,7.445,-7.354,17.9,17.703,21.995,12.622,5.603,18.36,12.778,23.085,15.205,7.991,0.623,0.337,13.752,14.501,14.607,18.625,14.443,14.779,8.088,20.821,1.327,14.523,0.188,22.087,11.296,15.178,7.41,10.66,2.432,1.064,3.804,32.054,18.515,9.326,20.947,3.602,8.677,7.955,17.264,19.985,8.51,1.972,15.22,14.065,11.791,7.321,-0.256,8.875,11.204,5.295,30.027,9.994,8.606,2.499],[13.912,20.588,20.382,3.941,13.289,13.237,3.124,5.875,24.815,-8.408,7.723,23.934,27.199,14.527,8.596,6.434,7.589,16.227,11.163,0.918,1.396,14.62,-2.794,24.7,8.546,6.318,19.618,20.934,23.357,18.189,6.038,19.355,-1.96,19.529,16.982,-8.671,6.652,14.555,17.79,13.137,-0.315,23.081,16.948,7.141,12.931,2.271,20.477,14.778,15.195,15.826,6.003,1.096,11.08,12.949,30.863,8.166,10.047,1.675,18.152,10.312,4.129,19.212,1.869,8.126,20.607,-8.626,23.445,3.032,25.14,14.757,27.449,6.818,14.21,4.729,2.457,6.986,20.178,6.468,6.904,12.108,14.069,7.398,19.913,14.873,19.488,13.828,14.275,24.825,4.568,-9.252,28.726,25.156,15.454,10.416,12.607,24.794,4.602,9.358,-3.324,7.393,1.46,17.574,11.157,6.83,0.416,13.716,21.645,7.488,7.632,25.974,18.863,10.251,-0.516,16.585,19.148,13.152,-4.158,4.27,21.094,3.102,21.02,24.505,5.201,18.018,17.574,-9.263,-1.444,18.441,-0.668,16.165,6.064,18.472,21.208,21.054,15.885,18.486,6.909,-7.338,17.667,17.054,21.867,12.79,5.45,17.74,12.979,23.264,14.445,8.231,0.712,0.72,14.004,14.021,14.177,18.77,14.533,14.624,7.533,20.89,1.888,14.644,1.053,22.005,11.284,14.881,6.969,11.46,2.085,1.074,3.406,32.262,18.639,9.641,21.081,3.657,8.61,7.713,17.234,20.029,7.731,1.927,14.788,14.341,12.022,7.29,-0.174,8.707,10.816,5.398,30.474,10.0,8.501,2.025],[13.813,20.674,20.565,3.722,13.049,13.242,3.222,5.884,24.933,-8.133,7.763,24.021,27.38,14.553,8.34,6.637,7.743,16.177,11.267,0.778,1.308,14.675,-2.663,24.648,8.676,6.655,19.603,20.763,23.276,18.228,6.268,19.374,-1.936,19.395,16.961,-8.644,6.684,14.701,17.772,12.948,0.12,23.308,16.912,7.063,12.969,2.33,20.338,14.963,14.995,15.632,5.584,1.026,11.313,12.742,30.902,8.097,9.833,1.822,18.28,10.337,4.008,19.354,1.875,8.068,20.568,-9.291,23.223,2.251,24.661,14.592,27.072,6.908,14.452,4.351,2.352,6.373,20.208,6.311,7.188,11.96,13.778,7.374,19.196,13.833,19.395,13.573,13.816,24.571,5.044,-8.701,28.802,25.406,15.954,10.136,12.661,24.83,4.849,9.484,-3.154,7.461,0.993,17.637,11.614,7.041,0.531,13.767,21.751,7.447,7.659,26.219,18.539,10.381,-0.839,16.651,19.078,13.366,-3.957,4.746,20.861,3.112,21.031,24.636,5.765,18.1,17.64,-9.345,-0.948,18.393,-0.598,16.266,5.912,18.33,21.067,20.909,15.782,18.799,6.451,-7.14,17.831,16.733,21.537,12.401,5.34,17.945,13.086,23.21,14.304,8.059,0.661,0.825,13.524,14.224,14.3,18.596,14.097,14.465,6.88,20.303,1.995,15.357,1.407,22.012,11.278,14.68,6.355,11.092,1.941,1.312,3.629,32.447,19.085,10.062,21.131,3.674,7.926,7.723,17.169,19.893,7.66,1.651,14.953,14.286,11.852,6.728,-0.299,8.705,10.724,5.117,30.833,9.85,8.551,1.913],[13.537,20.768,20.465,3.471,13.035,13.077,3.166,5.743,24.921,-7.882,7.827,24.04,27.666,14.6,8.078,6.803,7.921,16.144,11.494,0.597,1.102,14.656,-2.545,24.799,8.527,6.955,19.651,20.655,23.317,18.313,6.432,19.343,-1.768,19.273,16.895,-8.482,6.655,14.698,17.756,12.784,0.384,23.335,16.9,6.917,12.991,2.271,20.063,15.149,14.778,15.403,5.121,0.784,11.543,12.607,30.711,8.2,9.704,1.85,18.446,10.498,4.02,19.632,1.823,8.125,20.783,-9.061,23.697,2.627,24.781,14.948,26.429,6.852,14.002,4.08,2.551,6.279,20.67,6.647,7.372,11.755,13.806,7.465,19.283,13.913,19.16,13.322,13.879,24.22,5.064,-8.646,28.685,25.81,16.017,9.892,13.067,24.961,5.109,9.801,-3.007,7.789,1.139,17.831,11.738,7.065,0.127,14.1,21.492,7.994,8.077,26.484,18.739,9.845,-0.999,16.735,18.765,13.275,-3.689,4.779,20.963,2.849,20.935,24.737,5.68,18.078,18.075,-9.294,-1.093,18.34,-0.777,16.495,5.894,18.428,21.111,21.034,15.626,19.076,6.681,-7.244,17.309,17.087,21.719,12.426,5.569,18.495,13.165,23.81,14.568,7.872,0.914,0.968,13.215,14.056,15.292,18.585,13.925,14.389,6.808,20.235,1.672,14.925,1.674,21.841,10.912,14.513,6.52,10.324,2.049,1.377,3.479,32.1,19.483,9.525,21.336,3.503,7.477,7.865,17.514,20.132,7.965,1.758,15.052,13.778,11.59,6.131,-0.673,9.073,10.674,5.262,31.083,9.738,8.556,2.052]]', atom_z='[[25.562,17.916,8.324,16.06,12.387,5.637,3.69,0.213,5.475,10.101,24.785,22.988,5.193,-0.172,8.91,18.1,16.324,15.336,11.184,12.521,7.917,-0.826,13.51,17.194,6.552,5.2,2.525,19.533,11.584,18.41,8.199,13.956,14.855,20.605,7.843,0.675,8.518,0.873,20.515,-1.72,2.946,10.203,21.252,12.47,2.391,20.139,16.772,16.16,23.07,13.47,2.754,0.293,4.619,21.506,20.658,11.312,17.815,12.871,10.031,6.077,16.584,7.087,16.621,18.085,17.187,11.16,6.498,17.557,3.658,0.909,6.595,-0.792,25.062,15.741,3.602,26.397,19.645,0.542,23.567,24.977,7.147,9.825,9.684,11.331,7.395,11.729,5.945,23.83,5.34,10.2,5.911,23.829,0.01,7.913,10.449,16.599,18.517,16.797,13.248,6.079,7.971,14.53,11.145,14.476,11.282,-2.647,12.762,16.548,4.269,15.623,17.636,4.92,11.535,15.926,19.849,-0.101,13.7,6.679,17.806,9.749,0.905,9.802,5.707,3.353,18.165,1.357,13.187,13.44,15.804,6.677,9.723,21.153,14.86,18.839,1.978,21.963,8.181,-1.137,6.781,19.698,8.883,1.871,12.105,20.196,0.057,9.222,21.447,10.358,19.451,2.862,-1.724,-0.907,17.927,22.63,22.965,2.769,13.822,17.558,20.735,15.49,2.364,18.162,19.881,12.839,3.992,3.215,1.096,13.32,17.646,21.887,5.473,5.57,6.803,17.95,9.463,17.616,9.431,11.155,12.237,17.546,14.237,21.497,6.196,1.281,1.68,6.003,16.109,17.86,21.422,17.55,17.371,14.283],[25.471,17.833,8.459,16.221,12.263,5.638,3.65,0.376,5.558,10.228,24.794,23.162,5.361,-0.051,8.78,17.94,16.092,15.475,11.297,12.489,7.889,-1.021,13.343,17.208,6.563,5.381,2.642,19.538,11.664,18.38,7.961,13.89,14.75,20.222,7.729,0.533,8.505,1.09,20.599,-1.921,2.826,10.389,21.001,12.312,2.218,20.226,16.992,16.334,23.142,13.775,2.925,0.507,4.759,21.408,20.543,11.305,17.845,12.911,10.005,6.219,16.592,7.074,16.607,18.455,17.177,11.486,6.585,17.773,3.777,1.237,6.736,-0.78,25.15,15.715,4.297,26.507,19.577,0.51,23.627,25.139,6.829,9.863,9.981,10.988,7.997,12.238,5.533,23.399,5.358,10.082,6.334,23.371,0.055,7.418,10.333,16.874,17.718,16.032,12.928,6.051,7.952,14.525,10.976,14.284,11.716,-2.626,12.669,16.209,4.02,15.967,17.555,4.694,11.218,15.851,19.477,-0.419,13.275,6.266,17.888,9.483,1.042,9.895,5.337,3.529,18.101,1.485,13.082,12.818,15.638,7.175,9.364,20.69,14.84,18.531,1.756,21.889,8.377,-1.146,6.338,19.607,9.305,1.56,11.991,20.479,-0.024,9.285,21.47,10.213,19.55,2.374,-1.158,-1.165,17.914,22.464,22.993,2.562,13.784,17.423,20.54,15.232,1.812,18.389,19.93,13.292,3.837,3.379,1.008,13.314,17.129,21.637,5.601,5.304,6.894,17.506,9.451,17.359,9.545,11.516,12.47,17.931,14.274,20.754,6.275,1.142,1.953,5.641,16.198,18.045,21.624,18.146,18.241,13.772],[25.291,17.823,8.736,16.311,12.213,5.626,3.644,0.551,5.652,10.388,24.688,23.247,5.553,0.034,8.586,17.761,15.968,15.427,11.289,12.622,7.744,-1.135,13.043,17.326,6.613,5.443,2.836,19.602,11.742,18.385,7.709,13.642,14.736,19.96,7.591,0.334,8.55,1.142,20.75,-2.117,2.594,10.269,20.733,12.098,1.993,20.236,17.287,16.455,23.347,13.964,3.09,0.571,4.765,21.381,20.552,11.368,17.827,13.024,10.01,6.24,16.518,6.885,16.67,18.755,16.887,11.528,6.239,17.979,3.692,1.577,6.933,-0.755,24.728,15.614,4.734,26.554,19.522,0.618,23.603,24.383,7.071,9.821,9.987,10.802,7.714,12.867,5.448,23.261,4.62,10.37,6.272,22.966,0.046,7.508,9.745,16.344,17.475,15.83,13.164,7.224,7.763,14.548,10.918,14.192,11.481,-2.99,13.067,16.441,4.181,15.971,17.706,4.736,11.537,16.169,19.704,-0.46,13.114,6.108,17.786,9.302,1.282,10.11,5.455,3.513,17.485,1.765,12.831,12.773,15.427,7.335,9.071,20.459,15.166,18.219,2.2,21.941,8.714,-1.245,5.955,19.815,9.352,1.714,11.948,20.75,0.352,9.258,21.478,10.246,19.342,2.725,-1.674,-1.21,18.31,22.368,23.343,2.574,13.825,17.431,20.597,16.076,1.451,18.685,20.36,14.153,3.682,3.089,1.806,12.837,17.316,20.845,5.591,5.508,7.46,16.931,9.796,17.95,9.61,11.416,12.435,18.213,14.133,20.049,6.153,1.253,1.56,5.682,16.482,17.972,22.07,18.476,18.723,14.205],[24.925,17.926,8.805,16.308,12.353,5.698,3.584,0.746,5.545,10.519,24.57,23.167,5.758,0.035,8.588,17.55,16.084,15.193,10.955,12.864,7.469,-1.13,12.786,17.188,6.755,5.46,3.029,19.684,11.93,18.408,7.399,13.452,14.805,19.854,7.388,0.188,8.719,1.183,20.963,-2.144,2.525,10.004,20.66,11.917,1.817,20.183,17.596,16.567,23.645,14.104,3.207,0.51,4.667,21.408,20.627,11.49,17.884,13.164,10.003,6.265,16.505,6.76,16.665,18.938,16.98,11.412,6.282,17.735,3.664,1.44,7.572,-0.634,24.484,15.183,4.805,26.236,19.307,0.594,23.577,24.562,6.513,9.808,9.916,11.137,7.96,12.478,5.817,24.018,4.51,10.619,6.0,22.378,0.098,7.419,9.301,16.462,17.719,16.109,12.917,7.22,7.399,14.212,11.033,14.292,11.572,-2.869,13.446,16.041,4.811,15.954,17.612,4.929,12.018,16.117,19.868,-0.665,12.887,6.046,17.929,9.216,1.742,10.498,5.196,3.727,17.678,1.762,12.966,13.284,15.542,7.5,9.075,20.601,14.697,17.993,2.922,22.051,8.697,-1.293,5.801,19.706,8.625,1.725,11.962,20.421,0.286,8.966,21.867,10.289,19.351,2.801,-2.238,-0.966,18.334,22.309,23.942,2.285,13.59,17.821,20.156,16.579,1.052,18.931,20.285,14.708,3.843,2.997,1.664,12.697,17.786,20.804,5.285,5.559,7.111,17.151,9.693,18.611,9.521,11.041,12.646,18.103,13.705,20.491,5.996,1.725,1.471,6.078,16.298,17.607,22.083,18.475,18.854,14.828],[24.719,17.985,8.719,16.136,12.535,5.725,3.552,0.815,5.52,10.622,24.439,23.002,5.988,-0.115,8.743,17.361,16.166,14.922,10.682,13.035,7.159,-1.135,12.53,17.065,6.759,5.365,3.171,19.695,12.209,18.422,7.224,13.429,14.84,19.836,7.135,0.174,8.937,1.342,21.101,-1.941,2.576,9.761,20.731,11.742,1.678,20.042,17.779,16.656,24.04,14.1,3.382,0.4,4.543,21.519,20.657,11.581,17.896,13.257,9.882,6.322,16.7,6.691,16.647,19.127,17.727,11.732,6.707,17.455,3.69,1.217,7.868,-0.688,24.6,15.35,4.459,26.075,19.69,0.354,23.211,24.621,6.871,9.571,9.512,11.34,8.062,12.367,6.231,24.42,4.779,10.41,5.953,21.955,0.872,7.233,9.055,16.869,17.679,16.082,13.072,6.714,6.932,14.206,10.609,14.399,12.235,-2.82,13.447,15.596,5.464,15.643,17.471,4.839,11.783,15.85,19.736,-0.444,12.705,5.631,17.99,9.047,1.608,11.008,5.631,3.628,18.183,1.314,13.166,13.619,15.436,7.926,8.722,20.697,14.642,18.078,3.105,22.343,8.306,-1.361,5.402,19.544,8.716,1.142,11.698,20.209,0.539,8.647,22.357,10.542,19.823,2.24,-1.696,-0.728,18.327,22.116,23.993,2.043,13.428,18.13,20.035,15.696,0.968,18.844,20.032,15.086,4.14,3.177,0.981,12.6,18.265,21.966,5.101,5.921,6.487,17.476,9.828,18.281,9.724,10.964,12.625,17.863,13.644,21.458,6.014,1.756,1.691,5.688,16.261,16.929,21.608,18.944,18.875,14.662],[24.726,18.196,8.595,15.963,12.63,5.816,3.565,0.646,5.701,10.766,24.316,22.86,6.218,-0.208,8.879,17.202,16.128,14.801,10.529,13.099,6.914,-1.13,12.275,17.166,6.514,5.266,3.068,19.657,12.448,18.431,6.995,13.571,14.702,19.857,6.926,0.113,9.118,1.54,21.2,-1.58,2.526,9.61,20.799,11.544,1.385,19.966,17.882,16.596,24.387,13.995,3.496,0.29,4.454,21.785,20.689,11.53,17.779,13.31,9.764,6.371,16.873,6.642,16.62,19.376,17.65,12.049,6.667,17.3,3.977,0.528,7.843,-0.762,24.487,15.477,3.588,26.151,20.007,0.377,23.099,24.69,7.215,9.233,9.468,11.341,7.406,12.744,6.023,24.482,5.453,10.507,6.486,21.68,1.227,7.623,8.903,16.566,17.881,16.27,13.007,6.663,6.781,14.714,10.022,14.339,12.266,-2.855,13.402,15.329,5.802,15.462,17.702,4.546,11.555,15.777,19.637,-0.594,12.56,5.604,18.116,8.802,1.262,10.879,5.81,3.885,18.39,1.617,12.864,13.419,15.623,7.97,8.419,20.45,14.98,18.299,3.247,22.326,8.244,-1.441,5.251,19.429,8.852,1.511,11.776,20.908,0.592,8.413,22.495,10.788,19.416,2.312,-1.423,-0.723,18.358,22.098,24.187,2.603,13.037,18.151,20.217,15.682,1.411,18.895,20.028,15.019,4.37,3.087,1.005,12.17,18.587,22.163,5.274,6.351,6.678,17.725,10.114,19.089,9.668,10.835,12.75,17.734,14.016,22.116,6.18,1.716,1.678,5.584,16.303,17.087,21.239,18.633,18.472,14.522],[24.888,18.488,8.371,15.852,12.643,5.896,3.626,0.531,5.899,10.942,24.304,22.698,6.367,-0.29,8.947,17.108,16.057,14.842,10.405,13.024,6.836,-1.198,12.024,17.168,6.141,5.123,2.906,19.669,12.544,18.445,6.784,13.81,14.358,19.903,6.73,0.095,9.145,1.776,21.272,-1.35,2.512,9.619,20.796,11.287,1.288,19.879,17.843,16.553,24.55,14.021,3.51,0.31,4.388,22.043,20.605,11.499,17.716,13.345,9.687,6.433,17.016,6.706,16.71,19.582,17.362,12.235,7.058,17.237,4.133,0.151,8.083,-0.914,24.17,15.181,3.795,25.993,20.001,0.147,23.36,24.25,6.822,9.104,9.716,11.593,7.701,13.029,5.782,24.507,5.007,10.825,6.845,22.091,1.155,7.616,8.766,16.602,18.045,16.015,12.515,6.606,6.393,14.075,10.193,14.151,12.116,-2.807,13.538,15.385,6.16,16.13,17.135,4.198,11.872,15.885,19.751,-0.495,12.457,5.403,18.046,8.606,1.209,10.784,5.404,3.764,18.403,1.707,12.796,13.092,15.616,8.308,8.432,20.379,15.282,18.582,3.374,22.489,8.815,-1.27,5.61,19.529,8.644,1.357,11.645,21.86,0.609,8.202,23.213,10.929,19.148,2.413,-1.124,-0.22,18.434,22.322,24.631,2.599,12.953,18.748,20.176,15.954,1.633,19.152,20.572,14.295,4.213,3.122,1.222,11.978,18.484,21.448,5.042,6.515,6.83,17.55,9.851,19.512,9.314,11.118,13.012,17.648,13.882,22.312,5.92,1.589,1.675,6.069,16.647,17.488,21.618,19.165,17.553,14.659],[24.776,18.608,8.141,15.695,12.53,5.864,3.627,0.581,6.059,11.154,24.371,22.586,6.631,-0.391,8.866,17.045,15.749,14.828,10.346,12.802,6.778,-1.277,11.748,17.292,6.047,4.783,2.717,19.735,12.625,18.377,6.662,13.8,14.022,20.092,6.661,0.154,9.1,1.917,21.472,-1.233,2.528,9.566,20.769,11.029,1.275,19.739,18.071,16.605,24.846,14.124,3.547,0.48,4.342,22.326,20.35,11.588,17.643,13.467,9.74,6.565,17.033,6.79,16.808,19.806,18.002,12.146,7.174,17.337,4.32,0.603,8.265,-1.012,24.75,15.148,4.2,26.137,20.261,0.122,23.323,24.248,6.813,9.233,9.64,11.505,7.629,13.311,6.122,23.92,5.191,10.561,6.465,22.656,0.954,8.01,8.678,16.524,17.97,15.681,12.279,6.294,6.272,14.106,10.37,14.096,11.98,-2.632,13.345,15.673,6.364,15.904,17.118,4.083,11.686,16.158,19.502,-0.804,12.567,5.309,18.346,8.754,1.121,10.783,5.51,3.798,18.509,1.674,12.409,13.298,14.956,8.1,8.303,20.805,15.346,18.329,3.634,22.176,8.965,-1.187,6.146,19.537,8.54,1.488,11.007,22.027,1.038,8.438,23.14,10.954,19.354,2.241,-1.105,-0.026,18.305,22.149,24.554,2.348,12.81,18.613,19.787,16.092,1.201,19.358,20.773,13.882,4.027,3.312,1.347,12.641,18.03,21.129,5.051,6.504,6.863,17.416,9.966,19.037,9.117,11.152,12.871,18.017,13.603,22.116,6.045,1.889,1.761,6.128,17.367,18.109,21.931,19.892,17.382,14.483],[24.509,18.717,7.985,15.56,12.259,5.953,3.67,0.722,6.141,11.271,24.559,22.571,6.867,-0.225,8.819,16.979,15.335,14.97,10.1,12.489,6.713,-1.279,11.582,17.374,6.256,4.476,2.531,19.829,12.677,18.303,6.541,13.582,13.739,20.274,6.745,0.294,9.062,2.021,21.652,-1.196,2.406,9.385,20.646,10.805,1.37,19.652,18.324,16.638,25.105,14.147,3.692,0.697,4.446,22.528,20.016,11.762,17.633,13.616,9.809,6.789,17.072,6.885,16.894,20.046,17.927,12.277,7.137,17.218,4.601,0.922,8.587,-0.743,24.248,15.011,4.392,26.3,20.318,0.359,23.282,24.11,6.71,9.342,9.263,11.121,6.805,13.399,5.902,22.663,5.0,10.985,6.602,23.372,0.39,7.489,9.267,16.973,18.011,15.14,12.24,6.105,6.479,14.422,10.741,13.7,11.946,-2.786,13.129,15.856,5.733,15.907,17.145,4.56,10.996,15.854,19.82,-0.929,12.344,5.158,18.327,8.636,0.972,10.937,5.241,3.445,18.656,1.479,11.862,13.608,14.379,7.796,8.152,21.199,15.081,18.468,3.804,22.793,8.542,-1.319,5.981,19.512,8.287,1.709,10.825,21.756,1.244,8.532,23.449,10.885,19.017,2.345,-0.878,-0.138,18.45,22.126,25.3,2.156,12.634,19.01,19.419,16.032,0.934,19.656,21.26,14.161,4.086,3.297,1.587,13.489,17.474,20.899,5.18,6.244,6.955,17.569,10.058,18.877,9.327,11.005,12.687,17.93,13.815,22.054,6.061,2.056,1.985,6.063,18.021,17.986,21.426,19.347,16.969,14.823],[24.247,18.666,7.858,15.495,11.966,6.045,3.702,1.002,6.119,11.431,24.631,22.471,7.01,0.002,8.589,16.914,15.039,15.191,9.897,12.164,6.617,-1.213,11.653,17.364,6.429,4.196,2.393,19.741,12.552,18.283,6.358,13.411,13.491,20.484,6.906,0.433,8.954,2.135,21.847,-1.154,2.212,9.038,20.606,10.789,1.574,19.495,18.399,16.702,25.393,14.125,3.805,0.911,4.671,22.687,19.701,11.926,17.687,13.761,9.808,7.002,17.114,6.922,16.951,20.149,17.555,12.785,7.444,16.876,4.351,1.499,8.692,-0.531,24.242,14.889,4.286,26.353,20.269,0.735,23.743,23.894,7.021,9.562,9.199,10.939,6.478,12.862,6.092,22.241,5.106,11.322,6.8,23.739,-0.105,7.573,8.752,17.115,17.819,14.753,11.979,6.466,6.222,14.382,10.83,13.489,11.909,-2.763,13.693,16.294,5.348,16.036,16.931,4.586,10.99,16.288,20.329,-0.389,11.647,5.012,18.48,8.421,0.967,11.12,5.024,2.622,18.825,1.778,11.811,13.198,14.283,7.676,7.953,21.319,15.059,18.717,3.662,23.258,8.428,-1.283,5.661,19.51,8.171,1.304,11.286,21.442,1.15,7.976,23.502,10.795,18.751,2.186,-0.656,-0.191,18.326,22.173,25.541,2.725,12.336,19.731,19.804,15.556,0.909,19.337,21.434,14.29,4.681,3.17,1.569,13.836,17.71,20.182,5.365,6.199,6.624,17.711,10.093,19.089,9.78,11.034,12.94,17.519,13.529,22.539,6.269,2.149,2.009,6.271,18.322,17.393,20.846,19.468,16.711,15.082],[24.078,18.506,7.825,15.318,11.686,6.138,3.741,1.353,6.082,11.758,24.648,22.333,7.068,-0.044,8.46,16.738,14.902,15.558,9.682,11.976,6.52,-0.957,11.75,17.391,6.41,4.097,2.22,19.653,12.315,18.324,6.197,13.434,13.235,20.68,6.994,0.632,8.878,2.185,22.116,-1.043,1.959,8.69,20.73,10.91,1.754,19.31,18.393,16.671,25.446,13.971,3.926,0.95,4.998,22.8,19.452,12.135,17.774,13.8,9.768,7.183,17.127,6.905,16.961,20.297,17.51,12.625,6.796,16.928,4.394,1.757,8.669,-0.347,24.297,14.755,4.384,26.571,20.113,1.281,23.875,23.628,7.104,9.408,9.214,10.63,6.901,12.284,5.812,22.341,5.376,10.95,7.052,23.194,-0.182,7.667,8.154,16.862,17.939,14.842,11.768,6.74,5.73,14.492,9.827,13.197,11.426,-2.485,13.869,17.116,5.457,15.906,17.021,4.629,10.679,16.561,19.792,-0.355,11.217,4.801,18.693,8.388,0.907,11.266,5.107,2.865,18.977,1.689,11.688,12.901,14.587,8.123,7.812,21.455,14.858,19.201,3.774,23.004,8.335,-1.015,6.243,19.568,7.928,1.047,11.773,21.335,1.133,7.268,23.725,10.709,18.714,1.976,-1.226,0.016,17.966,22.431,25.301,2.967,12.32,19.204,19.852,15.491,1.232,19.411,21.583,14.261,5.039,3.615,1.505,14.294,18.731,20.422,5.126,6.613,6.311,17.536,10.354,19.502,9.463,11.201,13.149,17.728,13.209,22.932,6.313,2.386,2.142,6.152,18.55,16.987,20.658,19.639,16.928,14.594],[24.067,18.382,7.955,15.105,11.445,5.989,3.899,1.649,6.038,11.919,24.717,22.206,7.036,-0.353,8.523,16.704,14.796,15.995,9.518,11.812,6.451,-0.733,11.641,17.453,6.254,4.391,2.128,19.624,11.973,18.481,6.091,13.506,13.088,20.87,7.082,0.682,8.761,2.157,22.312,-1.01,1.853,8.402,20.874,11.125,1.863,19.137,18.303,16.61,25.315,13.787,4.093,0.758,5.283,22.883,19.558,12.304,17.88,13.604,9.712,7.394,17.153,6.672,17.036,20.45,17.047,12.939,6.712,16.758,4.324,1.475,8.798,0.022,23.714,14.578,4.503,26.652,20.006,1.567,23.737,23.513,6.95,9.498,9.147,10.453,7.615,11.937,5.781,22.853,5.435,11.162,7.224,21.882,-0.724,7.616,8.722,16.948,18.136,15.36,12.256,6.625,5.746,14.601,9.646,13.099,11.569,-2.295,13.743,17.371,5.332,15.815,16.755,4.399,10.282,16.106,19.403,-0.518,11.716,4.941,18.473,8.297,0.881,11.286,4.957,3.137,19.473,1.937,11.362,12.942,14.239,8.577,7.745,21.449,15.195,19.27,3.947,23.416,8.347,-0.879,6.315,19.873,7.672,1.278,11.801,21.77,1.649,7.235,23.686,10.435,18.65,1.882,-1.049,0.423,17.428,22.564,25.251,3.191,12.306,18.313,19.489,15.144,1.184,19.984,21.157,13.918,4.939,3.868,1.389,14.633,18.93,20.362,5.326,7.023,6.485,17.031,10.62,19.794,8.62,11.208,13.343,17.849,13.052,22.745,6.504,2.371,2.141,5.996,18.853,16.936,21.238,19.201,17.346,14.54],[24.083,18.109,8.064,15.064,11.269,5.876,4.066,1.912,5.911,11.914,24.619,22.004,7.048,-0.861,8.748,16.848,14.822,16.241,9.657,11.683,6.503,-0.562,11.498,17.522,5.911,4.747,2.204,19.677,11.588,18.648,6.045,13.658,12.872,20.962,7.076,0.604,8.571,2.165,22.492,-0.979,1.916,8.243,21.101,11.258,1.927,18.955,18.191,16.381,25.318,13.562,4.226,0.628,5.412,22.803,19.844,12.478,18.021,13.352,9.732,7.619,17.133,6.56,17.122,20.421,17.05,13.094,7.072,16.658,4.314,0.862,8.84,0.404,24.007,14.467,4.733,26.481,19.922,1.322,24.141,23.755,6.707,9.582,9.236,10.699,7.99,11.581,6.081,23.129,5.383,11.62,6.849,21.731,-1.065,7.387,9.27,17.111,18.505,15.421,12.18,6.147,6.056,15.308,10.25,12.901,11.974,-2.117,13.452,16.949,5.259,16.145,16.913,4.066,10.367,16.79,19.853,-0.008,11.996,5.041,18.118,8.3,0.73,11.156,5.66,2.807,19.924,1.995,11.135,12.91,13.84,7.763,7.817,21.567,15.472,19.184,3.973,23.507,8.316,-1.061,6.165,20.026,7.185,1.883,11.65,21.961,2.019,7.012,23.412,10.447,18.256,1.65,-0.479,0.356,17.572,22.308,25.551,3.164,12.757,18.404,19.224,15.033,0.92,19.884,21.181,13.985,4.604,3.692,1.164,14.248,18.925,20.08,5.078,6.996,6.21,16.678,10.655,19.603,8.298,10.626,13.394,17.463,13.053,22.731,6.594,2.623,1.721,6.261,19.146,16.904,21.485,19.372,17.486,14.647],[24.056,17.919,8.014,15.258,11.298,5.902,4.109,2.003,5.786,11.902,24.511,21.775,7.124,-1.337,8.961,16.97,14.988,16.48,9.996,11.722,6.678,-0.373,11.445,17.721,5.509,4.974,2.282,19.729,11.315,18.821,6.103,13.809,12.659,21.005,6.781,0.399,8.487,2.209,22.7,-0.968,2.147,8.05,21.27,11.389,1.86,18.718,18.135,16.164,25.289,13.436,4.307,0.601,5.367,22.808,19.852,12.581,18.145,13.208,9.791,7.633,17.099,6.535,17.034,20.245,16.794,12.366,6.6,16.773,4.504,0.371,8.91,0.624,24.238,14.59,4.874,26.286,19.386,1.24,23.725,24.39,6.951,10.338,9.338,10.118,8.041,11.529,5.841,23.223,5.402,11.18,6.738,22.187,-0.935,8.026,10.107,16.996,18.652,14.981,11.792,5.544,5.802,15.746,9.747,13.13,11.788,-1.778,13.063,17.088,5.396,16.115,17.412,3.79,10.125,17.057,20.437,0.34,11.465,4.759,18.836,8.55,0.596,10.617,5.981,3.297,20.013,1.612,10.817,13.134,13.307,7.806,7.817,21.622,15.156,19.26,4.11,22.82,8.365,-1.239,6.249,20.288,7.024,2.275,11.613,21.936,1.868,7.159,23.708,10.193,18.287,1.701,-0.369,0.049,17.844,22.56,26.408,3.058,12.893,18.697,18.785,14.781,0.66,19.564,21.334,14.04,4.932,3.859,1.285,13.906,18.351,20.533,5.162,7.336,5.816,16.605,10.768,19.099,8.506,10.267,13.432,17.548,13.252,22.486,6.606,2.523,2.041,6.985,19.557,17.458,21.247,19.322,17.506,14.323],[24.002,17.657,7.996,15.462,11.326,5.971,4.105,1.959,5.783,11.814,24.345,21.579,7.213,-1.52,9.193,17.193,15.265,16.69,10.322,11.741,6.787,-0.17,11.431,17.855,5.067,5.14,2.424,19.738,11.022,19.081,6.169,13.752,12.411,21.119,6.595,0.32,8.378,2.182,22.904,-0.963,2.346,7.864,21.466,11.488,1.854,18.419,18.21,15.884,25.403,13.403,4.322,0.755,5.298,22.856,19.658,12.657,18.293,12.996,9.824,7.58,17.021,6.561,16.847,20.0,16.251,12.61,6.396,17.205,4.344,-0.04,8.997,0.515,23.966,14.678,4.993,26.191,19.114,1.58,23.368,24.281,7.095,10.856,9.24,10.428,7.821,12.032,6.291,22.776,5.407,11.161,7.234,22.346,-1.521,8.189,9.844,16.993,18.269,15.495,11.578,5.483,5.963,15.443,10.035,13.435,11.569,-1.665,12.707,16.951,5.22,16.606,17.524,3.182,10.155,16.709,20.094,0.405,11.134,4.822,18.695,8.426,0.804,9.941,5.679,3.678,20.157,1.136,10.632,13.461,13.029,8.022,7.753,22.011,15.161,19.447,4.058,22.652,8.61,-1.375,5.891,20.519,7.173,1.344,12.108,22.023,1.527,6.758,23.585,10.059,18.721,2.759,-0.63,0.117,17.646,22.773,26.48,2.613,12.967,18.682,18.655,15.081,1.137,19.47,21.216,13.496,5.338,3.763,1.527,14.234,17.928,20.109,5.327,7.63,5.84,16.766,10.985,18.623,8.555,10.831,13.714,17.592,13.525,22.579,6.505,2.536,2.181,6.828,20.021,18.248,21.481,19.109,17.447,14.193],[23.671,17.335,8.065,15.457,11.457,6.097,4.111,1.915,5.702,11.794,24.191,21.291,7.221,-1.593,9.288,17.326,15.553,16.616,10.473,11.703,6.8,-0.031,11.428,17.993,4.907,5.211,2.531,19.581,10.76,19.362,6.228,13.599,12.353,21.309,6.689,0.403,8.334,1.834,23.034,-0.988,2.674,7.743,21.665,11.572,1.677,18.182,18.408,15.767,25.419,13.477,4.342,0.84,5.238,22.851,19.626,12.691,18.454,13.149,9.9,7.615,16.935,6.644,16.674,19.764,16.543,13.055,6.779,17.27,4.156,-0.264,8.883,0.28,23.516,15.369,4.826,26.138,18.973,1.529,23.757,24.332,6.944,10.122,9.226,10.763,7.146,12.471,6.124,22.572,5.406,11.434,7.48,22.239,-1.794,8.046,9.5,16.962,18.263,15.916,11.971,5.595,6.386,15.518,10.973,13.786,11.56,-1.868,12.087,16.898,4.979,16.93,17.558,3.131,10.106,16.923,19.707,0.324,11.728,5.125,17.93,8.568,1.163,9.212,5.876,3.76,20.668,1.602,10.465,13.17,12.811,7.745,7.891,21.816,15.227,19.51,3.688,23.277,8.178,-1.312,6.276,20.771,7.117,1.281,12.313,22.332,1.339,6.244,23.567,10.262,18.801,2.723,-0.856,0.453,17.309,22.811,25.859,3.266,12.721,18.062,18.955,14.491,1.644,19.246,21.201,13.347,4.988,3.556,1.909,14.077,17.87,19.544,5.471,7.514,5.655,16.762,11.096,18.767,9.48,11.248,14.091,17.253,13.165,22.933,6.336,2.668,1.929,6.288,20.176,18.202,21.489,18.91,17.728,14.259],[23.266,17.139,8.122,15.538,11.632,6.136,4.115,1.894,5.502,11.926,24.203,20.941,7.17,-1.702,9.022,17.311,15.805,16.457,10.588,11.61,6.902,-0.015,11.595,18.159,5.014,5.417,2.605,19.473,10.525,19.658,6.324,13.568,12.404,21.309,6.789,0.535,8.342,1.483,23.244,-1.079,3.057,7.679,21.761,11.662,1.605,18.047,18.607,15.707,25.211,13.448,4.41,0.789,5.173,22.817,19.725,12.736,18.645,13.586,10.115,7.788,16.842,6.642,16.396,19.556,16.296,12.594,6.763,17.17,4.126,-0.067,8.976,0.425,23.735,14.748,4.955,26.049,18.828,1.351,24.114,23.671,7.225,10.324,9.334,10.84,6.553,12.765,6.015,22.483,5.626,11.199,7.037,21.546,-1.274,7.914,9.603,16.884,18.733,15.35,12.45,5.444,5.934,15.732,10.495,14.181,11.78,-1.691,11.601,17.305,4.745,17.233,18.059,3.168,9.899,16.357,19.535,0.31,11.656,5.506,17.995,8.618,0.787,8.805,5.779,3.83,20.951,1.98,10.417,12.957,12.986,8.028,8.223,21.964,14.804,19.688,3.395,23.968,7.65,-1.054,6.567,20.606,6.991,1.378,12.007,22.093,1.275,6.389,23.631,10.163,18.52,2.143,-1.139,0.205,16.767,23.095,25.162,3.072,12.604,17.504,19.322,13.945,1.672,18.621,21.54,13.815,4.718,3.419,1.6,14.192,18.131,20.04,5.816,7.122,5.845,16.737,10.866,19.306,10.565,11.174,13.742,17.232,13.284,22.551,6.228,2.517,2.135,6.433,20.351,17.558,21.225,18.505,17.74,14.309],[22.9,16.908,8.121,15.446,11.789,6.111,4.271,1.867,5.305,12.076,24.5,20.692,7.021,-1.608,8.842,17.298,15.979,16.286,10.605,11.501,6.965,-0.066,11.843,18.305,5.161,5.726,2.543,19.563,10.372,19.842,6.463,13.465,12.477,21.208,6.859,0.683,8.232,1.431,23.454,-1.222,3.136,7.757,21.761,11.641,1.542,17.978,18.708,15.592,24.847,13.394,4.43,0.731,5.109,22.797,19.821,12.742,18.818,13.835,10.412,7.986,16.773,6.663,16.107,19.399,15.836,12.557,6.091,17.101,4.187,-0.031,8.794,0.387,24.103,15.018,5.225,26.298,18.622,1.499,23.805,23.012,7.187,10.58,9.127,10.75,6.37,12.901,6.368,22.282,5.488,11.166,6.838,20.429,-1.407,7.537,9.729,17.41,18.583,15.629,12.09,5.072,6.019,15.625,9.955,14.305,11.777,-1.698,10.824,17.478,4.744,17.36,18.669,3.367,9.793,16.094,19.752,0.327,11.813,5.987,18.232,8.814,1.015,8.597,6.204,3.354,21.251,1.775,10.463,13.164,12.896,8.483,8.28,21.908,14.527,19.66,3.174,23.814,8.015,-1.033,6.317,20.36,6.876,1.334,12.122,22.049,1.265,6.781,23.451,10.065,18.492,2.879,-1.233,-0.445,16.254,22.581,24.985,3.015,13.052,17.796,19.385,13.955,2.335,18.161,21.231,13.507,4.989,3.608,1.664,15.115,18.342,20.274,5.398,7.167,6.02,16.453,10.912,19.073,10.923,10.722,13.133,16.921,13.975,22.611,6.33,2.574,1.986,6.845,20.457,17.111,21.515,18.051,17.373,15.025],[22.719,16.722,7.987,15.229,11.903,6.173,4.392,1.874,5.11,12.183,24.936,20.576,6.821,-1.568,8.823,17.227,16.153,16.113,10.52,11.45,7.021,-0.269,12.057,18.39,5.223,5.926,2.491,19.79,10.182,19.953,6.756,13.379,12.487,21.058,6.936,0.716,8.089,1.618,23.655,-1.397,3.202,7.936,21.576,11.598,1.628,17.965,18.662,15.472,24.529,13.326,4.299,0.706,5.107,22.746,19.948,12.622,18.748,13.965,10.624,8.185,16.854,6.671,15.979,19.153,15.84,13.051,5.712,16.945,3.954,0.003,8.665,0.533,23.608,15.608,5.161,26.799,18.252,1.282,23.515,23.187,7.004,10.258,9.306,10.818,6.34,12.667,6.494,21.88,5.538,11.91,6.911,20.254,-1.44,7.893,9.914,17.731,18.607,16.199,12.127,5.367,6.607,15.379,10.344,14.42,11.306,-1.841,10.707,17.042,5.253,17.48,18.643,3.458,9.833,16.04,20.104,0.158,12.044,5.805,18.192,8.862,1.537,8.38,6.34,3.602,21.261,1.618,10.371,12.922,12.911,8.256,8.547,21.404,14.484,19.192,3.393,23.341,8.523,-0.934,6.192,19.972,7.233,1.51,11.942,22.033,1.275,6.847,22.701,9.83,18.682,3.515,-0.774,-0.837,16.878,22.335,25.117,2.512,13.127,18.734,18.858,14.206,2.151,18.247,21.322,13.572,5.202,3.833,1.779,14.917,18.432,20.028,5.176,7.214,6.405,15.661,10.943,18.819,10.593,10.876,13.919,16.755,14.145,22.918,6.822,2.37,1.904,6.832,19.995,17.243,21.701,17.957,17.388,14.957],[22.785,16.675,7.911,15.236,11.914,6.388,4.336,1.877,5.052,12.201,25.03,20.577,6.748,-1.671,8.918,17.043,16.322,15.94,10.537,11.376,7.146,-0.474,12.263,18.39,5.257,5.942,2.64,19.973,10.111,19.918,7.122,13.358,12.43,20.829,6.981,0.678,8.01,1.929,23.738,-1.504,3.296,8.106,21.324,11.494,1.631,17.887,18.58,15.674,24.212,13.339,4.084,0.701,5.159,22.852,19.965,12.508,18.411,13.971,10.827,8.256,17.046,6.736,15.94,18.871,15.758,13.271,5.925,16.866,3.746,0.095,8.385,0.243,23.372,15.38,5.02,26.929,18.272,1.795,24.403,23.735,7.088,9.893,9.314,11.247,6.596,12.256,6.227,21.896,5.836,12.197,6.892,20.787,-1.547,7.81,9.926,17.35,18.282,16.16,12.248,5.766,6.805,14.828,10.708,14.519,11.576,-1.96,10.525,16.463,5.683,17.218,18.357,3.448,10.111,15.812,20.363,0.22,11.996,5.618,18.494,8.942,1.564,8.358,6.146,3.943,21.221,1.599,10.374,12.938,13.192,7.697,8.711,21.006,14.64,19.134,3.839,23.45,8.012,-1.073,6.274,19.967,7.311,1.852,11.846,22.363,1.317,6.85,22.406,9.698,18.938,2.841,-1.034,-0.585,17.154,22.158,25.007,2.725,12.789,19.511,18.652,14.339,2.099,18.675,21.62,13.008,4.823,4.185,1.546,14.583,18.461,20.251,5.294,7.663,6.378,15.095,11.095,18.533,9.796,11.459,14.049,16.918,14.015,22.432,6.857,2.224,2.143,7.081,19.813,17.571,21.509,17.975,17.667,14.616],[23.014,16.741,7.9,15.393,11.831,6.609,4.255,1.845,5.178,12.077,25.08,20.651,6.802,-1.711,8.97,16.849,16.334,15.783,10.643,11.49,7.273,-0.583,12.434,18.157,5.297,5.797,2.815,20.246,10.222,19.837,7.22,13.408,12.609,20.501,6.874,0.61,7.941,2.263,23.7,-1.581,3.212,8.088,21.096,11.402,1.615,17.932,18.526,16.063,23.967,13.351,4.105,0.734,5.219,22.858,19.906,12.483,18.041,13.882,10.997,8.219,17.175,6.743,15.879,18.643,15.587,12.77,6.241,17.226,3.955,-0.02,8.566,0.16,23.786,14.875,4.647,26.801,18.322,1.686,24.639,23.045,7.761,10.06,9.398,11.388,7.078,12.264,6.555,21.766,5.859,11.754,6.818,21.331,-2.004,7.241,9.836,16.967,17.684,15.991,12.055,5.975,6.99,14.314,10.73,14.652,11.703,-2.066,10.58,15.465,5.233,17.08,18.356,3.496,9.939,15.683,20.156,-0.174,12.375,6.004,18.567,9.078,1.468,8.295,6.241,3.797,20.972,1.839,10.652,12.786,13.426,8.333,9.069,21.258,14.93,18.641,4.101,24.235,7.398,-0.835,6.261,20.295,6.99,1.506,11.762,22.592,1.613,7.416,22.157,9.738,18.646,3.017,-1.421,0.034,17.087,22.334,24.655,2.94,12.906,20.112,18.229,14.533,1.953,18.986,21.219,12.813,4.357,3.907,1.595,15.183,18.452,20.322,5.864,8.23,5.729,15.645,10.881,17.871,9.514,11.859,13.723,16.577,14.089,22.733,6.697,2.263,1.97,6.81,19.752,17.876,21.376,17.767,17.729,14.843],[23.204,16.798,7.955,15.534,11.749,6.934,4.236,1.691,5.424,11.775,25.243,20.659,6.982,-1.686,8.977,16.629,16.218,15.559,10.814,11.687,7.342,-0.665,12.563,17.854,5.326,5.584,2.915,20.501,10.315,19.735,7.048,13.53,12.882,20.156,6.884,0.498,7.868,2.4,23.567,-1.6,3.176,8.168,21.051,11.655,1.63,18.03,18.528,16.355,23.714,13.354,4.382,0.778,5.178,22.655,19.878,12.45,17.785,13.828,11.096,7.999,17.19,6.581,15.821,18.414,15.824,12.702,6.462,17.36,4.008,-0.352,8.875,0.208,23.635,14.861,4.549,27.054,18.529,1.403,24.143,22.935,7.617,10.365,9.219,10.75,7.497,12.734,6.988,21.819,5.405,11.727,6.772,21.653,-2.398,7.814,9.535,17.149,17.812,16.191,12.517,6.006,7.027,14.189,10.756,14.5,11.685,-2.286,11.391,14.928,4.475,16.645,18.205,3.468,10.065,15.798,20.22,-0.354,12.654,6.138,18.913,9.248,1.319,8.841,6.025,3.512,21.041,1.99,10.979,13.182,13.703,8.442,8.84,21.026,15.362,18.344,4.237,24.423,7.431,-0.797,6.376,20.371,6.862,1.358,11.792,23.274,2.154,7.263,21.927,9.563,18.637,3.168,-1.389,0.138,17.493,22.322,24.456,3.079,13.011,20.085,17.501,14.806,1.855,18.402,21.215,13.628,4.61,3.471,1.822,14.993,18.606,19.909,5.876,7.876,5.67,16.035,10.737,17.431,10.022,11.882,13.474,16.741,14.012,23.07,6.187,2.502,1.805,6.677,19.295,17.756,21.379,17.488,17.428,14.787],[23.266,16.867,8.01,15.604,11.638,7.221,4.071,1.564,5.809,11.591,25.378,20.668,7.076,-1.664,9.081,16.552,15.98,15.27,10.941,11.933,7.432,-0.874,12.569,17.592,5.304,5.342,2.845,20.589,10.448,19.631,6.883,13.836,13.132,19.922,7.116,0.559,7.839,2.335,23.501,-1.659,3.254,8.331,21.118,11.926,1.675,18.11,18.506,16.528,23.466,13.473,4.672,0.819,4.991,22.582,19.876,12.432,17.534,13.693,11.178,7.647,17.142,6.412,15.954,18.205,16.407,12.717,6.029,17.407,4.28,-0.713,8.741,-0.116,24.003,15.276,5.037,27.065,18.656,1.618,24.232,23.619,7.776,10.729,9.406,10.558,7.768,13.09,6.982,21.921,5.475,11.471,6.922,21.334,-2.044,8.183,9.614,17.307,17.857,16.381,12.273,5.653,6.835,14.462,10.593,14.229,11.52,-2.181,12.034,15.091,4.157,16.173,18.234,3.609,10.438,15.524,20.602,-0.127,12.805,5.494,19.071,9.319,1.095,9.534,5.726,3.897,21.056,1.989,11.34,13.343,13.935,8.349,8.44,20.219,15.495,18.088,4.247,23.714,7.728,-1.042,6.997,20.109,7.471,2.046,11.826,23.63,1.962,7.112,21.695,9.51,18.726,2.625,-1.13,-0.216,18.169,21.726,24.232,2.909,13.009,19.451,17.135,15.203,2.05,17.655,21.206,13.856,5.702,3.205,1.872,14.499,18.618,19.845,5.179,7.328,6.083,16.197,10.802,17.364,10.62,11.708,13.679,16.863,13.206,22.93,5.645,2.86,1.965,6.458,18.713,17.422,21.54,17.215,17.227,14.686],[23.438,16.935,8.089,15.705,11.618,7.338,3.946,1.596,6.094,11.573,25.48,20.646,6.942,-1.673,9.406,16.644,15.813,15.08,10.843,12.067,7.479,-1.144,12.435,17.36,5.33,5.138,2.711,20.574,10.65,19.585,6.684,13.962,13.381,19.754,7.444,0.807,7.828,2.234,23.411,-1.805,3.214,8.545,21.031,11.977,1.756,18.172,18.393,16.742,23.255,13.526,4.968,0.85,4.768,22.609,19.91,12.468,17.278,13.418,11.297,7.326,17.079,6.384,16.208,18.065,16.567,12.359,6.65,17.338,4.541,-0.66,8.535,0.001,23.912,15.765,4.762,27.225,18.722,1.279,24.605,23.429,8.193,10.707,9.441,10.841,7.771,13.003,7.413,21.84,5.343,11.291,7.543,21.213,-1.592,7.939,10.282,16.866,17.901,16.159,12.589,5.43,6.94,14.238,10.615,13.834,11.508,-2.136,12.52,15.325,3.996,16.009,18.176,3.669,10.693,15.296,20.512,0.021,12.353,5.426,18.714,9.372,1.103,10.098,5.978,4.006,20.808,1.803,11.579,13.571,14.042,8.788,8.325,19.845,15.749,17.996,4.057,23.133,8.047,-0.803,6.573,19.318,7.764,2.676,12.133,23.755,1.877,7.28,21.416,9.547,18.519,2.673,-1.132,-0.538,18.487,21.675,24.111,2.951,13.14,19.111,17.299,15.948,1.859,18.608,21.361,13.539,5.783,2.943,1.71,14.279,18.406,20.175,4.746,6.532,6.146,16.241,10.957,17.295,10.331,11.709,13.759,16.86,12.734,22.792,5.629,3.241,2.102,6.351,18.28,17.603,21.562,16.909,16.741,14.776],[23.613,16.986,8.192,15.753,11.743,7.451,3.89,1.675,6.249,11.523,25.607,20.543,6.784,-1.611,9.604,16.749,15.701,15.148,10.747,12.077,7.524,-1.172,12.359,17.183,5.341,5.056,2.605,20.577,11.043,19.483,6.6,13.991,13.578,19.693,7.648,1.022,7.973,2.207,23.236,-1.974,2.929,8.699,20.862,11.966,1.968,18.267,18.466,17.049,23.024,13.446,5.134,0.754,4.532,22.742,19.952,12.547,16.962,13.188,11.395,7.159,17.124,6.449,16.359,17.91,16.235,12.109,7.197,17.413,4.575,-0.319,8.618,0.028,23.844,16.009,4.611,27.514,18.747,1.349,24.597,23.1,8.114,10.877,9.259,10.853,7.306,12.883,7.123,21.603,5.088,11.736,6.872,21.387,-1.787,8.215,9.909,16.396,17.627,16.235,12.4,6.006,6.795,13.789,10.333,13.843,11.466,-2.923,12.624,15.723,3.85,15.896,17.791,3.432,10.516,15.434,20.08,-0.83,12.346,5.638,19.012,9.425,0.948,9.847,5.865,3.593,20.253,2.054,11.804,13.49,14.099,8.998,8.31,19.954,15.501,17.736,4.008,23.566,7.582,-0.363,6.748,19.141,7.424,2.75,12.397,23.638,1.847,7.895,21.264,9.852,18.892,2.992,-1.407,-0.4,18.849,21.912,24.014,2.783,13.284,19.537,17.667,16.045,2.195,18.861,21.389,13.124,5.908,2.883,1.701,13.863,18.148,20.619,4.863,5.951,6.019,15.738,10.764,17.614,9.787,12.133,13.532,17.362,12.984,22.644,5.829,3.296,1.929,5.928,18.164,17.483,21.22,16.656,16.58,14.354],[23.703,16.981,8.046,15.767,11.945,7.438,3.752,1.709,6.292,11.464,25.669,20.558,6.644,-1.499,9.36,16.806,15.694,15.263,10.644,11.905,7.394,-1.252,12.437,17.142,5.42,4.975,2.526,20.709,11.356,19.237,6.672,13.993,13.693,19.683,7.567,1.161,8.315,2.262,23.057,-2.015,2.636,8.778,20.809,12.041,2.227,18.532,18.616,17.155,22.818,13.161,5.157,0.641,4.423,22.88,20.028,12.509,16.699,13.26,11.504,7.001,17.121,6.474,16.319,17.812,15.872,12.282,6.753,17.54,4.681,-0.469,8.389,-0.133,23.9,15.573,4.535,27.351,18.664,1.934,24.624,23.416,8.539,10.92,9.619,10.807,6.983,12.913,7.277,21.243,5.162,11.382,6.357,21.033,-1.811,8.368,9.422,16.657,17.478,16.25,12.584,6.166,6.763,14.355,11.016,13.966,11.687,-2.94,12.646,15.554,3.972,15.637,17.668,3.65,10.389,15.891,20.303,-0.832,12.361,5.803,19.339,9.22,0.709,10.104,5.731,3.12,20.101,2.449,12.157,13.41,14.286,9.07,8.505,20.288,15.738,17.735,4.064,23.976,7.299,-0.452,7.264,19.669,7.813,2.059,12.188,22.693,1.734,7.904,21.093,10.004,19.046,2.664,-1.559,-0.438,18.66,21.906,23.66,2.943,13.386,20.315,17.906,16.427,2.059,18.511,21.58,13.486,5.669,2.869,1.403,13.68,18.404,20.464,5.063,5.649,5.871,15.328,10.841,17.969,10.065,12.36,13.676,17.135,12.91,22.88,5.76,3.358,1.485,6.501,17.796,17.261,21.362,16.442,16.66,14.673],[23.823,16.905,7.884,15.616,12.015,7.369,3.589,1.738,6.254,11.358,25.662,20.562,6.506,-1.425,9.134,16.817,15.695,15.243,10.689,11.905,7.197,-1.299,12.626,17.195,5.601,4.791,2.498,20.933,11.664,18.999,6.894,14.177,13.792,19.928,7.291,1.136,8.581,2.321,22.903,-1.881,2.394,9.019,20.818,12.148,2.45,18.864,18.71,16.998,22.698,12.884,5.123,0.427,4.402,23.144,20.193,12.499,16.49,13.444,11.706,6.982,17.127,6.409,16.164,17.828,15.464,12.44,6.947,17.427,4.588,-0.436,8.278,0.163,24.064,15.366,3.979,27.263,18.647,1.878,24.903,23.345,7.779,10.593,9.0,10.964,7.17,13.408,7.524,21.673,5.254,11.27,6.77,20.744,-2.004,7.901,9.817,17.129,17.477,16.072,12.599,5.728,6.713,14.305,11.194,13.723,11.545,-3.009,13.0,15.362,3.842,15.485,17.46,3.767,10.441,15.891,20.407,-0.404,12.159,5.677,19.367,9.108,0.813,10.206,5.671,2.887,20.081,2.351,12.083,13.232,14.722,8.691,8.543,20.857,15.824,17.973,4.147,23.368,8.308,-0.019,6.92,19.539,8.146,1.955,12.151,21.554,1.668,7.702,20.817,9.717,18.38,2.23,-1.38,-0.464,18.746,21.983,23.229,3.057,13.53,20.481,18.222,16.084,1.436,18.464,21.941,13.534,4.822,2.756,1.373,14.4,18.86,20.226,5.309,5.279,5.554,15.756,10.737,17.569,10.534,11.775,13.688,17.168,12.726,23.11,5.591,3.288,1.673,6.818,17.505,17.079,21.676,16.329,16.266,14.777],[23.986,16.745,7.814,15.442,12.036,7.134,3.466,1.739,6.168,11.182,25.699,20.522,6.489,-1.466,9.076,16.716,15.595,15.289,10.79,12.016,7.075,-1.267,12.674,17.209,5.666,4.537,2.485,20.971,11.693,18.728,7.106,14.246,13.842,20.365,6.964,1.023,8.801,2.39,22.751,-1.587,2.198,9.333,20.902,12.208,2.48,19.026,18.683,16.693,22.616,12.763,4.935,0.272,4.321,23.315,20.343,12.448,16.249,13.519,11.903,6.907,17.243,6.323,16.199,17.811,15.554,12.435,7.023,17.261,4.446,-0.452,8.203,0.607,24.388,15.499,3.537,27.333,18.272,1.729,24.645,23.274,7.796,10.351,8.561,10.771,7.195,13.511,6.859,21.369,4.968,11.898,6.914,21.214,-2.022,7.89,10.1,16.86,17.975,15.997,12.509,5.808,6.891,14.049,11.205,13.761,11.312,-2.547,13.341,15.602,3.617,15.636,17.354,3.843,11.072,15.952,20.685,-0.354,12.786,5.687,19.284,8.91,1.143,10.669,5.526,3.191,20.297,2.5,12.191,13.694,14.842,8.029,8.581,21.051,15.849,18.575,4.032,22.657,8.689,-0.095,6.53,19.216,8.199,2.527,12.133,21.731,1.84,8.278,20.757,9.823,18.956,2.237,-1.185,-0.382,18.51,22.005,23.089,3.743,13.337,20.347,18.933,15.65,1.834,18.301,23.133,12.756,4.892,2.558,0.866,14.902,18.791,20.503,5.196,5.93,5.517,16.086,10.959,17.208,10.502,12.136,13.759,17.366,12.918,23.603,5.368,3.093,1.66,6.881,17.382,17.151,21.676,16.536,15.904,14.285],[24.165,16.698,7.819,15.466,12.13,6.763,3.338,1.722,6.136,11.142,25.644,20.548,6.433,-1.611,9.083,16.75,15.578,15.473,10.753,12.225,7.02,-1.161,12.582,17.09,5.568,4.42,2.397,20.895,11.544,18.661,7.28,14.308,13.867,20.784,6.615,0.994,8.925,2.411,22.568,-1.375,2.187,9.645,21.028,12.199,2.532,19.241,18.538,16.328,22.617,12.705,4.837,0.016,4.111,23.548,20.376,12.435,15.954,13.443,12.108,6.767,17.347,6.292,16.403,17.753,15.111,12.189,6.647,17.309,4.586,-0.563,8.148,0.418,24.419,15.305,3.842,27.391,18.131,1.651,24.743,23.492,7.883,10.506,9.029,10.926,6.763,13.425,6.75,21.382,4.701,11.756,6.539,21.724,-1.678,8.064,9.623,16.547,17.752,15.69,12.681,6.325,6.85,14.722,11.045,13.761,11.503,-2.621,13.143,15.438,3.159,15.594,17.31,3.809,10.983,15.764,20.907,-0.228,12.671,5.942,19.25,8.798,1.316,11.353,5.509,3.441,20.053,2.239,12.139,14.084,15.021,8.174,8.902,21.032,16.024,19.081,4.233,23.132,8.028,-0.454,6.51,19.577,8.292,2.634,12.288,22.769,2.482,8.79,20.875,10.427,19.098,2.415,-0.612,-0.21,18.167,22.122,23.459,4.013,13.134,19.743,19.688,15.517,1.538,18.469,23.386,13.271,5.402,2.603,0.946,14.655,18.498,20.752,5.041,6.946,5.891,16.031,10.707,16.863,10.57,12.405,13.611,17.175,12.222,22.958,5.576,3.039,1.271,6.462,17.288,17.727,21.589,16.798,16.007,14.389],[24.306,16.653,8.033,15.608,12.071,6.542,3.275,1.646,6.121,11.195,25.419,20.742,6.27,-1.682,9.172,16.829,15.522,15.798,10.585,12.497,7.047,-0.992,12.387,16.923,5.471,4.424,2.311,20.887,11.434,18.838,7.467,14.487,13.958,21.077,6.589,0.9,8.817,2.366,22.499,-1.295,2.357,9.782,21.206,12.131,2.529,19.463,18.388,16.066,22.81,12.766,5.101,-0.257,4.003,23.59,20.261,12.375,15.854,13.263,12.216,6.715,17.459,6.381,16.562,17.698,15.025,12.017,7.227,17.46,4.567,-1.074,8.154,0.059,24.293,15.478,3.839,27.239,18.143,1.494,24.543,23.544,7.359,10.541,9.519,11.1,7.182,13.596,6.693,21.576,4.719,11.271,6.033,21.669,-1.417,8.156,9.088,16.496,17.209,15.694,12.089,6.235,6.716,14.992,10.427,13.58,12.174,-2.601,12.758,15.341,2.686,15.392,17.267,3.593,10.98,16.265,20.389,-0.298,12.175,6.166,19.313,8.962,1.268,11.281,5.19,3.207,19.436,1.309,12.476,13.552,14.97,8.37,9.138,21.28,15.774,19.218,4.019,23.625,8.051,-0.679,5.932,19.905,8.529,2.499,12.215,22.464,2.569,9.186,20.945,10.177,18.813,2.286,-0.566,0.013,17.756,22.539,23.688,4.056,13.676,19.712,20.242,15.354,1.378,17.794,23.005,13.87,5.284,2.445,1.044,14.165,18.618,20.51,4.752,7.453,6.225,15.914,10.829,16.578,10.823,12.416,13.635,17.851,12.221,22.744,5.451,3.203,0.898,5.489,16.724,17.637,21.537,17.143,15.872,14.702],[24.224,16.675,8.464,15.67,11.814,6.395,3.263,1.477,6.189,11.163,25.089,20.898,6.056,-1.678,9.169,16.801,15.315,16.177,10.308,12.734,7.063,-0.729,12.085,16.796,5.553,4.324,2.29,20.752,11.362,18.993,7.536,14.569,14.094,21.234,6.671,0.621,8.703,2.3,22.466,-1.278,2.573,9.803,21.423,12.293,2.447,19.656,18.08,15.972,22.983,12.926,5.306,-0.395,3.969,23.584,20.184,12.404,15.932,13.13,12.171,6.697,17.471,6.544,16.729,17.717,15.322,12.402,6.983,17.532,4.527,-1.219,7.888,-0.03,24.38,15.706,3.511,26.649,17.989,1.402,24.283,23.916,7.557,10.457,9.428,10.756,7.514,13.341,6.336,21.756,4.793,11.251,5.9,21.661,-1.856,7.965,8.842,16.399,17.19,15.538,12.585,5.693,6.681,15.1,10.606,13.571,12.181,-2.482,12.589,15.753,2.743,15.331,17.468,3.739,11.418,16.478,20.408,-0.469,12.293,6.3,19.0,8.878,1.216,11.019,4.946,3.206,19.272,1.267,12.627,13.438,15.302,8.091,9.245,21.845,15.89,19.385,4.111,23.358,8.274,-1.174,6.293,20.196,8.56,2.406,12.071,21.552,2.096,9.159,21.163,10.211,19.158,2.18,-1.155,-0.171,17.822,23.105,23.734,3.428,13.969,19.8,20.339,15.078,2.532,17.564,22.39,13.385,5.523,2.435,0.35,14.092,18.881,20.445,4.862,6.998,6.424,16.063,10.586,16.754,10.733,12.508,13.597,17.839,12.667,22.994,5.19,3.374,0.913,5.615,16.67,17.596,21.264,17.898,15.717,14.348],[24.102,16.807,8.701,15.584,11.512,6.242,3.203,1.265,6.216,11.126,24.812,21.022,5.832,-1.681,8.973,16.749,15.152,16.495,9.978,13.001,6.99,-0.509,11.968,16.785,5.711,4.206,2.389,20.45,11.276,19.01,7.481,14.66,14.204,21.369,6.701,0.307,8.728,2.253,22.332,-1.41,2.927,9.798,21.692,12.627,2.302,19.796,17.71,15.983,23.095,13.081,5.357,-0.54,3.994,23.478,20.29,12.428,15.967,13.192,12.074,6.702,17.377,6.792,16.927,17.902,15.101,12.211,6.657,17.229,4.503,-1.166,7.527,-0.154,24.118,15.657,3.602,26.59,17.928,1.386,23.971,23.566,7.237,10.528,9.852,10.693,8.096,13.037,6.445,21.978,4.719,11.683,6.128,21.465,-2.006,8.016,8.875,15.969,17.887,14.93,12.422,5.837,6.661,15.53,10.772,13.579,12.137,-2.094,12.716,15.923,2.913,15.47,17.789,3.829,11.771,16.03,20.518,0.045,12.255,6.508,18.809,8.837,0.723,11.236,4.89,3.036,19.738,1.754,12.658,13.369,15.516,7.938,9.194,21.919,15.769,19.53,3.998,22.363,7.759,-0.856,7.131,20.077,8.557,2.002,12.225,21.49,1.906,8.764,21.203,10.076,19.807,2.62,-1.07,-0.144,17.74,23.05,23.8,3.371,13.703,19.446,20.099,15.258,1.96,17.646,22.523,12.703,5.791,2.301,0.053,14.321,18.612,20.657,5.101,6.436,6.591,16.319,10.971,17.804,10.759,12.428,13.437,17.632,12.801,23.63,5.199,3.611,1.058,6.156,16.951,17.844,21.209,17.908,15.879,14.123],[23.953,16.782,8.811,15.395,11.378,6.04,3.097,1.145,6.221,11.044,24.59,21.065,5.728,-1.781,8.725,16.77,15.075,16.746,9.641,13.239,6.987,-0.414,11.953,16.888,5.768,4.046,2.378,20.353,11.246,19.114,7.449,14.584,14.266,21.477,6.883,0.275,8.641,2.143,21.926,-1.605,3.259,9.764,21.612,12.966,2.277,19.935,17.464,15.959,23.168,13.102,5.514,-0.7,4.016,23.463,20.445,12.441,15.85,13.352,12.121,6.727,17.266,7.112,17.007,18.368,15.169,11.901,6.884,17.099,4.484,-0.77,7.43,0.014,24.307,15.472,3.996,26.483,17.998,0.452,24.056,23.488,6.831,10.295,9.775,10.365,8.447,13.199,6.116,22.512,4.495,11.664,6.161,21.332,-1.379,8.177,8.41,16.334,18.289,14.529,12.045,6.517,6.586,15.762,10.335,13.636,12.3,-1.782,13.043,15.821,3.039,15.382,17.709,4.03,12.108,16.753,19.911,0.178,12.264,6.204,18.856,8.916,0.707,11.256,4.714,3.286,20.04,1.4,12.632,13.968,15.57,7.97,9.147,21.502,15.6,19.719,3.736,22.096,7.874,-1.138,6.589,20.511,8.831,2.07,12.27,21.893,1.977,8.569,21.259,9.771,19.582,3.496,-0.788,-0.32,17.826,23.078,23.633,3.595,13.584,18.957,20.438,15.429,1.692,16.955,23.042,13.6,5.151,2.549,0.1,14.712,18.405,20.937,5.666,5.577,6.58,16.618,10.877,18.346,10.53,12.339,13.781,18.174,12.351,23.241,5.51,3.699,0.778,6.778,17.099,17.728,21.447,17.417,15.923,14.434],[23.912,16.667,8.712,15.304,11.368,5.739,3.041,1.057,6.293,10.951,24.421,21.145,5.786,-1.824,8.592,16.824,15.019,16.921,9.33,13.338,7.028,-0.419,11.985,16.952,5.773,3.965,2.343,20.42,11.375,19.359,7.424,14.491,14.286,21.512,6.895,0.361,8.627,1.978,21.471,-1.838,3.483,9.873,21.49,13.118,2.311,20.189,17.178,16.053,23.291,13.054,5.516,-0.811,4.183,23.519,20.523,12.415,15.545,13.467,12.31,6.647,17.243,7.341,17.049,18.76,15.449,11.878,6.836,17.109,4.52,-0.494,7.392,-0.298,24.217,15.143,3.679,26.163,18.308,0.367,23.981,23.754,7.058,10.212,9.672,10.184,8.503,12.931,5.818,22.74,4.352,11.206,6.182,21.472,-1.068,7.647,7.904,16.937,18.335,14.854,12.4,6.647,6.501,15.921,9.592,13.582,12.753,-2.076,12.88,15.672,3.334,15.265,17.596,3.887,12.086,17.096,19.42,-0.247,12.395,5.852,19.12,8.854,0.969,11.61,4.553,2.911,20.294,1.054,12.61,14.034,15.371,7.843,8.686,21.522,15.552,19.736,3.66,21.986,8.084,-1.444,7.028,20.65,9.028,2.085,12.325,21.328,2.091,8.799,21.545,10.076,18.927,4.156,-1.064,-0.602,17.826,23.112,23.737,4.063,14.471,18.814,20.418,15.283,2.542,16.91,23.645,13.953,4.829,2.837,0.199,14.753,18.513,20.829,5.937,5.342,6.886,16.842,10.94,18.396,10.951,12.612,13.691,18.197,12.101,22.609,5.703,3.855,0.521,6.788,17.128,17.166,21.472,18.196,16.023,14.438],[24.025,16.571,8.619,15.288,11.215,5.514,2.976,1.007,6.238,10.876,24.262,21.255,5.905,-1.792,8.601,16.937,15.055,16.976,9.017,13.412,6.994,-0.472,12.136,16.973,5.684,3.92,2.407,20.413,11.423,19.511,7.353,14.385,14.203,21.631,6.738,0.526,8.699,1.829,21.012,-2.065,3.65,10.326,21.456,13.196,2.335,20.26,17.188,16.123,23.68,13.066,5.456,-0.852,4.332,23.469,20.467,12.418,15.308,13.361,12.497,6.463,17.318,7.26,17.106,19.088,15.51,12.017,7.069,17.139,4.434,-0.086,7.682,-0.599,23.407,14.803,3.054,25.953,18.366,0.952,23.791,23.586,6.696,10.056,9.413,10.257,8.197,12.757,5.532,22.622,4.601,11.377,6.096,21.352,-1.296,7.5,7.881,16.608,18.046,15.198,12.421,6.197,6.46,15.842,9.745,13.318,12.868,-2.038,12.767,15.759,3.939,15.446,17.911,3.834,11.888,16.729,19.802,0.093,12.537,5.949,19.022,8.804,0.951,12.761,4.571,2.426,20.41,0.555,12.515,13.643,15.313,8.101,8.505,21.801,15.281,19.818,3.579,21.797,8.199,-0.696,7.384,20.416,9.219,2.213,12.515,20.509,1.68,9.378,21.934,10.415,19.218,4.67,-1.557,-0.845,17.948,23.072,24.216,3.903,14.811,18.545,20.603,15.51,2.617,17.02,24.053,13.72,5.252,2.826,0.116,14.474,18.527,20.835,5.694,5.611,7.152,16.586,10.631,18.001,11.402,13.029,13.388,18.551,12.342,22.949,5.76,4.143,0.495,6.546,16.575,17.47,21.333,18.499,15.709,14.36],[24.032,16.493,8.632,15.276,10.93,5.414,2.856,1.162,6.115,10.907,24.086,21.287,6.114,-1.623,8.543,17.002,15.124,16.924,9.027,13.436,6.928,-0.317,12.307,17.0,5.526,3.899,2.53,20.328,11.641,19.585,7.44,14.319,14.15,21.66,6.645,0.804,8.781,1.664,20.697,-2.245,3.819,10.716,21.413,13.172,2.357,20.402,17.19,16.168,24.127,13.178,5.452,-0.8,4.268,23.436,20.304,12.344,15.207,13.134,12.672,6.371,17.427,7.018,17.127,19.41,15.32,11.995,6.968,16.949,4.261,0.14,7.829,-0.531,23.398,15.304,3.479,25.881,18.201,0.854,23.543,23.638,6.341,10.007,9.419,9.974,7.945,12.577,5.433,22.058,4.298,11.286,6.094,21.384,-1.802,8.051,7.828,15.92,17.927,15.218,12.712,5.858,6.608,15.696,10.151,13.282,12.228,-1.919,12.126,15.998,3.762,15.592,17.978,3.675,12.358,16.469,20.483,0.314,12.554,6.076,18.787,8.806,0.741,13.083,4.406,3.079,20.162,-0.054,12.619,13.262,15.537,7.474,8.437,21.776,15.321,19.907,3.158,21.176,8.236,-0.566,6.712,20.087,9.281,2.074,13.155,20.507,0.889,9.635,22.346,10.191,19.806,4.238,-1.806,-0.696,17.985,23.007,24.831,3.848,14.49,18.898,21.002,15.533,2.707,16.804,23.813,13.048,5.606,3.037,0.058,14.499,18.728,20.911,5.342,5.732,7.374,16.513,10.628,18.298,11.231,12.813,13.294,18.561,12.418,22.946,5.767,4.319,0.567,5.708,16.023,17.75,21.323,18.194,15.533,14.085],[23.829,16.459,8.665,15.298,10.657,5.313,2.723,1.354,6.066,11.012,23.959,21.16,6.248,-1.358,8.43,16.997,15.109,16.788,9.181,13.453,6.937,-0.091,12.439,16.919,5.345,3.785,2.721,20.24,11.778,19.621,7.655,14.274,14.226,21.53,6.534,0.851,8.841,1.452,20.741,-2.314,4.006,10.595,21.379,13.093,2.51,20.698,16.946,16.131,24.503,13.184,5.46,-0.762,4.285,23.407,20.136,12.303,15.249,12.991,12.655,6.249,17.603,6.839,17.054,19.758,14.935,11.715,6.397,16.949,4.226,0.502,7.807,-0.101,24.077,15.77,3.379,25.696,17.76,0.663,23.324,23.984,6.647,10.062,9.385,9.495,8.155,11.994,5.635,21.916,4.204,11.687,6.638,21.354,-1.875,7.552,7.948,15.971,17.98,15.284,12.948,5.974,6.507,15.918,9.926,13.511,12.537,-1.824,11.964,16.115,3.031,15.694,17.678,3.457,12.191,16.726,20.512,0.4,12.787,6.532,19.13,8.715,1.323,13.386,4.669,3.538,19.965,0.859,13.075,13.658,16.012,7.186,8.926,21.71,15.274,19.604,2.466,21.026,7.92,-0.686,6.266,20.069,9.322,2.21,13.044,20.797,0.591,9.755,22.703,9.928,19.941,3.145,-1.749,-0.746,18.011,22.863,25.111,3.343,14.672,18.475,20.946,15.587,2.953,16.71,23.324,13.242,5.622,3.012,0.322,14.535,18.622,20.544,5.288,5.553,6.775,16.741,10.46,19.145,11.17,12.912,13.181,18.216,12.32,22.556,5.856,4.047,0.471,5.59,16.086,17.478,21.217,18.544,15.434,13.639],[23.662,16.424,8.671,15.345,10.436,5.275,2.506,1.384,6.041,11.211,23.907,20.903,6.283,-1.085,8.289,16.964,15.061,16.677,9.174,13.581,7.054,-0.012,12.546,16.847,5.239,3.574,2.861,20.137,11.792,19.542,7.887,14.333,14.42,21.329,6.332,1.0,8.819,1.212,20.932,-2.291,4.039,10.369,21.44,13.047,2.514,20.789,16.688,16.09,24.771,13.067,5.344,-0.755,4.452,23.315,19.988,12.271,15.313,12.973,12.541,6.053,17.742,6.805,17.056,20.257,14.713,11.76,6.955,17.079,4.234,0.647,8.036,0.402,23.673,15.418,2.784,25.783,17.761,0.463,23.173,23.888,6.402,9.58,9.314,9.421,8.154,11.754,5.543,22.343,4.111,12.107,6.656,21.54,-1.409,7.441,8.37,16.399,18.023,15.203,12.753,5.947,6.278,15.842,9.928,13.346,12.961,-1.606,12.617,16.104,3.024,15.423,17.794,3.445,12.014,16.586,20.681,0.715,12.957,6.786,19.49,8.924,1.627,13.346,4.497,3.548,20.406,1.366,13.384,14.112,16.093,7.459,9.607,21.732,14.798,19.421,2.712,21.711,7.818,-0.616,6.697,20.236,9.668,2.472,12.163,20.567,1.022,9.145,22.996,9.943,19.87,3.573,-1.474,-1.072,17.943,22.803,25.199,3.791,14.14,17.893,20.733,15.492,2.887,16.376,22.427,13.436,5.84,3.148,0.562,14.409,18.611,20.552,5.4,5.735,6.067,16.554,10.552,19.485,10.946,12.784,13.219,18.415,12.506,22.568,5.696,3.581,0.453,6.532,16.834,17.313,20.908,18.942,15.71,13.637],[23.578,16.409,8.599,15.254,10.363,5.186,2.3,1.317,6.305,11.48,23.829,20.794,6.44,-0.865,8.165,16.854,14.925,16.452,9.099,13.707,7.238,0.006,12.578,16.85,5.103,3.289,2.787,20.113,11.897,19.52,8.154,14.396,14.662,21.236,6.298,1.256,8.732,1.153,21.112,-2.198,4.07,10.383,21.532,12.823,2.563,20.686,16.495,16.087,25.007,12.887,5.19,-0.82,4.551,23.129,19.888,12.282,15.497,13.018,12.336,6.101,17.831,6.872,17.029,20.7,15.055,12.054,6.915,17.115,4.434,0.811,8.004,-0.278,22.892,14.938,3.095,25.621,18.129,0.743,23.23,23.647,6.069,9.197,9.146,9.605,7.996,11.941,5.809,22.254,3.721,11.655,6.25,21.221,-1.032,7.279,8.52,16.472,18.229,15.015,13.12,6.122,6.635,15.658,10.187,13.464,12.782,-1.619,12.915,16.162,3.29,15.151,17.899,3.401,12.547,16.522,20.927,0.506,12.857,6.777,19.132,9.065,1.371,12.957,4.249,3.362,20.239,1.327,13.242,13.81,16.292,7.193,9.762,21.057,14.805,19.449,2.761,22.186,8.048,-0.457,6.619,20.172,9.167,2.107,11.931,20.507,1.313,8.938,23.308,10.344,19.855,4.552,-1.407,-0.852,17.953,23.07,25.651,4.082,13.927,18.099,20.772,15.616,3.232,16.327,21.655,12.855,5.516,3.593,0.253,14.542,18.792,20.491,5.724,5.382,6.089,16.812,10.45,19.601,10.744,12.155,13.538,18.475,12.742,22.922,5.484,3.31,0.35,6.501,17.168,17.208,21.17,19.315,15.316,13.664],[23.473,16.519,8.366,15.018,10.492,5.073,2.335,1.223,6.453,11.517,23.807,20.746,6.61,-0.832,8.052,16.818,14.808,16.152,9.009,13.809,7.445,-0.04,12.657,16.874,5.036,3.087,2.539,20.159,12.05,19.5,8.406,14.376,14.835,21.168,6.291,1.47,8.64,1.258,21.324,-2.079,4.211,10.624,21.622,12.464,2.538,20.489,16.487,16.168,25.3,12.708,5.016,-0.998,4.557,22.872,19.822,12.233,15.629,13.058,12.166,6.166,17.933,6.818,16.898,20.899,15.527,12.432,7.092,16.883,4.485,0.673,8.462,-0.366,22.966,14.834,2.893,25.204,18.224,0.839,22.949,23.644,6.133,9.541,8.742,9.531,7.621,12.205,6.071,21.993,3.933,12.023,6.162,21.064,-0.488,7.534,8.357,16.261,17.902,14.501,12.992,6.011,7.525,15.754,10.215,13.531,13.092,-1.673,13.218,16.376,2.83,15.409,17.727,3.227,12.476,16.221,20.47,0.386,12.506,7.232,18.869,9.314,0.895,12.846,4.445,2.857,19.763,1.798,13.134,13.978,15.862,7.614,9.992,21.085,15.408,19.356,2.971,22.035,8.045,-0.09,5.954,20.22,9.052,1.377,12.473,20.898,1.499,10.217,23.996,10.176,19.824,4.619,-1.47,-0.68,18.02,23.381,26.053,4.142,14.248,17.962,21.165,15.594,3.152,16.431,22.09,12.841,5.097,3.531,0.41,14.666,18.647,20.109,5.352,5.582,6.303,17.253,10.74,20.161,10.811,11.59,13.537,18.566,12.138,22.603,6.122,3.166,0.027,5.875,17.198,17.22,21.054,19.524,15.202,13.772],[23.393,16.754,8.051,14.93,10.726,5.113,2.369,1.213,6.376,11.572,23.736,20.721,6.77,-1.012,8.136,16.919,14.705,16.02,8.973,13.844,7.717,-0.155,12.799,16.869,5.047,2.973,2.224,20.256,12.086,19.356,8.569,14.427,14.788,20.932,6.356,1.691,8.497,1.477,21.414,-2.107,4.264,11.015,21.64,12.521,2.437,20.433,16.674,16.231,25.578,12.627,4.741,-0.942,4.566,22.718,19.625,12.14,15.807,13.11,12.166,6.189,18.04,6.537,16.818,20.97,15.319,12.284,7.34,16.631,4.68,0.62,8.677,-0.018,23.534,14.939,2.857,25.41,18.423,0.541,22.706,24.021,6.072,9.608,9.021,9.462,6.778,12.216,5.67,21.632,3.964,12.068,6.434,20.77,-0.537,7.455,7.732,16.115,17.892,14.487,12.852,5.5,7.738,15.257,9.963,13.371,13.229,-1.377,13.416,16.121,2.444,15.613,17.841,3.24,12.506,16.189,20.078,0.985,12.279,7.154,19.083,9.513,0.683,13.122,4.578,2.524,19.717,1.665,13.269,14.14,15.951,7.413,10.022,21.809,15.073,19.335,3.31,22.016,7.423,-0.108,5.755,20.437,9.527,1.183,12.482,21.076,1.24,10.41,24.117,9.928,19.587,4.192,-1.466,-0.604,18.05,23.192,26.715,3.905,13.751,18.018,20.958,15.878,3.355,16.438,22.426,12.583,5.108,3.668,0.122,14.455,18.571,20.421,5.068,5.922,6.578,17.366,10.496,20.334,10.706,11.821,13.402,18.223,11.852,22.286,6.152,2.994,0.218,6.108,16.607,17.367,20.536,19.984,15.417,13.999],[23.414,17.014,7.776,14.934,11.017,5.191,2.263,1.292,6.28,11.748,23.706,20.612,6.967,-1.217,8.197,16.985,14.664,15.966,8.86,13.798,7.871,-0.189,12.875,16.859,4.99,2.829,1.866,20.415,12.089,19.187,8.528,14.52,14.809,20.802,6.337,1.795,8.313,1.723,21.357,-2.16,4.188,11.157,21.536,12.805,2.399,20.346,17.007,16.291,25.852,12.598,4.443,-0.815,4.628,22.704,19.447,11.902,15.979,13.163,12.227,6.346,18.157,6.341,16.783,21.202,15.392,12.074,6.902,16.683,4.403,0.406,8.41,-0.059,23.468,14.989,3.057,25.253,18.299,0.321,22.44,24.558,6.234,9.745,9.129,9.749,6.567,12.333,5.751,21.836,3.745,11.997,6.919,21.0,-1.438,7.433,7.674,16.126,18.13,14.836,13.049,5.025,7.612,15.594,9.784,13.355,13.002,-1.835,13.269,16.113,2.585,15.425,17.605,3.129,12.534,16.311,20.397,0.885,12.898,7.191,19.143,9.642,0.248,12.819,4.446,2.418,19.802,2.311,13.364,13.907,16.172,7.096,9.966,21.438,14.737,19.258,3.469,22.604,7.392,0.303,6.338,20.187,9.675,1.626,12.265,20.917,0.711,10.056,24.116,10.007,19.715,3.735,-1.887,-0.554,18.1,23.133,26.943,3.531,14.112,18.102,20.592,16.031,3.507,16.543,21.74,12.36,5.008,3.576,-0.025,14.393,18.795,20.271,4.885,5.843,6.449,17.331,10.101,19.888,10.524,12.335,13.079,17.749,12.378,22.571,5.721,2.583,0.421,6.441,15.861,17.767,20.465,19.893,15.574,14.062],[23.533,17.138,7.668,14.866,11.327,5.285,2.156,1.264,6.15,11.869,23.647,20.557,7.014,-1.414,8.278,17.082,14.831,15.99,8.734,13.82,7.872,-0.278,12.843,16.838,4.814,2.722,1.599,20.552,12.034,19.105,8.464,14.493,14.908,20.81,6.269,1.979,8.252,1.816,21.321,-2.131,4.107,10.832,21.39,12.944,2.383,20.253,17.377,16.294,25.993,12.601,4.112,-0.772,4.62,22.682,19.42,11.621,15.993,13.166,12.238,6.523,18.318,6.282,16.707,21.288,15.601,12.707,6.425,16.647,4.223,0.267,8.635,0.032,22.64,14.997,2.708,25.138,18.318,0.689,22.199,24.539,6.366,9.831,8.525,10.156,7.111,12.799,6.375,22.136,3.663,12.384,7.549,20.804,-1.771,7.556,7.944,16.69,18.202,14.694,13.069,4.759,7.812,15.749,9.633,13.655,12.817,-1.991,13.205,16.083,2.482,15.051,17.325,2.98,12.763,16.508,20.744,0.15,13.405,7.182,19.16,9.629,0.058,11.945,4.396,2.079,19.573,2.414,13.764,13.873,16.505,7.353,10.179,20.941,15.364,18.925,3.395,22.876,7.74,0.126,6.095,19.819,9.815,2.613,12.623,21.275,0.58,9.901,24.358,9.565,20.103,3.824,-1.892,-0.573,18.113,22.827,26.918,3.397,14.664,18.315,20.73,15.752,2.96,17.059,22.064,12.831,4.841,3.555,0.252,14.416,18.954,19.955,4.807,5.745,5.909,17.454,9.813,20.411,10.543,12.593,12.455,18.133,12.516,22.12,5.899,2.502,0.466,6.735,16.183,17.87,20.638,19.797,15.271,14.431],[23.536,17.156,7.845,14.738,11.559,5.445,2.125,1.197,6.091,12.094,23.621,20.571,7.117,-1.709,8.427,17.121,15.034,16.107,8.749,13.855,7.944,-0.448,12.824,16.937,4.715,2.595,1.509,20.65,11.941,19.169,8.455,14.46,15.064,20.742,6.295,1.913,8.191,1.829,21.367,-2.002,4.056,10.534,21.228,13.034,2.384,20.47,17.727,16.19,25.992,12.58,3.945,-0.797,4.549,22.508,19.487,11.454,15.856,13.304,12.297,6.577,18.52,6.245,16.823,21.37,15.615,13.251,6.619,16.309,4.316,-0.014,8.839,-0.05,21.907,15.098,2.615,25.027,18.63,0.674,22.189,24.213,6.174,9.928,8.404,10.582,6.586,13.091,6.295,22.108,3.818,12.189,7.329,20.447,-1.453,7.524,7.825,16.685,18.312,14.402,12.817,4.999,7.397,15.323,9.6,13.864,13.194,-2.109,13.127,16.28,2.417,15.172,17.67,2.928,12.495,16.641,20.84,0.259,12.625,7.148,19.193,9.621,0.151,10.65,4.158,1.912,19.438,1.552,13.763,13.647,16.517,7.175,10.001,21.119,15.631,18.936,3.197,22.7,7.506,0.26,5.42,19.881,9.434,2.741,12.329,21.144,0.448,9.45,24.337,9.248,19.483,4.213,-1.221,-0.595,17.871,22.46,26.926,3.618,14.316,19.189,20.379,15.641,3.642,17.443,22.323,12.605,4.703,3.837,0.748,14.309,19.075,19.86,4.848,6.056,5.626,16.98,9.666,20.714,10.726,12.601,12.397,18.273,12.267,22.063,5.642,2.056,0.03,6.803,17.008,17.51,20.943,20.166,15.548,14.327],[23.422,17.187,7.992,14.574,11.714,5.591,2.153,1.133,6.082,12.413,23.619,20.502,7.223,-2.087,8.595,17.056,15.074,16.253,8.86,13.791,7.914,-0.625,12.638,17.164,4.755,2.434,1.624,20.714,11.676,19.3,8.488,14.493,15.124,20.751,6.238,1.632,8.003,1.674,21.481,-1.725,4.214,10.302,21.056,13.047,2.386,20.535,18.046,15.966,25.974,12.452,3.918,-0.798,4.39,22.298,19.598,11.418,15.816,13.419,12.412,6.582,18.716,6.122,16.91,21.545,15.558,13.274,6.772,16.235,4.2,-0.514,8.903,-0.118,21.659,14.995,2.753,25.132,18.694,0.211,22.315,23.481,6.724,10.254,9.063,10.665,6.478,13.238,6.331,21.679,3.617,12.347,6.921,20.609,-1.966,7.821,8.013,16.359,18.166,14.728,13.327,5.318,7.284,15.357,10.082,14.415,13.422,-1.995,12.897,16.68,2.245,15.784,17.98,2.863,12.435,16.319,20.694,0.777,12.62,7.182,19.402,9.734,0.471,10.042,4.217,1.579,19.986,1.131,13.67,13.273,16.629,7.014,9.673,21.006,15.561,19.062,2.998,22.571,7.461,0.104,5.446,19.842,8.696,2.395,11.95,21.071,0.651,9.397,24.202,9.546,19.765,4.629,-1.06,-0.402,17.718,22.645,26.746,3.272,14.05,19.503,21.071,15.791,3.511,17.774,21.558,12.223,4.458,3.8,0.774,14.579,18.8,20.13,5.057,5.942,5.85,16.595,9.629,20.362,10.851,12.662,12.537,18.392,12.137,22.357,5.862,2.017,-0.543,6.581,17.101,17.697,20.853,20.356,15.421,14.205],[23.297,17.087,8.13,14.517,11.733,5.783,2.129,1.02,6.16,12.667,23.612,20.32,7.264,-2.387,8.884,16.964,15.118,16.254,8.998,13.769,7.833,-0.652,12.57,17.411,4.804,2.353,1.775,20.85,11.376,19.442,8.535,14.501,15.187,20.799,6.09,1.31,7.869,1.391,21.698,-1.433,4.441,10.12,21.06,12.947,2.254,20.515,18.259,15.756,26.146,12.341,3.895,-0.863,4.19,22.136,19.694,11.413,15.903,13.465,12.558,6.468,18.65,5.873,16.881,21.456,15.579,12.978,6.331,16.288,4.165,-0.553,8.962,-0.114,21.85,14.381,2.842,25.327,18.37,0.371,22.631,22.66,6.865,10.355,9.46,10.442,7.034,13.317,6.554,21.51,3.453,12.739,6.731,20.673,-2.639,7.738,8.693,16.67,17.599,15.183,13.241,5.356,7.394,16.09,10.718,14.01,13.234,-1.879,12.887,16.684,1.975,15.904,18.333,3.03,12.427,16.892,20.674,0.415,12.823,7.101,19.187,9.659,0.801,9.739,4.172,1.706,20.651,1.705,13.576,13.168,16.288,7.462,9.627,21.192,15.918,19.015,2.716,22.876,7.163,-0.419,5.955,19.603,8.758,2.974,12.45,21.551,1.125,9.801,24.307,9.606,19.996,4.67,-1.474,0.183,17.625,22.545,26.7,3.178,14.094,18.973,21.053,15.409,2.96,17.573,21.572,12.084,4.23,3.678,0.921,15.021,19.335,20.459,4.97,5.821,6.293,16.99,9.8,20.499,10.891,12.859,12.409,17.95,12.289,22.168,6.057,2.218,-0.47,6.763,16.486,18.004,20.624,20.161,15.49,14.244],[23.174,16.796,8.33,14.485,11.606,5.958,2.041,0.973,6.203,12.816,23.636,20.088,7.283,-2.399,9.089,16.828,15.126,16.369,9.161,13.706,7.737,-0.58,12.656,17.383,4.904,2.303,1.993,21.025,11.42,19.621,8.535,14.316,15.106,20.811,6.105,1.142,7.717,1.27,21.991,-1.201,4.492,10.197,21.132,12.862,2.207,20.392,18.231,15.635,26.399,12.383,3.872,-0.827,4.053,22.072,19.746,11.484,16.153,13.58,12.732,6.284,18.46,5.734,16.749,21.291,15.127,12.894,6.519,16.293,4.429,-1.019,8.908,-0.508,21.66,14.089,2.724,25.438,18.204,0.535,23.273,22.456,6.966,10.583,9.648,10.429,7.449,13.183,6.252,21.406,3.594,12.98,7.355,20.841,-3.059,8.084,9.058,16.854,17.375,15.355,12.8,5.233,7.288,16.103,10.518,13.708,13.453,-2.044,12.288,16.059,1.665,15.696,18.357,3.367,12.406,16.56,21.046,-0.094,12.38,7.142,19.215,9.42,0.575,9.812,4.164,2.06,20.797,1.354,13.415,13.593,16.2,7.488,9.922,21.33,15.887,19.073,2.736,23.506,7.073,-0.745,5.507,19.598,8.737,3.069,12.477,22.047,1.124,9.511,24.511,9.39,19.768,4.607,-1.397,0.461,17.444,22.103,27.112,3.139,14.217,19.792,20.506,15.259,3.221,17.962,21.609,12.13,4.264,3.49,0.537,14.713,19.408,20.313,4.358,5.886,5.836,17.373,9.649,20.709,11.021,13.254,12.463,18.008,11.999,22.138,5.806,2.124,0.04,6.964,15.987,17.86,20.964,19.987,15.611,14.547],[22.939,16.46,8.565,14.467,11.457,6.018,1.975,1.02,6.304,12.858,23.802,19.936,7.294,-2.371,9.161,16.672,15.151,16.541,9.357,13.616,7.624,-0.609,12.621,17.102,5.056,2.284,2.115,21.208,11.579,19.719,8.541,14.024,14.901,20.871,6.124,0.966,7.58,1.397,22.372,-1.127,4.445,10.347,21.14,12.817,2.121,20.046,18.438,15.631,26.551,12.477,3.881,-0.725,4.022,22.12,19.69,11.552,16.246,13.677,12.824,6.154,18.231,5.679,16.708,21.374,14.857,13.726,6.728,16.292,4.405,-1.031,8.86,-0.467,21.382,14.545,2.5,25.199,17.936,0.451,23.75,22.968,7.247,10.894,9.716,10.684,7.209,13.182,6.014,21.18,3.626,12.651,7.961,20.716,-2.931,8.346,9.169,16.695,17.371,14.69,12.815,5.626,7.52,15.71,9.879,13.966,13.041,-2.117,12.314,15.449,2.356,15.494,18.124,3.527,12.577,15.954,21.138,0.232,12.642,7.264,19.574,9.125,0.433,9.918,3.604,2.246,20.686,1.287,13.149,13.513,16.091,7.292,10.093,21.35,15.767,19.245,2.85,23.951,7.239,-0.069,5.174,19.668,8.831,2.796,11.945,21.738,0.822,9.357,24.723,9.297,20.001,4.24,-0.744,0.024,17.429,21.92,27.335,3.042,14.292,19.744,20.441,15.461,3.417,18.109,21.586,12.518,4.035,3.561,0.196,14.514,18.615,19.905,4.33,5.541,5.255,17.28,9.736,20.289,11.265,12.882,12.332,17.784,11.969,22.129,5.484,2.13,0.323,6.652,17.057,17.777,21.135,20.015,16.253,14.975],[22.61,16.404,8.631,14.648,11.533,6.132,2.009,1.201,6.405,12.856,23.97,19.802,7.321,-2.378,9.292,16.528,15.229,16.638,9.72,13.514,7.555,-0.647,12.566,16.9,5.207,2.329,2.078,21.226,11.686,19.649,8.715,13.72,14.556,20.988,5.944,1.026,7.539,1.593,22.68,-1.117,4.288,10.371,21.037,12.747,1.97,19.73,18.699,15.768,26.597,12.536,3.897,-0.68,4.1,22.212,19.43,11.493,16.454,13.714,12.542,6.04,17.921,5.807,16.732,21.569,14.975,14.127,6.527,16.268,4.502,-1.182,8.806,-0.02,22.51,15.015,2.401,25.195,17.869,0.138,24.198,22.698,7.1,10.716,9.516,10.784,7.171,13.136,6.217,21.253,3.628,12.538,7.831,20.352,-2.968,8.068,8.745,16.404,17.268,14.127,12.647,5.988,7.672,15.873,9.895,14.473,12.567,-2.229,12.077,15.475,2.621,15.243,17.942,3.45,12.645,16.385,20.922,-0.119,13.06,7.208,20.019,9.086,0.331,10.266,3.686,2.356,20.626,1.133,13.181,13.122,15.875,7.305,10.242,21.473,15.484,19.215,3.049,23.839,6.898,-0.439,5.97,19.608,9.055,2.522,12.327,22.111,0.687,9.663,24.864,9.294,19.788,4.035,-0.586,-0.195,17.485,22.414,27.714,2.842,14.128,19.738,19.918,15.155,3.4,17.89,22.137,12.58,4.248,3.523,0.292,14.81,18.813,19.576,4.591,5.339,5.298,17.16,9.788,20.131,11.04,12.706,12.291,17.352,12.108,21.967,5.586,1.995,0.552,5.833,16.74,17.47,20.596,20.695,15.93,14.862],[22.471,16.511,8.404,14.891,11.633,6.347,2.096,1.28,6.4,12.768,24.109,19.705,7.272,-2.498,9.213,16.533,15.278,16.743,10.054,13.355,7.561,-0.78,12.627,16.947,5.313,2.512,1.844,21.193,11.711,19.488,8.923,13.491,14.242,21.079,5.83,1.071,7.524,1.745,22.879,-1.17,4.147,10.382,20.941,12.726,1.803,19.507,18.731,15.884,26.72,12.43,3.967,-0.633,4.253,22.294,19.069,11.42,16.502,13.623,12.239,5.899,17.738,6.087,16.666,21.695,14.88,13.682,6.669,16.558,4.606,-1.377,9.167,0.086,23.389,15.073,2.798,25.613,17.956,0.962,23.969,21.688,7.329,10.768,9.536,10.678,7.428,13.275,6.64,21.234,3.612,12.624,7.154,20.113,-2.906,8.298,8.748,16.528,17.403,14.004,12.796,5.637,7.47,16.232,10.372,14.473,13.023,-2.327,12.005,15.664,2.153,15.364,18.005,3.501,12.531,16.359,21.024,-0.147,12.85,7.342,20.048,9.348,0.829,10.471,4.313,2.142,20.801,1.35,12.93,12.991,15.822,7.48,9.988,21.186,15.296,19.333,3.191,23.386,6.848,-0.874,5.411,19.71,8.817,2.277,12.335,22.321,1.035,10.01,25.011,9.255,19.066,3.985,-0.788,0.376,17.475,22.293,27.891,2.805,13.732,20.108,20.0,15.226,2.822,18.247,22.447,12.372,4.674,3.476,0.096,14.793,18.866,19.628,4.727,5.801,6.039,17.218,9.848,20.348,10.482,13.034,12.523,17.859,12.041,22.214,5.986,2.173,-0.119,5.342,16.54,17.754,20.267,21.152,15.686,14.527],[22.419,16.493,8.084,14.792,11.642,6.639,2.122,1.374,6.334,12.677,24.293,19.714,7.284,-2.616,9.016,16.652,15.297,16.773,10.354,13.282,7.607,-0.919,12.761,17.156,5.439,2.76,1.787,21.195,11.65,19.335,8.945,13.355,14.0,21.204,5.764,0.875,7.636,1.924,22.953,-1.227,4.134,10.339,20.86,12.787,1.695,19.391,18.734,15.982,26.951,12.346,4.203,-0.815,4.554,22.425,18.984,11.448,16.345,13.515,12.179,5.75,17.729,6.415,16.668,21.734,14.715,12.703,7.097,16.622,4.603,-1.333,9.044,-0.278,23.719,14.856,3.232,26.132,17.811,0.972,23.568,21.116,7.482,10.789,9.361,10.557,7.062,13.33,6.854,21.185,3.323,12.405,6.876,19.888,-2.68,8.097,9.368,16.938,17.729,13.966,12.768,5.112,7.374,16.183,10.8,14.303,13.282,-2.32,12.475,15.441,1.927,15.578,18.132,3.764,12.013,16.61,21.449,0.149,12.494,7.199,19.418,9.343,0.141,10.557,4.507,1.434,20.534,1.135,12.488,13.082,15.616,7.485,10.114,21.467,15.183,19.451,3.654,23.837,6.755,-0.482,4.97,19.552,8.835,1.914,12.203,22.489,1.086,9.956,25.157,9.152,18.507,3.956,-1.11,0.183,17.482,21.918,28.001,2.72,13.702,19.892,19.963,15.152,2.587,18.055,22.328,12.014,4.556,3.753,0.487,14.37,18.298,19.699,5.02,6.343,6.839,17.047,9.661,20.57,10.429,12.344,12.744,17.518,11.98,22.52,5.978,2.29,0.017,5.363,16.955,17.533,20.38,20.553,16.497,14.712],[22.422,16.405,7.951,14.417,11.565,6.88,2.147,1.332,6.176,12.443,24.621,19.825,7.362,-2.585,8.889,16.676,15.202,16.618,10.699,13.255,7.585,-1.042,12.833,17.396,5.473,2.839,1.699,21.183,11.54,19.338,8.755,13.301,13.806,21.386,5.824,0.599,7.872,2.084,22.971,-1.385,4.186,10.248,20.741,12.872,1.578,19.238,18.59,16.116,27.163,12.268,4.291,-0.92,4.898,22.61,19.169,11.44,16.35,13.483,12.046,5.698,17.719,6.704,16.626,21.653,14.907,12.862,6.909,16.315,4.369,-1.668,9.005,-0.046,23.969,14.335,2.964,26.11,17.621,0.807,23.266,20.987,7.642,10.378,8.934,10.47,6.755,13.096,7.141,21.154,3.421,12.481,7.107,20.294,-2.505,7.6,9.852,16.839,17.427,14.038,13.14,5.196,7.626,16.145,10.867,14.495,12.77,-2.273,12.981,15.718,1.906,15.831,17.631,3.881,11.882,16.535,21.336,-0.216,12.442,7.136,19.381,9.469,-0.001,10.683,4.491,2.436,20.022,1.011,12.403,13.009,14.962,7.252,10.259,21.895,15.05,19.504,3.905,24.489,6.906,-0.881,5.675,19.296,8.842,1.739,12.589,22.549,1.3,9.596,25.289,9.525,18.556,3.828,-1.141,-0.053,17.484,22.161,27.872,2.503,14.159,19.654,19.539,14.881,3.4,17.98,22.08,12.036,4.858,4.261,0.577,14.561,18.454,19.313,5.025,5.909,7.673,17.094,9.817,20.46,10.474,12.322,12.434,17.828,11.847,22.77,6.324,2.538,-0.429,5.439,16.541,17.505,20.568,20.46,16.363,14.67],[22.484,16.243,8.134,14.231,11.388,7.125,2.18,1.274,5.903,12.251,24.909,19.98,7.44,-2.536,8.73,16.637,15.081,16.396,11.027,13.234,7.723,-1.134,12.858,17.527,5.398,2.759,1.897,21.217,11.318,19.366,8.579,13.337,13.527,21.464,6.06,0.322,8.083,2.126,22.974,-1.597,4.218,10.254,20.686,12.979,1.442,18.99,18.316,16.178,27.152,12.209,4.394,-1.025,5.072,22.854,19.148,11.277,16.461,13.529,11.898,5.712,17.698,6.847,16.703,21.619,14.941,13.019,6.565,15.905,4.067,-2.075,9.095,-0.03,23.696,14.235,2.918,26.31,17.945,0.738,23.459,21.197,7.76,9.999,9.164,10.735,6.997,12.844,6.621,20.921,3.62,12.228,7.689,21.004,-2.112,7.88,9.666,16.986,17.413,13.67,12.989,5.54,7.674,15.529,10.819,13.929,12.564,-2.373,13.101,16.217,2.528,16.057,17.641,3.706,12.034,16.386,21.042,-0.701,13.118,7.287,19.479,9.453,0.438,11.478,4.539,2.578,20.093,1.12,11.961,12.953,14.812,7.034,10.138,21.773,15.056,19.561,3.947,24.713,7.688,-1.015,5.936,19.698,8.813,1.639,12.327,22.153,1.8,9.494,25.404,9.883,19.318,3.699,-1.011,-0.049,17.574,21.85,28.18,2.53,14.398,19.834,19.654,15.201,3.155,18.144,21.8,12.259,5.188,4.685,0.449,14.751,18.623,19.354,5.361,4.608,7.844,17.441,9.59,20.224,10.257,12.583,12.456,17.908,11.906,22.758,6.614,2.786,-0.232,5.714,16.316,17.56,20.646,21.084,15.51,14.234],[22.605,16.026,8.531,14.243,11.188,7.303,2.359,1.146,5.707,12.176,25.211,20.217,7.438,-2.534,8.633,16.644,14.863,16.212,11.085,13.155,7.884,-1.234,12.919,17.558,5.278,2.718,2.295,21.121,11.21,19.39,8.554,13.385,13.199,21.431,6.31,0.139,8.242,2.106,22.886,-1.752,4.074,10.386,20.816,12.978,1.41,18.815,18.14,16.297,27.053,12.363,4.593,-1.04,5.092,23.002,19.049,10.995,16.547,13.511,11.918,5.668,17.732,6.827,17.037,21.762,14.999,12.935,6.379,15.892,3.977,-1.744,9.014,-0.491,23.303,14.528,2.963,26.599,17.882,0.737,23.705,21.081,7.666,10.168,9.534,10.387,7.239,13.024,6.942,21.095,3.626,12.14,7.654,21.403,-1.601,7.713,9.765,17.033,17.548,13.488,12.675,5.701,7.542,15.287,10.966,14.092,12.689,-2.412,12.545,16.065,2.77,16.144,17.833,3.593,12.156,15.986,21.122,-0.524,13.41,6.997,19.668,9.577,0.893,12.041,4.508,1.611,20.644,0.683,11.737,13.044,14.66,7.718,9.984,21.206,15.267,19.732,3.667,24.72,7.773,-1.1,5.376,19.563,8.806,1.561,11.945,22.518,2.306,9.602,25.368,9.454,19.594,3.856,-1.342,-0.292,17.527,22.218,28.33,2.214,14.317,19.633,19.204,15.125,2.481,18.274,22.265,12.332,5.305,4.253,-0.199,14.683,17.892,19.651,5.457,4.314,8.061,17.501,9.265,20.266,10.497,12.254,12.16,17.389,11.933,22.831,6.475,2.997,-0.071,5.805,16.391,17.205,19.995,21.161,16.041,14.086],[22.718,15.828,8.74,14.32,11.117,7.389,2.648,0.83,5.62,12.209,25.422,20.516,7.233,-2.492,8.618,16.689,14.862,16.228,10.943,12.993,7.971,-1.234,12.999,17.527,5.189,2.636,2.421,21.088,11.299,19.487,8.504,13.414,12.926,21.299,6.455,-0.019,8.207,2.081,22.86,-1.925,3.868,10.456,20.928,12.839,1.511,18.745,18.14,16.42,26.869,12.624,4.79,-1.145,4.974,23.103,18.874,10.743,16.573,13.269,12.185,5.638,17.631,6.718,17.314,21.99,14.827,12.849,6.531,15.778,3.857,-1.405,9.105,-0.647,23.167,14.804,3.201,27.156,17.458,0.853,24.458,21.094,7.695,10.17,9.526,9.998,7.571,12.832,7.912,21.517,3.78,12.307,7.546,21.452,-1.897,7.562,9.698,17.061,17.652,13.62,13.062,5.634,7.422,15.479,10.866,14.359,12.613,-2.579,11.798,15.674,2.511,15.912,17.812,3.289,11.738,15.741,20.873,-0.526,13.12,6.693,19.462,9.816,1.648,12.832,4.394,2.628,20.524,1.068,11.917,13.085,14.575,8.204,9.812,21.253,15.17,19.497,3.523,24.667,7.311,-1.12,6.087,19.611,9.028,1.305,12.282,22.532,2.959,9.491,25.213,9.564,18.804,3.742,-1.622,-0.382,17.579,22.238,28.037,2.011,13.792,19.314,19.252,14.829,2.489,17.896,22.58,12.123,5.438,4.043,-0.426,14.666,18.311,19.563,5.467,4.701,7.677,17.737,8.956,20.717,10.832,12.482,11.536,18.145,11.929,22.711,6.565,3.079,-0.067,5.711,16.569,17.196,19.711,20.978,16.59,14.313],[22.894,15.651,8.749,14.44,11.211,7.44,2.932,0.616,5.538,12.24,25.6,20.777,7.086,-2.483,8.545,16.714,15.0,16.43,10.812,12.892,8.064,-1.114,13.121,17.451,5.047,2.574,2.732,21.145,11.554,19.499,8.254,13.455,12.853,21.11,6.595,0.086,8.072,2.192,22.787,-2.089,3.698,10.199,20.873,12.663,1.649,18.733,18.18,16.501,26.72,12.705,5.059,-1.365,4.936,23.12,18.627,10.515,16.665,13.002,12.547,5.7,17.626,6.615,17.473,22.067,14.318,12.294,6.646,15.932,3.798,-1.297,8.587,-0.745,23.231,14.567,3.932,27.355,17.329,0.684,25.138,21.111,7.804,9.842,9.757,10.188,7.464,12.566,7.575,21.79,3.978,12.329,7.449,21.491,-2.443,7.585,9.592,17.29,17.947,13.618,13.309,5.421,7.591,15.323,11.123,14.131,12.348,-2.514,11.313,15.852,2.483,15.874,17.811,3.429,11.669,16.294,20.782,-0.515,13.037,6.873,19.574,9.869,1.172,13.026,4.245,2.805,20.072,1.08,11.958,13.023,14.581,8.174,9.766,21.483,15.043,19.164,3.858,24.538,7.209,-1.452,6.597,19.722,8.895,1.096,12.06,22.215,2.932,9.59,24.922,9.816,18.242,3.542,-1.418,-0.523,17.534,22.117,27.666,2.271,13.81,19.3,19.723,14.726,2.385,17.824,22.515,12.489,5.271,4.071,-0.157,14.343,18.275,19.487,5.249,5.046,6.915,18.131,8.775,20.906,10.955,12.819,11.615,17.996,12.421,22.933,6.407,3.198,-0.325,5.077,16.197,17.615,19.909,21.311,16.098,14.151],[23.066,15.546,8.639,14.545,11.486,7.393,3.15,0.591,5.395,12.108,25.676,20.964,6.908,-2.574,8.37,16.677,14.937,16.588,10.736,12.913,8.148,-0.848,13.388,17.443,4.958,2.543,2.728,21.279,11.764,19.376,7.98,13.527,12.948,21.037,6.795,0.224,7.881,2.454,22.757,-2.165,3.585,9.852,20.884,12.494,1.688,18.656,18.175,16.553,26.715,12.784,5.281,-1.52,4.956,23.125,18.412,10.535,16.75,12.774,12.757,5.79,17.81,6.531,17.544,21.983,14.5,12.057,6.358,16.262,3.757,-1.346,8.342,-0.712,23.434,14.303,4.014,27.524,17.326,0.076,25.493,21.269,7.775,9.678,9.695,10.296,7.619,12.554,7.085,22.072,4.516,12.346,6.984,21.884,-2.459,7.487,9.922,17.039,18.058,13.716,13.039,5.016,7.892,15.569,11.268,14.173,12.469,-1.734,10.812,16.29,2.659,15.815,17.917,3.625,11.509,16.541,20.769,-0.81,12.974,6.505,19.676,10.033,1.172,13.496,4.145,2.889,19.85,1.08,11.539,13.318,14.52,8.119,9.609,21.219,15.171,19.294,4.161,24.081,7.676,-1.093,6.293,19.619,8.534,1.38,11.514,22.156,2.447,8.856,24.892,9.779,18.375,3.128,-1.502,-0.637,17.495,22.51,27.673,2.574,14.141,19.651,19.441,14.823,2.239,18.149,22.53,12.817,5.38,4.34,-0.087,14.048,17.745,19.223,4.847,4.718,6.199,18.015,8.61,20.49,11.201,13.019,11.669,17.748,12.855,23.04,6.686,3.552,-1.054,4.813,15.896,17.244,19.703,21.299,15.803,13.507],[23.161,15.63,8.618,14.562,11.739,7.261,3.409,0.538,5.277,11.765,25.719,21.046,6.736,-2.684,8.135,16.595,14.707,16.555,10.819,12.946,8.255,-0.473,13.588,17.401,4.925,2.509,2.456,21.426,11.825,19.282,7.634,13.695,12.978,21.29,6.926,0.368,7.825,2.606,22.634,-2.149,3.483,9.673,20.99,12.436,1.717,18.483,18.288,16.532,26.801,12.926,5.337,-1.663,5.126,23.149,18.318,10.618,16.711,12.6,12.807,5.736,17.937,6.305,17.504,21.712,15.001,12.174,5.94,15.959,3.468,-1.33,8.216,-0.821,23.922,13.974,3.582,27.464,17.461,0.329,25.705,21.325,7.171,9.534,9.308,10.536,7.656,12.896,7.498,22.071,4.412,12.1,7.424,22.351,-2.224,7.536,10.028,16.97,18.028,13.724,13.339,5.058,8.085,15.629,11.19,14.493,12.81,-1.452,10.855,16.528,2.747,15.923,17.68,3.518,11.363,16.327,20.976,-0.676,13.22,6.116,19.885,10.025,0.955,13.3,4.188,2.478,19.913,1.541,11.754,13.403,14.232,8.516,9.313,20.967,15.36,19.456,4.353,24.059,8.053,-0.638,6.621,19.591,8.273,1.502,11.626,22.559,2.729,8.53,25.031,9.09,18.866,2.863,-1.953,-0.403,17.84,22.264,27.835,3.041,14.17,19.447,19.359,14.867,2.44,18.291,22.74,13.108,5.618,4.282,-0.269,14.245,17.958,19.205,4.911,4.822,5.759,17.92,8.766,20.541,11.32,12.973,11.329,18.097,12.325,22.998,6.729,3.441,-1.832,4.859,16.246,16.877,19.53,21.11,16.307,12.999],[23.226,15.951,8.683,14.406,11.812,7.11,3.539,0.499,5.16,11.275,25.765,21.084,6.765,-2.719,7.913,16.559,14.605,16.539,11.081,13.091,8.411,-0.146,13.714,17.376,4.968,2.458,1.976,21.549,11.752,19.244,7.472,13.865,12.889,21.534,7.134,0.628,7.775,2.686,22.553,-2.086,3.267,9.657,21.068,12.503,1.764,18.38,18.352,16.453,26.798,13.009,5.222,-1.841,5.32,23.208,18.338,10.578,16.647,12.518,12.739,5.563,18.047,6.044,17.475,21.685,14.824,12.036,5.557,15.658,3.734,-1.635,8.288,-0.561,24.105,13.769,4.639,27.625,17.592,0.645,25.436,21.458,7.384,9.164,9.227,10.709,7.553,13.5,7.313,21.736,4.19,11.877,7.461,22.641,-2.119,7.377,9.814,16.727,18.085,13.133,13.378,5.385,7.579,15.458,11.045,14.163,12.225,-1.654,10.985,16.223,3.019,15.815,17.588,3.123,11.726,15.916,21.05,0.048,13.777,6.108,19.916,10.255,0.836,12.615,3.897,1.858,20.183,1.172,11.946,13.535,14.353,8.522,9.006,21.673,15.537,19.721,4.496,24.148,7.633,-0.678,6.638,19.853,8.289,1.834,12.14,22.424,3.175,8.74,24.972,9.365,18.869,3.058,-1.703,-0.463,18.028,22.261,27.675,3.205,14.101,19.525,19.32,14.961,2.202,18.169,22.73,13.166,5.665,4.081,-0.341,14.132,18.022,19.392,4.655,4.858,5.714,17.936,8.897,20.454,11.259,13.399,11.78,18.22,12.736,22.933,6.539,3.517,-2.201,4.997,16.536,17.244,19.461,20.698,16.314,13.0],[23.308,16.163,8.729,14.219,11.864,6.99,3.642,0.572,5.07,10.837,25.803,21.163,6.772,-2.629,7.775,16.636,14.605,16.709,11.185,13.131,8.473,0.074,13.708,17.261,4.975,2.45,1.543,21.549,11.607,19.252,7.505,14.198,12.801,21.674,7.118,0.722,7.739,2.799,22.569,-1.931,3.078,9.631,21.127,12.691,1.932,18.404,18.402,16.376,26.638,13.128,5.06,-2.073,5.511,23.282,18.426,10.622,16.621,12.455,12.687,5.409,18.034,5.836,17.489,21.812,15.044,11.585,6.101,15.719,3.826,-2.188,8.117,-0.293,24.125,13.931,4.613,27.475,17.967,0.463,25.119,21.562,7.625,8.874,9.482,10.963,7.218,13.464,7.288,21.647,4.297,11.502,7.276,22.806,-1.954,7.116,9.994,16.79,17.507,13.343,13.709,5.81,7.723,15.706,11.566,13.612,12.311,-1.54,10.853,15.931,2.779,15.692,17.628,3.206,11.843,15.912,21.284,0.771,14.181,5.84,19.812,10.278,0.185,12.12,3.842,1.668,20.107,1.531,11.775,13.408,14.452,8.886,8.94,21.922,15.353,19.801,4.609,23.91,7.348,-0.538,6.581,20.005,8.416,2.567,11.906,22.073,2.929,8.755,24.894,9.29,18.65,2.795,-1.07,-0.434,17.846,22.61,27.43,2.669,13.52,19.487,18.853,15.021,2.094,17.698,22.809,12.86,5.88,4.601,-0.492,14.057,18.406,19.22,4.312,4.145,5.86,17.721,8.957,20.822,11.002,13.078,12.082,17.591,12.869,22.912,6.924,3.314,-2.03,4.91,16.407,18.447,19.46,20.699,15.8,12.592],[23.391,16.221,8.678,14.318,11.95,6.968,3.656,0.763,5.088,10.606,25.8,21.286,6.654,-2.381,7.769,16.665,14.721,16.943,11.187,13.132,8.531,0.226,13.737,17.08,5.085,2.473,1.448,21.463,11.445,19.265,7.486,14.458,12.711,21.532,7.059,0.868,7.727,2.93,22.53,-1.696,2.907,9.511,21.136,12.69,2.152,18.448,18.457,16.295,26.518,13.164,4.924,-2.275,5.805,23.419,18.395,10.583,16.538,12.361,12.581,5.247,18.195,5.705,17.375,21.945,15.642,10.703,6.151,15.735,3.738,-1.999,7.693,-0.761,24.243,14.847,3.958,27.043,17.95,0.909,24.81,21.591,6.914,8.447,9.695,11.063,7.175,13.385,7.748,21.684,4.425,11.228,6.908,22.966,-1.849,6.443,9.801,16.817,16.997,13.708,13.337,5.935,8.106,16.277,11.397,13.899,12.769,-1.172,10.134,15.819,2.578,15.854,17.672,3.281,11.72,16.089,21.462,0.858,14.219,5.948,19.738,10.334,-0.415,12.004,4.02,1.444,19.738,1.431,11.644,13.557,14.226,8.804,9.046,21.444,15.885,19.77,4.601,23.674,7.184,-0.985,6.522,19.905,8.225,2.494,12.184,22.19,2.885,8.436,24.724,9.365,18.573,2.587,-1.115,-0.175,17.952,22.267,27.095,2.927,13.176,19.284,19.015,15.005,2.043,17.89,22.879,12.572,5.38,4.832,-0.856,14.112,18.31,19.153,4.209,4.543,5.634,17.689,9.029,21.094,11.028,12.756,11.629,17.217,12.865,23.283,7.501,3.382,-1.537,4.853,16.248,18.657,19.758,20.443,15.879,12.227],[23.478,16.228,8.667,14.596,11.963,6.982,3.447,0.858,5.04,10.414,25.797,21.438,6.367,-2.087,7.784,16.578,14.952,16.977,11.085,13.173,8.659,0.323,13.728,17.034,5.23,2.472,1.413,21.465,11.282,19.317,7.472,14.512,12.627,21.311,7.124,0.853,7.791,2.887,22.457,-1.494,2.938,9.241,21.046,12.457,2.354,18.507,18.579,16.297,26.422,13.024,4.731,-2.276,5.984,23.602,18.302,10.486,16.457,12.233,12.508,5.35,18.507,5.681,17.103,21.869,15.2,11.365,5.843,15.938,3.348,-1.117,7.858,-0.786,24.203,15.149,4.41,26.474,17.992,1.5,24.53,21.694,6.722,8.187,9.781,10.928,7.285,13.752,7.271,21.806,4.178,11.208,6.956,23.052,-1.842,6.345,9.868,16.229,17.226,13.294,13.275,5.908,7.95,16.107,11.056,14.428,12.323,-0.938,9.453,15.616,2.895,15.625,17.626,3.497,11.733,16.043,21.54,0.434,14.302,6.263,19.771,10.568,0.297,11.783,3.884,2.045,19.761,1.191,11.273,13.895,14.216,8.484,9.035,21.605,16.157,19.491,4.575,23.965,7.591,-0.799,6.504,19.771,7.975,2.324,12.859,22.232,3.534,8.25,24.745,9.52,18.725,2.821,-1.511,0.109,17.952,22.116,27.314,3.039,13.217,20.046,19.612,14.911,2.054,18.004,23.064,12.659,5.26,4.997,-0.881,14.131,18.358,19.303,4.23,4.184,5.157,17.569,8.752,21.03,11.03,13.307,11.476,17.665,13.08,23.239,7.596,3.196,-1.358,4.391,16.452,17.702,19.332,20.55,16.137,11.798],[23.569,16.252,8.755,14.826,11.946,6.88,3.187,0.911,4.889,10.391,25.818,21.582,6.157,-1.796,7.842,16.418,15.055,16.598,10.955,13.004,8.709,0.308,13.713,16.987,5.345,2.545,1.519,21.513,10.991,19.473,7.528,14.566,12.602,21.479,7.174,0.766,7.912,2.958,22.482,-1.424,3.08,9.021,20.904,12.199,2.429,18.651,18.729,16.321,26.377,12.812,4.574,-2.195,6.048,23.729,18.316,10.452,16.484,12.092,12.514,5.345,18.886,5.681,16.904,21.684,14.851,11.529,5.761,15.852,3.18,-0.605,7.547,-0.868,24.204,14.949,4.521,26.179,17.697,1.213,24.338,21.705,7.403,7.747,9.923,10.881,7.503,13.399,7.408,22.157,3.988,10.846,6.835,22.967,-1.726,7.376,9.515,16.45,17.997,13.477,13.757,5.86,7.974,15.676,11.145,14.416,12.17,-1.129,9.177,15.888,2.938,15.465,17.777,3.558,11.743,15.683,21.648,0.581,14.266,6.082,19.657,10.477,0.834,12.195,3.668,1.507,20.523,1.029,11.046,13.828,13.957,8.392,9.177,21.721,16.046,19.645,4.161,24.124,8.266,-0.886,6.253,19.722,8.077,2.666,13.172,22.088,3.862,8.061,24.859,9.552,18.871,3.114,-0.968,0.166,17.715,22.68,27.638,3.068,13.527,20.128,19.393,14.883,2.417,18.402,23.09,13.1,5.526,5.035,-0.824,13.915,18.297,19.401,4.428,4.744,5.119,16.875,8.755,20.611,11.117,13.172,11.266,17.429,12.496,23.038,7.348,2.938,-1.292,4.513,16.399,17.264,19.356,20.647,16.058,11.359],[23.6,16.253,8.885,15.047,11.943,6.924,2.915,0.833,4.862,10.338,25.72,21.7,6.032,-1.452,8.083,16.402,14.989,16.077,10.867,12.767,8.648,0.292,13.765,17.01,5.333,2.489,1.723,21.474,10.73,19.793,7.571,14.581,12.597,21.742,7.128,0.597,8.116,3.145,22.665,-1.364,3.264,8.946,20.758,12.107,2.444,18.676,18.772,16.336,26.411,12.622,4.561,-2.03,6.08,23.693,18.48,10.513,16.472,11.843,12.417,5.35,19.204,5.683,16.705,21.551,14.995,11.022,5.581,15.395,3.4,-0.553,7.268,-0.737,24.239,14.759,4.143,26.228,18.074,0.972,24.422,21.779,7.296,7.507,10.092,11.032,7.605,13.404,7.643,22.793,3.869,10.804,6.766,22.832,-2.006,7.005,9.452,16.809,18.209,13.682,13.052,5.778,8.032,15.45,11.131,14.662,12.081,-1.315,9.086,16.231,2.849,15.452,18.208,3.982,11.316,16.192,21.57,0.196,13.971,6.124,19.79,10.466,-0.043,11.788,3.916,1.549,20.793,1.269,11.038,13.657,13.726,8.53,9.203,21.583,15.911,19.922,4.679,23.879,7.906,-0.494,6.241,19.836,7.979,2.544,12.78,22.218,3.469,7.621,24.703,9.725,19.098,3.237,-0.546,-0.023,17.679,22.471,27.43,3.576,13.387,19.824,19.585,14.681,2.179,18.156,23.084,13.13,5.47,4.527,-0.715,13.693,18.641,19.599,4.532,5.236,5.42,15.995,8.681,20.481,11.145,12.936,11.267,17.752,11.977,23.412,7.384,3.07,-1.289,4.571,16.285,17.815,19.609,20.478,16.066,11.719],[23.534,16.381,8.941,15.091,12.074,7.081,2.696,0.697,4.961,10.161,25.548,21.824,6.13,-1.222,8.168,16.441,15.044,15.809,10.788,12.521,8.524,0.282,13.674,17.126,5.325,2.31,1.89,21.395,10.429,20.143,7.574,14.443,12.591,21.663,7.037,0.493,8.151,3.308,22.853,-1.303,3.42,8.869,20.651,11.957,2.48,18.671,18.562,16.352,26.315,12.542,4.614,-1.741,6.001,23.671,18.713,10.628,16.399,11.7,12.274,5.496,19.491,5.682,16.603,21.615,15.51,10.349,6.067,15.867,3.372,-0.376,7.093,-0.702,24.238,15.251,3.951,26.359,18.136,0.831,24.568,21.813,7.265,7.908,10.273,10.919,7.908,13.902,7.236,22.748,3.547,10.859,6.316,23.114,-1.724,6.73,9.671,16.609,18.252,13.377,13.163,5.424,8.031,14.635,10.915,14.641,11.926,-1.265,9.276,16.224,2.611,15.547,18.36,3.986,11.143,16.018,21.566,0.017,13.846,6.342,19.773,10.473,0.347,11.748,3.788,1.977,20.521,1.305,11.227,13.658,13.713,8.649,9.111,22.118,16.072,19.777,4.887,23.743,7.811,-0.132,6.727,19.58,7.593,2.289,12.551,22.522,3.239,7.924,24.599,9.877,19.05,3.125,-1.157,0.391,17.664,22.354,27.008,4.027,13.56,20.284,19.631,14.702,2.301,18.073,23.105,12.229,5.528,4.481,-0.367,13.478,18.812,19.82,4.076,4.861,5.667,16.598,8.928,20.822,10.752,12.789,11.866,17.216,12.275,23.24,7.249,3.556,-1.226,4.022,16.517,18.573,19.134,20.06,15.928,11.699],[23.439,16.652,8.95,15.114,12.259,7.116,2.658,0.614,5.079,9.912,25.398,21.854,6.163,-1.108,8.004,16.488,15.091,15.635,10.783,12.351,8.317,0.269,13.588,17.18,5.297,2.14,2.072,21.355,10.217,20.286,7.6,14.299,12.62,21.422,7.063,0.466,8.108,3.278,22.86,-1.263,3.54,8.83,20.769,11.866,2.468,18.661,18.324,16.359,26.03,12.532,4.848,-1.358,5.778,23.674,18.808,10.897,16.446,11.61,12.21,5.453,19.784,5.704,16.584,21.686,15.306,10.931,6.324,16.188,3.833,-1.007,7.149,-0.673,24.442,14.495,3.934,26.445,18.352,0.619,24.856,21.952,7.673,8.747,10.217,11.048,8.218,13.744,7.296,22.319,3.405,10.614,6.673,23.375,-0.881,6.951,9.376,16.561,18.232,13.639,13.084,5.816,7.938,14.604,10.455,14.326,11.485,-0.469,9.176,16.101,2.168,15.775,18.462,4.197,10.848,15.376,21.562,-0.007,13.821,6.155,19.537,10.003,0.498,11.739,3.402,2.045,20.726,1.584,11.228,13.536,14.001,8.732,9.234,22.05,15.898,19.578,4.971,24.519,7.949,-0.344,6.538,19.237,7.504,2.781,12.174,22.171,3.41,8.112,24.395,9.751,19.191,2.969,-1.211,0.54,17.681,21.908,26.906,3.903,13.553,19.899,19.026,14.853,2.555,18.112,22.956,11.417,5.611,5.0,-0.664,13.38,19.57,19.863,4.14,4.901,5.503,16.959,9.215,21.18,11.007,12.672,12.373,17.489,12.681,23.349,7.14,3.362,-1.174,4.218,16.487,18.835,19.81,20.226,15.909,11.591],[23.37,16.832,9.109,15.011,12.467,7.089,2.788,0.585,5.261,9.778,25.352,21.568,6.13,-1.108,7.948,16.528,15.087,15.494,10.785,12.127,8.089,0.371,13.602,17.124,5.355,1.933,2.09,21.305,10.056,20.303,7.591,13.975,12.69,21.198,7.194,0.613,8.088,3.273,22.707,-1.238,3.651,8.718,20.863,11.842,2.403,18.651,18.119,16.336,25.893,12.405,5.063,-1.046,5.489,23.693,18.96,11.172,16.527,11.628,12.332,5.396,20.115,5.746,16.733,21.677,15.577,11.03,6.0,16.355,4.298,-1.066,7.094,-0.44,24.441,14.64,4.087,26.824,18.516,0.491,25.104,21.912,7.249,8.902,9.687,10.909,8.067,13.58,7.256,22.236,3.782,10.18,7.019,23.088,-0.542,6.904,9.567,16.928,18.172,13.882,12.951,5.652,7.54,14.776,10.642,14.456,11.294,-0.828,9.173,15.965,2.22,15.495,18.678,4.101,11.061,15.367,21.331,0.483,13.692,6.106,19.472,9.984,0.513,11.546,3.657,1.931,20.905,1.045,11.126,13.343,13.972,8.508,9.242,21.274,15.42,19.447,4.726,24.09,7.727,-0.923,6.392,19.561,7.895,3.164,11.532,22.073,3.934,7.482,24.138,9.684,19.41,3.103,-0.681,0.306,17.906,22.346,26.725,3.627,13.265,19.664,19.344,14.908,2.319,18.095,23.301,12.483,5.849,4.483,0.185,13.378,19.849,19.476,4.903,4.594,5.557,16.58,9.632,20.959,11.236,13.04,12.611,17.497,12.891,23.08,7.302,3.39,-0.918,4.569,16.812,18.53,20.318,20.468,16.075,11.776],[23.288,16.899,9.228,15.169,12.508,6.947,2.871,0.701,5.388,9.725,25.515,21.121,6.022,-1.152,8.113,16.463,15.167,15.411,10.821,12.027,8.08,0.429,13.522,17.04,5.358,1.868,2.004,21.244,10.143,20.296,7.418,13.659,12.661,20.957,7.243,0.645,7.933,3.379,22.41,-1.206,3.713,8.585,21.072,11.754,2.328,18.738,17.999,16.321,25.944,12.413,5.27,-0.814,5.302,23.81,19.099,11.267,16.585,11.756,12.548,5.368,20.262,5.9,16.872,21.547,16.298,10.476,6.582,16.477,4.012,-0.586,7.298,-0.438,24.165,15.473,3.896,27.075,18.745,0.522,25.026,21.937,6.748,8.546,10.228,11.138,8.102,14.017,7.178,22.274,4.114,10.229,6.787,22.142,-0.758,7.212,9.827,16.826,18.329,13.671,12.935,5.207,7.444,14.644,11.136,14.799,11.281,-1.053,8.559,16.041,2.255,15.343,18.503,3.684,10.667,16.113,20.918,0.924,13.69,6.205,19.6,9.719,0.497,11.281,3.401,1.658,20.657,1.217,11.186,12.886,14.045,8.346,9.021,20.907,15.033,19.225,4.473,23.486,8.277,-0.716,7.226,19.909,7.427,2.424,11.596,22.581,4.106,7.845,24.307,9.581,19.126,3.161,-0.738,0.273,18.054,22.663,26.977,3.63,12.809,19.526,19.782,15.17,2.442,17.653,23.179,12.868,5.477,3.822,0.766,13.407,20.006,19.382,4.474,4.652,5.424,16.198,9.674,20.532,11.519,12.98,12.65,17.318,12.631,23.438,6.787,3.628,-0.387,4.642,16.912,18.863,20.563,20.291,16.105,12.093],[23.293,17.087,9.314,15.649,12.46,6.708,2.916,0.969,5.446,9.746,25.761,20.844,5.919,-1.168,8.374,16.278,15.236,15.473,10.948,12.011,8.093,0.45,13.382,16.964,5.235,1.781,1.809,21.269,10.297,20.107,7.338,13.491,12.591,20.737,7.394,0.694,7.855,3.317,22.235,-1.262,3.721,8.528,21.271,11.703,2.217,18.875,17.831,16.359,25.938,12.557,5.481,-0.658,5.122,23.937,19.153,11.149,16.644,11.966,12.726,5.389,20.363,5.81,16.886,21.355,16.559,10.615,6.193,16.906,3.918,-0.971,7.128,-0.751,24.374,15.421,3.995,27.327,19.007,1.026,24.686,21.922,6.886,7.808,10.698,11.61,8.507,14.171,7.047,22.221,3.805,10.879,6.517,21.572,-1.904,7.148,9.336,16.346,18.031,13.738,12.815,5.444,7.917,14.239,10.802,14.651,11.418,-0.641,8.57,16.154,2.447,15.628,18.343,3.452,10.517,15.857,20.886,0.766,13.633,5.812,19.727,9.99,0.7,11.663,3.04,1.686,20.842,1.468,10.89,12.778,14.125,8.851,8.812,21.543,14.958,18.898,4.954,23.547,8.05,0.0,7.207,20.066,7.144,2.223,11.553,21.79,3.966,7.682,24.457,9.682,18.661,3.306,-0.666,0.339,18.124,22.881,27.432,3.741,12.16,19.093,19.699,15.679,2.596,17.308,22.914,12.504,5.408,3.923,0.445,13.53,19.472,19.503,4.541,4.958,5.175,16.273,9.33,21.004,11.632,12.388,12.326,17.456,12.334,23.365,6.602,3.769,0.418,4.306,16.435,18.978,20.809,19.91,16.094,12.308],[23.322,17.228,9.443,16.092,12.558,6.55,2.995,1.266,5.359,9.982,26.006,20.736,5.912,-1.311,8.34,16.0,15.204,15.565,10.93,11.987,8.166,0.496,13.239,16.883,5.031,1.617,1.638,21.347,10.47,19.893,7.386,13.401,12.462,20.621,7.618,0.856,7.807,3.273,22.001,-1.206,3.639,8.494,21.3,11.584,2.204,18.901,17.521,16.449,25.923,12.71,5.666,-0.527,5.062,23.883,19.265,10.913,16.628,12.256,12.786,5.419,20.299,5.63,16.943,21.339,16.367,11.076,6.295,17.287,3.798,-1.186,6.719,-0.34,24.516,15.181,3.957,27.315,19.125,1.574,24.627,21.971,7.528,7.724,10.463,11.156,8.912,14.139,6.8,21.547,4.541,10.868,6.612,22.037,-2.123,7.54,9.547,16.158,17.458,14.326,12.809,5.34,7.778,14.449,10.923,14.235,11.224,-0.79,8.935,15.861,2.323,15.709,18.344,3.653,10.685,15.394,21.245,-0.071,13.37,5.789,19.617,9.79,0.374,11.777,2.901,2.105,20.702,1.447,10.979,13.096,13.869,9.356,8.947,21.071,14.85,18.717,5.039,23.323,7.338,-0.34,7.068,20.164,7.38,2.372,11.642,21.821,3.135,7.519,24.318,9.642,19.05,3.148,-0.891,0.431,18.307,22.963,26.875,3.758,12.274,19.065,19.687,15.845,2.152,17.069,23.335,12.533,5.827,4.044,-0.14,13.77,19.591,19.444,4.851,5.104,4.908,16.949,9.364,20.801,11.612,12.605,11.933,17.302,12.385,23.245,6.791,4.145,0.968,3.966,16.904,18.754,20.67,19.921,16.016,12.456],[23.328,17.197,9.6,16.399,12.583,6.675,3.279,1.635,5.309,10.25,26.128,20.703,6.105,-1.548,8.188,15.879,15.116,15.592,10.942,11.95,8.016,0.306,13.197,16.786,4.795,1.495,1.558,21.399,10.519,19.805,7.424,13.523,12.594,20.489,7.786,0.811,7.66,3.243,21.864,-1.165,3.525,8.434,21.238,11.545,2.259,18.859,17.215,16.497,25.773,12.803,5.772,-0.464,5.159,23.796,19.421,10.705,16.59,12.495,12.74,5.426,20.127,5.593,17.047,21.478,16.286,11.203,6.593,17.255,3.93,-0.834,7.318,0.056,24.398,15.507,3.6,27.072,18.991,1.186,24.994,21.946,7.281,8.296,10.78,11.258,8.858,13.883,6.597,20.953,4.738,10.794,6.47,22.209,-1.319,6.984,9.842,16.665,17.143,14.536,12.744,4.76,7.662,14.913,11.071,14.203,11.042,-0.755,8.936,15.517,1.686,15.537,18.103,3.825,10.712,15.973,21.123,-0.143,12.879,6.077,19.595,9.904,0.345,11.689,2.825,1.503,20.407,1.483,10.919,12.605,13.678,8.99,8.827,20.822,14.63,18.862,4.723,22.498,7.709,-0.746,7.557,20.316,7.13,2.641,11.178,21.667,2.641,7.792,24.153,9.449,19.487,2.909,-0.806,0.502,18.305,22.62,26.652,3.682,12.717,18.578,19.702,16.078,2.632,17.025,23.608,12.843,6.408,4.168,-0.207,13.864,20.25,19.836,4.258,5.089,5.219,17.055,8.889,20.622,11.754,13.14,11.855,17.557,12.948,23.091,6.946,4.034,1.329,3.904,17.056,18.563,20.705,19.932,16.117,12.499],[23.31,17.023,9.808,16.632,12.523,6.824,3.368,1.73,5.569,10.25,26.101,20.475,6.315,-1.714,8.106,16.04,15.005,15.727,10.986,11.935,7.864,0.098,13.154,16.796,4.516,1.421,1.548,21.274,10.387,19.799,7.459,13.664,12.782,20.503,7.806,0.718,7.602,3.077,21.584,-1.172,3.383,8.264,21.223,11.541,2.339,18.871,16.958,16.591,25.599,12.926,5.806,-0.391,5.331,23.853,19.647,10.49,16.541,12.608,12.8,5.375,20.039,5.574,17.137,21.542,16.634,11.436,6.301,17.354,4.168,-1.153,7.922,0.206,24.774,15.667,3.907,27.308,18.878,1.087,25.841,22.201,6.78,8.064,10.731,11.23,8.809,13.946,6.79,21.126,5.029,11.161,6.707,22.088,-0.917,6.595,10.026,16.989,17.283,14.272,12.716,5.096,7.431,14.975,10.921,14.122,11.132,-1.084,8.809,15.437,1.871,15.337,17.943,4.105,10.71,16.146,20.841,0.053,12.732,6.261,19.637,9.56,-0.197,11.644,3.14,1.285,20.524,1.208,11.081,12.842,14.074,9.016,9.082,20.859,14.555,18.653,4.734,22.114,8.084,-0.222,7.508,19.988,6.985,2.976,10.787,21.613,3.272,7.505,24.121,8.866,19.236,3.152,-0.544,0.284,18.425,22.536,26.898,3.708,13.259,18.073,19.326,15.864,2.802,16.669,23.179,13.212,6.722,4.32,0.105,13.984,20.208,20.36,4.137,5.0,5.113,17.05,8.662,20.983,11.688,13.208,11.539,17.757,12.77,22.973,6.769,4.088,1.133,4.707,16.538,18.561,21.043,20.205,16.115,12.653],[23.338,16.881,9.907,16.916,12.393,6.885,3.419,1.785,5.818,10.311,26.144,20.295,6.422,-1.972,8.008,16.294,14.848,15.875,11.091,11.949,7.68,-0.09,12.979,16.87,4.326,1.554,1.389,21.161,10.151,19.804,7.558,13.71,12.949,20.559,7.666,0.749,7.483,3.035,21.221,-1.259,3.299,8.123,21.123,11.64,2.567,18.846,16.752,16.77,25.602,13.032,5.903,-0.363,5.537,23.903,19.98,10.265,16.342,12.795,12.939,5.428,20.097,5.538,17.163,21.583,16.976,11.366,6.584,17.794,4.371,-1.167,7.4,0.19,24.635,15.806,4.479,27.311,18.69,1.673,25.701,22.193,7.528,8.075,10.716,11.032,9.648,13.956,6.931,21.402,4.559,10.978,7.059,21.663,-1.034,7.518,9.829,16.661,17.771,13.67,12.881,5.453,7.521,14.669,10.809,14.014,11.271,-1.501,8.463,15.605,2.165,15.47,18.258,3.547,10.472,15.654,20.884,-0.017,13.123,6.228,19.533,9.53,-0.219,11.524,3.185,1.276,20.521,1.311,11.391,13.521,14.163,9.358,9.299,21.428,14.736,18.759,4.434,21.932,7.843,-0.419,7.025,20.035,7.077,2.52,11.014,21.157,3.565,7.265,24.077,8.937,19.035,2.803,-0.695,0.288,18.427,22.616,26.827,3.906,13.45,18.081,19.517,15.637,2.351,16.162,23.185,13.267,6.465,4.046,0.645,14.213,19.49,19.916,4.462,4.672,4.75,17.343,8.519,20.743,11.928,13.038,11.075,17.718,12.57,23.108,7.026,4.018,0.815,4.713,16.33,18.607,21.219,20.611,15.874,12.873],[23.405,16.798,9.989,17.237,12.196,7.055,3.455,2.013,6.005,10.463,26.194,20.37,6.351,-2.258,8.244,16.521,14.662,15.847,11.147,12.02,7.706,-0.333,12.816,16.897,4.215,1.714,1.26,21.003,9.914,19.861,7.653,13.759,13.125,20.795,7.469,0.809,7.376,3.047,20.88,-1.333,3.118,8.087,21.037,11.881,2.727,18.795,16.685,16.858,25.634,13.079,5.855,-0.323,5.714,23.923,20.033,10.15,16.041,12.959,13.032,5.412,20.004,5.488,17.089,21.688,16.534,11.232,6.973,18.031,4.927,-1.401,7.337,0.283,23.906,16.166,4.535,27.363,18.668,1.609,25.11,22.057,7.477,8.102,10.913,11.089,10.254,13.684,6.718,21.361,4.416,11.27,6.858,21.032,-1.028,7.251,9.514,16.724,17.797,13.218,12.661,4.766,7.122,14.627,11.075,14.159,11.412,-1.345,8.071,15.843,2.21,15.643,18.132,3.087,10.525,15.745,20.644,-0.084,13.224,6.085,19.526,9.491,-0.189,10.672,3.033,1.168,20.323,1.894,11.486,13.063,14.135,8.945,9.029,21.398,15.013,19.017,4.747,21.71,7.202,-0.514,7.393,20.02,6.82,2.308,11.378,20.829,3.458,7.673,24.143,9.121,18.913,3.145,-0.971,0.241,18.653,22.72,26.921,4.447,13.101,18.172,19.863,15.875,2.182,16.565,23.5,12.934,5.883,4.46,1.018,14.32,19.743,20.31,4.172,4.958,4.842,17.229,8.313,20.931,12.177,12.93,10.846,17.947,12.865,23.018,7.291,4.154,0.477,3.935,16.329,18.729,21.444,20.28,15.542,13.335],[23.448,16.696,10.188,17.5,12.074,7.16,3.606,2.233,6.073,10.586,26.235,20.461,6.243,-2.569,8.588,16.691,14.619,15.821,11.028,12.204,7.738,-0.543,12.714,16.92,4.098,1.708,1.254,20.823,9.707,19.826,7.68,13.868,13.168,21.022,7.291,0.956,7.346,3.148,20.633,-1.375,2.971,8.13,21.071,12.184,2.899,18.756,16.933,16.943,25.636,13.089,5.677,-0.321,5.888,23.901,19.986,10.17,15.729,13.139,13.115,5.209,19.935,5.269,16.991,21.74,15.932,11.397,7.174,17.993,5.097,-1.748,7.46,0.761,23.842,16.438,4.285,27.442,18.527,1.933,24.97,21.916,7.739,8.025,10.866,10.737,9.719,13.36,7.018,21.624,4.306,11.905,6.478,20.896,-1.181,7.009,10.016,16.646,17.756,13.324,12.466,4.244,7.193,14.487,10.979,13.722,11.421,-1.52,8.183,15.8,2.342,15.606,17.956,3.045,10.879,16.112,20.631,-0.476,12.7,6.14,19.113,9.648,-0.139,10.204,3.247,1.232,20.504,1.415,11.663,12.792,14.518,8.756,9.037,21.155,14.72,19.287,4.571,21.081,7.075,-0.494,7.268,19.853,6.993,2.76,11.036,20.661,2.602,7.649,24.359,9.137,19.07,2.906,-0.809,0.171,18.767,22.782,27.271,4.701,12.864,18.13,19.543,16.291,2.174,16.664,23.686,13.132,5.766,4.51,0.885,14.23,20.155,20.845,3.789,5.06,4.833,17.189,8.203,21.051,11.87,13.416,10.559,17.298,12.888,22.833,7.387,3.726,0.677,4.088,16.209,18.254,21.343,20.215,15.24,13.748],[23.419,16.465,10.353,17.703,12.007,7.297,3.714,2.513,6.032,10.614,26.308,20.496,6.2,-2.809,8.7,16.706,14.663,15.901,10.963,12.387,7.754,-0.712,12.624,16.906,3.909,1.713,1.264,20.71,9.555,19.722,7.645,14.017,13.052,21.087,7.151,0.862,7.489,3.077,20.467,-1.311,3.028,8.293,21.163,12.312,3.119,18.713,17.216,17.004,25.752,13.06,5.384,-0.298,5.961,23.816,20.081,10.142,15.394,13.321,13.326,5.105,19.922,5.004,16.747,21.76,15.751,11.702,6.541,18.045,4.474,-1.765,7.271,1.067,23.738,16.412,4.584,27.229,18.315,2.185,25.254,21.731,7.745,8.833,10.734,10.505,8.994,13.253,7.057,21.727,4.511,11.747,7.015,21.371,-1.507,7.332,9.69,16.571,17.99,13.753,12.551,4.839,7.461,14.556,11.047,13.377,11.518,-2.074,7.993,15.846,2.132,15.476,18.043,3.263,11.231,16.042,20.88,-0.168,12.255,6.184,18.892,9.552,-0.164,10.175,3.385,1.302,20.432,0.843,11.987,13.352,14.719,8.706,9.073,21.677,14.823,19.325,4.691,20.448,7.074,-0.869,6.784,20.02,7.007,3.381,11.423,20.391,2.724,7.762,24.129,9.348,19.182,2.501,-0.831,0.363,18.783,22.446,26.918,4.22,13.243,18.253,19.25,16.423,2.681,16.749,23.487,13.625,6.074,4.767,0.402,14.466,19.828,20.129,3.712,4.267,4.337,17.244,8.315,21.279,12.292,13.573,10.596,17.158,12.737,22.667,7.679,3.646,0.736,4.082,15.583,18.189,21.3,20.361,15.318,13.908],[23.325,16.265,10.345,17.808,11.994,7.355,3.767,2.669,5.671,10.667,26.377,20.537,6.191,-2.94,8.729,16.659,14.743,15.993,10.991,12.529,7.8,-0.794,12.573,16.882,3.767,1.829,1.165,20.574,9.399,19.62,7.635,14.175,12.806,21.081,7.045,0.611,7.623,2.959,20.346,-1.12,3.088,8.514,21.253,12.333,3.165,18.693,17.422,17.006,25.832,13.018,5.281,-0.324,6.096,23.623,20.041,10.087,15.153,13.466,13.505,5.102,19.915,4.941,16.546,21.843,15.852,11.806,6.687,18.382,4.959,-1.745,7.216,1.045,23.706,16.273,4.829,27.498,18.096,2.314,25.549,21.935,7.304,9.675,10.79,10.747,9.222,13.345,6.683,21.359,4.537,11.306,7.167,21.735,-1.88,7.073,9.71,16.866,17.838,13.658,12.637,5.498,7.211,15.123,11.002,13.85,11.893,-1.875,7.575,15.694,2.161,15.428,17.978,3.292,10.901,15.627,20.575,0.297,12.449,6.139,19.024,9.631,-0.422,10.376,3.293,1.357,20.338,1.288,12.165,13.685,14.368,8.551,9.161,21.879,15.446,19.243,4.357,20.053,7.478,-0.656,6.596,19.9,7.134,3.817,11.826,20.613,2.958,8.123,24.166,9.353,18.731,3.316,-1.014,0.432,18.706,22.37,26.969,4.507,13.8,18.469,19.421,16.428,1.976,16.884,23.29,13.37,5.99,4.694,0.088,14.787,19.606,20.039,3.662,4.352,4.133,17.066,8.651,20.982,12.394,13.544,10.794,17.454,12.708,22.704,7.607,3.403,1.167,4.114,15.196,18.392,21.57,20.385,14.945,13.948],[23.251,16.131,10.258,17.803,12.032,7.312,3.819,2.729,5.456,10.818,26.404,20.627,6.256,-3.007,8.782,16.57,14.803,16.104,11.127,12.637,7.817,-0.749,12.65,16.997,3.67,1.992,1.138,20.446,9.226,19.505,7.777,14.459,12.518,20.967,6.9,0.481,7.749,2.805,20.304,-1.049,3.084,8.769,21.318,12.319,3.35,18.696,17.672,17.062,25.885,12.867,5.296,-0.321,6.207,23.376,19.92,10.155,15.027,13.547,13.424,5.208,19.844,5.005,16.552,21.867,16.095,11.754,6.703,18.51,4.707,-2.066,7.264,1.11,23.864,16.462,4.781,27.776,17.881,2.153,25.887,21.979,7.612,9.882,10.775,10.524,9.931,13.344,6.299,21.231,4.799,11.588,6.834,22.029,-2.401,7.287,10.162,16.727,17.666,13.555,12.954,5.493,6.846,15.124,10.471,14.172,12.279,-1.621,7.787,15.206,2.546,15.469,17.808,2.89,10.961,15.849,19.936,-0.754,12.708,6.052,18.951,9.722,-0.38,10.358,3.09,1.085,20.457,1.321,11.656,13.663,13.426,8.647,9.065,21.485,15.538,19.155,4.394,19.872,7.816,-0.915,6.841,19.837,7.38,3.209,11.895,20.604,2.41,8.0,24.492,9.491,18.722,2.947,-0.51,0.418,18.815,22.586,27.273,4.816,14.012,18.499,19.667,16.157,2.05,16.799,22.708,12.644,5.47,4.692,0.05,14.757,19.783,20.213,3.371,4.488,4.494,16.899,8.346,20.927,12.381,13.607,10.893,17.469,12.649,22.574,7.636,3.368,1.172,4.693,15.283,18.306,21.523,20.343,14.546,14.011],[23.261,16.09,10.145,17.833,11.929,7.386,3.922,2.705,5.543,11.092,26.385,20.833,6.306,-3.014,8.88,16.379,14.816,16.141,11.147,12.938,7.798,-0.818,12.872,17.156,3.555,2.038,1.167,20.229,9.105,19.476,7.9,14.664,12.22,20.808,6.762,0.302,7.811,2.615,20.313,-1.086,3.0,8.833,21.358,12.222,3.472,18.756,17.758,17.103,26.028,12.599,5.25,-0.345,6.221,23.158,19.827,10.32,14.99,13.453,13.253,5.449,19.754,5.171,16.616,21.822,15.716,11.894,6.486,18.21,4.019,-2.398,7.754,1.333,23.656,16.603,5.074,27.268,17.991,2.36,25.924,22.02,8.183,10.489,10.992,10.446,10.102,13.075,6.394,21.805,4.484,11.96,6.788,22.294,-2.615,7.307,9.614,16.843,17.752,13.885,12.968,4.968,6.981,14.74,10.898,14.108,12.225,-1.935,7.781,15.294,2.597,15.569,17.865,2.81,11.23,15.779,19.914,-0.663,12.614,6.194,18.56,9.506,-0.278,10.089,3.27,1.467,20.297,0.921,10.925,13.745,12.934,8.566,9.087,21.321,15.398,18.913,4.284,20.201,7.596,-0.991,6.55,19.885,7.373,2.852,11.61,19.941,2.375,8.23,24.337,9.656,19.184,2.966,-0.745,0.468,18.933,22.837,26.909,5.292,13.82,18.829,19.817,16.339,2.1,17.725,22.439,12.723,5.665,4.732,0.337,14.852,19.82,20.214,3.815,4.432,4.546,17.17,8.515,21.705,12.136,13.603,10.703,17.613,12.423,22.47,7.576,3.455,1.057,4.524,15.221,17.911,21.139,20.289,14.836,14.073],[23.21,15.996,10.102,17.922,11.67,7.501,4.012,2.644,5.56,11.411,26.373,21.138,6.301,-2.902,9.095,16.35,14.832,15.957,11.05,13.215,7.839,-0.913,13.021,17.283,3.447,1.976,1.253,19.888,9.096,19.576,7.939,14.637,11.974,20.716,6.569,0.115,7.707,2.475,20.349,-1.13,3.033,8.821,21.476,12.073,3.546,18.841,17.891,17.156,26.18,12.523,5.198,-0.323,6.178,23.041,19.768,10.568,15.044,13.247,13.065,5.487,19.684,5.35,16.607,21.832,15.345,12.328,6.488,17.938,4.754,-2.736,7.876,1.017,24.091,16.819,4.931,27.049,17.884,2.34,25.151,22.084,8.363,10.706,10.585,10.207,9.732,12.901,6.876,21.93,4.696,11.993,6.504,22.295,-2.659,7.747,9.671,16.924,18.029,13.541,13.407,4.291,7.368,15.006,11.367,13.982,12.715,-2.094,7.425,15.644,2.733,15.646,17.774,3.232,11.674,15.796,20.168,-0.332,12.988,6.315,18.293,9.748,-0.276,9.685,3.472,1.409,19.746,0.357,10.391,13.242,12.664,8.396,9.388,21.495,15.403,18.843,3.996,20.581,6.775,-1.43,6.119,19.95,7.567,3.244,11.409,19.929,2.111,8.212,24.567,9.561,19.07,3.29,-0.913,0.126,18.958,22.96,27.265,5.249,13.741,18.837,20.249,16.475,2.019,17.602,22.995,12.713,5.981,4.959,0.871,14.705,19.448,20.095,4.001,5.164,4.691,17.234,8.78,21.371,11.549,13.657,10.656,17.687,12.596,22.595,7.76,3.329,0.773,4.432,15.284,18.036,21.138,20.131,15.071,13.821],[23.071,15.803,9.974,17.933,11.35,7.628,3.969,2.528,5.599,11.694,26.338,21.255,6.293,-2.84,9.275,16.53,14.742,15.855,11.003,13.374,7.94,-0.968,13.189,17.275,3.357,2.046,1.267,19.611,9.089,19.577,7.922,14.434,11.75,20.697,6.254,-0.175,7.424,2.341,20.516,-1.197,3.363,8.981,21.653,11.981,3.611,18.942,17.881,17.239,26.424,12.705,5.074,-0.252,6.244,23.204,19.788,10.71,15.16,13.176,12.801,5.583,19.685,5.45,16.392,21.959,15.496,12.206,6.775,17.905,5.152,-2.22,8.068,0.826,24.596,16.524,4.881,26.993,17.732,2.348,24.785,22.012,8.117,10.751,10.269,10.026,9.145,12.854,7.291,21.721,5.128,12.074,6.586,22.9,-2.441,7.978,9.648,16.946,18.249,13.378,13.133,4.969,7.849,15.14,11.109,13.849,12.888,-1.543,7.669,15.552,2.54,15.828,17.83,3.338,11.841,15.495,19.935,-0.537,13.644,6.165,17.944,9.757,-0.144,9.176,3.581,0.904,19.887,0.823,10.115,13.347,12.94,8.085,9.15,21.224,15.54,18.877,3.882,21.208,6.715,-1.75,6.173,20.241,7.537,3.591,11.718,20.136,1.566,7.946,24.698,9.291,18.919,2.997,-0.54,0.05,18.991,23.359,27.085,5.137,13.724,18.726,20.251,16.209,1.974,17.29,22.634,12.24,5.823,4.912,0.928,14.644,19.563,20.193,3.58,5.182,5.511,17.155,8.864,20.943,12.131,13.476,10.98,17.445,12.198,22.19,7.801,3.28,1.012,4.526,15.12,18.003,21.124,20.367,15.048,13.711],[22.93,15.672,9.808,17.745,11.051,7.694,4.002,2.388,5.678,11.82,26.303,21.29,6.455,-2.883,9.193,16.629,14.609,15.881,10.834,13.374,7.991,-0.903,13.358,17.268,3.38,2.17,1.211,19.385,8.993,19.538,7.858,14.254,11.582,20.634,6.001,-0.299,7.254,2.133,20.831,-1.2,3.603,9.149,21.863,11.922,3.552,19.037,17.793,17.221,26.569,12.786,4.962,-0.138,6.353,23.39,19.891,10.843,15.218,13.389,12.662,5.733,19.787,5.607,16.075,21.941,15.724,12.27,6.619,18.019,4.63,-1.702,7.698,0.836,24.674,16.5,5.39,27.151,17.494,2.209,24.945,22.407,8.646,11.008,10.118,10.125,8.986,12.697,7.338,21.6,4.554,12.263,6.945,23.031,-1.915,8.086,9.932,17.01,18.193,13.623,13.4,5.181,8.043,14.776,10.94,13.629,12.805,-1.453,7.862,15.523,2.631,15.774,17.929,3.14,11.66,15.507,19.382,-1.131,14.164,6.083,17.741,9.826,-0.596,8.979,3.723,1.477,20.282,0.872,10.54,13.405,12.823,7.724,9.099,21.318,15.566,18.761,3.564,21.706,6.864,-1.823,5.896,20.777,7.612,3.554,11.648,20.064,1.696,8.716,24.654,9.011,19.082,3.637,-0.97,0.205,18.947,23.312,26.826,5.259,13.483,18.772,19.664,16.294,1.922,17.735,22.608,12.52,5.391,4.938,0.467,14.96,19.99,20.141,3.88,5.01,5.398,16.689,9.0,21.447,11.978,12.804,11.004,17.268,12.025,22.649,7.863,3.048,1.403,4.471,15.334,17.926,21.193,20.556,14.816,13.777],[22.984,15.699,9.73,17.406,10.85,7.841,4.204,2.207,5.645,11.766,26.222,21.22,6.681,-2.97,9.154,16.722,14.478,15.711,10.659,13.34,8.111,-0.762,13.579,17.342,3.41,2.272,1.31,19.155,8.856,19.57,7.963,14.157,11.361,20.524,5.765,-0.332,7.194,2.018,21.257,-1.297,3.576,9.392,22.109,11.79,3.466,19.077,17.876,17.138,26.46,12.734,4.908,-0.102,6.426,23.504,20.031,10.898,15.229,13.651,12.605,5.829,20.032,5.696,15.81,21.893,15.265,12.558,6.135,18.032,4.118,-1.997,8.022,1.166,24.762,16.539,5.206,27.376,17.525,1.966,25.472,22.069,8.063,10.849,10.15,9.633,9.073,12.502,7.355,22.114,4.963,12.154,7.169,22.444,-1.862,7.923,9.54,17.012,17.966,13.338,13.634,5.242,7.6,15.023,10.771,14.149,12.836,-2.023,7.487,15.714,2.808,15.683,17.904,3.182,11.6,15.641,19.391,-1.324,14.473,6.157,17.308,9.98,-0.516,9.194,3.752,1.718,20.157,0.692,11.225,12.914,12.787,7.614,9.14,21.457,15.203,18.816,3.433,21.427,6.604,-1.782,5.558,20.828,7.872,3.259,11.48,20.458,1.879,9.14,24.826,9.038,19.145,3.853,-0.743,-0.127,18.923,23.289,27.506,4.651,13.295,19.054,19.774,16.354,2.324,17.387,23.079,12.994,5.587,5.043,-0.021,15.193,20.092,20.248,4.115,5.156,5.435,16.303,9.114,21.429,11.193,13.257,11.241,16.945,12.12,23.18,7.891,3.012,1.506,4.484,15.351,18.368,21.563,20.347,14.944,13.988],[23.07,15.748,9.646,16.969,10.789,7.766,4.454,2.062,5.393,11.614,26.208,21.089,6.947,-3.136,9.092,16.969,14.436,15.43,10.589,13.385,8.3,-0.697,13.928,17.348,3.543,2.436,1.556,18.972,8.682,19.495,8.093,14.181,11.365,20.456,5.611,-0.239,7.056,2.01,21.609,-1.486,3.479,9.674,22.341,11.551,3.292,19.089,17.88,17.087,26.418,12.613,5.011,-0.239,6.33,23.678,20.223,10.881,15.26,13.689,12.632,5.9,20.295,5.779,15.633,21.861,14.751,12.324,6.237,17.984,4.128,-2.452,8.73,0.785,24.324,16.391,5.415,27.309,17.613,1.727,25.665,21.946,8.244,10.648,10.176,9.206,9.211,12.051,7.5,21.983,5.561,11.928,7.316,22.266,-1.592,7.817,9.237,16.968,17.827,12.94,13.459,5.157,7.531,14.785,10.423,14.136,12.892,-2.112,7.237,16.118,2.857,15.815,17.769,3.53,11.874,14.756,19.478,-0.684,14.335,6.506,17.259,10.06,-0.186,9.76,3.767,1.462,20.01,0.186,10.789,12.875,12.173,7.377,9.445,21.185,15.359,18.751,3.583,21.904,6.442,-1.992,5.485,20.793,8.412,2.84,11.582,21.02,1.83,8.502,24.677,8.929,19.082,3.236,-0.764,0.07,18.888,23.682,27.864,4.706,13.022,19.011,20.262,16.211,2.45,17.924,23.086,12.4,5.763,4.977,0.126,14.856,20.245,20.771,3.943,5.33,5.63,16.493,9.001,21.153,11.416,13.655,11.41,16.952,12.368,22.755,7.823,3.284,1.558,4.793,15.313,18.703,21.721,20.192,15.108,14.561],[22.9,15.575,9.541,16.565,10.812,7.648,4.631,1.876,5.18,11.449,26.302,21.142,7.084,-3.194,9.065,17.122,14.364,15.169,10.467,13.531,8.488,-0.623,14.097,17.404,3.767,2.578,1.622,18.948,8.651,19.249,8.195,14.384,11.436,20.361,5.554,-0.212,6.891,2.126,21.899,-1.51,3.318,9.603,22.457,11.307,3.1,19.154,18.013,17.003,26.517,12.441,5.2,-0.239,6.257,23.69,20.326,10.928,15.307,13.612,12.728,6.046,20.379,5.924,15.65,21.625,14.836,12.453,5.778,18.021,4.429,-2.457,8.57,0.495,24.618,15.992,5.678,27.298,17.386,1.757,25.162,22.349,8.692,10.602,9.924,9.227,9.027,12.045,7.336,21.53,5.037,11.645,7.577,22.73,-1.692,7.5,9.512,16.94,18.231,13.308,14.119,5.07,8.058,14.422,10.157,13.897,12.951,-1.97,7.333,16.349,3.376,15.865,17.785,4.056,11.932,14.819,19.291,-0.077,14.613,6.428,17.38,10.379,0.011,10.07,4.219,1.813,20.049,0.186,10.432,13.436,11.574,7.37,9.433,20.807,15.486,18.799,3.514,22.936,6.458,-1.762,5.424,21.221,8.346,2.688,11.138,20.478,1.71,8.749,24.599,8.704,19.079,3.067,-1.115,-0.122,18.678,23.925,27.236,4.805,13.206,19.065,20.367,15.945,2.179,17.665,23.108,11.742,5.839,4.738,0.509,14.77,20.424,20.718,4.117,5.387,5.462,16.008,9.105,21.314,11.751,13.419,11.294,17.094,12.236,23.069,7.576,3.322,1.317,4.709,15.456,18.518,21.8,20.492,15.27,14.827],[22.669,15.37,9.383,16.187,10.846,7.67,4.498,1.849,5.002,11.353,26.417,21.462,6.977,-3.145,9.039,17.094,14.335,15.014,10.297,13.553,8.823,-0.557,14.236,17.472,3.988,2.869,1.601,19.004,8.798,19.09,8.154,14.559,11.535,20.275,5.59,-0.095,6.752,2.166,22.132,-1.48,3.144,9.372,22.515,11.134,2.964,19.339,18.266,16.829,26.61,12.169,5.257,-0.06,6.223,23.772,20.367,10.981,15.374,13.667,12.882,6.058,20.313,6.066,15.726,21.496,15.007,12.13,5.456,17.811,4.064,-2.331,8.447,0.607,24.412,15.825,5.663,27.185,17.175,1.029,24.901,22.758,8.391,10.524,9.902,9.794,8.362,12.654,7.232,21.855,5.232,11.59,7.655,23.058,-2.045,7.739,9.477,17.221,18.314,13.679,14.28,5.418,8.591,14.519,10.089,13.42,12.878,-1.284,7.62,16.458,3.394,15.884,17.502,4.241,12.17,15.202,18.802,-0.444,14.703,6.376,17.522,10.573,-0.211,9.996,4.253,1.661,19.51,0.341,10.451,13.674,10.851,7.202,9.181,20.87,15.922,18.877,3.615,22.562,6.336,-1.796,5.633,21.17,7.887,2.91,11.03,20.696,2.309,9.356,24.894,8.624,18.872,3.088,-1.29,-0.42,18.393,23.925,26.744,4.603,12.878,19.175,20.19,15.665,1.997,17.549,23.126,12.133,5.911,4.87,1.015,15.125,20.366,20.398,4.178,5.53,6.076,15.769,9.148,21.237,11.474,13.123,11.219,17.114,11.728,23.099,7.586,3.388,1.186,4.579,15.215,18.572,21.441,19.908,15.446,14.335],[22.529,15.405,9.181,15.883,11.05,7.774,4.253,1.928,4.682,11.183,26.492,21.804,6.843,-3.081,9.016,17.032,14.338,15.039,10.046,13.469,9.114,-0.479,14.368,17.513,4.153,3.113,1.47,19.037,8.922,18.975,8.037,14.706,11.514,20.205,5.787,-0.045,6.603,2.192,22.216,-1.566,2.969,9.336,22.459,11.16,3.034,19.552,18.37,16.646,26.751,11.907,5.225,0.112,6.248,23.802,20.309,10.895,15.414,13.761,12.853,6.053,20.2,6.168,15.732,21.502,14.636,12.201,5.767,17.701,3.638,-2.27,8.423,0.749,24.362,15.614,5.296,27.312,17.315,0.867,25.328,22.014,8.169,10.753,9.646,10.205,8.032,12.8,7.245,22.442,5.415,12.033,7.391,23.313,-2.903,8.116,9.375,16.995,18.175,13.008,13.949,5.784,8.793,14.716,10.265,13.388,12.606,-1.324,7.546,15.96,3.326,15.869,17.168,4.275,11.948,14.95,19.058,-0.855,14.793,6.314,17.374,11.066,-0.259,10.052,4.471,1.71,19.043,0.979,10.784,13.432,10.307,7.605,9.073,21.243,16.012,18.797,3.42,22.543,6.478,-1.687,5.945,21.657,7.804,2.466,11.343,21.395,2.601,8.483,24.792,8.279,19.074,2.906,-0.932,-0.148,18.424,23.388,27.159,3.958,12.48,19.714,19.948,15.558,1.994,18.117,23.363,11.842,5.924,4.807,0.951,15.232,20.292,20.868,4.366,5.498,5.947,16.021,9.178,21.05,11.535,13.567,11.261,17.137,11.948,23.423,7.809,3.445,1.659,4.572,15.309,18.73,21.587,19.765,15.146,14.062],[22.446,15.57,9.023,15.823,11.292,7.874,4.092,2.062,4.367,11.145,26.541,22.114,6.848,-3.211,9.088,16.936,14.21,15.164,9.891,13.219,9.479,-0.441,14.333,17.442,4.281,3.22,1.348,19.162,8.98,18.792,7.837,14.777,11.377,20.124,6.127,0.075,6.411,2.133,22.438,-1.526,2.762,9.302,22.306,11.275,2.961,19.742,18.405,16.496,26.841,11.723,5.238,0.127,6.282,23.857,20.377,10.718,15.465,13.811,12.737,6.137,20.099,6.082,15.724,21.575,14.699,12.215,5.512,17.374,3.226,-2.357,8.328,0.885,24.228,15.364,4.704,27.6,17.329,1.388,26.164,21.562,8.059,10.878,9.666,9.922,8.311,12.804,8.499,22.537,5.117,11.479,7.284,23.674,-2.436,8.179,8.888,16.816,18.448,12.917,13.99,5.388,8.506,14.659,9.785,13.287,12.466,-1.601,7.929,15.859,3.689,15.905,17.165,4.528,11.764,14.915,18.635,-0.405,14.995,6.046,17.652,11.112,-0.452,9.918,4.68,1.711,19.017,0.968,11.166,13.492,9.779,7.931,9.05,21.285,15.914,18.817,3.747,22.749,6.197,-1.564,5.979,21.613,8.184,3.073,11.384,21.38,2.255,8.344,25.109,8.345,19.619,2.676,-0.781,-0.369,18.205,23.53,27.362,4.15,13.022,20.001,19.806,15.814,1.761,18.283,23.293,11.537,5.759,4.814,0.904,15.454,20.014,20.996,4.481,5.337,5.581,15.714,8.986,21.333,11.508,13.986,11.087,17.26,11.504,23.516,7.758,3.474,1.651,4.682,15.931,18.408,21.585,20.297,15.106,14.183],[22.364,15.722,9.013,15.834,11.182,8.019,4.006,2.147,4.222,11.116,26.639,22.308,7.004,-3.274,9.238,16.937,14.063,15.319,9.886,12.991,9.77,-0.39,14.225,17.307,4.266,3.199,1.265,19.326,8.942,18.666,7.521,14.741,11.239,20.068,6.294,0.192,6.272,2.076,22.693,-1.433,2.633,9.35,22.213,11.368,2.937,19.948,18.565,16.346,26.849,11.525,5.258,0.026,6.182,23.953,20.438,10.454,15.65,13.793,12.722,6.236,19.895,6.011,15.817,21.757,14.993,12.257,4.779,17.254,3.148,-2.629,8.512,0.563,24.127,15.914,5.08,27.804,17.663,1.729,26.313,21.543,8.8,10.911,10.099,10.082,8.619,12.874,9.14,22.734,4.966,10.879,7.74,24.035,-2.065,7.963,8.815,16.798,18.64,12.882,14.215,5.06,8.602,14.185,10.008,13.129,12.42,-1.756,7.712,16.472,3.882,15.77,16.965,5.018,11.624,14.937,18.624,-0.346,14.72,6.051,18.07,11.477,-0.56,10.347,4.381,1.459,19.314,0.337,10.977,13.489,9.467,7.817,8.986,20.92,16.096,18.81,3.678,22.872,5.821,-1.477,6.264,21.153,7.986,2.879,11.44,21.219,1.862,8.769,24.877,8.13,19.112,2.431,-0.988,-0.266,18.132,23.666,27.126,4.658,13.03,19.303,20.436,15.765,1.95,17.899,23.403,11.521,5.827,4.843,1.099,15.241,20.247,20.732,4.202,5.661,6.061,15.932,8.814,21.534,11.432,13.472,10.785,17.431,11.492,23.321,7.683,3.413,1.147,4.888,15.511,18.037,21.521,20.288,15.66,14.316],[22.226,15.718,9.166,15.968,11.095,8.376,4.085,2.095,4.237,10.961,26.838,22.357,7.297,-3.089,9.504,17.093,14.03,15.369,9.961,12.901,9.92,-0.36,14.334,17.066,4.138,3.118,1.154,19.458,8.924,18.496,7.311,14.738,11.086,20.035,6.374,0.178,6.158,2.047,22.744,-1.468,2.718,9.325,22.15,11.389,2.919,20.064,18.625,16.174,26.732,11.31,5.275,-0.012,6.027,23.996,20.345,10.195,15.716,13.616,12.673,6.272,19.796,5.975,16.085,21.914,14.845,12.148,4.785,17.656,3.145,-2.535,8.541,0.403,24.091,15.975,5.212,27.805,17.58,2.005,25.654,21.694,8.722,10.766,9.541,10.117,8.452,12.813,8.13,22.949,5.013,11.616,8.249,23.944,-2.087,8.021,9.473,16.847,18.796,12.666,13.654,5.321,9.046,14.263,9.794,13.172,12.165,-1.733,7.712,16.743,3.474,15.307,16.818,5.158,11.207,15.532,19.325,-0.52,14.999,5.39,18.343,11.702,-0.424,10.49,4.664,1.06,19.547,0.39,10.879,13.621,9.33,7.598,8.455,20.708,15.758,18.573,3.507,23.611,6.058,-1.439,6.58,20.846,7.747,2.571,11.427,21.474,1.84,8.826,24.962,7.946,19.679,2.323,-1.092,0.068,17.991,23.728,27.288,4.169,12.782,19.093,21.143,15.533,1.742,17.967,23.731,11.44,5.911,4.733,0.843,14.729,20.184,20.566,4.214,5.924,6.222,15.99,8.759,21.18,11.48,13.291,10.217,17.628,11.505,23.328,7.707,3.467,1.344,4.85,15.709,18.077,21.624,20.632,15.924,14.603],[22.137,15.653,9.229,16.077,11.004,8.352,4.165,2.009,4.461,10.866,26.962,22.247,7.561,-2.773,9.673,17.293,14.208,15.362,9.981,12.828,9.947,-0.321,14.541,16.726,4.018,3.106,1.065,19.63,8.95,18.412,7.312,14.759,10.962,20.022,6.447,0.196,6.104,2.147,22.754,-1.674,2.708,9.013,22.113,11.276,2.79,20.302,18.598,16.113,26.709,11.144,5.381,0.15,5.95,24.003,20.273,10.083,15.713,13.552,12.633,6.026,19.884,5.963,16.224,21.85,14.759,12.069,5.552,17.926,3.18,-2.199,8.725,0.434,23.94,15.52,4.665,27.968,17.343,2.024,25.262,22.027,9.308,11.103,9.748,10.356,8.055,12.608,8.932,22.554,5.374,11.636,8.587,23.847,-2.438,8.051,9.301,16.604,18.83,12.793,14.334,5.524,9.157,14.71,9.211,13.517,12.158,-1.872,7.621,16.363,3.522,14.98,16.825,4.702,11.316,15.551,19.274,-0.473,15.282,5.261,18.076,11.843,-0.687,10.713,4.589,1.032,19.449,0.998,10.568,13.641,9.521,8.028,8.108,20.687,16.155,18.32,3.79,23.622,6.118,-1.524,6.237,21.092,7.839,2.243,11.717,21.926,2.356,8.586,24.797,7.873,20.366,2.721,-1.268,-0.369,17.767,23.621,27.365,4.059,12.713,19.17,20.904,15.353,1.623,17.733,24.175,11.445,5.756,4.622,0.554,15.05,19.395,20.394,4.233,5.987,5.668,16.213,8.602,21.22,11.392,13.416,10.027,17.778,11.005,23.424,7.518,3.598,1.834,4.492,15.855,18.425,21.627,20.975,15.51,14.248],[22.144,15.589,9.186,15.919,10.873,8.258,4.165,1.962,4.757,10.79,26.963,22.049,7.755,-2.521,9.786,17.36,14.391,15.332,9.893,12.875,10.137,-0.309,14.886,16.349,3.898,3.108,0.959,19.711,8.933,18.533,7.444,14.869,10.876,19.967,6.493,0.326,6.235,2.291,22.781,-1.973,2.612,8.711,22.131,11.218,2.545,20.567,18.483,16.242,26.719,11.019,5.488,0.352,5.863,24.067,20.434,10.028,15.656,13.756,12.663,5.696,19.964,5.884,16.235,21.763,14.804,12.155,5.658,17.46,3.747,-2.106,8.696,0.264,23.923,15.54,4.718,28.341,17.47,2.566,25.472,21.99,9.097,11.352,10.106,10.099,8.114,12.691,9.23,22.326,5.471,11.026,8.598,23.57,-2.403,8.282,8.787,15.84,18.852,13.21,14.337,5.055,8.777,14.61,9.642,13.581,12.06,-2.026,8.009,16.488,3.627,14.765,16.998,4.294,11.567,15.108,19.059,-0.176,15.451,5.668,18.376,11.636,-0.768,10.659,4.428,0.992,19.321,0.778,10.098,13.491,9.744,8.11,8.698,20.993,16.265,18.574,3.82,22.855,5.891,-1.368,6.53,21.515,7.457,2.246,11.651,21.876,2.875,7.864,24.859,8.152,19.888,2.088,-1.403,-0.634,17.711,23.557,27.108,4.011,12.828,19.599,20.681,14.828,1.929,17.364,23.975,11.093,5.983,4.694,0.784,15.389,19.813,20.56,4.109,5.34,5.785,16.322,8.723,21.544,11.29,13.555,10.201,17.824,11.141,23.771,7.39,3.535,1.953,4.158,15.487,18.246,21.549,20.464,15.587,13.706],[22.155,15.548,9.164,15.63,10.927,8.151,4.222,1.982,5.059,10.672,26.93,21.853,7.791,-2.398,9.822,17.331,14.434,15.319,9.888,12.813,10.256,-0.343,15.226,15.935,3.774,3.132,0.773,19.812,9.004,18.786,7.57,14.981,10.584,19.957,6.608,0.496,6.321,2.395,22.595,-2.221,2.548,8.54,22.202,11.281,2.269,20.584,18.264,16.303,26.616,11.006,5.667,0.39,5.82,24.132,20.648,9.942,15.554,13.928,12.749,5.41,20.008,5.872,16.268,21.733,14.857,12.033,5.436,17.315,3.832,-1.881,8.846,0.393,23.998,15.645,5.122,28.636,17.437,2.58,26.054,21.498,8.977,11.507,9.476,9.649,8.295,12.532,8.886,22.558,5.067,11.412,8.749,23.311,-1.748,8.776,9.059,15.532,18.937,13.112,14.663,4.183,9.005,14.128,9.802,13.482,12.25,-1.85,8.057,16.811,3.312,14.355,17.124,3.85,11.292,15.365,19.057,0.102,16.041,5.955,18.586,11.88,-0.84,10.447,4.209,0.953,19.915,0.503,10.242,13.8,10.231,7.662,8.959,20.452,16.188,18.558,3.951,23.182,6.238,-1.104,6.847,21.6,7.221,2.37,11.446,22.032,2.733,7.684,24.845,8.126,19.917,1.661,-1.428,-0.906,17.913,23.741,27.405,4.094,12.975,19.689,20.929,14.953,1.831,17.583,23.432,10.809,6.038,4.622,1.346,15.19,20.774,21.154,4.111,4.559,6.075,16.149,8.685,21.229,11.464,13.486,10.107,17.853,11.153,23.536,7.488,3.796,1.688,4.131,15.311,18.361,21.703,20.0,15.781,14.567],[22.059,15.664,9.102,15.492,11.014,8.132,4.263,2.071,5.274,10.782,26.921,21.797,7.819,-2.329,9.744,17.265,14.389,15.445,9.937,12.543,10.339,-0.282,15.614,15.561,3.492,3.035,0.653,19.966,9.111,19.132,7.663,15.087,10.35,19.892,6.762,0.52,6.274,2.402,22.405,-2.325,2.49,8.508,22.285,11.397,2.243,20.519,17.978,16.233,26.535,11.024,5.832,0.372,5.859,24.01,20.915,9.801,15.532,14.022,12.848,5.204,20.086,5.907,16.293,21.655,14.948,11.999,5.753,17.294,3.837,-2.031,8.517,0.326,23.881,15.674,5.459,28.771,17.458,2.067,26.25,21.313,9.156,11.333,9.322,9.707,8.4,12.237,8.725,22.425,4.606,11.378,8.903,23.017,-1.446,9.442,9.237,15.769,18.946,12.99,15.261,4.295,9.677,14.135,9.928,13.576,12.062,-1.307,7.66,17.013,3.532,13.835,17.442,3.81,10.898,15.543,19.617,-0.339,16.227,5.769,18.473,12.127,-0.872,10.393,4.27,0.405,20.273,1.189,9.794,13.904,10.096,8.036,8.596,19.999,16.237,18.081,3.806,23.313,6.498,-0.804,6.582,21.174,7.276,1.847,11.579,21.339,2.533,8.152,24.659,8.018,20.01,1.546,-1.314,-1.12,18.013,23.722,27.5,3.717,12.909,19.059,21.241,15.717,2.221,17.266,23.463,11.552,5.911,4.77,1.098,15.388,20.971,20.838,4.021,4.085,6.243,16.214,8.442,21.09,11.58,13.093,10.056,17.71,11.223,24.085,7.653,4.043,1.926,4.091,15.55,18.563,21.913,20.109,15.019,14.926],[21.773,15.954,9.024,15.631,11.01,8.309,4.218,2.028,5.414,11.053,26.929,21.755,7.863,-2.351,9.618,17.291,14.285,15.547,10.097,12.266,10.498,-0.172,15.941,15.315,3.229,2.924,0.621,20.188,9.115,19.493,7.627,15.081,10.22,19.717,6.842,0.563,6.269,2.3,22.126,-2.279,2.523,8.658,22.366,11.534,2.207,20.465,17.655,16.222,26.501,11.067,5.853,0.333,5.957,24.068,21.084,9.622,15.371,14.019,12.796,5.104,20.167,5.898,16.317,21.7,14.926,12.426,5.627,17.091,4.092,-1.826,8.285,0.499,23.663,15.615,5.173,28.604,17.836,2.228,26.113,21.384,8.947,11.304,9.787,9.924,8.523,12.59,8.537,22.251,5.046,11.453,8.809,23.392,-1.505,9.347,8.723,15.363,18.921,13.003,15.155,4.337,9.678,14.308,10.066,13.861,11.362,-1.225,7.9,16.817,3.505,13.418,17.754,4.206,11.049,15.534,19.933,-0.066,16.276,5.761,18.641,12.3,-1.242,10.229,4.072,0.484,20.258,0.736,9.275,13.566,9.361,8.397,8.572,20.618,15.964,18.118,3.802,22.602,6.466,-1.015,7.056,20.738,7.107,1.745,11.665,21.044,2.495,8.396,24.996,8.043,20.141,2.018,-1.139,-1.411,17.988,23.394,27.312,3.737,13.216,18.789,21.252,16.01,1.926,16.618,23.376,11.538,5.937,5.072,0.585,15.35,20.904,20.845,3.987,4.186,6.153,16.085,8.4,21.128,11.301,13.516,10.25,17.828,11.715,23.42,7.709,3.952,1.983,3.929,16.112,18.418,22.023,20.321,14.903,14.495],[21.519,16.273,9.016,15.892,11.188,8.451,4.189,1.997,5.375,11.305,27.208,21.9,7.801,-2.41,9.476,17.27,14.349,15.423,10.241,12.131,10.565,-0.242,16.089,15.179,3.145,2.72,0.553,20.318,9.067,19.806,7.578,14.916,10.07,19.88,6.929,0.447,6.325,2.206,21.618,-2.182,2.637,8.838,22.372,11.735,2.086,20.42,17.31,16.239,26.611,11.069,5.791,0.152,6.006,24.176,21.077,9.495,15.249,13.966,12.684,5.128,20.185,5.816,16.366,21.767,15.197,12.426,5.87,17.444,4.538,-1.769,8.844,0.317,23.416,15.743,4.857,28.24,18.194,2.789,25.559,20.948,8.491,11.202,9.658,10.12,8.767,12.882,9.211,22.235,5.139,11.908,8.703,23.482,-1.692,8.415,9.001,14.989,18.888,12.745,15.108,3.653,9.583,14.431,10.57,13.651,11.385,-1.286,7.883,16.811,3.185,13.735,17.952,4.347,10.863,15.639,19.71,0.077,16.205,5.86,18.928,12.015,-1.256,10.367,4.208,0.974,20.148,0.476,9.575,13.199,9.059,8.418,8.948,20.474,15.985,18.109,3.792,22.874,6.247,-1.291,6.981,20.794,7.449,2.199,11.691,21.34,2.519,8.159,24.826,8.118,20.564,2.2,-1.153,-1.446,18.106,23.252,27.402,3.845,13.248,18.384,21.252,15.48,1.949,16.45,23.525,11.254,6.222,5.001,0.823,15.41,20.781,21.382,4.174,4.122,6.054,16.459,8.865,21.497,11.344,13.8,10.198,17.822,10.744,23.351,7.738,3.916,1.589,3.928,15.614,18.344,21.782,20.035,15.169,14.108],[21.409,16.426,9.046,16.329,11.326,8.676,4.103,2.148,5.341,11.426,27.485,22.141,7.678,-2.358,9.278,17.219,14.428,15.194,10.362,12.218,10.536,-0.463,16.066,15.175,3.116,2.517,0.668,20.325,9.057,20.022,7.665,14.615,10.006,19.998,6.958,0.183,6.375,2.246,21.214,-2.154,2.754,8.946,22.207,11.916,2.055,20.457,17.019,16.22,26.717,10.918,5.708,0.057,5.973,24.234,20.933,9.412,15.303,13.926,12.707,5.17,20.153,5.814,16.509,21.766,15.762,12.629,5.799,18.006,4.377,-2.267,8.907,0.596,23.265,15.806,4.948,28.103,18.244,2.564,25.823,20.734,8.377,10.732,9.465,9.999,8.618,12.871,9.993,22.271,4.994,11.739,8.734,23.509,-1.954,7.819,9.819,15.201,18.932,13.198,15.551,3.297,9.259,14.003,10.874,13.513,12.127,-1.711,7.524,16.835,2.911,14.032,18.21,3.984,10.542,15.849,19.793,-0.724,16.169,6.008,18.718,11.432,-0.838,10.532,4.253,0.731,20.583,0.939,10.167,12.947,9.201,8.213,9.029,20.551,15.762,18.331,3.716,22.243,6.257,-0.817,6.704,21.312,7.702,2.307,12.029,20.967,2.545,8.063,25.081,7.94,20.524,2.221,-0.795,-1.491,17.878,23.437,27.679,3.752,13.415,17.613,20.915,15.197,2.078,15.724,23.811,11.24,6.418,4.917,0.776,15.246,20.189,21.126,3.893,4.135,6.107,16.707,8.877,21.484,11.551,13.629,10.105,17.763,10.949,23.23,7.702,3.866,1.557,3.927,15.227,18.341,21.948,20.14,15.034,14.836],[21.528,16.398,8.98,16.733,11.168,9.01,3.94,2.367,5.33,11.387,27.375,22.165,7.588,-2.288,9.0,17.195,14.479,15.087,10.584,12.406,10.416,-0.76,16.081,15.173,3.0,2.546,0.969,20.173,9.02,20.116,7.81,14.35,10.003,20.016,6.834,0.204,6.251,2.387,20.87,-2.115,2.775,8.952,22.018,12.039,2.206,20.503,16.726,16.115,26.82,10.881,5.698,0.103,5.958,24.21,20.755,9.416,15.466,14.03,12.932,5.195,19.989,5.842,16.653,21.75,15.391,12.788,5.878,18.479,3.869,-1.703,8.779,0.745,23.341,15.955,4.989,28.796,18.189,2.834,26.163,21.113,8.401,10.639,9.842,10.023,8.65,12.768,10.339,22.33,4.771,11.636,8.578,23.714,-1.967,7.757,9.705,15.611,18.671,13.741,15.387,4.27,9.348,13.902,10.372,13.473,11.923,-2.071,7.629,16.693,2.922,13.519,18.247,3.761,10.878,15.202,20.105,-0.69,16.138,6.181,18.934,11.395,-0.835,10.368,4.058,0.728,20.673,0.492,9.991,12.639,9.325,8.069,9.072,20.63,15.274,18.383,3.711,21.225,6.62,-1.108,7.04,21.751,7.637,1.804,12.252,20.462,2.699,8.256,25.244,8.002,20.112,2.457,-0.995,-1.469,17.877,23.283,27.592,3.743,13.77,17.795,20.623,15.363,1.914,15.761,23.713,11.23,6.329,4.881,0.634,15.056,19.802,20.791,4.05,4.251,5.838,16.773,8.343,21.116,11.338,13.456,10.365,18.143,11.393,23.155,7.677,3.793,1.619,4.237,16.015,18.119,22.278,20.188,15.206,15.229],[21.898,16.264,8.957,16.947,10.978,9.371,3.817,2.532,5.303,11.38,27.254,21.94,7.504,-2.189,8.728,17.169,14.591,15.031,10.754,12.571,10.308,-1.033,16.142,15.036,3.093,2.747,1.158,19.99,8.991,20.038,8.038,14.243,9.818,20.04,6.711,0.396,6.173,2.479,20.51,-2.107,2.792,8.928,21.918,12.156,2.358,20.433,16.634,16.068,26.774,10.874,5.814,0.073,6.011,24.069,20.748,9.539,15.725,14.101,13.195,5.239,19.648,5.881,16.82,21.598,15.18,12.163,5.653,18.532,3.929,-1.652,8.5,0.769,23.433,16.767,4.996,28.788,18.126,2.804,26.181,21.103,8.809,10.507,9.553,10.02,8.814,12.423,9.992,22.346,4.5,12.182,8.531,23.606,-2.078,8.415,9.895,15.245,18.469,13.313,14.914,4.328,9.432,14.355,10.224,13.785,11.394,-1.787,7.829,16.772,3.469,13.253,18.315,3.745,11.485,15.059,19.611,-0.573,15.946,6.355,18.443,11.707,-0.352,10.175,4.071,1.372,20.476,0.774,9.232,12.824,8.813,8.05,9.304,20.484,15.245,18.315,4.07,21.163,6.392,-1.168,6.54,21.432,7.446,2.06,11.681,19.816,2.629,8.485,25.132,7.908,20.224,2.357,-1.277,-0.889,17.869,23.36,27.727,3.831,13.87,18.036,20.605,15.503,1.975,15.888,23.651,11.728,6.299,4.801,0.638,15.047,19.599,21.33,4.207,4.343,5.93,17.297,7.962,20.982,11.485,13.423,10.279,18.001,11.399,23.041,7.51,3.897,1.55,4.535,15.93,17.947,21.783,20.198,15.319,14.936],[22.146,16.108,9.048,16.995,10.914,9.689,3.77,2.571,5.332,11.444,27.235,21.843,7.457,-2.258,8.596,17.159,14.753,15.09,10.814,12.63,10.175,-1.152,16.141,14.81,3.389,2.831,1.402,19.736,9.02,19.825,8.297,14.283,9.395,19.983,6.556,0.609,6.185,2.467,20.186,-2.031,2.935,8.86,21.916,12.085,2.382,20.233,16.728,16.061,26.649,10.914,5.874,-0.148,6.066,23.996,20.902,9.665,15.769,13.891,13.356,5.199,19.391,5.954,16.97,21.444,15.509,12.364,5.43,18.426,4.498,-1.666,8.367,0.738,24.009,16.938,4.768,28.561,18.034,2.728,25.617,21.055,9.293,10.389,9.093,9.474,8.502,12.241,9.552,21.844,4.609,12.194,8.496,23.248,-1.779,8.73,10.413,14.629,18.378,13.382,14.929,3.784,9.515,14.349,10.766,14.095,12.198,-1.506,7.657,16.576,3.126,13.325,18.074,4.19,11.413,15.625,19.537,-1.005,16.126,6.623,18.254,12.085,-0.161,10.006,4.598,1.625,20.327,1.343,8.958,12.814,8.98,8.326,9.676,20.614,14.981,18.315,4.189,21.374,6.115,-0.935,6.334,21.016,7.674,2.72,11.211,20.107,2.47,8.491,24.953,7.744,20.422,2.485,-1.047,-0.539,17.883,23.291,27.768,4.079,13.766,18.095,20.758,15.528,1.986,16.049,23.416,11.562,6.906,4.793,0.73,15.167,19.165,21.344,4.075,4.082,6.045,17.244,8.241,20.859,12.064,13.763,10.451,18.166,11.285,22.536,7.672,4.085,1.331,4.922,15.696,17.907,22.001,19.918,15.296,14.841],[22.178,16.159,9.134,16.995,10.832,9.933,3.595,2.569,5.541,11.617,27.123,21.905,7.534,-2.361,8.596,17.014,14.948,15.269,10.858,12.729,10.112,-1.11,15.99,14.538,3.724,2.735,1.643,19.671,9.04,19.649,8.477,14.226,9.024,20.057,6.507,0.727,6.175,2.365,20.116,-1.755,3.153,8.858,22.01,11.834,2.476,20.125,16.965,16.075,26.53,10.958,5.932,-0.309,6.088,23.814,20.98,9.853,15.556,13.622,13.348,5.151,19.278,6.007,17.008,21.24,15.26,12.458,5.731,18.614,4.347,-1.673,8.854,0.78,24.015,16.684,4.705,27.809,18.007,2.685,25.321,21.548,9.405,10.284,9.748,9.04,8.743,11.946,9.604,21.746,4.524,12.235,8.477,23.053,-1.846,8.643,10.226,14.605,18.708,13.447,15.216,4.002,9.32,14.282,11.76,14.399,12.492,-2.417,7.476,16.525,2.439,13.767,17.831,5.24,11.013,15.111,19.504,-0.899,16.692,7.0,18.387,11.813,-0.077,10.028,4.555,1.971,20.397,1.31,9.188,12.553,8.886,8.03,9.841,20.624,14.84,18.121,3.95,21.162,6.245,-0.711,6.937,20.625,7.533,2.407,11.458,19.733,2.596,8.183,24.938,8.053,19.92,2.946,-1.097,-0.528,17.724,22.405,27.255,3.812,13.672,18.184,20.973,15.487,2.118,16.517,23.494,11.397,7.154,5.051,0.384,14.788,18.937,21.091,4.178,4.131,5.742,17.222,8.111,20.909,12.227,13.938,10.91,18.18,11.149,22.585,7.554,4.24,1.193,4.877,15.65,17.948,22.478,19.588,15.617,14.855],[22.211,16.283,9.416,16.962,10.718,10.06,3.336,2.522,5.79,11.868,26.91,21.919,7.674,-2.422,8.639,16.776,14.975,15.292,10.893,12.799,9.988,-1.134,15.812,14.316,4.223,2.565,1.73,19.746,9.044,19.596,8.478,14.098,8.842,20.211,6.536,0.732,6.287,2.241,20.162,-1.535,3.438,8.919,22.047,11.797,2.481,20.082,17.324,16.142,26.303,11.014,6.062,-0.478,6.027,23.658,21.046,10.051,15.335,13.466,13.225,5.125,19.206,5.882,16.973,21.012,15.172,12.314,5.77,18.658,4.711,-1.958,9.265,0.75,24.033,16.096,4.481,27.274,17.97,3.012,25.212,21.694,9.238,10.225,10.473,8.937,9.306,11.583,10.284,22.391,4.295,12.524,8.094,23.34,-2.139,8.028,10.376,15.057,18.427,13.429,14.804,4.275,9.376,14.245,12.162,14.528,12.373,-2.456,8.052,16.865,2.779,13.669,17.728,5.799,11.248,15.286,19.431,-0.588,16.848,6.992,18.295,11.342,0.21,9.785,4.228,1.875,20.537,1.282,8.908,12.397,7.928,7.997,9.922,21.004,15.284,18.492,3.542,20.786,6.559,-0.878,7.049,20.842,7.496,2.249,11.49,19.747,2.893,8.48,24.938,7.842,19.611,3.017,-0.915,-0.405,17.882,21.466,27.329,3.875,13.56,18.609,21.146,15.503,2.791,16.342,23.38,10.984,6.945,4.892,0.186,14.122,19.042,21.326,4.276,4.674,5.826,17.011,8.348,20.687,11.442,13.592,10.978,17.828,11.278,22.615,7.545,4.312,1.033,4.445,15.87,17.731,22.061,19.518,15.643,14.815],[22.282,16.31,9.789,16.81,10.754,10.113,3.158,2.568,5.918,12.077,26.751,21.941,7.586,-2.476,8.612,16.486,14.817,15.297,10.891,12.875,9.98,-1.113,15.603,14.248,4.655,2.49,1.679,19.838,9.118,19.706,8.305,14.012,8.718,20.529,6.596,0.667,6.414,2.23,20.188,-1.515,3.852,9.114,22.05,11.942,2.429,20.019,17.584,16.309,26.059,11.015,6.159,-0.707,5.88,23.592,21.073,10.132,15.211,13.317,13.029,5.174,19.122,5.82,16.809,20.915,15.259,12.72,6.089,18.286,5.03,-1.606,9.1,0.966,24.139,16.012,4.234,27.438,18.163,2.556,25.101,21.483,9.437,10.266,9.995,8.824,9.367,11.576,10.917,21.833,4.018,12.615,8.368,23.545,-2.282,7.525,10.959,14.662,18.25,13.177,14.771,4.813,9.169,14.308,11.96,14.551,12.508,-2.011,8.092,16.544,2.821,13.146,17.866,6.274,11.393,15.794,19.895,-0.879,16.657,6.789,18.416,10.893,0.179,9.377,4.308,1.383,20.614,1.42,8.809,12.826,7.378,8.166,9.911,21.076,15.264,18.796,3.802,21.133,6.758,-0.971,6.566,21.315,7.66,2.732,11.304,20.09,2.769,8.357,24.79,7.959,20.062,2.917,-0.732,-0.114,18.175,20.972,27.355,3.82,13.696,18.459,21.113,15.88,2.808,16.244,22.953,11.229,6.973,4.401,0.283,14.352,19.174,21.55,4.065,4.498,5.766,17.202,8.65,20.041,11.527,13.269,11.026,18.082,11.21,22.483,7.306,4.24,0.573,4.253,15.948,17.457,21.626,19.494,15.17,14.637],[22.343,16.406,9.759,16.53,10.883,10.261,2.968,2.716,5.94,12.252,26.637,21.914,7.352,-2.482,8.551,16.261,14.64,15.368,10.898,13.187,9.941,-0.974,15.393,14.225,4.955,2.57,1.442,20.066,9.195,19.912,8.146,14.067,8.665,20.835,6.592,0.57,6.547,2.432,20.19,-1.508,4.101,9.078,21.929,11.994,2.435,20.053,17.529,16.552,25.847,10.969,6.089,-0.848,5.618,23.562,21.104,10.094,15.161,13.344,13.023,5.161,18.996,5.825,16.824,20.914,15.283,12.873,5.768,18.145,4.794,-1.046,8.905,1.049,24.077,15.93,4.281,27.947,18.233,2.236,24.999,21.363,9.399,10.167,10.035,8.998,9.183,11.858,10.809,21.552,3.892,12.368,8.131,23.626,-2.493,7.346,10.508,14.492,17.9,13.4,14.744,5.226,9.172,14.603,11.801,13.78,12.754,-2.306,7.694,15.718,2.33,12.935,18.07,6.58,11.505,15.423,19.947,-0.987,16.23,6.53,18.357,11.67,-0.227,9.008,4.37,1.768,20.418,1.44,8.65,12.825,7.638,8.15,9.506,21.084,15.202,19.087,4.136,21.035,6.641,-0.951,6.842,22.266,7.586,2.937,11.429,20.192,2.611,8.733,24.542,8.368,20.288,4.018,-0.956,-0.299,18.375,21.476,27.049,3.646,13.87,18.182,20.66,16.031,2.648,16.452,22.747,11.703,7.258,4.243,0.179,14.665,19.406,21.066,3.968,4.725,5.751,17.139,8.364,19.946,12.37,12.829,11.114,17.852,11.276,22.404,7.21,4.459,0.495,4.774,15.648,17.386,21.812,19.592,14.893,14.344],[22.382,16.492,9.646,16.221,11.037,10.358,2.866,2.827,5.74,12.292,26.622,21.776,7.194,-2.491,8.448,16.122,14.494,15.328,10.878,13.623,10.035,-0.91,15.027,14.169,5.165,2.569,1.316,20.091,9.138,20.004,8.012,14.148,8.577,20.844,6.68,0.654,6.666,2.539,20.138,-1.491,4.303,9.002,21.79,11.965,2.67,20.154,17.38,16.745,25.639,11.019,6.024,-0.901,5.357,23.632,21.14,9.962,15.137,13.335,13.124,5.159,18.837,5.722,16.875,21.066,16.089,12.905,6.278,17.784,4.754,-0.808,8.785,1.16,24.117,15.385,3.558,27.961,18.349,2.777,25.204,21.37,9.556,10.112,10.419,9.533,9.279,12.238,10.269,22.128,4.155,12.718,7.799,23.465,-2.68,7.587,10.444,14.749,17.678,13.535,14.74,4.828,8.903,14.504,11.632,13.321,13.266,-1.826,7.631,15.781,2.477,13.312,18.096,6.987,11.915,16.042,20.346,-0.64,15.8,6.443,18.517,11.897,-0.31,8.97,4.168,2.16,20.803,1.126,9.09,12.58,8.621,8.47,9.398,21.93,14.856,19.456,4.077,20.743,6.508,-1.13,6.652,22.185,7.911,2.395,11.617,20.057,2.99,8.32,23.905,8.07,20.149,4.059,-0.741,-0.167,18.537,22.074,26.66,3.688,13.634,18.431,20.526,16.315,2.729,16.158,22.881,11.608,7.101,4.199,-0.43,14.255,19.107,21.695,4.118,4.859,5.85,16.954,8.222,20.092,11.53,13.301,10.822,17.968,11.598,22.315,6.901,4.373,0.56,5.434,15.338,17.449,21.555,19.813,14.927,14.469],[22.429,16.631,9.569,15.907,11.358,10.294,2.793,2.92,5.549,12.264,26.71,21.701,7.32,-2.413,8.433,16.213,14.461,15.298,10.88,13.964,10.053,-0.878,14.687,13.886,5.205,2.391,1.446,19.983,8.985,20.047,7.987,14.154,8.663,20.876,6.838,0.772,6.582,2.45,20.106,-1.15,4.273,9.094,21.642,11.886,2.995,20.237,17.485,16.924,25.396,11.275,5.93,-1.075,5.126,23.736,21.23,9.873,15.106,13.087,13.133,5.295,18.788,5.653,16.858,21.107,15.701,12.642,5.953,17.812,4.749,-0.744,8.568,1.16,24.183,15.417,3.833,27.917,18.504,3.435,25.188,21.464,9.776,10.042,10.083,9.584,9.272,12.544,10.011,22.341,3.97,12.702,8.157,23.004,-2.515,8.146,10.729,14.963,17.513,13.651,14.552,4.493,9.226,14.808,11.399,13.512,13.327,-1.508,7.693,15.999,2.677,13.644,18.364,6.956,12.43,15.71,20.232,-0.292,15.245,6.333,18.617,11.761,-0.108,9.859,4.098,1.797,21.096,1.259,8.789,12.312,9.022,8.422,9.497,21.437,14.859,19.115,4.12,20.761,6.885,-0.86,6.576,21.377,7.733,2.17,11.276,19.724,3.196,8.105,23.899,8.27,19.835,3.197,-0.658,0.088,18.591,22.231,26.686,4.072,13.6,18.399,21.137,16.22,3.302,16.018,23.445,11.416,6.769,3.802,-0.683,14.111,18.491,21.258,3.894,4.624,5.879,16.802,8.094,20.413,11.765,13.983,10.592,18.317,11.539,22.872,6.61,4.099,0.574,5.098,15.238,17.134,21.686,19.652,14.501,14.39],[22.445,16.617,9.524,15.788,11.489,10.099,2.84,3.012,5.424,12.193,26.801,21.472,7.493,-2.247,8.468,16.363,14.464,15.306,11.082,14.161,9.838,-0.773,14.464,13.637,5.043,2.304,1.664,19.863,9.052,20.185,8.117,14.115,8.785,20.766,6.721,0.813,6.516,2.42,20.111,-0.725,4.139,9.113,21.576,11.734,3.254,20.313,17.637,17.03,25.378,11.553,5.814,-1.306,4.878,23.892,21.375,9.886,14.81,12.91,13.204,5.295,18.97,5.59,16.892,20.846,15.407,12.479,5.672,17.516,4.557,-0.737,8.635,1.157,24.326,15.275,3.902,28.235,18.202,3.62,25.208,21.807,9.705,10.066,10.001,9.921,8.853,12.746,10.588,21.639,3.907,12.557,8.624,23.019,-2.282,8.195,10.299,14.638,18.021,14.193,14.644,4.433,9.234,15.043,10.85,14.075,13.467,-1.875,7.487,15.846,2.343,13.116,18.377,6.91,12.606,15.301,19.789,-0.345,15.014,6.574,18.563,11.691,0.015,10.129,4.099,1.487,21.071,1.691,9.078,12.506,8.354,8.506,9.443,21.276,15.177,19.073,4.024,20.68,6.443,-0.725,7.158,20.5,7.725,2.569,11.134,19.995,3.044,8.851,24.015,8.457,19.887,3.305,-0.696,0.519,18.705,22.025,26.713,4.729,13.595,18.573,20.785,16.463,2.915,16.377,24.15,11.79,6.477,3.444,-0.503,14.286,18.805,20.859,3.79,4.758,5.512,16.496,8.111,19.997,12.042,13.831,10.735,18.016,11.716,23.151,6.507,4.004,0.037,4.651,15.83,17.415,21.732,19.555,14.274,13.901],[22.54,16.571,9.504,15.649,11.392,9.964,2.855,3.064,5.401,12.162,26.883,21.143,7.51,-2.145,8.439,16.483,14.528,15.358,11.135,14.206,9.641,-0.772,14.411,13.488,4.816,2.322,1.754,19.728,9.184,20.272,8.227,14.091,8.976,20.605,6.605,0.799,6.577,2.507,20.24,-0.484,4.096,9.28,21.492,11.625,3.372,20.252,17.594,17.111,25.446,11.811,5.707,-1.511,4.659,24.167,21.455,9.927,14.651,13.028,13.283,5.131,19.298,5.501,16.806,20.582,15.416,12.765,5.725,17.629,4.671,-1.16,8.861,1.277,24.236,14.944,3.348,28.428,18.37,3.38,25.537,21.765,9.147,10.089,10.119,9.822,8.723,12.709,10.361,21.413,3.922,12.848,8.134,22.952,-2.096,7.77,10.788,14.457,18.224,15.162,14.54,4.103,8.561,14.925,11.219,14.538,13.839,-1.542,7.817,15.973,2.044,12.496,18.56,6.662,12.515,15.747,19.697,-0.46,15.056,6.859,18.389,11.46,0.154,10.001,3.882,1.984,21.033,1.578,8.978,12.546,8.135,8.461,9.565,21.367,15.3,19.365,4.119,20.416,6.33,-0.947,6.331,20.289,7.908,3.252,11.24,20.135,2.982,8.742,23.923,8.34,20.276,4.231,-0.74,0.929,18.756,21.567,26.928,4.897,13.322,18.687,20.566,16.724,2.439,16.6,24.274,11.628,6.699,3.529,-0.274,14.14,19.7,21.451,4.0,4.756,5.431,16.519,8.293,19.465,11.659,13.251,11.15,18.303,12.213,22.86,6.346,3.938,-0.173,4.493,15.367,17.588,21.649,19.473,13.947,13.938],[22.627,16.575,9.347,15.555,11.243,9.806,2.625,3.133,5.518,12.32,26.928,21.156,7.25,-2.224,8.381,16.413,14.75,15.53,11.045,14.116,9.447,-0.76,14.442,13.341,4.541,2.316,1.736,19.587,9.292,20.353,8.243,14.098,9.092,20.515,6.501,0.655,6.77,2.647,20.415,-0.3,4.187,9.503,21.385,11.541,3.432,20.221,17.363,17.217,25.425,11.914,5.699,-1.554,4.424,24.336,21.542,9.963,14.543,13.211,13.33,5.049,19.537,5.665,16.676,20.509,15.85,13.178,6.058,17.217,5.161,-0.955,8.915,1.311,24.159,15.073,3.575,28.581,18.26,2.797,25.684,21.303,9.27,10.071,9.984,9.929,9.108,12.412,9.639,21.514,3.848,12.652,7.877,22.285,-2.115,7.53,11.336,14.555,18.05,15.393,14.355,3.932,8.699,15.133,12.113,14.691,13.695,-1.249,7.898,16.231,2.643,12.676,18.628,6.385,12.434,16.184,19.515,-0.46,15.153,6.606,18.253,11.236,0.203,9.742,3.875,2.271,21.488,1.444,9.283,12.322,8.988,8.24,9.561,21.556,14.777,19.409,4.366,20.984,6.717,-1.023,6.255,20.38,7.905,4.165,10.928,19.586,3.024,8.806,23.929,8.541,20.625,4.163,-0.779,0.419,18.729,21.028,26.731,4.268,13.266,18.356,20.922,17.107,2.57,16.197,24.349,11.95,6.877,3.618,-0.735,14.258,20.105,21.482,4.04,4.328,5.407,16.6,8.397,19.825,11.816,13.584,11.043,18.08,11.914,22.937,6.226,3.859,-0.167,4.412,14.867,17.875,21.323,19.071,13.565,14.425],[22.676,16.568,9.238,15.538,11.185,9.61,2.445,3.099,5.664,12.458,26.923,21.2,7.091,-2.293,8.529,16.341,15.015,15.832,10.987,13.954,9.237,-0.676,14.48,13.324,4.324,2.386,1.674,19.334,9.423,20.478,8.157,13.952,9.321,20.563,6.503,0.536,7.015,2.66,20.606,-0.184,4.184,9.643,21.289,11.522,3.486,20.26,16.943,17.402,25.34,11.889,5.817,-1.576,4.296,24.321,21.567,9.807,14.425,13.403,13.484,5.1,19.581,5.871,16.622,20.453,15.58,13.629,6.126,17.344,5.342,-0.651,8.428,1.355,23.857,15.174,3.172,28.547,18.461,2.998,25.527,21.496,9.485,9.96,9.01,9.47,9.126,12.138,9.244,22.034,3.597,12.621,8.093,21.649,-2.278,7.151,11.369,14.439,17.808,15.04,14.353,3.822,9.056,15.329,12.731,14.622,13.272,-1.442,7.971,15.989,2.448,12.933,18.944,6.181,12.455,15.869,19.492,-0.477,14.989,6.563,18.206,11.212,-0.065,9.19,4.208,1.955,21.74,1.169,9.426,12.279,9.223,8.322,9.468,21.5,14.634,18.818,4.212,21.309,6.981,-1.149,6.597,20.597,8.27,3.902,11.033,20.174,3.171,9.219,24.164,8.785,21.178,3.349,-0.564,0.985,18.81,21.117,26.635,4.395,13.162,18.402,20.5,17.121,3.302,16.06,24.528,12.177,6.51,3.333,-1.49,14.727,20.2,21.613,4.126,4.718,5.88,16.316,8.078,19.861,11.729,14.296,11.006,17.797,12.103,23.356,6.033,4.007,-0.148,4.584,14.987,17.845,21.166,18.763,13.167,13.956],[22.62,16.58,9.024,15.642,11.11,9.366,2.271,3.133,5.779,12.513,26.836,21.104,7.178,-2.307,8.768,16.371,15.187,16.113,11.012,13.871,9.172,-0.549,14.448,13.439,4.235,2.521,1.523,19.137,9.438,20.699,8.095,13.798,9.438,20.502,6.645,0.489,7.151,2.74,20.957,-0.018,4.073,9.794,21.261,11.548,3.5,20.282,16.633,17.548,25.307,11.926,5.986,-1.756,4.152,24.379,21.532,9.593,14.334,13.479,13.639,5.253,19.485,6.073,16.545,20.302,15.26,13.58,5.963,17.231,5.013,-0.543,8.278,1.231,23.894,14.797,2.811,28.34,18.042,3.543,25.684,21.72,9.662,10.27,9.009,9.385,8.887,12.404,9.188,21.567,3.431,13.348,8.085,21.696,-2.849,7.409,11.075,14.376,18.002,15.652,14.283,3.531,8.414,14.889,12.721,14.319,13.201,-1.573,8.532,15.439,1.903,12.879,18.897,6.088,12.333,16.101,19.629,-0.406,15.128,6.662,17.914,10.877,0.036,9.041,4.064,1.653,21.542,1.16,9.627,12.281,8.996,8.308,9.513,21.614,15.179,19.015,4.174,20.856,6.958,-1.327,6.598,20.734,8.376,2.745,11.368,20.502,3.06,9.037,23.924,9.0,21.564,3.301,-0.133,0.762,18.906,21.048,26.913,5.062,13.316,18.078,20.226,17.138,3.049,15.512,23.996,11.973,6.555,3.323,-1.557,14.742,19.887,21.679,4.412,4.696,6.071,16.303,7.959,19.635,12.089,13.956,10.725,18.034,11.855,23.145,5.955,4.222,-0.08,4.702,15.265,17.746,21.579,18.987,13.28,13.794],[22.478,16.52,8.735,15.718,11.102,9.189,2.042,3.251,5.76,12.618,26.802,20.891,7.359,-2.367,9.068,16.347,15.318,16.294,11.027,13.874,9.012,-0.472,14.328,13.478,4.169,2.471,1.452,19.114,9.466,20.809,8.061,13.761,9.306,20.488,6.808,0.428,7.126,2.802,21.178,0.083,3.895,9.787,21.237,11.75,3.479,20.282,16.673,17.623,25.331,12.024,6.149,-2.024,4.041,24.455,21.591,9.591,14.345,13.485,13.689,5.166,19.281,6.266,16.41,20.094,15.388,13.408,6.125,17.527,5.124,-0.637,8.697,1.38,24.074,14.799,2.586,28.275,18.235,3.597,25.403,21.459,9.227,10.787,9.509,9.408,8.932,12.164,9.314,21.904,3.612,13.264,8.159,21.938,-2.718,8.094,11.267,14.726,17.954,15.815,14.287,3.449,8.167,15.252,12.564,14.543,13.615,-1.308,8.409,15.466,2.319,12.867,19.093,6.032,12.173,16.381,19.272,-0.084,15.343,6.513,17.68,10.878,-0.168,9.229,3.956,1.81,21.605,1.104,9.848,12.042,9.655,8.533,9.425,21.563,14.83,19.2,4.291,20.748,6.803,-1.235,6.782,20.88,8.264,2.491,11.075,20.388,3.032,9.041,23.875,8.923,21.565,4.012,0.477,0.53,19.227,20.79,26.89,4.901,13.504,17.806,20.626,17.559,2.24,15.343,23.663,11.764,7.036,3.205,-1.337,14.663,19.67,21.258,4.643,4.448,5.62,16.413,7.981,19.241,11.974,13.5,10.796,18.035,12.013,23.091,5.674,4.318,-0.587,4.55,15.156,17.549,21.546,18.777,13.816,14.295],[22.256,16.522,8.591,15.947,11.041,9.07,1.836,3.381,5.691,12.749,26.8,20.77,7.672,-2.43,9.356,16.235,15.499,16.288,11.195,13.924,8.891,-0.277,14.228,13.517,3.987,2.382,1.506,19.151,9.512,20.912,8.045,13.636,9.379,20.563,6.882,0.348,7.004,2.878,21.278,0.162,3.641,9.724,21.237,11.908,3.463,20.273,16.815,17.618,25.354,12.165,6.159,-2.341,3.921,24.52,21.637,9.779,14.469,13.638,13.515,4.933,19.085,6.27,16.293,19.798,15.571,13.574,6.15,17.663,5.54,-0.814,9.316,1.584,24.114,15.207,2.664,28.378,18.334,3.547,25.373,21.42,9.139,10.661,9.469,9.482,8.705,12.034,9.172,21.49,3.055,13.062,8.159,22.039,-2.119,9.082,10.839,14.987,17.5,15.294,14.095,4.085,8.072,16.018,12.484,15.018,13.402,-1.214,8.033,15.677,2.6,12.608,19.14,5.823,12.36,16.294,19.181,-0.265,14.862,6.494,17.695,10.664,-0.366,9.4,3.944,1.62,21.559,0.943,9.402,12.029,8.862,8.703,9.043,21.632,14.779,18.94,4.387,21.082,6.716,-1.307,6.886,21.29,8.384,3.061,11.243,20.33,3.171,9.275,23.977,8.777,21.378,3.776,0.809,0.94,19.461,20.493,26.63,4.802,13.595,18.187,20.889,17.836,2.492,15.34,23.697,12.036,7.5,2.759,-1.388,14.707,19.825,21.25,4.511,4.395,6.37,16.023,8.023,18.98,11.663,13.808,10.98,17.709,12.208,23.407,5.574,4.617,-1.06,4.644,14.726,17.262,21.037,18.341,14.4,14.871],[22.112,16.58,8.6,16.228,10.996,8.98,1.562,3.44,5.701,12.807,26.97,20.673,8.146,-2.448,9.625,16.037,15.724,16.187,11.478,13.956,8.793,-0.083,14.079,13.649,3.835,2.334,1.588,19.239,9.375,20.914,8.001,13.652,9.371,20.641,6.864,0.271,6.841,2.997,21.199,0.267,3.446,9.731,21.258,11.873,3.554,20.267,16.93,17.574,25.289,12.212,6.268,-2.665,3.734,24.587,21.6,9.889,14.539,13.888,13.213,4.804,19.098,6.248,16.148,19.546,15.383,13.872,5.728,17.934,5.558,-1.03,9.792,1.605,23.809,15.415,2.519,28.489,18.214,3.894,25.452,20.96,9.555,10.702,8.857,9.226,8.599,11.755,8.989,21.312,2.582,13.315,7.868,22.245,-2.236,9.3,10.186,14.597,17.648,15.257,14.092,3.894,8.204,15.218,12.242,14.995,13.11,-1.191,8.173,15.756,1.974,13.152,18.984,5.572,12.63,16.322,19.365,0.027,14.605,6.296,18.033,10.577,-0.066,10.128,3.969,1.855,21.522,0.896,9.622,12.114,9.114,8.708,9.263,21.802,14.73,19.55,4.428,21.719,6.903,-1.309,6.878,21.763,8.273,3.78,11.938,20.829,3.32,9.137,23.725,8.522,20.76,2.871,0.584,1.135,19.189,20.472,26.67,4.078,13.52,18.456,20.915,17.384,2.36,15.861,23.72,12.508,7.314,2.907,-1.632,14.774,19.497,21.414,4.298,4.237,6.689,16.272,8.342,19.086,11.84,13.589,11.15,17.625,12.175,23.268,5.619,4.828,-1.21,4.499,14.87,17.298,20.883,18.134,14.546,15.06],[21.855,16.557,8.62,16.409,10.834,8.964,1.203,3.418,5.736,12.856,27.333,20.597,8.536,-2.589,9.795,15.94,15.936,16.091,11.56,13.896,8.644,-0.015,13.871,13.87,3.673,2.223,1.749,19.501,9.325,20.743,7.996,13.908,9.371,20.826,6.977,0.248,6.615,3.185,21.239,0.356,3.195,9.737,21.308,11.804,3.624,20.267,17.036,17.337,25.144,12.166,6.38,-2.742,3.588,24.522,21.521,9.986,14.509,14.113,13.037,4.794,19.307,6.271,16.051,19.503,15.222,14.263,5.763,17.985,5.598,-0.991,10.285,1.572,23.547,15.289,1.749,28.852,18.162,3.958,25.847,20.842,9.703,11.28,8.942,9.127,8.34,11.818,8.595,21.637,2.741,12.891,8.09,21.974,-2.486,9.323,10.556,14.783,17.716,15.483,14.254,3.407,8.359,15.116,12.703,14.601,13.512,-1.005,7.894,15.235,1.419,13.327,19.049,5.363,12.243,16.272,19.466,0.493,14.801,6.35,18.118,10.454,0.155,10.69,3.968,1.934,21.53,0.781,9.674,12.211,9.552,8.642,9.348,21.642,14.665,19.391,4.625,22.253,6.758,-1.402,6.442,21.861,8.418,3.382,12.023,20.303,3.457,8.888,23.517,8.434,20.683,2.886,0.661,0.986,19.282,20.635,26.544,3.896,13.476,18.236,20.652,17.055,2.058,16.491,23.752,12.135,7.446,3.225,-2.079,14.865,19.398,21.697,4.445,4.15,6.022,16.326,8.486,18.922,11.29,13.546,11.128,17.625,12.438,23.217,5.434,4.862,-1.303,4.273,15.169,17.391,21.101,18.084,14.398,15.526],[21.599,16.547,8.467,16.408,10.611,8.967,0.978,3.355,5.76,13.052,27.813,20.578,8.702,-2.735,9.966,15.945,16.004,16.089,11.622,13.771,8.467,0.063,13.723,14.061,3.455,2.092,1.847,19.664,9.266,20.635,8.017,14.228,9.598,20.895,7.002,0.345,6.464,3.359,21.234,0.39,2.969,9.737,21.387,11.775,3.568,20.266,17.16,17.216,24.981,12.035,6.281,-2.69,3.444,24.349,21.504,10.112,14.547,14.355,12.962,4.807,19.425,6.301,16.034,19.61,15.052,14.421,6.011,17.812,5.534,-0.947,10.331,1.448,23.286,15.351,1.839,29.347,17.965,3.846,26.373,20.979,9.095,11.603,9.445,9.444,8.476,11.788,8.596,21.887,2.44,13.216,8.634,21.092,-3.147,9.341,11.432,15.6,17.516,15.952,14.137,3.385,8.28,15.23,12.76,14.692,13.613,-0.933,8.327,14.73,1.551,13.072,19.0,5.374,12.019,16.083,20.428,-0.164,14.619,6.396,17.991,10.272,0.245,10.502,3.916,1.438,21.239,0.932,9.258,12.48,9.47,8.844,9.071,21.944,15.234,19.138,4.931,22.427,6.337,-1.415,6.361,21.858,8.421,3.26,11.605,20.322,3.233,8.925,23.504,8.197,20.761,3.13,0.783,1.285,18.952,20.739,26.202,4.532,13.297,18.564,20.442,16.727,2.168,15.831,23.859,11.81,7.432,2.601,-2.378,15.342,20.081,21.322,4.634,4.24,6.322,15.999,8.25,18.67,11.047,13.473,11.061,17.795,12.232,23.188,5.307,4.634,-1.277,4.324,14.981,17.642,21.121,18.529,14.035,15.255],[21.387,16.382,8.215,16.213,10.58,8.814,1.081,3.288,5.786,13.272,28.246,20.383,8.746,-2.897,10.151,16.015,16.055,16.162,11.629,13.672,8.455,0.047,13.555,14.227,3.308,1.981,1.747,19.764,9.265,20.642,7.986,14.532,9.668,20.894,6.989,0.604,6.36,3.379,21.201,0.433,2.893,9.675,21.511,11.671,3.555,20.273,17.28,17.147,24.759,11.785,6.1,-2.753,3.249,24.209,21.524,10.156,14.529,14.577,13.076,4.795,19.543,6.509,15.977,19.785,15.173,14.362,5.805,17.803,5.259,-1.249,10.244,1.55,23.275,15.566,2.115,29.794,18.136,4.06,26.786,20.871,9.253,11.798,8.59,8.959,8.589,11.673,9.22,21.825,2.214,13.662,8.618,20.973,-3.636,9.313,12.113,15.386,17.715,16.089,13.495,3.75,7.674,15.051,12.89,14.838,13.212,-0.885,8.262,15.301,1.705,13.496,18.849,5.058,12.178,16.339,20.194,0.12,14.41,6.213,17.927,10.304,0.382,10.226,3.784,1.735,20.941,1.105,9.875,12.923,10.062,8.566,8.856,22.104,15.591,19.607,4.979,22.124,5.978,-1.022,7.182,21.817,8.108,3.121,11.379,21.051,3.471,9.52,23.224,8.242,20.639,2.973,0.429,1.668,19.046,21.025,26.116,4.897,13.312,18.634,20.604,16.556,1.912,16.283,23.701,12.068,7.32,2.302,-2.05,15.548,20.171,20.944,4.634,3.937,6.555,16.128,8.304,18.686,11.227,13.694,10.98,17.716,11.654,22.854,5.014,4.363,-1.621,4.719,15.38,17.764,21.08,18.841,13.638,14.855],[21.32,16.217,7.864,16.037,10.464,8.666,1.132,3.375,5.704,13.174,28.446,20.273,8.737,-3.126,10.407,16.207,16.056,16.334,11.589,13.591,8.589,0.079,13.301,14.414,3.284,1.941,1.711,19.863,9.287,20.65,7.913,14.714,9.878,20.967,7.095,0.833,6.299,3.439,21.218,0.363,2.976,9.699,21.701,11.574,3.565,20.351,17.47,17.105,24.497,11.493,5.937,-2.822,3.115,24.05,21.542,10.148,14.452,14.591,13.323,4.776,19.601,6.568,15.833,19.913,15.125,14.578,5.707,17.718,5.158,-1.396,10.312,1.465,23.127,15.764,1.854,30.012,17.91,4.125,27.107,20.449,9.532,12.022,8.688,8.988,8.188,11.968,9.372,21.315,2.655,13.409,8.458,21.158,-3.235,9.854,12.163,15.264,17.866,16.001,13.613,3.844,7.791,15.369,12.548,14.788,13.392,-1.019,8.089,15.958,1.639,13.304,18.941,4.384,11.916,16.206,19.304,0.49,14.444,6.201,18.279,10.402,0.037,10.062,3.604,1.746,21.175,1.355,10.078,13.186,9.958,8.758,8.929,22.094,15.776,19.529,4.984,22.005,6.113,-0.92,7.387,21.728,8.086,3.126,11.194,21.512,3.858,9.208,23.049,8.16,21.04,2.524,0.407,1.351,18.793,20.827,26.127,4.406,13.047,19.101,20.878,17.201,2.326,16.452,23.678,11.769,6.737,2.647,-1.609,15.833,19.971,21.269,4.799,4.276,6.536,16.143,8.374,18.987,11.604,13.9,11.057,17.422,11.263,23.114,5.004,4.154,-1.64,4.325,15.295,17.754,21.138,18.625,13.561,15.122],[21.459,16.108,7.785,16.055,10.352,8.596,1.008,3.511,5.503,12.966,28.412,20.533,8.826,-3.236,10.773,16.227,15.955,16.594,11.41,13.673,8.624,0.019,13.31,14.528,3.201,1.99,1.684,19.974,9.307,20.706,7.857,14.845,10.208,20.954,7.335,0.937,6.243,3.684,21.319,0.206,3.099,9.652,21.875,11.442,3.459,20.485,17.666,17.072,24.493,11.169,5.783,-2.664,3.019,24.005,21.617,10.098,14.36,14.544,13.515,4.825,19.394,6.371,15.63,19.843,14.827,14.083,5.621,17.943,4.885,-1.726,10.251,1.769,23.179,15.619,1.801,29.788,17.71,4.252,26.973,20.434,9.419,12.285,8.523,9.351,7.714,11.741,9.271,21.356,2.617,13.246,8.254,21.722,-3.187,10.419,11.823,15.798,17.69,16.036,13.834,4.088,8.375,15.264,12.684,14.431,13.241,-0.69,8.254,16.037,1.842,13.511,19.014,3.707,12.093,16.236,19.627,0.438,14.203,6.256,18.641,10.454,0.074,9.78,2.91,1.677,21.494,1.512,10.069,13.262,9.609,8.898,9.189,21.747,15.882,19.395,4.717,22.337,6.28,-0.679,7.048,21.705,8.372,3.398,11.202,21.082,3.618,8.496,22.947,7.916,21.103,2.848,0.214,1.084,18.892,20.685,25.785,4.176,12.98,19.128,21.182,17.16,2.644,16.566,23.926,11.458,6.009,2.046,-1.78,15.767,20.218,21.733,4.642,4.509,6.516,15.706,8.327,19.209,11.703,14.104,11.389,17.352,11.377,23.188,4.966,3.844,-1.481,3.819,14.833,17.566,20.763,18.503,13.682,15.207],[21.619,16.001,7.893,16.32,10.324,8.534,0.969,3.678,5.197,12.784,28.271,20.931,8.986,-3.259,11.111,16.032,15.808,16.758,11.261,13.795,8.456,-0.007,13.572,14.685,3.063,2.01,1.66,20.187,9.241,20.808,7.984,14.905,10.542,20.861,7.412,1.01,6.089,3.828,21.416,0.045,3.126,9.486,22.011,11.313,3.307,20.587,17.651,17.135,24.58,11.16,5.504,-2.565,2.791,24.107,21.682,9.983,14.237,14.557,13.406,4.859,19.167,6.217,15.446,19.73,14.887,13.751,5.727,17.627,4.889,-1.893,10.065,1.824,23.426,15.433,1.724,29.472,17.671,4.521,26.421,20.724,9.789,12.582,8.34,8.792,8.314,11.474,9.115,22.045,2.341,13.254,7.938,22.252,-3.456,10.383,11.169,15.51,17.84,15.858,14.321,4.529,8.242,15.589,12.888,14.519,12.835,-0.796,7.993,15.912,1.967,13.793,19.089,4.055,12.441,16.643,20.528,0.256,13.968,6.189,18.369,10.388,0.084,9.918,2.403,1.619,21.39,1.463,10.05,13.177,9.909,9.02,8.99,21.786,15.562,19.367,5.167,22.694,6.217,-0.522,7.308,21.879,8.569,3.729,11.034,20.991,3.711,8.932,22.985,7.922,20.904,3.103,0.021,1.164,18.898,20.975,25.981,4.145,13.074,19.149,21.202,16.574,2.325,16.96,24.095,11.436,5.877,2.022,-1.781,15.526,19.509,21.303,4.299,4.139,6.312,15.329,8.558,18.587,11.696,14.324,11.383,17.182,10.88,23.182,4.563,3.606,-1.186,4.463,15.248,17.259,21.109,18.611,13.782,15.308],[21.752,16.03,8.092,16.512,10.059,8.509,1.087,3.871,4.972,12.66,27.941,21.132,9.061,-3.258,11.375,15.928,15.67,16.781,11.142,13.893,8.307,0.078,13.846,14.88,3.256,1.989,1.538,20.394,9.105,20.91,8.075,14.82,10.775,21.048,7.384,1.024,6.024,3.963,21.513,-0.158,3.048,9.498,22.131,11.234,3.19,20.49,17.613,17.115,24.623,11.286,5.308,-2.464,2.537,24.133,21.686,9.955,14.184,14.552,13.163,4.783,18.9,6.17,15.267,19.618,14.855,13.853,5.494,18.138,4.743,-1.847,9.995,1.967,23.442,16.018,1.605,29.556,17.717,4.54,26.567,20.887,9.756,12.608,8.964,8.623,8.606,11.645,9.184,22.13,2.575,13.021,7.723,22.559,-3.126,10.582,10.589,15.583,17.651,15.863,14.307,4.137,8.09,15.807,12.959,14.838,13.213,-1.151,7.645,15.559,1.657,13.372,19.124,4.245,12.295,16.61,20.906,0.422,14.45,6.441,18.952,9.996,-0.218,10.36,2.694,1.437,21.193,1.392,10.212,13.01,10.724,9.117,9.061,21.698,15.617,19.377,5.57,22.243,5.436,-0.556,6.909,22.02,8.037,3.461,10.751,20.995,3.877,9.221,22.949,7.794,21.238,2.724,-0.044,1.488,18.934,21.658,26.217,3.986,12.744,19.011,21.158,16.645,2.398,17.09,24.517,11.539,5.986,2.36,-1.788,15.157,19.241,21.344,4.331,4.428,6.5,15.5,8.479,18.25,11.384,13.931,11.362,16.993,10.827,23.097,4.275,3.563,-1.567,4.925,14.623,17.166,21.704,18.67,13.975,15.669],[21.818,16.032,8.436,16.728,9.815,8.544,1.122,4.004,4.864,12.701,27.713,21.154,8.992,-3.157,11.574,15.918,15.585,16.747,11.039,13.875,8.14,0.245,14.161,15.026,3.439,1.955,1.447,20.698,9.02,20.893,8.152,14.806,10.815,21.202,7.22,1.01,5.973,4.128,21.473,-0.376,3.044,9.571,22.323,11.173,2.956,20.277,17.617,17.145,24.674,11.32,5.273,-2.375,2.432,24.123,21.803,10.027,14.085,14.509,12.887,4.819,18.848,6.228,15.163,19.48,14.731,13.92,5.122,18.457,4.364,-1.444,10.179,2.211,23.659,16.449,1.559,29.236,17.754,4.278,26.199,20.719,9.548,12.419,8.679,8.613,8.006,11.456,9.627,21.749,2.749,12.86,7.63,22.508,-3.07,10.739,10.759,15.932,17.631,15.68,13.941,3.477,8.191,15.306,12.832,15.038,13.862,-0.739,7.949,15.059,1.431,13.769,19.073,4.887,12.245,16.205,20.238,0.502,14.427,6.751,19.329,10.005,-0.228,10.382,3.336,1.398,21.288,1.317,10.319,13.282,10.988,8.988,8.679,21.718,15.6,19.777,5.43,21.56,5.258,-0.33,6.405,21.881,7.899,3.084,10.728,21.281,3.897,9.182,23.193,7.911,21.383,3.068,-0.035,1.171,18.472,21.767,26.075,4.343,12.492,18.949,21.029,16.993,2.694,16.74,24.104,11.525,6.175,1.998,-1.445,15.318,19.422,21.717,4.392,4.369,6.744,15.674,8.436,18.543,10.987,13.445,11.436,16.704,11.348,23.122,4.272,3.438,-1.374,4.348,14.586,16.922,21.304,18.645,13.224,15.935],[21.783,15.893,8.391,17.066,9.625,8.664,1.028,3.885,4.836,12.85,27.537,21.079,8.852,-3.012,11.65,15.989,15.55,16.747,11.023,13.877,8.043,0.461,14.374,15.108,3.489,1.955,1.594,20.897,8.992,20.755,8.16,14.979,10.703,21.089,6.909,1.083,6.005,4.176,21.31,-0.567,3.181,9.562,22.469,11.151,2.773,20.086,17.459,17.137,24.651,11.351,5.247,-2.193,2.42,24.138,21.944,10.132,13.925,14.581,12.734,4.876,18.951,6.343,15.072,19.468,15.015,14.242,5.235,18.231,4.729,-1.346,10.206,1.956,23.508,16.288,1.492,28.824,17.629,4.5,25.808,20.981,9.363,12.284,8.624,8.819,8.48,10.869,9.999,21.517,2.604,12.749,7.828,22.766,-3.334,10.405,10.835,16.301,17.745,15.234,14.052,3.415,7.93,15.697,12.886,14.853,13.372,-0.693,7.967,15.258,1.676,14.446,19.244,5.336,12.13,16.313,20.673,0.465,14.576,6.482,19.33,9.746,0.104,10.409,3.451,1.167,21.484,1.588,10.543,13.431,10.284,8.585,9.018,21.926,15.769,19.574,5.18,21.45,5.677,-0.423,6.551,21.895,8.257,3.145,10.77,21.622,4.41,9.114,23.499,8.037,21.174,2.921,-0.244,0.658,18.76,21.427,26.088,4.008,12.681,19.191,20.595,16.974,2.637,16.838,23.728,11.288,6.322,1.746,-1.206,15.427,19.319,21.675,4.534,4.292,6.268,15.298,8.381,18.554,11.157,13.526,11.258,16.812,11.369,23.216,4.265,3.397,-1.119,4.696,14.582,17.131,20.925,18.236,13.246,15.664],[21.738,15.755,8.07,17.487,9.58,8.886,0.931,3.669,4.949,12.891,27.376,21.046,8.68,-2.964,11.516,16.196,15.48,16.754,11.11,13.777,7.986,0.457,14.462,15.279,3.633,1.961,1.74,21.037,9.103,20.577,8.117,15.121,10.592,21.074,6.652,1.288,6.199,4.041,21.253,-0.774,3.304,9.551,22.466,11.18,2.703,19.94,17.261,17.057,24.671,11.4,5.271,-1.996,2.432,24.08,21.997,10.095,13.81,14.635,12.838,4.996,19.023,6.47,15.061,19.397,14.825,14.338,5.4,18.267,4.564,-1.14,10.051,1.878,23.553,16.296,1.602,29.066,17.509,4.028,26.072,21.057,9.369,12.643,8.365,8.08,8.353,10.834,9.697,21.752,2.562,12.922,8.392,22.698,-3.123,10.409,10.639,16.089,18.008,15.512,14.747,3.083,7.348,16.23,12.775,14.855,12.835,-0.74,7.895,15.838,1.38,14.144,19.151,5.52,12.37,16.122,20.822,0.896,14.756,6.363,19.421,9.924,0.309,10.339,3.351,1.378,21.419,1.792,10.047,13.316,10.138,8.354,9.133,21.547,15.827,19.485,5.127,21.563,5.856,-0.429,6.247,22.084,8.669,3.406,10.821,21.379,4.288,8.785,23.215,7.762,20.471,2.313,-0.197,0.414,18.81,21.365,26.081,3.073,12.813,18.908,20.609,16.814,2.582,16.639,24.294,11.588,5.975,2.441,-1.154,15.588,19.81,21.441,4.75,4.525,6.185,15.037,8.339,18.894,11.266,13.836,11.464,17.006,11.094,23.111,4.202,3.432,-0.973,4.498,14.21,17.3,21.241,18.136,13.706,15.681],[21.861,15.645,7.696,17.759,9.503,8.99,0.979,3.376,5.034,12.725,27.34,21.178,8.613,-2.829,11.301,16.532,15.418,16.639,11.087,13.667,8.047,0.312,14.567,15.344,3.776,1.911,1.804,21.109,9.269,20.412,7.953,15.024,10.568,21.181,6.55,1.56,6.261,3.769,21.255,-0.96,3.261,9.603,22.411,11.201,2.547,19.922,16.995,16.94,24.836,11.522,5.309,-1.689,2.509,24.038,21.891,10.014,13.756,14.652,13.019,5.156,19.188,6.607,15.143,19.343,14.395,14.083,5.547,19.018,4.548,-1.277,9.597,1.525,23.681,17.306,1.49,29.032,17.326,3.521,26.218,20.897,10.057,12.94,8.64,8.025,7.895,10.999,9.538,21.798,2.588,13.061,8.727,22.516,-2.964,10.715,11.057,15.708,18.3,16.223,14.461,3.362,7.479,15.492,12.471,15.076,12.946,-0.714,8.079,16.01,1.431,13.754,18.783,5.568,12.458,16.548,20.651,0.893,14.554,6.368,19.564,9.786,0.485,10.296,2.713,2.118,21.069,1.944,9.854,13.421,10.575,8.222,9.153,21.673,15.472,19.759,4.721,22.055,5.989,-0.073,6.426,22.251,8.251,3.475,10.853,21.175,3.456,8.652,23.043,8.225,20.001,2.968,-0.449,0.544,18.825,21.102,26.004,2.444,12.73,18.612,20.873,16.459,3.006,16.578,24.159,11.504,5.91,2.567,-1.982,15.597,20.006,21.489,5.016,4.446,6.467,15.205,8.369,18.706,11.175,13.785,11.413,16.957,10.809,22.962,3.9,3.462,-1.082,4.57,14.222,17.447,21.591,18.086,13.535,15.857],[22.044,15.587,7.451,17.99,9.515,9.073,1.115,2.981,5.044,12.491,27.368,21.35,8.578,-2.758,11.182,16.638,15.468,16.397,10.935,13.627,8.154,0.135,14.599,15.342,3.787,1.838,2.016,21.123,9.457,20.32,7.797,14.841,10.687,21.328,6.535,1.853,6.335,3.31,21.295,-1.079,3.285,9.512,22.278,11.121,2.335,20.061,16.738,16.874,24.96,11.593,5.502,-1.546,2.355,23.976,21.695,10.018,13.804,14.73,13.048,5.219,19.354,6.717,15.233,19.403,14.739,13.93,5.821,19.331,4.971,-1.188,9.292,1.375,23.79,17.238,1.388,28.95,17.26,3.907,25.959,20.989,9.766,12.865,8.195,8.458,8.175,11.0,9.691,22.161,2.698,12.952,8.374,22.46,-2.95,10.456,11.533,15.481,18.508,15.817,14.137,4.188,7.875,15.259,12.319,14.674,13.112,-0.978,8.538,16.255,2.018,13.602,18.776,5.468,11.958,16.464,21.214,0.173,14.79,6.544,19.58,10.114,0.661,10.471,2.545,2.132,20.765,2.559,10.606,13.289,10.196,8.199,8.909,21.533,15.17,19.632,4.508,22.553,6.202,0.502,6.514,22.589,8.196,2.93,10.41,21.559,3.538,9.137,23.35,8.079,20.084,3.24,-0.716,0.611,18.574,20.84,26.093,2.158,12.831,18.212,21.131,16.323,2.965,16.238,24.004,11.774,5.791,2.106,-1.414,15.39,20.067,21.374,5.037,4.488,6.567,15.714,8.231,18.464,11.265,13.523,11.236,16.855,11.05,22.941,4.26,3.493,-0.431,4.871,14.521,17.55,21.177,18.191,13.128,15.931],[22.135,15.695,7.397,18.046,9.695,9.099,1.292,2.87,5.266,12.334,27.505,21.457,8.427,-2.846,11.079,16.528,15.536,16.178,10.838,13.533,8.366,-0.088,14.51,15.301,3.846,1.936,2.306,21.344,9.71,20.25,7.796,14.771,10.676,21.37,6.592,2.045,6.348,2.876,21.497,-1.29,3.443,9.546,22.222,11.002,2.11,20.194,16.523,16.779,24.944,11.574,5.67,-1.415,2.266,23.977,21.366,10.024,13.949,14.787,12.875,5.212,19.331,6.771,15.408,19.434,15.157,13.837,5.534,19.422,4.61,-1.235,9.696,1.208,23.843,16.829,1.822,29.06,17.631,3.701,26.028,21.285,9.212,12.607,7.347,8.605,7.986,11.136,9.781,22.285,2.962,12.557,7.914,22.387,-2.474,10.275,10.825,15.612,18.428,15.567,14.551,4.018,8.155,15.662,12.281,14.478,13.003,-1.325,8.553,16.096,1.513,13.829,18.673,5.653,11.907,15.678,21.017,0.369,14.823,6.212,19.762,10.067,1.034,10.887,2.314,2.15,21.05,3.123,10.36,13.114,10.286,8.095,8.705,21.937,15.128,19.705,4.158,22.218,6.197,0.338,6.357,22.804,8.206,2.453,10.309,21.466,3.386,8.941,23.451,8.181,20.954,2.849,-0.458,-0.0,18.538,21.093,26.549,2.057,12.547,18.13,20.739,16.977,2.629,16.194,24.023,11.62,6.105,1.402,-1.078,15.802,20.151,21.421,5.003,4.406,6.531,16.273,8.162,18.807,11.55,14.074,11.215,16.891,11.567,22.965,4.064,3.58,0.265,4.195,14.494,17.56,20.988,18.303,12.58,15.818],[22.178,15.932,7.285,17.984,9.882,9.003,1.49,2.929,5.555,12.217,27.63,21.496,8.339,-2.903,10.897,16.376,15.679,16.062,10.631,13.523,8.582,-0.067,14.351,15.334,3.965,1.908,2.596,21.529,9.895,20.044,7.799,14.935,10.317,21.348,6.552,2.118,6.302,2.56,21.68,-1.636,3.592,9.661,22.34,10.861,1.835,20.202,16.433,16.783,24.888,11.489,5.686,-1.321,2.199,24.146,21.099,10.035,14.0,14.911,12.753,4.855,19.222,6.806,15.578,19.45,14.962,13.885,5.477,19.442,4.487,-1.182,9.846,1.016,24.086,17.166,2.023,29.283,17.68,3.069,26.329,21.384,9.808,12.269,8.075,8.783,7.432,11.41,9.657,22.129,2.993,11.893,7.312,22.747,-2.693,10.196,10.49,15.738,18.139,15.61,14.376,3.507,8.147,15.394,12.453,15.027,12.609,-1.732,8.756,15.522,1.341,13.969,18.45,5.844,12.368,15.297,21.125,0.76,14.688,6.118,19.995,10.191,1.165,11.289,2.93,2.347,21.26,3.068,10.161,13.414,10.338,8.207,8.816,21.613,15.465,20.013,3.719,22.248,5.832,0.405,7.027,22.824,8.4,2.624,10.531,21.862,3.004,8.765,23.612,8.368,21.379,2.972,-0.701,-0.267,18.373,21.328,26.621,1.486,12.575,18.023,20.981,17.239,3.091,16.206,24.03,11.396,6.615,1.733,-1.077,15.834,19.307,20.941,5.257,4.962,6.473,16.361,8.57,18.992,11.548,13.72,11.358,17.197,11.576,23.155,3.938,3.9,0.402,4.58,14.802,17.559,20.582,18.037,12.556,15.553],[22.267,15.979,7.22,17.998,10.037,9.007,1.473,2.879,5.781,12.066,27.618,21.575,8.243,-2.841,10.781,16.185,15.824,15.911,10.506,13.613,8.774,0.122,14.177,15.464,3.963,1.84,2.602,21.576,9.921,19.854,7.85,15.107,10.082,21.356,6.546,2.225,6.267,2.481,21.806,-2.053,3.788,9.734,22.646,10.851,1.607,20.27,16.463,16.775,24.908,11.377,5.831,-1.297,2.232,24.392,20.857,10.217,14.04,14.996,12.657,4.728,19.073,7.118,15.667,19.319,14.947,13.848,5.793,19.59,4.906,-1.22,9.49,1.097,23.978,17.211,2.192,29.389,17.789,3.143,26.558,21.378,9.288,12.109,8.531,8.783,7.624,11.596,9.644,21.928,2.777,11.971,7.099,22.879,-2.993,9.579,10.191,15.89,17.923,15.614,13.895,3.778,8.692,15.064,12.356,15.228,12.532,-1.385,9.354,15.282,1.458,13.625,18.544,5.742,12.347,16.291,21.272,0.386,14.763,6.266,20.14,10.077,1.235,11.755,3.553,1.968,21.175,2.844,9.898,13.48,9.605,8.235,9.262,20.819,15.384,19.899,3.61,22.968,5.509,0.823,6.503,23.127,8.838,2.595,10.456,22.1,3.308,8.851,23.965,7.875,20.962,2.842,-1.573,-0.289,18.354,21.014,26.344,0.758,12.705,18.333,20.687,16.963,3.173,15.844,23.976,11.604,6.57,1.857,-1.256,15.405,19.246,20.907,5.389,4.348,6.935,16.079,8.624,18.719,11.026,13.23,11.65,17.256,11.305,23.274,4.044,4.009,0.413,4.619,14.823,17.156,20.018,17.795,12.815,15.597],[22.312,15.894,7.377,18.059,10.184,9.126,1.419,2.94,5.956,11.981,27.607,21.591,7.891,-2.774,10.623,16.011,15.752,15.839,10.439,13.656,8.843,0.331,13.991,15.514,3.874,1.783,2.34,21.632,10.128,20.012,7.959,15.02,9.91,21.223,6.431,2.352,6.123,2.653,21.99,-2.498,3.874,9.816,22.808,11.085,1.469,20.22,16.612,16.632,25.037,11.229,6.015,-1.355,2.365,24.569,20.637,10.392,14.165,14.902,12.443,4.719,18.872,7.519,15.662,19.039,15.043,13.398,6.336,19.511,5.298,-0.907,9.526,1.12,24.091,16.942,1.99,29.31,17.837,3.256,26.298,21.316,9.068,12.06,8.002,8.739,8.232,11.554,9.37,22.148,2.919,12.401,7.275,23.038,-2.892,9.62,10.251,15.886,17.817,15.838,13.858,4.46,8.749,15.217,12.198,14.823,12.783,-0.89,9.034,15.584,1.6,13.77,18.702,5.438,12.261,16.367,21.248,0.219,14.776,6.674,19.986,10.514,1.183,11.924,3.591,1.912,21.033,2.929,9.792,13.367,9.649,7.967,9.258,21.278,15.709,19.631,4.054,23.054,5.536,0.953,6.034,23.595,8.437,2.336,10.485,21.628,3.026,9.114,23.948,7.829,19.901,3.536,-2.295,-0.807,18.237,21.429,26.583,0.655,12.758,18.325,20.717,16.733,3.18,16.06,24.145,11.276,6.333,1.902,-1.052,15.641,19.551,20.907,5.719,4.059,7.21,16.345,8.824,18.692,10.723,13.165,11.821,17.21,10.875,23.507,4.166,3.943,0.05,4.032,14.614,17.085,19.673,17.703,12.761,16.082],[22.33,15.83,7.625,18.077,10.21,9.273,1.473,3.032,6.123,11.967,27.598,21.625,7.551,-2.654,10.496,16.014,15.545,15.824,10.399,13.708,8.761,0.36,13.799,15.509,3.798,1.769,2.079,21.61,10.442,20.321,8.1,14.789,9.801,21.082,6.279,2.381,5.961,2.814,22.033,-2.807,3.944,9.869,22.717,11.262,1.566,19.89,16.81,16.349,25.213,11.046,6.004,-1.475,2.519,24.716,20.531,10.465,14.114,14.86,12.257,4.697,18.839,7.563,15.797,18.925,14.602,13.25,5.894,19.359,5.611,-0.968,8.633,1.301,24.111,16.941,1.796,29.211,17.521,3.465,26.256,21.208,9.249,11.968,7.923,9.382,8.587,11.524,9.549,22.044,3.148,12.139,7.612,22.899,-2.563,9.683,10.919,15.405,17.671,15.179,14.073,4.449,8.665,15.966,12.026,15.148,13.022,-0.248,9.422,15.904,1.435,14.106,19.042,4.956,12.258,15.374,21.462,1.23,14.558,6.626,20.08,10.356,1.218,12.186,3.418,2.002,21.286,3.129,10.053,13.067,10.159,7.892,9.372,21.495,15.235,19.37,4.121,22.754,5.805,0.727,6.565,24.038,8.487,2.207,10.864,21.961,2.658,9.39,23.978,7.834,19.984,3.348,-3.107,-1.052,17.935,21.85,26.869,1.073,13.147,18.568,20.755,16.492,3.469,16.719,24.443,11.303,6.718,2.437,-0.616,15.506,18.968,20.304,6.017,4.494,7.13,16.486,8.758,18.705,10.588,13.313,11.855,17.366,11.226,23.955,4.192,3.948,-0.151,3.954,14.98,16.992,19.619,17.809,12.775,15.962],[22.31,15.715,7.862,17.956,10.248,9.484,1.585,3.082,6.291,11.969,27.58,21.58,7.204,-2.491,10.453,16.122,15.432,15.759,10.475,13.789,8.545,0.489,13.726,15.548,3.624,1.833,1.982,21.652,10.775,20.607,8.251,14.387,9.865,21.049,6.349,2.303,5.817,2.715,21.976,-3.002,4.035,9.989,22.601,11.352,1.743,19.688,17.105,15.952,25.424,10.991,6.134,-1.514,2.631,24.881,20.455,10.426,14.017,14.876,12.18,4.762,18.88,7.401,15.906,18.947,14.403,13.414,5.853,19.391,5.521,-1.169,8.045,1.289,24.121,17.004,2.366,29.356,17.35,3.768,26.322,21.218,9.295,12.12,8.505,9.405,8.557,12.016,9.717,21.964,2.862,11.889,7.81,22.762,-2.214,9.384,11.281,15.306,17.543,14.894,14.161,4.011,8.825,15.943,11.927,14.58,13.116,-0.349,9.487,16.085,1.426,13.827,19.394,5.293,12.377,16.343,21.106,1.622,14.392,6.517,19.989,10.135,0.541,12.161,2.804,1.833,21.306,3.012,9.772,12.832,9.465,7.734,9.49,20.911,15.098,19.368,3.908,22.849,5.858,0.656,6.213,23.987,9.063,2.679,11.021,22.339,3.115,9.276,24.32,7.459,20.249,2.897,-3.911,-1.428,17.571,21.225,26.863,1.627,13.207,18.689,21.031,16.112,3.443,16.846,24.538,11.521,6.999,2.886,-0.518,15.226,19.086,19.838,5.815,4.738,6.935,16.369,8.909,18.752,10.807,12.801,11.918,17.536,11.121,23.573,4.071,4.11,-0.474,4.094,14.804,17.039,20.014,18.32,12.496,15.581],[22.069,15.73,8.114,17.787,10.408,9.551,1.734,3.091,6.473,12.007,27.535,21.422,6.908,-2.42,10.437,16.223,15.39,15.865,10.624,13.94,8.424,0.719,13.651,15.534,3.651,1.832,1.916,21.584,10.889,20.887,8.33,14.141,9.689,20.943,6.416,2.175,5.631,2.636,21.897,-3.214,4.07,10.129,22.443,11.425,1.879,19.826,17.447,15.543,25.486,11.043,6.297,-1.521,2.736,24.974,20.446,10.313,14.026,14.916,12.106,4.834,18.921,7.237,15.828,19.06,14.608,13.501,6.299,19.229,5.589,-0.738,7.893,1.285,23.966,16.618,3.043,29.203,17.485,3.694,26.27,21.526,9.793,12.158,8.721,9.016,8.687,11.808,9.757,22.237,2.689,12.176,7.903,22.567,-1.938,9.308,11.311,15.438,17.951,15.207,13.43,3.479,8.59,15.336,12.029,14.451,12.847,-0.527,9.518,15.769,1.57,13.962,19.299,5.305,12.759,16.069,21.336,0.619,14.772,6.812,20.064,9.386,0.282,12.415,3.064,1.835,21.457,3.104,9.4,12.548,9.641,7.907,9.718,21.016,15.329,20.045,3.772,22.99,5.875,0.631,6.63,23.379,9.016,2.604,10.686,21.945,3.308,8.875,24.467,7.266,20.433,3.483,-4.566,-1.768,17.392,20.735,27.348,1.651,13.243,19.025,21.027,15.573,3.543,16.582,24.779,11.529,7.152,2.608,-0.501,15.5,19.228,19.807,5.523,4.439,6.742,16.381,8.633,19.167,10.531,12.33,11.808,17.403,10.464,23.452,4.413,4.405,-0.613,4.295,14.643,17.18,20.231,18.538,12.208,15.095],[21.879,15.955,8.321,17.576,10.517,9.459,1.924,3.135,6.669,12.113,27.366,21.218,6.723,-2.245,10.412,16.407,15.499,16.019,10.666,14.013,8.245,0.858,13.434,15.513,3.755,1.826,1.956,21.484,10.724,21.025,8.407,14.123,9.251,21.058,6.56,2.02,5.584,2.624,21.943,-3.477,4.082,10.076,22.287,11.48,2.038,19.863,17.488,15.25,25.361,11.103,6.394,-1.473,2.948,25.236,20.573,10.046,14.07,14.96,11.936,4.846,18.982,6.971,15.852,19.163,14.678,13.793,6.211,18.938,5.921,-0.47,7.987,1.285,23.657,16.332,2.801,29.027,17.573,3.201,26.245,20.826,9.881,12.041,9.266,9.16,8.876,11.894,9.909,22.228,3.046,11.953,7.236,22.493,-2.139,9.324,11.305,14.916,18.27,15.128,13.312,3.766,8.497,15.465,12.183,14.867,13.028,-0.574,9.67,15.708,1.731,14.311,19.345,5.254,12.79,15.518,21.308,0.626,14.592,7.064,19.873,9.503,0.429,12.407,3.353,1.887,21.679,2.612,9.663,12.387,9.695,8.196,9.978,20.767,15.127,19.763,3.962,22.862,5.935,0.835,6.848,23.004,8.828,2.187,10.921,22.189,3.119,9.726,24.969,6.674,20.728,3.492,-4.795,-1.917,17.013,20.719,27.23,1.312,13.216,19.455,21.228,15.214,3.475,17.017,24.369,10.97,7.307,2.284,-0.585,15.601,18.895,19.8,5.439,4.405,6.701,16.568,8.367,19.332,10.542,12.711,11.358,17.195,10.95,24.024,4.762,4.683,-0.624,4.225,14.618,17.154,20.021,18.618,12.672,15.09],[21.753,16.176,8.518,17.407,10.634,9.438,2.027,3.073,6.794,12.28,27.183,21.046,6.597,-2.076,10.477,16.629,15.661,16.135,10.507,14.011,8.102,0.8,13.152,15.524,3.784,1.84,2.095,21.398,10.417,21.066,8.451,14.093,8.951,21.162,6.831,1.912,5.519,2.53,22.235,-3.755,4.148,10.1,22.311,11.593,2.068,19.778,17.35,15.208,25.182,11.174,6.618,-1.505,3.187,25.416,20.741,9.749,14.173,14.968,11.936,4.86,18.817,6.759,16.012,19.105,14.853,13.848,6.566,18.727,5.969,-0.291,8.091,1.284,23.606,16.058,2.469,28.979,17.959,3.306,25.981,20.713,9.187,11.855,9.025,9.702,8.885,12.263,9.506,21.562,3.651,11.877,7.004,22.43,-2.263,9.249,10.725,14.47,18.225,15.034,13.713,4.326,8.117,15.461,12.26,14.813,13.164,-0.108,9.485,16.475,1.992,14.309,19.423,5.347,12.657,16.749,21.255,1.282,14.349,7.115,19.638,9.708,0.994,11.873,3.581,1.679,21.358,2.182,9.276,12.484,8.925,8.261,9.842,20.82,15.196,19.438,4.223,22.974,6.127,0.261,6.496,23.499,8.497,2.709,10.89,21.893,2.841,10.296,25.235,6.576,20.64,3.536,-4.585,-1.979,16.768,21.133,26.844,1.252,13.259,19.017,20.766,15.474,3.388,17.201,24.498,11.427,7.207,2.558,-0.47,15.362,19.161,19.851,4.96,4.623,6.698,16.595,8.03,19.254,10.292,12.473,10.939,17.379,11.43,24.093,4.943,4.826,-0.456,4.244,14.918,17.048,19.97,18.446,12.7,14.863],[21.721,16.435,8.599,17.355,10.852,9.351,2.133,2.928,6.883,12.419,27.198,20.958,6.603,-1.915,10.503,16.738,15.746,16.392,10.262,13.901,8.049,0.638,13.059,15.478,3.778,1.923,2.241,21.202,10.012,21.086,8.317,14.031,8.761,21.155,6.896,1.744,5.517,2.405,22.442,-3.874,4.211,10.186,22.542,11.736,2.086,19.479,17.221,15.391,25.012,11.394,6.929,-1.553,3.341,25.474,20.933,9.477,14.323,14.883,12.013,4.87,18.594,6.64,16.253,18.976,15.241,13.727,6.601,18.779,5.784,-0.271,7.987,1.081,23.417,15.947,2.562,28.801,18.112,3.31,25.689,20.768,9.38,11.912,9.102,9.908,8.722,12.288,9.519,21.307,3.723,12.489,7.145,22.596,-1.868,9.397,9.945,14.467,18.395,15.713,13.474,3.783,7.66,15.218,12.085,14.616,13.289,-0.27,8.865,16.788,1.812,14.394,19.252,5.622,12.462,17.086,21.446,1.656,13.874,6.792,19.429,9.975,0.828,11.305,3.478,1.883,21.037,2.344,8.833,12.289,8.539,8.595,9.73,21.131,14.8,19.25,3.941,23.644,6.577,-0.05,7.292,24.021,8.704,2.617,10.905,22.633,2.803,10.084,25.242,6.349,20.918,3.275,-4.732,-2.327,16.271,21.609,26.674,1.306,13.493,18.824,20.177,16.156,3.574,16.509,24.919,11.934,7.122,3.054,-0.588,15.663,19.087,19.723,4.886,4.485,6.643,16.626,7.649,18.743,10.713,12.002,10.861,17.635,10.873,24.057,5.232,4.886,-0.208,4.137,15.015,16.768,20.129,18.39,12.632,14.804],[21.663,16.65,8.664,17.403,11.014,9.213,2.235,2.79,6.933,12.587,27.191,21.052,6.717,-1.645,10.53,16.771,15.83,16.722,10.221,13.666,8.082,0.524,13.028,15.382,3.752,2.016,2.209,21.078,9.508,20.994,8.089,13.783,8.658,21.237,6.833,1.597,5.618,2.255,22.689,-3.807,4.14,10.146,22.85,11.86,2.08,19.189,17.014,15.481,24.922,11.689,7.165,-1.598,3.459,25.575,21.017,9.356,14.323,14.753,11.978,4.71,18.501,6.705,16.421,18.901,15.885,14.088,6.253,18.853,5.623,-0.447,7.8,0.933,23.604,16.253,2.99,28.811,18.533,2.982,26.269,20.833,9.725,12.07,9.614,9.754,8.633,12.6,9.872,21.227,3.527,12.446,6.965,22.474,-1.888,9.749,10.275,14.534,18.287,15.728,13.553,3.129,7.831,15.581,12.013,14.852,13.362,-0.704,8.218,16.218,1.62,14.197,19.302,5.558,12.266,16.356,20.814,0.778,13.986,6.668,19.511,9.706,0.444,10.866,3.582,2.396,21.624,2.529,9.112,12.095,8.545,8.27,9.692,21.854,14.698,19.349,3.634,23.848,6.555,0.094,7.325,24.216,8.728,2.066,11.174,22.304,2.92,10.027,25.276,6.051,20.804,3.149,-4.789,-2.818,16.229,21.697,26.554,1.236,13.562,18.528,19.897,16.761,3.378,16.442,24.981,11.614,7.614,3.063,-0.695,15.838,18.65,20.007,5.029,4.415,6.301,16.773,7.652,18.408,11.133,12.254,10.724,17.617,10.717,24.175,5.341,5.233,-0.407,3.873,15.015,16.698,20.833,18.369,13.128,15.134],[21.654,16.853,8.799,17.621,11.135,9.077,2.322,2.591,6.904,12.806,27.161,21.042,6.862,-1.488,10.643,16.747,15.955,16.932,10.35,13.501,8.05,0.38,13.139,15.282,3.645,2.089,2.173,21.003,9.316,20.881,7.989,13.467,8.719,21.491,6.668,1.437,5.8,2.1,22.81,-3.614,3.835,10.039,23.106,11.917,1.979,19.061,16.807,15.569,24.934,11.935,7.304,-1.638,3.639,25.737,21.087,9.404,14.288,14.645,11.936,4.401,18.571,6.48,16.395,18.862,16.301,14.421,6.607,18.557,5.67,-0.303,7.961,0.746,23.406,15.985,3.484,29.006,18.811,3.044,26.352,21.149,9.494,12.304,9.527,9.817,8.76,12.317,9.592,21.838,3.217,12.17,6.96,22.457,-1.365,9.651,10.253,14.433,18.398,15.123,14.028,3.703,8.144,15.923,12.023,15.008,12.729,-0.659,7.84,16.334,2.091,14.068,19.048,5.467,12.122,16.07,20.708,0.272,14.174,6.676,19.388,9.866,0.501,10.6,3.717,1.93,21.647,2.233,9.055,11.853,8.965,7.724,9.47,21.94,14.587,19.811,3.354,23.499,6.222,0.158,7.02,23.715,8.589,1.901,11.346,22.68,2.98,9.649,25.378,5.272,20.375,3.362,-5.032,-3.034,16.244,21.534,26.677,1.13,13.73,18.389,19.788,16.618,3.066,15.999,24.882,11.821,8.02,2.674,-0.888,15.554,18.544,20.155,4.753,4.285,6.629,17.154,7.747,19.026,10.688,12.608,10.677,17.483,10.925,24.583,5.403,5.653,-0.581,3.792,15.154,16.884,21.405,18.615,13.054,14.873],[21.722,17.035,8.805,17.645,11.128,8.904,2.318,2.486,6.848,12.902,27.206,20.994,7.021,-1.387,10.785,16.857,15.997,16.94,10.38,13.347,8.063,0.221,13.487,15.201,3.571,2.195,2.154,21.079,9.388,20.748,8.103,13.297,8.866,21.735,6.48,1.252,6.029,1.97,22.736,-3.499,3.374,9.838,23.116,11.954,1.862,19.048,16.716,15.589,25.145,12.084,7.353,-1.712,3.838,25.959,21.108,9.514,14.3,14.601,11.821,4.148,18.778,6.097,16.238,18.991,16.345,14.477,6.71,18.496,5.583,0.189,8.212,0.53,23.587,15.801,3.24,28.964,18.882,2.918,25.995,20.929,9.333,12.337,9.745,10.027,9.249,12.297,9.29,22.156,3.466,12.568,7.468,22.055,-1.103,9.389,9.997,14.037,18.393,15.589,13.827,3.929,7.76,15.756,12.22,14.836,13.1,-0.976,7.778,16.863,2.172,14.098,18.806,5.265,12.289,16.971,20.974,0.573,14.137,6.632,19.491,9.847,0.646,10.759,3.968,2.073,21.258,1.937,8.657,11.504,8.812,7.891,9.231,21.393,14.365,20.222,3.196,24.178,5.98,-0.235,6.751,23.523,8.396,1.845,11.363,23.018,2.805,9.506,24.896,4.408,20.332,3.245,-4.799,-2.662,16.363,21.475,26.799,1.093,13.544,18.209,19.995,16.347,2.733,16.295,24.954,12.366,8.324,2.993,-0.709,15.193,18.425,20.373,4.531,3.554,5.968,17.402,7.833,19.504,10.622,12.391,10.761,17.282,11.768,24.693,5.646,5.756,-0.338,3.353,15.134,17.094,21.227,18.345,12.845,13.817],[21.862,17.258,8.856,17.488,11.136,8.793,2.333,2.524,6.727,12.999,27.208,20.819,7.275,-1.264,10.88,17.099,15.957,16.945,10.337,13.154,8.066,0.13,13.734,15.127,3.458,2.379,2.162,21.252,9.481,20.574,8.177,13.17,8.746,21.714,6.284,1.095,6.165,1.889,22.779,-3.413,2.936,9.606,23.044,11.93,1.712,19.074,16.909,15.563,25.376,12.316,7.459,-1.67,3.999,26.088,21.029,9.474,14.332,14.492,11.703,3.911,18.954,5.912,16.202,19.132,16.413,14.26,6.331,18.613,5.456,0.441,8.465,0.752,23.468,16.069,3.161,28.645,18.999,2.613,25.918,20.943,9.51,12.157,9.473,9.899,9.251,12.801,9.132,21.964,3.443,13.052,7.977,21.927,-1.171,9.335,10.029,13.775,18.577,15.843,13.614,3.532,7.465,15.537,12.145,14.987,13.642,-0.972,8.155,16.828,2.12,14.298,18.991,4.925,12.168,17.207,20.903,0.487,15.041,6.591,19.689,9.83,0.761,10.939,4.084,2.186,21.02,1.88,8.835,11.573,9.189,7.954,9.53,21.466,14.236,20.136,3.338,24.013,6.291,-0.708,6.647,23.783,8.07,2.113,11.398,22.301,2.314,9.331,24.754,4.458,20.3,2.53,-4.593,-1.92,16.431,21.504,27.113,0.698,13.287,18.095,20.236,16.3,2.21,16.409,25.416,12.593,7.858,3.478,-0.711,15.2,18.799,20.245,4.297,3.637,5.427,16.783,7.826,19.106,10.727,11.958,10.927,17.211,12.179,24.768,5.885,5.652,-0.384,3.333,15.045,17.159,20.805,18.207,12.71,14.017],[21.966,17.467,8.997,17.295,11.151,8.802,2.255,2.602,6.493,13.17,27.133,20.739,7.577,-1.09,10.879,17.206,15.927,16.944,10.262,12.953,8.036,0.023,13.91,15.083,3.224,2.622,2.035,21.179,9.534,20.503,8.135,13.217,8.602,21.602,6.088,1.006,6.243,1.873,22.724,-3.287,2.57,9.467,23.139,11.836,1.537,19.097,17.104,15.588,25.666,12.675,7.437,-1.624,4.102,26.224,20.843,9.404,14.315,14.375,11.619,3.795,19.02,5.922,16.21,19.039,16.316,14.782,6.596,19.012,5.411,0.683,8.881,0.793,23.692,16.4,3.183,28.582,19.363,3.013,25.77,21.015,9.389,12.135,9.647,10.225,8.659,12.618,9.199,21.476,3.496,12.649,8.153,21.501,-1.364,9.289,10.317,13.693,18.595,15.552,13.772,3.673,7.723,15.488,11.943,14.925,13.571,-0.902,8.333,17.007,2.208,14.173,18.9,4.876,11.571,16.834,21.243,0.352,15.241,6.637,19.424,9.531,0.852,10.907,4.392,2.216,20.842,1.838,9.073,11.618,8.766,7.449,9.501,21.306,14.19,20.002,3.448,23.123,7.055,-0.212,6.723,24.019,8.005,1.887,11.43,22.568,1.985,8.9,25.112,4.673,20.14,2.107,-4.222,-1.462,16.417,21.586,27.172,0.768,13.549,18.726,20.099,16.369,2.181,16.502,25.446,12.326,7.662,3.442,-0.33,15.205,19.282,20.048,4.431,3.892,5.722,16.302,7.842,18.596,10.693,12.017,10.904,17.428,11.769,24.81,5.91,5.658,-0.645,3.588,15.186,17.41,20.815,18.566,12.966,14.782],[22.006,17.643,9.133,17.238,11.164,8.847,2.049,2.752,6.321,13.388,27.102,20.645,7.904,-0.946,10.773,17.275,15.981,16.945,10.134,12.702,8.007,-0.217,14.049,15.062,3.13,2.91,1.895,21.047,9.486,20.539,7.998,13.35,8.635,21.418,5.962,1.067,6.336,1.87,22.401,-3.043,2.264,9.487,23.37,11.713,1.528,19.056,17.373,15.653,25.959,12.975,7.334,-1.579,4.081,26.24,20.679,9.392,14.274,14.22,11.554,3.915,19.088,6.036,16.224,18.846,16.886,14.96,6.128,18.902,5.454,0.614,8.963,0.783,23.915,16.347,3.059,28.884,19.315,3.4,25.648,21.276,9.212,12.102,9.669,9.874,8.999,12.433,9.423,21.962,2.958,12.721,8.173,20.89,-1.25,9.413,10.327,13.88,18.381,15.364,13.654,2.941,8.071,15.522,11.846,15.069,13.26,-1.177,8.192,17.289,2.609,14.175,18.634,4.867,11.737,16.877,21.203,-0.184,14.417,6.394,19.348,9.678,0.417,10.979,4.706,2.244,21.025,1.371,9.087,11.879,7.816,7.218,9.445,21.072,14.362,20.027,3.381,23.617,7.541,-0.202,6.694,24.181,7.885,0.831,11.499,22.645,2.105,8.861,25.307,5.161,19.986,1.863,-4.196,-1.426,16.761,21.618,27.307,0.804,13.514,19.083,19.807,16.088,2.005,16.364,25.195,12.348,7.747,3.382,-0.214,15.521,19.489,19.325,4.573,3.434,5.658,16.665,7.796,18.777,10.636,12.289,10.624,17.497,12.066,25.036,5.961,5.812,-0.64,3.444,15.423,17.269,21.066,18.527,12.935,15.093],[22.053,17.803,9.236,17.346,11.117,8.861,1.807,2.858,6.21,13.575,27.132,20.53,8.114,-0.86,10.574,17.437,16.116,16.855,10.007,12.622,8.113,-0.477,13.936,15.12,3.113,3.196,1.741,20.938,9.38,20.519,7.854,13.552,8.748,21.265,5.911,1.013,6.475,1.852,22.18,-2.945,2.025,9.623,23.532,11.64,1.599,18.952,17.577,15.716,26.027,13.201,7.494,-1.573,4.045,26.021,20.578,9.343,14.288,14.128,11.448,4.086,19.134,6.094,16.217,18.794,17.394,14.758,6.008,18.508,5.631,0.399,9.131,1.151,23.702,15.872,3.134,28.677,19.652,3.172,25.753,21.179,9.484,12.051,9.698,9.377,9.533,12.13,9.258,22.169,2.527,12.981,8.391,20.797,-0.728,9.908,9.69,14.016,18.76,15.266,13.791,2.872,7.84,15.588,11.816,15.564,12.697,-1.683,7.607,16.762,2.817,14.312,19.046,4.937,11.846,16.968,20.688,-0.3,14.614,6.233,19.715,9.709,0.58,10.718,5.034,2.282,21.382,1.599,9.039,11.956,8.067,7.456,8.98,21.478,14.38,19.663,3.103,23.135,7.739,-0.359,6.274,24.15,8.086,0.845,11.336,21.524,2.038,9.147,26.164,5.08,19.64,1.615,-3.806,-1.273,16.957,21.804,27.696,0.67,13.031,19.151,19.089,16.029,1.858,16.907,25.304,12.482,7.695,3.457,-0.432,15.31,19.652,19.215,4.511,3.304,5.599,16.607,7.649,18.994,10.817,12.196,10.663,17.401,12.937,24.64,5.781,5.459,-0.605,3.462,15.426,17.368,20.796,18.152,13.222,14.969],[22.096,17.988,9.374,17.402,11.034,8.872,1.607,2.943,6.207,13.748,27.218,20.43,8.209,-0.783,10.412,17.51,16.29,16.677,9.875,12.693,8.154,-0.744,13.807,15.325,3.174,3.467,1.748,20.845,9.185,20.509,7.688,13.711,8.886,21.062,6.012,0.867,6.628,1.741,21.851,-2.945,1.796,9.736,23.583,11.545,1.666,18.789,17.558,15.713,26.09,13.378,7.49,-1.678,4.012,25.78,20.612,9.322,14.435,13.965,11.349,4.208,19.251,6.023,16.125,18.796,17.448,14.95,6.584,18.72,5.505,0.678,9.646,1.003,23.68,15.881,2.441,28.477,19.843,3.05,25.6,20.9,9.203,12.028,9.875,9.447,9.484,11.562,9.142,21.822,3.138,13.518,8.486,20.606,-0.392,9.872,9.487,13.915,18.597,15.84,14.284,3.684,7.895,15.456,11.761,15.056,12.676,-1.521,7.562,17.215,2.627,14.367,18.91,4.734,11.747,16.994,20.503,-0.082,15.006,6.092,19.189,9.985,0.594,10.155,5.325,2.602,21.723,1.394,9.412,12.07,9.278,7.383,8.635,21.435,14.786,19.57,3.454,22.785,7.856,-0.179,6.526,24.288,8.341,1.577,11.033,21.948,1.527,9.569,26.592,4.829,19.322,1.752,-3.599,-1.157,16.777,21.693,27.444,0.971,13.039,19.396,17.87,16.392,1.65,17.083,25.154,13.187,7.99,3.33,-0.615,15.065,19.604,19.607,4.332,3.851,5.87,16.648,7.449,18.971,10.747,11.974,10.371,17.113,12.904,24.207,5.752,5.659,-0.419,3.886,15.255,17.476,20.302,18.39,13.242,14.91],[22.234,18.109,9.53,17.41,10.878,8.892,1.539,2.92,6.262,13.964,27.294,20.216,8.274,-0.6,10.282,17.534,16.378,16.569,9.769,12.867,8.196,-0.849,13.784,15.512,3.239,3.612,1.924,20.754,9.023,20.55,7.506,13.868,9.218,20.873,6.248,0.679,6.818,1.694,21.777,-2.946,1.667,9.718,23.566,11.524,1.839,18.551,17.311,15.678,26.224,13.502,7.385,-1.805,3.908,25.696,20.83,9.381,14.614,13.725,11.371,4.459,19.358,5.859,15.933,18.814,17.865,15.244,6.155,19.077,5.48,1.202,9.363,1.086,23.667,16.396,2.079,28.785,19.801,3.481,25.536,20.849,8.627,12.12,9.912,9.152,8.92,11.736,9.375,21.228,3.048,13.356,8.409,20.951,-0.985,9.482,9.768,14.157,18.499,16.137,14.321,3.812,7.707,15.072,11.463,15.133,13.434,-1.62,7.573,17.971,2.693,14.747,19.04,4.887,11.851,16.735,20.566,-0.519,14.658,5.872,19.188,10.005,0.149,10.499,5.609,2.465,21.0,1.318,9.458,12.521,9.439,7.557,8.84,20.667,15.301,19.393,3.229,22.796,7.68,-0.857,6.895,24.285,8.057,1.772,10.811,21.553,1.187,9.215,26.067,5.096,19.468,1.473,-3.502,-1.054,16.507,21.721,27.365,0.908,13.131,18.961,17.214,16.22,1.701,16.341,24.834,13.197,8.239,3.626,-0.911,15.128,19.878,19.719,4.184,3.513,5.762,16.61,7.581,18.773,10.578,12.049,10.203,17.206,12.528,24.172,5.704,5.77,-0.559,3.884,15.336,17.765,20.819,18.268,13.191,14.764],[22.298,18.147,9.602,17.5,10.696,8.867,1.549,2.897,6.209,14.143,27.388,19.965,8.301,-0.479,10.157,17.696,16.433,16.497,9.68,13.13,8.283,-0.939,13.75,15.586,3.357,3.557,2.051,20.678,9.027,20.553,7.354,14.131,9.663,20.578,6.409,0.394,6.89,1.688,21.751,-3.012,1.531,9.499,23.565,11.591,1.973,18.453,16.921,15.62,26.318,13.521,7.311,-1.871,3.83,25.759,21.193,9.509,14.787,13.577,11.382,4.626,19.51,5.725,15.641,18.712,18.132,15.327,6.294,18.913,5.607,1.362,9.424,1.067,23.877,16.324,2.203,28.905,19.817,3.548,25.931,21.336,9.141,11.873,10.131,9.05,8.639,11.984,9.352,21.063,2.763,12.847,8.544,21.347,-0.867,9.348,9.591,14.373,18.972,15.762,14.001,3.296,7.353,15.082,11.371,15.615,14.047,-1.171,7.751,17.376,2.747,14.762,18.986,5.115,11.843,16.507,20.434,-0.639,14.301,6.005,19.028,10.037,0.443,10.5,5.367,2.58,20.503,1.269,9.458,12.814,9.175,7.84,8.881,20.477,14.916,19.185,3.259,22.706,7.578,-1.1,7.047,24.308,8.029,1.76,10.673,21.581,1.983,8.873,26.171,5.205,19.513,1.487,-3.548,-1.34,16.591,21.759,27.897,1.409,13.043,18.533,17.201,15.749,1.472,16.358,24.957,12.637,7.863,3.53,-0.797,15.074,20.315,19.809,4.156,3.397,5.285,16.103,7.662,18.575,10.959,12.502,10.291,17.078,12.647,24.479,5.433,5.358,-1.071,4.026,15.001,17.701,21.626,18.179,13.063,13.953],[22.317,18.167,9.601,17.428,10.58,8.827,1.53,2.94,6.14,14.265,27.536,19.977,8.356,-0.405,10.06,17.72,16.405,16.42,9.641,13.265,8.338,-0.938,13.653,15.568,3.58,3.341,2.084,20.692,9.052,20.514,7.269,14.294,10.032,20.296,6.488,0.106,6.825,1.891,21.651,-3.199,1.414,9.16,23.669,11.579,2.091,18.478,16.701,15.461,26.449,13.445,7.167,-1.984,3.76,25.946,21.612,9.621,14.773,13.404,11.482,4.662,19.754,5.721,15.35,18.56,17.68,15.47,6.735,18.587,5.469,1.062,9.365,1.279,24.126,16.29,2.407,29.015,19.982,3.473,26.041,21.708,9.576,11.589,10.008,9.218,8.993,11.985,9.157,20.948,2.903,13.157,8.857,21.013,-0.478,9.051,9.568,14.63,18.976,15.902,13.665,3.129,7.723,15.176,11.471,15.357,14.006,-1.287,7.81,17.504,2.576,14.314,19.064,5.388,12.246,17.161,20.061,-0.675,14.324,6.132,19.211,10.018,1.18,10.261,5.003,2.588,21.276,0.998,9.761,12.602,9.462,7.669,8.803,20.603,15.009,18.985,3.555,22.803,8.069,-1.114,6.956,24.531,7.816,1.882,10.913,21.384,2.314,8.795,26.407,4.855,19.416,1.289,-3.711,-1.449,16.896,21.803,27.967,1.668,13.162,18.407,17.374,15.682,0.963,16.257,25.178,12.528,7.802,3.151,-0.41,15.11,20.556,20.122,4.189,4.018,5.434,15.986,7.778,18.767,10.826,12.679,10.65,16.356,12.605,24.473,5.63,5.107,-1.36,3.996,14.72,18.123,21.686,17.732,13.102,13.702],[22.395,18.159,9.416,17.242,10.604,8.795,1.543,3.162,6.17,14.299,27.712,20.156,8.335,-0.5,10.039,17.716,16.362,16.517,9.782,13.148,8.353,-0.863,13.527,15.454,3.908,3.085,2.063,20.768,9.092,20.59,7.302,14.405,10.194,20.07,6.402,-0.298,6.704,2.171,21.539,-3.322,1.32,9.008,23.837,11.555,2.163,18.426,16.679,15.231,26.593,13.269,7.092,-2.138,3.744,25.94,21.919,9.753,14.544,13.3,11.623,4.748,20.145,5.895,15.15,18.488,17.549,16.03,6.456,18.82,5.342,1.251,9.507,1.341,24.258,16.039,2.46,29.148,19.969,3.681,25.971,21.871,8.958,11.375,9.737,9.051,9.57,11.9,8.943,21.049,2.865,13.714,8.667,20.452,-0.611,9.048,9.741,14.899,18.84,15.726,13.601,3.401,8.138,15.204,11.592,15.236,14.022,-1.526,7.763,17.945,2.19,14.297,19.22,5.829,12.312,17.118,20.171,-0.88,14.113,5.91,19.354,9.807,0.758,10.459,5.008,2.547,21.46,0.76,10.447,12.957,9.846,7.87,8.944,20.064,15.323,18.81,3.796,22.74,8.004,-1.246,6.94,24.296,7.515,1.791,10.873,21.236,2.205,8.176,26.773,5.275,18.87,1.047,-3.873,-1.425,16.75,21.956,27.76,1.051,12.838,18.365,18.189,15.752,1.059,16.012,25.18,12.856,8.135,3.453,-0.901,14.805,20.607,20.762,4.269,3.885,5.791,15.972,8.037,18.755,10.747,12.83,10.906,16.536,12.18,24.431,5.405,5.205,-1.243,4.096,15.037,18.518,21.208,17.434,13.167,13.759],[22.701,18.138,9.2,17.134,10.63,8.745,1.51,3.554,6.223,14.459,27.759,20.306,8.238,-0.644,9.989,17.911,16.466,16.626,10.065,12.947,8.37,-0.737,13.279,15.381,4.078,3.02,1.868,20.639,9.269,20.7,7.435,14.56,10.42,19.772,6.401,-0.48,6.611,2.233,21.453,-3.33,1.198,8.991,23.734,11.478,1.985,18.291,16.74,14.998,26.736,13.051,7.2,-2.294,3.714,25.713,21.985,9.947,14.297,13.222,11.801,4.905,20.415,6.034,15.076,18.561,17.476,16.204,6.284,18.54,5.542,1.002,9.574,1.65,24.255,16.092,2.3,29.041,19.94,4.051,26.23,21.754,9.28,11.197,9.528,9.069,9.505,11.689,9.501,21.1,2.88,13.793,8.526,20.263,-0.732,9.527,9.8,14.646,18.888,15.326,13.575,4.159,7.588,15.346,11.847,15.378,13.196,-1.343,7.515,17.58,1.907,14.567,19.085,5.904,11.664,16.743,20.415,-1.045,13.705,5.957,18.856,9.763,0.522,10.632,4.724,2.539,20.905,0.526,10.27,13.089,10.181,7.891,8.856,19.945,15.543,18.966,3.968,22.302,8.271,-1.752,6.825,24.423,7.895,1.625,10.866,21.362,1.812,7.847,27.279,5.178,19.143,1.618,-4.053,-1.6,16.344,21.961,27.946,1.695,12.836,18.357,18.761,15.872,0.861,15.669,25.128,12.68,8.089,4.057,-1.323,14.575,21.043,21.094,4.428,3.718,5.974,15.647,8.111,18.727,10.968,12.265,10.993,16.426,11.84,24.443,5.287,5.573,-1.358,4.381,14.98,18.793,21.386,17.539,13.205,14.012],[23.024,18.105,9.021,17.01,10.556,9.049,1.388,3.927,6.336,14.616,27.679,20.268,8.197,-0.748,10.025,18.177,16.65,16.638,10.285,12.611,8.271,-0.634,12.976,15.393,4.084,3.088,1.617,20.203,9.484,20.663,7.546,14.651,10.698,19.494,6.447,-0.432,6.588,2.048,21.377,-3.284,1.154,9.055,23.561,11.407,1.784,18.197,16.82,14.933,27.008,12.823,7.252,-2.405,3.685,25.512,22.03,10.133,14.102,13.258,11.871,5.079,20.463,6.084,15.055,18.709,17.357,16.097,6.484,18.603,5.764,0.531,9.254,2.386,24.867,16.171,1.721,29.294,19.912,4.157,26.0,21.972,8.979,10.813,9.371,9.26,9.024,11.705,9.684,21.386,2.956,13.723,8.479,20.697,-0.737,9.387,9.875,14.505,18.887,15.668,13.418,4.292,7.477,15.3,12.129,15.484,12.388,-0.653,8.144,17.418,1.586,14.372,19.244,5.665,11.76,17.388,20.217,-0.438,13.651,6.141,18.626,9.976,1.009,10.706,4.573,2.206,21.145,0.601,9.984,13.157,9.893,7.797,8.822,19.856,15.806,19.07,3.854,22.278,7.664,-1.825,7.115,24.613,7.763,1.677,11.252,21.273,1.49,8.441,26.861,4.666,19.626,1.381,-4.478,-1.429,16.175,21.732,28.396,1.624,12.838,18.325,18.684,15.606,0.36,15.686,24.801,12.125,8.486,3.889,-0.976,14.594,21.641,20.477,4.404,4.036,5.826,15.741,8.218,18.846,11.039,11.984,10.592,16.204,12.086,24.568,5.317,5.425,-1.505,4.85,14.564,19.084,21.873,17.868,12.522,14.117],[23.316,18.17,8.879,16.954,10.512,9.412,1.138,4.248,6.575,14.657,27.627,20.237,8.132,-0.792,10.026,18.403,16.809,16.573,10.329,12.346,8.077,-0.338,12.836,15.42,3.96,3.082,1.459,19.901,9.551,20.722,7.684,14.682,10.837,19.245,6.408,-0.409,6.409,1.942,21.257,-3.246,1.114,9.195,23.536,11.335,1.625,18.073,16.992,15.173,27.285,12.525,7.295,-2.337,3.554,25.434,22.128,10.214,13.779,13.367,11.728,5.285,20.456,6.042,15.163,18.765,17.766,15.985,6.627,18.485,6.121,0.947,9.363,2.373,24.979,15.855,1.856,29.012,19.83,4.512,25.844,22.343,9.325,10.727,9.187,9.043,8.803,11.9,9.695,21.283,2.7,13.89,7.999,20.882,-0.682,9.059,10.339,14.702,18.864,16.016,13.84,3.786,7.916,15.277,12.175,15.264,12.474,-0.858,8.358,17.508,1.698,14.31,19.319,5.956,11.542,16.944,19.322,-0.744,13.34,6.101,18.449,9.85,0.538,11.086,4.668,2.42,21.484,0.687,10.457,13.541,10.182,8.127,8.962,19.613,15.631,18.866,3.315,22.484,7.093,-1.985,6.653,24.442,7.59,1.762,10.937,21.21,0.983,8.847,27.127,4.55,19.468,0.658,-4.486,-1.672,16.473,21.631,28.12,0.428,12.928,18.448,18.809,15.684,0.84,16.117,24.671,12.348,8.185,3.487,-1.086,14.828,21.682,20.767,4.583,4.13,5.762,15.714,8.405,18.708,10.9,12.626,10.711,16.538,11.947,24.503,5.382,5.378,-1.691,4.735,14.485,19.599,21.976,18.336,12.039,14.215],[23.434,18.202,8.723,16.928,10.516,9.534,0.938,4.396,6.976,14.673,27.636,20.147,8.001,-0.704,9.876,18.459,16.779,16.375,10.361,12.269,7.791,-0.075,12.874,15.552,4.056,3.046,1.465,19.66,9.642,20.935,7.864,14.676,11.021,18.96,6.165,-0.479,6.076,1.863,21.239,-3.29,1.085,9.288,23.58,11.172,1.288,18.026,17.284,15.619,27.383,12.298,7.214,-2.202,3.374,25.448,22.487,10.278,13.516,13.605,11.553,5.304,20.545,6.01,15.362,18.689,18.031,16.371,6.82,18.323,5.92,0.936,9.295,2.559,25.213,15.804,1.872,28.868,20.088,4.815,26.094,22.738,10.207,10.766,9.1,9.034,9.214,11.812,9.865,21.113,2.192,13.891,8.324,20.978,-0.585,9.665,10.132,14.737,18.866,16.013,13.626,3.645,7.525,15.425,12.185,15.443,12.688,-1.347,7.916,17.977,2.148,13.94,19.191,5.91,11.031,16.923,18.843,-0.661,13.738,6.243,18.482,9.616,-0.106,10.885,4.715,2.012,21.044,0.375,10.541,13.187,10.534,7.734,9.074,19.676,15.499,18.383,3.376,22.186,7.117,-1.586,6.494,24.646,8.111,1.501,10.968,20.634,0.885,9.047,27.721,4.355,19.19,1.045,-4.542,-1.597,17.01,21.728,28.395,0.932,12.815,18.841,18.912,16.137,0.705,16.472,24.776,12.203,7.711,3.161,-1.07,15.21,21.092,21.221,4.173,4.252,5.916,15.977,8.394,18.37,10.68,12.802,11.275,16.458,11.14,24.2,5.213,5.588,-1.853,4.819,14.071,19.645,21.791,18.046,12.007,14.071],[23.441,18.294,8.579,16.902,10.501,9.592,0.757,4.448,7.269,14.77,27.784,19.94,7.968,-0.686,9.698,18.517,16.696,16.141,10.461,12.267,7.598,-0.156,13.012,15.7,4.378,3.02,1.47,19.474,9.681,20.96,7.941,14.66,11.132,18.74,5.802,-0.561,5.777,1.744,21.287,-3.338,1.149,9.321,23.7,11.003,0.939,18.276,17.532,16.124,27.45,12.022,7.092,-2.222,3.202,25.434,22.858,10.382,13.474,13.967,11.407,5.127,20.535,5.943,15.348,18.515,17.889,16.533,7.001,18.412,6.221,0.696,9.051,2.655,25.198,16.123,1.498,29.348,19.945,4.524,26.103,22.632,9.248,10.696,9.045,9.318,9.151,11.867,9.92,21.039,2.132,14.139,8.156,20.871,-0.244,9.906,10.275,14.539,18.776,15.507,13.522,4.362,7.082,15.175,12.265,15.511,13.112,-0.597,8.029,18.062,2.187,14.509,19.23,6.09,11.343,17.36,18.821,0.074,14.017,6.519,18.084,9.352,0.007,10.422,4.83,1.7,21.699,0.457,10.432,13.277,10.63,7.281,9.145,19.728,15.961,17.781,3.558,22.115,7.227,-1.674,6.295,24.797,7.954,1.181,11.143,20.59,1.284,8.582,27.356,4.195,18.949,1.291,-4.703,-1.636,17.15,21.833,29.17,0.861,12.53,19.199,18.836,15.984,0.593,16.882,24.674,11.431,7.781,2.81,-0.79,15.593,21.511,21.639,4.302,4.802,5.793,16.159,8.631,18.204,10.407,12.843,11.437,16.392,11.377,24.468,4.978,5.176,-1.58,4.984,14.077,19.627,22.402,17.798,11.705,14.304],[23.445,18.356,8.379,16.933,10.579,9.482,0.624,4.479,7.473,14.836,27.925,19.74,7.996,-0.715,9.604,18.669,16.457,15.894,10.601,12.362,7.618,-0.074,13.166,15.823,4.65,2.933,1.444,19.363,9.685,21.064,7.771,14.912,11.02,18.69,5.53,-0.608,5.619,1.651,21.499,-3.428,1.348,9.248,23.735,10.949,0.625,18.565,17.648,16.484,27.456,11.79,6.903,-2.309,2.988,25.465,23.165,10.524,13.591,14.375,11.363,4.973,20.564,5.898,15.186,18.371,18.154,16.636,6.594,18.66,6.726,0.828,9.58,2.606,25.074,15.845,1.279,29.103,20.254,4.686,26.111,22.668,8.928,10.55,8.944,9.579,8.858,12.014,10.339,20.821,2.21,14.852,7.576,20.309,-0.519,9.106,10.782,14.704,19.183,15.439,13.917,4.962,7.314,14.375,12.362,15.126,12.956,-1.133,7.92,17.987,2.282,15.077,19.489,6.361,11.831,16.447,18.597,-0.413,13.537,6.378,18.075,9.47,0.303,10.627,4.755,1.901,21.975,0.447,10.809,13.377,10.694,7.254,9.186,19.181,15.974,17.861,3.127,22.755,7.105,-2.172,5.929,24.947,7.644,0.811,11.006,21.129,1.864,8.663,27.384,4.165,19.237,0.913,-4.437,-1.693,17.068,22.005,29.014,0.204,12.673,19.253,18.832,15.869,0.667,16.838,24.561,11.019,7.657,3.06,-1.063,15.911,21.663,21.707,4.581,4.804,5.055,15.628,8.73,18.656,10.37,12.586,11.379,16.459,11.679,24.264,4.727,4.985,-1.754,4.878,14.133,19.221,22.699,17.847,12.067,15.177],[23.51,18.376,8.19,16.865,10.698,9.499,0.678,4.548,7.612,14.883,27.936,19.675,7.932,-0.727,9.537,18.982,16.165,15.526,10.777,12.592,7.838,-0.015,13.221,15.92,4.758,2.913,1.45,19.289,9.675,21.12,7.484,15.171,10.945,18.694,5.417,-0.707,5.578,1.576,21.929,-3.391,1.469,9.197,23.684,10.853,0.319,18.729,17.68,16.538,27.382,11.637,6.733,-2.359,2.829,25.207,23.221,10.562,13.768,14.775,11.499,4.951,20.564,5.837,15.096,18.372,18.239,16.582,6.901,18.589,6.506,0.873,9.387,2.784,25.346,15.804,1.189,29.057,20.145,4.938,26.279,22.574,9.688,10.371,8.911,9.62,8.336,11.953,10.067,20.551,2.239,14.781,8.386,19.714,-0.969,8.361,10.909,15.154,19.664,15.282,13.855,4.444,7.838,13.68,12.407,14.948,12.536,-1.19,8.14,17.804,1.872,14.775,19.356,6.634,11.254,16.219,18.31,-0.655,13.941,5.811,18.118,9.65,0.638,10.919,4.587,1.742,21.909,0.115,10.653,13.624,10.75,7.04,8.801,19.493,16.02,17.927,2.946,22.719,6.765,-2.229,5.945,24.785,8.451,0.617,11.059,20.975,1.853,8.568,27.873,3.887,19.621,0.601,-4.555,-1.72,17.309,21.966,28.667,0.341,12.658,19.24,19.007,16.377,0.874,16.623,25.26,11.261,7.526,3.595,-0.71,16.379,21.379,21.879,4.288,3.96,5.016,15.703,8.704,18.86,10.175,12.159,11.721,16.443,11.242,24.365,4.31,5.038,-2.188,4.744,14.427,19.279,22.712,18.261,12.387,15.222],[23.567,18.363,8.078,16.714,10.731,9.69,0.844,4.54,7.67,14.699,27.87,19.77,7.796,-0.76,9.526,19.338,16.026,15.15,10.88,12.618,8.208,-0.021,13.238,15.906,4.841,2.926,1.447,19.137,9.715,20.98,7.188,15.235,10.989,18.776,5.505,-0.822,5.572,1.441,22.187,-3.302,1.487,9.31,23.669,10.661,0.164,18.808,17.718,16.488,27.371,11.559,6.646,-2.301,2.734,24.946,23.087,10.582,13.896,15.025,11.537,4.872,20.516,5.792,15.18,18.567,18.112,16.488,7.547,18.204,6.536,0.51,8.892,2.769,25.427,16.074,1.423,29.447,20.031,4.515,26.365,22.612,9.557,10.35,9.003,9.639,8.011,12.153,10.0,20.443,2.326,14.429,8.553,19.762,-0.625,8.615,10.666,15.458,19.676,15.068,13.845,3.986,7.68,13.525,12.749,14.796,13.236,-0.782,8.186,18.187,1.588,14.222,19.359,6.705,11.508,16.423,18.266,-0.258,14.122,5.494,17.988,9.884,0.497,10.874,4.733,2.234,22.333,0.041,10.235,13.939,10.453,6.936,8.187,19.729,16.428,17.347,3.162,22.493,6.141,-2.089,6.009,24.614,8.1,0.666,11.118,21.525,1.423,8.01,27.746,3.698,20.088,1.121,-4.362,-1.417,17.876,21.87,28.559,-0.015,12.098,19.333,19.23,16.688,0.635,16.871,24.897,11.672,7.79,3.612,-0.9,16.66,21.541,21.97,4.168,3.985,5.564,16.02,8.91,18.315,10.507,12.412,11.764,16.182,10.62,23.793,4.132,4.81,-2.119,4.935,14.751,19.64,22.488,18.199,12.171,15.139],[23.583,18.294,8.023,16.621,10.74,9.752,0.977,4.357,7.774,14.611,27.796,19.862,7.677,-0.745,9.525,19.599,16.067,14.912,10.944,12.538,8.526,0.022,13.268,15.805,4.951,3.033,1.481,18.957,9.715,20.898,6.793,15.157,11.042,18.851,5.776,-0.845,5.528,1.345,22.281,-3.116,1.506,9.387,23.546,10.43,0.101,18.899,17.922,16.488,27.315,11.47,6.536,-2.198,2.652,24.673,22.928,10.667,13.894,15.126,11.465,4.781,20.519,5.753,15.228,18.782,18.213,16.558,6.978,18.14,7.036,0.44,8.85,2.6,25.376,15.972,1.754,29.353,20.068,4.756,26.251,23.124,9.865,10.57,9.059,9.622,8.233,12.242,10.438,20.457,2.476,14.031,7.706,20.042,-0.038,9.497,10.569,15.514,20.015,15.286,13.583,4.269,7.709,13.511,12.766,14.97,13.619,-1.375,7.988,18.253,1.61,14.355,19.121,6.681,12.157,16.222,18.412,-0.217,14.169,5.078,17.744,10.405,0.079,10.683,4.512,2.222,21.794,0.09,10.623,13.602,10.179,7.157,7.997,19.278,16.3,17.098,2.761,23.53,5.912,-2.44,6.012,24.63,7.839,0.607,10.657,21.322,1.227,8.61,27.708,3.797,20.396,1.358,-4.053,-1.437,17.592,21.86,28.699,0.335,12.019,19.509,19.728,16.782,0.578,17.05,24.04,11.799,7.534,3.245,-1.088,16.755,21.839,21.858,4.057,4.756,5.559,15.62,8.953,18.204,10.567,12.913,11.893,16.273,10.483,23.891,3.997,4.713,-1.698,4.706,14.46,19.997,22.232,18.137,12.346,15.746],[23.649,18.192,8.041,16.573,10.744,9.797,0.986,4.082,7.864,14.693,27.796,19.886,7.639,-0.699,9.608,19.705,16.194,14.928,11.024,12.694,8.604,-0.051,13.355,15.793,5.102,3.079,1.399,18.815,9.499,20.791,6.419,15.004,11.08,18.817,5.994,-0.834,5.398,1.332,22.328,-2.974,1.625,9.418,23.395,10.165,0.179,19.154,18.208,16.425,27.25,11.413,6.327,-2.066,2.623,24.41,22.778,10.722,13.773,15.17,11.457,4.909,20.754,5.662,15.134,18.951,18.201,16.417,6.848,18.299,7.403,0.681,8.667,2.411,25.618,15.64,1.551,29.134,19.929,4.781,26.338,22.918,9.913,11.171,8.724,9.717,8.73,11.998,10.047,20.507,2.612,14.347,8.062,20.184,-0.313,9.664,10.723,15.082,20.529,15.965,14.231,4.742,8.018,13.471,12.886,15.259,12.973,-1.118,7.887,18.571,2.013,14.276,18.964,6.933,11.906,15.853,18.293,-0.425,14.17,4.782,17.429,10.411,0.336,10.52,4.715,2.046,20.752,0.158,10.94,13.348,10.211,7.674,7.721,19.121,16.007,16.952,2.537,23.284,6.275,-2.27,6.74,24.933,8.464,0.56,10.475,21.216,1.227,9.005,27.749,3.575,19.887,1.334,-4.107,-1.361,17.386,21.824,28.542,-0.162,11.871,19.852,19.95,16.681,0.731,17.3,23.875,11.088,7.173,2.755,-0.81,16.739,21.347,21.718,4.069,5.112,5.253,15.125,9.24,18.712,10.044,12.813,12.235,16.563,11.032,23.906,4.191,4.614,-1.448,4.619,13.842,20.099,22.535,18.271,12.38,15.465],[23.834,18.14,7.972,16.5,10.739,9.793,0.772,3.896,7.852,14.805,27.857,19.856,7.753,-0.77,9.857,19.857,16.324,14.961,11.077,12.889,8.584,-0.165,13.545,15.801,5.115,3.077,1.31,18.828,9.232,20.53,6.261,14.99,10.947,18.567,6.247,-0.798,5.209,1.319,22.295,-3.043,1.745,9.527,23.422,9.919,0.257,19.317,18.433,16.288,27.254,11.38,6.222,-1.915,2.668,24.301,22.677,10.822,13.694,15.156,11.469,5.25,21.032,5.575,14.934,19.01,18.348,16.415,7.098,18.136,7.718,0.531,9.146,2.156,25.52,15.773,1.15,29.291,19.744,4.025,26.388,22.708,9.069,11.637,8.565,9.794,8.792,11.807,10.413,20.588,2.495,14.862,7.852,20.37,-0.58,9.061,11.01,14.821,20.559,15.468,14.293,5.073,7.972,13.388,12.864,15.301,12.959,-0.551,7.775,18.783,2.146,14.516,19.047,6.89,11.707,16.129,18.55,-0.637,14.188,4.658,17.406,10.311,0.477,10.491,4.908,2.086,20.761,0.024,10.784,13.523,10.302,7.999,7.29,19.359,16.199,17.323,3.058,22.702,6.667,-2.349,6.312,24.464,8.201,0.649,10.58,21.149,1.22,8.388,27.39,3.626,20.269,1.505,-4.284,-1.247,17.64,21.506,28.588,-0.211,11.48,19.907,20.437,16.378,0.876,17.54,24.191,10.408,6.574,2.324,-0.739,16.864,21.17,21.598,3.924,4.967,5.557,15.386,9.6,19.449,9.894,12.7,12.365,16.229,11.339,23.615,4.515,4.329,-1.191,4.801,14.338,20.158,22.419,18.635,12.194,14.98],[23.962,18.145,7.837,16.417,10.727,9.788,0.591,3.74,7.72,14.906,27.951,19.829,7.928,-0.88,10.095,20.129,16.257,15.076,11.097,12.991,8.486,-0.248,13.67,15.795,4.909,3.047,1.299,18.998,9.095,20.283,6.324,15.096,10.669,18.276,6.469,-0.716,5.252,1.478,22.095,-3.221,1.745,9.405,23.415,9.769,0.309,19.514,18.648,16.186,27.231,11.402,5.966,-1.829,2.655,24.351,22.533,10.986,13.64,15.149,11.489,5.514,21.233,5.573,14.668,19.041,18.167,16.763,6.748,17.997,8.273,0.38,9.427,2.126,25.859,15.933,1.071,29.418,19.894,3.667,26.325,23.265,9.46,11.738,8.804,9.411,7.778,12.118,10.386,20.651,2.17,14.723,8.369,20.631,-0.301,8.754,10.718,14.634,20.51,15.045,14.026,4.83,7.838,13.763,12.955,15.439,13.393,-1.108,7.403,18.517,2.516,14.824,18.656,6.745,12.005,16.252,17.909,-0.334,14.439,4.54,17.837,10.364,0.114,10.258,4.998,2.029,21.096,-0.148,10.31,13.645,10.37,8.111,7.289,19.309,16.388,17.625,3.207,23.224,6.465,-2.417,6.49,24.593,8.563,0.333,10.262,20.951,1.163,8.124,27.293,3.718,20.511,1.668,-4.381,-1.514,17.66,21.66,28.817,0.51,11.193,19.906,20.76,15.905,0.69,17.442,23.924,10.527,6.197,2.269,-0.508,17.019,22.163,21.901,3.887,5.087,5.258,15.389,9.751,19.804,10.369,12.455,12.755,15.917,10.98,23.806,4.468,4.212,-1.32,5.034,14.672,19.827,21.984,19.018,12.361,15.275],[24.069,18.192,7.693,16.438,10.665,9.785,0.745,3.594,7.535,15.042,28.016,19.734,8.175,-0.828,10.211,20.35,16.06,15.283,11.044,12.992,8.463,-0.335,13.699,15.764,4.837,3.044,1.314,19.017,8.969,20.084,6.511,15.233,10.418,17.992,6.56,-0.631,5.31,1.758,21.872,-3.413,1.671,9.262,23.402,9.664,0.475,19.655,18.783,16.159,27.141,11.52,5.673,-1.848,2.593,24.38,22.427,11.199,13.664,15.255,11.512,5.633,21.401,5.476,14.429,19.111,17.569,16.733,6.666,17.914,8.442,0.548,9.28,2.211,26.03,16.022,1.205,29.511,19.9,3.871,26.516,23.168,10.624,11.715,8.766,9.289,7.433,12.018,10.366,21.103,2.33,14.547,9.004,20.564,-0.22,8.975,10.405,14.4,20.666,15.53,14.499,4.214,7.611,14.274,12.862,15.612,13.85,-1.898,7.472,18.835,2.732,14.633,18.31,6.863,12.2,16.37,17.917,-0.113,14.219,4.814,18.043,10.014,0.19,10.047,4.819,2.199,20.747,0.342,10.496,13.603,10.099,8.179,7.758,18.989,16.454,17.234,3.575,22.863,6.593,-1.945,7.241,25.083,8.46,0.893,9.967,21.033,1.025,8.004,27.253,3.599,20.208,1.359,-4.75,-1.861,17.231,21.943,28.567,-0.027,11.223,20.135,20.644,15.942,0.783,17.932,23.673,10.797,6.156,2.777,-0.338,16.827,22.495,21.663,3.99,5.598,4.913,14.847,9.733,19.915,10.355,12.238,12.427,15.856,10.942,23.589,4.165,3.761,-1.78,5.118,14.254,19.873,21.929,19.174,12.147,15.192],[24.098,18.162,7.557,16.521,10.448,9.967,1.058,3.493,7.374,15.189,28.049,19.792,8.377,-0.685,10.259,20.358,15.977,15.479,10.948,12.973,8.483,-0.372,13.787,15.628,4.918,3.081,1.537,19.008,8.853,19.695,6.771,15.258,10.354,17.789,6.671,-0.456,5.292,2.102,21.822,-3.67,1.633,9.159,23.363,9.665,0.721,19.596,18.826,16.121,27.099,11.713,5.559,-1.975,2.561,24.082,22.34,11.222,13.675,15.293,11.439,5.736,21.522,5.306,14.25,19.24,17.415,16.973,6.758,17.991,8.117,0.607,9.817,2.073,25.83,16.047,1.531,29.333,19.978,4.282,26.392,22.896,10.693,12.036,8.236,9.314,8.283,11.855,10.471,20.937,2.565,14.719,9.094,19.873,-0.3,9.17,10.408,14.653,21.168,15.626,14.164,4.318,7.815,14.654,12.732,15.778,13.499,-1.858,7.454,19.088,2.505,14.322,18.105,6.68,12.041,16.459,18.345,-0.739,13.872,5.025,17.777,9.79,0.272,10.081,4.949,2.087,20.998,0.391,9.867,13.685,9.766,8.419,7.769,18.816,16.402,16.129,3.845,22.725,6.43,-2.017,6.903,24.538,8.188,1.214,10.223,20.477,0.877,8.092,27.002,3.583,19.601,1.103,-4.788,-1.928,17.204,21.746,28.349,0.238,11.353,20.027,21.207,16.298,0.812,18.133,23.963,11.104,6.358,3.265,-0.928,16.992,21.967,22.087,3.845,5.818,4.764,14.426,9.535,20.016,10.125,12.27,12.516,15.972,11.419,23.498,4.156,3.695,-1.64,4.996,13.949,20.043,22.434,19.255,12.232,15.461],[24.019,18.07,7.526,16.585,10.149,10.297,1.314,3.447,7.361,15.159,27.887,19.992,8.558,-0.536,10.25,20.286,16.104,15.672,10.928,12.899,8.52,-0.547,13.834,15.536,4.895,3.243,1.738,19.059,8.89,19.326,6.953,15.086,10.331,17.632,6.834,-0.334,5.178,2.294,21.813,-3.862,1.649,9.111,23.244,9.784,0.999,19.516,18.713,16.104,27.073,11.925,5.68,-2.18,2.641,23.766,22.487,11.084,13.593,15.354,11.28,5.848,21.489,5.193,14.233,19.374,17.966,17.057,6.276,18.294,7.617,0.641,9.932,2.115,25.599,15.913,1.792,29.384,19.797,4.348,26.271,23.284,10.375,12.036,8.13,9.155,8.219,11.469,10.425,20.178,2.874,15.277,8.943,19.44,-0.44,9.81,10.163,14.908,21.233,15.107,13.947,4.784,7.788,14.389,12.839,15.354,13.334,-0.907,7.271,19.082,2.408,14.055,18.235,6.775,11.726,16.531,17.974,-0.516,14.184,5.146,17.85,10.062,0.829,9.755,5.039,2.441,20.788,0.229,9.52,13.506,9.781,8.274,7.823,17.673,16.367,15.814,4.029,23.06,6.41,-1.942,6.546,24.335,7.56,1.486,10.518,20.96,1.392,8.3,26.844,3.512,19.419,1.448,-5.13,-2.137,17.63,21.388,28.632,0.388,11.237,20.087,21.057,16.467,0.981,17.683,23.643,11.637,6.132,3.01,-1.174,17.053,21.86,21.398,3.633,5.479,4.756,14.055,9.565,19.949,10.066,12.297,12.532,16.105,11.609,23.055,4.215,3.864,-1.013,4.968,14.555,19.982,22.432,19.494,12.418,15.85],[23.919,18.106,7.546,16.625,9.851,10.553,1.573,3.468,7.35,15.045,27.728,20.169,8.598,-0.517,10.238,20.049,16.128,15.763,10.939,12.686,8.535,-0.528,13.761,15.558,4.876,3.47,1.894,19.175,8.857,18.955,7.072,14.797,10.297,17.381,6.979,-0.271,5.029,2.435,21.918,-4.108,1.734,9.028,23.131,9.807,1.149,19.368,18.514,16.212,27.022,12.118,5.789,-2.176,2.813,23.648,22.658,10.905,13.544,15.491,11.109,5.857,21.383,5.163,14.374,19.41,18.255,16.833,6.481,18.168,7.496,0.719,9.822,2.003,25.688,15.822,1.771,29.215,19.843,3.909,26.271,23.311,10.261,11.811,8.267,8.962,7.726,11.164,10.563,19.586,3.274,15.181,9.207,19.293,0.006,10.406,10.389,14.677,21.145,15.491,14.129,4.658,8.141,14.223,12.801,15.503,13.37,-0.705,7.404,18.912,2.714,14.068,18.359,6.731,11.386,16.504,18.201,-0.341,14.806,5.339,18.201,10.282,0.986,9.803,5.202,2.857,20.463,0.155,9.24,13.211,10.102,8.459,8.046,17.655,16.171,15.668,4.174,23.015,6.841,-1.899,6.457,24.708,7.413,1.577,10.365,21.087,1.634,8.767,27.069,3.739,19.862,1.973,-5.518,-2.581,17.487,21.612,28.368,0.663,11.19,19.606,20.902,16.498,1.354,17.537,22.943,12.396,5.933,2.55,-1.184,17.111,22.027,21.476,3.664,5.3,4.924,14.52,9.72,20.239,10.068,12.203,12.673,15.748,11.238,22.834,4.419,3.807,-1.168,5.214,14.962,19.603,22.292,19.389,12.188,15.739],[23.897,18.361,7.597,16.552,9.612,10.499,1.822,3.509,7.41,14.918,27.605,20.068,8.562,-0.607,10.28,19.811,16.094,15.744,10.974,12.417,8.595,-0.378,13.626,15.468,4.876,3.681,1.993,19.348,8.721,18.658,7.254,14.623,10.069,17.15,7.075,-0.164,5.114,2.576,21.989,-4.445,1.933,9.034,23.108,9.707,1.206,19.399,18.325,16.418,26.903,12.304,5.702,-2.134,2.928,23.492,22.823,10.922,13.6,15.541,11.03,5.806,21.24,5.225,14.432,19.465,18.419,16.768,6.376,18.122,7.328,0.842,10.007,2.279,25.686,15.938,2.176,29.187,19.999,3.283,25.988,23.21,10.704,11.477,8.14,8.681,7.75,11.263,11.014,19.754,3.287,14.604,9.223,20.056,-0.127,10.494,10.636,14.149,20.799,15.702,14.498,4.244,8.349,14.035,12.816,16.254,12.954,-0.998,7.721,18.582,3.181,14.525,17.919,6.671,11.461,16.817,18.21,-0.806,15.042,5.444,18.321,10.37,0.656,10.075,5.617,2.871,20.142,0.458,9.26,12.924,10.176,8.557,8.242,18.435,15.529,15.45,4.403,23.245,6.613,-1.779,7.106,24.431,7.565,1.392,10.284,21.045,1.814,8.428,27.296,3.885,19.622,1.863,-5.425,-2.689,17.298,21.931,28.081,0.77,11.488,19.722,20.707,15.948,1.161,17.549,23.41,12.712,6.257,2.693,-0.804,17.284,22.133,22.038,3.97,5.234,4.805,15.517,9.178,20.285,9.755,11.777,12.392,15.937,11.33,23.628,4.809,3.921,-1.132,5.433,14.574,19.529,22.27,19.211,12.719,15.309],[23.978,18.841,7.721,16.557,9.561,10.328,2.051,3.548,7.346,14.781,27.493,19.9,8.621,-0.771,10.264,19.61,16.155,15.571,11.097,12.234,8.679,-0.34,13.546,15.312,4.892,3.935,1.995,19.425,8.695,18.366,7.372,14.486,9.687,17.077,7.231,0.011,5.21,2.807,22.076,-4.623,2.064,9.07,23.197,9.894,1.153,19.481,18.273,16.461,26.659,12.476,5.623,-1.863,2.967,23.505,23.003,10.876,13.827,15.38,10.994,5.826,21.143,5.397,14.505,19.621,18.242,16.38,6.863,18.285,7.235,0.942,9.592,2.14,25.644,15.699,2.747,29.194,20.497,3.883,25.887,23.06,10.989,11.664,8.54,8.546,7.955,10.919,10.772,19.225,3.302,14.376,9.224,20.518,-0.996,10.534,10.266,14.233,20.555,15.523,14.179,4.354,8.207,14.065,12.956,16.65,12.783,-1.639,7.388,18.313,3.595,14.232,17.575,6.767,11.029,16.776,18.036,-0.567,14.788,5.683,18.381,10.242,0.927,9.929,5.699,2.478,19.814,0.859,9.232,12.854,9.317,8.385,8.355,17.745,15.758,15.444,4.42,23.515,6.717,-1.463,7.344,24.304,7.619,2.105,10.348,21.441,1.963,8.153,27.108,3.709,19.296,1.424,-5.821,-2.861,17.801,21.5,28.156,0.242,11.476,19.894,21.185,16.274,1.548,17.352,23.86,12.383,6.41,3.301,-0.784,17.174,21.95,22.225,3.923,5.334,4.48,15.274,9.112,19.946,9.496,11.398,11.815,15.663,11.292,22.867,4.567,3.809,-1.61,5.26,14.326,19.464,22.786,18.69,12.473,15.319],[24.067,18.981,7.79,16.737,9.636,10.19,2.335,3.609,7.168,14.595,27.678,19.648,8.824,-0.646,10.234,19.529,16.285,15.373,11.168,12.269,8.641,-0.515,13.42,15.165,4.972,3.972,2.038,19.462,8.735,18.162,7.431,14.451,9.336,16.986,7.324,0.342,5.278,3.166,22.127,-4.665,2.109,8.965,23.284,10.236,1.02,19.653,18.266,16.416,26.47,12.476,5.572,-1.671,2.968,23.565,23.165,10.6,13.848,15.111,11.055,5.871,21.047,5.372,14.362,19.653,18.206,16.306,6.714,18.047,7.544,0.635,9.569,1.998,25.615,15.482,2.799,28.821,20.535,4.126,26.028,22.76,10.726,11.937,8.162,8.839,8.547,11.338,10.355,19.024,3.572,14.373,9.53,20.17,-0.872,10.488,10.151,14.352,20.426,15.329,13.892,4.434,8.225,14.326,12.914,16.27,12.276,-1.989,6.941,18.211,3.426,13.895,17.652,6.689,10.957,16.688,18.492,-0.127,14.976,5.51,18.412,10.412,1.248,9.493,5.832,2.708,19.642,0.454,8.818,12.974,8.393,8.673,8.436,17.154,15.899,15.232,4.613,23.815,6.76,-1.45,7.415,24.34,7.506,1.549,10.658,21.769,2.234,8.724,26.379,3.671,19.475,1.349,-6.071,-3.152,17.139,21.539,27.81,0.029,11.673,19.682,21.429,16.988,1.609,17.287,23.043,11.875,6.466,3.44,-0.596,16.819,22.106,22.332,4.07,5.562,4.808,14.97,9.08,19.917,9.606,11.241,11.89,15.867,11.604,22.785,4.502,3.697,-1.616,5.039,14.811,19.375,23.584,18.67,12.71,14.911],[24.178,18.793,7.769,16.838,9.846,10.124,2.617,3.585,6.913,14.439,27.84,19.343,9.105,-0.462,10.283,19.484,16.375,15.346,11.094,12.399,8.581,-0.596,13.342,14.996,4.889,3.95,2.12,19.641,8.698,18.105,7.426,14.483,8.97,16.91,7.447,0.517,5.331,3.343,22.249,-4.785,2.146,8.939,23.195,10.335,0.804,19.824,18.191,16.305,26.335,12.443,5.511,-1.606,3.03,23.556,23.321,10.293,13.812,14.758,11.146,5.857,20.984,5.237,14.354,19.665,18.861,16.308,6.225,18.238,8.088,1.079,10.239,2.237,25.729,16.018,2.842,29.206,20.312,4.118,26.05,22.737,10.34,12.136,8.272,8.886,7.955,11.379,10.302,18.863,4.031,14.445,9.62,18.919,0.032,9.941,10.643,14.057,20.402,15.326,13.84,4.676,8.222,14.172,13.02,15.929,12.111,-2.502,7.139,18.451,3.194,13.885,17.414,6.759,11.031,16.521,18.651,-0.371,14.993,5.647,18.387,10.391,1.048,9.67,5.765,3.1,19.456,0.689,8.43,12.709,8.662,9.136,8.463,17.241,15.697,15.074,4.985,23.518,6.956,-1.127,7.251,24.755,7.34,1.616,10.673,21.735,2.717,8.43,26.293,4.145,19.757,1.8,-5.82,-3.102,17.183,22.024,27.727,0.48,11.986,19.596,21.342,16.861,1.479,17.393,22.853,11.456,6.112,2.88,-0.142,16.603,22.152,22.592,3.81,5.403,4.896,15.085,8.849,19.879,9.975,11.282,12.001,16.025,11.433,23.297,4.798,3.733,-0.866,5.321,14.406,19.265,24.234,19.133,12.682,14.682],[24.313,18.676,7.737,16.953,9.937,10.15,2.748,3.459,6.742,14.469,27.861,18.935,9.344,-0.36,10.329,19.417,16.349,15.373,11.102,12.363,8.499,-0.659,13.257,14.793,4.744,4.093,2.066,19.82,8.634,18.113,7.407,14.36,8.607,16.979,7.66,0.544,5.484,3.45,22.354,-4.843,2.265,8.926,23.154,10.208,0.81,19.886,18.196,16.21,26.302,12.4,5.426,-1.401,3.162,23.489,23.531,10.171,13.663,14.473,11.242,5.843,20.936,5.116,14.63,19.651,19.151,15.93,6.216,18.755,8.081,0.972,10.158,2.505,25.952,16.446,3.187,29.423,20.275,4.038,26.49,23.013,10.355,12.086,8.857,8.771,7.975,11.472,10.101,18.443,4.008,14.342,9.854,18.106,0.38,9.678,10.614,13.891,19.954,15.721,13.668,4.652,8.187,13.802,12.934,15.84,12.426,-2.37,7.582,19.051,3.219,13.803,17.417,6.474,11.463,16.366,18.451,-0.447,14.773,5.709,18.933,10.039,0.706,10.114,5.861,2.803,19.421,1.49,8.719,12.834,9.312,8.956,8.441,17.746,15.651,15.247,5.139,23.467,7.341,-0.984,6.786,24.743,7.474,1.495,10.358,21.428,2.921,8.239,26.144,4.492,19.703,1.951,-5.83,-2.98,17.439,21.893,28.036,0.512,12.014,19.902,21.139,16.12,1.838,17.553,23.644,11.53,5.596,2.778,-0.315,16.113,21.984,22.627,3.54,5.579,4.764,15.22,8.552,20.204,10.009,10.526,11.632,16.15,11.292,23.377,5.071,3.455,-0.274,4.948,14.316,19.165,24.312,19.845,12.395,14.767],[24.316,18.67,7.941,17.179,9.948,10.13,2.707,3.292,6.715,14.4,27.93,18.459,9.274,-0.345,10.334,19.293,16.292,15.291,11.055,12.373,8.414,-0.709,13.098,14.646,4.742,4.251,1.835,19.973,8.738,18.168,7.319,14.318,8.385,17.176,7.882,0.649,5.659,3.491,22.292,-4.817,2.491,9.03,23.205,10.289,0.937,19.83,18.42,16.163,26.322,12.428,5.174,-1.078,3.267,23.553,23.759,10.193,13.49,14.34,11.171,5.719,20.96,5.121,14.828,19.766,18.935,16.11,6.199,18.697,8.032,1.097,10.717,1.986,26.108,16.215,3.192,29.462,20.164,3.626,26.574,23.279,10.563,12.137,8.696,8.664,7.66,11.538,10.893,18.078,4.006,14.305,9.722,18.593,-0.3,9.599,10.349,13.752,19.623,15.179,13.813,4.611,7.901,13.908,12.883,15.692,12.51,-2.607,7.284,19.29,3.836,13.49,17.681,6.616,11.1,16.45,18.579,0.05,14.012,5.44,19.633,10.184,0.656,9.88,6.135,2.702,19.696,1.474,9.158,12.869,8.721,8.638,8.45,17.924,15.628,15.258,5.083,24.027,7.506,-1.064,6.765,24.501,7.509,1.643,10.413,21.719,2.942,8.465,25.614,4.254,19.441,1.815,-6.141,-3.222,16.902,21.477,28.039,0.335,11.744,20.038,21.445,15.803,1.777,17.528,23.251,11.514,5.92,2.921,-0.33,16.046,21.959,22.757,3.777,5.4,4.715,15.461,8.505,20.462,9.93,10.263,11.353,16.169,11.261,23.085,4.915,3.23,-0.158,5.043,14.303,19.146,24.05,19.884,12.377,14.325],[24.05,18.823,8.084,17.344,9.899,10.196,2.611,3.229,6.77,14.298,28.028,18.18,9.02,-0.429,10.342,19.111,16.306,15.169,10.918,12.414,8.343,-0.811,12.843,14.618,5.088,4.523,1.597,20.233,8.753,18.319,7.221,14.403,8.394,17.262,7.96,0.746,5.623,3.54,22.281,-4.878,2.595,9.213,23.186,10.582,1.039,19.887,18.749,16.044,26.252,12.416,4.956,-0.765,3.296,23.503,23.681,10.15,13.311,14.286,10.97,5.542,21.075,5.295,14.848,19.887,18.163,16.002,6.609,18.58,7.732,0.758,10.541,1.962,25.855,15.852,2.967,29.288,20.435,3.652,26.298,22.874,10.062,11.993,8.61,8.813,8.159,10.998,10.858,18.179,3.786,14.013,9.155,19.411,-0.201,9.493,10.012,13.541,19.874,15.143,13.57,4.883,8.189,13.812,12.802,16.019,12.892,-2.059,7.334,18.951,3.564,13.495,17.542,6.84,10.858,16.721,18.949,0.233,13.646,5.337,19.633,10.12,1.076,9.828,6.306,2.59,19.761,1.315,8.475,12.779,7.456,9.081,8.22,17.658,15.707,15.441,5.096,23.681,7.118,-0.886,7.398,24.312,7.803,1.991,10.965,21.935,2.996,8.47,25.422,4.316,18.905,2.267,-6.331,-3.372,17.22,21.578,27.476,0.33,12.07,19.875,21.556,16.064,1.738,17.504,23.172,11.269,6.234,3.383,0.059,16.188,21.81,23.251,3.823,5.236,4.456,15.992,8.525,20.541,10.034,10.807,11.436,16.366,11.499,22.714,4.948,3.267,-0.415,4.76,14.093,19.298,24.425,19.748,11.753,14.053],[23.78,19.013,8.158,17.398,9.82,10.089,2.533,3.377,6.879,14.098,27.983,18.306,8.673,-0.551,10.226,18.972,16.405,15.049,10.834,12.467,8.321,-0.821,12.541,14.655,5.35,4.52,1.599,20.405,8.763,18.418,7.322,14.538,8.259,17.296,8.097,0.947,5.453,3.829,22.231,-5.038,2.531,9.259,23.171,10.995,1.11,19.939,18.893,15.997,26.014,12.236,5.009,-0.501,3.376,23.266,23.363,9.979,13.09,14.251,10.896,5.39,21.172,5.364,14.979,20.014,18.767,15.711,6.704,18.44,7.481,0.732,9.777,2.043,25.524,16.135,2.886,29.376,20.524,4.169,26.351,22.707,10.138,11.45,8.638,8.88,8.584,11.252,10.192,18.242,3.198,13.83,8.904,19.289,0.022,9.887,10.002,13.636,20.029,15.44,13.353,5.142,8.231,13.796,12.556,15.729,12.854,-1.518,7.356,18.578,3.734,13.616,17.228,7.072,12.031,16.759,19.175,0.058,13.46,5.449,19.284,9.664,0.576,10.208,6.264,2.819,19.736,0.982,8.569,12.768,6.659,9.387,8.095,17.762,15.554,15.461,5.26,23.649,7.265,-0.5,7.16,24.428,7.868,1.874,11.387,21.499,2.93,8.607,25.925,4.079,19.132,2.179,-6.187,-3.242,17.23,21.574,27.771,0.322,12.591,20.148,21.393,16.224,2.173,17.831,23.343,11.031,5.896,3.656,0.752,15.96,22.121,23.447,3.758,5.185,4.814,16.019,8.366,20.24,9.734,10.543,11.421,16.087,11.913,23.005,5.027,3.061,-0.277,4.752,13.991,19.369,24.491,19.686,12.369,14.41],[23.651,19.175,8.138,17.395,9.893,10.019,2.497,3.552,6.952,13.912,27.966,18.522,8.465,-0.547,10.053,18.916,16.415,15.027,10.813,12.575,8.228,-0.679,12.365,14.76,5.204,4.32,1.729,20.331,8.996,18.43,7.552,14.651,7.938,17.404,8.215,1.149,5.448,4.049,22.137,-5.074,2.498,9.242,23.145,11.338,1.13,20.115,19.01,16.023,25.928,12.063,5.075,-0.229,3.556,23.11,23.086,9.76,13.133,14.179,10.881,5.222,21.262,5.272,15.087,20.084,19.511,15.825,6.088,18.675,8.03,0.929,9.659,2.101,25.407,16.651,2.922,29.262,20.603,4.18,26.173,22.806,10.739,11.434,9.031,8.73,8.068,11.243,10.143,18.515,3.463,13.362,8.827,18.113,-0.539,9.486,10.005,13.916,19.847,15.343,13.224,5.25,7.562,13.586,12.701,15.157,12.765,-1.317,7.331,19.182,3.662,13.583,17.408,7.169,11.767,16.427,19.047,-0.545,13.248,5.713,19.305,9.814,0.253,10.108,5.758,2.709,19.648,1.398,8.865,12.886,6.662,9.25,8.516,17.909,15.432,15.754,5.668,23.717,7.025,-0.733,7.055,24.671,7.932,2.0,11.792,21.632,3.504,8.822,25.829,4.086,19.53,1.746,-6.253,-3.328,16.846,21.74,27.808,0.314,12.734,20.331,20.676,15.685,2.035,17.939,22.614,10.583,5.785,3.458,0.946,15.931,22.154,23.208,3.755,5.283,5.349,15.718,8.162,20.106,9.679,10.272,11.064,16.355,11.203,23.036,5.113,3.165,-0.364,4.983,13.968,19.375,24.399,19.858,12.06,14.212],[23.605,19.201,7.994,17.468,10.016,10.14,2.626,3.682,6.974,13.79,27.862,18.693,8.369,-0.43,9.888,18.939,16.224,14.939,10.945,12.628,8.058,-0.493,12.283,14.827,4.891,4.168,1.768,20.083,9.172,18.38,7.779,14.781,7.407,17.538,8.229,1.242,5.537,4.239,22.128,-5.037,2.509,9.255,23.058,11.513,1.18,20.249,19.171,15.936,26.056,11.816,5.007,-0.098,3.673,23.002,22.925,9.485,13.227,14.046,10.858,5.163,21.243,5.329,15.123,20.097,19.331,15.545,6.557,18.958,8.143,1.059,9.273,2.064,25.452,16.801,3.081,29.078,20.648,4.407,26.298,22.701,11.014,11.486,8.606,9.009,7.862,11.534,10.241,18.506,3.817,13.298,8.348,17.866,-0.285,8.606,10.432,13.957,19.264,15.508,13.406,4.371,7.868,13.622,12.823,14.915,13.04,-1.021,7.74,20.368,2.979,13.618,18.165,6.663,11.15,16.434,18.934,-0.649,13.203,6.05,19.288,9.537,0.376,10.404,5.562,2.66,19.629,1.788,9.018,13.073,7.178,9.212,8.932,17.96,15.103,15.803,5.945,23.539,6.932,-0.468,6.967,24.713,7.576,1.755,12.65,21.481,4.363,8.995,25.26,4.008,19.768,1.712,-6.223,-3.324,16.78,21.954,27.475,0.354,12.89,20.126,20.921,15.477,1.959,17.751,23.081,10.64,5.918,3.186,0.881,15.848,21.764,23.086,3.66,5.294,4.904,15.944,7.807,20.387,9.936,10.665,10.519,16.661,10.865,22.592,5.479,3.262,-0.269,4.66,13.852,19.451,24.076,20.019,11.905,14.134],[23.627,19.075,7.948,17.637,10.093,10.21,2.79,3.656,7.062,13.809,27.681,18.661,8.136,-0.146,9.684,19.038,16.009,14.712,11.254,12.621,7.893,-0.336,12.274,14.795,4.551,3.948,1.802,19.845,9.329,18.338,8.082,14.857,7.049,17.637,8.128,1.353,5.659,4.493,22.142,-5.016,2.548,9.176,23.056,11.741,1.179,20.408,19.218,15.8,26.206,11.709,4.803,-0.196,3.589,23.055,22.858,9.341,13.33,13.984,10.897,5.113,21.022,5.481,15.227,20.082,18.844,15.5,7.182,19.206,8.021,1.344,9.103,2.191,25.396,16.661,3.43,29.015,20.737,4.208,25.948,22.65,10.716,11.252,8.631,9.073,7.874,11.637,10.444,18.674,3.576,13.052,8.338,19.158,0.169,8.702,10.741,13.998,18.932,15.451,13.299,3.972,8.215,13.571,13.079,14.886,12.713,-1.21,7.948,20.75,2.803,13.451,18.732,6.357,11.539,16.523,18.887,-0.19,13.574,6.232,18.55,9.436,0.525,10.634,5.558,2.783,19.716,1.681,8.688,13.008,6.952,9.332,8.989,18.168,15.094,15.768,5.898,23.795,7.021,-0.38,6.851,24.703,7.583,2.019,12.707,21.323,4.672,8.655,25.2,3.921,19.68,2.144,-6.251,-3.277,17.063,21.77,27.76,0.268,12.774,20.384,21.706,15.592,2.382,17.58,22.725,10.483,5.326,3.255,0.976,15.517,21.592,23.296,4.132,5.353,4.635,15.793,7.485,20.66,9.834,10.479,10.095,16.607,11.189,22.942,5.1,2.825,0.304,4.72,13.377,19.111,23.642,20.071,12.502,14.565],[23.458,19.124,7.962,17.767,10.108,10.226,2.945,3.401,7.243,13.919,27.517,18.643,7.955,0.175,9.589,19.095,15.746,14.395,11.469,12.644,7.926,-0.285,12.367,14.741,4.424,3.735,1.85,19.711,9.488,18.353,8.288,14.793,6.774,17.752,8.056,1.258,5.844,4.596,22.243,-5.088,2.77,9.074,23.109,11.808,1.183,20.672,19.109,15.887,26.274,11.72,4.426,-0.334,3.343,23.184,22.887,9.424,13.47,13.976,10.778,5.006,20.718,5.737,15.318,20.061,18.7,15.634,6.92,19.241,7.951,1.338,9.396,2.112,25.205,16.612,2.983,28.559,20.621,4.036,25.574,22.664,10.284,11.085,9.047,9.0,8.362,11.411,10.816,18.73,3.643,12.894,7.945,19.634,0.073,9.295,10.472,14.272,18.903,15.414,13.072,4.593,7.688,13.713,13.301,15.279,12.795,-1.416,8.104,20.874,2.696,13.422,18.657,6.238,11.296,16.23,18.895,0.123,13.669,6.48,19.039,9.202,0.99,10.786,5.346,2.532,19.744,1.456,8.562,12.996,6.308,9.431,9.255,17.706,15.351,15.919,6.036,23.756,7.053,0.115,7.268,24.182,7.805,2.235,12.712,21.085,4.681,8.472,26.168,4.265,19.516,2.576,-6.115,-3.31,16.837,21.569,28.018,0.307,13.014,20.532,22.063,15.434,2.528,17.779,22.863,10.303,4.765,3.399,0.429,15.314,21.58,22.779,4.251,5.461,5.428,16.21,7.853,20.616,9.868,10.198,10.175,16.192,11.265,22.76,4.969,2.6,0.497,4.909,13.79,18.792,23.911,19.597,12.166,14.883],[23.201,19.183,8.05,17.861,10.105,10.184,3.003,2.975,7.317,14.041,27.499,18.714,7.908,0.255,9.676,19.172,15.566,14.326,11.45,12.66,7.908,-0.411,12.449,14.904,4.52,3.542,1.898,19.853,9.615,18.467,8.372,14.686,6.561,17.706,8.178,1.137,6.024,4.524,22.281,-5.23,3.097,9.067,23.09,11.771,1.212,20.937,18.941,16.065,26.387,11.713,4.328,-0.652,3.16,22.982,22.964,9.666,13.532,14.004,10.563,5.121,20.42,6.097,15.358,19.924,19.245,15.814,7.063,19.476,7.873,1.459,8.69,1.87,24.98,16.739,2.529,28.647,20.851,4.159,25.519,22.03,10.271,11.244,8.546,9.24,8.975,11.792,10.85,18.65,4.094,13.283,7.631,19.048,0.034,8.999,10.574,14.554,19.08,14.713,13.198,4.785,7.533,13.233,13.26,15.462,13.009,-1.058,7.99,20.427,2.528,13.533,17.908,6.052,11.572,15.937,18.747,0.45,13.673,6.669,19.194,9.306,1.033,10.885,5.159,2.438,19.125,1.299,8.12,12.822,5.329,9.4,9.607,18.044,15.596,15.843,6.245,23.593,7.308,-0.681,6.69,24.577,7.472,2.405,12.759,21.315,4.628,8.925,26.817,4.461,19.471,2.551,-6.233,-3.326,16.826,21.484,27.888,0.705,13.157,20.197,21.863,15.826,2.666,17.507,23.231,10.374,5.017,3.162,0.296,15.169,21.646,22.55,4.407,5.081,5.664,16.923,8.17,20.469,9.648,10.163,10.832,16.065,11.009,23.052,4.807,2.54,0.287,4.428,14.239,18.812,24.482,19.64,12.207,14.916],[23.04,19.228,8.133,18.025,10.145,10.132,2.963,2.607,7.332,14.119,27.634,18.819,7.67,0.09,9.75,19.296,15.375,14.489,11.325,12.757,7.845,-0.366,12.545,15.149,4.542,3.412,1.902,20.027,9.793,18.436,8.497,14.593,6.315,17.588,8.203,0.91,6.048,4.582,22.284,-5.26,3.24,9.229,23.219,11.744,1.208,21.069,18.837,16.206,26.513,11.708,4.556,-0.957,3.091,22.716,23.143,10.021,13.582,13.999,10.295,5.328,20.24,6.177,15.419,19.715,19.382,15.865,7.704,19.609,8.218,1.338,8.942,1.276,24.544,16.678,3.188,28.826,21.029,3.883,25.836,21.58,10.335,11.279,8.866,9.278,8.733,11.547,10.289,18.64,3.707,13.495,8.045,18.575,0.013,8.902,10.788,14.476,19.182,14.91,13.559,4.4,7.764,12.88,13.138,15.048,12.95,-0.921,8.291,19.44,2.493,13.755,17.22,6.418,11.396,15.955,19.029,-0.314,13.221,6.825,18.891,9.538,0.978,11.058,4.94,2.623,19.063,1.312,7.562,12.942,4.788,9.282,9.579,18.456,15.673,15.772,6.225,23.679,7.857,-0.985,6.578,24.774,7.608,2.459,12.657,21.689,4.445,8.764,26.443,4.805,20.022,2.521,-6.422,-3.633,17.377,21.762,28.192,0.712,13.016,19.915,21.816,15.984,2.684,17.062,22.665,10.491,5.268,3.117,0.526,15.11,21.487,22.911,4.575,5.168,5.617,17.14,8.262,20.384,9.401,10.358,11.01,15.482,10.769,22.525,4.703,2.681,-0.331,4.198,14.183,18.544,24.415,19.491,12.481,15.244],[22.892,19.111,8.099,17.981,10.208,9.943,2.792,2.329,7.619,14.162,27.767,18.849,7.49,-0.091,9.808,19.324,15.131,14.747,11.208,12.777,7.918,-0.269,12.607,15.152,4.547,3.405,1.966,20.046,9.973,18.259,8.588,14.649,6.102,17.625,8.248,0.766,6.163,4.663,22.293,-5.214,3.181,9.365,23.42,11.711,1.164,21.099,18.872,16.277,26.566,11.694,4.769,-0.947,3.153,22.414,23.345,10.317,13.702,14.076,10.103,5.489,20.127,6.102,15.3,19.505,18.981,16.024,7.123,19.679,8.013,1.002,8.612,0.873,24.508,16.793,3.584,29.117,20.611,3.046,26.142,21.698,10.066,11.103,9.177,9.048,8.544,11.664,10.361,19.078,3.727,13.33,7.742,18.807,-0.295,8.838,10.708,14.304,19.774,14.759,13.632,4.21,7.883,13.394,13.082,14.668,13.051,-1.114,8.555,18.785,2.496,13.703,17.389,6.227,11.572,16.3,18.694,-0.563,13.251,6.906,19.096,9.707,1.285,11.264,4.999,2.475,19.23,1.034,7.136,12.767,4.699,9.187,9.956,18.072,15.734,15.706,6.356,23.819,7.702,-0.723,6.969,24.855,7.966,2.222,12.314,21.737,4.775,8.968,25.968,5.208,20.345,2.516,-6.594,-3.619,17.307,22.088,28.276,0.574,13.104,19.986,22.533,15.978,2.605,17.256,22.811,10.605,5.394,3.129,0.657,14.64,20.959,23.098,4.656,5.835,5.612,16.665,8.547,20.153,9.244,10.506,11.197,15.529,11.221,22.264,4.754,3.047,-1.125,4.418,14.216,18.197,24.206,19.131,12.332,15.182],[22.782,18.819,7.941,17.768,10.3,9.694,2.694,2.253,7.78,14.196,27.764,18.917,7.401,-0.282,9.754,19.254,14.916,15.027,11.128,12.742,8.146,-0.332,12.646,15.081,4.382,3.466,2.1,19.806,9.99,17.965,8.559,14.903,5.962,17.75,8.395,0.787,6.378,4.765,22.275,-5.423,2.996,9.522,23.628,11.734,1.227,21.137,18.892,16.257,26.535,11.679,4.882,-0.767,3.256,22.353,23.296,10.473,13.772,14.035,10.209,5.743,19.991,6.118,15.024,19.36,18.607,15.834,7.025,19.571,8.391,1.042,8.103,1.231,24.563,16.795,2.582,29.143,20.459,2.605,26.247,22.19,9.788,11.194,8.7,9.448,8.789,12.041,10.609,19.647,3.811,12.861,7.459,19.301,-0.373,8.737,10.602,14.233,20.09,14.583,13.196,4.579,8.065,13.877,12.93,14.107,13.089,-0.977,8.499,18.889,2.285,13.712,18.238,6.128,11.982,16.529,19.038,0.016,13.94,7.116,19.139,9.919,1.099,11.438,5.082,2.617,19.336,1.064,7.384,13.071,4.906,9.672,9.938,18.055,15.509,15.82,6.07,23.779,8.109,-0.589,7.161,24.796,7.936,2.287,12.766,21.364,4.659,9.24,26.024,5.461,20.264,2.562,-6.442,-3.662,16.851,21.977,28.252,0.472,12.978,20.397,22.559,16.093,2.729,17.709,22.719,10.499,4.721,3.216,0.663,14.117,20.815,22.56,4.475,5.766,5.617,16.4,8.884,19.436,9.072,10.277,11.579,16.06,10.988,22.948,4.754,3.234,-0.622,4.467,14.469,18.24,24.45,19.206,12.045,15.563],[22.794,18.791,7.679,17.588,10.303,9.502,2.654,2.281,7.801,14.116,27.695,19.162,7.41,-0.475,9.597,19.114,14.783,15.102,11.196,12.846,8.311,-0.353,12.795,15.133,4.221,3.442,2.149,19.642,9.861,17.817,8.445,15.114,5.884,17.914,8.604,0.893,6.659,4.779,22.323,-5.857,2.906,9.68,23.726,11.898,1.369,21.175,18.931,16.19,26.571,11.638,4.833,-0.611,3.288,22.623,23.12,10.669,13.76,13.965,10.413,5.914,19.955,6.239,14.92,19.246,18.812,15.747,7.988,19.242,8.345,0.948,8.74,1.264,24.633,16.869,2.07,28.914,20.456,2.942,25.863,21.902,9.765,11.282,8.621,9.892,8.444,11.98,9.63,19.195,3.716,12.821,8.092,18.937,-0.701,8.709,10.627,14.317,19.812,14.633,13.599,4.551,8.197,13.736,13.063,13.962,13.127,-1.042,8.427,19.287,2.326,13.733,17.946,5.82,11.514,16.854,18.929,0.11,14.141,6.887,18.67,10.019,0.72,11.151,4.985,2.92,19.244,1.445,7.518,13.594,4.921,9.73,9.714,18.174,15.728,16.102,6.15,23.478,8.315,-0.859,7.373,24.919,8.154,2.643,13.169,21.046,4.28,9.069,26.504,5.34,19.937,2.635,-6.542,-3.914,16.722,21.909,28.294,1.284,12.616,20.437,21.836,16.001,2.299,17.406,23.147,10.489,4.804,3.505,0.482,14.141,20.742,22.455,4.593,5.146,5.843,16.049,9.01,19.226,9.431,10.256,11.379,15.792,10.638,22.494,4.703,3.122,-0.008,5.035,14.256,18.105,24.426,19.102,12.118,15.67],[22.798,19.101,7.495,17.449,10.198,9.27,2.549,2.316,7.934,14.088,27.458,19.196,7.718,-0.657,9.453,18.996,14.805,15.031,11.268,12.964,8.347,-0.339,13.097,15.235,4.074,3.534,2.188,19.594,9.826,17.81,8.312,15.364,5.814,18.039,8.781,0.938,6.893,4.673,22.19,-6.071,2.919,9.701,23.657,11.9,1.618,21.123,18.873,16.107,26.785,11.603,4.757,-0.592,3.273,22.898,22.996,10.923,13.604,13.939,10.672,5.93,19.854,6.288,14.873,19.154,18.99,15.926,7.811,19.155,8.002,0.533,8.886,1.04,24.414,16.392,2.739,28.708,20.532,3.246,25.727,21.537,9.319,11.034,8.483,9.561,7.828,11.747,9.708,18.875,4.0,13.197,7.801,18.87,-0.938,8.681,10.683,14.392,19.275,14.677,14.248,3.909,7.949,13.519,13.164,14.504,12.913,-0.92,8.136,19.838,2.451,13.733,16.904,6.016,12.073,16.306,18.454,-0.075,13.933,6.483,18.61,10.199,0.858,10.817,4.736,2.546,19.101,1.787,7.421,13.626,4.91,9.765,9.386,18.144,16.309,16.17,6.4,23.691,8.419,-0.782,7.289,24.901,8.24,2.606,13.219,20.926,4.281,9.347,26.971,5.557,19.66,2.334,-7.099,-4.403,16.545,22.002,28.199,1.828,12.795,20.141,21.619,15.862,2.181,17.33,23.228,10.642,5.389,3.275,0.664,14.378,20.929,23.016,4.8,5.083,5.793,16.148,9.186,19.354,9.605,10.72,11.382,15.538,10.501,22.594,4.682,2.913,0.25,5.178,14.409,18.199,23.893,19.039,12.379,15.379],[22.727,19.232,7.306,17.395,10.007,8.984,2.504,2.378,8.057,14.23,27.165,19.039,7.846,-0.758,9.26,18.961,14.951,15.085,11.235,13.088,8.321,-0.305,13.324,15.144,4.033,3.723,2.159,19.644,9.952,17.742,8.165,15.517,5.875,17.983,8.884,0.945,7.072,4.612,21.977,-6.127,2.936,9.745,23.566,11.78,1.85,20.989,18.746,15.936,26.98,11.566,4.669,-0.596,3.113,23.124,22.95,11.2,13.447,13.907,10.964,5.882,19.771,6.125,14.937,19.127,19.126,16.152,7.821,18.886,8.259,0.588,9.134,0.959,24.438,16.055,2.866,28.804,20.408,3.162,25.748,21.638,9.283,11.052,8.291,9.142,7.619,11.567,10.123,18.976,4.176,13.453,7.65,19.362,-0.781,8.647,10.62,14.748,18.776,14.355,14.411,3.799,7.677,13.508,13.028,15.482,13.288,-1.02,8.306,20.182,2.653,13.609,17.219,5.774,12.165,16.131,18.836,-0.082,14.302,6.418,18.779,10.155,1.289,11.215,5.274,2.537,18.925,1.198,7.065,13.977,4.76,9.894,8.975,18.238,16.806,16.07,6.392,23.318,8.263,-0.559,7.372,24.634,8.425,2.744,12.469,21.665,4.388,9.237,27.161,5.319,19.864,2.565,-7.03,-4.416,16.539,21.831,28.81,0.921,13.125,20.045,22.068,15.937,2.57,17.32,23.066,10.617,5.529,3.045,0.744,14.338,20.945,22.986,4.658,5.822,5.291,16.374,9.445,19.242,10.018,11.118,12.01,15.661,11.03,23.133,4.776,2.932,-0.161,4.571,14.214,18.067,23.458,18.992,11.673,15.174],[22.643,19.21,7.198,17.396,9.826,8.859,2.441,2.514,8.253,14.549,26.992,18.832,7.756,-0.696,9.116,19.019,15.06,15.172,11.111,13.232,8.305,-0.26,13.462,15.019,3.961,4.043,2.062,19.848,10.172,17.739,7.928,15.547,5.982,17.976,8.961,0.849,7.016,4.722,21.993,-6.013,3.072,9.773,23.384,11.7,1.91,20.858,18.561,15.806,27.157,11.64,4.696,-0.586,2.783,23.293,22.88,11.421,13.166,13.996,11.302,5.8,19.776,5.847,15.217,19.098,18.64,16.192,8.21,18.874,8.338,0.82,9.331,1.438,24.371,16.244,2.56,28.614,20.542,2.801,25.549,21.928,8.838,10.931,8.381,9.133,7.811,11.495,9.507,19.426,3.64,13.138,8.088,19.434,-0.762,8.604,10.509,14.387,18.305,14.406,14.303,3.799,7.518,13.662,12.991,15.926,13.705,-1.523,8.595,20.012,2.791,13.54,17.032,5.678,11.796,16.666,19.344,-0.022,14.477,6.345,18.659,9.987,1.064,11.51,5.591,2.993,19.328,1.076,6.992,14.208,4.659,9.793,9.155,18.123,17.147,16.109,6.365,23.546,8.37,-0.634,7.622,24.912,8.547,2.694,11.943,21.197,4.201,9.0,26.582,5.357,20.177,2.687,-6.824,-4.344,16.41,21.664,28.751,0.878,13.025,19.954,22.513,15.881,2.514,16.931,23.476,10.548,4.878,3.074,0.394,14.141,20.51,22.362,4.811,6.549,4.832,16.558,9.592,19.19,10.187,11.364,12.01,15.39,11.001,22.997,4.311,2.961,-0.417,4.685,13.77,17.914,23.549,18.798,11.453,15.736],[22.411,19.119,7.311,17.503,9.723,8.748,2.265,2.685,8.496,14.526,26.965,19.038,7.847,-0.559,9.07,19.075,14.969,15.259,10.904,13.302,8.411,-0.262,13.435,14.818,3.727,4.276,1.919,20.055,10.323,18.0,7.776,15.515,5.972,18.166,8.92,0.711,6.932,4.906,22.2,-5.735,3.152,9.658,23.404,11.816,1.904,20.746,18.264,15.719,27.135,11.741,4.803,-0.641,2.491,23.315,22.734,11.502,12.882,14.267,11.529,5.855,19.748,5.711,15.498,18.998,18.625,16.366,7.886,18.782,8.589,0.324,9.204,1.921,24.202,16.527,2.303,28.265,20.717,2.929,25.02,21.9,8.589,10.687,7.916,9.063,8.097,11.203,9.397,19.094,3.238,13.331,7.895,19.281,-1.202,8.464,10.524,14.018,17.726,14.558,13.867,3.951,7.166,14.44,12.846,15.884,13.199,-1.616,8.803,19.986,3.333,13.459,16.781,5.588,12.524,16.749,18.865,0.224,14.61,6.074,19.09,9.77,0.793,11.643,5.648,2.878,19.441,1.191,7.212,14.49,4.991,10.181,9.078,18.025,17.084,16.447,6.059,23.373,7.896,-0.907,7.856,24.665,8.25,2.671,11.377,21.072,4.458,9.221,26.368,5.275,19.655,2.547,-6.615,-4.168,16.047,21.835,28.697,1.293,12.86,19.741,22.379,15.549,2.354,16.91,23.553,10.667,4.595,2.745,0.369,14.018,20.515,22.547,4.156,6.216,5.443,17.154,9.656,18.978,10.217,11.858,12.497,15.173,10.373,23.199,4.207,3.017,-0.314,5.383,13.541,18.24,23.429,18.685,11.492,16.042],[22.07,19.002,7.455,17.67,9.577,8.607,2.117,2.993,8.566,14.263,26.96,19.381,8.027,-0.737,9.137,19.084,14.676,15.473,10.799,13.357,8.496,-0.36,13.238,14.7,3.514,4.324,1.777,20.161,10.313,18.336,7.743,15.516,5.88,18.347,8.939,0.579,6.752,4.915,22.258,-5.459,3.075,9.483,23.493,11.95,1.999,20.624,18.052,15.579,26.988,11.619,4.952,-0.698,2.507,23.213,22.644,11.673,12.793,14.495,11.625,6.06,19.684,5.744,15.735,18.928,18.902,16.135,7.987,18.863,9.063,0.626,9.514,1.557,24.016,16.476,2.066,28.307,20.298,3.414,25.081,21.366,8.763,10.694,7.859,9.386,8.368,10.913,9.298,18.92,3.472,14.01,8.146,19.435,-1.426,8.151,10.452,13.776,17.423,14.55,14.166,3.662,7.072,14.71,12.647,15.938,13.372,-1.256,8.546,20.132,3.637,13.342,17.385,5.12,12.516,16.464,18.946,-0.092,14.152,6.207,19.644,9.967,0.619,11.565,5.785,2.665,19.784,0.957,7.64,14.623,5.218,9.685,8.441,18.458,16.332,16.555,6.472,23.466,7.767,-0.913,7.493,24.617,8.312,2.742,11.314,22.023,4.556,9.233,26.894,4.995,19.267,2.639,-6.397,-3.909,16.399,21.775,28.871,0.956,12.985,19.664,21.527,15.576,2.17,16.806,23.271,10.99,5.109,2.93,0.62,14.535,21.063,22.808,4.195,6.096,5.68,17.114,9.843,18.734,10.356,11.487,12.559,15.449,10.416,23.456,3.901,3.205,-0.226,5.088,13.018,18.471,22.906,18.667,11.066,16.256],[21.771,18.869,7.675,17.872,9.429,8.389,2.103,3.39,8.643,14.264,26.994,19.578,8.293,-1.112,9.272,19.052,14.407,15.682,10.686,13.4,8.543,-0.562,12.984,14.609,3.24,4.268,1.687,20.391,10.084,18.546,7.664,15.455,5.834,18.422,8.9,0.423,6.58,4.833,22.335,-5.19,2.951,9.425,23.363,12.04,2.133,20.526,18.039,15.601,26.974,11.514,5.077,-0.667,2.677,23.099,22.621,11.829,12.682,14.707,11.674,6.274,19.649,5.881,15.858,18.942,18.561,16.103,7.973,19.233,9.144,0.382,9.738,1.796,23.461,16.936,2.132,28.628,20.293,3.509,25.611,21.004,8.53,11.106,8.383,9.189,8.23,11.15,9.517,19.848,3.647,13.315,8.725,19.708,-1.191,8.372,10.35,13.725,17.559,13.853,14.317,3.068,7.386,14.26,12.559,15.772,13.569,-1.111,8.502,20.467,3.369,13.352,17.718,4.999,12.113,16.841,19.629,-0.349,13.588,6.135,19.22,10.228,0.374,11.471,5.857,2.377,20.275,0.967,7.498,13.851,4.913,9.691,8.527,18.948,15.924,16.5,6.723,23.758,7.452,-0.911,7.159,24.836,8.108,2.546,11.856,21.644,4.523,8.959,27.178,4.902,19.378,2.476,-6.403,-3.506,16.509,21.797,28.527,1.108,13.371,19.392,20.804,15.834,2.211,16.344,23.238,10.496,5.584,3.408,0.89,15.037,20.67,22.027,4.554,6.229,4.991,17.198,10.169,18.702,10.402,11.585,12.501,15.752,10.836,23.265,4.038,3.232,-0.203,4.957,12.989,18.446,23.108,18.336,10.984,16.175],[21.671,18.785,8.06,18.07,9.369,8.169,2.142,3.778,8.857,14.445,27.181,19.711,8.585,-1.339,9.461,19.097,14.294,15.751,10.616,13.371,8.665,-0.7,12.73,14.457,3.022,4.085,1.681,20.614,9.767,18.447,7.546,15.225,5.89,18.481,8.86,0.492,6.422,4.771,22.36,-5.044,2.845,9.408,23.276,12.145,2.112,20.478,17.977,15.852,27.047,11.477,4.985,-0.564,2.873,23.09,22.629,11.98,12.567,14.817,11.668,6.33,19.496,5.874,15.8,18.968,18.213,16.239,7.656,19.804,8.616,-0.111,9.657,2.173,23.542,16.827,2.507,28.54,20.204,3.178,25.524,20.891,8.618,11.256,8.682,8.907,7.742,11.11,8.779,19.969,3.827,13.136,8.442,19.754,-1.848,9.418,10.145,13.696,17.815,13.288,14.131,3.113,7.648,14.016,12.53,15.382,13.851,-1.166,8.369,20.24,3.236,13.161,17.533,4.896,12.014,16.897,19.716,-0.589,13.217,5.878,19.391,10.303,0.626,11.277,5.588,2.35,19.694,0.571,6.976,13.893,4.341,9.792,8.908,18.473,15.841,16.816,6.422,23.401,7.567,-1.027,7.306,24.429,7.983,2.692,12.383,21.566,4.437,8.847,27.013,5.042,19.46,2.422,-6.108,-3.315,16.383,21.551,28.531,1.318,13.448,19.513,20.768,15.866,2.323,16.47,23.203,10.276,5.308,2.996,0.542,15.145,20.321,22.489,4.747,6.907,5.082,17.084,10.293,18.919,10.163,12.116,13.08,16.33,10.619,23.201,4.72,3.176,-0.514,5.794,13.658,17.952,23.147,18.579,10.902,16.279],[21.602,18.7,8.325,18.262,9.327,7.953,2.249,4.033,9.006,14.721,27.321,19.744,8.7,-1.481,9.736,19.159,14.235,15.593,10.606,13.354,8.733,-0.784,12.554,14.347,2.944,3.842,1.802,20.736,9.599,18.127,7.473,14.987,5.926,18.463,8.669,0.656,6.393,4.748,22.298,-5.061,2.786,9.321,23.342,12.234,1.959,20.455,17.873,16.048,27.037,11.474,4.738,-0.527,3.06,23.176,22.668,12.2,12.525,14.868,11.662,6.407,19.245,5.709,15.593,18.883,18.244,16.357,7.988,19.73,8.427,0.037,9.499,2.772,23.441,17.11,2.641,28.25,20.002,3.512,25.412,21.326,8.227,11.393,8.957,9.221,8.213,10.952,8.557,19.549,3.309,13.868,8.827,19.933,-2.501,9.49,10.167,13.573,17.919,13.954,13.613,3.118,7.392,14.087,12.38,15.406,13.266,-1.621,7.977,20.042,3.262,12.916,17.213,4.598,12.323,16.741,19.584,-0.271,13.738,5.837,19.463,10.267,0.679,10.965,5.571,2.326,19.414,1.187,6.912,13.832,4.296,9.741,8.965,18.317,15.96,16.687,5.943,23.63,7.676,-0.623,7.526,24.055,8.435,2.89,12.668,22.124,4.459,8.59,26.953,4.739,20.294,2.414,-5.906,-3.286,16.638,21.594,28.618,1.483,13.514,19.508,21.465,16.183,2.355,16.804,23.473,10.616,5.044,2.68,0.524,14.849,20.499,22.99,4.093,7.228,5.475,17.225,10.515,18.6,10.348,12.125,13.303,16.448,10.467,22.955,4.787,2.954,-0.391,5.896,13.935,17.73,23.186,18.888,11.078,16.614],[21.603,18.542,8.479,18.459,9.363,7.693,2.33,4.274,9.043,14.952,27.302,19.719,8.672,-1.548,9.901,19.156,14.379,15.3,10.568,13.265,8.671,-0.797,12.597,14.385,2.934,3.65,1.915,20.872,9.549,17.904,7.552,14.924,5.916,18.311,8.431,0.884,6.464,4.757,22.37,-5.11,2.808,9.274,23.423,12.308,1.801,20.535,17.848,16.163,26.919,11.543,4.528,-0.575,3.081,23.308,22.809,12.354,12.728,15.03,11.773,6.486,19.049,5.549,15.433,18.79,18.582,16.807,8.139,19.405,9.105,0.071,10.05,3.07,23.124,17.014,2.552,28.138,20.237,4.19,25.39,20.643,8.264,11.579,8.681,9.043,9.223,11.017,8.851,19.619,3.736,14.2,8.943,19.794,-2.143,9.324,10.227,13.389,18.071,14.06,13.026,3.107,7.157,14.265,12.465,15.47,13.359,-1.763,7.85,20.0,3.025,13.193,16.956,4.605,12.497,16.667,19.622,-0.392,13.904,5.916,20.192,10.064,0.222,10.839,5.479,2.433,19.115,1.621,7.165,13.413,4.986,9.288,8.358,18.578,15.947,16.407,5.418,23.792,7.802,-0.602,7.018,24.724,8.214,2.781,12.919,21.672,4.563,8.667,26.493,4.875,20.671,2.476,-6.351,-3.458,16.92,21.791,28.606,1.097,13.418,19.289,22.143,16.198,2.171,16.325,23.696,10.764,5.136,3.323,0.857,14.127,20.153,22.629,3.829,6.549,5.293,17.134,10.545,18.466,10.733,12.034,13.073,15.435,10.376,23.102,4.886,2.633,-0.091,5.688,13.35,17.602,22.843,18.211,11.119,16.706],[21.495,18.474,8.654,18.656,9.51,7.664,2.481,4.517,9.083,15.026,27.26,19.753,8.602,-1.482,10.003,19.029,14.654,14.977,10.598,13.187,8.57,-0.774,12.622,14.517,2.882,3.483,1.768,21.027,9.516,17.765,7.589,14.801,5.958,18.1,8.111,1.057,6.619,4.786,22.449,-5.175,2.874,9.277,23.572,12.31,1.548,20.682,17.807,16.106,26.763,11.531,4.33,-0.665,3.168,23.406,22.909,12.266,12.858,15.216,12.027,6.467,18.841,5.624,15.252,18.671,18.347,17.004,7.99,19.439,9.649,0.175,9.82,2.882,23.287,16.831,2.207,27.949,20.044,4.812,25.289,20.241,8.413,11.68,8.705,8.766,8.853,11.095,8.544,19.906,4.219,14.269,8.514,19.086,-1.784,9.675,10.203,13.595,18.188,13.922,13.34,3.02,6.957,14.501,12.36,15.334,13.866,-1.921,7.961,20.418,3.234,13.223,17.537,4.432,11.694,16.145,19.778,-0.617,13.839,5.829,20.244,9.836,0.196,10.798,5.381,2.541,18.976,1.414,7.507,13.821,5.642,9.049,8.325,18.669,15.928,16.343,6.33,23.467,7.595,-0.419,6.642,25.106,7.672,2.58,13.291,22.164,4.582,9.169,26.216,4.876,20.999,2.707,-6.437,-3.738,17.343,22.083,28.48,0.636,13.475,19.369,22.319,16.074,2.365,16.233,23.251,10.327,4.878,3.943,0.715,14.321,19.822,22.432,4.588,6.889,4.941,17.013,10.464,18.025,10.72,12.53,12.981,14.539,10.749,23.398,4.621,2.488,0.052,5.663,13.353,17.511,22.793,18.131,11.061,16.054],[21.364,18.309,8.72,18.797,9.715,7.762,2.646,4.692,9.164,15.001,27.197,19.813,8.38,-1.272,10.121,18.902,14.803,14.788,10.64,13.035,8.476,-0.89,12.62,14.657,2.772,3.465,1.635,21.167,9.498,17.824,7.706,14.666,6.13,17.997,7.815,1.038,6.587,5.014,22.586,-5.207,2.966,9.326,23.694,12.331,1.216,20.803,17.787,15.903,26.656,11.397,4.218,-0.726,3.257,23.281,22.869,12.14,12.731,15.299,12.255,6.493,18.631,5.865,15.062,18.57,18.217,16.679,8.116,19.709,9.153,0.161,9.623,2.88,23.06,17.126,2.488,27.639,19.674,5.482,25.366,20.69,8.171,11.898,8.995,9.37,8.678,11.387,8.569,19.558,3.936,14.249,8.696,18.91,-1.703,9.751,10.408,14.035,18.038,14.204,14.052,2.841,6.951,14.422,12.486,15.828,13.511,-1.671,8.24,20.513,3.197,13.14,17.228,4.277,11.511,15.829,19.904,-0.361,13.412,5.793,20.031,9.626,0.616,10.933,5.38,1.813,19.22,1.192,7.603,13.675,5.545,8.98,8.584,18.439,15.84,16.103,6.759,23.706,7.621,-0.253,6.261,24.71,7.746,2.73,13.57,22.003,4.829,9.086,26.503,5.462,20.989,2.471,-6.408,-3.592,17.054,21.979,28.359,1.145,13.146,19.516,22.153,16.224,2.846,16.797,23.802,9.911,4.61,3.546,0.291,14.729,19.941,23.01,4.411,6.873,5.038,16.67,10.367,17.985,11.417,12.465,12.761,14.241,11.032,23.2,4.937,2.477,0.227,5.715,13.641,17.568,23.513,18.347,11.089,15.669],[21.356,18.054,8.655,18.92,10.108,7.877,2.77,4.856,9.261,14.9,27.038,19.701,8.182,-1.063,10.094,18.798,14.927,14.813,10.696,12.873,8.463,-0.925,12.599,14.773,2.681,3.518,1.603,21.165,9.529,18.048,7.821,14.553,6.334,17.96,7.661,0.95,6.575,5.299,22.643,-5.248,3.07,9.388,23.756,12.286,1.177,20.698,17.87,15.638,26.629,11.285,4.293,-0.62,3.366,23.014,22.952,12.069,12.532,15.196,12.418,6.474,18.608,5.96,14.838,18.517,18.083,16.695,8.418,19.698,9.088,0.286,9.67,2.942,22.686,17.201,3.159,27.063,19.632,5.509,25.156,20.6,8.622,11.907,8.658,9.598,9.236,11.396,8.69,19.421,4.109,13.963,8.305,19.52,-1.324,9.976,10.412,14.286,17.827,14.011,14.055,3.128,6.997,13.856,12.595,16.012,13.011,-1.496,8.116,20.495,3.137,13.333,16.575,4.162,11.86,16.162,20.032,-0.648,13.176,6.38,20.283,9.911,0.521,10.963,5.363,1.851,19.182,1.147,7.702,13.321,5.057,8.82,9.215,18.091,15.324,16.035,6.225,24.251,7.194,-0.404,6.121,24.389,8.148,2.701,13.474,22.398,5.173,8.687,26.438,6.064,20.633,2.092,-6.411,-3.464,16.442,21.913,28.004,1.817,12.941,19.523,22.145,16.367,2.598,16.781,23.527,9.804,4.928,2.942,0.341,14.727,19.272,22.825,4.487,6.829,5.438,16.621,10.201,18.427,12.161,12.078,12.972,13.948,10.88,22.997,5.351,2.346,0.278,6.167,13.242,17.706,23.663,18.728,11.026,15.798],[21.397,18.056,8.391,18.898,10.353,8.135,2.922,4.953,9.305,14.823,26.785,19.492,8.193,-0.981,10.062,18.768,15.009,14.731,10.659,12.758,8.511,-0.954,12.548,14.779,2.747,3.48,1.646,21.043,9.613,18.145,8.006,14.393,6.47,17.908,7.525,0.852,6.497,5.533,22.79,-5.303,3.092,9.395,23.739,12.178,1.44,20.478,17.985,15.462,26.561,11.371,4.468,-0.338,3.592,22.773,23.109,11.973,12.38,15.028,12.47,6.556,18.693,6.009,14.573,18.554,17.725,16.535,8.729,20.106,9.806,0.829,9.462,3.261,22.928,17.198,3.06,26.825,19.816,5.049,25.227,20.416,8.805,11.931,9.119,9.42,9.049,11.704,8.754,19.264,4.339,13.968,8.153,19.811,-1.283,9.458,9.857,13.986,17.72,14.131,13.869,2.91,7.25,13.355,12.45,16.083,13.229,-2.195,7.796,20.374,3.261,13.5,17.101,3.955,11.757,16.065,19.885,-0.607,13.127,6.799,20.096,10.068,0.254,10.461,5.37,2.548,19.032,1.38,7.438,13.265,5.001,8.898,9.626,17.87,14.738,16.289,5.643,24.134,7.084,-0.558,6.494,24.535,8.091,2.43,13.097,22.83,4.992,9.064,26.235,7.288,20.333,2.399,-6.236,-3.539,16.261,21.941,27.929,1.921,12.764,19.677,21.903,15.763,2.497,16.71,22.859,9.806,5.196,3.009,0.867,14.554,19.233,22.916,4.471,7.324,5.48,16.404,10.208,18.341,12.437,12.767,13.05,14.366,10.62,22.682,5.517,2.582,-0.099,5.747,13.18,17.233,23.43,18.965,10.712,15.243],[21.462,18.121,8.245,18.809,10.453,8.396,3.058,4.876,9.355,14.812,26.547,19.243,8.274,-0.98,10.041,18.801,15.024,14.587,10.354,12.658,8.59,-1.087,12.517,14.642,2.8,3.541,1.882,20.912,9.634,18.118,8.245,14.189,6.581,17.888,7.416,0.792,6.512,5.569,22.947,-5.379,3.184,9.321,23.599,12.081,1.54,20.14,18.141,15.39,26.513,11.507,4.614,-0.086,3.686,22.623,23.362,11.968,12.363,14.846,12.528,6.683,18.77,5.919,14.35,18.623,18.194,16.314,8.502,20.045,9.779,0.874,9.469,3.12,23.205,17.249,3.162,26.695,19.772,4.997,24.792,20.517,8.652,11.552,9.31,9.563,9.167,11.98,9.049,19.336,4.363,13.88,8.55,18.99,-1.197,9.18,10.255,13.762,17.884,13.782,13.776,2.816,7.363,13.269,12.21,16.141,13.273,-2.167,7.901,20.504,2.838,13.275,17.732,4.2,11.558,15.703,19.393,-0.473,13.039,6.508,19.944,10.177,0.149,10.522,5.438,2.634,19.632,1.192,7.33,13.491,5.568,8.853,9.568,18.092,14.167,16.013,6.777,24.077,7.231,-0.709,6.218,24.916,7.725,2.869,13.194,22.741,4.754,9.645,26.347,7.842,20.684,2.862,-6.625,-3.602,16.554,21.977,28.14,2.096,12.6,19.701,21.564,15.558,2.454,16.882,23.157,9.782,5.184,3.633,1.355,14.769,19.858,23.159,4.337,7.149,5.15,16.078,10.155,18.289,12.384,12.427,12.736,14.776,11.381,22.819,5.536,2.959,0.461,5.806,13.039,17.345,22.834,18.741,10.663,14.352],[21.604,18.144,8.519,18.701,10.632,8.412,3.281,4.753,9.34,14.805,26.244,19.016,8.335,-1.041,9.974,18.965,14.993,14.567,10.161,12.551,8.774,-1.301,12.456,14.585,2.937,3.607,2.138,20.716,9.618,18.17,8.195,13.932,6.737,17.806,7.337,0.65,6.717,5.575,22.975,-5.387,3.378,9.183,23.393,12.14,1.69,19.827,18.341,15.317,26.636,11.506,4.678,0.168,3.641,22.705,23.507,11.912,12.448,14.548,12.509,6.763,18.906,5.666,14.266,18.666,18.1,16.691,8.191,19.918,9.443,0.635,9.956,2.863,23.365,17.31,3.268,26.748,19.853,4.966,24.523,20.819,8.818,11.094,9.026,10.02,9.197,11.831,8.83,18.398,4.68,14.01,8.412,18.031,-1.271,9.105,10.31,13.993,17.956,14.192,13.98,2.846,7.301,13.173,12.036,16.237,13.447,-1.968,8.214,20.666,3.006,13.177,17.548,4.514,11.435,15.648,19.707,-0.665,12.989,6.586,19.839,10.214,0.289,10.942,5.494,2.406,19.782,1.542,7.975,13.314,6.013,8.29,9.292,18.278,13.995,15.971,6.775,24.495,7.307,-0.712,5.921,24.701,8.018,3.252,13.209,22.494,4.621,9.605,26.188,7.154,20.31,2.679,-6.683,-3.735,16.723,21.917,28.463,1.767,12.872,19.983,21.278,15.246,2.731,16.985,22.94,9.999,5.163,3.545,1.219,15.519,20.3,23.19,4.252,7.498,5.253,16.067,10.226,18.56,12.253,12.319,12.648,14.118,11.339,22.826,5.54,2.73,1.328,6.201,13.144,17.235,22.745,18.481,10.713,14.467],[21.852,17.987,8.808,18.603,10.751,8.187,3.566,4.842,9.259,14.977,26.093,18.647,8.359,-1.186,9.874,19.157,15.138,14.709,10.153,12.575,8.955,-1.611,12.424,14.721,3.145,3.646,2.193,20.691,9.596,18.254,8.078,13.705,6.985,17.705,7.128,0.576,6.911,5.484,22.96,-5.252,3.385,9.152,23.139,12.278,1.831,19.554,18.481,15.146,26.798,11.455,4.541,0.374,3.673,22.821,23.38,11.996,12.628,14.374,12.474,6.897,19.109,5.62,14.269,18.749,17.884,16.771,8.014,19.757,9.571,0.324,9.994,2.901,23.521,16.843,3.591,26.213,19.733,4.842,24.456,21.045,8.499,11.297,8.95,10.318,8.824,12.06,8.593,18.114,4.94,14.247,8.503,18.288,-1.09,9.128,9.7,13.903,18.098,14.047,13.793,2.955,7.525,13.311,11.936,15.882,13.193,-2.279,7.848,20.836,3.6,13.411,16.857,4.534,11.483,15.825,19.617,-0.99,13.108,6.519,19.658,10.271,0.721,10.65,5.479,2.649,19.311,1.599,7.826,13.26,6.15,8.191,9.497,18.191,14.026,15.873,5.778,24.607,7.708,-0.702,5.867,24.381,7.781,3.205,13.446,22.486,4.649,9.398,26.485,6.209,19.451,2.906,-6.273,-3.745,16.294,21.445,28.406,1.409,13.267,20.301,21.241,15.129,2.985,17.497,23.308,9.684,5.327,3.315,1.07,15.891,19.983,23.33,4.076,7.091,5.233,16.057,10.075,18.638,12.047,12.518,12.558,13.268,10.957,22.645,5.447,2.842,1.214,5.726,13.446,17.391,23.095,18.546,11.156,14.216],[22.082,17.742,8.903,18.435,10.832,7.838,3.836,4.951,9.175,15.165,25.95,18.34,8.255,-1.353,9.84,19.348,15.184,14.983,10.111,12.687,9.101,-1.944,12.548,14.82,3.402,3.704,2.182,20.75,9.466,18.143,8.163,13.598,7.245,17.582,6.816,0.613,7.071,5.376,22.953,-5.138,3.206,9.133,22.972,12.439,1.857,19.321,18.645,14.936,26.936,11.318,4.462,0.372,3.701,23.035,23.115,12.052,12.803,14.173,12.434,6.835,19.387,5.599,14.287,18.808,17.538,16.415,8.481,19.536,9.541,0.394,9.487,3.139,23.857,16.619,3.901,25.818,19.217,5.306,24.278,21.253,8.23,11.593,9.617,9.996,9.468,12.27,8.537,18.63,5.043,14.235,8.563,18.362,-1.17,8.974,9.617,13.885,18.233,13.776,13.866,3.233,7.627,13.541,11.866,16.103,13.113,-2.848,7.737,20.912,4.086,13.768,16.733,4.697,11.813,16.026,19.222,-1.227,12.884,6.715,19.634,10.473,0.973,10.426,5.453,2.876,19.299,0.952,7.879,12.551,5.723,8.209,9.536,17.725,14.003,15.809,6.035,24.378,7.747,-0.773,6.04,24.059,7.619,3.168,13.295,22.61,4.409,9.227,27.273,5.799,18.824,2.599,-6.15,-3.297,15.767,21.271,28.084,0.973,13.557,20.246,21.029,15.657,2.657,17.449,22.923,9.647,5.5,3.941,1.716,16.003,20.0,23.362,4.164,7.518,4.815,15.807,10.216,18.443,11.951,12.848,12.932,13.149,11.225,22.642,5.515,2.567,1.109,6.407,13.64,17.924,23.404,18.991,11.204,14.264],[22.213,17.641,9.031,18.272,10.878,7.495,3.842,5.08,9.093,15.137,25.655,18.23,8.023,-1.459,9.843,19.457,15.068,15.192,9.991,12.805,9.088,-2.154,12.762,14.823,3.775,3.783,2.134,20.65,9.359,17.933,8.386,13.572,7.401,17.504,6.583,0.592,7.244,5.403,23.008,-5.08,2.933,9.107,22.891,12.673,1.798,19.103,18.749,14.878,27.073,11.339,4.626,0.319,3.919,23.186,23.022,12.097,12.834,14.087,12.398,6.998,19.735,5.425,14.191,18.82,17.152,16.543,9.255,19.279,9.379,0.296,9.509,3.164,24.163,16.616,3.959,25.934,19.49,5.659,24.012,21.562,8.688,11.625,10.067,9.81,9.236,12.425,8.171,18.338,5.183,14.311,8.66,18.497,-1.728,9.013,9.833,14.069,18.451,14.484,14.265,3.043,7.672,13.696,11.863,16.332,13.647,-3.273,7.719,21.199,4.087,13.578,16.791,5.213,11.764,16.006,19.724,-1.229,13.103,6.731,19.748,10.597,1.105,10.69,5.514,2.933,19.57,0.695,8.374,12.547,6.001,8.003,9.845,17.51,13.794,15.685,6.445,24.234,7.168,-0.856,5.84,24.15,8.014,2.987,13.197,22.174,4.226,8.603,27.743,5.366,18.309,2.295,-5.968,-3.293,15.551,21.302,28.247,0.872,13.428,20.204,20.615,15.206,2.375,17.229,22.626,9.624,5.161,4.194,1.663,15.732,20.959,22.892,4.182,7.423,4.736,16.026,10.287,18.637,12.056,12.309,12.496,13.014,11.32,23.498,5.648,2.687,1.133,6.324,13.496,18.0,22.602,19.168,11.007,14.218],[22.381,17.815,9.036,18.194,10.971,7.427,3.795,5.056,8.969,15.01,25.292,18.409,7.978,-1.588,9.827,19.548,15.092,15.051,9.884,12.945,9.113,-2.28,12.98,14.675,3.996,3.847,2.092,20.507,9.41,17.787,8.494,13.688,7.518,17.478,6.434,0.427,7.257,5.462,23.07,-5.075,2.757,9.168,22.932,12.858,1.672,18.83,18.822,14.889,27.281,11.447,4.766,0.185,4.195,23.362,22.993,11.954,12.792,14.016,12.295,7.223,19.961,5.282,14.011,18.839,17.34,16.804,9.466,19.458,9.544,0.033,9.631,3.227,24.17,16.411,4.05,26.116,19.406,5.75,23.686,21.576,8.709,11.702,10.293,9.778,9.167,12.384,7.945,17.784,4.927,13.967,8.018,18.162,-1.95,9.345,9.788,14.344,18.856,14.507,14.33,3.292,7.791,14.062,11.623,16.196,13.426,-3.075,7.649,21.314,3.964,13.269,16.998,5.301,11.546,16.276,19.527,-1.559,13.521,6.631,19.422,10.557,0.773,10.486,5.615,2.681,19.52,1.065,8.504,13.057,6.49,7.843,9.802,17.89,13.199,15.69,6.189,24.29,6.659,-0.922,5.489,24.311,7.691,2.84,13.888,22.243,4.347,8.667,27.115,5.878,17.913,2.638,-5.963,-3.31,15.866,21.38,28.915,1.204,13.187,20.288,20.203,14.993,2.149,17.322,22.975,9.814,5.406,4.063,0.813,15.877,21.11,22.958,3.794,7.716,4.985,15.772,10.057,18.929,12.115,12.021,12.144,13.73,11.042,23.269,5.831,3.066,1.619,6.256,13.435,18.409,22.773,18.784,11.011,13.736],[22.456,18.062,9.118,18.349,11.003,7.633,3.847,4.925,8.748,14.925,25.081,18.681,8.018,-1.72,9.974,19.621,15.122,14.782,9.788,13.056,9.202,-2.388,13.044,14.415,3.95,3.826,1.961,20.301,9.456,17.801,8.354,13.668,7.7,17.528,6.349,0.248,7.255,5.462,23.087,-5.04,2.793,9.155,23.082,12.903,1.667,18.641,18.842,14.982,27.404,11.522,4.902,0.04,4.308,23.42,23.118,11.659,12.793,13.918,12.173,7.291,20.032,5.224,13.924,18.87,17.523,16.509,9.535,19.13,9.214,-0.165,9.317,3.15,24.22,16.721,3.796,25.37,19.597,5.829,23.529,21.554,8.153,11.767,9.868,9.841,9.281,12.497,8.316,18.451,5.118,13.908,8.218,18.082,-1.254,9.471,9.61,14.362,19.491,14.16,14.291,3.275,7.755,14.614,11.632,16.193,13.338,-2.684,7.717,21.211,4.083,13.23,16.877,4.789,11.471,16.012,18.82,-1.862,14.098,7.002,19.266,10.464,0.325,10.319,5.604,2.544,19.251,1.134,8.199,12.959,6.468,7.77,9.815,17.732,13.124,15.798,5.725,24.564,6.894,-0.858,5.343,24.537,7.507,2.685,14.625,22.165,4.225,9.379,27.278,6.241,18.123,2.175,-6.254,-3.283,16.357,21.487,29.028,0.993,12.872,20.439,19.445,15.047,1.84,17.633,23.786,9.919,6.061,4.448,0.416,15.589,20.886,23.479,3.769,8.002,4.783,15.808,9.829,18.788,11.606,12.436,12.865,13.492,11.259,23.105,6.044,3.065,1.369,6.786,13.312,18.442,23.376,18.774,11.038,14.039],[22.55,18.124,9.144,18.352,10.97,7.747,3.898,4.828,8.489,14.927,24.988,18.899,8.061,-1.526,10.106,19.689,15.152,14.628,9.862,13.233,9.309,-2.436,13.116,14.218,3.713,3.74,1.75,20.196,9.404,17.803,8.322,13.54,7.883,17.533,6.293,0.07,7.168,5.336,23.092,-5.027,2.709,9.037,23.339,12.933,1.659,18.495,18.835,15.158,27.58,11.624,5.013,-0.101,4.394,23.369,23.453,11.604,12.69,13.919,12.033,7.346,19.762,5.205,13.754,18.9,17.823,16.419,9.554,19.353,8.983,-0.214,9.52,2.957,24.416,16.47,3.992,24.756,19.573,5.605,23.462,21.709,8.253,11.804,9.969,10.188,9.335,12.09,8.51,19.435,5.269,13.882,8.618,18.922,-1.334,9.467,9.726,13.935,20.111,14.641,14.141,3.561,7.715,14.813,11.656,15.971,13.495,-2.822,7.767,20.912,4.316,12.873,16.783,4.914,11.541,15.584,19.032,-1.55,14.201,6.84,19.587,10.652,-0.022,10.738,5.276,2.639,19.398,0.848,8.22,12.46,6.462,7.565,10.111,17.457,13.623,15.746,5.576,24.748,7.341,-1.227,5.713,24.697,7.679,2.73,14.534,22.213,4.164,8.818,27.35,6.753,19.03,2.271,-6.124,-3.187,16.387,21.68,28.438,0.599,13.002,20.476,19.075,15.096,2.32,17.583,23.78,10.11,5.997,5.101,0.947,15.27,20.614,23.268,3.908,7.251,4.566,15.376,10.017,18.665,11.291,11.745,12.8,13.198,11.687,23.382,5.876,3.063,0.938,6.276,13.299,18.585,23.505,19.177,11.238,14.813],[22.53,18.075,9.116,18.145,10.902,7.79,3.95,4.702,8.422,14.863,24.93,19.33,8.228,-1.292,10.097,19.741,15.265,14.62,9.979,13.298,9.327,-2.366,13.183,14.111,3.631,3.7,1.529,20.425,9.449,17.875,8.277,13.401,7.944,17.457,6.259,-0.082,7.12,5.195,23.149,-4.975,2.668,8.882,23.547,12.957,1.625,18.461,18.803,15.317,27.643,11.764,4.958,-0.13,4.551,23.284,23.639,11.674,12.565,14.08,11.761,7.097,19.418,5.153,13.457,18.941,17.97,16.756,9.163,19.642,9.283,0.311,9.382,2.991,24.329,16.435,4.297,24.928,19.379,5.509,23.529,21.99,8.951,11.804,10.287,9.88,8.983,11.98,8.51,19.307,5.131,13.871,8.568,19.067,-1.278,9.097,9.811,13.448,20.644,14.557,14.02,3.386,7.953,14.628,11.902,16.372,13.878,-3.174,7.819,20.554,4.082,12.851,16.996,5.227,12.028,15.709,19.302,-1.262,14.479,7.046,19.54,10.872,-0.131,10.986,5.051,2.665,19.405,0.452,8.828,12.375,7.234,7.73,9.866,17.499,13.866,15.83,5.401,24.436,7.011,-1.393,5.88,24.91,7.538,2.863,14.332,21.886,4.159,8.127,27.95,6.908,18.889,2.577,-5.665,-3.168,16.611,21.712,28.784,0.871,13.437,20.404,19.192,15.502,2.145,17.517,22.964,9.969,5.815,5.222,1.206,14.266,20.756,23.206,3.601,7.452,4.918,14.863,9.964,18.88,11.137,12.146,12.524,13.616,11.548,23.293,5.681,3.459,0.674,6.112,13.22,18.068,23.634,18.804,11.023,15.501],[22.425,18.051,9.002,17.977,10.759,8.0,4.036,4.699,8.557,14.79,24.927,19.846,8.337,-1.085,10.009,19.738,15.472,14.683,10.151,13.295,9.233,-2.28,13.306,14.159,3.686,3.637,1.327,20.581,9.566,18.092,8.247,13.338,8.072,17.542,6.358,-0.065,7.149,5.078,23.125,-4.833,2.716,8.785,23.598,12.918,1.621,18.386,18.712,15.526,27.83,11.707,4.844,-0.191,4.702,23.097,23.553,11.715,12.406,14.11,11.653,6.813,19.161,5.058,13.254,18.917,17.657,16.62,8.854,19.394,9.204,0.647,9.33,2.971,24.176,16.783,4.278,25.543,19.858,5.633,23.657,21.199,8.803,11.831,10.551,9.517,8.69,12.092,8.47,18.954,5.041,13.987,8.598,19.006,-0.947,9.139,9.833,13.354,20.868,14.192,14.025,3.099,8.057,14.498,11.999,16.6,13.943,-2.877,7.735,20.597,3.718,13.302,17.021,5.204,11.807,15.92,19.319,-1.614,14.422,6.867,19.202,10.967,-0.538,10.456,5.356,2.341,19.557,0.423,8.741,12.744,7.694,8.046,9.711,17.698,13.118,15.812,5.063,24.297,6.854,-1.141,5.618,25.085,7.426,3.378,14.163,22.552,4.077,8.788,27.685,6.586,18.341,2.287,-5.595,-2.913,16.735,21.853,28.994,1.067,13.633,20.27,19.191,15.738,1.771,17.422,23.599,10.386,5.946,4.975,0.888,13.939,20.438,23.533,3.56,7.303,4.495,14.766,9.862,18.64,10.546,11.709,12.657,13.287,11.373,23.132,6.115,2.919,1.133,6.198,13.167,17.633,23.737,18.645,10.706,15.768],[22.119,18.192,8.832,17.876,10.604,8.235,4.019,4.778,8.67,14.796,25.028,20.156,8.35,-0.799,9.992,19.76,15.567,14.723,10.369,13.175,9.19,-2.354,13.473,14.297,3.742,3.63,1.257,20.439,9.459,18.325,8.186,13.324,8.24,17.825,6.531,0.133,7.254,4.941,23.174,-4.898,2.664,8.874,23.641,12.811,1.671,18.26,18.516,15.723,27.972,11.574,4.674,-0.113,4.875,23.26,23.462,11.665,12.304,13.996,11.517,6.619,18.987,4.869,13.218,18.857,17.363,16.422,8.973,19.403,9.453,0.863,9.746,2.95,23.907,16.482,4.628,25.642,19.697,5.351,23.735,20.909,8.904,11.805,10.182,9.317,8.792,11.953,8.232,19.206,5.076,13.777,8.521,19.159,-1.075,9.285,9.993,13.415,20.784,14.608,14.051,3.256,7.585,14.233,11.961,16.338,13.428,-2.201,7.852,20.678,3.263,13.989,17.177,4.803,11.449,16.103,19.284,-1.58,14.297,6.712,19.756,10.508,-0.623,10.688,5.45,1.576,20.032,0.941,8.215,12.613,7.135,8.274,9.91,17.841,12.849,16.017,4.972,24.689,7.071,-1.013,5.69,25.087,7.192,3.412,14.316,22.757,3.806,8.906,27.628,6.076,18.328,2.25,-5.714,-2.881,16.738,21.938,28.834,1.106,12.996,20.283,18.847,15.578,2.296,17.242,23.605,10.56,5.346,5.005,0.274,14.065,19.882,23.242,3.68,7.312,4.378,14.868,10.145,18.472,10.562,11.982,12.745,12.207,11.318,22.993,6.63,2.815,1.16,5.865,13.146,17.846,23.285,18.574,10.683,15.663],[21.825,18.339,8.745,17.779,10.472,8.223,3.92,4.605,8.693,14.793,25.151,20.045,8.377,-0.568,10.091,19.764,15.419,14.746,10.454,12.906,9.114,-2.33,13.599,14.513,3.595,3.582,1.441,20.336,9.315,18.53,8.174,13.379,8.208,18.095,6.735,0.448,7.237,4.769,23.29,-5.112,2.748,8.881,23.664,12.704,1.689,18.168,18.326,15.795,27.92,11.482,4.526,-0.127,5.128,23.434,23.375,11.642,12.45,13.859,11.459,6.709,18.954,4.756,13.116,18.8,17.198,16.357,9.119,19.167,9.577,1.037,9.291,3.082,23.587,16.289,4.297,25.764,19.798,5.77,23.449,21.246,8.804,11.852,9.589,9.391,8.954,11.591,8.506,19.413,4.968,13.692,8.527,19.924,-0.761,9.413,10.266,13.603,20.585,14.95,14.191,3.302,7.367,13.806,12.441,16.296,13.742,-2.362,7.905,20.913,3.271,13.781,17.581,5.174,11.634,16.128,19.056,-1.395,14.269,6.601,19.489,10.126,-0.403,11.006,5.351,2.138,19.998,0.916,8.298,12.28,6.784,8.199,9.737,17.969,13.029,16.289,5.2,25.079,7.427,-0.911,5.932,25.0,7.413,3.452,14.246,22.376,3.542,8.644,28.469,6.147,18.53,1.97,-5.259,-3.241,16.836,21.916,29.348,1.142,12.893,19.906,18.551,15.538,2.043,17.223,23.546,10.06,5.412,4.747,0.695,14.176,20.267,23.071,3.573,7.325,4.469,14.71,9.9,18.511,10.572,11.724,12.821,11.984,11.401,23.333,6.527,2.957,1.137,6.198,13.073,17.798,23.263,18.533,10.945,15.433],[21.781,18.445,8.73,17.617,10.32,8.193,3.698,4.465,8.623,14.858,25.241,19.985,8.202,-0.413,10.231,19.853,15.266,14.757,10.601,12.851,9.007,-2.22,13.626,14.684,3.381,3.543,1.721,20.289,9.27,18.642,8.0,13.504,8.008,18.196,6.994,0.6,7.31,4.611,23.411,-5.162,2.864,8.811,23.638,12.667,1.678,18.084,18.067,15.79,27.938,11.356,4.599,-0.112,5.265,23.412,23.27,11.547,12.752,13.717,11.348,7.052,19.057,4.919,12.906,18.802,17.627,16.535,9.359,18.856,9.313,1.234,9.34,3.024,23.451,16.251,3.949,25.879,20.226,5.886,23.628,21.242,8.707,11.922,9.211,10.146,8.519,11.58,8.439,19.252,4.934,13.572,8.61,19.226,-0.033,9.575,10.03,13.896,20.056,14.516,14.345,3.247,7.406,13.597,12.301,16.47,13.756,-3.138,7.551,20.492,3.887,13.338,17.446,5.024,11.442,16.276,19.473,-1.343,14.571,6.643,18.758,10.39,-0.107,10.493,5.284,2.907,19.92,1.04,8.682,12.472,6.982,8.417,9.51,18.073,13.31,16.487,5.312,24.594,7.421,-0.933,5.796,24.838,7.594,3.167,14.242,22.274,3.508,8.587,28.546,5.818,18.401,2.502,-5.388,-3.42,16.778,21.956,28.919,1.406,13.033,19.92,18.759,15.88,2.136,17.291,23.624,9.844,5.802,5.014,1.018,14.493,20.473,23.209,3.406,7.299,4.448,14.665,9.702,18.34,10.328,11.391,12.417,12.291,11.59,23.762,5.963,2.738,0.942,5.844,13.341,18.18,23.546,18.569,11.229,15.126],[21.84,18.607,8.55,17.291,10.352,8.187,3.509,4.413,8.576,14.95,25.384,19.914,8.009,-0.199,10.252,19.966,15.173,14.865,10.767,12.889,8.983,-2.233,13.628,14.734,3.168,3.656,1.892,20.274,9.156,18.577,7.827,13.756,7.792,18.198,7.124,0.598,7.295,4.629,23.253,-5.081,3.034,8.798,23.639,12.703,1.685,18.023,17.96,15.742,27.899,11.269,4.711,-0.103,5.205,23.433,23.245,11.371,13.073,13.604,11.222,7.205,19.244,5.21,12.783,18.857,18.065,16.525,9.167,18.745,9.627,1.418,9.268,2.69,23.718,16.222,4.318,25.485,20.387,5.562,23.745,21.432,9.288,12.141,9.156,9.452,9.06,11.76,8.154,19.3,4.909,13.787,8.413,18.766,-0.082,9.392,10.143,14.242,19.445,14.581,14.593,2.775,7.429,13.632,12.441,16.455,13.064,-3.482,7.489,19.92,3.795,13.295,17.324,4.712,11.526,16.354,19.494,-1.551,14.342,6.374,19.214,10.521,0.119,10.228,5.52,2.642,20.029,1.08,8.176,12.989,7.681,8.828,9.574,18.056,13.171,16.409,4.896,24.575,7.226,-0.653,6.052,24.795,7.225,2.945,13.814,22.091,3.63,8.41,28.029,5.985,18.325,2.647,-5.901,-3.165,16.509,21.846,28.936,1.327,12.792,19.697,19.288,15.865,2.973,16.877,23.773,9.797,5.578,5.583,0.772,14.717,20.619,23.06,3.827,7.518,4.513,14.575,9.701,18.172,10.158,11.723,12.212,12.383,11.5,23.476,6.123,2.823,0.794,6.079,13.828,18.735,23.296,18.191,11.577,14.753],[22.047,18.724,8.36,17.175,10.366,8.251,3.544,4.319,8.583,15.037,25.415,19.701,8.133,0.012,10.252,20.016,15.187,15.137,11.018,12.908,8.976,-2.369,13.577,14.767,2.999,3.623,1.96,20.345,9.174,18.482,7.856,13.91,7.598,18.099,7.153,0.604,7.184,4.726,22.754,-4.943,3.279,8.743,23.619,12.641,1.647,18.009,17.911,15.648,27.858,11.321,4.627,-0.191,5.157,23.524,23.209,11.435,13.352,13.539,11.264,7.021,19.436,5.342,12.748,18.845,18.023,16.657,8.879,18.471,9.434,1.727,8.919,2.701,23.688,16.269,4.431,26.039,20.446,5.477,23.628,20.897,8.741,12.11,9.535,9.114,8.728,11.847,8.675,19.575,4.475,13.979,8.421,19.782,-0.38,9.581,10.083,14.142,19.21,15.068,14.82,2.433,7.521,13.646,12.722,16.095,12.892,-3.369,7.623,19.848,3.48,13.524,17.52,4.541,11.46,16.175,18.879,-1.698,14.38,6.08,19.417,10.593,0.391,10.713,5.36,2.111,19.783,0.996,7.82,12.765,7.927,8.906,9.324,18.232,13.428,16.325,4.936,24.7,7.315,-0.304,6.377,24.885,7.192,2.873,13.24,22.158,3.678,8.196,27.281,5.94,18.571,2.335,-5.834,-3.491,16.71,21.916,29.029,1.235,12.409,19.524,19.236,15.614,2.677,16.742,23.858,9.832,5.488,5.213,0.769,14.388,20.936,23.308,4.404,7.665,4.684,14.381,9.723,18.398,10.036,11.074,12.384,12.773,10.735,23.24,6.345,2.915,0.704,6.327,14.09,18.525,23.543,18.556,11.837,14.593],[22.037,18.819,8.223,17.364,10.311,8.341,3.609,4.235,8.455,15.103,25.308,19.527,8.336,0.166,10.204,20.036,15.41,15.352,11.12,12.829,8.986,-2.595,13.643,14.822,2.951,3.457,1.986,20.289,9.346,18.417,7.853,13.946,7.453,17.988,7.279,0.623,6.956,4.707,22.384,-4.85,3.19,8.64,23.603,12.454,1.497,18.015,17.958,15.707,27.747,11.412,4.469,-0.214,5.136,23.545,23.33,11.526,13.572,13.458,11.318,6.768,19.494,5.403,12.789,18.878,17.807,16.845,9.076,18.26,9.485,1.916,9.345,2.653,23.612,16.247,3.899,26.066,20.535,5.508,23.742,21.074,8.836,11.865,9.502,9.13,8.075,11.754,9.439,19.418,4.787,14.339,8.535,19.804,-0.019,9.988,10.209,13.633,19.092,14.833,14.322,2.673,7.65,14.036,12.804,15.677,13.645,-2.947,7.953,20.034,3.559,13.653,17.754,4.643,11.402,16.558,19.36,-1.648,14.77,6.21,18.982,10.654,0.975,10.897,5.259,2.26,19.768,1.194,7.91,12.538,7.405,8.852,9.338,18.262,14.131,16.14,5.519,23.729,7.211,-0.656,6.383,24.95,7.528,2.7,13.239,21.548,3.611,8.604,27.048,6.407,18.395,2.813,-5.555,-3.233,16.702,22.04,28.983,1.792,12.596,19.502,18.993,15.909,2.274,16.671,23.624,10.013,5.383,4.86,1.14,14.151,20.653,23.094,4.051,7.233,5.002,14.525,9.822,19.106,9.899,11.475,12.441,12.444,10.71,23.298,6.17,2.732,0.282,5.54,14.082,18.293,23.548,18.665,12.196,14.955],[21.99,18.909,8.02,17.499,10.202,8.578,3.49,4.115,8.25,15.194,25.138,19.434,8.519,0.236,10.242,19.985,15.618,15.457,11.088,12.858,8.98,-2.687,13.818,14.75,3.118,3.459,2.036,20.14,9.532,18.425,7.781,13.969,7.478,17.894,7.429,0.582,6.759,4.558,22.084,-4.737,2.987,8.753,23.739,12.382,1.45,18.036,17.94,15.943,27.598,11.527,4.338,-0.219,5.054,23.362,23.44,11.439,13.577,13.525,11.523,6.605,19.351,5.429,12.892,18.977,18.14,16.809,9.216,18.658,9.4,1.937,9.912,2.471,23.543,15.908,3.958,25.605,20.688,5.67,23.482,21.709,8.857,12.106,8.951,9.232,8.23,11.765,9.686,18.922,4.818,14.295,8.805,18.954,0.069,9.791,10.236,13.475,19.278,15.211,14.014,2.681,7.498,14.45,12.98,16.416,13.724,-3.227,7.964,20.547,3.608,13.962,17.543,4.543,11.258,16.972,19.407,-1.695,15.223,6.568,18.918,10.524,1.287,10.63,5.375,2.691,19.824,1.096,8.038,13.214,6.263,9.203,9.454,18.255,15.093,16.042,5.676,23.436,7.016,-0.897,6.557,25.094,7.159,2.346,13.278,21.251,3.756,8.34,27.026,6.631,18.088,2.333,-5.248,-2.9,16.729,21.921,28.875,1.962,12.495,19.657,18.845,16.418,2.437,16.831,23.68,10.118,5.444,5.225,1.249,13.57,20.594,23.1,4.299,6.831,4.417,14.774,9.615,18.642,10.008,11.724,12.338,12.004,11.435,23.117,5.987,2.65,0.313,5.456,14.456,18.117,23.313,18.548,12.115,14.943],[22.052,19.006,7.997,17.468,10.147,8.863,3.299,4.031,8.039,15.21,24.91,19.327,8.783,0.237,10.404,19.918,15.942,15.595,11.086,12.934,8.832,-2.704,13.953,14.701,3.283,3.724,2.185,20.143,9.526,18.422,7.785,14.105,7.52,17.797,7.701,0.45,6.551,4.339,21.92,-4.735,2.821,8.765,23.9,12.228,1.292,18.017,17.852,16.162,27.533,11.695,4.242,-0.333,4.834,23.185,23.341,11.358,13.448,13.554,11.76,6.549,19.106,5.419,13.02,18.998,18.524,17.038,9.302,19.183,8.818,2.004,9.559,2.499,23.584,16.477,4.063,25.719,20.792,5.561,23.323,21.387,9.405,12.189,8.599,9.467,8.589,11.524,9.495,18.505,4.289,14.078,8.967,18.965,-0.459,9.813,10.357,13.726,19.62,15.188,14.518,2.547,7.539,14.478,12.87,16.939,13.134,-3.953,8.028,21.205,3.473,13.732,17.4,4.569,11.713,16.833,18.717,-1.564,15.272,6.366,19.197,10.63,1.015,10.916,5.393,2.517,20.035,0.743,8.323,13.4,6.101,9.122,9.484,17.933,15.791,15.993,5.714,23.728,7.227,-0.581,6.284,24.96,7.382,2.706,13.786,21.349,3.728,8.287,27.101,6.553,18.392,2.136,-4.695,-2.891,17.334,22.037,28.444,1.769,12.597,19.589,19.315,16.343,2.448,16.781,23.738,10.342,5.565,5.277,0.841,12.848,20.409,23.359,4.46,7.176,4.2,14.717,9.674,18.769,10.623,11.557,11.916,12.346,11.472,22.517,5.733,2.542,0.669,5.328,14.17,17.94,23.767,18.391,12.093,15.255],[22.03,19.077,8.25,17.528,10.132,9.112,3.064,3.946,7.883,15.244,24.764,19.206,8.996,0.096,10.575,19.888,16.172,15.624,11.226,13.012,8.758,-2.764,13.958,14.775,3.413,3.959,2.258,20.291,9.528,18.497,7.817,14.366,7.551,17.533,7.674,0.311,6.336,4.188,21.981,-4.628,2.715,8.761,24.011,12.159,1.1,18.104,17.816,16.256,27.459,11.673,4.181,-0.549,4.589,23.053,23.248,11.206,13.154,13.46,11.929,6.608,18.998,5.488,13.164,18.997,18.461,16.88,9.037,19.217,8.965,1.739,9.268,2.354,23.648,17.16,3.4,25.663,21.01,5.085,23.183,20.845,10.177,12.45,8.824,9.299,8.583,11.472,9.778,18.494,4.443,14.055,8.604,19.165,-0.412,10.242,10.787,13.931,20.106,14.996,14.899,2.804,7.78,14.527,13.115,16.933,12.937,-4.248,7.909,21.527,3.963,13.642,17.439,5.012,11.895,17.242,19.431,-1.678,15.087,6.206,18.923,10.507,0.717,11.069,5.815,2.653,20.084,0.914,8.456,13.314,6.574,9.315,9.287,17.241,16.133,15.778,5.813,23.443,7.161,-1.091,6.3,24.894,7.992,2.38,13.835,21.47,3.155,8.495,27.945,6.398,18.592,2.304,-5.203,-2.756,17.368,22.237,28.476,1.623,12.526,19.227,19.61,16.17,2.251,16.487,23.418,9.898,5.447,4.915,0.392,13.344,19.874,22.735,4.196,7.002,4.958,14.952,9.784,18.784,10.658,11.804,12.007,13.114,11.688,22.575,5.322,2.576,0.422,5.685,14.181,17.777,23.735,18.758,11.986,15.155],[21.989,19.202,8.458,17.583,10.116,9.354,2.813,3.873,7.882,15.239,24.691,19.167,9.078,-0.072,10.823,19.922,16.098,15.58,11.504,12.971,8.742,-2.886,13.882,14.862,3.728,4.167,2.226,20.419,9.588,18.575,7.734,14.73,7.571,17.268,7.5,0.23,6.181,4.069,21.977,-4.504,2.718,8.985,23.962,12.184,0.957,18.184,17.869,16.177,27.532,11.498,4.225,-0.769,4.45,22.993,23.059,11.15,12.809,13.386,11.995,6.721,18.876,5.641,13.438,19.074,18.152,16.706,8.436,19.178,8.965,1.516,10.013,2.194,23.546,17.216,3.189,25.58,21.067,5.105,23.027,20.669,9.822,12.607,9.281,9.268,8.876,11.554,10.264,18.78,4.125,14.057,8.581,19.275,-0.326,10.503,10.895,14.324,20.406,14.999,14.374,3.098,7.931,14.605,13.344,17.147,13.629,-4.17,8.193,21.437,4.005,13.402,17.728,5.378,11.763,17.184,19.659,-1.769,15.022,6.229,19.039,10.597,0.549,10.95,6.019,2.76,20.403,1.421,7.947,13.524,6.921,9.286,9.181,16.44,15.394,15.783,5.342,23.487,6.431,-1.188,6.396,25.107,7.521,1.751,13.7,21.749,3.021,8.329,27.551,5.985,18.429,2.298,-5.691,-2.954,17.295,22.088,28.973,1.405,12.499,19.148,19.901,16.524,1.8,16.462,23.697,9.887,4.946,4.303,0.543,13.543,20.312,22.648,4.376,7.225,5.144,15.054,9.354,18.52,10.673,12.054,11.974,13.078,11.665,22.96,5.734,2.593,-0.272,5.581,13.93,17.887,23.472,19.093,11.801,15.069],[21.959,18.981,8.657,17.534,10.206,9.379,2.65,3.867,7.9,15.079,24.613,19.316,9.147,0.028,11.047,19.993,15.895,15.5,11.674,12.851,8.744,-3.004,13.643,14.865,4.077,4.303,2.112,20.382,9.811,18.753,7.62,15.147,7.477,17.111,7.416,0.35,5.988,3.991,21.913,-4.469,2.762,9.069,23.895,12.224,0.743,18.292,17.974,16.347,27.586,11.4,4.322,-0.886,4.448,23.158,22.804,11.232,12.623,13.285,11.955,6.722,18.733,5.727,13.671,19.23,18.41,16.728,8.047,19.332,9.502,1.685,10.31,2.428,23.486,16.758,3.572,25.547,20.911,5.362,22.994,20.764,9.852,12.926,9.399,9.376,8.831,11.254,10.66,18.679,3.737,14.283,9.259,19.555,-0.314,10.621,10.636,14.38,20.371,15.018,14.169,3.35,7.742,14.478,13.402,16.948,13.337,-4.003,8.261,21.043,4.006,13.417,17.872,5.806,11.485,17.072,18.69,-1.793,15.303,6.316,19.793,10.636,0.339,11.069,6.08,2.91,20.416,1.243,8.201,13.529,6.926,9.078,9.127,16.352,14.855,15.54,5.191,23.549,6.758,-0.764,6.372,25.12,7.653,2.089,13.418,21.395,3.054,8.686,27.211,5.416,18.223,2.266,-5.298,-3.294,17.395,22.067,29.049,1.014,12.37,19.556,19.872,16.263,1.784,16.836,23.687,9.958,4.726,4.114,0.643,13.324,20.226,22.636,4.499,7.029,4.724,15.409,9.416,18.314,10.884,11.987,11.571,13.211,10.858,22.555,5.987,2.506,-0.772,5.507,13.582,18.143,23.375,18.485,11.335,14.906],[21.998,18.716,8.848,17.405,10.322,9.293,2.597,3.958,7.936,15.03,24.517,19.528,9.318,0.147,11.275,20.187,15.617,15.397,11.588,12.628,8.734,-3.03,13.522,14.861,4.358,4.338,1.959,20.293,10.078,18.935,7.632,15.366,7.355,16.852,7.468,0.468,5.858,3.987,21.779,-4.5,2.776,9.081,23.916,12.167,0.619,18.422,18.156,16.706,27.514,11.342,4.366,-0.894,4.647,23.278,22.682,11.375,12.597,13.128,11.906,6.542,18.596,5.592,13.793,19.213,18.407,16.881,7.998,19.242,9.698,1.936,9.715,2.547,23.08,16.635,3.26,25.655,20.499,5.307,23.093,20.556,10.248,13.031,9.255,9.4,8.644,11.457,10.185,18.793,3.81,14.792,9.339,19.074,-0.077,10.623,10.898,13.969,19.463,14.836,14.316,3.605,7.703,14.187,13.415,16.746,13.065,-3.675,8.272,20.188,4.114,13.614,18.11,6.044,11.37,16.583,18.756,-2.094,14.952,6.023,19.928,10.428,0.418,11.212,6.275,2.966,20.456,1.047,8.06,13.904,6.787,9.16,8.814,16.905,15.125,15.108,5.565,23.42,6.868,-0.776,6.345,25.226,7.888,2.082,13.651,21.131,2.978,8.714,27.442,5.2,18.402,1.912,-4.468,-2.771,17.317,22.214,28.821,0.565,12.543,19.782,19.755,16.616,2.58,17.037,23.539,9.694,4.786,4.601,0.439,13.135,19.619,22.452,4.421,6.932,4.612,15.36,10.005,18.358,10.672,11.691,11.28,13.336,10.9,22.821,5.748,2.563,-0.465,5.68,13.324,17.667,22.97,18.519,11.256,14.851],[22.003,18.535,8.876,17.252,10.435,9.169,2.546,4.082,8.049,15.203,24.539,19.714,9.445,0.235,11.376,20.298,15.442,15.266,11.404,12.401,8.639,-3.092,13.558,14.748,4.752,4.365,1.836,20.2,10.234,19.067,7.611,15.518,7.16,16.652,7.602,0.431,5.838,3.966,21.748,-4.45,2.738,9.041,23.982,12.131,0.513,18.496,18.474,17.023,27.472,11.444,4.329,-0.805,5.009,23.454,22.533,11.48,12.696,13.017,11.765,6.417,18.301,5.457,13.806,19.016,18.008,16.821,8.072,18.811,9.003,1.543,10.001,2.38,23.249,16.631,2.513,25.722,20.304,4.908,22.96,20.597,10.166,13.174,9.611,9.448,8.99,11.861,9.921,18.878,4.186,14.839,8.874,19.016,-0.421,10.941,11.244,13.702,19.458,14.413,14.217,3.364,7.535,13.888,13.212,16.74,13.439,-3.821,8.549,19.628,4.187,13.54,18.588,6.243,11.107,16.448,19.078,-1.938,14.86,5.881,19.012,10.379,0.529,11.079,6.162,2.68,20.479,1.238,7.502,14.75,6.297,9.187,8.964,16.335,15.254,14.915,5.774,23.23,6.715,-0.621,6.319,25.099,7.662,1.456,13.694,21.209,3.188,8.07,27.287,4.494,19.222,2.068,-4.418,-2.605,17.732,22.234,28.625,0.902,12.492,20.014,19.87,17.218,2.211,17.042,23.702,9.805,5.204,5.115,0.303,12.83,19.729,22.652,3.955,7.005,5.074,15.092,9.871,18.648,10.978,11.581,11.723,13.151,11.615,22.885,6.167,2.597,0.036,5.464,13.177,17.038,23.225,18.854,11.118,14.424],[22.011,18.393,9.002,17.038,10.63,8.982,2.415,4.089,7.942,15.438,24.656,19.83,9.456,0.193,11.204,20.315,15.572,15.199,11.206,12.38,8.508,-3.162,13.616,14.486,5.069,4.389,1.826,19.989,10.273,19.249,7.542,15.744,6.913,16.474,7.678,0.389,5.797,3.889,21.853,-4.355,2.59,8.741,24.087,12.111,0.462,18.563,18.848,17.417,27.446,11.741,4.356,-0.63,5.366,23.746,22.451,11.501,12.677,12.961,11.69,6.427,18.014,5.405,13.728,18.878,18.052,17.229,8.663,18.602,9.232,1.291,10.308,2.263,23.348,16.628,2.529,25.504,20.037,4.813,22.887,20.775,10.078,12.967,9.711,9.725,9.099,11.866,10.039,18.965,4.023,14.28,9.169,19.993,-0.475,11.266,10.961,13.463,20.262,14.516,14.355,3.792,7.434,13.73,13.002,16.824,13.051,-4.203,8.425,19.153,4.361,13.284,18.687,6.023,11.075,16.012,18.845,-1.613,14.968,6.132,18.69,10.374,0.322,11.021,6.157,2.602,20.811,0.794,7.3,15.158,5.956,9.317,9.115,15.626,15.439,15.097,5.674,23.261,6.538,-1.169,6.496,24.67,7.235,1.422,13.518,21.225,3.111,8.286,27.775,4.342,19.342,2.333,-5.337,-2.762,17.915,22.176,28.388,0.927,12.7,19.66,19.919,16.893,1.905,17.191,24.025,9.958,5.697,4.814,0.661,12.412,19.333,22.466,4.137,6.727,4.671,15.327,9.726,18.092,11.056,11.592,11.702,12.932,11.569,22.936,6.65,2.643,0.13,5.594,13.533,17.468,23.466,18.959,11.102,14.313],[22.055,18.307,9.276,16.824,10.907,8.936,2.287,4.012,7.889,15.577,24.707,20.049,9.473,0.004,10.983,20.408,15.957,15.242,11.096,12.376,8.562,-3.131,13.693,14.233,5.181,4.428,1.91,19.672,10.009,19.495,7.537,16.129,6.842,16.328,7.692,0.168,5.857,3.693,21.978,-4.43,2.628,8.4,24.026,12.069,0.553,18.547,19.112,17.698,27.379,11.796,4.67,-0.489,5.47,23.807,22.476,11.361,12.575,12.911,11.729,6.442,17.798,5.436,13.711,18.771,18.21,17.248,8.242,18.433,9.429,1.227,9.827,2.381,23.496,16.489,3.275,25.827,19.812,5.119,23.138,20.929,9.744,12.832,9.806,9.628,8.877,11.72,9.826,19.081,3.6,14.231,9.049,20.064,-0.324,10.529,10.445,12.899,20.19,15.062,14.425,4.226,7.203,13.617,12.963,17.078,12.842,-4.199,8.286,18.731,4.575,13.183,18.828,6.622,11.113,15.61,18.362,-1.922,15.213,6.12,18.923,10.124,0.039,11.049,6.237,2.822,20.968,0.836,7.065,14.671,6.68,9.363,8.857,15.669,15.405,14.98,5.548,23.516,6.02,-1.338,6.416,24.611,6.976,1.691,13.772,21.395,2.919,8.42,28.31,4.126,18.75,1.618,-5.7,-2.79,18.322,22.078,28.405,0.497,12.701,20.054,20.061,16.826,1.81,17.332,24.466,10.039,5.441,4.708,0.933,12.447,19.157,22.258,4.149,6.947,4.625,15.469,9.719,17.962,10.648,11.76,11.949,13.171,11.548,23.278,6.614,2.866,0.139,5.552,13.362,17.269,22.847,19.157,11.265,14.443],[22.147,18.3,9.448,16.678,11.073,8.825,2.306,3.97,7.797,15.51,24.7,20.304,9.303,-0.262,10.837,20.416,16.254,15.234,11.11,12.218,8.563,-3.058,13.876,14.024,5.344,4.47,2.062,19.477,9.596,19.724,7.57,16.254,7.109,16.279,7.585,-0.133,5.88,3.44,22.224,-4.519,2.707,8.232,23.74,12.057,0.602,18.513,19.248,17.791,27.389,11.694,4.99,-0.435,5.36,23.7,22.415,11.301,12.554,12.879,11.746,6.503,17.692,5.521,13.734,18.779,17.934,17.07,7.804,18.242,9.258,1.25,9.795,2.388,23.559,16.527,3.127,26.251,19.722,5.503,23.486,20.837,9.618,12.607,10.192,9.576,9.103,11.94,10.222,19.477,3.671,14.778,9.473,19.814,-0.497,10.002,10.474,12.444,20.28,15.136,14.317,4.203,7.365,13.667,12.925,17.77,13.167,-3.618,7.954,18.717,4.323,13.517,18.97,6.925,10.917,15.975,18.225,-2.219,15.259,5.859,18.483,10.1,0.212,10.496,6.232,2.384,20.867,0.938,6.977,14.581,6.233,9.362,8.881,15.671,16.081,14.767,5.198,23.358,6.276,-1.346,6.714,24.875,7.158,1.723,13.545,21.223,2.822,7.817,27.632,4.255,18.248,1.918,-5.552,-2.619,18.224,22.039,28.493,0.626,12.371,20.55,20.167,17.622,2.063,17.67,24.418,10.09,5.384,4.919,1.023,13.247,19.174,22.85,3.91,6.837,5.336,15.574,9.835,18.411,11.021,11.366,11.877,13.333,11.509,23.302,6.742,3.252,-0.118,5.265,13.199,16.984,22.818,18.738,11.317,14.668],[22.262,18.264,9.604,16.652,11.119,8.695,2.372,3.987,7.676,15.445,24.819,20.46,8.955,-0.58,10.703,20.351,16.431,15.251,11.229,12.058,8.702,-2.853,14.05,13.803,5.577,4.421,2.157,19.293,9.123,19.909,7.473,16.36,7.331,16.226,7.437,-0.321,5.955,3.147,22.423,-4.526,2.939,8.091,23.487,12.006,0.611,18.446,19.354,17.802,27.413,11.703,5.285,-0.442,5.17,23.568,22.463,11.356,12.63,13.043,11.687,6.467,17.734,5.687,13.757,18.928,17.408,16.911,7.386,17.719,9.032,0.878,10.347,2.272,23.253,16.71,2.569,26.197,19.783,5.088,23.396,20.906,9.738,12.559,10.329,9.908,9.408,12.153,9.95,20.106,4.17,14.886,9.182,20.109,-0.494,10.052,10.799,12.304,20.69,14.894,14.412,4.41,7.278,14.057,12.994,17.667,12.981,-3.048,7.381,18.728,3.956,13.341,19.425,6.239,10.922,16.26,18.367,-2.351,15.654,6.068,17.91,10.297,0.465,10.159,6.018,2.495,21.079,0.405,7.636,14.743,6.336,9.042,8.992,15.976,15.49,14.545,4.939,23.927,6.771,-1.723,7.231,24.69,7.031,1.46,13.407,21.417,2.563,7.52,26.923,4.296,18.007,2.298,-5.104,-2.818,17.929,21.802,28.694,0.811,12.192,20.649,20.127,17.946,1.864,17.825,23.598,9.984,5.777,4.82,0.768,13.255,19.154,22.596,4.229,6.903,5.277,15.455,9.619,18.133,11.623,11.754,11.566,13.29,11.537,23.406,6.853,3.446,0.091,5.791,13.71,17.515,22.871,18.561,11.373,14.504],[22.502,18.176,9.831,16.571,11.159,8.479,2.481,3.88,7.469,15.299,24.952,20.655,8.611,-0.971,10.714,20.341,16.453,15.349,11.4,11.978,8.903,-2.555,14.261,13.548,5.796,4.21,2.236,19.085,8.969,20.031,7.383,16.288,7.553,16.198,7.393,-0.49,5.973,2.904,22.69,-4.605,3.062,7.979,23.386,12.005,0.565,18.334,19.502,17.755,27.317,11.822,5.453,-0.491,5.0,23.52,22.536,11.426,12.888,13.128,11.87,6.505,17.895,5.639,13.734,18.948,17.432,17.136,7.515,17.64,9.025,0.748,9.795,2.344,23.546,16.745,2.41,26.369,19.541,4.716,23.525,21.2,9.58,12.542,10.1,10.398,9.253,11.833,9.225,20.429,4.238,14.88,8.535,19.82,-0.429,10.132,10.726,12.16,20.359,15.031,14.696,4.662,7.707,14.548,12.99,17.706,12.512,-3.205,7.386,18.797,4.227,12.613,19.223,6.045,10.612,16.283,17.82,-1.544,15.813,6.122,18.306,10.585,0.389,10.038,5.842,3.038,20.773,-0.104,7.995,15.292,6.794,8.99,9.103,16.291,14.917,14.426,4.694,24.233,7.054,-2.076,6.685,24.524,7.01,1.575,13.176,21.653,2.008,7.474,27.169,4.874,17.977,2.144,-4.858,-2.71,18.317,21.542,28.81,0.195,12.547,20.119,20.229,17.361,2.122,18.055,23.233,10.092,6.24,4.617,0.7,12.953,19.437,22.201,4.199,6.686,4.897,15.502,9.675,17.972,11.124,11.753,11.953,12.997,11.692,23.114,6.284,3.798,0.517,5.485,13.869,17.481,23.098,19.246,11.34,14.828],[22.606,18.072,9.893,16.553,11.2,8.136,2.548,3.724,7.306,15.212,25.079,20.803,8.324,-1.292,10.814,20.31,16.362,15.561,11.451,11.886,9.118,-2.189,14.471,13.239,5.895,4.016,2.237,19.005,9.097,20.019,7.384,16.244,7.791,16.154,7.456,-0.626,6.05,2.748,22.913,-4.673,2.926,7.955,23.406,11.985,0.377,18.296,19.611,17.645,27.226,11.994,5.495,-0.483,4.838,23.505,22.545,11.567,13.084,13.214,12.002,6.561,18.014,5.459,13.689,18.838,17.694,16.939,7.735,17.556,8.845,0.155,8.574,1.971,24.209,16.85,2.47,26.507,19.536,5.051,23.639,22.077,9.062,12.686,9.9,10.952,9.5,12.174,9.574,20.307,4.142,14.311,9.235,19.882,-0.961,10.112,10.796,11.916,20.414,15.3,14.894,4.829,8.291,14.482,13.288,17.872,12.405,-3.218,7.536,18.591,3.805,12.433,19.024,6.801,10.476,16.261,17.605,-1.649,15.673,5.938,18.237,10.847,0.423,10.157,5.776,3.107,20.991,0.113,7.505,15.45,6.534,9.027,8.848,15.98,14.924,14.491,4.476,23.698,6.797,-2.305,6.495,24.744,6.522,1.247,13.612,21.614,2.068,7.682,27.339,5.311,18.152,2.117,-5.159,-2.761,18.053,21.621,28.776,0.661,12.556,20.214,20.034,16.767,2.31,18.267,23.976,10.304,6.606,4.703,0.835,12.251,19.695,22.491,3.934,6.787,4.945,15.177,9.77,18.667,11.115,11.677,12.114,12.67,11.917,23.757,6.181,3.873,0.423,5.556,13.954,17.182,23.328,18.874,11.453,14.9],[22.703,18.12,9.799,16.577,11.323,7.966,2.428,3.562,7.285,15.022,25.289,20.871,8.133,-1.744,10.861,20.242,16.203,15.679,11.471,11.734,9.457,-1.967,14.615,12.982,5.946,3.793,2.198,18.975,9.326,19.967,7.38,16.423,7.801,16.027,7.574,-0.725,6.108,2.703,23.08,-4.829,2.71,7.861,23.651,11.934,0.167,18.297,19.717,17.299,27.262,12.152,5.498,-0.38,4.756,23.773,22.663,11.673,13.236,13.11,12.017,6.712,18.03,5.359,13.607,18.707,17.922,16.83,7.76,17.701,8.623,-0.157,8.31,2.062,24.019,17.168,2.875,26.208,19.604,4.995,23.575,22.657,8.685,12.609,10.256,11.512,9.57,12.419,9.391,19.839,4.12,13.802,8.906,20.006,-1.577,10.333,11.043,11.427,20.612,15.33,15.341,4.959,9.009,14.39,13.211,17.567,12.753,-2.999,7.576,18.508,3.771,12.748,19.38,7.083,10.454,16.495,18.124,-1.821,15.532,5.818,17.843,11.127,0.546,10.428,5.558,2.709,21.366,0.545,7.622,14.935,6.576,9.234,8.85,15.848,15.194,14.284,4.131,23.498,6.565,-1.887,6.697,24.671,6.72,0.991,13.484,21.603,2.271,8.18,27.577,6.237,18.003,1.776,-5.388,-3.011,17.928,21.93,28.327,0.616,12.318,20.446,20.252,16.873,1.787,18.404,24.25,10.552,6.465,4.414,0.663,12.643,19.524,22.863,3.996,6.922,5.005,14.943,9.813,18.436,12.05,12.064,11.814,12.515,12.011,23.866,6.327,3.689,0.167,5.503,14.339,17.81,22.995,18.539,11.605,14.94],[22.745,18.381,9.691,16.636,11.554,7.874,2.329,3.53,7.383,14.826,25.441,20.737,8.065,-2.264,10.853,20.253,16.093,15.681,11.496,11.669,9.812,-2.026,14.755,12.851,5.975,3.609,2.184,18.969,9.631,19.934,7.312,16.544,7.781,15.91,7.683,-0.66,6.183,2.685,23.188,-5.005,2.421,7.863,23.889,11.89,-0.066,18.388,19.746,16.961,27.279,12.275,5.437,-0.324,4.747,24.091,22.795,11.631,13.44,12.897,12.14,6.856,17.918,5.419,13.538,18.6,18.034,16.482,8.051,17.703,8.87,-0.681,8.848,1.966,23.921,17.462,3.029,26.477,19.657,4.593,23.82,22.644,8.649,12.572,10.759,12.182,9.237,12.037,9.147,19.524,3.903,13.797,8.345,20.128,-1.807,10.389,10.955,11.006,20.083,14.828,15.006,4.859,9.217,14.25,13.33,17.175,12.744,-2.845,7.867,18.531,3.658,13.065,19.421,6.673,10.454,16.497,17.926,-1.345,15.958,5.888,17.91,11.699,0.43,10.233,5.275,2.195,21.19,0.41,7.673,14.961,6.581,9.492,8.942,15.816,15.912,14.262,4.341,24.222,7.05,-1.65,6.685,24.841,6.91,1.067,13.134,21.684,2.219,7.375,27.962,6.402,17.617,1.476,-5.529,-3.199,17.251,22.132,28.547,0.028,12.25,20.84,20.266,17.426,1.388,18.602,24.336,10.552,6.055,4.164,0.631,13.485,19.594,23.102,4.074,6.947,4.834,14.774,9.902,17.832,12.452,11.998,11.822,12.735,11.99,23.584,6.462,3.607,0.385,5.441,14.442,18.082,23.133,18.673,12.05,14.696],[22.723,18.64,9.581,16.765,11.792,7.913,2.414,3.584,7.6,14.639,25.461,20.473,8.159,-2.7,10.805,20.119,15.866,15.623,11.533,11.704,9.976,-2.155,15.017,12.798,5.903,3.485,1.946,19.0,9.934,19.955,7.182,16.664,7.675,15.874,7.734,-0.455,6.364,2.67,23.229,-5.173,2.087,7.868,23.945,11.817,-0.315,18.38,19.774,16.697,27.431,12.3,5.324,-0.328,4.801,24.27,22.957,11.602,13.573,12.849,12.363,6.782,17.802,5.514,13.501,18.61,18.304,16.412,8.164,17.691,8.83,-1.125,9.277,1.959,23.873,17.599,2.546,26.895,19.806,4.855,24.087,22.249,8.801,12.633,10.757,12.479,9.463,12.3,8.828,19.349,3.889,13.85,8.563,20.295,-2.216,10.278,10.764,11.049,20.276,15.047,14.902,4.299,9.321,14.394,13.265,17.497,12.493,-2.737,8.262,19.272,3.015,13.318,18.648,6.753,10.356,16.518,17.673,-1.589,16.486,5.732,18.099,11.781,0.434,9.94,5.293,2.599,20.503,0.706,7.785,14.91,6.673,9.534,8.665,15.847,16.537,14.14,4.438,24.609,6.924,-2.038,7.076,25.142,6.518,0.696,13.163,21.89,2.792,7.105,28.009,6.289,17.423,1.545,-5.593,-3.313,16.956,22.189,28.744,0.344,12.019,21.04,20.123,17.022,1.393,18.719,24.331,10.692,6.131,4.282,0.807,12.664,19.643,22.286,4.17,7.165,4.745,14.952,9.736,17.909,12.055,11.826,12.053,13.358,12.201,24.05,6.49,3.637,0.455,5.912,14.325,17.345,23.746,18.233,12.592,14.469],[22.656,18.866,9.531,17.075,12.044,7.957,2.569,3.681,7.722,14.563,25.424,20.159,8.447,-3.073,10.736,19.991,15.773,15.646,11.543,11.663,10.029,-2.236,15.322,12.811,5.791,3.444,1.771,19.014,10.098,19.837,6.969,16.785,7.612,15.837,7.74,-0.296,6.542,2.647,23.312,-5.302,1.926,7.81,23.878,11.728,-0.327,18.141,19.775,16.463,27.789,12.372,5.408,-0.423,4.93,24.255,22.972,11.686,13.592,12.791,12.539,6.718,17.669,5.469,13.542,18.634,18.567,16.362,8.745,17.397,9.043,-1.982,9.238,2.263,23.592,17.526,2.509,26.988,19.555,5.005,24.387,22.263,9.257,12.589,10.285,12.186,9.825,12.637,8.992,19.583,4.142,13.895,8.911,19.796,-2.063,10.097,10.607,11.538,20.63,15.295,15.501,3.935,8.794,14.235,13.099,17.368,12.481,-2.918,9.053,19.905,3.132,13.282,18.448,6.655,10.476,16.703,17.762,-1.752,16.657,5.343,18.26,11.848,0.12,9.919,5.201,2.532,20.112,0.48,7.598,14.989,6.449,9.577,8.552,16.335,16.63,14.199,4.354,24.203,6.737,-1.887,7.197,25.05,6.645,0.777,13.122,22.045,3.066,7.788,27.694,6.612,17.503,1.191,-5.572,-3.56,17.229,22.228,28.814,0.15,11.704,21.149,20.064,15.961,1.092,18.874,24.118,10.789,6.345,4.521,0.517,11.829,19.538,22.975,4.126,6.37,4.96,15.19,9.712,18.087,11.646,12.038,11.888,13.189,12.089,24.06,6.459,3.529,0.323,5.591,14.494,16.933,23.577,18.136,13.214,14.64],[22.646,19.013,9.643,17.375,12.238,8.077,2.636,3.716,7.838,14.703,25.366,19.95,8.725,-3.473,10.731,19.856,15.782,15.687,11.465,11.623,10.016,-2.274,15.569,12.861,5.731,3.466,1.566,19.172,10.254,19.623,6.713,16.856,7.607,15.955,7.745,-0.471,6.731,2.726,23.374,-5.369,1.796,7.89,23.689,11.507,-0.31,17.963,19.807,16.236,28.174,12.419,5.632,-0.602,4.996,24.05,23.016,11.653,13.671,12.7,12.495,6.54,17.554,5.453,13.545,18.661,18.702,16.435,8.666,17.43,9.171,-2.682,9.334,2.592,23.783,17.606,3.217,27.003,19.463,5.315,24.285,22.545,9.177,12.552,9.865,12.536,9.52,12.729,8.806,19.316,4.29,13.636,9.539,19.511,-2.031,10.241,10.692,12.577,20.973,15.323,15.446,3.984,9.026,14.121,13.19,16.849,12.483,-2.924,9.311,20.427,3.359,12.848,18.663,6.17,10.628,16.675,17.905,-1.437,16.742,5.278,18.201,11.757,-0.196,9.858,5.342,2.149,20.085,0.653,7.601,15.127,6.401,9.534,8.168,16.096,16.598,14.24,4.285,24.196,6.982,-1.622,6.852,25.056,6.716,0.652,12.994,21.862,2.81,8.003,27.684,6.712,17.43,1.055,-5.812,-3.549,17.146,21.976,28.816,-0.102,12.098,20.904,19.889,15.796,1.413,18.656,24.102,10.711,6.329,4.876,0.085,11.673,19.24,23.249,3.687,6.82,5.12,15.307,9.945,18.075,11.862,12.596,12.165,12.684,12.076,23.664,6.574,3.77,0.706,5.199,14.583,16.959,23.131,18.4,12.808,14.379],[22.796,19.048,9.812,17.567,12.397,8.006,2.679,3.813,7.857,15.017,25.364,19.834,8.914,-3.862,10.905,19.768,15.701,15.76,11.332,11.629,10.071,-2.125,15.669,13.004,5.726,3.584,1.205,19.3,10.406,19.303,6.608,16.954,7.597,16.142,7.745,-0.582,6.977,2.799,23.318,-5.407,1.781,8.096,23.461,11.35,-0.403,17.969,19.731,16.16,28.433,12.29,5.712,-0.806,5.049,23.794,23.082,11.711,13.707,12.57,12.358,6.416,17.465,5.383,13.539,18.716,19.238,16.527,8.586,17.505,9.057,-3.437,9.677,2.273,24.013,18.144,3.423,26.834,20.02,5.341,23.904,22.452,9.216,12.71,10.114,12.618,8.981,12.808,9.264,18.417,4.155,13.734,9.394,19.918,-2.668,10.69,10.697,12.698,20.93,14.89,15.612,4.027,9.299,13.916,13.234,16.865,12.749,-2.705,9.403,20.761,3.735,12.253,18.76,6.372,10.477,16.398,18.261,-1.963,16.901,4.761,18.56,11.843,-0.457,9.59,5.159,1.989,20.127,0.111,8.14,15.709,6.79,9.457,7.731,15.804,16.249,14.483,4.403,24.526,7.438,-2.113,6.987,24.87,6.882,0.522,12.637,21.953,2.473,7.256,28.261,6.338,16.822,1.415,-6.095,-3.593,16.54,21.694,29.33,-0.116,12.53,21.051,19.716,16.687,0.94,18.436,23.697,10.701,6.295,5.259,-0.087,11.945,18.767,22.561,3.877,7.192,5.396,15.22,9.776,18.15,11.621,12.06,12.224,12.539,12.563,24.044,6.522,3.887,0.335,5.314,14.791,17.253,23.143,18.481,12.253,14.394],[22.888,19.23,9.91,17.637,12.539,8.007,2.685,3.9,7.851,15.34,25.405,19.696,8.982,-4.346,11.287,19.735,15.541,15.813,11.223,11.639,10.102,-2.025,15.677,13.069,5.853,3.668,0.916,19.482,10.467,19.119,6.555,17.123,7.855,16.319,7.771,-0.84,7.223,2.839,23.267,-5.47,1.769,8.18,23.301,11.418,-0.452,17.967,19.662,16.253,28.624,12.224,5.577,-1.11,5.236,23.608,23.07,11.683,13.636,12.453,12.18,6.458,17.443,5.427,13.499,18.704,19.215,17.127,8.946,17.663,9.146,-3.605,9.875,2.43,24.078,18.935,2.885,26.796,19.725,4.928,24.157,22.438,8.618,13.149,10.586,12.208,8.738,13.065,9.119,18.106,4.098,14.311,9.169,19.773,-2.9,10.652,10.425,12.06,20.521,14.746,15.885,4.619,9.634,14.106,13.025,17.054,12.846,-2.947,9.154,20.963,4.042,12.383,18.237,6.196,10.703,15.88,18.241,-1.716,17.065,4.657,18.427,11.901,-0.857,9.761,5.481,1.517,19.661,0.048,7.932,16.132,6.519,9.251,7.473,16.454,16.119,14.502,4.428,24.61,7.91,-2.199,7.305,24.592,6.757,0.567,12.377,22.308,2.473,7.404,28.872,6.284,16.695,1.298,-6.165,-3.706,16.514,21.574,29.338,-0.336,12.142,21.015,19.602,16.793,0.812,18.565,23.416,10.341,6.292,4.816,0.022,12.547,18.401,22.852,3.944,6.639,5.084,15.236,9.817,18.239,11.029,11.528,11.86,12.897,12.48,23.437,6.537,3.734,-0.224,5.757,15.087,16.714,23.179,18.348,12.34,14.424],[22.912,19.475,9.833,17.702,12.655,7.826,2.614,3.938,8.068,15.745,25.548,19.398,8.945,-4.665,11.623,19.653,15.554,15.81,11.178,11.714,10.081,-1.995,15.618,13.068,5.988,3.862,0.797,19.594,10.344,19.017,6.476,17.372,8.137,16.476,7.826,-1.127,7.511,2.857,23.149,-5.513,1.559,8.107,23.178,11.602,-0.396,17.891,19.582,16.328,28.609,12.189,5.381,-1.298,5.224,23.332,23.047,11.438,13.61,12.475,11.871,6.629,17.294,5.47,13.542,18.635,18.936,17.342,8.879,18.2,9.007,-4.006,10.159,2.664,23.854,19.254,3.07,27.171,19.273,5.25,24.317,22.519,8.974,13.421,11.173,12.203,9.185,13.091,9.153,18.71,4.061,14.861,9.3,19.532,-3.279,11.063,9.954,11.377,20.362,14.588,15.759,5.288,9.852,14.032,12.724,17.133,12.765,-3.049,8.976,21.158,3.561,12.777,17.667,6.246,10.746,15.752,18.361,-1.63,17.281,4.781,18.747,11.898,-1.12,10.519,5.7,1.4,18.841,-0.065,8.229,16.502,6.875,9.251,7.697,16.964,15.709,14.753,4.526,24.536,7.941,-2.342,7.066,24.658,6.934,0.508,12.182,22.005,2.338,7.969,29.254,6.578,16.947,0.857,-5.861,-3.692,16.575,21.461,29.415,-0.303,11.909,20.943,19.723,16.287,0.953,18.659,23.668,10.629,6.272,4.953,-0.213,11.698,18.388,22.645,3.791,6.754,4.893,14.866,10.091,18.02,11.214,11.9,11.87,13.128,12.024,23.29,7.093,3.626,-0.563,5.389,14.973,16.775,23.206,18.352,12.499,14.154],[22.836,19.562,9.738,17.888,12.823,7.797,2.598,4.033,8.242,16.084,25.794,19.249,8.94,-4.842,11.626,19.61,15.898,15.647,11.151,11.927,10.148,-2.003,15.494,13.02,6.177,4.0,0.731,19.611,10.185,18.787,6.453,17.415,8.434,16.781,7.799,-1.256,7.799,2.831,22.936,-5.428,1.298,8.086,23.162,11.775,-0.311,17.89,19.375,16.173,28.433,12.287,5.265,-1.357,5.343,23.064,23.025,11.283,13.535,12.252,11.655,6.808,17.138,5.424,13.511,18.634,19.542,17.066,9.417,18.182,9.284,-4.674,9.923,2.592,24.04,19.067,3.556,27.391,19.972,5.489,24.369,22.788,9.049,13.366,11.09,12.117,9.464,12.644,8.617,18.663,4.083,15.158,9.573,19.313,-3.482,11.705,10.029,11.229,19.977,15.061,15.917,5.209,9.418,13.93,12.561,16.984,12.875,-2.752,8.625,21.142,3.392,13.107,17.741,6.529,10.811,15.908,18.524,-2.269,16.966,4.865,18.652,11.979,-0.819,10.87,5.774,1.889,18.738,-0.419,8.425,17.158,7.196,9.385,7.875,16.814,15.774,14.952,4.339,24.188,7.911,-2.373,6.913,24.569,7.095,0.336,12.454,21.642,2.34,7.441,28.976,7.233,17.414,0.735,-5.897,-3.516,16.744,21.527,29.531,-0.096,11.882,21.096,19.734,16.113,0.52,18.536,23.163,10.913,5.934,5.075,-0.322,11.59,18.305,22.268,3.815,6.911,5.105,15.002,9.425,17.932,11.299,11.816,12.181,12.925,11.847,23.507,6.604,3.417,-0.431,5.693,14.756,16.819,22.926,17.921,12.549,14.222],[22.784,19.641,9.567,17.989,12.895,7.739,2.7,4.237,8.419,16.118,25.943,19.404,9.006,-4.946,11.642,19.59,16.198,15.396,11.104,12.23,10.253,-2.06,15.405,13.044,6.377,3.989,0.875,19.53,10.071,18.605,6.562,17.293,8.57,17.004,7.663,-1.304,8.004,2.81,22.736,-5.418,1.107,8.044,23.127,11.85,-0.297,17.998,19.225,15.946,28.203,12.506,5.169,-1.222,5.51,22.977,22.983,11.109,13.285,12.016,11.679,6.893,17.032,5.376,13.384,18.649,20.477,17.672,9.845,17.805,9.055,-4.691,9.508,2.765,24.077,18.67,3.599,27.701,19.851,5.293,24.844,22.66,9.382,13.281,10.308,12.376,9.627,12.834,8.336,18.287,3.968,15.241,9.147,19.394,-3.155,11.247,10.547,11.263,19.833,15.503,16.022,4.713,8.936,13.499,12.711,17.097,13.381,-2.921,8.15,20.831,3.817,13.199,18.06,6.933,11.163,15.667,18.266,-2.199,15.922,4.641,18.479,11.868,-0.394,10.568,5.791,1.945,18.951,-0.182,8.356,17.168,7.899,9.467,7.627,17.031,15.78,15.249,4.073,24.144,8.059,-2.115,7.018,24.739,6.838,0.629,12.718,21.601,2.242,7.006,28.294,7.617,17.479,0.807,-6.123,-3.523,16.744,21.646,29.276,-0.017,12.364,20.715,19.848,16.385,0.407,18.536,22.641,10.85,5.881,5.099,-0.43,12.081,18.463,22.674,3.844,7.04,5.467,15.158,9.548,17.999,10.931,11.247,12.162,13.0,12.46,22.875,6.001,3.337,0.148,5.868,14.686,17.037,22.727,17.768,12.418,13.897],[22.813,19.747,9.337,17.89,12.852,7.678,2.8,4.448,8.399,16.137,26.038,19.71,8.981,-4.846,11.686,19.584,16.212,15.017,11.096,12.518,10.237,-2.093,15.362,13.124,6.484,3.944,1.234,19.555,9.986,18.595,6.548,17.171,8.556,17.048,7.549,-1.217,7.96,2.711,22.573,-5.634,1.049,7.982,23.135,11.938,-0.231,18.116,19.137,15.894,27.949,12.84,5.089,-0.847,5.601,22.918,22.868,10.979,13.027,12.064,11.636,6.873,17.043,5.389,13.32,18.707,20.947,17.67,9.855,17.639,8.917,-4.559,10.161,2.916,23.848,18.201,3.228,27.856,19.313,5.676,25.259,22.688,9.34,13.248,9.854,12.6,9.486,13.144,8.269,18.473,4.385,15.136,9.305,19.51,-3.195,10.676,10.532,11.554,19.898,15.353,15.638,4.93,8.811,13.16,12.841,17.048,13.62,-3.263,8.273,20.575,3.851,12.648,18.211,7.127,11.462,15.613,18.32,-1.79,15.191,4.697,18.868,11.902,-0.336,10.118,5.876,1.875,19.103,-0.382,8.499,17.251,7.976,9.319,7.645,17.307,15.245,15.243,4.449,23.941,8.088,-2.748,6.733,24.849,6.799,0.835,12.297,21.592,2.52,7.628,27.723,8.186,17.422,0.461,-5.706,-3.781,16.105,21.604,29.242,-0.167,12.605,20.081,19.918,16.458,0.241,18.017,22.996,11.175,5.897,5.17,-0.808,12.025,18.505,23.092,3.574,6.979,4.954,15.118,9.629,17.82,11.138,11.587,12.076,12.982,13.023,23.269,6.552,3.271,0.269,5.886,14.096,17.262,23.459,17.865,12.395,13.604],[23.106,19.839,9.126,17.696,12.798,7.654,2.889,4.674,8.273,16.104,26.13,20.018,9.081,-4.738,11.626,19.639,15.934,14.569,11.115,12.66,10.066,-2.163,15.225,13.087,6.513,3.919,1.418,19.776,9.997,18.758,6.453,17.096,8.541,16.967,7.433,-1.142,7.725,2.682,22.491,-5.746,1.019,8.142,23.219,12.061,-0.223,18.17,18.875,15.91,27.786,13.141,5.022,-0.545,5.753,22.997,22.826,10.927,12.874,12.234,11.692,6.863,17.15,5.281,13.375,18.787,20.746,17.231,9.657,17.836,8.813,-4.612,9.873,3.098,23.36,17.306,3.276,27.989,19.685,6.021,24.992,22.782,9.205,13.093,10.349,12.417,8.801,12.763,7.966,19.179,4.541,15.603,9.838,19.532,-3.319,10.93,10.167,11.908,20.019,15.157,16.027,5.051,9.202,13.369,12.806,17.145,13.728,-2.796,8.142,20.305,3.628,12.116,17.806,7.502,11.58,15.316,18.523,-1.608,15.491,4.775,18.85,11.868,-0.231,10.329,5.561,2.084,18.523,-0.238,8.342,17.366,7.201,9.161,7.517,17.025,15.28,15.09,4.515,23.833,8.157,-2.801,6.661,24.66,6.882,0.976,11.249,21.266,2.352,7.505,27.707,8.403,17.707,0.678,-6.011,-3.943,16.138,21.533,29.035,-0.054,12.151,20.43,20.042,16.149,0.431,17.732,23.41,11.622,5.894,5.215,-0.264,11.993,18.796,23.055,3.654,6.58,4.922,15.12,9.618,17.625,10.885,11.646,11.493,13.215,13.282,22.769,6.953,3.158,0.679,6.094,13.509,17.17,23.269,18.167,11.886,14.238],[23.37,19.918,8.984,17.442,12.721,7.681,3.012,4.865,8.196,16.079,26.079,20.29,9.319,-4.71,11.419,19.676,15.593,14.276,11.014,12.653,9.9,-2.156,15.165,12.944,6.492,3.852,1.29,19.892,10.057,18.846,6.295,17.055,8.457,16.82,7.379,-1.006,7.472,2.722,22.452,-5.751,1.152,8.336,23.181,12.052,-0.302,18.193,18.659,15.855,27.763,13.427,4.963,-0.282,5.9,23.158,22.737,10.891,12.707,12.464,11.763,6.831,17.314,5.307,13.487,18.778,19.789,17.577,9.57,17.817,9.055,-4.579,9.901,3.241,24.005,16.947,3.881,27.676,20.222,6.124,25.097,23.476,9.324,13.113,10.494,11.963,7.93,12.461,7.964,19.5,4.381,16.112,9.732,20.0,-3.08,11.138,10.595,12.098,20.288,14.912,15.995,4.983,9.418,12.775,12.823,16.913,13.524,-2.685,8.257,20.496,3.78,11.71,17.771,7.271,11.37,14.706,18.559,-1.862,15.734,4.4,19.09,11.643,0.197,10.531,5.711,2.156,18.733,-0.033,8.04,16.766,7.547,8.913,7.549,16.789,15.45,15.297,4.356,24.028,8.065,-2.481,6.836,24.799,7.246,0.823,10.548,21.336,2.507,7.286,27.782,7.958,18.256,0.898,-6.616,-3.9,16.546,21.547,28.767,0.061,12.287,20.301,20.039,15.901,0.194,17.834,23.139,11.698,5.759,5.25,0.464,12.114,19.154,23.157,3.877,6.682,5.025,15.173,9.293,17.794,10.545,11.285,11.25,13.445,13.222,22.921,7.066,3.106,0.892,5.831,13.684,17.063,22.89,18.757,11.831,14.34],[23.689,19.946,8.814,17.186,12.578,7.727,3.254,4.94,8.22,16.217,25.977,20.53,9.485,-4.639,11.099,19.69,15.439,14.049,10.939,12.499,9.777,-2.108,15.129,12.84,6.399,3.954,1.283,19.927,10.17,18.933,6.157,16.935,8.403,16.82,7.496,-1.072,7.301,2.823,22.518,-5.758,1.399,8.406,23.146,11.903,-0.398,18.226,18.663,15.797,27.674,13.596,4.887,-0.019,6.048,23.324,22.651,10.865,12.597,12.546,11.681,6.635,17.575,5.548,13.6,18.816,19.252,17.669,9.358,17.86,9.495,-4.571,10.687,3.271,25.145,16.788,4.215,27.775,20.149,6.124,24.809,23.459,9.166,12.964,10.037,11.831,7.414,12.638,8.542,19.535,4.444,16.059,9.44,20.434,-2.825,10.53,10.797,11.983,20.572,14.476,15.454,4.808,9.157,12.364,12.608,16.749,13.336,-3.108,8.38,20.549,3.686,11.403,17.956,6.73,11.209,14.116,18.69,-2.001,15.93,4.299,18.991,11.625,-0.35,11.232,5.411,2.125,18.693,0.185,8.027,16.202,7.915,8.576,7.132,17.059,15.183,14.939,4.43,23.978,7.729,-1.902,6.409,24.624,7.259,0.533,10.31,22.04,2.574,7.624,27.734,7.657,18.408,0.498,-6.901,-4.092,16.382,21.696,29.034,-0.173,12.659,19.925,19.991,15.922,0.472,17.841,23.056,11.992,5.657,5.444,0.764,12.277,19.436,22.876,3.752,6.794,5.056,15.378,9.141,18.198,10.577,11.444,11.771,13.703,13.245,23.314,7.208,3.04,0.661,5.719,13.99,16.991,22.895,18.247,11.919,14.239],[24.113,19.935,8.615,16.993,12.4,7.783,3.495,4.939,8.283,16.286,25.938,20.71,9.694,-4.486,10.695,19.655,15.317,13.834,10.763,12.443,9.709,-2.005,15.075,12.779,6.138,3.992,1.55,19.917,10.345,18.894,6.082,16.578,8.407,16.935,7.534,-1.143,7.249,2.865,22.676,-5.777,1.502,8.321,23.129,11.662,-0.489,18.188,18.77,15.807,27.54,13.73,4.898,0.236,6.274,23.46,22.591,10.876,12.623,12.605,11.638,6.406,17.783,5.689,13.787,18.902,19.644,17.806,9.265,17.657,9.316,-4.629,10.332,3.292,24.848,16.059,4.305,27.705,19.614,6.042,24.768,23.262,8.762,12.477,9.636,12.126,7.391,12.686,8.736,19.37,4.714,16.393,9.518,20.673,-2.742,10.304,10.078,11.779,20.456,14.392,15.081,4.617,9.027,12.426,12.57,16.966,13.537,-2.859,8.768,20.475,3.745,11.583,18.652,6.486,10.932,13.703,18.76,-2.119,15.421,4.326,19.029,11.475,-0.198,11.676,5.558,1.524,18.799,0.143,8.49,16.099,7.397,9.107,7.272,17.042,15.062,15.068,4.719,23.962,7.11,-2.271,6.742,24.611,7.137,1.009,10.337,22.291,2.217,7.737,27.49,7.469,17.896,0.921,-7.074,-4.18,16.519,21.67,28.865,-0.246,12.819,19.794,20.086,15.795,0.804,17.729,23.143,12.104,5.804,5.343,0.494,11.894,19.557,23.199,4.095,6.122,5.331,15.394,9.619,18.092,10.322,11.443,12.101,13.662,13.355,23.377,7.206,3.013,0.786,5.57,13.933,17.331,22.946,18.211,11.539,14.427],[24.344,19.882,8.413,16.832,12.224,7.723,3.692,4.837,8.322,16.386,25.921,20.731,9.744,-4.327,10.377,19.569,15.304,13.571,10.587,12.666,9.746,-1.85,14.917,12.717,5.797,3.99,1.794,19.816,10.572,18.909,6.06,16.168,8.509,17.082,7.467,-1.128,7.155,2.797,22.808,-5.857,1.574,8.203,23.188,11.421,-0.315,18.094,18.837,15.845,27.408,13.793,5.027,0.426,6.431,23.532,22.653,10.983,12.734,12.711,11.545,6.268,17.787,5.763,13.877,18.944,20.336,17.913,9.123,17.249,9.107,-4.504,10.229,3.234,24.839,15.611,4.554,27.633,19.6,6.073,24.783,23.521,9.048,12.12,9.588,12.372,7.727,12.576,8.686,19.474,4.847,16.47,10.083,20.421,-2.542,10.581,10.062,11.475,20.111,14.493,15.742,4.411,8.76,12.761,12.422,16.345,13.361,-2.714,8.674,20.287,4.213,11.934,18.981,5.899,11.15,13.61,18.546,-1.859,14.943,4.269,19.003,11.576,0.336,11.24,5.746,2.242,18.676,0.229,7.869,16.241,7.664,9.205,7.326,17.051,14.796,15.524,4.617,24.462,7.229,-2.431,6.882,24.586,7.072,0.798,10.353,22.087,2.524,7.31,26.685,7.448,17.229,0.866,-7.109,-4.109,16.729,21.446,28.505,-0.101,12.291,20.37,20.022,15.76,0.463,17.473,23.438,12.088,6.151,5.252,0.555,11.913,19.657,23.401,4.354,5.605,5.407,15.75,9.448,18.101,10.398,11.344,11.677,13.641,13.477,23.148,7.055,3.263,1.613,5.701,13.821,17.32,23.091,18.983,11.182,14.46],[24.42,19.912,8.295,16.664,12.139,7.674,3.899,4.696,8.249,16.539,25.941,20.609,9.67,-4.172,10.238,19.491,15.378,13.419,10.593,12.846,9.83,-1.71,14.803,12.528,5.414,4.133,2.111,19.72,10.63,18.894,6.02,15.894,8.611,17.295,7.286,-1.087,7.035,2.754,22.938,-5.932,1.47,8.097,23.332,11.193,-0.144,18.074,18.991,15.898,27.131,13.743,5.221,0.574,6.468,23.606,22.915,10.999,12.861,12.718,11.439,6.211,17.649,5.797,13.803,18.99,20.147,18.089,9.608,17.053,8.888,-4.346,10.753,3.055,25.473,15.4,4.739,27.724,19.398,5.898,24.72,23.981,8.777,12.131,9.548,11.979,7.485,12.345,8.62,19.893,5.128,16.057,10.233,19.889,-2.249,9.792,10.539,11.087,20.062,14.463,16.156,4.53,8.884,12.179,12.446,15.892,13.897,-2.819,8.867,20.171,4.519,12.135,18.807,5.397,11.693,13.653,18.797,-1.423,15.133,4.295,18.398,11.713,0.471,11.427,5.652,2.982,19.021,0.132,8.235,16.205,7.727,8.869,7.242,17.42,14.494,15.389,4.101,24.783,7.349,-2.218,6.629,24.797,7.287,0.704,11.191,21.724,2.649,6.941,26.4,7.667,17.169,1.07,-7.042,-4.365,16.294,21.665,28.412,-0.125,11.355,20.648,19.814,16.001,0.358,17.813,23.595,11.999,6.388,5.678,1.087,12.565,19.497,23.086,4.17,6.637,5.073,15.598,9.258,17.927,10.111,11.588,11.328,13.503,13.523,23.295,7.081,3.532,2.027,5.482,13.463,17.202,22.995,19.11,11.045,14.602],[24.525,19.945,8.205,16.459,12.082,7.65,4.034,4.502,8.208,16.622,26.093,20.476,9.59,-3.893,10.119,19.424,15.358,13.374,10.77,13.024,9.891,-1.616,14.915,12.263,5.042,4.389,2.36,19.603,10.582,18.806,6.113,15.851,8.701,17.565,7.078,-1.026,7.015,2.713,23.048,-6.027,1.269,8.051,23.548,10.959,-0.124,18.141,19.202,15.95,26.897,13.65,5.369,0.624,6.495,23.734,23.124,10.889,12.933,12.683,11.493,6.36,17.508,5.753,13.54,18.981,19.537,18.126,9.62,17.133,8.842,-4.27,10.501,2.821,25.408,15.209,4.894,27.632,19.389,5.59,24.629,24.233,8.424,11.854,9.43,10.974,6.807,12.629,8.435,19.637,5.206,16.15,10.15,20.267,-2.161,9.603,10.702,10.799,20.386,14.561,15.702,5.55,9.571,11.867,12.391,16.505,14.608,-2.536,8.918,20.046,4.154,12.489,18.276,4.537,12.09,13.586,18.974,-1.943,15.35,4.437,18.441,11.652,0.562,11.766,6.022,2.788,18.962,0.024,8.415,15.461,7.903,8.373,7.267,17.788,14.256,15.814,4.349,24.416,7.029,-2.297,6.228,24.82,7.274,0.663,10.679,22.265,2.693,6.714,26.411,7.579,17.372,0.983,-7.244,-4.638,16.094,21.897,28.319,0.244,11.818,20.719,19.895,15.79,0.738,17.94,23.924,12.063,6.461,5.396,1.244,12.539,19.302,23.47,4.317,6.747,5.378,15.309,8.998,18.079,9.753,11.382,11.759,13.613,13.356,23.614,7.153,3.614,2.111,5.833,12.593,17.499,23.397,18.456,11.307,14.562],[24.649,19.821,7.988,16.3,12.012,7.758,4.049,4.283,8.209,16.733,26.196,20.479,9.492,-3.647,10.046,19.334,15.32,13.295,10.778,13.337,9.919,-1.61,15.143,12.096,4.745,4.563,2.302,19.632,10.536,18.646,6.201,15.804,8.807,17.881,6.786,-0.992,7.0,2.789,23.043,-6.242,1.233,8.019,23.755,10.747,-0.287,18.168,19.34,16.033,26.916,13.633,5.325,0.635,6.5,24.008,23.345,10.747,12.85,12.614,11.518,6.691,17.513,5.848,13.409,18.808,19.773,18.298,9.028,17.0,8.67,-3.897,10.569,2.673,25.232,14.813,5.137,27.586,20.33,5.507,24.62,23.985,8.207,11.909,9.268,10.242,6.613,12.543,8.514,19.326,5.109,16.259,9.881,20.428,-1.741,10.06,11.291,10.773,20.446,14.673,15.523,5.773,9.553,12.167,12.359,16.783,14.096,-2.877,8.762,19.794,4.115,12.487,18.316,3.787,12.074,13.554,18.904,-1.719,15.638,4.333,18.481,11.806,0.965,11.711,6.412,3.017,18.869,0.019,8.421,14.883,8.271,8.409,7.389,17.969,14.615,16.141,4.426,24.734,7.174,-2.321,6.337,24.851,6.918,1.093,10.065,22.607,2.677,7.332,26.265,7.847,17.888,0.603,-7.381,-4.861,16.501,21.976,28.177,0.336,12.12,20.777,19.979,15.142,0.498,17.901,24.157,11.976,6.554,5.096,0.463,11.961,19.281,23.464,4.831,6.177,5.483,14.771,9.17,18.321,10.211,11.022,11.896,13.601,13.127,23.519,6.94,3.651,2.18,5.877,12.616,17.181,23.641,18.821,11.346,14.351],[24.684,19.736,7.757,16.183,11.873,7.879,4.199,4.139,8.191,16.793,26.159,20.598,9.403,-3.399,10.155,19.29,15.169,13.161,10.824,13.518,9.916,-1.687,15.367,12.029,4.523,4.659,2.328,19.763,10.678,18.54,6.2,15.797,9.026,18.11,6.604,-0.984,7.003,2.842,22.974,-6.499,1.197,8.023,23.77,10.662,-0.394,18.235,19.53,16.143,27.08,13.687,5.097,0.494,6.49,24.377,23.488,10.676,12.744,12.476,11.551,6.78,17.534,6.001,13.395,18.73,19.746,18.41,9.015,16.702,8.914,-3.752,10.365,2.636,25.767,14.489,4.743,27.657,20.354,5.376,24.682,23.783,8.43,11.829,9.05,10.056,6.259,12.406,9.185,19.924,5.153,16.498,9.883,20.284,-1.662,10.104,11.093,11.072,20.243,14.568,16.267,4.764,9.147,12.044,12.417,16.295,14.301,-2.989,8.873,19.29,4.71,11.966,18.493,3.06,12.032,13.672,18.931,-1.407,15.525,4.422,18.442,11.73,0.661,11.369,6.367,2.853,19.363,0.24,8.566,14.512,8.041,8.404,7.244,17.715,15.105,16.343,4.448,24.818,6.916,-2.192,6.246,24.967,6.977,0.8,9.405,22.19,3.385,7.44,26.523,8.165,17.926,0.718,-7.794,-5.189,16.743,22.082,28.461,-0.081,11.351,20.637,19.886,15.123,0.221,18.033,24.044,11.949,6.526,5.044,0.492,11.806,19.336,23.615,4.676,7.11,5.087,15.077,9.288,17.992,10.644,11.083,11.95,13.626,13.137,23.568,7.088,3.428,1.97,5.551,13.182,16.633,23.466,19.255,10.98,14.15],[24.762,19.645,7.581,16.074,11.746,8.033,4.297,4.192,8.251,16.867,26.132,20.87,9.28,-3.203,10.354,19.245,14.664,13.003,10.917,13.546,9.819,-1.776,15.561,11.934,4.155,4.713,2.382,19.819,10.873,18.73,6.235,15.84,9.226,18.194,6.583,-0.843,7.016,2.785,22.81,-6.759,1.175,8.109,23.55,10.463,-0.467,18.277,19.744,16.283,27.384,13.744,4.944,0.278,6.525,24.569,23.394,10.754,12.639,12.391,11.662,6.621,17.502,5.826,13.482,18.871,19.475,18.198,9.605,16.113,9.034,-3.628,10.16,2.671,25.909,14.63,5.058,27.609,19.86,5.66,24.768,24.322,9.03,12.087,8.843,9.88,5.899,12.113,9.189,20.599,5.369,17.044,10.324,20.319,-1.32,9.914,10.522,12.105,20.216,14.245,16.718,4.309,9.043,12.115,12.679,16.15,14.639,-2.748,9.046,18.447,4.584,11.471,18.492,3.071,12.042,13.947,19.107,-1.881,15.771,4.508,18.517,11.596,0.458,11.636,6.281,2.822,18.884,0.545,8.477,14.317,8.215,7.926,7.227,17.782,15.748,16.793,4.372,24.372,6.29,-1.856,6.099,24.901,7.131,0.665,9.226,21.961,3.206,6.921,26.469,8.244,17.532,0.845,-8.249,-5.652,16.627,21.998,28.684,-0.319,11.473,20.984,19.947,15.622,0.435,18.24,24.086,12.123,6.383,5.179,0.769,11.952,19.393,23.422,4.688,7.104,5.159,15.297,8.942,17.459,10.379,11.123,11.446,13.587,13.449,23.587,7.414,3.365,1.623,5.942,13.472,16.966,23.653,18.541,10.894,13.79],[25.065,19.47,7.447,16.035,11.67,8.261,4.264,4.458,8.445,17.073,26.114,21.077,9.228,-3.11,10.41,19.127,14.317,12.972,10.831,13.434,9.745,-1.813,15.755,11.901,3.776,4.615,2.429,19.886,10.883,18.831,6.267,16.024,9.261,18.362,6.549,-0.594,6.994,2.575,22.624,-6.885,1.307,8.137,23.322,10.209,-0.536,18.216,19.789,16.426,27.541,13.786,4.936,0.083,6.705,24.539,23.203,10.826,12.563,12.415,11.663,6.477,17.508,5.622,13.617,18.906,19.218,18.624,9.704,15.889,9.094,-3.167,10.117,2.784,25.286,14.573,5.236,27.765,19.799,5.761,24.749,24.066,9.37,12.293,8.911,9.93,6.056,11.846,8.884,20.62,5.283,17.159,10.41,20.756,-1.321,9.864,10.874,11.797,20.425,13.551,16.349,4.224,9.104,12.37,12.58,15.676,14.402,-2.904,9.183,17.836,4.638,10.985,18.806,3.366,12.307,14.032,18.709,-1.642,16.19,4.546,18.935,11.552,0.881,12.116,6.335,3.093,19.36,0.678,8.972,14.347,8.324,8.273,7.548,17.973,15.857,16.587,4.098,24.394,5.823,-1.716,6.248,24.735,7.466,0.647,9.429,22.004,2.559,7.142,26.988,8.255,17.373,0.491,-8.28,-5.559,16.422,21.52,28.809,-0.35,11.747,21.349,19.947,15.911,0.773,18.602,24.161,12.11,6.338,5.388,0.625,11.69,19.241,22.948,4.492,6.364,5.271,15.341,9.122,17.334,10.111,11.098,11.519,13.644,13.254,23.857,7.441,3.416,1.486,5.166,13.053,17.587,23.262,19.137,10.771,13.957],[25.205,19.235,7.45,16.149,11.598,8.454,4.078,4.472,8.67,17.271,26.058,21.15,9.261,-2.975,10.132,18.976,14.351,13.03,10.645,13.405,9.719,-1.675,15.845,11.733,3.403,4.532,2.668,20.055,10.859,18.91,6.376,16.276,9.124,18.426,6.54,-0.37,7.032,2.329,22.695,-6.846,1.551,8.277,23.185,10.047,-0.583,18.144,19.855,16.576,27.513,13.883,4.944,-0.127,6.89,24.544,22.925,10.821,12.405,12.501,11.521,6.386,17.569,5.65,13.834,18.933,18.939,18.917,9.706,16.23,9.151,-2.767,10.501,2.9,25.576,14.38,5.134,27.756,20.116,5.902,24.985,24.019,9.259,12.007,9.148,9.892,6.168,11.951,9.3,20.165,5.11,17.173,10.015,20.501,-1.328,9.906,11.344,10.791,20.08,13.521,16.653,4.312,9.485,12.047,12.048,15.78,14.045,-2.86,9.155,17.755,4.383,10.414,18.436,3.799,12.379,13.764,19.176,-1.461,16.389,4.608,18.675,11.505,0.902,11.767,6.376,3.145,19.604,0.466,8.38,14.759,8.408,8.321,7.563,18.241,15.67,16.657,4.032,24.459,5.873,-1.551,6.15,24.22,7.502,0.26,9.39,21.649,2.53,7.341,27.326,8.091,17.39,0.803,-7.594,-5.529,16.593,21.423,28.807,-0.622,11.137,20.925,19.595,15.616,0.763,18.256,24.019,12.177,6.146,6.053,0.505,12.087,19.192,22.791,4.372,5.804,4.523,15.323,9.044,17.178,10.226,11.313,12.003,13.918,12.995,23.77,7.221,3.384,1.28,5.752,12.179,17.546,22.955,19.374,10.762,14.274],[25.211,18.952,7.66,16.263,11.595,8.493,3.918,4.387,8.848,17.369,26.093,21.041,9.414,-2.79,10.019,18.708,14.453,12.954,10.551,13.451,9.849,-1.51,15.864,11.395,3.304,4.491,2.745,20.278,10.74,18.948,6.459,16.382,8.852,18.491,6.445,-0.259,7.095,2.206,22.723,-6.675,1.837,8.394,23.164,9.987,-0.764,17.973,19.976,16.715,27.414,14.052,4.792,-0.346,6.956,24.56,22.583,10.773,12.177,12.831,11.452,6.351,17.551,5.74,13.996,18.783,18.657,18.642,10.128,16.829,8.986,-2.635,10.462,2.851,25.328,14.465,4.415,27.888,20.051,5.723,25.124,24.345,9.094,11.856,9.093,9.715,6.064,11.996,9.668,20.472,4.901,17.291,9.321,20.342,-1.08,10.001,11.162,10.453,19.982,14.216,16.71,3.19,9.43,12.258,11.448,16.079,14.265,-2.193,8.818,18.325,4.261,10.367,18.581,3.342,12.34,13.698,19.981,-1.808,16.28,4.698,18.545,11.573,1.128,11.58,6.225,3.015,19.42,0.833,8.307,15.081,8.532,7.759,7.427,18.325,15.479,16.79,3.657,24.339,6.355,-1.291,5.791,24.341,7.537,0.4,9.202,22.017,2.523,7.223,27.031,7.902,17.743,1.37,-7.883,-5.578,16.696,21.512,28.423,-0.509,11.003,20.886,19.765,15.481,1.141,18.293,24.122,12.632,6.423,5.988,0.32,12.943,19.405,22.921,4.851,6.521,4.838,15.533,9.051,17.435,10.095,11.136,11.594,14.573,13.156,23.421,7.154,3.43,1.173,5.64,11.582,17.27,22.901,18.978,10.63,14.248],[25.043,18.607,7.865,16.338,11.749,8.434,3.806,4.259,8.998,17.323,26.231,21.038,9.52,-2.586,10.2,18.507,14.541,12.776,10.455,13.569,10.081,-1.408,15.905,11.362,3.192,4.443,2.595,20.511,10.597,19.06,6.591,16.269,8.655,18.591,6.184,-0.129,6.903,2.191,22.61,-6.587,2.037,8.376,23.246,10.076,-0.881,18.0,20.125,16.921,27.224,14.194,4.724,-0.416,6.891,24.631,22.383,10.726,11.956,13.139,11.415,6.261,17.534,6.013,14.046,18.592,18.753,18.526,10.261,16.795,9.165,-2.96,9.985,2.809,25.683,14.59,4.285,27.809,19.356,5.722,24.992,24.131,8.995,11.89,9.205,9.946,6.225,12.116,9.714,21.026,4.938,17.122,8.721,20.054,-0.856,10.012,10.571,10.328,19.943,13.834,15.878,2.403,9.201,12.312,11.642,16.215,14.487,-2.489,8.783,18.695,4.513,10.304,18.604,2.792,12.201,13.805,19.626,-1.544,15.991,4.952,19.205,11.785,0.821,11.613,6.161,2.95,19.722,1.294,8.702,14.867,8.116,7.233,7.857,17.933,15.391,17.171,3.699,24.616,6.82,-1.133,5.334,24.776,7.738,0.175,9.369,21.913,2.472,7.055,26.738,8.191,17.468,1.281,-7.772,-5.416,16.388,21.71,28.536,-0.304,11.503,21.396,19.721,15.571,1.331,18.808,23.47,12.822,6.297,5.336,0.073,13.211,19.388,22.702,4.609,7.017,5.457,15.387,8.911,17.616,10.171,11.055,11.49,14.789,13.412,23.596,7.784,3.264,0.442,5.504,11.63,16.878,22.315,19.097,10.59,14.91],[24.815,18.224,8.05,16.403,12.071,8.397,3.895,4.193,9.063,17.167,26.355,21.068,9.498,-2.468,10.449,18.46,14.619,12.689,10.364,13.685,10.284,-1.45,15.775,11.494,3.095,4.487,2.306,20.66,10.581,19.244,6.827,16.054,8.586,18.607,5.771,0.074,6.728,2.163,22.575,-6.56,2.034,8.313,23.309,10.398,-0.831,18.151,20.285,17.147,27.076,14.283,4.761,-0.498,6.73,24.518,22.276,10.595,11.846,13.276,11.299,6.249,17.505,6.262,13.853,18.526,18.671,18.752,10.494,16.728,9.169,-3.217,10.215,2.655,26.043,14.588,4.964,28.038,18.853,5.715,25.075,23.467,9.292,12.33,9.426,10.19,6.433,12.418,9.215,20.865,4.58,16.843,8.35,20.197,-0.751,10.136,10.514,11.267,19.924,13.653,16.329,2.071,9.826,11.867,11.758,15.991,14.637,-2.741,9.087,18.477,4.367,10.635,18.77,2.479,12.282,13.812,19.484,-1.294,15.789,5.144,19.47,12.156,0.51,11.555,6.291,2.82,20.061,0.954,8.578,14.925,7.769,7.493,8.295,18.082,15.316,16.859,3.741,24.598,6.164,-0.887,5.479,24.672,7.613,0.079,9.385,21.737,2.364,6.995,26.515,7.806,17.611,1.108,-7.925,-5.609,16.404,21.87,28.62,-0.614,11.694,21.398,19.466,15.718,1.344,18.912,23.314,12.695,6.005,5.207,0.614,12.404,19.327,22.329,4.761,6.47,5.483,15.178,8.86,17.829,10.37,10.898,11.939,14.882,13.644,23.658,7.905,3.044,-0.607,5.23,11.781,17.056,22.76,18.944,10.414,15.16],[24.648,17.904,8.091,16.474,12.444,8.403,4.131,4.164,9.036,17.12,26.556,21.069,9.475,-2.426,10.749,18.509,14.646,12.799,10.318,13.697,10.528,-1.588,15.598,11.744,3.025,4.564,2.113,20.825,10.686,19.435,6.94,15.831,8.622,18.311,5.506,0.23,6.643,2.033,22.537,-6.604,2.019,8.294,23.274,10.608,-0.765,18.214,20.261,17.341,26.946,14.238,4.704,-0.601,6.573,24.411,22.347,10.454,11.823,13.06,11.224,6.192,17.568,6.267,13.669,18.591,17.893,18.578,10.661,16.377,9.379,-2.955,10.353,2.586,25.726,14.721,4.905,28.098,18.986,5.633,25.124,23.303,9.68,12.376,9.73,10.7,6.643,12.351,8.671,20.044,4.839,16.91,8.032,20.036,-0.73,10.362,10.575,11.834,19.844,14.02,16.88,1.88,10.382,12.286,11.628,15.999,14.795,-2.222,8.89,17.81,3.882,11.256,19.343,2.968,12.282,13.893,20.077,-1.561,16.219,5.591,19.481,12.348,0.548,11.728,6.41,2.629,19.977,0.955,8.057,14.82,7.905,7.32,8.321,18.419,15.077,16.615,3.534,24.509,5.495,-0.861,5.267,24.582,7.343,0.143,9.868,22.363,2.402,7.763,26.751,7.648,17.832,1.031,-7.931,-5.734,16.942,21.705,28.002,-0.471,12.01,21.32,19.72,15.804,1.465,18.859,22.949,12.436,6.26,5.204,0.678,12.304,19.369,22.471,4.888,6.46,5.521,15.057,9.2,17.694,9.965,10.508,11.752,14.623,14.001,23.589,7.38,3.249,-1.427,5.252,11.819,16.837,22.593,19.206,10.108,14.631],[24.541,17.66,8.111,16.664,12.829,8.476,4.237,4.166,8.975,17.24,26.641,20.868,9.506,-2.415,10.986,18.493,14.687,13.119,10.148,13.584,10.777,-1.579,15.681,12.048,3.08,4.541,2.152,20.96,10.808,19.605,7.097,15.636,8.712,18.04,5.247,0.336,6.515,1.812,22.804,-6.687,2.101,8.463,23.05,10.751,-0.761,18.345,20.078,17.524,26.901,14.044,4.714,-0.744,6.406,24.238,22.562,10.408,11.83,12.763,11.088,6.172,17.503,6.0,13.666,18.774,17.663,18.613,10.111,16.554,9.466,-3.088,10.271,2.663,25.346,14.897,4.943,28.428,18.951,5.665,25.655,23.791,9.621,12.58,9.595,11.33,6.55,12.145,8.688,20.049,5.28,17.202,7.866,19.707,-0.531,10.673,10.603,11.383,19.836,13.951,16.329,1.669,10.108,12.294,11.722,16.292,14.673,-2.477,9.028,17.422,3.928,11.22,19.242,3.308,12.044,14.308,20.439,-1.542,15.96,5.377,19.409,12.614,0.378,11.865,6.353,2.635,20.243,1.226,8.122,14.393,7.799,6.878,8.377,18.13,14.767,16.213,3.267,24.518,5.925,-0.708,5.07,24.415,7.566,0.36,10.681,22.021,2.196,7.79,26.85,7.785,17.431,1.026,-7.784,-5.641,17.379,21.249,28.191,-0.244,11.863,21.081,19.768,15.758,1.595,18.354,23.018,12.256,6.227,5.631,0.177,12.449,19.263,22.981,4.688,6.786,5.335,15.038,8.647,17.398,9.561,10.646,11.052,14.275,14.163,23.872,6.472,3.385,-1.739,5.286,11.604,16.78,22.261,19.291,10.304,14.282],[24.623,17.499,7.977,16.923,13.223,8.561,4.326,4.214,8.81,17.363,26.756,20.673,9.581,-2.427,11.183,18.4,14.814,13.509,9.924,13.391,10.89,-1.501,15.846,12.198,3.205,4.46,2.209,20.937,10.877,19.541,7.18,15.463,8.778,17.895,5.16,0.515,6.573,1.472,22.956,-6.823,2.178,8.7,22.738,10.982,-0.782,18.382,19.731,17.651,26.946,13.773,4.767,-0.942,6.261,24.21,22.793,10.257,11.839,12.548,10.906,6.276,17.414,5.762,13.789,18.95,17.35,18.68,9.768,17.624,9.562,-3.282,9.984,2.834,25.157,15.067,4.983,28.479,18.42,5.875,26.215,23.965,9.042,12.702,9.369,11.928,6.412,12.454,9.218,20.205,4.961,17.316,7.922,19.518,-0.614,11.216,10.119,11.494,19.805,14.121,16.146,1.812,10.401,12.492,11.333,16.397,13.973,-2.33,9.25,17.856,4.418,10.963,19.276,2.92,12.0,14.776,20.061,-1.591,16.196,5.388,19.268,12.707,0.558,11.979,6.236,2.295,20.682,1.404,8.383,13.569,8.041,6.695,8.148,17.437,15.093,16.093,3.073,24.888,6.004,-0.601,4.464,24.024,7.553,0.01,10.451,22.274,1.699,7.749,26.809,7.841,17.685,1.427,-7.887,-5.823,17.54,21.09,28.045,-0.486,11.613,20.92,19.755,16.132,1.67,17.985,23.33,12.115,6.074,5.117,0.159,12.506,19.135,22.504,4.379,6.726,5.028,15.202,8.421,17.073,9.84,10.693,10.892,14.828,13.602,23.746,6.63,3.074,-1.403,4.948,11.346,16.527,22.83,19.446,10.756,14.276],[24.852,17.317,7.765,17.29,13.669,8.632,4.391,4.247,8.748,17.362,26.871,20.719,9.606,-2.506,11.352,18.358,15.044,13.883,9.675,13.2,10.962,-1.407,16.075,12.348,3.23,4.436,2.066,20.759,10.786,19.441,7.09,15.236,8.783,17.838,5.141,0.62,6.777,1.139,23.039,-7.067,2.308,8.765,22.586,11.093,-0.883,18.403,19.423,17.751,26.859,13.493,4.638,-1.186,6.116,24.222,22.936,10.176,11.824,12.513,10.908,6.254,17.316,5.742,14.023,18.908,17.056,18.58,10.087,18.031,9.135,-3.123,9.999,2.585,25.635,15.542,5.056,28.481,17.898,5.739,26.907,23.769,9.116,12.94,8.974,12.777,6.042,13.022,8.957,19.607,4.537,17.282,8.174,19.554,-0.632,11.318,9.803,11.508,20.078,14.638,16.653,2.303,10.695,13.015,11.279,16.539,13.498,-2.136,9.143,17.952,4.34,11.012,19.333,2.555,11.993,14.507,19.864,-1.642,16.658,5.416,19.625,12.86,0.367,11.715,6.197,2.332,19.868,1.609,8.834,13.408,8.089,7.11,8.319,17.313,14.925,16.422,2.798,25.09,5.972,-0.574,4.701,24.031,7.708,-0.536,9.659,22.232,1.015,8.399,26.856,7.692,17.836,1.468,-8.109,-5.44,17.926,21.104,28.281,-1.081,12.092,20.771,19.863,16.434,1.73,17.779,23.89,11.794,6.1,4.886,0.177,12.35,18.936,22.587,4.282,6.209,4.923,15.239,8.531,17.235,9.786,10.181,11.223,15.157,12.94,23.64,7.015,3.109,-0.448,5.594,11.007,16.397,22.887,19.086,10.887,14.159],[25.199,17.082,7.589,17.576,14.033,8.657,4.347,4.253,8.884,17.239,27.028,20.778,9.546,-2.616,11.357,18.376,15.261,14.068,9.608,13.076,11.041,-1.314,16.383,12.49,3.181,4.44,1.805,20.78,10.496,19.307,7.127,14.924,8.746,17.948,5.125,0.583,6.971,0.856,23.004,-7.171,2.375,8.756,22.607,11.114,-1.121,18.43,19.331,17.972,26.757,13.262,4.527,-1.279,6.025,24.204,22.988,10.153,11.748,12.516,10.932,6.152,17.169,5.881,14.214,18.816,17.066,18.467,10.02,18.191,9.226,-3.026,10.229,2.462,26.134,15.796,5.048,28.623,18.305,5.385,27.282,23.79,9.596,12.883,8.901,13.896,6.004,13.28,8.967,19.893,5.329,17.453,8.851,19.912,-0.869,11.584,9.649,11.655,19.935,14.768,16.883,2.259,10.683,12.786,11.342,16.875,13.34,-2.162,8.908,17.648,4.193,11.45,19.054,2.349,11.764,14.728,19.844,-1.297,16.731,5.453,19.574,12.757,0.129,11.687,6.199,2.165,20.168,1.265,8.525,13.755,7.498,6.758,8.425,17.606,13.913,16.193,2.567,25.006,6.069,-0.62,5.057,24.308,7.79,0.014,9.648,22.163,0.812,8.461,26.698,7.866,17.636,1.494,-8.357,-5.707,17.975,21.11,28.238,-1.056,12.067,20.545,19.902,16.502,1.951,17.544,24.001,11.564,5.989,4.883,-0.154,12.317,18.871,22.675,4.476,6.616,5.328,15.634,8.833,16.925,9.533,10.284,11.446,14.621,12.951,23.808,7.005,3.204,-0.47,5.124,11.134,16.645,22.591,18.976,10.45,14.283],[25.476,17.095,7.632,17.647,14.177,8.737,4.395,4.06,8.995,17.088,27.212,20.835,9.478,-2.649,11.292,18.245,15.263,14.052,9.729,13.009,11.03,-1.274,16.615,12.707,3.045,4.408,1.603,20.909,10.153,19.389,7.317,14.775,8.454,18.057,4.853,0.417,7.031,0.682,22.892,-7.177,2.336,8.665,22.708,11.167,-1.088,18.23,19.248,18.287,26.725,13.026,4.62,-1.286,5.995,24.075,22.856,10.172,11.743,12.539,10.839,6.202,17.129,6.141,14.276,18.874,16.968,18.463,10.19,18.348,9.855,-2.924,10.662,2.808,26.092,15.871,4.825,29.1,18.21,5.871,27.018,24.656,9.705,12.943,8.724,14.225,6.056,12.997,9.266,20.159,5.433,17.087,9.719,19.965,-0.875,11.778,10.035,12.044,19.812,14.606,17.025,1.682,10.577,12.594,11.407,17.014,13.879,-1.805,8.563,17.808,4.382,11.913,19.094,2.332,11.427,15.233,19.923,-0.58,17.259,5.508,19.421,12.851,-0.036,11.398,6.045,1.732,19.92,1.196,7.949,13.72,7.463,6.623,8.432,17.621,13.892,16.447,2.435,24.681,6.657,-0.712,4.769,24.081,7.591,-0.323,9.854,22.138,1.138,7.695,26.63,8.571,17.539,1.587,-8.061,-6.41,18.11,21.135,28.025,-0.906,12.455,20.477,19.814,16.624,1.805,17.519,23.674,11.27,6.206,4.801,-0.054,12.26,18.765,22.536,4.805,6.926,5.374,15.939,8.534,16.948,9.196,10.538,11.516,14.82,13.143,23.866,6.574,3.008,-1.158,4.95,11.237,16.382,22.665,19.426,10.14,14.208],[25.691,17.177,7.685,17.485,14.027,8.842,4.345,4.099,9.096,16.939,27.327,20.858,9.552,-2.585,11.361,18.001,15.19,14.133,9.877,13.003,11.064,-1.185,16.787,12.966,2.762,4.384,1.494,21.015,9.813,19.619,7.416,14.858,8.032,18.162,4.618,0.193,7.086,0.642,22.733,-7.036,2.366,8.336,22.696,11.367,-0.956,17.951,19.204,18.597,26.8,12.801,4.816,-1.214,5.883,23.818,22.615,10.147,11.773,12.515,10.742,6.264,17.117,6.359,14.31,19.043,16.95,18.405,10.279,18.772,9.444,-3.013,10.375,2.803,26.47,16.024,5.026,29.148,18.064,5.685,27.342,25.176,9.997,13.098,8.872,13.759,5.941,13.227,9.323,19.946,4.746,16.709,10.269,19.637,-0.718,11.023,10.189,12.312,19.721,14.611,17.271,1.347,10.409,12.439,11.486,16.488,14.281,-1.753,8.143,17.881,4.066,12.692,19.053,2.477,11.645,15.002,20.202,-0.522,17.402,5.758,19.777,12.947,-0.049,11.036,5.95,1.986,20.148,1.42,7.855,13.245,7.444,6.516,8.717,18.098,14.285,16.37,2.066,24.561,6.612,-0.754,4.257,24.115,7.193,-0.333,10.351,21.936,1.195,7.693,26.831,8.9,17.733,1.279,-8.503,-6.408,18.532,21.163,28.367,-1.117,12.463,20.56,19.555,16.827,1.7,17.633,23.018,11.067,6.186,5.085,0.221,12.456,18.934,23.01,4.981,6.891,5.173,15.707,8.554,17.593,9.141,10.413,11.097,15.237,12.765,23.604,6.504,3.128,-1.056,5.48,10.98,16.471,22.535,19.703,10.434,14.249],[25.92,17.211,7.665,17.433,13.877,8.878,4.134,4.265,9.073,16.8,27.455,20.738,9.652,-2.483,11.278,17.836,15.267,14.262,9.856,13.086,11.174,-1.125,16.931,13.246,2.565,4.29,1.742,21.233,9.543,19.762,7.527,14.867,7.863,18.174,4.476,0.07,7.137,0.763,22.519,-6.878,2.376,8.113,22.556,11.605,-1.045,17.9,19.36,18.797,27.079,12.573,4.788,-0.926,5.823,23.499,22.446,9.946,11.78,12.599,10.673,6.254,17.216,6.209,14.285,19.282,16.696,18.325,10.166,18.95,9.357,-3.118,9.742,2.653,27.152,15.951,4.508,29.111,18.239,5.256,27.329,24.98,9.956,13.129,8.667,13.129,5.844,12.96,9.167,19.865,4.78,16.737,10.825,19.629,-0.641,10.994,9.8,12.161,19.517,14.496,17.1,0.877,10.476,12.721,11.538,16.873,13.959,-2.147,8.042,17.377,4.294,13.368,19.41,2.184,11.526,14.845,20.163,-1.034,16.927,6.062,19.962,12.934,0.006,10.956,6.073,2.087,20.659,0.953,7.924,13.461,6.921,6.102,9.068,18.41,14.322,16.342,2.338,24.431,6.275,-0.994,4.34,24.406,7.177,-0.126,10.985,21.818,0.781,7.473,27.025,8.756,17.469,1.395,-8.463,-5.764,18.978,21.343,28.528,-0.779,12.489,20.548,19.408,17.165,1.809,17.628,22.726,10.746,5.872,4.945,-0.111,12.963,18.704,22.43,4.869,6.738,5.548,15.55,8.582,17.786,9.477,10.172,10.77,15.079,12.302,23.597,6.628,3.162,-0.223,5.713,10.953,16.964,22.252,19.18,10.783,14.325],[26.146,17.229,7.604,17.567,13.737,8.837,3.898,4.365,8.946,16.733,27.516,20.665,9.7,-2.403,11.143,17.735,15.515,14.404,9.732,13.022,11.324,-1.266,16.815,13.374,2.401,4.323,1.978,21.316,9.42,19.836,7.564,14.794,7.794,18.148,4.451,-0.042,7.09,0.899,22.366,-6.701,2.32,8.065,22.571,11.768,-1.097,17.994,19.498,18.941,27.342,12.331,4.526,-0.678,5.769,23.28,22.264,9.774,11.839,12.782,10.643,6.195,17.305,5.936,14.29,19.37,16.696,18.015,10.113,19.092,9.609,-2.533,10.308,2.437,27.234,16.071,4.322,29.134,18.2,5.144,27.148,24.617,9.728,12.975,8.381,12.92,5.839,13.108,9.36,20.185,4.912,16.812,10.667,19.471,-0.574,11.548,9.28,12.152,19.448,14.724,17.171,0.995,11.204,12.874,11.314,16.977,14.135,-2.013,8.125,17.125,4.47,13.706,19.208,1.743,11.61,15.189,20.177,-1.182,17.271,5.972,20.066,13.27,0.444,10.96,6.105,2.462,20.321,0.644,8.019,13.655,6.412,6.132,8.996,17.749,13.689,16.429,2.567,24.167,5.871,-0.865,4.906,24.266,7.311,-0.385,11.451,21.811,0.898,7.593,26.976,8.812,17.297,1.501,-7.976,-5.327,19.283,21.413,28.848,-1.269,12.981,20.623,19.503,17.249,1.815,17.722,22.935,10.667,5.82,4.704,0.165,12.905,18.842,22.289,4.427,6.767,5.372,15.556,8.209,17.647,9.596,9.789,10.73,15.322,12.43,23.129,6.704,2.782,0.46,5.308,11.083,16.809,22.311,19.455,10.478,14.369],[26.334,17.141,7.536,17.875,13.663,8.822,3.707,4.294,8.779,16.717,27.467,20.844,9.825,-2.316,11.172,17.708,15.689,14.6,9.621,12.883,11.717,-1.455,16.542,13.478,2.174,4.554,2.075,21.167,9.388,19.692,7.489,14.572,7.693,18.011,4.615,-0.131,6.965,0.996,22.275,-6.497,2.219,8.138,22.681,11.935,-1.167,18.095,19.566,19.084,27.404,12.281,4.197,-0.416,5.68,23.13,22.126,9.73,11.913,12.865,10.676,6.002,17.381,5.756,14.396,19.288,17.108,18.028,9.93,18.98,9.427,-2.344,10.445,2.745,26.769,16.152,4.684,29.257,17.908,5.679,26.783,24.625,9.564,12.791,8.291,13.203,5.63,13.357,8.981,20.733,4.728,16.774,9.913,19.431,-0.901,11.09,9.177,12.296,19.309,14.9,16.961,1.525,10.998,13.027,11.404,16.973,14.183,-1.766,7.875,17.467,4.453,13.98,19.029,1.98,12.043,15.07,20.371,-1.013,17.242,5.806,19.764,13.433,0.513,10.825,6.273,2.845,20.408,1.078,7.996,13.646,6.349,6.055,8.844,17.353,13.458,16.578,2.29,24.175,5.989,-0.505,4.9,24.194,7.06,-0.386,11.941,21.845,1.257,7.895,27.483,8.829,17.802,1.102,-7.818,-5.096,19.537,21.422,28.894,-1.138,12.618,20.832,19.763,17.297,1.55,17.902,23.19,10.509,5.575,5.009,0.891,12.75,18.898,22.786,4.276,6.575,4.715,15.718,8.511,17.425,9.369,9.802,10.585,15.41,12.156,22.718,6.453,2.652,0.395,5.137,11.383,16.831,22.264,19.813,10.302,14.757],[26.474,17.07,7.409,18.001,13.791,8.68,3.621,4.274,8.534,16.76,27.334,21.123,9.963,-2.262,11.147,17.785,15.672,14.812,9.653,12.667,11.852,-1.518,16.416,13.738,1.953,4.86,2.017,20.939,9.438,19.519,7.386,14.316,7.495,17.861,4.665,-0.012,6.866,1.14,22.347,-6.377,2.066,8.29,22.88,12.058,-1.16,18.231,19.513,19.224,27.376,12.243,3.978,-0.088,5.587,22.989,22.07,9.773,11.999,12.935,10.628,5.853,17.498,5.618,14.449,19.123,17.067,18.54,9.952,19.128,9.163,-2.575,10.101,3.18,26.725,16.504,4.461,28.881,17.893,5.987,26.985,24.8,9.583,12.96,8.346,13.721,5.674,12.857,9.136,21.06,4.447,16.456,9.675,20.063,-0.949,10.871,9.55,12.568,19.42,14.625,16.505,2.406,11.17,13.03,11.32,17.179,14.045,-2.427,7.766,17.592,4.323,14.062,19.339,1.996,11.938,14.929,19.981,-1.282,17.068,5.808,19.665,13.822,0.097,10.649,6.754,2.548,20.429,0.942,8.201,13.27,6.46,6.502,8.753,18.01,13.594,16.126,2.566,24.278,6.13,-1.159,4.576,24.437,6.823,-0.074,11.85,21.811,1.735,8.118,27.971,8.553,17.558,1.157,-7.945,-5.181,19.851,21.361,28.473,-0.651,13.015,20.694,19.663,17.596,1.063,17.789,22.981,10.569,5.296,5.313,1.114,13.285,19.225,22.615,4.325,6.105,4.81,15.813,8.321,17.529,9.563,10.086,10.509,15.456,12.093,22.658,6.284,2.352,0.181,5.05,11.548,16.577,21.992,19.441,10.612,14.537],[26.582,17.117,7.34,17.879,13.998,8.544,3.584,4.268,8.397,16.875,27.199,21.227,9.996,-2.255,11.116,17.798,15.492,14.949,9.755,12.378,11.703,-1.588,16.515,14.185,1.857,5.052,1.754,20.735,9.594,19.52,7.251,14.135,7.373,17.732,4.868,0.01,6.736,1.376,22.448,-6.497,2.019,8.507,23.057,12.216,-1.006,18.222,19.252,19.446,27.439,12.176,3.896,0.108,5.604,22.752,22.095,9.742,12.073,12.95,10.606,5.721,17.574,5.529,14.519,19.019,16.455,18.179,9.624,19.134,9.52,-2.828,10.439,3.135,26.955,16.813,4.102,28.825,18.317,5.962,26.994,24.888,9.582,12.873,8.147,13.512,5.595,13.028,9.002,20.952,4.487,16.989,10.348,20.582,-0.697,11.255,9.916,12.746,19.565,14.597,17.095,2.986,11.159,13.395,11.183,16.753,14.139,-2.578,8.031,17.455,4.537,13.951,19.09,1.496,11.244,15.364,19.234,-1.33,17.092,5.745,19.714,13.713,0.388,10.914,6.804,2.891,20.497,1.011,7.934,12.969,6.48,6.423,8.955,18.529,13.404,16.017,2.905,24.171,6.093,-1.214,4.088,24.669,7.186,0.109,11.741,21.857,1.79,7.7,27.636,8.411,17.745,1.101,-8.207,-5.599,19.862,21.732,28.454,-0.755,13.249,20.409,19.788,17.653,1.306,17.536,22.727,10.631,5.071,4.784,1.022,13.713,19.36,22.425,4.109,6.344,4.962,15.764,8.192,17.555,9.435,9.935,10.614,15.591,12.183,22.678,6.119,2.157,0.558,4.876,11.658,17.06,21.289,18.97,10.503,14.57],[26.642,17.171,7.271,17.827,14.114,8.446,3.524,4.256,8.504,16.988,27.194,21.013,10.139,-2.185,11.201,17.765,15.317,15.051,9.796,12.17,11.56,-1.618,16.735,14.572,1.905,5.065,1.93,20.575,9.807,19.542,7.228,14.037,7.402,17.63,5.141,-0.028,6.637,1.52,22.401,-6.846,2.079,8.545,23.131,12.368,-0.86,18.237,18.944,19.62,27.499,12.166,3.801,0.162,5.607,22.505,22.023,9.666,11.989,13.022,10.578,5.69,17.574,5.334,14.556,18.926,16.703,18.164,9.325,19.085,9.355,-3.172,10.568,2.445,27.138,16.452,4.507,28.902,18.251,5.492,26.511,24.771,9.452,12.784,7.925,13.203,5.62,13.836,8.897,20.989,4.487,17.162,11.051,19.986,-0.539,11.324,9.541,13.006,19.537,14.426,17.029,3.067,10.549,13.848,11.358,16.775,13.706,-2.05,8.187,17.263,4.747,14.085,19.11,1.469,11.187,15.886,19.187,-1.338,17.107,5.625,19.824,13.277,0.673,11.078,6.86,2.972,20.642,0.522,7.535,12.981,6.581,6.84,8.59,18.326,13.138,15.841,3.105,24.174,6.084,-0.65,4.486,24.78,7.694,0.007,12.11,21.826,1.481,7.947,27.468,8.419,17.832,1.113,-8.244,-5.718,19.868,21.995,28.869,-0.466,13.08,20.205,19.582,17.749,1.419,17.231,22.467,10.199,5.057,4.532,0.902,13.24,19.184,23.164,4.088,6.351,4.502,15.765,8.089,17.373,9.137,9.992,10.964,15.543,12.289,22.652,6.17,2.014,1.07,5.069,11.606,17.512,21.481,19.12,10.451,14.51],[26.525,17.276,7.194,18.039,14.19,8.365,3.49,4.144,8.554,16.898,27.213,20.641,10.372,-2.08,11.289,17.802,15.235,15.153,9.777,12.207,11.435,-1.614,16.857,14.682,2.049,5.05,2.281,20.576,9.746,19.627,7.123,13.951,7.442,17.479,5.508,-0.063,6.721,1.52,22.292,-7.121,2.114,8.557,23.167,12.48,-0.733,18.249,18.712,19.714,27.608,12.047,3.657,0.251,5.617,22.363,22.0,9.703,11.859,12.982,10.484,5.768,17.504,5.15,14.515,18.848,17.651,18.59,9.714,18.858,9.353,-2.68,10.226,2.433,27.488,16.69,4.439,28.686,17.846,4.976,26.334,24.883,9.534,13.064,8.217,13.652,5.461,13.814,9.071,21.01,4.565,16.855,11.472,19.426,-0.444,11.382,9.922,13.042,19.142,14.081,17.034,2.841,10.489,13.973,11.47,16.776,13.859,-2.213,8.14,17.354,5.295,14.61,19.136,2.123,11.442,15.569,19.431,-1.494,17.514,5.358,19.576,12.994,0.611,10.827,6.683,2.835,20.322,1.137,7.725,13.155,6.445,7.294,8.402,17.386,12.841,15.795,3.157,24.005,5.915,-1.271,5.233,24.819,7.225,0.18,12.352,21.729,1.696,8.14,27.571,8.398,17.686,1.383,-8.878,-5.95,20.42,21.684,28.756,-0.41,13.183,19.894,19.771,17.871,1.585,16.889,22.413,10.237,4.771,5.035,0.789,12.851,19.234,22.734,4.223,6.346,4.186,15.795,8.209,17.268,9.23,10.143,11.148,15.358,12.252,21.944,6.479,1.893,1.517,5.063,11.478,16.953,22.585,18.993,10.207,14.671],[26.382,17.424,7.142,18.208,14.264,8.438,3.439,4.002,8.607,16.722,27.19,20.364,10.562,-1.917,11.321,17.874,15.293,15.136,9.965,12.48,11.399,-1.738,16.854,14.696,2.342,5.179,2.466,20.588,9.484,19.589,6.874,13.81,7.469,17.348,5.814,-0.092,6.885,1.65,22.108,-7.34,2.15,8.562,23.084,12.562,-0.602,18.247,18.582,19.924,27.761,11.857,3.433,0.347,5.678,22.279,22.075,9.912,11.692,12.856,10.419,5.808,17.369,5.18,14.465,18.784,17.702,18.08,10.023,19.251,9.48,-2.076,10.715,2.165,27.519,16.937,3.762,28.705,18.086,5.185,26.268,24.698,9.494,13.151,8.333,14.26,5.501,13.007,8.49,20.592,4.682,16.473,10.952,19.47,-0.601,11.26,10.22,13.15,19.367,14.519,17.302,2.398,10.63,13.718,11.622,16.827,14.305,-2.365,7.785,17.712,5.081,14.638,19.309,2.075,11.147,15.668,19.278,-1.268,17.626,5.346,19.695,13.185,0.776,10.649,6.854,3.319,20.578,1.113,7.985,12.877,6.418,7.535,7.72,16.205,12.93,16.122,3.224,23.733,6.066,-1.201,4.992,24.64,6.862,0.271,11.899,21.855,2.241,8.17,27.549,8.752,17.792,1.624,-9.0,-6.365,20.352,21.444,28.815,-0.758,13.456,19.709,19.974,18.038,1.277,16.837,22.487,10.288,4.417,5.474,0.907,13.043,19.005,22.497,4.01,6.128,4.032,15.909,8.523,17.296,9.22,9.662,11.512,15.223,11.4,22.449,6.551,1.653,1.76,5.003,11.489,16.295,22.881,18.852,10.083,14.506],[26.207,17.575,7.074,18.308,14.22,8.401,3.327,3.894,8.733,16.732,27.145,20.237,10.684,-1.723,11.234,18.001,15.428,15.089,10.281,12.485,11.429,-1.846,16.798,14.73,2.647,5.388,2.585,20.557,9.283,19.658,6.57,13.655,7.443,17.245,5.893,-0.1,7.137,1.972,22.047,-7.594,2.118,8.56,22.882,12.532,-0.516,18.37,18.628,20.131,27.859,11.564,3.232,0.382,5.824,22.322,22.166,10.156,11.528,12.804,10.389,5.793,17.154,5.224,14.459,18.719,16.81,17.84,9.733,19.673,9.421,-1.79,10.944,2.595,26.643,16.925,4.034,28.962,18.422,5.531,26.554,24.794,9.861,12.865,8.308,14.451,5.536,13.204,8.339,19.802,4.164,16.667,10.696,19.802,-0.671,11.377,10.018,13.445,19.628,14.726,17.365,1.894,10.223,13.643,11.939,17.154,13.773,-2.398,7.695,17.803,4.49,14.347,19.096,2.082,11.353,15.829,19.09,-1.315,17.368,4.849,19.981,13.103,0.818,10.693,7.303,3.752,20.641,0.741,7.612,12.15,6.808,7.545,7.269,16.468,12.883,16.09,3.796,23.628,7.15,-1.038,4.851,24.515,7.113,0.15,11.924,21.551,2.137,8.142,27.617,8.819,17.694,1.249,-9.036,-6.146,20.063,21.638,28.937,-0.542,13.625,19.61,19.719,18.38,1.24,16.831,22.608,9.911,4.132,5.093,1.376,12.894,18.802,23.472,4.005,5.841,4.452,15.932,8.627,17.242,9.004,9.696,11.61,15.264,11.086,21.893,6.235,1.374,1.774,5.034,11.55,16.26,22.37,18.67,10.016,13.974],[25.898,17.65,7.043,18.372,14.163,8.303,3.225,3.962,8.774,16.953,27.113,20.241,10.734,-1.533,11.158,18.125,15.478,15.133,10.44,12.211,11.41,-1.812,16.69,14.76,2.803,5.528,2.612,20.488,9.222,19.823,6.168,13.562,7.333,17.175,6.011,-0.111,7.406,2.237,21.949,-7.726,2.04,8.567,22.831,12.464,-0.513,18.461,18.673,20.171,27.824,11.311,3.27,0.435,5.943,22.204,22.194,10.271,11.535,12.639,10.269,5.752,16.916,5.295,14.655,18.637,17.142,18.376,9.722,19.931,9.753,-1.531,10.582,2.771,26.19,17.341,4.234,28.858,18.055,5.632,26.624,25.041,9.55,12.823,7.76,13.917,5.571,13.622,9.189,20.124,3.857,17.181,11.073,19.253,-0.726,11.452,10.01,14.011,19.483,14.391,17.06,1.763,10.263,13.921,12.123,17.051,13.974,-2.604,7.66,17.458,4.68,14.177,19.504,2.61,11.58,15.399,19.303,-1.979,17.154,4.662,19.727,13.207,1.325,10.47,7.268,3.947,20.566,1.026,7.407,12.372,6.224,7.729,7.377,17.148,12.691,15.373,3.838,23.647,7.478,-0.965,5.353,24.451,7.644,0.695,12.143,21.52,2.228,7.769,27.8,9.284,17.905,0.801,-9.524,-6.541,20.124,21.305,28.958,-0.329,13.217,19.751,19.893,18.469,1.587,16.795,22.372,9.852,3.814,5.37,1.225,12.992,18.645,23.248,4.045,6.201,4.619,15.751,8.482,16.981,8.585,10.386,11.47,15.373,11.023,21.265,6.178,1.433,1.735,4.947,11.154,16.897,22.578,18.832,9.903,14.035],[25.528,17.57,7.11,18.387,14.128,8.317,3.21,4.196,8.784,17.153,27.044,20.365,10.692,-1.363,11.136,18.224,15.398,15.233,10.459,12.229,11.39,-1.832,16.496,14.912,2.888,5.554,2.708,20.448,9.155,19.969,5.96,13.63,7.089,16.995,6.348,-0.059,7.671,2.393,21.81,-7.861,2.026,8.609,22.831,12.442,-0.532,18.595,18.61,20.162,27.786,11.162,3.408,0.406,6.019,21.89,22.237,10.361,11.572,12.463,10.083,5.659,16.795,5.3,14.777,18.482,18.233,18.507,10.015,20.189,9.729,-1.089,10.488,2.579,26.508,17.838,3.788,28.7,18.306,5.707,26.552,24.781,8.995,13.005,7.902,13.382,5.384,13.436,9.681,20.662,3.994,17.094,11.559,19.353,-1.084,11.139,10.601,14.154,19.547,14.239,16.862,1.775,10.762,14.037,11.982,16.983,14.141,-2.081,7.724,17.25,5.125,14.061,19.871,2.426,10.982,15.437,19.119,-2.127,17.337,4.353,19.313,13.108,1.376,10.341,7.431,3.728,20.809,0.948,7.73,13.023,5.772,7.664,7.577,17.672,12.502,15.277,3.919,23.535,6.737,-1.011,5.584,24.322,7.046,0.377,12.176,21.696,2.864,7.955,27.809,9.399,17.896,1.072,-9.559,-6.946,20.463,21.107,28.921,-0.74,13.245,19.756,20.19,18.323,1.241,16.954,22.351,9.544,4.166,5.994,0.867,12.829,18.522,22.461,4.223,5.627,4.209,16.305,8.457,17.242,8.613,10.4,11.214,15.329,10.781,21.499,6.51,1.662,1.986,4.843,10.813,16.554,22.592,18.648,10.205,14.28],[25.309,17.637,7.229,18.503,14.096,8.48,3.145,4.453,8.891,17.234,27.035,20.626,10.579,-1.23,11.103,18.291,15.338,15.271,10.451,12.441,11.373,-1.804,16.353,15.166,2.862,5.575,2.767,20.274,9.125,20.135,5.971,13.79,6.876,16.935,6.61,-0.025,7.61,2.522,21.787,-7.942,1.961,8.593,22.755,12.498,-0.666,18.735,18.596,20.193,27.791,10.946,3.56,0.263,6.16,21.629,22.227,10.449,11.536,12.442,9.912,5.327,16.693,5.134,14.856,18.357,18.108,18.332,9.873,20.332,9.512,-0.482,10.157,2.676,26.187,17.304,4.097,28.768,18.221,5.611,26.306,23.983,9.198,12.75,8.236,12.987,5.652,13.347,8.834,20.347,3.617,17.048,11.377,19.823,-2.018,10.969,10.702,14.049,19.616,14.38,17.119,1.957,10.532,14.18,12.191,16.909,13.782,-2.068,7.805,17.566,5.634,14.286,19.294,2.473,11.113,16.261,19.049,-1.781,17.112,4.501,19.381,13.151,1.304,10.473,7.004,3.67,20.879,0.516,7.897,13.344,5.773,8.059,7.476,17.549,12.553,15.185,4.176,23.465,6.687,-1.37,5.724,24.429,7.007,0.303,12.218,21.454,2.696,8.254,27.292,9.451,17.856,1.399,-9.509,-6.886,20.672,21.399,29.038,-0.771,13.57,19.658,20.232,18.373,1.355,16.77,22.239,9.375,4.765,6.259,1.05,12.448,18.449,22.598,4.34,5.806,3.99,16.608,8.757,17.048,8.964,10.146,11.417,15.169,10.78,21.64,6.543,1.898,1.742,5.117,10.365,15.922,22.593,18.298,10.452,14.051],[25.154,17.82,7.374,18.641,13.982,8.594,3.036,4.585,9.073,17.216,27.028,20.944,10.338,-1.178,10.907,18.33,15.332,15.328,10.556,12.682,11.23,-1.715,16.304,15.422,2.753,5.625,2.708,20.01,9.165,20.143,6.219,13.937,6.756,16.984,6.811,-0.157,7.481,2.635,21.823,-7.976,1.984,8.637,22.761,12.465,-0.74,18.715,18.591,20.225,27.773,10.748,3.743,0.056,6.425,21.512,22.176,10.54,11.392,12.425,9.795,5.051,16.607,5.063,15.037,18.282,17.617,18.311,9.883,20.156,9.43,0.151,10.025,2.945,25.906,17.297,3.902,28.737,18.436,6.041,26.282,23.735,9.879,12.686,8.275,13.432,5.874,13.225,8.706,20.375,3.208,17.254,10.823,19.905,-2.784,11.207,10.263,13.791,19.845,14.578,16.886,2.38,10.665,14.408,12.264,17.034,13.963,-2.494,7.48,18.108,5.778,14.922,19.946,3.013,11.703,16.78,18.61,-1.384,16.883,4.901,19.475,13.09,1.017,10.389,7.355,3.362,20.735,0.983,7.694,13.292,5.454,8.391,7.173,16.846,12.911,15.249,4.359,23.393,6.971,-1.124,5.761,24.478,7.408,0.639,11.701,21.272,2.727,8.026,26.978,9.269,17.992,0.911,-9.719,-6.749,20.65,21.446,28.967,-0.509,13.496,19.649,20.308,18.376,1.141,16.692,21.089,8.922,4.842,6.014,0.858,12.388,17.938,22.787,3.815,5.21,4.259,16.427,8.831,16.612,8.775,10.044,11.318,15.353,10.848,21.065,6.321,2.084,1.395,4.804,10.119,15.913,22.519,18.571,10.458,14.052],[25.192,18.04,7.444,18.642,13.755,8.645,2.902,4.63,9.065,17.153,27.064,21.111,10.026,-1.282,10.944,18.404,15.457,15.448,10.604,12.875,10.975,-1.586,16.244,15.48,2.701,5.687,2.453,19.853,9.142,20.004,6.553,13.978,6.692,16.909,6.94,-0.3,7.432,2.838,21.736,-8.006,1.889,8.74,22.87,12.289,-0.524,18.657,18.679,20.191,27.62,10.624,3.836,-0.08,6.481,21.359,22.178,10.455,11.295,12.446,9.77,4.72,16.487,5.139,15.1,18.264,17.993,18.799,10.338,20.382,9.8,0.146,9.985,3.328,25.823,17.675,3.522,28.778,18.666,6.254,26.046,23.821,9.752,12.772,8.42,14.037,5.934,12.847,9.461,21.238,3.489,17.275,10.817,20.519,-2.688,10.775,10.277,13.803,20.034,14.58,17.001,3.051,10.324,14.546,12.4,17.074,14.31,-2.241,7.587,17.86,5.373,15.442,19.968,2.443,11.871,16.547,18.576,-0.99,16.97,4.953,19.139,12.843,0.973,10.521,7.494,3.501,21.163,1.261,7.478,13.178,5.345,8.336,7.04,16.042,12.756,15.733,4.421,23.468,7.024,-1.455,6.08,24.346,7.675,0.685,11.961,21.437,3.074,8.096,27.478,9.26,17.954,0.941,-9.654,-6.982,20.511,21.195,28.764,-0.686,13.22,19.711,20.119,18.353,1.189,16.994,20.294,9.198,4.963,6.113,0.601,12.734,18.241,22.44,4.002,5.381,4.233,16.655,8.643,16.889,8.314,10.286,11.301,15.539,10.589,20.909,6.8,2.06,1.233,4.548,10.052,16.42,22.204,18.622,10.128,14.264],[25.345,18.318,7.498,18.575,13.533,8.667,2.808,4.664,9.003,17.189,27.034,21.365,9.923,-1.332,11.173,18.45,15.591,15.553,10.768,12.998,10.836,-1.336,16.237,15.418,2.705,5.473,2.485,19.863,9.175,19.887,6.666,13.953,6.708,16.739,7.056,-0.512,7.429,3.026,21.649,-8.08,1.743,8.89,22.857,12.171,-0.415,18.663,18.89,20.146,27.527,10.55,3.86,-0.061,6.358,21.259,22.053,10.319,11.177,12.522,9.846,4.408,16.643,5.362,15.104,18.328,18.528,18.722,10.143,20.381,10.101,0.016,10.127,3.313,25.918,17.583,3.267,28.883,18.613,6.269,26.498,23.967,9.076,12.988,8.332,13.947,5.781,13.057,9.618,21.294,3.24,17.319,10.686,20.401,-2.94,10.72,10.149,13.551,19.696,14.232,16.846,3.465,9.579,14.808,12.26,17.118,14.527,-1.584,7.892,17.145,4.923,15.454,19.274,2.29,12.202,15.887,18.693,-1.445,16.778,5.362,19.105,12.534,0.653,10.658,6.946,3.425,21.1,0.296,7.382,13.05,5.524,8.302,7.493,15.335,12.663,15.69,4.625,23.361,7.097,-1.55,6.246,24.41,7.445,0.743,11.602,21.548,3.242,8.677,27.342,9.167,17.851,1.564,-9.877,-7.031,20.644,21.269,28.705,-0.124,12.724,19.773,20.318,18.33,0.99,17.1,19.995,9.212,4.696,6.719,0.766,12.862,18.267,22.518,4.229,5.517,4.304,16.336,8.496,16.972,8.495,10.167,11.16,15.364,10.886,21.045,7.029,2.225,1.358,4.351,10.435,16.848,22.299,18.714,9.75,14.18],[25.524,18.556,7.509,18.379,13.523,8.542,2.676,4.649,8.985,17.225,27.068,21.555,10.033,-1.38,11.348,18.32,15.598,15.519,10.847,13.138,10.625,-1.092,16.21,15.218,2.748,4.969,2.548,19.981,9.292,19.834,6.701,13.896,6.727,16.453,7.203,-0.887,7.346,3.158,21.691,-8.289,1.793,9.03,22.872,12.085,-0.361,18.682,19.039,20.134,27.554,10.504,3.865,0.151,6.194,21.265,21.849,10.165,11.185,12.671,10.039,4.141,16.898,5.575,14.962,18.378,18.791,18.786,9.838,20.051,9.656,-0.088,10.156,3.052,25.883,17.377,3.208,28.824,19.104,6.051,27.024,23.949,9.693,13.155,7.877,13.206,5.734,12.666,9.268,21.274,3.034,17.347,10.432,20.286,-2.839,11.235,10.521,14.201,19.867,14.234,16.474,3.012,9.991,15.201,12.558,17.227,14.604,-1.869,7.797,17.175,4.813,14.694,19.595,3.361,12.156,16.12,18.59,-1.585,16.926,5.451,19.288,12.401,1.328,10.908,6.739,2.771,20.489,0.248,7.802,12.865,5.392,8.614,7.721,15.417,12.932,15.377,4.808,23.115,6.953,-1.538,6.323,24.576,7.643,0.995,11.966,21.093,3.286,8.687,26.932,9.145,17.836,0.888,-9.73,-7.077,20.489,21.566,28.676,-0.565,12.419,19.843,20.286,18.453,0.792,17.174,19.907,9.264,4.588,7.588,0.898,12.704,18.602,22.563,4.413,4.892,4.757,16.402,8.381,16.972,8.791,9.933,10.714,15.358,11.371,21.462,6.772,2.361,1.328,4.27,10.27,16.562,22.348,19.021,9.885,14.292],[25.513,18.788,7.37,18.248,13.498,8.521,2.489,4.552,8.905,17.242,27.189,21.701,10.114,-1.405,11.497,18.254,15.499,15.532,10.747,13.135,10.459,-1.044,16.081,15.074,2.929,4.439,2.646,20.107,9.666,19.83,6.663,13.83,6.767,16.199,7.492,-1.174,7.077,3.339,21.686,-8.416,1.844,9.283,23.008,12.112,-0.443,18.759,19.115,20.107,27.579,10.621,3.95,0.13,6.242,21.342,21.695,9.8,11.285,12.834,10.322,3.883,17.041,5.666,14.879,18.454,18.638,18.965,9.949,19.504,9.764,-0.031,10.233,2.713,26.239,16.92,3.417,29.094,19.471,5.864,26.849,23.916,9.744,13.009,7.879,12.676,5.858,12.855,9.198,21.293,3.098,17.546,10.713,20.83,-2.822,11.397,10.665,14.581,19.973,14.688,16.792,2.568,10.025,14.966,12.542,16.987,14.046,-1.893,8.013,17.72,4.673,14.24,19.72,2.993,12.373,16.653,18.492,-0.979,17.123,5.067,19.31,12.253,0.841,10.753,6.215,3.347,20.705,0.359,7.83,12.964,5.139,8.864,7.627,15.976,12.586,14.58,5.017,23.319,6.773,-2.219,6.319,24.539,8.085,0.972,12.316,21.099,3.03,8.329,27.38,8.913,17.82,0.886,-10.096,-7.261,20.171,21.473,28.722,-0.708,13.121,19.932,20.325,18.295,0.814,17.456,20.078,9.166,4.485,7.482,0.902,12.974,18.936,21.976,4.383,5.154,4.885,16.596,8.105,17.231,8.766,9.898,11.095,15.253,11.245,21.847,6.135,2.164,1.453,4.278,10.105,16.438,22.233,18.794,10.085,14.561],[25.538,19.066,7.224,18.045,13.373,8.634,2.385,4.265,8.931,17.264,27.295,21.875,10.139,-1.461,11.487,18.303,15.342,15.6,10.505,12.939,10.389,-1.003,15.993,14.977,3.053,4.064,2.808,20.066,10.074,20.002,6.484,13.73,6.687,16.017,7.775,-1.34,6.782,3.354,21.736,-8.523,1.968,9.493,23.059,12.385,-0.522,18.859,19.139,19.892,27.596,10.664,4.056,-0.169,6.337,21.481,21.578,9.447,11.42,13.001,10.538,3.819,17.058,5.677,15.029,18.559,18.38,19.173,10.267,19.533,9.559,0.217,10.66,2.997,26.105,16.782,3.421,29.05,19.372,5.823,26.618,24.271,9.677,13.232,8.397,12.971,5.714,13.046,9.45,21.152,2.93,16.93,11.225,21.267,-2.403,11.468,10.28,15.022,19.849,14.503,16.669,2.699,9.513,15.09,12.25,17.197,14.417,-1.8,8.479,18.018,4.064,14.52,19.29,2.75,11.762,16.734,18.602,-0.691,16.565,5.044,19.527,12.335,0.814,11.334,5.729,3.11,20.5,-0.215,7.542,12.91,5.382,8.896,6.924,15.885,12.42,14.281,5.081,23.321,6.503,-2.043,6.62,24.634,8.307,0.529,11.624,21.557,3.528,8.968,27.53,8.611,17.691,1.509,-10.236,-7.408,20.273,21.615,28.626,-0.168,13.503,20.16,20.358,18.086,0.814,17.394,20.433,9.19,4.804,6.95,0.521,13.194,18.868,21.794,4.551,5.018,4.596,16.621,8.125,17.57,9.052,9.88,11.145,14.852,11.664,21.828,5.908,2.225,1.435,4.115,9.909,16.908,22.317,18.723,10.749,14.741],[25.545,19.243,7.359,17.801,13.328,8.906,2.451,4.051,9.0,17.139,27.36,22.02,10.338,-1.393,11.414,18.37,15.419,15.735,10.311,12.798,10.445,-1.042,15.867,14.902,2.96,3.734,2.96,20.003,10.3,20.068,6.209,13.797,6.543,15.847,7.802,-1.392,6.625,3.26,21.867,-8.616,2.183,9.637,23.069,12.591,-0.422,18.806,19.066,19.584,27.537,10.754,4.196,-0.595,6.335,21.679,21.558,9.281,11.541,13.05,10.567,3.781,17.096,5.773,15.067,18.706,18.951,18.936,10.414,19.564,9.552,0.256,10.315,2.965,26.425,17.124,3.037,29.114,19.001,5.898,26.331,24.595,9.937,13.252,8.281,13.324,5.656,12.483,9.451,21.099,2.792,16.789,11.257,21.258,-2.456,11.037,10.173,15.605,19.95,14.223,16.267,3.006,9.4,15.536,12.104,17.018,14.483,-1.703,8.827,17.559,3.542,14.7,20.066,3.367,11.791,16.458,18.787,-0.478,16.288,5.012,19.052,12.103,1.646,11.752,5.607,2.996,20.763,-0.518,7.64,12.696,5.137,8.892,6.014,15.662,12.658,14.264,4.672,23.367,6.606,-2.2,7.267,24.856,8.038,0.725,11.209,21.592,3.727,9.613,27.464,8.482,17.775,1.758,-10.282,-7.486,20.156,21.735,28.792,-0.62,13.681,19.956,20.263,17.874,1.173,17.253,20.829,8.989,4.904,6.632,0.186,13.463,18.924,22.024,4.81,4.548,4.762,16.548,8.264,17.559,9.473,10.13,10.842,14.851,11.548,21.51,6.789,2.584,0.755,3.885,9.84,16.506,22.163,19.211,10.989,14.686],[25.723,19.266,7.643,17.758,13.286,9.083,2.622,3.929,8.999,16.949,27.384,22.087,10.479,-1.328,11.296,18.409,15.575,15.753,10.246,12.803,10.49,-1.056,15.731,14.852,2.919,3.534,3.251,19.851,10.329,20.148,5.945,13.98,6.406,15.698,7.768,-1.357,6.589,3.184,21.921,-8.675,2.339,9.662,23.001,12.674,-0.338,18.841,18.918,19.489,27.477,10.796,4.291,-1.006,6.409,21.872,21.687,9.266,11.492,13.026,10.546,3.557,17.026,5.98,14.858,18.879,19.552,18.697,10.013,19.387,10.129,0.135,10.37,2.881,26.421,16.644,2.79,29.251,19.268,5.768,27.113,24.36,10.326,13.053,8.142,13.16,5.964,12.458,9.638,21.398,3.096,17.256,11.35,21.083,-2.732,10.951,10.231,15.547,19.915,14.527,16.324,2.917,9.585,15.973,12.021,17.096,14.45,-2.101,8.96,17.465,3.059,14.802,20.232,3.064,11.571,16.531,18.895,-0.962,16.332,5.081,18.589,12.267,1.492,11.969,5.253,3.415,21.208,-0.315,7.673,12.92,4.953,8.768,5.875,15.271,12.838,14.248,4.733,23.472,7.217,-2.163,7.316,24.641,8.156,1.014,11.509,21.544,3.406,9.79,27.291,8.08,17.98,1.414,-10.281,-7.306,19.532,21.703,28.584,-0.366,13.971,19.633,20.412,17.671,1.118,17.035,21.279,9.165,4.789,6.728,0.106,12.986,18.869,21.601,4.786,4.479,5.157,16.507,8.182,17.665,9.013,9.894,10.982,15.038,11.207,21.472,7.242,2.565,0.11,3.6,10.278,16.731,22.288,19.392,10.452,14.805],[25.956,19.279,7.97,17.642,13.169,9.09,2.86,3.861,8.811,16.989,27.52,22.143,10.542,-1.278,11.305,18.45,15.693,15.697,10.239,12.747,10.62,-1.136,15.698,14.747,2.904,3.506,3.516,19.793,10.299,20.216,5.921,13.994,6.318,15.53,7.809,-1.326,6.568,3.136,21.87,-8.672,2.112,9.711,22.87,12.713,-0.204,19.011,18.75,19.452,27.398,10.917,4.29,-1.319,6.593,22.085,21.821,9.305,11.384,12.929,10.409,3.23,17.062,6.178,14.661,19.051,19.207,18.574,9.913,19.234,9.653,0.249,11.102,2.874,26.109,16.18,3.069,29.395,19.834,5.545,27.509,24.268,10.333,13.031,8.471,12.631,6.306,13.067,10.074,21.237,3.238,17.35,11.497,21.327,-2.784,11.429,10.142,15.374,19.947,14.495,16.082,2.807,9.695,16.325,12.097,17.535,13.941,-1.816,9.035,17.52,2.478,14.847,19.692,2.801,11.918,16.477,18.605,-1.492,16.267,4.673,18.781,12.264,1.697,11.766,5.136,3.774,21.296,-0.356,7.263,13.165,5.17,8.822,6.284,14.856,13.304,14.032,4.789,23.481,7.486,-2.055,6.551,24.309,8.234,0.989,12.079,21.662,3.458,9.279,27.545,7.832,17.822,1.384,-10.205,-7.141,19.34,21.46,28.174,-0.299,13.68,19.797,20.463,17.922,1.053,16.971,21.697,9.092,4.934,7.083,-0.254,13.124,18.771,21.519,5.248,4.289,5.43,16.155,8.556,17.693,8.864,10.098,10.84,14.59,11.219,21.769,6.579,2.421,-0.039,3.306,10.819,16.578,22.521,18.916,9.787,14.543],[26.149,19.34,8.181,17.319,13.078,9.072,3.073,3.802,8.495,17.123,27.75,22.226,10.704,-1.253,11.521,18.518,15.718,15.727,10.235,12.616,10.713,-1.255,15.761,14.662,2.933,3.609,3.773,19.802,10.241,20.224,5.844,13.943,6.329,15.304,7.739,-1.332,6.6,3.088,21.939,-8.551,1.775,9.787,22.745,12.819,-0.116,19.103,18.732,19.389,27.33,11.014,4.262,-1.474,6.624,22.319,21.897,9.334,11.328,12.856,10.474,2.874,17.026,6.376,14.667,18.951,18.676,18.84,9.845,18.863,9.044,0.488,10.908,2.696,26.398,16.428,3.802,29.635,19.215,5.657,27.208,24.328,9.774,13.261,8.99,12.427,6.888,12.271,9.891,21.223,3.022,17.494,10.769,21.424,-2.134,11.344,9.95,15.132,20.296,14.307,16.269,2.81,9.705,16.032,12.146,17.358,13.924,-1.707,8.911,17.728,1.988,14.224,19.886,2.963,12.032,16.461,18.134,-1.282,16.261,4.418,19.367,12.023,2.449,11.378,4.804,3.767,21.066,-1.049,7.357,12.446,4.99,8.806,6.444,15.105,12.935,13.594,4.775,23.474,7.188,-2.304,6.169,24.396,8.596,1.269,11.975,21.309,3.381,8.932,27.797,8.082,17.911,1.302,-10.146,-7.279,19.785,21.215,28.303,-0.214,13.04,19.853,20.531,17.775,0.784,16.902,22.164,9.383,4.61,7.251,-0.678,13.184,18.882,21.825,5.378,4.279,5.392,15.903,8.806,18.001,8.873,10.036,11.229,14.736,11.097,22.301,7.102,2.394,0.038,3.096,10.663,16.515,22.749,18.912,9.82,14.394],[26.278,19.322,8.365,17.031,12.778,9.019,3.144,3.696,8.329,17.338,27.83,22.289,10.681,-1.18,11.737,18.514,15.622,15.734,10.28,12.477,10.584,-1.243,15.923,14.521,3.125,3.712,4.04,19.737,10.2,20.319,5.707,13.69,6.476,15.133,7.462,-1.475,6.787,3.14,22.059,-8.407,1.511,9.811,22.671,12.925,-0.11,19.119,18.708,19.447,27.326,11.043,4.127,-1.498,6.6,22.63,21.99,9.473,11.221,12.751,10.609,2.629,16.977,6.572,14.803,18.749,18.989,18.951,9.456,18.522,9.537,0.482,10.681,2.601,27.224,16.264,4.061,29.705,18.635,5.563,27.304,24.651,10.444,13.502,9.387,13.221,6.719,12.077,9.551,21.454,2.891,17.34,11.063,21.318,-2.152,11.462,9.982,15.276,20.024,14.286,16.661,2.792,9.875,15.373,12.075,17.082,14.267,-2.129,8.708,17.764,1.879,14.063,20.487,3.18,11.853,16.937,18.016,-1.475,16.146,4.666,19.181,12.138,2.713,11.382,4.09,3.791,20.572,-1.159,7.585,12.442,5.158,8.604,6.214,15.532,12.798,13.444,4.725,23.495,6.785,-2.096,6.548,24.454,8.87,1.208,11.95,21.517,3.422,8.992,27.323,8.309,18.044,0.539,-10.052,-6.925,19.835,21.568,28.401,-0.103,12.485,19.619,20.612,17.623,0.583,16.858,22.281,9.159,4.73,6.98,-0.694,12.738,18.846,21.638,5.356,3.764,5.628,16.392,8.765,18.019,9.04,9.814,11.264,15.113,11.534,22.314,7.207,2.288,-0.022,2.908,10.195,16.722,22.179,18.836,9.976,14.502],[26.397,19.258,8.412,16.849,12.55,9.115,3.119,3.584,8.407,17.531,27.869,22.356,10.556,-1.207,11.918,18.429,15.452,15.682,10.372,12.418,10.51,-1.316,16.083,14.439,3.445,3.689,4.29,19.55,10.28,20.443,5.626,13.605,6.665,15.093,7.162,-1.656,7.01,3.265,22.2,-8.216,1.19,9.845,22.7,12.952,-0.198,19.19,18.529,19.578,27.316,11.014,4.19,-1.575,6.584,22.864,21.895,9.567,11.009,12.639,10.54,2.341,17.033,6.723,15.127,18.556,19.321,19.09,9.07,18.091,9.805,0.438,10.99,2.602,27.608,15.362,3.489,29.712,19.444,5.291,27.363,25.052,10.425,13.675,9.262,12.817,6.704,12.184,9.919,21.149,3.12,17.725,11.578,21.561,-2.341,11.769,10.29,15.637,19.951,14.628,16.244,2.866,9.53,15.08,12.234,17.174,14.302,-1.312,8.753,17.463,1.9,14.265,19.938,3.466,11.525,17.262,18.182,-2.098,16.147,4.696,18.824,12.248,2.586,11.716,3.891,4.361,21.165,-1.081,8.095,12.772,5.46,8.409,5.938,15.211,12.576,13.337,4.72,23.667,6.617,-2.406,6.173,24.33,8.431,0.962,11.909,21.99,3.608,9.101,26.92,8.677,17.993,0.459,-9.871,-7.046,19.978,21.471,28.317,-0.414,12.434,19.549,20.382,17.841,0.472,16.709,21.981,9.315,4.626,6.494,-0.393,12.585,18.769,21.988,5.956,3.496,5.531,16.588,8.444,17.569,9.201,10.119,11.41,15.11,11.673,22.446,6.873,2.368,-0.365,2.902,9.976,16.504,21.961,18.757,10.252,14.31],[26.516,19.433,8.252,16.576,12.501,9.285,3.076,3.685,8.493,17.618,27.97,22.61,10.563,-1.123,12.027,18.357,15.442,15.683,10.656,12.434,10.534,-1.353,16.031,14.49,3.786,3.599,4.518,19.429,10.552,20.516,5.586,13.584,6.839,15.026,6.844,-1.861,7.172,3.313,22.483,-8.169,0.938,9.824,22.753,12.884,-0.34,19.078,18.353,19.697,27.275,11.123,4.362,-1.786,6.445,22.863,21.708,9.559,10.845,12.462,10.501,2.009,16.998,6.828,15.476,18.338,19.004,19.227,9.162,18.051,9.617,0.254,10.653,2.373,27.144,15.271,3.28,29.84,19.757,5.416,27.625,25.337,9.984,13.63,9.342,11.973,6.854,11.55,10.042,21.38,2.659,17.827,10.951,21.738,-2.61,11.937,10.223,15.823,20.141,14.324,16.634,3.42,9.258,15.075,12.437,17.3,14.132,-0.92,9.274,17.485,1.792,14.49,20.235,3.396,11.626,16.736,17.911,-2.976,16.469,4.209,18.525,12.32,2.589,12.122,3.807,5.239,21.561,-1.312,8.337,12.697,5.862,8.182,6.028,14.947,12.57,13.372,4.781,24.0,7.201,-2.465,5.773,24.291,8.324,0.874,11.643,21.443,3.898,9.275,27.168,9.038,18.036,0.622,-9.767,-6.954,19.763,21.068,28.274,-0.29,12.78,19.287,20.573,17.908,-0.116,16.509,22.007,9.34,5.079,6.356,-0.724,12.94,18.79,22.364,5.876,3.1,5.612,16.579,8.318,17.053,9.015,9.94,11.224,15.324,11.287,22.843,7.206,2.491,-0.634,2.83,9.972,16.433,22.421,18.423,9.846,13.92],[26.507,19.71,8.061,16.52,12.323,9.233,3.057,3.759,8.513,17.682,28.139,23.007,10.558,-1.012,11.995,18.402,15.6,15.588,10.921,12.562,10.614,-1.338,15.952,14.624,4.049,3.495,4.711,19.253,10.971,20.683,5.441,13.536,7.078,14.941,6.644,-1.992,7.41,3.228,22.654,-8.254,0.734,9.765,22.791,12.757,-0.261,18.989,18.282,19.601,27.248,11.183,4.488,-2.247,6.361,22.792,21.57,9.385,10.704,12.296,10.412,1.816,16.821,6.866,15.64,18.092,19.01,18.875,9.692,18.14,9.512,0.589,10.737,2.716,27.286,15.277,3.455,29.981,19.0,5.659,27.631,25.327,10.512,13.589,9.476,11.961,6.688,11.614,10.129,22.434,2.31,17.334,10.53,21.713,-2.54,12.11,10.503,15.984,20.054,14.237,16.637,4.479,9.945,15.182,12.771,17.023,14.289,-1.521,9.66,17.682,1.554,14.5,20.103,3.833,11.423,16.552,17.51,-3.111,16.134,4.115,18.945,11.911,3.068,12.4,3.775,5.87,21.214,-1.444,8.218,12.198,5.864,8.191,6.02,14.798,12.967,13.698,4.763,23.81,7.736,-2.68,5.786,24.416,8.595,1.085,12.02,21.659,3.444,9.066,27.302,8.846,17.848,0.431,-9.792,-6.723,19.506,21.387,28.461,-0.447,13.674,19.158,20.281,18.003,0.12,16.434,22.551,9.51,5.261,6.267,-1.232,12.918,18.461,22.598,5.693,2.973,5.955,17.072,8.11,16.662,8.879,10.019,11.091,15.718,11.105,22.454,6.566,2.484,-1.128,2.639,9.802,16.647,22.319,18.236,9.328,13.691],[26.474,19.816,7.972,16.459,12.19,9.323,3.088,3.803,8.574,17.667,28.205,23.448,10.571,-0.882,12.015,18.546,15.699,15.449,11.08,12.793,10.609,-1.361,15.84,14.756,4.341,3.342,5.008,19.211,11.411,20.718,5.264,13.466,7.264,14.759,6.695,-2.185,7.555,3.031,22.641,-8.285,0.607,9.606,22.922,12.757,-0.154,18.978,18.278,19.419,27.224,11.174,4.562,-2.747,6.206,22.786,21.471,9.141,10.462,12.254,10.292,1.743,16.576,6.866,15.735,17.885,19.554,18.704,9.708,18.231,9.676,0.708,10.45,3.215,27.284,15.534,3.553,29.984,19.295,5.643,27.501,25.068,10.355,13.784,9.001,11.744,6.39,12.053,9.767,23.315,2.901,17.288,10.916,22.244,-2.011,11.74,11.071,15.843,20.009,14.384,15.978,5.187,10.397,14.812,13.013,17.034,14.519,-1.812,9.841,17.572,1.611,14.48,20.542,3.837,11.739,16.953,17.505,-2.789,15.924,4.057,19.418,11.856,3.429,12.389,3.92,5.422,21.467,-1.275,7.754,12.31,5.698,8.349,5.803,14.853,12.651,14.103,4.653,23.6,7.858,-2.696,6.175,24.588,8.529,1.118,12.073,21.707,3.128,8.479,27.149,8.923,17.894,0.209,-9.982,-7.123,19.442,21.78,28.774,-0.246,14.57,19.393,20.424,18.031,0.495,16.48,22.885,9.427,4.931,6.412,-1.377,12.485,18.302,22.371,5.95,3.069,5.975,17.181,8.217,16.344,8.762,9.692,10.888,15.682,11.478,22.398,6.558,2.746,-1.93,2.241,9.685,16.659,21.607,18.01,9.141,14.103],[26.39,19.904,7.929,16.129,12.236,9.393,3.191,3.849,8.723,17.508,28.25,23.96,10.569,-0.709,12.009,18.689,15.736,15.432,11.171,13.063,10.583,-1.381,15.693,14.804,4.451,3.277,5.326,19.346,11.593,20.761,5.089,13.385,7.247,14.49,6.927,-2.345,7.523,2.872,22.562,-8.287,0.574,9.33,23.086,12.848,-0.097,19.168,18.388,19.345,27.25,11.172,4.619,-2.838,6.084,22.9,21.259,8.858,10.231,12.261,10.096,1.76,16.462,6.809,15.874,17.629,19.951,18.454,9.598,17.969,9.943,0.828,10.398,3.24,27.067,15.448,3.359,30.056,19.82,5.609,27.734,24.783,10.366,13.801,9.111,11.863,6.644,11.689,10.179,23.769,3.06,17.975,11.336,22.817,-1.996,11.568,11.191,15.791,20.018,14.49,15.78,5.443,9.972,14.658,12.894,17.402,14.821,-1.647,10.705,17.46,1.475,14.257,20.657,4.096,12.35,16.885,17.714,-2.68,15.752,3.605,19.322,11.447,3.934,12.85,3.344,4.615,21.496,-1.36,8.044,12.646,5.941,8.559,5.735,15.231,12.411,14.182,4.324,23.92,8.178,-2.881,6.413,24.712,8.5,0.984,11.877,21.551,3.716,8.497,27.003,8.924,17.865,0.308,-10.111,-7.552,18.79,21.88,28.72,-0.019,14.596,19.458,20.521,17.857,-0.233,16.56,22.833,9.629,4.782,6.67,-1.417,12.688,18.305,22.037,5.94,2.8,5.549,16.864,8.689,16.181,8.9,9.3,10.533,15.505,10.877,22.57,6.906,2.853,-2.243,2.186,9.278,16.035,21.761,17.71,9.07,13.759],[26.247,20.133,8.0,15.744,12.299,9.413,3.212,3.83,8.869,17.312,28.339,24.352,10.615,-0.553,11.944,18.787,15.83,15.533,11.213,13.324,10.341,-1.413,15.581,14.758,4.519,3.221,5.536,19.449,11.679,20.779,4.876,13.393,7.364,14.392,7.224,-2.446,7.353,2.969,22.407,-8.281,0.469,9.154,23.209,12.891,-0.065,19.37,18.484,19.282,27.403,11.001,4.655,-2.651,6.144,23.126,21.058,8.648,10.075,12.235,9.946,1.761,16.314,6.651,15.997,17.362,19.633,18.545,9.908,17.461,10.068,0.985,10.575,3.019,27.262,14.846,3.517,30.25,19.584,5.636,27.994,24.547,10.481,13.633,9.462,12.098,6.719,11.1,10.266,23.746,2.601,17.878,10.923,23.391,-1.854,12.101,11.042,15.738,20.516,14.685,15.992,4.975,9.81,14.69,13.068,17.647,15.068,-1.244,11.441,17.93,1.399,13.98,19.955,4.15,12.203,16.687,17.477,-2.857,15.296,3.531,19.703,11.741,4.481,13.311,3.37,4.75,21.493,-1.503,8.105,12.134,5.861,8.375,5.871,14.556,12.772,13.76,4.432,24.017,7.708,-3.296,6.416,24.855,8.076,0.898,12.142,21.898,3.387,8.644,27.211,9.161,17.966,-0.043,-9.977,-7.279,18.476,22.053,28.096,-0.102,14.735,19.622,20.374,17.687,-0.606,16.901,22.305,9.284,5.089,6.445,-1.328,12.617,17.953,21.725,6.17,2.822,5.289,17.257,8.917,15.828,8.533,9.489,9.952,15.95,11.213,22.59,5.992,2.735,-2.086,2.741,9.008,15.976,21.989,17.623,9.1,13.77],[26.117,20.254,7.995,15.393,12.193,9.471,3.041,3.808,8.938,17.193,28.363,24.601,10.808,-0.413,12.085,18.935,16.024,15.608,11.271,13.443,10.067,-1.338,15.52,14.65,4.533,3.083,5.906,19.449,11.809,20.685,4.693,13.314,7.521,14.355,7.402,-2.556,7.085,3.138,22.26,-8.261,0.238,9.07,23.307,12.948,-0.116,19.434,18.543,19.191,27.587,10.976,4.758,-2.534,6.045,23.318,20.972,8.522,10.001,12.145,9.865,1.827,16.141,6.46,16.248,17.114,19.313,18.611,9.807,17.188,10.239,1.226,10.159,2.855,27.351,14.455,3.731,30.079,19.722,5.61,28.018,24.529,10.537,13.738,9.386,12.591,6.818,11.439,10.021,23.755,2.556,17.397,10.306,23.877,-1.64,11.906,10.767,15.551,20.701,14.908,15.867,4.831,9.681,15.496,13.139,17.605,15.073,-1.367,11.968,18.087,1.523,14.608,20.199,3.964,12.202,16.4,17.684,-3.085,15.54,3.77,20.062,11.635,4.631,13.398,3.573,4.856,21.575,-1.62,8.118,11.859,5.774,8.96,5.73,14.256,12.659,13.263,4.819,23.863,6.984,-3.311,6.706,24.879,7.993,1.163,12.181,21.613,3.133,8.376,26.971,8.839,17.92,-0.134,-9.996,-7.178,18.672,21.982,28.736,-0.087,14.388,20.026,20.74,17.944,-0.295,17.084,22.445,9.159,5.256,6.366,-1.078,12.557,17.658,21.483,6.282,2.944,4.831,17.638,9.15,15.401,8.287,9.379,9.081,15.97,11.117,22.547,6.241,2.972,-1.684,2.935,8.911,16.116,21.836,17.754,9.182,13.909],[26.014,20.217,7.861,15.15,12.074,9.539,2.774,3.867,8.896,17.117,28.321,24.845,11.081,-0.233,12.293,19.006,16.214,15.706,11.241,13.504,9.793,-1.226,15.458,14.596,4.483,2.97,6.249,19.493,12.06,20.544,4.578,13.245,7.563,14.271,7.54,-2.638,6.757,3.272,22.257,-8.238,0.11,8.934,23.364,12.932,-0.098,19.563,18.607,19.25,27.679,10.998,4.975,-2.427,5.871,23.489,20.89,8.328,10.051,11.935,9.743,1.924,16.127,6.257,16.562,16.915,19.674,18.666,9.817,16.945,10.153,1.288,9.992,2.988,27.018,14.64,3.425,30.144,19.905,5.477,27.699,24.383,10.49,14.063,9.193,12.473,6.645,11.553,10.543,23.823,2.822,17.575,10.183,24.514,-1.61,12.293,10.728,15.214,20.822,15.289,15.665,5.255,9.262,15.65,13.183,17.761,14.901,-1.554,11.92,18.076,1.141,14.3,20.531,3.829,12.204,16.58,17.787,-2.731,15.242,3.42,19.487,11.435,4.739,13.088,3.291,5.634,21.392,-1.562,8.078,12.042,5.989,9.339,5.444,14.551,12.297,13.25,4.926,23.477,6.947,-3.091,6.984,25.002,8.369,1.294,12.164,21.492,3.86,8.305,27.244,8.57,18.083,-0.056,-10.042,-7.534,18.142,22.035,29.05,-0.128,14.025,19.912,20.625,18.006,-0.495,17.052,23.195,9.631,5.33,6.104,-1.555,12.911,17.552,21.673,6.061,2.821,4.595,17.412,9.466,15.198,8.486,9.07,8.918,16.403,10.713,22.389,6.796,3.113,-1.276,2.441,8.999,16.075,21.839,17.637,9.008,13.135],[25.844,20.105,7.695,15.02,12.067,9.69,2.561,3.799,8.803,17.143,28.245,25.075,11.369,-0.103,12.49,19.106,16.402,15.868,11.428,13.447,9.612,-1.165,15.327,14.478,4.421,2.783,6.512,19.518,12.213,20.492,4.423,13.28,7.559,14.305,7.572,-2.596,6.635,3.426,22.361,-8.165,0.019,8.904,23.419,12.893,0.039,19.612,18.577,19.191,27.707,10.901,5.188,-2.341,5.847,23.666,20.86,8.233,10.114,11.661,9.548,1.83,16.132,6.192,16.803,16.763,20.266,18.43,9.937,16.881,9.93,1.34,10.44,3.26,26.505,14.891,3.01,30.139,19.629,5.68,27.753,24.834,10.99,14.081,9.201,11.463,6.212,10.964,10.019,24.268,2.505,17.858,10.41,24.757,-1.698,12.62,10.947,15.223,20.709,15.36,15.416,5.421,9.264,15.194,13.248,18.0,14.854,-1.628,11.879,17.862,1.23,13.567,20.262,4.027,11.974,16.894,17.718,-2.7,14.988,2.939,19.431,10.882,5.04,13.28,3.405,6.023,21.642,-1.428,7.761,12.35,5.946,9.328,5.381,13.999,12.502,13.409,5.058,23.24,6.97,-3.138,7.169,25.008,7.843,0.97,12.515,21.778,3.707,8.2,27.595,8.335,18.439,0.046,-9.979,-7.881,17.973,22.335,28.38,-0.316,13.613,19.69,20.656,18.197,-0.637,16.881,23.809,9.368,5.79,5.637,-1.965,12.223,17.469,21.866,6.103,3.089,4.416,17.652,9.515,15.294,8.615,8.846,9.002,16.776,11.012,22.232,6.199,3.428,-1.239,2.439,9.352,16.449,21.809,17.537,8.811,13.303],[25.761,19.94,7.527,15.011,11.778,9.789,2.4,3.763,8.741,17.198,28.213,25.345,11.722,-0.01,12.61,19.252,16.529,16.02,11.683,13.265,9.435,-1.265,15.255,14.276,4.453,2.726,6.72,19.556,12.217,20.613,4.28,13.429,7.399,14.349,7.623,-2.497,6.499,3.566,22.45,-8.149,-0.102,8.801,23.464,12.84,0.028,19.588,18.437,19.008,27.678,10.867,5.463,-2.349,5.827,23.916,20.855,8.236,10.095,11.503,9.396,1.68,16.128,6.187,16.906,16.675,20.317,18.39,9.674,16.815,9.989,1.307,10.75,3.102,25.905,14.601,2.684,29.91,19.621,5.549,27.919,25.252,11.248,14.068,9.185,11.348,6.469,11.322,9.74,24.746,1.737,17.749,10.994,24.309,-1.619,12.953,11.431,14.927,20.636,15.281,15.205,5.225,9.692,15.285,13.535,18.116,14.529,-1.408,12.053,17.85,1.144,14.369,19.913,4.277,11.783,17.335,17.808,-2.825,14.752,3.081,19.851,11.011,5.502,13.968,3.199,5.49,21.561,-1.328,7.66,12.067,5.743,8.959,5.054,13.612,12.469,13.552,5.109,23.689,7.443,-2.703,6.989,24.875,7.614,1.524,12.303,21.817,3.713,7.993,27.521,7.75,18.324,-0.331,-9.784,-7.524,18.198,22.697,28.882,-0.143,13.658,19.743,21.089,18.062,-0.568,16.929,23.607,9.221,5.706,5.213,-1.229,11.606,17.76,21.995,6.411,2.909,4.408,18.124,9.338,15.284,8.086,8.502,9.312,16.555,10.953,22.228,6.108,3.896,-1.372,2.589,9.144,16.145,21.393,17.423,9.309,13.372],[25.687,19.897,7.398,15.049,11.417,9.832,2.173,3.741,8.784,17.178,28.332,25.506,12.043,0.02,12.652,19.457,16.495,16.203,11.901,13.003,9.453,-1.457,15.215,14.033,4.615,2.797,6.67,19.664,12.228,20.759,4.138,13.546,7.127,14.387,7.739,-2.274,6.325,3.809,22.534,-8.169,-0.171,8.619,23.444,12.848,-0.153,19.592,18.307,19.043,27.67,10.851,5.643,-2.271,5.79,24.127,20.79,8.277,10.205,11.45,9.213,1.477,16.138,6.179,16.856,16.807,19.707,18.798,9.487,16.782,10.127,1.38,10.962,2.687,26.236,14.422,2.58,30.064,19.377,5.442,27.407,25.003,10.86,14.449,8.996,11.565,6.895,11.003,10.199,25.306,2.191,17.797,12.016,23.943,-1.433,12.816,11.785,14.874,20.637,15.326,15.865,5.114,9.449,15.734,13.685,18.117,13.961,-1.215,12.324,17.881,1.062,14.564,19.937,4.101,11.353,17.665,17.869,-3.057,14.453,3.248,20.081,10.944,6.122,13.783,2.644,5.371,21.628,-1.066,7.709,12.082,5.623,9.423,4.922,13.305,12.742,13.64,5.573,24.057,7.493,-2.705,7.07,25.114,7.542,1.559,11.64,21.711,3.992,7.944,27.563,7.194,18.325,-0.802,-9.85,-7.203,17.974,22.704,28.923,-0.053,13.422,19.488,21.04,17.698,-0.656,16.713,23.481,9.507,5.959,5.226,-1.176,11.826,17.79,22.051,6.579,2.28,4.325,17.917,9.068,14.935,7.793,8.66,9.682,16.22,10.926,22.676,6.344,3.818,-1.365,2.375,8.78,16.129,21.262,17.258,9.424,13.01],[25.704,19.983,7.36,15.043,11.117,9.84,2.066,3.614,8.817,17.316,28.38,25.426,12.414,0.101,12.617,19.556,16.45,16.326,12.003,12.596,9.383,-1.688,15.386,13.803,4.757,2.841,6.613,19.828,12.286,20.878,3.94,13.614,6.958,14.426,8.223,-1.967,6.044,4.074,22.546,-8.305,-0.23,8.508,23.297,12.896,-0.346,19.534,18.166,19.182,27.764,10.908,5.586,-2.148,5.739,24.313,20.729,8.375,10.333,11.458,9.015,1.221,16.118,6.02,16.697,16.89,19.535,18.947,9.706,16.729,10.192,1.575,10.812,2.704,27.051,14.623,2.735,30.257,19.537,5.439,27.681,24.305,11.008,14.352,9.052,10.938,6.338,10.693,10.692,25.743,2.163,17.713,12.83,24.09,-1.528,12.481,11.899,14.963,21.05,14.964,16.176,4.954,9.462,16.174,13.901,18.097,13.642,-1.377,12.349,18.151,1.195,14.003,20.459,4.276,11.019,17.768,17.954,-3.2,14.584,2.885,20.139,11.271,6.711,13.289,2.957,5.06,21.847,-0.733,7.222,12.268,5.223,9.668,5.01,13.07,12.926,13.814,5.674,23.6,6.933,-2.929,7.201,24.998,7.378,1.391,11.092,21.723,4.564,8.144,27.307,7.321,18.596,-0.444,-9.656,-7.399,18.019,22.804,28.725,-0.408,13.374,19.264,20.473,18.252,-1.023,16.419,23.348,9.331,6.369,5.726,-1.508,11.963,17.511,21.863,6.305,2.308,4.375,17.757,8.407,15.095,8.076,8.864,10.003,16.601,10.781,23.23,6.09,3.691,-1.34,2.152,8.99,16.236,21.57,17.48,9.585,13.154],[25.784,20.201,7.389,15.01,10.816,9.915,2.129,3.49,8.834,17.551,28.499,25.257,12.781,0.206,12.453,19.521,16.413,16.457,11.965,12.236,9.376,-1.915,15.768,13.575,4.788,2.978,6.556,19.991,12.163,21.066,3.719,13.577,6.799,14.471,8.704,-1.735,5.814,4.233,22.426,-8.604,-0.296,8.452,23.151,12.834,-0.468,19.486,18.106,19.394,27.879,10.974,5.478,-2.172,5.724,24.491,20.682,8.478,10.501,11.562,8.845,1.056,16.136,5.705,16.656,16.792,20.166,18.911,9.584,16.807,10.267,1.503,10.982,3.047,27.29,14.664,2.736,30.307,19.617,5.314,28.267,24.318,11.31,13.985,8.783,10.839,6.114,10.609,10.806,26.034,1.402,17.867,12.969,24.085,-1.441,12.423,11.768,14.966,21.332,14.821,15.974,4.99,9.488,16.221,13.923,17.698,13.584,-1.608,12.206,18.751,1.233,13.476,20.745,4.737,10.789,17.675,18.239,-3.246,15.141,2.52,20.153,11.012,7.047,13.721,3.2,5.08,21.964,-0.568,6.742,12.826,5.093,9.77,4.428,12.847,12.373,13.674,5.813,23.111,6.265,-2.395,7.745,24.628,7.614,1.311,11.172,21.557,4.444,8.129,27.068,7.464,18.421,-0.304,-9.03,-7.928,18.371,22.934,28.721,-0.504,13.94,18.985,21.106,18.45,-1.003,16.502,23.13,9.336,6.378,5.937,-1.456,12.026,17.576,21.774,5.953,2.257,4.046,17.645,7.659,15.494,8.018,8.622,10.27,16.761,10.76,23.545,5.675,3.806,-1.046,1.963,9.497,16.244,21.61,17.84,9.733,13.258],[25.965,20.565,7.335,15.069,10.53,9.985,2.088,3.497,8.836,17.734,28.733,25.063,13.032,0.332,12.283,19.518,16.259,16.54,11.936,12.092,9.345,-1.976,16.2,13.373,4.765,3.073,6.54,20.138,12.035,21.196,3.501,13.539,6.657,14.459,8.816,-1.535,5.657,4.332,22.101,-8.889,-0.388,8.304,23.062,12.737,-0.33,19.478,18.131,19.636,27.9,11.001,5.541,-2.279,5.675,24.522,20.669,8.556,10.785,11.68,8.68,0.95,16.265,5.333,16.759,16.744,20.595,19.285,9.274,16.767,10.169,1.533,11.636,3.574,26.893,14.287,2.833,30.489,19.628,5.197,28.386,24.267,10.917,13.866,8.601,11.354,6.555,10.287,10.749,25.731,1.683,18.268,12.913,23.804,-1.034,13.026,11.81,14.273,21.242,14.839,16.529,5.263,9.46,16.118,13.772,17.585,13.484,-1.919,11.702,18.875,1.494,13.403,20.472,4.702,10.687,17.902,18.252,-3.504,15.318,2.31,20.534,10.96,7.371,13.771,3.209,5.077,22.468,-0.324,6.955,12.835,4.819,10.124,3.804,13.275,12.257,13.656,6.101,23.496,5.986,-1.85,8.312,24.736,6.775,1.35,11.326,21.629,4.237,8.64,27.283,7.266,18.686,-0.837,-8.789,-8.21,18.718,22.447,28.473,-0.774,14.361,19.123,20.658,18.137,-0.46,16.326,23.457,9.234,5.774,5.591,-1.531,12.153,17.831,22.026,5.601,1.917,3.504,17.805,7.221,15.801,7.566,8.257,10.121,16.277,10.965,23.807,6.227,3.713,-1.285,1.876,9.501,16.432,21.215,17.647,9.742,13.021],[26.123,20.836,7.23,15.173,10.333,10.015,2.082,3.619,8.769,17.955,28.87,24.858,13.192,0.541,12.35,19.555,16.059,16.608,12.007,12.108,9.355,-1.812,16.527,13.188,4.781,3.026,6.623,20.234,11.907,21.242,3.277,13.601,6.536,14.486,8.856,-1.313,5.55,4.432,21.769,-9.087,-0.45,8.121,22.994,12.767,-0.289,19.499,18.185,19.812,27.794,11.002,5.644,-2.441,5.658,24.459,20.674,8.424,10.976,11.719,8.528,0.872,16.46,4.936,16.865,16.835,20.409,19.612,9.327,16.588,9.735,1.902,12.112,3.186,26.918,13.909,3.054,30.621,20.162,5.388,28.683,24.474,10.85,13.338,8.828,11.072,7.083,10.45,10.459,25.052,1.885,18.111,12.372,23.385,-0.992,12.704,11.615,13.734,21.106,14.623,17.118,5.084,9.766,16.288,13.691,17.797,13.368,-2.011,11.462,18.38,1.84,14.075,20.348,4.532,10.651,18.164,18.445,-3.522,15.464,2.101,20.614,10.785,7.457,13.492,3.161,5.119,22.114,-0.095,7.363,12.187,5.141,9.473,4.393,13.339,12.524,13.496,6.29,23.467,5.939,-2.173,7.893,24.755,6.608,1.545,11.368,21.322,4.368,8.275,27.417,7.366,18.232,-1.284,-8.802,-8.203,18.869,22.327,28.561,-0.709,14.033,19.552,20.727,18.72,-0.335,16.66,23.878,9.34,5.521,5.355,-1.883,11.904,17.902,22.197,5.637,1.93,3.16,17.465,7.095,16.089,7.686,8.443,10.129,16.296,10.721,23.619,5.89,4.155,-2.114,1.682,9.736,16.311,21.095,17.182,10.142,13.325],[26.291,20.93,7.243,15.222,10.17,9.992,2.214,3.722,8.654,18.202,28.926,24.647,13.249,0.656,12.346,19.532,15.858,16.757,11.959,12.163,9.463,-1.431,16.69,13.083,4.847,2.986,6.826,20.288,11.768,21.124,3.253,13.625,6.506,14.487,8.705,-1.179,5.61,4.587,21.558,-9.084,-0.515,7.97,23.036,12.754,-0.382,19.465,18.281,20.065,27.626,11.002,5.794,-2.816,5.557,24.374,20.701,8.206,11.148,11.71,8.562,0.688,16.583,4.61,16.796,16.953,20.143,19.862,9.798,16.637,9.441,2.103,12.317,2.667,27.197,13.761,3.246,30.722,20.463,5.455,28.63,24.94,11.41,13.42,8.887,10.558,6.618,10.582,10.96,24.348,1.554,18.193,12.145,23.728,-0.572,12.877,11.911,14.12,20.889,14.619,16.99,4.608,9.544,16.373,13.619,17.489,13.387,-1.78,11.58,18.076,1.398,13.744,20.497,4.434,10.529,17.944,18.447,-3.062,16.097,2.034,20.314,10.801,6.96,13.433,2.819,5.293,22.034,-0.181,6.992,12.039,5.204,9.474,4.367,13.037,13.167,13.715,6.175,22.846,5.64,-2.206,7.974,24.492,6.604,1.409,11.252,20.707,4.677,7.646,27.43,7.212,18.363,-0.853,-9.066,-8.335,19.058,22.164,28.871,-0.689,13.79,19.59,21.121,18.821,-0.961,17.207,23.781,9.354,5.913,5.732,-1.807,12.002,18.025,21.975,5.685,1.596,2.839,18.084,7.175,16.451,7.811,8.231,9.942,16.59,10.722,23.294,5.339,4.12,-2.299,2.05,9.987,16.521,21.376,16.895,10.319,13.473],[26.473,20.842,7.335,15.26,9.986,10.179,2.36,3.745,8.626,18.325,28.924,24.575,13.235,0.607,12.308,19.426,15.81,16.865,11.986,12.169,9.561,-0.973,16.72,12.988,4.901,2.895,6.99,20.222,11.725,20.949,3.336,13.713,6.494,14.443,8.516,-1.183,5.643,4.699,21.453,-8.898,-0.578,7.701,23.125,12.667,-0.458,19.64,18.317,20.284,27.425,11.049,5.883,-3.25,5.421,24.28,20.727,8.005,11.254,11.69,8.714,0.442,16.738,4.411,16.741,16.976,20.085,19.931,9.44,16.655,9.624,2.26,12.376,2.884,27.671,14.153,3.021,30.827,20.426,5.554,28.178,24.983,11.217,14.027,8.427,10.44,5.998,10.666,10.659,24.217,1.637,18.878,12.087,23.8,-0.322,12.905,11.808,14.394,21.011,14.122,17.159,4.46,9.362,16.944,13.653,16.956,13.559,-1.408,11.808,18.071,1.164,13.346,20.333,4.284,10.706,17.385,18.473,-2.491,16.819,2.406,20.315,11.089,7.31,13.275,3.161,5.646,21.788,-0.27,6.572,12.282,4.996,9.494,3.665,13.046,13.047,14.034,5.999,22.75,5.726,-1.737,7.608,24.428,6.435,1.362,11.006,21.183,5.303,7.736,27.376,7.48,18.681,-0.66,-9.687,-8.376,19.39,22.299,28.841,-0.987,13.774,19.165,20.588,19.312,-0.636,16.754,23.754,9.265,6.653,5.762,-2.241,11.965,18.177,21.936,5.245,1.382,2.852,17.891,7.065,16.602,7.663,7.841,9.797,16.548,10.825,23.115,5.544,4.295,-2.112,1.829,10.116,16.588,21.534,17.562,10.088,13.456],[26.582,20.819,7.399,15.346,9.766,10.324,2.369,3.779,8.641,18.438,28.866,24.54,13.162,0.49,12.397,19.402,15.706,16.891,12.075,12.183,9.541,-0.765,16.918,12.917,4.916,3.097,7.141,20.201,11.67,20.735,3.375,13.811,6.508,14.45,8.378,-1.083,5.718,4.813,21.436,-8.728,-0.568,7.406,23.274,12.561,-0.587,19.799,18.106,20.585,27.266,11.075,5.934,-3.606,5.328,24.263,20.787,7.844,11.206,11.709,8.822,0.173,16.876,4.299,16.78,16.99,20.388,19.886,8.964,16.635,10.042,2.054,12.055,3.665,28.006,14.546,3.482,30.576,19.582,5.458,28.279,24.866,11.17,14.06,8.402,10.545,6.121,10.838,10.437,24.574,1.954,18.974,12.207,23.125,-0.816,12.422,11.438,14.052,20.949,13.998,17.248,4.384,9.502,17.413,13.703,16.829,13.538,-1.105,11.767,18.453,1.738,13.232,20.598,4.15,10.709,17.337,18.537,-2.378,16.434,2.497,20.032,11.29,8.094,13.533,3.587,5.676,21.713,-0.165,6.669,12.628,4.815,9.295,3.629,13.276,12.636,13.903,6.36,23.147,6.073,-1.576,7.276,24.757,6.341,1.389,10.949,21.115,5.088,7.931,27.081,7.275,18.525,-0.638,-9.42,-7.98,19.372,22.147,28.365,-0.925,13.622,19.199,21.036,19.442,-0.257,16.507,23.933,9.403,6.446,5.228,-2.81,11.86,18.038,21.87,5.01,1.235,2.889,17.188,6.732,16.585,7.972,8.535,9.564,16.21,10.595,22.819,5.495,4.11,-2.468,1.342,10.746,16.309,21.457,18.054,9.959,13.029],[26.663,20.958,7.418,15.386,9.648,10.297,2.473,3.813,8.617,18.586,28.852,24.347,12.981,0.317,12.464,19.416,15.533,16.944,12.118,12.171,9.49,-0.765,17.138,12.82,4.825,3.677,7.259,20.116,11.674,20.571,3.357,13.876,6.487,14.576,8.423,-0.877,5.842,4.757,21.475,-8.562,-0.441,7.338,23.413,12.417,-0.586,19.862,17.819,20.745,27.092,11.033,5.77,-3.881,5.276,24.318,20.759,7.754,11.246,11.674,8.963,-0.049,16.905,4.286,16.74,17.056,20.431,20.202,9.412,16.938,9.923,1.674,11.372,4.585,27.525,14.037,3.455,30.769,19.36,5.13,28.553,24.825,11.108,14.062,8.684,10.662,6.712,10.33,11.143,24.931,1.679,18.669,12.649,23.006,-1.07,12.592,11.531,13.89,20.997,14.101,17.466,4.411,9.59,16.874,13.46,17.113,13.575,-1.415,11.49,18.848,1.95,13.285,20.459,4.762,10.598,17.673,18.355,-2.304,16.132,2.073,19.757,10.935,7.74,13.393,3.401,5.969,21.811,-0.028,6.316,13.075,5.216,8.856,4.168,13.354,12.711,13.583,6.528,23.127,6.277,-1.565,7.682,24.829,6.114,0.957,11.113,21.018,4.538,7.541,26.936,7.255,18.813,-0.557,-8.56,-7.614,19.515,22.302,28.413,-1.129,13.789,19.067,21.223,19.555,-0.906,16.199,23.697,9.41,5.978,4.607,-2.698,11.962,17.886,21.814,4.826,1.07,2.663,17.981,6.609,16.496,8.538,8.622,9.403,16.173,10.502,22.944,5.809,3.902,-3.336,1.019,11.005,16.917,21.808,17.494,9.82,12.834],[26.629,21.213,7.543,15.175,9.649,10.317,2.604,3.85,8.615,18.69,28.874,24.159,12.693,0.199,12.454,19.443,15.548,16.95,12.176,12.152,9.502,-0.849,17.349,12.709,4.705,4.209,7.349,19.865,11.675,20.476,3.199,14.109,6.47,14.661,8.67,-0.689,5.978,4.38,21.508,-8.277,-0.367,7.434,23.493,12.317,-0.535,19.874,17.492,20.68,26.976,10.921,5.598,-3.951,5.238,24.281,20.697,7.674,11.37,11.589,9.122,-0.183,16.962,4.298,16.789,17.153,20.659,20.161,9.659,16.854,9.161,1.707,10.846,4.527,27.167,13.618,3.178,30.74,19.999,5.233,28.641,24.914,11.273,13.706,8.907,10.646,6.847,9.809,11.359,24.477,1.311,18.941,13.129,23.32,-0.955,13.346,11.741,13.961,20.805,14.261,17.581,4.755,9.534,17.183,13.599,17.041,13.361,-1.512,11.402,18.46,2.738,13.321,19.897,4.841,10.474,17.753,18.082,-2.306,16.448,2.282,20.014,10.386,7.04,13.489,3.876,6.295,21.438,-0.454,6.432,13.434,4.936,8.88,4.514,13.366,12.669,13.8,5.955,22.916,6.722,-1.674,7.483,24.849,5.917,1.307,10.866,21.047,5.002,6.896,26.758,7.22,18.675,-0.73,-8.337,-7.376,19.661,22.246,28.55,-1.548,13.619,18.795,21.047,19.46,-0.537,16.307,23.798,9.353,5.869,4.765,-2.477,12.1,18.17,21.744,5.201,1.204,2.39,18.071,7.013,16.249,8.565,8.077,9.462,16.338,10.586,23.475,5.838,3.847,-4.073,0.876,10.404,16.715,21.702,16.398,10.343,13.196],[26.458,21.597,7.78,14.934,9.636,10.465,2.55,3.938,8.571,18.78,28.907,24.077,12.488,0.12,12.398,19.332,15.612,16.982,12.301,12.049,9.413,-0.87,17.497,12.588,4.688,4.711,7.404,19.723,11.675,20.345,3.129,14.413,6.468,14.631,8.698,-0.722,6.088,3.959,21.44,-7.94,-0.28,7.492,23.415,12.214,-0.487,19.701,17.264,20.457,26.98,10.843,5.558,-3.996,5.243,24.192,20.597,7.626,11.469,11.678,9.153,-0.196,16.994,4.392,16.924,17.117,20.512,20.176,9.668,16.423,8.663,1.745,10.8,3.887,27.692,13.756,3.54,30.754,20.817,5.279,28.436,24.592,11.32,13.661,8.98,10.606,6.622,9.729,10.797,23.437,1.449,19.386,13.195,23.329,-0.763,13.019,11.737,13.846,20.763,14.341,17.565,4.75,10.033,17.449,13.901,17.183,13.398,-1.572,11.502,18.128,3.124,13.612,20.473,3.906,10.47,17.366,17.766,-2.227,16.503,2.141,20.147,10.384,7.213,13.554,4.345,6.852,20.707,-0.134,6.583,13.503,4.684,9.605,4.46,13.404,13.098,13.951,5.415,23.171,7.181,-1.379,7.842,24.827,6.109,1.276,10.809,20.522,4.683,6.872,26.962,7.398,18.613,-0.338,-8.613,-7.093,19.648,22.093,28.44,-1.04,13.523,18.53,21.241,18.972,0.086,16.389,24.057,9.203,6.344,5.078,-2.671,11.411,18.523,21.699,5.23,1.038,2.515,17.312,7.446,16.464,8.059,8.205,9.461,16.762,10.523,23.459,5.654,3.76,-4.271,0.968,10.114,16.505,21.415,16.281,10.521,13.508],[26.252,21.906,7.866,14.788,9.587,10.591,2.439,3.981,8.427,18.875,28.963,24.093,12.416,-0.132,12.233,19.251,15.689,16.984,12.385,11.839,9.344,-0.878,17.6,12.546,4.62,5.067,7.566,19.648,11.783,20.214,3.218,14.573,6.419,14.502,8.795,-0.697,6.286,3.559,21.308,-7.645,-0.02,7.57,23.246,12.01,-0.448,19.565,17.193,20.323,27.144,10.96,5.728,-4.255,5.366,24.163,20.519,7.64,11.47,11.799,8.971,-0.183,16.949,4.498,16.986,17.021,20.464,20.258,9.942,16.377,8.9,1.721,10.795,3.659,27.484,14.145,3.636,30.873,21.044,5.229,28.31,24.691,11.095,14.037,9.215,10.607,6.853,10.089,10.806,23.807,1.529,19.448,13.345,22.984,-0.722,12.007,12.057,13.328,20.774,14.403,17.37,4.486,10.254,17.142,14.04,17.318,13.178,-1.104,11.658,18.237,3.325,13.77,20.223,3.711,10.351,17.191,17.938,-1.743,16.648,2.107,19.591,10.807,7.764,13.3,4.893,6.758,20.942,-0.354,6.715,13.679,4.957,9.722,3.938,13.027,13.221,13.74,5.096,23.034,7.319,-1.787,7.512,24.47,6.402,1.054,10.955,20.554,4.044,7.483,27.104,7.339,18.675,-0.007,-8.25,-7.136,19.315,21.848,28.222,-0.733,13.488,18.715,20.397,19.067,0.154,16.07,23.594,9.297,6.17,4.7,-2.758,11.534,18.158,21.809,5.134,0.96,2.801,17.6,7.332,16.922,7.787,8.82,9.496,16.968,10.364,22.712,5.775,3.873,-4.02,0.968,10.798,16.699,21.331,17.09,10.407,13.539],[26.149,22.041,7.825,14.763,9.623,10.58,2.375,3.943,8.395,18.815,28.955,24.136,12.452,-0.291,11.994,19.251,15.865,16.916,12.426,11.674,9.431,-0.78,17.679,12.577,4.526,5.197,7.691,19.556,11.87,20.174,3.468,14.538,6.483,14.248,8.933,-0.742,6.391,3.364,21.174,-7.389,0.181,7.591,22.935,11.821,-0.52,19.409,17.304,20.332,27.246,11.121,5.819,-4.397,5.389,24.026,20.534,7.649,11.507,11.914,8.737,-0.248,16.839,4.613,17.028,17.011,20.798,20.529,9.733,16.569,9.233,1.41,10.741,4.366,27.155,13.598,3.366,30.896,21.258,5.487,28.674,24.368,11.454,13.757,9.101,10.347,7.099,10.584,11.558,24.079,1.373,19.252,13.816,23.4,-1.409,12.108,12.525,12.782,21.018,14.334,17.759,4.09,9.764,17.18,13.87,17.231,12.818,-0.609,11.78,18.4,3.422,13.933,19.494,3.855,10.02,17.693,17.855,-1.654,16.641,2.577,19.365,10.438,7.995,13.671,5.365,6.736,21.433,-0.002,6.43,13.546,4.714,8.939,3.649,12.955,13.183,13.895,4.913,22.776,7.55,-1.754,7.738,24.44,6.462,1.148,10.553,20.789,4.108,8.347,26.883,7.4,18.391,-0.094,-7.995,-6.793,18.999,22.002,28.52,-1.369,13.42,18.41,20.068,19.397,0.166,15.864,23.616,9.666,6.135,4.946,-2.761,11.964,17.842,21.697,5.159,1.114,2.745,18.064,6.723,16.967,8.007,8.931,9.461,16.76,10.462,22.587,6.131,3.925,-4.119,0.856,10.879,16.946,21.085,17.336,10.062,13.746],[26.045,22.136,7.816,14.707,9.779,10.625,2.323,4.025,8.497,18.687,29.0,24.236,12.584,-0.353,11.855,19.349,15.941,17.002,12.538,11.622,9.53,-0.574,17.706,12.676,4.341,5.219,7.765,19.46,11.973,20.178,3.706,14.388,6.541,14.143,8.867,-0.756,6.428,3.309,21.085,-7.142,0.255,7.686,22.645,11.619,-0.732,19.177,17.424,20.306,27.28,11.19,5.757,-4.282,5.377,23.932,20.558,7.572,11.481,12.022,8.644,-0.347,16.703,4.73,17.07,17.077,21.253,20.193,9.615,16.07,9.317,0.96,10.939,4.996,26.949,13.141,3.421,30.742,21.004,5.377,28.956,24.258,11.044,13.265,9.048,10.229,7.012,10.698,11.56,23.95,1.215,18.99,13.857,24.023,-1.672,12.324,12.254,12.474,21.03,14.584,18.181,4.411,9.546,17.553,13.646,17.458,12.73,-0.484,11.681,18.416,3.418,13.475,19.952,4.174,9.961,17.555,17.688,-1.805,16.318,3.009,19.362,9.922,7.82,13.699,5.263,6.842,20.937,-0.47,6.32,13.514,4.925,9.177,4.489,13.094,13.089,13.59,4.458,22.912,7.719,-1.335,7.844,24.35,6.165,0.836,10.792,20.331,4.133,8.185,26.795,7.393,18.272,0.252,-8.144,-6.542,19.372,21.94,28.423,-1.507,13.397,18.684,20.923,19.047,0.161,16.239,23.289,9.566,6.45,5.819,-2.721,12.216,18.111,21.645,5.375,0.956,2.93,17.756,6.485,16.819,7.695,8.159,9.396,17.102,10.758,22.749,5.878,4.032,-4.478,0.841,10.786,16.882,21.22,16.637,10.074,13.764],[25.919,22.157,7.844,14.524,9.999,10.579,2.445,4.282,8.578,18.415,29.055,24.356,12.754,-0.502,11.712,19.481,15.999,17.213,12.604,11.591,9.628,-0.3,17.698,12.568,4.239,5.151,7.716,19.304,12.028,20.151,3.89,14.208,6.604,14.222,8.687,-0.786,6.517,3.182,21.044,-6.982,0.383,7.714,22.472,11.47,-0.811,19.106,17.452,20.163,27.217,11.147,5.704,-4.177,5.498,23.863,20.594,7.484,11.423,12.236,8.489,-0.359,16.709,4.881,17.116,17.158,21.441,19.852,9.951,15.723,9.128,1.107,11.239,4.942,26.881,13.084,3.174,30.917,21.026,5.06,29.015,24.132,10.844,12.988,9.08,10.475,6.411,10.449,11.378,23.975,1.002,19.169,13.891,23.979,-1.18,12.521,12.037,12.499,21.016,14.615,17.671,4.635,9.922,17.672,14.153,17.487,13.03,-0.397,11.79,18.477,3.533,13.383,19.873,4.141,10.046,17.191,17.601,-1.725,16.301,2.856,19.528,9.175,8.119,13.936,4.562,7.075,20.655,-0.126,6.756,13.27,4.912,10.031,5.186,13.054,13.079,13.293,4.34,22.856,7.914,-1.554,7.612,24.108,6.444,0.171,10.879,20.129,4.238,7.645,27.118,7.222,18.178,-0.159,-7.685,-6.725,19.537,21.427,28.219,-1.794,13.352,19.237,20.642,18.674,0.126,16.853,23.254,9.409,6.408,6.186,-2.679,11.772,17.925,21.681,5.971,0.718,3.106,17.602,7.097,16.624,7.316,7.543,9.357,17.489,10.654,22.795,5.575,3.865,-4.101,0.894,10.796,16.637,21.277,16.013,10.34,13.936],[25.777,22.134,7.839,14.321,10.164,10.506,2.595,4.344,8.681,18.161,29.042,24.492,12.94,-0.533,11.553,19.694,16.015,17.301,12.669,11.613,9.698,-0.018,17.646,12.358,4.111,4.974,7.739,19.04,12.165,20.042,3.859,14.028,6.713,14.319,8.526,-0.877,6.624,3.038,21.146,-6.933,0.376,7.634,22.405,11.409,-0.973,19.093,17.405,19.944,27.041,11.188,5.598,-4.081,5.567,23.803,20.615,7.518,11.402,12.367,8.279,-0.323,16.827,5.172,17.2,17.165,21.577,19.716,9.829,15.417,9.004,1.322,11.193,5.126,27.061,12.963,3.201,31.031,21.14,5.554,28.78,24.299,11.098,13.267,9.2,10.857,6.507,10.399,11.641,23.859,1.621,18.861,14.333,23.603,-1.589,12.309,12.511,12.736,20.577,14.525,17.001,4.409,10.6,17.634,14.389,17.44,13.219,-0.145,11.87,18.567,3.463,13.504,19.581,3.959,10.343,17.514,17.273,-1.496,16.763,3.008,19.252,8.466,8.022,13.944,4.427,7.017,21.108,-0.281,6.441,12.884,4.935,10.167,5.35,12.885,13.138,13.63,4.134,22.883,8.019,-1.74,7.974,23.829,6.579,0.678,10.278,20.239,4.176,7.576,27.09,7.358,18.28,0.129,-7.557,-6.521,18.841,20.835,28.198,-1.614,13.193,19.13,20.123,18.934,0.428,16.964,23.334,9.492,6.259,6.208,-2.602,12.02,18.111,21.776,6.224,0.936,3.527,17.96,7.413,16.594,7.306,7.328,9.344,16.934,10.813,22.501,6.261,3.825,-3.351,0.938,10.371,16.809,21.276,16.579,10.329,14.18],[25.797,22.267,7.85,14.227,10.236,10.632,2.664,4.326,8.644,17.972,28.951,24.529,12.943,-0.534,11.602,19.87,15.924,17.309,12.773,11.717,9.741,0.202,17.547,12.284,3.979,4.774,7.869,18.738,12.364,19.968,3.649,13.885,6.693,14.39,8.406,-1.072,6.732,2.912,21.269,-7.068,0.325,7.526,22.294,11.338,-1.016,19.126,17.375,19.662,26.876,11.488,5.524,-3.883,5.684,23.706,20.734,7.611,11.333,12.41,8.077,-0.157,17.066,5.498,17.225,17.263,21.644,19.563,9.598,14.863,9.489,1.175,11.919,5.42,27.223,12.734,3.754,30.755,21.329,5.737,28.664,24.427,11.168,13.066,9.367,10.568,7.134,10.921,11.354,23.523,2.048,18.201,14.737,23.607,-1.869,11.718,13.038,12.904,20.338,14.379,17.21,3.97,10.726,17.497,14.432,17.165,13.225,0.338,12.036,18.748,3.181,13.241,19.646,3.646,10.456,17.747,17.112,-1.099,16.602,3.154,18.563,8.381,7.56,13.961,4.732,6.64,20.711,0.036,6.264,12.547,5.131,9.851,5.379,13.104,12.709,14.067,4.005,23.173,8.334,-1.725,7.881,23.876,6.525,0.589,10.373,20.39,3.903,8.188,26.62,7.333,18.008,-0.025,-7.531,-6.773,18.493,20.887,27.804,-1.554,13.141,19.01,20.624,18.975,0.295,16.032,23.09,9.875,6.144,5.93,-2.574,12.349,18.611,21.858,6.302,1.097,3.772,17.909,6.939,16.604,7.322,7.779,9.5,17.006,11.145,22.426,6.532,3.59,-3.212,0.924,10.296,16.975,21.477,17.425,10.348,14.215],[25.797,22.391,8.068,14.102,10.266,10.775,2.79,4.379,8.513,17.932,28.898,24.444,12.91,-0.62,11.735,19.895,15.739,17.257,12.805,11.889,9.849,0.278,17.478,12.365,3.832,4.747,7.819,18.557,12.55,19.852,3.423,13.684,6.631,14.469,8.301,-1.19,6.817,2.774,21.372,-7.332,0.275,7.473,22.218,11.264,-0.889,19.209,17.281,19.475,26.729,11.85,5.402,-3.75,5.842,23.59,20.977,7.675,11.306,12.424,7.978,0.051,17.335,5.698,17.222,17.417,22.917,19.429,9.613,14.371,9.336,0.986,11.997,5.517,27.316,12.419,3.653,30.694,21.736,5.334,28.679,24.65,11.509,13.419,9.535,10.3,6.905,11.215,11.516,23.777,1.927,18.735,14.683,24.021,-1.688,11.747,12.788,13.019,20.088,14.148,17.448,4.46,10.171,17.435,14.625,16.989,13.008,0.694,12.083,19.33,2.906,13.187,19.961,3.458,10.191,17.667,17.046,-0.755,15.981,3.157,18.854,8.191,7.727,14.292,4.496,6.751,20.344,-0.301,6.32,12.74,5.091,9.879,5.162,13.472,12.657,13.466,4.097,23.176,8.36,-2.125,7.395,24.001,6.967,0.287,10.562,20.751,3.81,8.472,26.275,7.065,18.285,-0.457,-7.64,-6.765,18.738,21.213,27.768,-1.841,13.131,18.287,20.436,18.132,-0.467,15.51,22.927,10.226,6.276,5.08,-2.303,12.324,18.216,22.04,6.501,1.337,4.006,17.991,6.59,17.127,7.353,8.245,9.327,17.789,11.206,22.201,5.722,3.621,-3.298,1.031,10.201,17.446,21.264,17.142,10.086,14.131],[25.733,22.684,8.276,13.747,10.342,10.859,2.891,4.346,8.43,18.187,28.901,24.343,12.824,-0.804,11.92,19.864,15.667,17.04,12.708,12.088,9.818,0.158,17.447,12.542,3.776,4.872,7.613,18.627,12.702,19.701,3.354,13.608,6.616,14.389,8.195,-1.406,6.798,2.687,21.545,-7.582,0.028,7.523,22.251,11.159,-0.832,19.292,16.908,19.367,26.628,12.043,5.322,-3.599,5.651,23.373,21.094,7.6,11.244,12.412,7.948,0.313,17.472,5.919,17.449,17.552,23.443,19.578,9.562,14.329,9.481,0.911,11.786,5.413,27.059,12.403,3.97,30.894,21.828,5.388,28.887,24.482,11.622,13.508,9.626,10.454,6.915,10.616,12.027,24.0,2.301,18.941,14.618,24.141,-1.932,12.461,12.758,12.948,20.128,14.236,17.346,4.695,10.244,17.284,14.493,16.857,12.468,0.293,12.121,19.915,3.286,13.279,19.8,3.82,10.26,17.408,17.219,-0.299,16.132,2.349,19.357,8.937,8.082,14.324,4.416,7.036,20.686,-0.652,6.401,12.445,5.135,9.83,4.724,13.455,12.582,13.306,3.939,23.304,8.521,-2.336,7.326,23.921,6.988,0.552,10.394,20.4,3.537,8.233,26.6,7.136,18.447,-0.263,-8.096,-6.714,19.036,20.988,27.883,-1.17,12.981,18.278,20.496,18.094,-0.663,15.389,23.171,10.478,5.932,4.907,-2.033,12.409,18.702,22.212,6.126,1.53,4.189,17.87,6.99,16.921,7.72,7.898,9.397,17.316,11.473,22.023,6.234,3.501,-3.385,1.445,10.268,17.427,21.604,17.353,10.112,14.211],[25.674,23.117,8.387,13.424,10.463,10.875,3.035,4.235,8.577,18.337,29.036,24.279,12.866,-0.942,12.156,19.907,15.662,16.776,12.696,12.183,9.777,0.016,17.462,12.66,3.878,5.09,7.597,18.831,12.62,19.657,3.289,13.565,6.722,14.403,8.141,-1.675,6.766,2.624,21.509,-7.791,-0.253,7.544,22.332,10.96,-0.608,19.322,16.603,19.417,26.708,11.978,5.111,-3.464,5.426,23.186,21.243,7.551,11.114,12.418,8.003,0.627,17.538,5.968,17.587,17.672,22.826,19.775,9.482,13.82,9.72,0.716,11.057,5.394,26.9,12.639,4.197,30.69,22.325,5.534,29.156,24.2,11.376,13.568,9.733,10.541,7.38,10.58,11.69,23.761,2.614,18.782,14.304,23.631,-2.251,12.651,13.059,13.067,20.567,14.279,17.344,4.542,10.128,17.448,14.288,17.044,12.079,-0.443,12.475,19.774,3.439,13.809,19.033,3.987,10.399,16.955,17.305,-0.267,16.414,2.284,19.039,9.861,7.47,14.325,4.717,6.362,20.741,-0.421,6.113,12.145,5.14,9.507,4.022,13.504,12.756,14.076,3.785,23.42,8.258,-2.279,7.3,23.564,6.945,0.519,10.026,20.484,3.658,8.148,26.722,7.309,18.224,-0.453,-8.156,-7.133,18.738,20.672,27.98,-1.123,12.783,18.386,20.87,18.369,-0.49,15.688,23.13,10.462,6.052,4.854,-2.135,12.339,18.918,22.519,6.413,1.558,4.215,18.226,7.082,16.768,7.916,7.374,9.414,16.931,11.531,22.051,6.939,3.316,-3.162,1.969,10.362,17.312,21.687,17.235,10.266,14.156],[25.633,23.554,8.594,13.319,10.617,10.686,3.322,4.274,8.875,18.275,29.162,24.201,12.791,-1.007,12.4,19.932,15.652,16.629,12.768,12.218,9.758,-0.046,17.476,12.783,4.019,5.177,7.627,18.969,12.444,19.659,3.262,13.503,6.728,14.578,8.122,-1.703,6.692,2.646,21.466,-8.008,-0.465,7.513,22.307,10.669,-0.289,19.299,16.645,19.454,26.916,11.779,4.858,-3.387,5.21,23.132,21.46,7.567,11.108,12.434,8.053,0.858,17.517,5.923,17.562,17.688,23.056,19.793,9.909,12.848,9.77,0.608,11.12,5.389,26.871,12.066,3.999,30.968,22.36,5.173,29.032,24.188,11.459,13.875,9.817,10.574,7.063,11.199,11.69,23.328,2.787,18.978,13.801,23.341,-2.134,12.687,12.851,13.043,21.156,14.161,17.552,4.94,10.267,17.15,14.505,17.076,12.239,-1.018,12.334,19.396,3.466,14.245,19.488,3.537,10.463,16.583,17.388,-0.847,16.146,2.316,19.065,9.703,7.126,14.164,5.007,6.617,20.374,-0.614,6.449,12.025,5.619,9.439,3.535,13.506,12.87,13.925,3.9,23.092,7.921,-2.545,7.14,23.683,6.936,0.777,9.515,20.767,3.66,7.986,26.338,7.65,18.493,-0.968,-8.275,-7.23,18.566,20.725,27.581,-1.286,12.3,18.364,20.617,18.104,-0.942,15.497,22.534,10.13,5.519,4.895,-2.686,12.058,18.812,22.647,6.743,1.764,4.186,18.302,6.794,17.166,7.428,7.742,9.426,17.533,11.313,21.984,7.065,3.043,-2.464,1.863,9.949,17.365,22.008,16.769,9.92,14.18],[25.526,23.834,8.664,13.118,10.791,10.475,3.709,4.492,9.202,18.195,29.183,24.016,12.586,-1.012,12.588,19.891,15.683,16.5,12.883,12.23,9.783,-0.062,17.485,12.809,4.115,5.095,7.774,19.117,12.307,19.729,3.299,13.385,6.855,14.619,8.104,-1.619,6.59,2.781,21.413,-8.13,-0.717,7.441,22.227,10.4,-0.156,19.308,16.814,19.339,26.908,11.543,4.522,-3.304,5.158,23.171,21.51,7.654,11.116,12.451,8.073,0.93,17.443,5.842,17.59,17.62,23.75,19.594,10.335,12.97,10.087,0.725,10.85,5.501,26.952,11.754,4.23,31.235,22.816,5.449,29.036,24.358,11.481,14.062,9.941,10.463,6.907,11.474,11.533,23.213,2.951,18.83,13.847,23.954,-1.93,13.077,12.563,12.855,21.559,13.997,17.232,4.692,10.253,16.855,14.801,16.84,13.063,-0.88,11.898,19.286,3.269,14.444,19.763,3.396,10.471,16.92,17.397,-1.214,15.96,1.996,19.286,8.65,7.694,13.986,5.008,6.692,20.391,-0.651,6.246,12.183,5.41,9.486,3.304,13.289,12.479,13.706,3.973,23.025,7.736,-2.252,6.987,24.072,6.707,1.206,9.41,20.446,3.857,7.879,26.553,7.857,18.315,-1.195,-8.577,-7.282,19.262,21.099,27.447,-0.326,12.198,18.247,20.819,17.956,-1.325,15.229,22.604,9.93,5.028,4.691,-3.088,12.136,18.869,22.73,6.996,2.363,4.238,17.905,6.448,17.275,6.68,8.059,9.283,17.126,11.18,21.583,6.946,2.676,-2.056,1.818,9.923,16.784,21.919,17.087,10.255,14.226],[25.51,24.211,8.71,13.012,10.921,10.406,4.117,4.843,9.527,18.072,29.017,23.849,12.359,-0.964,12.824,19.836,15.735,16.435,12.872,12.173,9.647,0.013,17.386,12.76,4.085,4.873,7.989,19.259,12.093,19.859,3.219,13.343,6.942,14.521,8.054,-1.508,6.476,3.064,21.415,-8.247,-0.996,7.385,22.299,10.273,-0.002,19.293,16.812,19.348,26.729,11.287,4.145,-3.224,5.23,23.198,21.476,7.699,11.203,12.517,8.014,1.07,17.324,5.782,17.61,17.525,24.168,19.452,10.576,13.17,10.537,0.913,11.029,5.909,26.872,11.894,4.094,30.935,22.62,6.157,29.072,24.411,11.404,14.188,9.716,10.536,6.95,11.156,11.199,23.331,2.831,18.689,14.013,24.272,-1.992,12.624,12.769,12.663,21.662,14.36,16.982,4.546,10.343,17.144,14.746,17.038,13.492,-0.38,12.032,18.998,3.163,14.219,19.123,3.395,10.899,16.928,17.392,-1.584,15.958,1.962,19.7,8.078,7.946,13.596,4.766,6.833,20.638,-0.569,6.616,12.252,5.525,9.314,3.814,13.729,12.02,13.774,4.276,22.957,7.619,-2.115,6.903,23.827,6.61,1.19,9.392,20.486,4.041,7.667,26.542,7.569,18.394,-0.945,-8.673,-7.386,19.283,20.908,28.306,-0.451,12.115,18.457,20.876,17.861,-1.481,15.596,22.833,9.69,4.861,4.519,-2.976,11.774,18.362,22.73,6.644,2.092,4.004,18.275,6.55,16.94,6.419,8.0,9.448,16.871,11.083,21.778,7.078,2.347,-2.029,2.077,10.259,17.145,21.432,17.453,9.983,14.361],[25.575,24.538,8.687,13.043,10.967,10.338,4.34,5.276,9.747,17.957,28.867,23.78,12.397,-0.875,12.868,19.727,15.943,16.466,12.741,12.173,9.519,0.078,17.269,12.685,3.947,4.651,7.954,19.441,11.879,19.864,3.094,13.341,7.081,14.543,7.933,-1.434,6.362,3.326,21.415,-8.343,-1.219,7.349,22.33,10.302,0.033,19.293,16.763,19.484,26.635,11.125,3.907,-3.176,5.282,23.28,21.324,7.766,11.266,12.527,7.967,1.204,17.158,5.644,17.641,17.484,24.514,19.488,10.652,13.396,10.996,0.772,11.07,6.57,26.846,12.046,4.363,30.693,22.867,6.173,28.591,24.62,11.453,14.451,9.54,10.457,7.49,10.858,11.447,23.332,2.899,18.602,14.112,23.979,-1.983,12.978,12.768,12.703,21.509,14.299,16.815,4.731,9.751,16.943,14.466,17.408,13.552,0.236,11.905,18.999,2.93,13.363,19.576,3.761,10.822,16.159,17.69,-1.694,15.724,1.897,19.679,7.574,8.294,13.293,4.447,7.093,20.782,-0.566,6.634,12.493,5.691,9.162,4.205,13.267,12.243,13.603,4.594,22.977,7.989,-2.327,6.275,23.492,6.845,1.196,9.297,20.705,4.27,8.081,26.354,6.809,18.409,-0.592,-8.692,-7.547,18.354,20.572,28.076,-0.642,11.989,18.587,20.947,18.249,-1.355,15.819,22.812,9.474,4.948,4.602,-2.445,12.032,18.761,22.502,6.158,1.653,3.8,18.264,7.123,16.472,6.501,7.676,9.624,17.518,10.859,21.753,7.07,2.171,-2.141,2.857,10.526,17.386,21.932,17.211,10.183,14.286],[25.543,24.702,8.736,13.196,10.879,10.228,4.508,5.713,9.898,17.857,28.947,23.751,12.704,-0.727,12.941,19.578,16.225,16.366,12.557,12.177,9.253,0.139,17.108,12.543,3.86,4.406,7.941,19.548,11.68,19.817,2.907,13.453,7.106,14.576,7.688,-1.443,6.278,3.443,21.415,-8.433,-1.206,7.432,22.263,10.385,0.013,19.352,16.742,19.586,26.434,11.046,3.97,-3.172,5.302,23.292,21.173,7.837,11.371,12.528,7.94,1.405,17.16,5.399,17.596,17.4,24.842,19.319,10.672,13.111,11.285,0.904,11.098,7.379,27.182,12.092,4.448,30.817,23.433,6.035,28.814,24.652,11.412,14.776,9.776,10.322,7.129,11.284,11.294,23.416,3.332,18.564,13.782,24.113,-1.978,13.171,12.307,12.809,21.235,14.576,16.569,4.562,9.517,16.771,14.282,17.495,13.608,0.716,11.405,19.007,2.493,13.135,20.082,4.057,10.636,16.039,17.762,-1.659,15.574,1.673,19.6,7.642,7.564,13.315,4.694,6.688,21.007,-0.817,6.936,12.527,5.759,8.796,4.441,13.089,12.341,13.962,5.016,22.846,8.019,-2.266,6.311,23.714,6.621,1.284,9.163,20.755,4.138,8.467,27.078,6.322,18.113,-0.941,-8.451,-7.637,18.646,20.713,27.306,-0.495,12.069,18.469,20.836,18.307,-1.321,15.677,23.257,9.598,4.436,4.655,-2.075,12.325,18.562,22.612,5.971,2.109,3.544,18.279,7.527,16.717,7.133,7.641,9.54,17.445,10.586,21.707,7.161,2.39,-2.349,2.889,10.324,16.752,21.641,16.707,10.567,14.473],[25.374,24.789,8.809,13.252,10.694,10.281,4.678,5.944,10.032,17.779,29.227,23.78,12.924,-0.585,13.214,19.404,16.432,16.115,12.335,12.179,9.049,0.148,17.032,12.407,4.012,4.331,7.832,19.512,11.54,19.801,2.789,13.599,7.047,14.712,7.538,-1.516,6.183,3.555,21.41,-8.43,-0.999,7.567,22.244,10.399,0.026,19.34,16.713,19.622,26.309,10.907,4.012,-3.277,5.316,23.38,21.146,7.822,11.524,12.594,7.962,1.652,17.087,5.061,17.487,17.218,24.833,19.027,11.002,12.983,11.304,1.247,10.956,7.7,27.011,11.755,4.635,31.096,23.643,6.234,28.798,24.703,11.268,14.679,9.649,10.665,6.984,11.469,10.86,23.555,3.92,18.508,14.029,23.987,-1.675,13.126,11.942,13.0,20.991,15.176,16.246,3.806,9.566,17.032,14.116,17.726,13.126,0.609,11.465,18.863,2.516,13.36,19.641,3.502,10.584,16.745,17.619,-1.596,15.696,1.468,19.805,7.645,7.43,13.07,4.682,6.454,21.001,-0.631,7.16,12.784,5.669,8.605,4.4,13.459,12.152,14.031,4.725,22.706,7.694,-2.159,6.393,23.676,6.429,1.211,9.173,20.632,4.139,8.106,27.377,6.402,18.331,-1.599,-8.764,-7.574,19.598,20.934,27.214,-0.36,12.2,18.264,20.944,18.073,-1.421,15.582,23.127,9.522,4.513,4.701,-2.355,11.635,18.579,22.179,6.198,2.765,3.377,18.072,7.554,17.47,7.448,8.095,9.516,16.958,10.879,22.022,7.14,2.636,-2.261,2.318,10.46,17.115,21.468,16.744,10.344,14.458],[25.238,24.896,8.888,13.02,10.438,10.404,4.935,5.989,10.24,17.729,29.398,23.851,12.883,-0.416,13.512,19.194,16.718,15.972,12.12,12.253,8.821,-0.003,17.179,12.444,4.055,4.27,7.66,19.483,11.498,19.811,2.849,13.751,7.003,14.807,7.458,-1.618,6.153,3.579,21.387,-8.47,-0.889,7.545,22.318,10.428,0.052,19.277,16.778,19.732,26.338,10.802,4.0,-3.415,5.337,23.593,21.174,7.747,11.692,12.509,8.115,1.635,17.075,4.7,17.303,17.195,24.991,19.031,11.447,13.057,11.123,1.202,11.496,7.567,26.926,11.55,4.719,31.151,23.392,6.366,29.238,24.827,11.811,14.804,9.094,10.707,7.079,11.283,10.926,23.609,3.577,18.266,14.439,23.961,-1.364,13.897,12.061,12.5,20.528,14.965,16.36,4.092,9.525,16.353,13.901,17.857,12.382,0.086,11.874,18.954,2.828,13.351,19.281,3.51,10.419,16.473,17.762,-1.27,15.775,1.589,19.583,8.375,7.773,12.602,4.478,6.496,20.933,-0.656,7.107,13.255,5.39,8.823,4.499,13.659,12.368,14.23,4.691,22.491,7.298,-2.126,6.103,23.323,6.451,1.542,9.345,20.381,4.864,7.502,27.324,6.824,18.506,-1.972,-8.894,-7.544,19.513,20.666,27.135,-0.287,12.19,18.333,20.942,18.053,-1.22,15.3,22.678,9.229,4.796,4.599,-2.699,11.432,18.591,22.416,6.152,2.372,3.495,17.636,7.116,16.963,7.358,8.481,9.607,16.663,10.633,22.204,7.163,2.343,-1.927,2.638,10.344,17.74,21.843,16.838,10.875,14.148],[25.255,24.906,8.838,12.832,10.169,10.565,5.071,5.955,10.407,17.69,29.451,23.901,12.836,-0.263,13.834,19.012,16.821,15.835,12.009,12.315,8.689,-0.309,17.312,12.504,4.023,4.185,7.734,19.492,11.559,19.789,2.955,13.939,6.981,14.771,7.394,-1.713,6.175,3.725,21.323,-8.555,-0.973,7.306,22.289,10.492,0.117,19.276,16.826,19.833,26.419,10.782,3.928,-3.431,5.406,23.756,21.364,7.669,11.881,12.336,8.389,1.403,17.23,4.537,16.993,17.26,25.111,19.279,11.073,12.675,11.412,1.301,11.681,7.47,26.796,11.439,5.025,31.193,23.223,6.413,29.593,24.731,11.903,15.413,8.598,10.165,7.173,11.003,11.493,23.736,3.455,18.423,14.451,24.51,-1.708,13.904,12.184,12.458,20.245,15.162,16.986,4.471,9.317,16.044,13.819,17.982,12.783,-0.012,12.09,18.681,2.364,13.524,19.476,3.979,10.425,16.084,17.773,-0.811,15.66,1.892,19.119,8.451,7.783,12.677,4.322,6.386,21.172,-1.046,6.821,13.335,5.531,8.854,4.63,13.302,12.461,13.926,4.862,22.608,7.698,-2.402,6.124,23.299,6.048,1.597,9.165,20.523,4.706,7.558,26.685,6.984,18.164,-1.723,-8.612,-7.708,18.883,20.515,27.602,-0.559,12.113,18.535,20.541,18.455,-0.816,15.771,22.922,9.429,4.845,4.128,-2.838,11.853,18.446,22.733,5.808,2.282,2.978,17.833,6.607,16.802,6.857,8.319,9.151,16.781,10.237,22.367,6.977,2.494,-1.854,2.676,10.923,17.325,21.729,16.996,11.105,14.284],[25.356,24.851,8.711,12.838,9.846,10.754,5.1,5.909,10.422,17.767,29.401,23.943,12.876,-0.122,14.153,18.846,16.801,15.732,11.991,12.392,8.551,-0.598,17.292,12.472,4.027,4.032,7.856,19.396,11.669,19.734,3.053,14.097,6.923,14.485,7.388,-1.816,6.357,3.899,21.368,-8.569,-0.984,6.997,22.122,10.537,0.102,19.261,16.923,19.786,26.548,10.844,3.926,-3.434,5.302,23.866,21.612,7.453,12.143,12.332,8.54,1.131,17.3,4.417,16.755,17.334,24.634,19.116,10.873,12.654,11.949,1.556,11.298,7.288,26.851,11.208,5.246,31.237,23.366,6.517,29.062,24.472,12.053,15.931,8.691,10.181,7.033,10.655,11.213,23.938,3.613,18.329,14.289,24.75,-1.472,13.908,11.824,12.404,19.923,15.213,17.474,3.821,9.258,16.323,13.818,18.091,13.185,0.409,11.855,18.514,2.328,13.554,19.518,4.197,10.552,15.99,17.533,-1.424,15.546,1.767,19.461,7.929,8.074,13.236,4.691,6.67,21.473,-0.849,6.988,13.579,5.915,8.582,4.77,13.115,12.656,13.965,5.265,22.556,7.95,-2.679,6.182,23.518,5.86,1.208,8.997,20.665,4.468,7.762,25.981,6.598,18.358,-0.751,-8.721,-7.83,18.725,20.691,27.938,-0.45,12.048,18.81,20.861,18.617,-1.4,16.26,23.823,9.464,4.795,4.222,-2.68,11.97,18.93,22.618,5.235,1.969,2.613,17.56,6.825,17.487,7.214,8.763,9.184,16.599,10.492,22.317,7.029,2.745,-2.199,2.321,11.456,16.913,22.167,17.148,11.167,14.073],[25.423,24.742,8.648,12.934,9.696,10.864,5.19,5.936,10.408,17.751,29.299,24.062,13.005,0.129,14.375,18.699,16.875,15.837,11.803,12.461,8.382,-0.841,17.305,12.303,3.978,4.004,7.989,19.316,11.733,19.627,3.12,14.249,6.969,14.275,7.347,-1.997,6.555,4.027,21.491,-8.594,-0.877,6.747,22.158,10.615,-0.079,19.398,17.152,19.613,26.555,10.799,3.932,-3.49,4.992,23.997,21.818,7.331,12.372,12.415,8.673,0.877,17.332,4.201,16.601,17.512,24.515,19.386,11.031,13.281,11.88,1.513,11.25,7.322,27.201,11.227,4.97,30.97,23.386,6.446,28.358,24.751,12.36,16.087,9.018,10.145,6.783,11.113,10.994,24.019,3.818,18.196,14.111,24.216,-1.218,14.237,11.692,12.401,20.242,15.016,17.076,3.274,9.348,16.389,13.585,17.823,13.166,-0.222,11.63,18.347,2.233,13.434,19.606,4.106,10.726,16.084,17.537,-2.104,15.627,1.499,19.804,7.327,7.765,13.333,4.429,7.265,21.334,-0.806,7.352,13.665,5.387,9.017,4.466,13.163,12.845,13.586,5.505,22.38,8.437,-2.594,6.453,23.438,5.85,1.498,9.222,20.347,4.719,7.554,25.983,6.166,18.42,-0.072,-9.076,-7.506,19.474,20.862,28.222,-0.462,12.195,18.89,20.746,18.051,-1.496,15.808,23.973,9.441,4.864,4.438,-2.513,11.873,18.539,23.068,5.015,1.97,2.73,17.147,6.966,17.21,7.866,9.398,9.151,16.508,10.56,22.404,6.896,2.593,-2.444,2.02,10.886,17.539,22.472,16.716,11.54,14.234],[25.448,24.635,8.617,13.022,9.798,10.895,5.303,5.98,10.482,17.561,29.13,24.296,13.199,0.403,14.498,18.608,17.007,16.009,11.5,12.425,8.215,-1.18,17.355,12.12,3.835,3.971,8.124,19.36,11.748,19.485,3.019,14.218,7.073,14.256,7.435,-2.138,6.781,4.149,21.551,-8.595,-0.705,6.64,22.373,10.745,-0.28,19.494,17.247,19.471,26.543,10.594,3.892,-3.587,4.61,24.133,22.007,7.327,12.403,12.533,8.803,0.802,17.392,3.95,16.47,17.628,24.662,19.108,11.467,13.359,11.107,1.597,11.511,7.584,26.972,11.457,4.723,30.958,23.476,6.552,28.527,25.325,12.434,16.022,9.342,9.795,6.825,11.292,11.413,24.102,3.949,18.074,14.201,23.982,-1.383,14.681,11.713,12.478,20.455,15.205,16.98,4.003,9.049,16.812,13.25,18.015,13.322,-0.642,11.601,18.016,2.158,13.431,19.498,4.07,10.584,16.629,17.6,-2.114,15.626,1.625,19.324,7.105,7.959,12.993,4.293,6.926,21.362,-0.927,6.954,13.677,5.579,9.16,4.461,13.117,12.748,13.171,5.407,22.129,8.307,-2.692,6.232,23.267,5.555,1.518,9.515,20.825,5.198,7.049,26.518,5.864,18.76,0.106,-8.834,-7.576,19.514,20.526,27.808,-0.673,12.171,18.998,21.062,17.822,-1.164,16.122,23.462,9.248,4.879,4.124,-2.888,11.871,18.454,23.08,5.241,1.928,2.812,17.403,6.619,17.301,8.141,9.365,8.962,16.368,10.063,22.482,6.459,2.439,-2.647,2.001,10.994,17.897,22.122,17.713,11.37,14.394],[25.529,24.6,8.599,13.057,9.842,10.916,5.371,6.018,10.509,17.274,29.033,24.574,13.45,0.514,14.537,18.374,17.15,16.116,11.329,12.153,8.071,-1.377,17.483,12.006,3.842,3.988,8.092,19.419,11.774,19.475,2.842,14.033,7.094,14.386,7.462,-2.16,6.938,4.282,21.604,-8.49,-0.531,6.705,22.476,10.801,-0.255,19.573,17.41,19.379,26.537,10.471,3.861,-3.824,4.284,24.09,22.077,7.328,12.377,12.619,8.951,0.914,17.5,3.81,16.333,17.826,24.137,18.825,11.535,13.023,11.34,1.588,11.826,7.383,26.451,11.364,4.885,30.704,23.595,6.658,28.58,25.514,12.334,15.524,9.305,9.933,6.803,10.795,11.478,24.3,3.898,18.02,14.613,24.641,-1.189,15.081,11.733,12.253,19.92,15.555,17.171,4.04,8.431,16.625,13.052,18.176,13.214,-0.562,11.365,18.192,2.217,12.995,19.07,3.7,10.453,16.599,17.748,-2.382,15.785,1.71,19.106,7.458,8.123,13.194,4.538,6.661,21.248,-1.021,6.537,13.736,5.945,8.659,4.569,12.99,12.633,13.868,5.527,22.345,8.244,-2.904,6.392,23.419,5.3,1.16,9.726,21.089,4.982,7.059,26.622,5.767,18.472,-0.287,-8.688,-7.713,19.103,20.663,27.632,-0.519,12.427,19.098,21.16,18.067,-0.806,16.354,23.403,9.132,5.157,3.681,-3.262,11.97,19.084,23.117,5.297,1.48,2.62,17.445,6.277,17.466,7.729,8.758,9.142,16.475,10.086,22.79,6.045,2.527,-2.675,2.162,11.21,17.418,22.389,17.648,11.73,14.432],[25.572,24.535,8.557,13.064,9.696,10.884,5.388,5.985,10.559,17.201,28.96,24.796,13.647,0.543,14.451,17.983,17.258,16.042,11.445,11.843,7.902,-1.392,17.51,11.91,3.864,4.08,7.979,19.454,11.81,19.455,2.662,13.868,6.998,14.567,7.277,-2.173,6.98,4.231,21.771,-8.35,-0.348,6.817,22.463,10.926,-0.005,19.461,17.524,19.446,26.469,10.626,3.972,-4.142,4.116,24.02,22.132,7.234,12.423,12.657,8.934,0.979,17.628,3.795,16.159,17.944,24.271,18.696,11.226,12.676,11.888,1.687,11.864,7.224,26.797,11.453,5.164,30.455,23.282,6.549,28.521,24.835,12.124,15.155,8.859,10.384,7.149,10.523,11.404,24.939,3.727,17.858,15.089,25.195,-1.28,15.24,11.628,12.201,19.474,15.679,17.289,3.508,8.571,15.711,13.082,18.333,12.614,-0.544,11.254,18.355,2.237,12.773,19.396,3.808,10.179,16.436,17.662,-1.984,16.054,1.735,19.569,8.187,8.15,13.484,4.77,6.536,21.346,-1.25,6.237,13.61,5.999,8.934,4.482,13.17,12.381,14.227,5.711,22.854,8.336,-2.646,5.945,23.698,5.482,1.72,9.38,20.588,4.856,7.344,26.676,5.94,18.495,-1.181,-8.924,-7.271,18.344,21.132,27.642,-0.191,12.616,19.232,20.911,18.33,-0.551,16.321,23.381,9.342,5.303,3.452,-3.373,12.055,19.056,23.198,5.247,1.764,2.424,17.408,6.846,18.099,7.785,8.386,9.202,16.684,10.395,22.785,5.848,2.428,-2.746,2.535,11.199,17.5,23.111,17.26,11.655,14.437],[25.501,24.477,8.455,13.126,9.558,10.734,5.328,5.839,10.655,17.288,28.966,25.035,13.548,0.397,14.276,17.845,17.386,15.779,11.574,11.489,7.893,-1.336,17.473,11.837,3.828,4.128,7.893,19.464,11.767,19.531,2.525,13.773,6.786,14.731,7.177,-2.172,6.951,4.16,21.856,-8.255,-0.286,6.871,22.589,11.058,0.209,19.38,17.446,19.6,26.331,11.003,4.09,-4.36,4.049,23.945,22.237,7.123,12.395,12.59,8.886,1.075,17.818,3.892,16.088,18.038,24.564,18.474,11.354,12.618,11.764,2.04,11.98,7.528,26.952,11.609,4.837,30.84,23.146,6.422,28.434,24.781,12.32,15.061,9.223,10.041,7.432,10.81,11.388,24.886,3.781,18.158,14.505,24.825,-0.803,15.494,11.389,12.272,19.254,15.514,17.175,3.886,8.862,15.767,13.462,18.142,12.287,-0.56,11.837,17.444,2.363,13.098,19.521,3.967,9.932,16.515,17.744,-1.481,15.91,1.587,19.612,7.929,8.042,13.26,4.595,6.491,21.021,-1.029,7.042,13.775,5.422,8.801,4.259,13.392,12.228,13.844,5.568,23.526,8.692,-2.497,5.846,23.786,5.891,2.139,9.668,20.937,4.846,7.451,26.408,6.391,18.765,-1.266,-8.172,-7.084,18.597,20.912,27.945,-0.329,12.623,19.293,21.079,18.279,-0.471,16.794,23.489,9.612,5.369,3.848,-3.47,12.257,18.938,23.31,5.363,1.921,2.569,17.14,7.209,17.736,7.839,8.383,8.81,16.286,10.505,22.456,5.76,2.56,-3.16,2.426,11.391,17.702,22.86,17.673,11.451,14.478],[25.34,24.461,8.462,13.176,9.489,10.639,5.153,5.9,10.594,17.425,29.229,25.116,13.17,0.351,14.16,17.96,17.31,15.624,11.502,11.313,7.97,-1.209,17.488,11.854,3.925,4.036,7.779,19.468,11.696,19.533,2.379,13.895,6.599,14.873,7.272,-2.164,7.02,4.245,21.955,-8.037,-0.276,6.861,22.77,11.186,-0.017,19.462,17.482,19.698,26.285,11.231,4.274,-4.477,4.08,23.85,22.245,7.084,12.273,12.608,8.91,1.188,17.912,4.254,16.12,18.075,24.216,18.889,11.486,13.294,11.822,1.716,11.428,7.385,26.825,11.451,4.448,30.783,23.402,6.224,28.772,25.045,11.982,15.023,9.501,9.603,7.129,10.592,11.168,24.803,3.789,18.027,14.307,24.555,-1.145,15.534,11.634,12.139,19.612,15.619,17.163,4.125,8.972,15.885,13.413,18.511,12.283,-0.543,11.9,17.055,2.181,12.566,19.968,3.819,9.442,16.09,17.959,-1.486,16.028,1.181,19.114,7.182,7.953,12.941,4.398,6.456,20.74,-0.814,7.659,13.428,4.88,8.296,4.069,13.864,12.564,13.651,5.631,23.6,8.637,-2.269,6.208,23.845,5.65,1.715,10.02,21.289,4.646,7.402,25.973,6.588,18.573,-0.629,-8.199,-7.292,19.32,21.041,27.662,0.053,12.626,19.207,20.885,18.257,-0.926,16.368,23.391,9.851,5.195,4.053,-3.478,12.11,19.009,23.51,5.718,1.828,2.882,17.267,6.301,17.696,7.4,8.846,8.844,15.931,10.728,22.349,5.902,2.608,-3.7,2.205,11.399,18.222,22.194,17.872,11.445,14.406],[25.24,24.408,8.486,13.132,9.427,10.491,4.934,6.026,10.383,17.509,29.527,24.975,12.731,0.341,14.161,18.181,17.214,15.624,11.37,11.277,8.113,-1.159,17.492,11.845,4.081,3.863,7.701,19.506,11.645,19.577,2.207,14.08,6.478,14.995,7.503,-2.037,6.991,4.196,22.126,-7.814,-0.367,6.699,22.752,11.181,-0.389,19.518,17.392,19.714,26.212,11.219,4.429,-4.531,4.192,23.848,22.224,6.963,12.068,12.746,8.902,1.171,17.952,4.728,16.13,18.104,24.434,19.153,11.357,13.975,11.647,1.308,11.016,7.558,26.898,11.518,4.843,31.31,23.3,6.617,28.956,24.975,12.005,15.233,9.481,9.468,6.908,10.29,10.928,25.211,3.314,17.755,13.818,24.986,-1.32,15.239,11.624,12.039,19.608,15.428,17.495,4.305,8.499,16.199,13.04,18.375,12.129,0.048,11.196,17.475,2.168,13.013,19.629,4.09,9.592,15.701,17.729,-1.828,16.009,1.038,19.424,7.329,7.787,13.168,4.21,6.25,21.149,-0.769,7.109,13.319,4.725,8.94,3.844,13.701,12.91,14.421,5.53,23.077,8.347,-2.798,6.326,24.045,5.556,1.257,10.231,21.225,4.882,7.344,26.117,7.044,18.847,0.087,-8.203,-7.012,19.559,21.257,27.618,0.084,12.796,19.009,21.05,18.095,-1.123,16.065,23.182,9.651,5.579,4.183,-3.439,12.117,19.315,23.443,6.181,2.053,3.555,17.51,6.292,17.967,7.513,9.383,8.612,16.693,10.621,22.244,5.879,2.778,-4.423,2.474,11.066,18.007,21.78,17.956,11.195,14.571],[25.416,24.396,8.487,13.192,9.347,10.267,4.839,6.192,10.151,17.491,29.751,24.928,12.341,0.306,14.248,18.45,17.01,15.781,11.383,11.256,8.237,-1.212,17.44,11.917,4.279,3.803,7.64,19.642,11.557,19.673,2.037,14.215,6.458,15.047,7.897,-1.931,6.857,4.077,22.179,-7.621,-0.569,6.418,22.58,11.169,-0.388,19.474,17.148,19.616,26.258,10.967,4.61,-4.594,4.369,23.841,22.168,6.859,11.699,12.93,8.878,1.258,17.945,5.19,16.186,18.264,24.327,19.107,11.397,13.428,11.088,1.755,10.774,7.605,27.003,11.4,4.767,31.536,23.38,6.728,29.291,25.051,11.909,15.467,9.53,9.803,6.943,10.503,10.656,25.317,3.368,18.025,13.512,24.68,-1.25,14.929,11.121,12.032,19.215,15.321,17.676,4.441,9.137,16.308,13.12,17.979,12.211,-0.287,11.371,17.778,1.924,13.264,19.71,4.299,9.509,16.169,17.872,-2.216,15.707,1.036,19.999,7.969,7.659,13.054,4.205,6.415,21.539,-0.573,6.22,13.497,4.73,9.126,3.779,13.204,12.87,15.201,5.403,22.717,7.828,-2.768,6.338,23.884,5.949,1.405,10.156,21.113,5.078,7.377,25.746,7.613,18.495,0.351,-7.848,-6.548,19.318,21.103,27.204,-0.824,12.978,18.881,20.865,18.069,-0.717,16.24,23.341,9.284,5.743,4.248,-3.227,12.6,19.612,23.652,6.267,1.261,3.992,17.479,6.191,17.673,7.413,9.387,8.097,16.796,10.619,22.738,6.077,2.854,-4.985,2.723,10.704,17.508,21.441,17.906,11.173,14.847],[25.658,24.387,8.513,13.197,9.513,10.171,4.794,6.21,10.074,17.443,29.694,25.055,12.176,0.345,14.429,18.58,16.656,16.06,11.5,11.148,8.539,-1.31,17.325,12.092,4.533,3.717,7.576,19.84,11.562,19.755,1.811,14.191,6.355,15.07,8.167,-1.894,6.797,4.127,22.087,-7.42,-0.73,6.266,22.475,11.255,-0.317,19.333,17.032,19.499,26.179,10.661,4.795,-4.609,4.504,23.916,22.051,6.769,11.402,13.136,8.783,1.261,17.941,5.469,16.157,18.381,24.543,19.032,11.211,12.618,10.584,1.985,10.448,7.745,27.203,11.568,4.182,31.567,23.341,6.524,29.19,25.722,11.812,15.241,9.312,10.085,7.195,10.084,10.589,24.845,3.523,18.136,13.244,24.466,-0.896,14.758,11.301,12.401,19.632,14.9,17.407,4.532,9.266,16.554,13.423,17.896,12.45,-0.755,11.694,18.183,2.228,12.733,19.772,3.99,9.737,16.447,18.08,-2.368,15.818,0.805,19.73,8.023,7.998,12.685,4.589,5.938,21.282,-0.64,6.599,13.552,5.194,9.115,3.506,13.327,12.959,15.211,5.485,22.818,7.139,-2.176,7.019,23.71,5.722,1.489,9.984,21.192,4.682,7.091,25.731,7.489,18.265,-0.221,-7.951,-6.5,18.619,21.008,27.603,-0.557,12.697,18.896,20.843,18.15,-0.102,16.338,23.306,9.058,5.631,3.937,-3.375,12.386,19.41,23.692,6.527,1.009,3.941,17.473,5.875,17.667,7.28,9.252,8.366,16.262,10.507,23.28,6.419,3.085,-5.339,3.019,10.449,17.832,21.371,17.618,10.498,15.06],[25.935,24.404,8.562,13.115,9.773,10.26,4.558,6.09,10.097,17.417,29.404,25.188,12.206,0.481,14.582,18.599,16.33,16.314,11.616,11.105,8.903,-1.348,17.181,12.137,4.627,3.726,7.452,19.918,11.69,19.817,1.528,13.99,6.421,15.099,8.247,-1.859,6.756,4.201,21.93,-7.443,-0.742,6.15,22.461,11.294,-0.273,19.23,17.093,19.424,26.106,10.58,4.995,-4.63,4.639,24.011,21.881,6.819,11.119,13.174,8.681,1.214,17.969,5.482,16.084,18.301,24.052,18.957,11.576,12.926,10.686,1.893,10.468,7.689,27.313,11.706,4.252,30.75,23.234,6.56,29.2,26.047,11.592,15.005,9.413,10.156,7.263,9.895,10.848,24.508,3.185,17.963,13.457,25.219,-0.762,14.741,11.548,12.737,20.264,14.537,17.017,5.131,8.562,16.686,13.579,17.265,12.376,-1.136,11.306,18.6,2.084,12.941,19.692,4.501,9.704,16.443,18.436,-1.983,16.087,0.24,19.515,8.393,7.526,13.178,4.298,5.696,21.086,-0.525,6.509,13.49,5.23,9.818,3.136,13.615,12.882,14.418,5.684,23.114,6.551,-2.24,7.297,23.849,5.899,1.355,10.463,21.459,4.543,6.969,26.087,6.804,18.182,-0.703,-7.511,-6.473,18.215,21.012,27.487,-0.183,12.909,18.967,20.734,18.43,-0.25,16.136,23.077,9.039,5.852,3.63,-3.664,12.563,19.407,23.223,6.934,1.181,4.055,17.223,6.431,17.584,7.359,9.559,8.454,16.219,10.157,23.806,6.256,3.231,-5.852,3.053,10.429,18.194,21.851,17.629,10.053,15.076],[26.196,24.359,8.557,13.228,9.825,10.277,4.296,5.999,10.226,17.403,29.092,25.303,12.417,0.539,14.74,18.587,15.97,16.472,11.65,11.051,9.057,-1.2,17.021,12.152,4.771,3.662,7.316,19.999,11.904,19.875,1.213,13.766,6.498,15.024,8.396,-1.834,6.723,4.237,21.78,-7.538,-0.693,6.033,22.463,11.519,-0.219,19.209,17.212,19.398,26.041,10.766,5.334,-4.752,4.7,24.046,21.788,7.022,10.887,13.132,8.642,1.134,18.101,5.424,16.166,18.121,24.375,19.014,11.401,13.184,10.905,1.586,10.635,7.497,27.51,11.738,4.274,30.954,22.98,6.536,28.618,26.497,11.748,14.749,9.892,10.487,7.185,10.323,10.703,25.442,3.064,17.778,13.126,25.347,-0.638,14.647,11.282,12.387,20.103,14.249,16.923,4.837,9.122,16.572,13.39,17.007,12.063,-1.264,11.357,18.647,1.923,13.409,19.43,4.632,9.481,16.797,18.803,-1.776,15.428,-0.034,19.465,8.866,7.108,13.78,4.048,6.256,21.091,-0.45,6.219,13.131,5.123,9.303,2.801,13.703,12.321,13.945,5.992,23.134,6.299,-2.6,6.968,23.836,5.454,1.249,10.394,21.089,4.511,7.059,26.096,6.088,18.142,-0.577,-7.572,-6.637,18.699,21.021,26.895,-0.41,13.128,18.806,20.311,18.381,-1.075,15.957,23.014,9.158,6.11,3.893,-3.38,12.667,19.176,22.909,7.014,1.33,4.341,17.169,6.759,17.683,7.278,9.8,8.882,16.621,10.376,24.072,6.609,3.445,-6.286,2.665,9.887,18.23,22.22,17.615,10.295,15.005],[26.432,24.353,8.438,13.406,9.757,10.251,4.153,5.923,10.302,17.347,28.91,25.474,12.495,0.543,14.817,18.665,15.609,16.605,11.525,10.949,9.241,-1.055,16.819,12.181,4.829,3.569,7.342,20.082,12.152,19.908,0.999,13.536,6.456,14.815,8.427,-1.842,6.672,4.319,21.567,-7.526,-0.704,5.821,22.375,11.833,-0.247,19.199,17.145,19.488,25.834,11.082,5.628,-4.903,4.842,24.063,21.809,7.335,10.867,13.04,8.527,1.031,18.088,5.392,16.409,18.045,24.636,19.046,11.463,13.131,10.98,1.813,10.667,7.488,27.614,11.576,3.951,30.683,22.857,6.399,27.834,26.829,12.103,15.063,9.841,10.491,7.252,10.446,10.13,26.212,2.994,17.762,13.255,24.813,-1.05,15.205,11.455,12.252,19.377,13.914,17.179,4.923,10.119,16.985,13.112,17.046,11.858,-0.973,11.786,18.032,1.632,13.138,19.652,4.211,9.053,16.843,18.782,-1.616,15.198,0.137,19.509,8.558,7.707,13.582,4.05,5.751,21.399,-0.576,6.719,13.016,5.52,9.281,2.743,13.551,12.355,14.242,5.835,23.093,6.247,-2.878,7.351,24.088,5.399,1.617,10.384,21.126,4.713,6.79,26.139,6.319,18.025,-0.475,-8.303,-6.937,19.017,20.88,27.22,-0.526,13.314,19.019,20.702,18.086,-1.41,16.023,23.188,9.487,6.272,4.257,-3.562,12.55,19.294,22.863,6.332,1.028,4.47,17.318,6.968,16.845,7.144,10.14,9.256,16.612,11.06,23.707,6.721,3.74,-6.38,2.455,9.367,18.316,22.364,17.424,10.563,14.853],[26.687,24.38,8.192,13.395,9.849,10.193,4.108,6.016,10.289,17.303,28.685,25.665,12.389,0.576,14.981,18.708,15.415,16.695,11.462,10.859,9.477,-1.006,16.643,12.164,4.665,3.444,7.471,20.07,12.384,20.005,0.934,13.481,6.653,14.59,8.408,-1.999,6.543,4.408,21.353,-7.517,-0.816,5.616,22.347,11.937,-0.256,19.327,17.018,19.602,25.689,11.296,5.774,-5.166,4.911,24.059,21.854,7.577,10.804,12.955,8.421,0.87,17.922,5.433,16.736,17.801,24.194,18.971,11.625,13.903,11.218,2.044,10.606,7.477,27.611,11.822,4.025,30.523,22.928,6.492,27.991,26.336,11.989,15.207,9.338,10.323,7.179,9.983,9.999,25.531,2.873,17.716,13.521,25.213,-0.886,15.733,11.523,12.286,19.691,13.774,17.285,5.622,9.722,16.681,13.302,16.92,11.49,-0.626,11.92,17.864,1.71,13.194,19.786,4.725,9.14,16.785,18.6,-1.649,15.674,0.628,19.903,8.869,7.928,13.62,4.134,5.773,21.549,-0.385,6.125,12.606,5.518,9.763,2.783,13.005,12.011,14.545,5.583,22.763,6.927,-2.681,7.59,24.04,5.801,1.45,11.085,21.021,4.762,6.044,25.446,6.965,17.958,-0.394,-7.988,-6.346,19.176,21.117,27.198,-0.763,13.657,18.813,20.634,18.424,-0.903,16.005,23.259,9.497,6.422,4.609,-3.663,12.522,19.368,23.112,5.449,0.612,4.185,17.577,7.512,16.635,7.118,9.894,9.399,16.659,11.412,23.358,6.774,3.997,-6.093,2.422,10.119,17.976,22.416,17.797,10.329,14.836],[26.827,24.361,8.033,13.408,10.009,10.041,4.181,6.224,10.36,17.252,28.625,25.76,12.215,0.688,15.134,18.738,15.525,16.723,11.632,10.878,9.681,-1.042,16.49,12.276,4.638,3.418,7.641,19.964,12.45,20.172,0.951,13.479,6.812,14.552,8.567,-2.047,6.512,4.417,21.255,-7.334,-0.939,5.446,22.477,11.928,-0.273,19.495,16.897,19.862,25.489,11.296,5.896,-5.25,4.843,23.992,21.915,7.682,10.534,12.889,8.416,0.648,17.752,5.475,17.045,17.636,24.361,18.651,11.086,13.841,11.277,1.726,10.687,7.603,27.805,12.234,4.023,30.412,22.876,6.713,28.268,26.002,11.515,15.368,8.481,10.922,6.716,9.923,10.753,24.558,3.041,17.907,13.568,25.731,-0.748,16.039,11.33,12.74,20.33,13.72,17.042,5.122,9.506,16.832,13.409,16.537,11.18,-0.313,11.692,18.329,1.523,13.113,19.975,4.626,9.002,17.03,18.146,-1.976,15.949,0.509,19.736,8.637,7.699,14.18,3.854,5.865,21.204,-0.681,6.593,12.605,5.424,9.485,2.716,12.961,12.514,14.093,5.737,22.432,7.636,-2.696,7.498,23.856,5.421,1.147,10.905,20.643,4.394,5.98,25.217,6.846,18.201,-0.637,-7.75,-6.394,18.73,21.057,27.056,-0.772,13.55,18.409,20.648,18.761,-1.027,15.568,23.22,9.401,6.361,4.653,-3.675,12.465,19.023,23.338,5.34,0.784,4.307,18.226,7.643,17.004,6.782,8.964,9.442,16.938,11.05,23.503,6.665,3.958,-6.403,2.407,9.843,17.83,21.867,17.326,10.158,14.743],[26.92,24.465,7.923,13.426,10.253,9.978,4.207,6.289,10.397,17.205,28.702,25.68,12.233,0.666,15.291,18.861,15.657,16.942,11.866,10.84,9.786,-1.002,16.491,12.505,4.542,3.367,7.598,19.657,12.342,20.436,1.018,13.607,6.815,14.572,8.775,-2.149,6.542,4.26,21.179,-7.104,-1.094,5.376,22.59,11.835,-0.387,19.632,16.7,20.0,25.249,11.263,5.805,-5.159,4.705,23.965,21.958,7.71,10.217,12.892,8.413,0.539,17.621,5.518,17.41,17.605,24.662,18.498,11.474,12.914,10.964,2.079,10.416,7.596,27.895,12.117,3.806,30.555,23.077,6.974,28.032,25.931,11.05,15.251,8.056,10.968,6.364,10.422,11.02,25.417,2.904,18.258,13.279,25.644,-0.815,16.324,11.23,12.775,20.595,13.827,16.133,4.989,10.098,16.857,13.517,16.318,11.416,-0.536,12.088,18.383,1.879,13.02,19.676,4.589,9.002,16.91,17.906,-2.464,15.524,-0.162,19.604,8.354,7.321,14.034,3.962,6.477,20.778,-0.788,6.678,12.766,5.692,9.594,2.62,13.264,12.384,13.866,5.845,21.705,7.676,-2.216,7.449,23.937,5.01,1.509,10.461,20.89,4.561,6.289,25.509,6.406,18.325,-0.949,-7.685,-6.945,19.063,20.934,26.864,-0.225,13.558,18.259,20.971,19.026,-1.561,15.249,23.339,9.657,6.555,4.253,-4.073,12.307,19.015,23.038,5.962,0.451,4.635,18.113,7.631,16.826,6.728,8.262,9.506,17.339,10.77,23.446,6.607,3.945,-6.802,2.179,8.906,17.985,21.464,16.881,10.105,14.651],[26.949,24.737,7.727,13.198,10.515,9.997,4.124,6.168,10.454,17.146,28.743,25.605,12.197,0.701,15.468,19.011,15.581,17.194,12.043,10.797,9.905,-0.857,16.481,12.691,4.511,3.437,7.502,19.307,12.277,20.604,1.025,13.693,6.794,14.665,8.818,-2.218,6.509,4.183,21.04,-6.996,-1.329,5.363,22.677,11.77,-0.344,19.588,16.449,20.119,25.084,11.369,5.63,-5.123,4.649,23.984,21.913,7.756,9.917,12.925,8.26,0.462,17.555,5.698,17.715,17.497,24.631,18.671,11.65,12.883,11.347,2.03,10.416,7.848,28.011,11.818,3.935,30.667,23.18,6.523,28.336,25.618,11.265,15.283,8.503,10.697,6.746,10.554,11.093,25.887,2.752,17.912,13.277,25.255,-0.565,16.574,11.566,12.853,20.796,13.766,15.766,5.058,9.907,16.794,13.812,16.415,11.672,-1.322,11.793,18.483,1.701,13.704,19.895,4.119,8.991,16.877,18.11,-2.139,15.555,-0.59,19.14,8.783,7.19,13.633,3.874,6.196,21.097,-0.596,5.824,13.364,5.636,10.267,2.272,13.489,11.954,13.576,5.399,21.588,7.326,-2.729,7.915,23.64,5.191,1.549,10.65,20.574,4.794,6.521,25.32,6.428,18.338,-0.867,-7.904,-6.39,19.416,20.928,26.632,-0.596,13.425,18.148,21.131,19.098,-1.665,15.385,23.418,9.703,6.33,3.95,-3.863,12.284,18.952,22.813,6.403,0.539,4.233,18.107,7.359,17.0,7.089,8.19,9.659,17.889,11.147,23.098,6.483,3.847,-6.778,1.849,9.147,18.349,21.311,17.294,9.753,14.732],[26.757,24.927,7.633,12.819,10.611,10.279,4.125,6.045,10.6,17.035,28.839,25.557,12.186,0.821,15.602,19.154,15.315,17.297,12.327,10.799,9.987,-0.616,16.474,12.963,4.614,3.56,7.369,19.133,12.189,20.622,0.948,13.794,6.624,14.62,8.847,-2.22,6.489,4.187,20.844,-6.962,-1.527,5.295,22.637,11.801,-0.321,19.427,16.338,20.243,24.933,11.586,5.506,-5.051,4.637,23.962,21.716,7.78,9.757,12.898,8.162,0.299,17.664,5.884,17.91,17.574,25.076,18.632,11.571,13.223,11.253,1.631,10.423,7.508,27.98,12.082,3.422,30.645,23.192,6.303,28.278,25.737,11.615,15.407,9.121,11.239,6.686,10.445,10.514,25.126,2.999,17.42,12.755,25.317,-0.801,16.712,11.961,13.013,20.894,13.85,15.918,4.747,9.792,17.115,14.066,16.854,11.659,-1.475,11.231,18.778,1.847,14.028,19.95,4.297,8.943,17.071,17.909,-1.821,15.632,-0.582,18.093,9.07,7.345,13.596,4.06,5.647,22.151,-0.714,6.139,13.589,5.29,9.961,2.133,13.582,12.173,13.622,5.249,22.082,6.748,-3.273,8.196,23.48,5.651,1.334,10.715,19.969,4.679,6.709,25.338,6.707,18.185,-1.05,-7.298,-6.183,19.417,20.998,26.563,-0.845,13.446,17.835,20.794,19.304,-1.777,15.028,23.505,9.779,5.972,4.536,-4.009,12.54,19.028,22.956,6.385,1.067,4.542,18.983,6.791,16.788,6.664,8.194,9.584,17.873,11.491,22.785,6.471,3.552,-6.334,1.584,9.204,18.366,21.175,16.806,9.769,14.737],[26.429,24.983,7.72,12.604,10.578,10.539,4.069,5.986,10.573,16.928,28.965,25.435,12.072,0.851,15.688,19.253,15.207,17.283,12.577,10.844,9.979,-0.475,16.453,13.257,4.713,3.714,7.248,19.096,12.044,20.665,0.996,13.89,6.475,14.439,8.852,-2.302,6.457,4.288,20.592,-6.87,-1.71,5.351,22.453,12.008,-0.524,19.254,16.301,20.266,24.885,11.8,5.368,-4.954,4.715,23.89,21.412,7.677,9.772,12.968,8.056,0.172,17.866,6.024,18.135,17.684,25.58,18.558,11.38,13.108,11.204,2.204,10.241,7.444,27.961,11.556,3.579,30.811,23.433,6.644,28.253,26.03,12.24,15.457,9.306,11.055,6.477,10.306,10.861,25.067,3.104,17.444,12.57,25.479,-0.881,16.523,12.846,13.316,21.006,13.548,16.266,5.257,10.657,17.137,14.312,16.671,11.403,-1.086,11.301,18.988,2.147,13.701,20.288,4.971,9.06,17.158,17.452,-0.955,15.636,-0.844,18.655,8.901,7.647,13.755,4.233,5.552,22.368,-0.682,5.845,13.084,5.009,9.898,1.796,13.277,12.534,13.655,4.932,22.326,6.965,-2.826,7.539,23.717,5.52,1.141,10.725,20.19,4.553,6.493,24.837,6.59,17.947,-1.422,-7.704,-6.349,19.081,20.91,26.8,-0.598,13.688,17.898,20.502,19.084,-1.742,14.948,23.262,10.201,6.038,5.071,-3.878,12.598,19.326,22.932,6.043,0.439,5.087,18.722,7.284,16.605,6.579,8.003,9.477,17.65,11.439,22.77,6.299,3.455,-6.253,1.435,8.489,18.284,21.134,16.68,10.127,14.582],[26.187,24.98,7.749,12.446,10.408,10.902,4.012,5.996,10.424,16.913,29.164,25.354,11.794,1.082,15.706,19.271,15.173,17.182,12.839,10.95,9.972,-0.382,16.378,13.495,4.82,3.941,7.247,19.15,12.073,20.856,1.002,13.849,6.386,14.185,8.789,-2.331,6.446,4.274,20.43,-6.947,-1.821,5.347,22.273,12.243,-0.793,19.005,16.405,20.167,24.916,11.968,5.267,-4.737,4.878,23.834,21.13,7.668,9.873,13.125,7.937,0.045,18.072,6.083,18.229,17.666,25.659,18.448,11.587,12.551,11.196,2.045,10.016,7.621,27.615,10.971,4.105,31.105,23.458,6.351,28.854,25.424,12.391,15.68,9.466,11.007,6.617,10.213,11.384,25.12,2.687,17.818,12.62,25.398,-0.506,16.267,13.135,13.638,20.721,13.501,16.608,5.304,10.622,16.565,14.448,16.128,11.531,-1.06,11.55,19.736,2.242,13.645,20.423,5.039,9.179,17.188,17.393,0.251,15.483,-0.76,19.564,8.867,7.159,13.735,3.965,5.866,22.412,-0.814,5.636,12.892,5.163,10.156,1.309,13.039,12.667,13.609,5.149,22.009,7.2,-2.467,7.559,23.735,5.251,1.139,10.946,19.903,4.832,6.337,24.114,6.346,17.846,-1.609,-8.096,-5.992,19.435,20.588,26.581,-1.307,13.901,18.088,20.274,19.15,-2.188,15.568,22.893,10.493,5.839,4.975,-3.918,12.479,19.234,22.459,5.603,-0.285,4.8,18.225,7.62,16.729,6.97,7.711,9.479,18.216,11.157,22.651,6.647,3.495,-6.298,1.317,8.974,18.198,21.608,17.204,9.874,15.003],[26.064,24.875,7.882,12.215,10.134,11.235,4.105,5.991,10.312,16.972,29.509,25.329,11.507,1.181,15.686,19.325,15.205,16.936,13.109,11.088,9.912,-0.312,16.295,13.682,4.847,4.159,7.155,19.219,12.288,21.125,0.903,13.77,6.362,13.878,8.832,-2.365,6.498,4.121,20.359,-7.011,-1.881,5.235,22.173,12.344,-0.956,18.608,16.767,20.223,24.868,12.008,5.178,-4.436,5.105,23.75,20.992,7.767,10.058,13.26,7.854,-0.146,18.23,5.995,18.242,17.583,25.909,18.384,11.848,12.494,10.605,1.945,9.994,7.41,27.114,11.472,3.674,31.245,23.318,5.979,29.356,25.181,12.427,15.677,9.119,11.175,7.34,10.317,12.253,25.52,3.073,17.681,12.791,25.353,-0.634,16.353,12.565,13.802,20.359,13.272,16.435,4.714,9.93,16.543,14.864,15.706,11.765,-0.82,11.627,20.314,2.315,14.128,20.261,4.599,9.226,17.097,17.339,0.713,15.198,-0.899,19.179,9.201,7.063,13.496,4.312,6.435,21.862,-0.798,5.628,13.117,5.289,10.015,1.031,13.325,12.259,13.421,5.504,21.697,7.104,-2.903,7.783,23.454,5.767,0.947,11.212,19.567,4.711,6.223,24.311,6.444,17.651,-1.35,-7.54,-6.488,19.65,20.549,26.669,-1.7,14.045,18.206,20.171,18.972,-2.507,15.551,23.233,10.406,5.427,4.511,-4.334,12.871,18.933,22.086,6.062,0.316,4.604,18.71,7.46,16.936,6.709,7.31,9.518,18.372,11.38,22.642,6.947,3.386,-6.226,0.82,9.311,17.826,21.919,16.812,9.488,15.115],[26.061,24.837,8.141,12.064,10.092,11.44,4.288,5.9,10.174,17.025,29.926,25.392,11.468,1.074,15.622,19.404,15.244,16.624,13.291,11.149,9.778,-0.248,16.228,13.886,4.687,4.39,7.022,19.13,12.403,21.312,0.8,13.662,6.4,13.624,8.95,-2.49,6.662,3.891,20.433,-6.863,-1.932,5.122,22.265,12.408,-0.988,18.365,17.079,20.288,24.833,11.877,5.013,-4.342,5.088,23.693,21.011,7.89,10.238,13.423,7.686,-0.282,18.177,5.967,18.311,17.289,25.634,18.641,11.16,12.501,10.514,2.489,9.913,7.636,26.937,11.567,4.05,31.736,23.054,6.339,29.642,25.489,12.478,15.564,9.394,10.551,6.971,10.488,12.71,25.121,2.76,17.473,12.807,25.345,-0.472,16.524,12.512,13.833,20.46,13.334,15.997,5.164,10.358,16.721,15.024,15.625,11.969,-0.467,11.994,20.416,2.602,14.291,19.684,3.968,9.404,17.089,17.731,0.557,14.781,-0.74,18.901,9.64,7.357,13.762,5.104,5.789,21.647,-0.722,5.618,13.104,5.261,9.691,0.672,13.244,12.274,13.194,4.855,21.078,7.213,-3.323,7.709,23.387,5.957,0.693,10.895,19.65,5.005,6.21,24.431,6.574,16.842,-1.539,-8.027,-6.755,19.338,20.498,26.637,-1.507,13.82,18.591,19.761,18.977,-1.968,15.554,23.462,10.44,5.257,4.261,-3.551,13.247,19.059,21.891,6.965,0.849,4.284,18.234,7.213,16.637,6.523,7.028,9.64,18.235,11.348,22.634,6.937,3.311,-6.157,0.304,9.401,17.702,21.902,17.119,9.591,15.099],[26.154,24.761,8.341,11.993,10.128,11.637,4.453,5.907,10.06,17.02,30.325,25.352,11.581,1.12,15.468,19.505,15.3,16.483,13.318,11.173,9.777,-0.084,16.067,14.065,4.52,4.671,7.028,19.127,12.428,21.391,0.859,13.65,6.447,13.506,8.943,-2.551,6.885,3.669,20.646,-6.791,-1.928,5.108,22.397,12.495,-1.065,18.106,17.215,20.131,24.696,11.641,4.901,-4.324,4.84,23.672,21.039,8.036,10.404,13.496,7.455,-0.313,17.995,6.091,18.316,17.002,25.261,18.689,11.322,12.704,10.551,2.389,9.885,7.299,27.025,10.576,4.543,32.154,22.924,6.574,29.985,25.511,13.054,15.383,10.0,10.561,7.152,10.203,12.166,25.13,2.688,17.579,12.614,25.14,-0.559,16.749,12.921,13.758,20.914,13.549,15.9,4.666,10.85,16.269,15.107,16.064,11.752,-0.712,11.896,20.172,3.03,14.024,19.938,4.082,9.221,17.031,17.593,0.132,14.693,-0.85,18.795,9.408,6.693,14.148,5.047,5.63,22.029,-0.91,5.822,12.599,5.186,9.719,0.444,12.682,12.441,12.761,4.39,21.405,7.304,-3.375,7.466,23.055,5.324,0.734,10.884,19.753,5.14,6.089,24.921,6.22,16.724,-1.666,-8.259,-6.413,19.507,20.511,26.279,-1.403,13.842,18.567,19.462,19.161,-1.788,15.953,23.058,9.975,5.584,4.809,-3.314,12.993,18.838,22.153,6.651,0.071,4.547,18.675,7.108,16.179,6.211,7.393,9.827,18.011,11.19,22.622,6.634,3.106,-5.824,0.21,9.405,18.193,21.989,17.128,9.933,15.341],[26.296,24.602,8.544,11.908,10.066,11.923,4.556,5.952,10.045,16.948,30.617,25.189,11.652,1.207,15.256,19.566,15.363,16.557,13.14,11.037,9.82,0.252,15.817,14.107,4.44,4.874,7.103,19.141,12.386,21.289,0.88,13.628,6.495,13.481,8.773,-2.589,6.921,3.625,20.949,-6.821,-1.802,5.054,22.284,12.586,-1.231,18.077,17.218,19.99,24.482,11.212,4.888,-4.244,4.747,23.553,21.161,8.177,10.538,13.508,7.198,-0.345,17.844,6.218,18.382,16.885,24.693,18.333,11.612,12.851,10.497,1.932,9.983,7.159,27.458,10.583,4.427,32.379,22.788,6.612,30.294,25.562,13.349,15.402,10.161,11.342,7.481,10.37,12.006,25.283,2.828,17.768,12.45,25.386,-0.589,16.834,13.109,13.85,21.197,13.694,16.078,4.609,10.705,16.147,14.977,16.83,11.408,-0.752,11.517,20.242,3.273,14.12,19.977,4.327,9.278,16.774,17.394,-0.261,14.677,-0.7,18.895,8.98,6.784,13.941,4.364,5.817,22.568,-1.006,5.737,12.612,5.319,10.139,0.775,12.595,12.624,12.292,4.911,22.177,7.529,-2.876,7.237,23.423,4.917,0.527,11.356,20.462,4.573,6.44,25.409,6.716,16.813,-1.879,-7.895,-6.585,19.355,20.524,26.118,-1.313,14.22,18.716,19.428,18.615,-2.389,16.09,23.415,9.518,5.621,4.615,-3.747,12.991,18.811,22.144,6.474,-0.457,4.847,18.548,7.432,15.899,5.945,7.784,9.926,18.444,10.838,22.143,6.436,3.125,-5.895,0.28,9.456,18.394,21.734,16.428,10.209,14.989],[26.429,24.41,8.584,11.957,10.137,12.074,4.529,5.961,10.204,16.904,30.826,25.115,11.577,1.118,15.096,19.583,15.509,16.505,12.807,10.983,9.74,0.602,15.609,14.175,4.46,4.886,7.166,19.179,12.338,21.084,0.925,13.688,6.491,13.45,8.766,-2.589,6.899,3.694,21.332,-6.886,-1.781,5.036,22.178,12.737,-1.427,18.219,17.176,19.971,24.5,10.743,4.948,-4.265,4.706,23.391,21.251,8.253,10.657,13.425,6.98,-0.358,17.771,6.251,18.524,16.835,24.124,18.214,10.92,12.805,10.359,2.161,10.116,7.405,27.894,11.008,4.104,32.466,22.826,6.231,30.571,25.91,13.242,15.152,10.078,11.494,7.496,10.342,12.801,25.214,3.268,17.681,12.824,25.49,-0.821,16.605,12.933,14.466,21.053,13.659,16.395,5.044,10.545,16.335,14.59,16.784,11.566,-0.196,11.819,20.171,3.432,13.686,19.912,4.211,9.155,17.459,17.314,-0.238,14.407,-0.757,19.565,8.857,7.169,13.82,4.208,6.166,22.193,-1.003,5.774,13.196,5.169,10.008,1.434,12.568,12.109,12.261,4.989,22.54,7.887,-2.523,7.538,23.545,4.866,0.309,11.525,20.564,4.43,6.599,24.874,7.195,16.924,-1.633,-8.19,-6.495,19.422,20.684,26.208,-1.743,14.273,18.704,19.708,18.489,-2.661,16.02,23.464,9.237,5.16,4.027,-3.716,12.957,18.841,22.424,6.177,-0.005,4.835,18.035,8.001,16.129,6.568,7.199,10.107,18.329,10.368,21.969,6.35,3.128,-6.12,-0.157,9.927,18.309,21.212,16.578,10.374,14.835],[26.538,24.264,8.476,12.048,10.234,12.208,4.531,5.999,10.187,16.958,30.883,25.16,11.528,0.995,14.933,19.482,15.702,16.507,12.499,10.993,9.56,0.815,15.452,14.263,4.57,4.909,7.296,19.266,12.423,20.907,1.031,13.731,6.348,13.437,9.01,-2.591,7.089,3.752,21.716,-7.019,-1.854,5.094,22.192,12.907,-1.531,18.366,17.291,19.994,24.631,10.319,4.957,-4.227,4.55,23.252,21.267,8.38,10.897,13.327,6.705,-0.346,17.703,6.127,18.573,16.887,23.599,18.7,11.481,12.895,10.591,2.249,10.207,7.248,28.141,11.316,4.321,32.656,22.74,5.776,30.824,26.032,13.181,15.075,9.813,11.219,7.268,10.327,12.946,24.796,3.132,17.554,12.755,25.048,-0.603,16.616,12.214,14.035,21.008,13.75,16.055,4.828,10.311,16.277,14.23,16.168,11.65,0.009,11.89,20.057,3.484,13.481,20.06,4.052,9.008,17.023,17.547,0.581,14.264,-0.643,19.704,8.968,6.942,13.904,4.232,6.431,21.634,-0.961,5.777,13.243,5.263,9.723,1.686,12.319,12.146,12.286,4.635,22.259,7.197,-3.056,7.446,22.86,4.688,0.22,11.473,20.349,4.794,6.748,24.419,6.6,17.21,-1.25,-8.271,-6.526,19.445,20.431,26.376,-2.259,14.51,18.593,19.638,18.852,-2.04,15.745,23.089,9.109,5.196,4.228,-3.459,12.983,18.951,22.735,6.204,0.363,4.822,18.508,8.455,16.321,6.941,7.305,10.002,17.891,10.005,21.855,6.196,3.127,-6.007,-0.022,9.655,18.216,21.261,16.782,10.377,14.997],[26.7,24.066,8.25,12.133,10.18,12.28,4.535,5.948,10.05,17.215,30.85,25.086,11.573,0.887,14.785,19.39,15.825,16.525,12.254,10.848,9.388,0.772,15.303,14.286,4.705,4.994,7.381,19.401,12.532,20.858,1.227,13.597,6.197,13.398,9.106,-2.594,7.102,3.784,21.968,-7.249,-1.774,5.141,22.072,13.056,-1.469,18.436,17.413,20.031,24.664,10.019,4.864,-4.12,4.41,23.133,21.262,8.496,10.981,13.324,6.464,-0.362,17.608,5.961,18.556,17.058,23.645,18.895,11.688,13.043,10.31,2.189,10.198,7.568,27.998,11.074,4.318,32.652,22.773,6.02,30.786,25.911,13.548,15.197,9.997,11.148,7.147,10.79,12.641,25.038,3.149,17.33,12.686,24.886,-0.515,16.465,12.188,13.715,20.863,13.994,15.417,4.878,10.403,16.483,13.659,16.188,11.768,0.381,11.771,20.162,3.529,14.055,19.952,4.217,9.096,16.597,17.642,1.654,14.57,-0.544,19.008,8.92,7.117,14.027,4.714,6.169,21.069,-0.911,5.531,12.982,5.238,10.123,1.726,12.335,12.192,12.145,4.704,21.786,7.864,-3.26,7.602,22.917,5.087,-0.043,11.627,20.866,5.138,6.526,25.132,6.338,17.126,-1.439,-8.134,-6.989,19.394,20.259,26.346,-1.704,14.18,18.905,19.748,18.773,-1.91,16.219,23.304,8.533,5.701,4.55,-3.382,13.582,19.07,22.974,6.42,0.224,4.553,18.274,8.967,16.636,6.436,7.491,9.906,18.009,9.862,21.852,6.232,3.145,-5.734,0.562,10.0,18.392,21.292,17.061,10.386,15.039],[26.876,23.861,8.164,12.235,10.062,12.232,4.546,5.909,9.952,17.471,30.821,24.979,11.667,0.854,14.652,19.4,15.93,16.496,12.089,10.843,9.342,0.757,15.167,14.372,4.868,5.133,7.45,19.287,12.567,20.904,1.347,13.42,6.132,13.367,9.058,-2.551,7.03,3.891,22.114,-7.523,-1.641,5.093,22.018,12.995,-1.269,18.357,17.52,20.025,24.774,9.906,4.856,-3.929,4.463,23.239,21.364,8.586,10.996,13.425,6.287,-0.377,17.651,5.787,18.516,17.178,24.0,18.619,11.311,12.998,9.495,2.143,10.112,7.332,28.101,11.008,3.883,32.429,23.205,6.508,30.231,25.612,13.5,14.967,9.635,10.94,7.181,10.494,12.544,25.3,3.046,17.808,12.492,24.714,-0.807,16.411,12.645,13.889,20.776,14.12,15.345,4.811,10.524,16.862,13.664,16.816,11.368,0.225,11.733,20.311,3.235,14.232,19.388,4.393,8.938,17.14,17.874,2.06,14.332,-0.233,18.758,8.49,7.13,14.047,5.657,6.183,20.892,-1.189,6.165,12.706,4.584,10.074,1.846,12.478,11.932,12.072,4.834,22.084,7.893,-2.906,7.644,22.934,5.525,0.232,12.036,21.442,5.132,6.429,25.237,6.678,17.018,-1.884,-8.58,-6.769,19.552,20.319,26.062,-1.153,14.086,19.26,19.831,18.598,-2.093,16.31,23.564,8.195,5.308,4.445,-3.456,13.693,18.953,22.776,6.566,0.206,4.14,17.866,8.919,17.006,5.594,6.805,10.178,17.87,10.036,21.916,6.166,3.182,-5.547,0.509,9.835,18.317,21.225,17.221,10.487,14.913],[26.971,23.732,8.208,12.378,9.807,12.085,4.446,5.844,9.797,17.619,30.66,24.833,11.618,0.867,14.556,19.491,16.046,16.609,12.188,10.787,9.367,0.709,14.993,14.568,4.892,5.264,7.576,19.219,12.513,20.832,1.449,13.11,6.093,13.317,8.842,-2.486,6.933,4.033,22.29,-7.649,-1.561,5.155,22.158,12.762,-0.994,18.179,17.605,19.998,24.866,10.064,4.879,-3.779,4.517,23.458,21.602,8.757,10.995,13.52,6.083,-0.371,17.746,5.617,18.346,17.252,23.817,18.672,10.907,12.96,9.79,2.037,10.582,6.908,28.454,11.065,3.748,32.381,23.237,7.02,30.079,25.659,13.112,14.558,9.531,10.636,6.798,10.352,12.184,24.823,3.161,18.92,12.712,24.451,-0.681,16.367,12.596,14.663,20.694,14.251,15.732,4.902,10.501,16.87,13.893,17.147,11.079,-0.137,12.299,20.443,3.491,13.713,19.912,4.559,8.872,17.22,17.491,2.1,14.163,-0.147,19.262,8.541,6.887,13.85,6.056,6.336,21.475,-1.041,6.028,12.578,4.444,9.744,1.986,12.197,11.71,12.203,4.863,22.536,7.623,-2.743,7.48,22.943,5.313,0.866,11.942,21.502,5.198,6.327,25.786,6.598,17.207,-1.775,-8.966,-7.113,19.394,20.405,25.761,-1.286,14.156,19.329,19.632,18.59,-1.863,16.381,23.574,8.34,5.145,4.555,-3.1,13.279,18.854,22.05,6.726,0.232,3.93,18.248,8.37,16.402,4.818,6.32,10.462,17.695,9.904,21.901,6.344,2.984,-5.529,0.279,9.591,18.48,20.943,17.074,10.624,14.651],[27.047,23.722,8.212,12.448,9.57,11.779,4.376,5.705,9.702,17.823,30.513,24.565,11.555,0.869,14.436,19.571,16.119,16.778,12.424,10.696,9.369,0.64,14.912,14.917,4.774,5.448,7.658,19.231,12.458,20.815,1.55,12.728,6.021,13.2,8.649,-2.382,6.791,4.14,22.424,-7.74,-1.485,5.184,22.289,12.5,-0.782,18.135,17.564,19.985,24.887,10.23,4.857,-3.687,4.564,23.586,21.724,8.969,10.991,13.509,5.906,-0.36,17.791,5.451,18.147,17.205,22.872,19.057,10.748,13.365,10.565,2.154,10.96,6.896,28.672,11.474,3.861,32.381,22.79,6.732,30.35,26.033,13.066,14.626,9.836,10.348,6.978,10.303,11.961,24.612,2.788,19.033,13.21,24.476,-0.762,16.136,12.079,15.003,20.918,14.473,15.781,5.329,10.228,16.652,14.24,17.427,11.419,0.13,11.967,20.425,3.649,14.022,19.811,4.509,8.914,16.978,17.551,1.412,14.388,-0.217,19.778,9.29,7.09,13.747,5.73,6.959,21.882,-0.86,5.925,12.187,4.854,9.686,2.248,11.857,11.563,12.573,4.989,22.726,7.353,-2.845,7.251,23.293,4.836,1.02,11.431,22.06,5.488,6.571,26.043,5.894,16.861,-1.096,-8.752,-7.072,19.201,20.581,26.124,-1.149,13.745,19.118,19.605,18.782,-1.867,16.09,23.726,8.715,5.408,4.401,-3.143,13.197,18.925,21.334,6.462,0.227,4.098,18.416,7.821,16.129,4.697,6.364,10.58,17.428,9.727,21.956,6.507,3.207,-5.526,0.271,9.741,18.992,21.19,17.136,10.446,14.923],[27.07,23.654,8.254,12.63,9.475,11.378,4.244,5.497,9.749,18.017,30.65,24.327,11.557,0.848,14.356,19.662,16.244,16.819,12.621,10.621,9.474,0.636,14.87,15.24,4.694,5.588,7.841,19.291,12.325,20.775,1.678,12.59,6.033,13.187,8.548,-2.219,6.548,4.199,22.521,-7.823,-1.402,5.153,22.376,12.182,-0.55,18.212,17.331,20.005,24.942,10.136,4.865,-3.536,4.541,23.734,21.696,9.073,10.983,13.691,5.786,-0.398,17.9,5.279,17.884,17.142,22.722,19.408,11.14,13.423,10.442,2.411,10.602,6.624,28.541,11.435,4.185,32.334,22.735,6.421,30.352,26.826,12.753,14.926,9.648,10.021,7.357,9.988,12.186,24.531,2.62,18.346,13.231,24.26,-0.706,16.133,12.333,14.808,21.215,14.522,15.894,4.666,9.993,17.436,14.379,17.38,11.666,0.226,11.42,20.411,3.874,14.484,19.79,4.363,8.839,16.895,17.475,0.756,14.458,-0.083,20.046,9.049,6.975,13.955,5.566,7.148,21.592,-1.09,5.85,11.742,5.469,10.098,2.498,12.075,11.277,12.894,5.127,22.682,7.116,-3.004,7.217,23.711,4.573,1.086,10.483,23.074,5.096,6.618,25.413,5.693,16.682,-1.239,-8.907,-6.82,19.112,20.57,26.334,-0.802,13.372,18.958,19.651,18.77,-1.593,15.796,23.701,8.77,5.16,4.221,-3.04,13.061,19.04,21.374,6.038,0.592,4.055,18.016,7.782,16.697,5.512,6.4,10.634,17.446,9.818,22.03,6.298,3.28,-5.264,0.163,9.834,18.763,21.769,17.018,10.226,15.105],[27.0,23.609,8.27,12.854,9.413,11.187,4.204,5.283,9.859,18.103,30.67,24.187,11.497,0.926,14.462,19.754,16.367,16.876,12.83,10.431,9.505,0.661,14.826,15.364,4.616,5.62,8.003,19.431,12.16,20.6,1.891,12.618,6.146,13.401,8.581,-2.022,6.356,4.119,22.535,-7.911,-1.375,5.109,22.448,11.779,-0.247,18.389,17.103,19.948,24.923,9.948,4.686,-3.306,4.378,23.836,21.579,9.071,10.91,13.956,5.731,-0.408,17.981,5.092,17.649,17.155,23.064,19.173,11.451,13.581,9.713,2.201,10.206,6.775,28.445,11.325,4.421,32.379,22.435,6.212,30.869,27.399,12.453,14.74,9.81,10.274,7.044,10.327,11.97,24.245,2.751,18.745,12.92,23.789,-0.696,16.09,12.797,14.978,21.078,14.616,15.582,4.371,10.045,17.582,14.695,17.664,11.546,0.266,11.829,20.344,3.892,14.274,20.002,4.415,9.067,16.977,17.845,0.447,14.178,0.366,19.457,8.289,7.381,13.677,5.451,6.854,21.452,-0.879,5.859,12.016,4.769,10.273,2.733,12.186,11.342,12.445,4.929,22.447,7.145,-3.016,7.377,23.193,4.547,0.991,10.283,23.881,5.005,6.651,25.633,5.692,17.133,-0.795,-8.784,-7.651,19.09,20.678,26.252,-0.73,13.051,18.182,19.632,18.83,-1.427,15.577,24.025,8.478,5.183,4.096,-2.817,13.371,19.502,22.035,5.999,0.481,3.74,17.642,8.231,16.896,6.319,6.631,10.205,17.118,9.589,22.174,6.171,2.982,-4.895,0.226,9.735,18.466,22.186,17.256,10.58,15.475],[26.978,23.461,8.181,12.971,9.43,11.293,4.246,5.265,9.933,18.098,30.535,24.12,11.389,0.874,14.611,19.799,16.55,16.956,13.025,10.365,9.348,0.659,14.792,15.341,4.595,5.401,8.118,19.664,12.186,20.372,2.209,12.699,6.134,13.583,8.708,-1.878,6.239,3.941,22.462,-8.149,-1.343,5.11,22.386,11.464,0.011,18.682,17.005,19.836,24.94,9.73,4.462,-3.14,4.225,23.865,21.511,8.903,10.878,14.206,5.914,-0.431,18.109,4.902,17.453,17.247,23.595,19.302,11.517,14.151,9.562,2.075,10.467,6.766,28.578,11.715,4.367,32.326,22.563,5.584,30.789,26.929,12.754,14.701,9.771,10.402,6.683,9.887,11.746,24.626,3.197,19.291,12.23,23.706,-0.77,16.355,12.758,15.063,21.106,14.937,15.375,5.02,10.02,16.985,14.753,17.683,11.159,0.153,11.98,20.574,3.964,14.343,19.671,4.52,8.496,17.234,18.264,0.641,14.195,0.675,19.127,8.263,7.551,13.271,5.25,6.97,21.245,-0.938,6.201,12.207,4.662,10.161,2.699,12.112,11.428,12.485,4.798,22.67,6.516,-2.514,7.142,23.032,4.836,1.413,10.615,24.207,5.136,6.499,25.893,5.599,17.356,-0.35,-8.886,-7.517,18.912,20.69,26.036,-0.722,12.873,17.977,19.556,18.647,-1.243,15.051,24.539,8.268,5.021,3.463,-2.378,13.73,19.854,22.115,6.046,-0.01,3.393,17.871,9.099,16.599,5.966,6.68,9.989,17.273,9.183,22.343,6.184,2.723,-4.705,0.516,9.696,18.227,22.168,17.107,10.523,15.815],[26.946,23.386,7.897,13.009,9.31,11.426,4.242,5.271,9.969,18.021,30.532,24.268,11.296,0.761,14.696,19.911,16.641,16.907,13.012,10.326,9.178,0.669,14.87,15.343,4.765,4.955,8.253,19.853,12.366,20.158,2.428,12.676,6.016,13.624,8.619,-1.866,6.09,3.871,22.493,-8.321,-1.317,5.163,22.268,11.265,0.205,18.852,16.986,19.669,25.052,9.592,4.462,-3.027,4.207,23.909,21.51,8.73,10.86,14.377,6.173,-0.507,18.375,4.757,17.413,17.358,23.687,19.193,11.603,14.024,9.895,2.133,10.311,6.995,28.514,11.979,4.092,32.167,22.446,5.149,30.066,26.176,12.683,15.149,9.435,9.408,6.856,10.065,12.328,24.265,3.397,19.052,12.791,23.936,-0.892,16.444,13.092,15.014,21.288,15.342,16.146,4.556,10.127,17.103,14.668,18.039,10.65,-0.009,11.831,20.71,3.726,14.502,19.506,4.65,8.638,17.415,18.576,0.903,14.316,0.914,19.742,8.63,7.356,13.581,4.917,7.302,20.643,-0.791,6.068,12.071,5.283,9.849,2.975,12.256,11.076,13.081,4.668,22.733,7.032,-2.022,7.104,22.579,4.971,1.416,11.143,23.938,4.562,6.441,25.897,5.596,17.543,-0.204,-9.131,-7.14,18.627,20.405,26.121,-0.361,12.795,18.292,20.242,18.616,-1.004,15.282,24.441,8.181,4.577,2.735,-2.379,13.465,19.917,21.448,5.969,-0.054,3.414,18.38,9.494,16.974,5.908,6.671,9.959,17.02,9.496,22.348,5.865,2.699,-4.646,0.285,9.833,17.754,22.185,17.114,10.256,15.898],[26.846,23.397,7.688,12.931,9.009,11.518,4.216,5.364,10.04,17.956,30.504,24.479,11.362,0.724,14.829,20.078,16.759,16.837,13.02,10.36,9.263,0.64,15.182,15.364,4.89,4.441,8.355,20.015,12.522,20.023,2.58,12.564,5.778,13.748,8.375,-1.902,6.094,3.765,22.397,-8.404,-1.302,5.258,22.114,11.269,0.314,19.036,17.022,19.433,25.084,9.689,4.419,-2.978,4.08,24.016,21.473,8.585,10.913,14.297,6.308,-0.588,18.695,4.653,17.47,17.495,23.766,19.003,11.62,13.709,10.245,2.197,10.48,6.944,28.274,11.796,4.134,32.212,22.021,4.902,30.249,25.487,12.599,15.449,9.38,9.15,6.857,10.293,11.893,24.445,2.944,18.658,13.054,24.12,-0.901,16.244,12.926,15.25,21.502,15.151,16.218,4.764,9.754,17.636,14.776,17.991,10.703,-0.105,12.102,20.482,2.696,14.274,19.48,4.428,8.381,16.849,18.195,1.013,14.619,1.085,20.116,7.993,7.45,14.077,4.765,7.171,19.753,-0.877,5.972,11.684,5.434,9.478,3.344,12.14,11.412,13.355,4.835,22.887,7.352,-2.032,7.117,22.212,4.611,1.395,11.325,24.132,4.722,6.705,25.903,5.321,17.561,-0.24,-8.889,-7.725,18.51,20.468,26.464,-0.456,12.546,18.622,20.587,18.631,-0.873,15.829,24.267,8.191,5.007,2.799,-2.386,13.313,19.38,21.169,6.129,0.318,3.613,18.429,9.628,17.379,6.627,6.835,9.909,16.609,9.461,22.39,5.665,3.26,-4.663,0.219,9.509,17.913,22.587,17.316,10.056,16.033],[26.788,23.45,7.742,12.717,8.747,11.518,4.109,5.487,10.084,17.881,30.411,24.629,11.402,0.694,14.969,20.13,16.82,16.843,12.994,10.371,9.3,0.498,15.55,15.424,4.977,3.981,8.44,20.008,12.696,19.807,2.63,12.535,5.641,13.914,8.157,-1.915,6.165,3.728,22.315,-8.586,-1.254,5.388,22.221,11.395,0.371,19.186,17.149,19.139,25.112,9.846,4.507,-2.997,3.941,24.24,21.471,8.527,10.925,14.17,6.403,-0.557,19.017,4.54,17.423,17.57,23.491,19.146,11.641,13.793,10.44,2.289,10.527,6.847,27.564,11.61,4.151,32.263,22.106,4.454,30.094,25.406,12.872,15.678,9.443,9.101,6.642,9.555,12.34,24.791,3.2,19.185,13.175,24.661,-0.639,16.551,12.893,15.084,21.598,15.059,16.005,5.155,9.976,17.269,14.691,18.015,11.192,-0.133,12.03,20.742,2.313,14.123,19.613,4.403,8.7,16.401,18.285,0.928,14.68,1.414,20.239,7.76,7.811,14.261,4.493,6.909,19.237,-0.798,5.686,11.4,4.573,9.538,3.697,12.487,11.698,13.02,4.529,22.774,6.637,-2.701,6.992,22.162,4.672,1.391,11.106,23.767,5.215,6.716,25.646,5.313,18.037,-0.254,-8.812,-7.777,18.661,20.422,26.508,-0.788,12.441,18.872,20.608,18.203,-1.149,15.871,24.311,8.567,4.819,2.582,-2.13,13.536,18.975,20.837,6.36,0.392,3.531,17.858,9.623,17.16,6.775,6.585,9.631,17.522,9.129,22.621,5.594,2.993,-4.599,0.015,9.343,18.04,22.681,17.121,10.258,15.771],[26.691,23.599,7.947,12.531,8.448,11.622,3.998,5.453,10.095,18.009,30.326,24.789,11.431,0.766,15.203,20.1,16.788,16.814,12.903,10.572,9.332,0.183,15.853,15.44,5.033,3.746,8.519,19.954,12.607,19.536,2.643,12.583,5.513,14.034,7.979,-2.017,5.998,3.855,22.085,-8.76,-1.206,5.479,22.423,11.458,0.224,19.232,17.317,18.773,25.127,9.955,4.585,-2.939,3.753,24.436,21.438,8.549,10.901,14.225,6.475,-0.515,19.19,4.443,17.252,17.493,23.245,19.093,11.457,13.576,10.482,2.174,10.324,7.277,27.111,11.075,3.795,32.16,22.378,4.685,29.762,25.684,13.126,15.734,9.322,9.298,6.926,8.758,12.314,24.389,2.935,19.142,12.735,25.07,-0.99,16.706,13.234,15.41,21.33,15.083,16.256,4.738,10.126,17.153,14.362,17.667,11.357,-0.303,12.258,21.01,2.357,14.535,19.381,4.877,8.772,17.021,18.092,1.08,14.959,1.504,20.251,8.351,8.154,14.144,3.915,7.123,19.635,-0.948,5.651,11.885,4.526,9.559,3.85,12.954,11.089,12.817,4.542,22.883,6.726,-2.631,6.924,22.92,5.197,1.355,10.533,23.412,4.854,6.827,25.498,5.891,18.759,-0.204,-9.035,-7.752,18.379,20.606,26.756,0.113,12.824,18.918,21.021,18.116,-1.246,16.017,24.392,8.77,4.591,2.585,-2.685,13.325,19.433,20.612,6.07,0.325,3.74,17.937,9.416,16.856,6.489,7.037,9.386,18.323,9.298,22.888,5.386,2.929,-4.561,-0.092,9.875,18.534,22.546,17.221,10.2,15.876],[26.579,23.827,8.317,12.417,8.12,11.736,3.829,5.501,10.012,18.167,30.268,24.902,11.432,0.756,15.306,20.01,16.572,16.907,12.816,10.798,9.367,-0.079,16.09,15.574,4.889,3.715,8.623,19.857,12.27,19.418,2.592,12.68,5.417,14.151,7.961,-2.19,5.926,3.917,21.847,-8.822,-1.158,5.672,22.666,11.323,0.242,19.306,17.422,18.583,25.163,10.033,4.449,-2.971,3.506,24.436,21.424,8.547,10.999,14.456,6.656,-0.592,19.329,4.525,17.147,17.354,23.63,19.498,11.722,13.161,10.002,1.823,10.679,7.173,27.639,11.09,3.641,32.012,22.357,5.476,29.946,25.418,13.118,15.505,9.753,9.417,7.075,8.721,12.08,24.665,2.425,18.652,12.985,24.856,-1.009,17.043,12.666,15.521,21.247,14.857,16.578,5.093,10.214,17.723,14.121,17.471,11.312,-1.249,12.301,20.663,2.507,14.238,18.987,4.973,9.171,17.541,18.193,1.023,15.251,1.271,20.027,7.939,7.889,13.866,3.007,7.132,18.997,-0.847,5.752,12.376,5.168,9.402,4.032,13.025,11.251,13.185,4.783,22.613,6.912,-2.381,6.727,23.387,5.152,1.657,10.764,23.242,5.069,6.62,25.883,5.69,18.246,-0.265,-8.765,-8.048,17.68,20.927,26.701,0.007,12.678,19.04,21.158,17.828,-0.872,16.203,25.115,8.342,4.814,2.919,-2.42,13.356,20.297,20.709,5.813,0.062,3.278,17.46,9.271,17.307,5.992,7.222,9.39,18.482,9.45,23.097,5.077,3.554,-4.725,0.594,10.151,18.442,22.594,17.349,9.961,16.059],[26.53,23.951,8.725,12.307,7.973,11.776,3.765,5.714,9.865,18.179,30.341,24.963,11.518,0.522,15.332,19.874,16.227,17.044,12.68,11.066,9.341,-0.281,16.206,15.614,4.795,3.761,8.484,19.871,12.019,19.236,2.496,12.896,5.538,14.301,8.098,-2.189,5.926,3.935,21.835,-8.676,-1.02,5.827,22.759,11.045,0.452,19.156,17.418,18.549,25.26,9.923,4.282,-3.131,3.387,24.474,21.453,8.512,11.157,14.629,6.904,-0.534,19.324,4.603,17.047,17.361,23.552,19.674,11.68,13.7,9.626,1.944,10.742,7.042,28.338,11.068,3.55,32.046,22.288,6.033,29.815,25.27,12.791,15.355,10.048,8.617,7.348,8.739,12.36,25.297,2.445,19.127,13.222,24.718,-1.156,17.051,12.216,15.414,21.27,14.428,17.067,4.779,10.45,17.47,13.872,17.091,11.506,-1.617,11.542,20.541,2.372,14.654,19.196,4.755,9.165,17.368,17.937,0.382,14.816,1.126,19.813,7.881,7.832,13.668,2.813,7.84,19.493,-0.819,5.967,12.079,4.634,9.592,3.94,13.128,11.872,13.852,4.842,21.791,6.608,-2.917,6.661,23.512,4.968,1.764,11.253,22.984,5.14,6.965,25.929,5.686,18.055,-0.393,-9.085,-7.92,17.646,20.896,26.561,-0.659,12.529,18.835,20.803,17.619,-0.411,16.233,25.403,8.395,4.527,3.022,-2.005,14.019,20.907,21.065,5.956,-0.257,3.148,17.424,9.021,17.233,5.651,7.091,9.461,18.013,9.986,23.208,5.165,2.632,-4.8,0.376,10.125,18.696,22.504,16.913,10.0,16.411],[26.529,23.882,8.947,12.277,7.903,11.728,3.813,5.929,9.728,18.127,30.474,25.086,11.482,0.296,15.385,19.933,15.838,17.021,12.43,11.32,9.395,-0.389,16.194,15.596,4.689,3.864,8.33,19.791,11.862,19.084,2.261,13.204,5.727,14.511,8.231,-2.026,5.891,3.956,21.893,-8.558,-0.817,5.946,22.56,10.81,0.456,18.83,17.255,18.713,25.227,9.932,4.074,-3.245,3.518,24.399,21.507,8.427,11.243,14.782,7.171,-0.442,19.248,4.655,16.898,17.423,23.354,19.213,11.197,13.514,9.835,1.641,11.085,7.647,28.26,10.924,3.614,32.057,22.408,5.767,29.363,25.861,13.023,15.371,10.117,7.887,7.936,9.334,12.736,24.746,2.128,19.354,12.979,24.818,-1.415,16.973,12.626,15.606,20.867,14.025,17.085,4.277,10.082,17.191,14.031,16.772,11.379,-1.438,11.376,20.868,2.489,14.893,18.571,4.662,9.638,16.748,18.202,-0.672,14.702,1.845,20.0,8.343,7.436,13.523,3.03,7.649,19.536,-1.147,6.148,12.243,4.691,9.362,3.717,13.139,11.925,13.844,4.843,22.239,7.197,-2.838,7.075,23.745,5.506,1.975,10.875,21.882,4.947,7.172,25.564,5.992,17.857,-0.013,-8.87,-7.394,18.03,20.785,26.939,0.084,12.507,18.959,20.655,18.021,-0.302,15.992,25.317,8.527,4.42,2.468,-2.353,14.497,20.559,21.433,5.925,0.248,3.561,17.958,9.352,16.573,5.916,7.125,9.517,17.191,9.726,22.862,5.252,2.377,-4.865,0.768,10.557,18.844,22.409,17.066,10.287,16.517],[26.544,23.713,9.084,12.299,7.847,11.786,3.925,6.072,9.791,18.048,30.502,25.162,11.332,0.174,15.497,20.061,15.59,16.798,12.238,11.505,9.468,-0.408,16.069,15.568,4.452,4.008,8.148,19.759,11.844,18.962,2.039,13.446,5.982,14.661,8.515,-1.88,5.976,4.075,21.895,-8.46,-0.596,6.039,22.317,10.744,0.375,18.496,16.993,18.971,25.183,10.067,3.838,-3.253,3.728,24.169,21.617,8.413,11.152,14.862,7.401,-0.177,19.161,4.74,16.815,17.443,23.567,19.466,11.286,13.357,10.038,1.423,10.497,7.457,28.378,10.987,3.62,32.106,22.359,5.081,29.455,25.838,13.199,15.699,9.974,8.138,7.993,9.513,12.096,24.25,2.388,18.668,12.982,25.042,-1.424,16.84,12.552,15.396,21.128,13.724,16.463,4.464,10.048,17.316,13.964,16.509,11.545,-1.621,11.914,21.062,2.436,14.628,18.693,4.463,9.688,16.744,17.895,-0.818,14.871,2.17,20.026,7.933,7.924,13.537,3.572,6.756,18.947,-1.073,5.974,12.918,5.117,8.907,3.517,13.556,12.115,13.655,4.937,22.351,7.033,-2.192,6.905,23.328,5.689,1.867,10.913,21.057,5.331,7.093,25.517,6.086,17.53,-0.173,-8.393,-7.532,18.371,20.645,26.982,0.001,11.875,18.789,20.028,18.341,-0.125,16.059,24.889,8.711,4.643,2.486,-2.397,14.748,20.081,21.465,6.026,0.253,4.094,17.812,9.721,16.646,6.284,7.258,9.385,16.057,9.09,22.517,5.161,3.163,-5.0,0.378,10.654,19.151,22.981,17.581,10.089,16.277],[26.52,23.457,9.145,12.282,7.884,11.792,4.162,5.891,9.893,17.942,30.538,25.181,11.248,0.254,15.571,20.233,15.534,16.559,12.095,11.575,9.494,-0.383,15.904,15.353,4.252,4.074,7.974,19.8,11.964,18.881,1.976,13.676,6.284,14.711,8.727,-1.688,6.015,4.335,21.769,-8.364,-0.329,6.038,22.136,10.82,0.25,18.116,16.745,19.089,25.169,10.252,3.775,-3.263,3.857,23.943,21.851,8.457,10.836,14.696,7.66,0.008,19.174,4.92,16.678,17.453,23.797,19.504,11.248,13.331,10.685,1.653,9.645,7.489,28.293,11.502,3.962,32.124,23.066,5.446,29.594,25.486,13.605,15.513,10.215,8.572,7.488,9.251,11.684,24.512,2.946,18.666,12.554,24.826,-1.311,17.292,11.839,15.394,21.615,13.734,16.287,3.972,10.197,17.317,13.627,16.305,11.809,-1.681,11.819,21.06,2.601,14.721,18.461,4.001,10.298,16.792,18.014,-0.486,14.64,1.469,20.07,8.038,8.213,13.595,3.627,6.138,18.973,-0.109,6.317,12.768,5.136,9.152,3.376,13.88,12.529,13.713,5.141,21.722,6.791,-1.937,7.136,22.975,5.585,1.268,10.362,20.863,5.466,6.948,25.761,6.284,17.616,-0.166,-8.358,-7.802,18.405,20.352,26.628,-0.75,12.132,18.518,19.574,18.249,-0.257,16.043,24.136,8.943,4.73,2.704,-2.088,14.777,20.222,20.946,6.231,0.049,4.341,16.807,9.939,16.876,6.421,7.525,9.152,15.992,9.2,22.814,5.388,2.809,-4.979,0.748,9.997,19.229,23.003,17.087,9.678,16.268],[26.448,23.362,9.061,12.178,8.085,11.797,4.444,5.788,9.895,17.946,30.657,25.201,11.182,0.512,15.566,20.367,15.461,16.473,11.883,11.612,9.507,-0.291,15.903,15.175,4.073,3.87,7.932,19.995,12.001,18.814,1.952,13.848,6.606,14.739,8.807,-1.395,6.052,4.533,21.513,-8.323,-0.101,5.948,22.031,11.005,0.021,17.756,16.6,19.009,25.168,10.442,3.813,-3.261,3.868,23.759,21.969,8.511,10.476,14.554,7.893,0.048,19.265,5.081,16.423,17.34,23.53,19.315,11.307,13.153,10.609,1.861,9.771,7.063,28.112,11.086,4.381,32.32,22.788,5.65,29.681,25.395,13.534,15.221,10.26,9.26,7.466,8.525,11.807,24.419,3.135,18.774,12.61,24.505,-1.071,17.396,11.431,15.03,21.434,13.772,16.777,3.846,10.282,17.016,13.448,16.612,12.223,-1.202,11.422,21.164,2.518,14.773,17.913,4.195,10.226,16.306,18.19,-0.088,14.422,1.079,19.948,8.191,8.009,13.748,3.396,6.175,18.831,0.044,6.269,12.67,5.59,9.779,3.526,13.737,12.778,13.801,5.323,21.513,7.238,-1.787,7.541,22.976,5.776,1.727,10.056,21.245,5.453,7.245,25.832,5.783,16.814,0.205,-8.96,-7.385,18.224,20.159,26.514,-0.392,12.543,18.325,19.469,18.203,-0.617,15.628,23.541,9.022,4.454,3.058,-2.128,13.948,20.759,20.638,6.7,0.544,4.512,16.665,10.076,16.544,6.918,8.095,8.764,16.962,10.029,22.27,5.491,2.595,-4.765,0.979,9.972,19.119,22.575,16.373,9.422,16.355],[26.435,23.356,8.887,11.918,8.471,11.809,4.74,5.722,9.771,18.108,30.828,25.134,11.232,0.661,15.473,20.31,15.335,16.486,11.638,11.646,9.458,-0.123,15.974,15.133,4.02,3.509,7.961,20.08,11.887,18.683,2.059,13.919,6.835,14.748,8.832,-1.176,6.215,4.665,21.175,-8.254,-0.011,5.882,21.961,11.292,-0.02,17.47,16.449,18.894,25.133,10.788,3.797,-3.196,3.793,23.419,21.983,8.497,10.164,14.46,8.191,0.077,19.349,5.309,16.312,17.164,23.466,19.582,11.392,13.31,9.974,1.888,10.292,7.193,27.866,10.792,4.099,32.442,22.124,5.936,29.963,25.099,13.158,15.516,9.974,9.394,7.319,8.036,12.368,24.974,3.377,18.739,12.895,24.405,-1.005,17.091,11.631,14.897,21.409,13.568,16.576,4.191,10.232,16.958,13.456,16.444,11.467,-1.113,11.683,21.451,2.14,14.772,18.214,4.716,10.083,16.502,18.415,-0.19,14.383,0.922,20.138,8.33,7.526,13.81,3.115,6.503,18.974,-0.392,6.613,12.791,5.768,9.994,3.666,13.319,12.476,14.098,5.516,22.246,6.691,-1.433,7.95,22.999,5.563,1.873,10.149,21.679,5.775,7.302,25.72,5.603,16.757,-0.271,-8.935,-7.425,18.094,20.469,26.61,-0.592,12.619,18.098,19.313,18.03,-0.217,15.362,24.004,9.143,4.766,3.548,-2.33,13.184,20.929,20.768,6.556,0.844,4.209,16.98,9.821,15.916,7.132,8.56,8.844,16.823,10.252,21.996,5.265,2.737,-4.93,0.805,9.917,19.537,22.182,16.514,9.438,16.194],[26.452,23.396,8.443,11.752,8.767,11.788,4.913,5.743,9.625,18.314,31.03,24.958,11.377,0.678,15.405,20.221,15.079,16.588,11.57,11.484,9.302,-0.146,16.001,15.227,4.2,3.336,7.872,20.069,11.949,18.672,2.278,13.748,6.979,14.707,8.846,-1.052,6.388,4.856,20.997,-8.195,-0.082,5.898,21.931,11.54,-0.078,17.395,16.352,18.825,25.086,11.119,3.811,-3.196,3.677,23.252,21.898,8.543,9.897,14.292,8.552,0.219,19.418,5.496,16.338,17.0,23.268,19.747,11.414,12.71,9.242,1.776,10.719,7.551,27.964,11.292,4.324,32.554,22.286,6.006,29.941,25.291,12.968,15.886,9.888,9.667,7.234,8.763,12.845,25.477,3.543,18.997,12.917,24.862,-1.104,16.858,11.457,15.1,21.377,13.279,15.967,3.976,10.198,17.265,13.22,15.928,11.003,-1.138,11.703,21.353,2.105,14.568,18.095,4.153,10.066,16.686,18.314,-0.088,14.452,1.028,20.152,8.176,7.789,13.68,2.699,6.743,18.413,0.103,6.716,12.893,5.948,9.805,3.639,13.28,12.586,14.428,5.562,22.034,6.876,-1.291,7.939,22.967,5.182,1.668,10.569,21.299,5.993,7.04,25.832,5.69,16.795,-0.7,-8.18,-7.551,18.225,20.319,26.526,-0.861,12.796,17.876,19.135,17.924,0.144,15.25,24.546,9.848,5.061,3.456,-2.57,13.329,20.669,21.547,6.48,1.126,3.919,16.693,8.65,16.146,7.122,8.458,9.013,15.937,10.342,22.269,5.495,2.371,-5.027,0.439,9.216,20.007,22.1,16.642,9.361,15.931],[26.586,23.483,7.885,11.751,9.004,11.842,5.024,5.835,9.613,18.48,31.193,24.94,11.365,0.612,15.497,20.205,14.838,16.689,11.551,11.324,9.15,-0.331,15.82,15.341,4.343,3.313,7.772,19.98,12.094,18.572,2.497,13.628,7.159,14.814,8.86,-0.865,6.503,4.855,20.891,-8.068,-0.238,5.89,21.815,11.701,-0.159,17.479,16.367,18.901,25.051,11.24,3.868,-3.266,3.718,23.461,21.791,8.569,9.656,14.237,8.868,0.371,19.51,5.589,16.181,16.791,23.269,19.927,11.125,13.02,8.958,1.761,10.578,7.117,28.316,10.916,4.466,32.669,22.827,5.719,29.864,25.585,13.349,15.813,9.586,9.598,6.585,9.841,12.28,24.8,3.59,19.236,13.051,24.536,-1.089,17.06,11.366,14.86,21.083,13.107,16.296,3.77,9.995,17.446,13.301,15.56,10.56,-1.49,11.636,21.206,2.189,14.842,17.799,4.476,10.011,16.625,18.074,-0.514,14.847,1.121,19.956,8.252,8.418,13.688,2.619,6.558,18.616,0.135,6.469,12.51,6.398,9.752,3.85,13.746,12.533,14.024,5.692,21.076,7.565,-1.52,7.324,22.934,5.614,1.689,11.009,20.395,6.209,6.98,25.686,5.79,16.809,-0.475,-8.183,-7.373,18.045,20.014,26.426,-0.585,13.121,17.949,19.089,17.911,-0.357,15.051,24.048,10.03,4.672,2.815,-2.527,13.549,20.137,22.196,6.529,1.444,3.933,16.402,7.816,16.743,7.491,8.239,9.05,16.069,10.425,21.822,5.555,2.416,-4.997,0.414,8.8,20.424,22.317,16.278,9.051,15.561],[26.74,23.677,7.363,11.868,9.176,11.867,5.1,5.788,9.582,18.606,31.245,24.93,11.188,0.552,15.773,20.249,14.665,16.726,11.502,11.173,9.157,-0.714,15.594,15.425,4.375,3.396,7.771,19.806,12.161,18.39,2.651,13.647,7.226,14.892,8.822,-0.897,6.615,4.758,20.762,-7.871,-0.49,5.876,21.604,11.811,-0.065,17.652,16.396,19.063,24.964,11.114,3.925,-3.31,3.867,23.605,21.757,8.499,9.625,14.169,9.071,0.588,19.575,5.662,15.975,16.677,23.507,19.98,10.813,13.153,9.748,1.891,10.147,7.196,28.382,10.878,4.707,32.804,22.725,5.434,30.254,25.903,13.574,14.954,8.827,10.014,6.223,9.561,11.88,24.537,3.545,19.19,12.863,24.026,-1.046,17.355,11.863,14.802,20.852,12.973,17.043,4.573,9.844,17.371,13.149,15.764,11.242,-1.91,11.768,21.6,1.953,14.863,18.225,4.622,9.644,16.498,18.078,-1.121,14.81,1.225,20.147,8.252,8.084,13.864,2.771,6.044,18.998,0.033,7.1,12.431,6.201,9.515,4.068,13.628,12.404,13.788,5.539,20.984,7.551,-1.349,6.965,22.666,5.948,1.441,11.228,19.684,5.986,7.1,25.576,6.031,17.25,0.101,-8.199,-6.961,17.939,19.899,26.438,-0.438,13.052,18.126,18.835,18.213,-0.479,15.205,24.073,9.795,4.583,2.824,-2.404,13.653,19.813,22.015,6.513,1.199,4.217,16.497,7.55,15.939,7.938,8.257,9.139,16.512,10.347,22.082,5.262,2.591,-5.018,0.775,8.549,21.02,22.739,16.213,8.792,15.457],[26.884,23.919,6.958,12.003,9.401,11.778,5.179,5.644,9.587,18.605,31.236,24.824,10.967,0.491,15.947,20.365,14.537,16.724,11.353,11.0,9.33,-1.227,15.582,15.363,4.431,3.541,7.72,19.784,12.214,18.359,2.776,13.644,7.223,14.782,8.638,-1.019,6.718,4.601,20.549,-7.508,-0.727,5.985,21.386,11.815,0.096,17.91,16.415,19.229,24.875,10.88,4.074,-3.258,3.939,23.683,21.824,8.298,9.556,14.021,9.071,0.828,19.707,5.726,15.99,16.555,23.873,20.013,11.035,13.157,10.103,1.854,9.878,7.185,28.373,11.98,4.91,32.766,22.435,5.094,30.313,25.362,13.312,15.204,8.574,9.907,5.999,8.819,12.222,24.789,3.791,19.422,12.586,24.269,-1.089,17.198,11.913,15.024,21.101,12.91,16.6,4.782,9.973,17.338,12.682,15.846,12.035,-2.378,11.873,21.73,2.063,14.938,17.785,4.589,9.67,16.341,18.016,-1.225,14.399,1.163,20.094,8.391,7.694,13.787,2.976,5.966,18.385,0.131,7.392,12.627,5.731,9.412,3.947,13.388,12.555,13.811,5.185,21.635,7.472,-0.75,7.423,22.649,5.542,1.398,11.232,20.267,5.646,7.129,25.711,6.331,16.937,0.017,-7.869,-7.347,18.287,19.679,26.475,-0.527,13.488,18.182,19.581,18.456,-0.298,15.41,24.177,9.498,4.757,3.451,-2.71,13.75,19.722,21.159,6.85,1.345,4.652,16.195,7.612,15.14,8.384,8.467,9.596,16.697,10.269,22.61,5.485,2.748,-5.079,1.253,8.832,21.365,22.266,16.383,9.366,15.469],[26.861,24.127,6.898,12.334,9.392,11.682,5.36,5.536,9.643,18.467,31.128,24.753,10.84,0.443,15.931,20.497,14.481,16.633,11.16,10.964,9.538,-1.65,15.487,15.211,4.469,3.758,7.555,19.971,12.231,18.149,2.784,13.618,7.126,14.63,8.519,-0.933,6.854,4.341,20.575,-7.113,-0.845,6.098,21.342,11.909,0.247,18.213,16.553,19.299,24.899,10.754,4.317,-3.258,4.014,23.773,21.745,8.081,9.578,13.978,9.012,1.138,19.903,5.779,16.158,16.25,24.382,19.754,11.324,13.486,9.53,1.7,9.619,6.654,28.214,12.041,5.018,32.512,22.691,4.595,30.104,25.415,12.874,15.893,8.514,10.307,5.742,9.682,12.7,24.366,3.731,19.308,12.363,24.861,-1.251,17.479,11.487,15.0,21.273,13.089,15.884,4.284,10.238,17.406,12.651,15.818,11.839,-3.034,11.76,21.495,2.311,14.668,17.698,4.414,9.539,16.958,18.095,-1.005,14.548,1.265,19.891,8.88,7.496,13.864,3.047,6.184,18.646,-0.089,6.979,12.327,5.975,9.455,4.156,13.264,12.683,13.63,5.294,21.15,7.008,-0.659,7.238,22.528,5.565,1.558,10.514,20.52,5.643,7.426,25.567,6.605,17.306,-0.604,-7.912,-6.782,18.918,19.607,26.368,-0.264,13.282,17.969,19.951,18.255,-0.634,15.128,24.463,9.314,4.469,3.794,-2.992,13.251,19.723,20.456,7.268,2.048,4.938,16.521,7.731,15.255,8.166,8.309,9.616,16.487,10.276,22.196,5.734,2.948,-5.013,1.008,8.509,21.415,21.803,16.062,9.251,15.388],[26.72,24.419,7.066,12.697,9.406,11.657,5.509,5.383,9.538,18.242,30.899,24.726,10.865,0.379,15.964,20.482,14.573,16.702,11.008,10.935,9.732,-1.8,15.168,15.133,4.353,3.956,7.453,20.068,12.06,17.905,2.776,13.447,6.927,14.535,8.522,-0.777,7.001,4.302,20.747,-6.812,-1.026,6.224,21.383,11.945,0.284,18.385,16.622,19.351,24.84,10.851,4.315,-3.326,4.122,23.8,21.659,7.843,9.656,13.975,8.819,1.527,19.995,5.866,16.344,15.89,24.123,19.48,11.418,13.78,8.799,1.715,9.958,6.924,28.071,11.67,4.581,32.281,23.306,4.46,29.992,25.596,12.826,15.824,8.743,10.469,5.942,9.843,12.591,24.039,4.144,19.051,11.998,24.864,-1.25,17.572,11.286,14.641,20.975,12.909,16.486,4.37,10.636,17.191,12.912,15.777,10.917,-3.202,11.681,21.649,2.755,14.882,17.588,4.141,9.621,16.65,18.352,-0.702,15.046,1.337,20.455,9.1,7.479,13.799,3.262,5.805,18.656,0.065,6.438,12.433,6.302,9.276,4.348,13.172,12.366,13.549,5.51,21.06,7.451,-1.001,6.918,22.418,5.829,2.037,10.314,20.273,5.36,7.638,25.03,6.314,17.819,-0.216,-7.353,-6.774,19.076,19.658,26.396,-0.503,13.19,17.981,20.217,18.069,-1.029,15.128,25.081,9.517,4.64,4.044,-2.934,12.772,20.179,20.078,7.006,2.112,4.603,17.666,7.703,16.072,7.734,7.779,9.714,16.14,9.973,22.353,5.778,2.753,-5.094,0.914,8.432,21.509,21.888,15.645,8.725,15.611],[26.484,24.767,7.362,13.011,9.459,11.657,5.563,5.242,9.282,18.158,30.563,24.748,10.922,0.374,15.99,20.368,14.719,16.703,10.994,10.816,9.911,-1.684,14.92,15.187,4.126,4.198,7.338,20.137,11.769,17.741,2.778,13.359,6.665,14.672,8.572,-0.726,7.167,4.55,20.952,-6.575,-1.219,6.259,21.373,11.956,0.174,18.473,16.513,19.417,24.638,10.828,4.125,-3.372,4.194,23.902,21.598,7.689,9.666,13.885,8.481,1.796,20.014,5.876,16.589,15.602,23.844,19.719,11.161,13.536,8.741,1.678,9.877,7.045,28.271,11.838,4.865,32.242,23.506,5.078,30.092,25.315,13.096,15.662,9.137,10.583,6.295,9.346,12.434,24.611,4.19,19.067,12.676,24.223,-1.23,17.262,11.215,14.86,20.651,13.071,16.13,4.388,10.515,17.203,12.75,15.23,10.305,-3.012,11.346,21.983,2.703,14.657,17.249,4.287,9.807,16.599,18.394,-0.881,14.565,1.718,20.525,8.947,7.853,13.476,3.69,5.694,18.01,0.123,6.897,12.519,5.978,9.675,4.285,13.481,12.085,13.644,5.86,21.439,7.547,-0.982,7.038,22.68,6.103,1.98,10.633,20.121,5.126,7.579,24.941,5.807,18.02,-0.323,-7.287,-7.542,18.657,19.732,26.378,-0.285,13.154,18.225,20.301,18.594,-0.773,15.457,25.035,9.726,5.168,3.849,-2.789,13.375,20.66,20.423,6.975,2.041,4.082,17.728,7.513,15.901,7.484,7.593,9.456,16.429,10.25,22.812,5.819,2.63,-5.229,1.078,8.852,21.521,22.245,16.306,8.903,15.719],[26.283,24.897,7.73,13.21,9.356,11.696,5.52,5.229,9.058,18.285,30.332,24.786,11.062,0.513,15.866,20.256,14.768,16.596,11.138,10.71,10.005,-1.477,14.668,15.214,3.977,4.449,7.324,20.199,11.475,17.429,2.842,13.439,6.542,14.885,8.629,-0.73,7.302,4.859,21.16,-6.515,-1.286,6.331,21.356,12.052,0.035,18.525,16.527,19.416,24.501,10.702,4.045,-3.352,4.306,24.031,21.615,7.552,9.613,13.803,8.126,1.841,20.064,5.88,16.807,15.564,24.532,19.678,10.645,13.913,8.979,1.742,10.069,6.564,27.898,11.952,5.389,31.995,23.411,4.859,29.477,25.167,13.114,15.677,8.88,10.582,6.602,9.526,12.227,24.315,3.798,18.964,12.822,24.146,-1.195,17.356,11.525,15.494,20.824,12.961,15.526,3.836,10.208,17.033,12.807,15.518,10.001,-3.102,11.009,21.806,2.863,14.215,17.922,4.213,9.799,16.662,18.478,-1.328,14.193,1.856,20.131,9.098,7.668,13.105,3.818,5.781,18.354,0.022,6.802,12.347,5.872,9.477,4.457,13.609,12.11,14.152,5.928,21.765,7.396,-0.638,6.984,22.566,6.224,1.66,10.866,20.512,5.834,7.394,25.175,6.331,17.641,-1.022,-7.481,-6.968,18.52,19.545,26.013,-0.311,13.325,18.261,20.326,18.407,-0.745,15.527,24.987,9.32,4.848,3.323,-2.994,14.071,20.616,21.007,6.218,2.251,4.07,17.305,7.587,14.961,7.225,7.861,9.312,17.232,10.422,22.664,6.086,2.909,-5.163,1.189,9.229,21.484,22.169,15.915,9.095,15.494],[26.062,24.86,7.895,13.309,9.178,11.527,5.427,5.164,8.852,18.351,30.303,24.705,11.15,0.507,15.739,20.147,14.615,16.355,11.421,10.64,10.073,-1.335,14.521,15.186,3.921,4.625,7.366,20.267,11.347,17.253,2.978,13.461,6.55,15.002,8.56,-0.701,7.439,5.078,21.434,-6.374,-1.274,6.413,21.263,12.356,-0.187,18.491,16.603,19.36,24.468,10.64,4.022,-3.321,4.45,24.077,21.678,7.453,9.698,13.711,7.853,1.812,20.203,5.719,16.978,15.648,25.095,19.468,10.433,14.602,9.187,1.912,10.358,6.357,27.749,12.072,5.095,31.677,23.284,4.301,29.03,24.959,12.817,15.541,9.476,10.112,6.354,9.851,12.394,24.37,3.645,18.957,12.577,25.05,-0.946,17.393,11.448,15.732,21.247,13.076,15.657,4.013,10.603,17.17,13.277,16.028,9.87,-2.858,11.39,21.234,3.015,14.909,17.684,4.114,9.862,16.644,18.394,-1.436,14.228,1.939,20.071,9.342,7.005,13.014,3.936,6.175,18.163,-0.017,6.468,12.318,5.571,9.18,4.669,13.231,12.493,14.574,5.953,21.687,7.891,-0.215,7.006,22.085,6.475,1.597,10.801,21.365,6.13,7.731,25.338,6.763,17.357,-0.676,-7.592,-6.515,18.689,19.554,25.592,-0.673,13.258,18.156,20.328,17.99,-0.954,15.315,25.269,9.123,4.569,3.428,-3.378,13.876,20.518,21.589,6.196,1.939,4.068,17.405,8.139,15.319,6.919,7.544,8.94,17.784,10.105,22.523,6.165,2.488,-5.093,1.192,8.919,21.08,21.896,15.089,8.481,15.169],[25.922,24.92,7.854,13.388,9.085,11.261,5.201,5.079,8.731,18.242,30.425,24.573,11.056,0.366,15.655,20.077,14.579,16.101,11.82,10.595,10.255,-1.288,14.644,15.373,4.031,4.744,7.388,20.362,11.579,17.153,3.062,13.467,6.495,14.976,8.455,-0.691,7.634,5.054,21.691,-6.304,-1.137,6.592,21.04,12.587,-0.371,18.308,16.678,19.249,24.457,10.677,3.906,-3.416,4.396,24.001,21.745,7.495,9.761,13.469,7.554,1.654,20.446,5.481,17.132,15.818,24.339,19.756,10.426,14.773,9.185,1.753,10.475,6.458,27.501,12.616,4.48,31.865,23.512,4.379,29.266,24.741,12.37,15.394,9.27,10.103,6.486,9.544,12.124,24.565,3.794,19.236,12.921,26.082,-1.275,17.053,11.163,14.783,21.372,12.861,15.585,4.249,10.91,16.98,13.458,15.646,9.629,-2.317,10.894,20.75,3.332,14.953,17.402,4.4,9.93,16.453,18.601,-0.892,14.096,1.846,20.623,9.219,7.204,13.136,4.065,6.847,17.849,0.248,6.774,12.572,6.042,9.366,4.327,13.397,12.26,14.676,6.263,21.776,7.356,0.242,6.724,22.005,6.103,1.561,11.571,20.965,5.639,8.025,25.15,6.53,17.647,-0.47,-6.698,-6.37,18.877,19.189,25.447,-0.682,13.717,17.977,20.103,18.273,-1.065,15.269,25.36,9.314,4.925,3.912,-3.149,13.584,19.991,21.314,6.418,2.162,4.531,17.537,8.535,15.49,6.805,7.226,8.682,17.588,9.887,22.945,6.05,2.529,-5.25,1.267,8.948,20.747,22.416,15.254,8.846,14.933],[25.868,24.964,7.703,13.492,9.173,11.057,4.905,5.033,8.795,18.178,30.429,24.526,11.114,0.222,15.603,19.97,14.597,16.038,12.128,10.502,10.45,-1.179,14.879,15.476,4.264,4.854,7.536,20.522,11.622,17.068,3.05,13.321,6.597,15.065,8.307,-0.617,7.7,4.912,21.762,-6.341,-0.862,6.817,20.785,12.746,-0.399,18.155,16.721,19.249,24.348,10.771,3.851,-3.437,4.155,24.006,21.836,7.599,10.027,13.185,7.258,1.54,20.605,5.273,17.206,15.972,23.772,19.687,10.445,14.234,8.715,1.307,10.45,6.232,27.362,12.939,4.0,32.087,23.985,4.327,30.051,24.849,12.615,14.929,9.077,10.339,6.819,9.197,11.548,24.449,3.842,18.964,12.695,26.361,-1.545,16.734,11.787,14.239,20.92,12.855,15.602,4.003,10.822,16.654,14.123,15.016,9.492,-2.155,10.917,20.885,3.535,14.832,17.515,4.366,9.652,16.298,18.671,-0.631,14.47,1.459,20.773,9.437,7.846,13.345,3.819,6.29,17.633,0.379,6.859,12.279,5.807,9.487,4.36,13.775,12.142,14.034,5.918,21.86,7.652,0.175,6.669,21.861,5.859,1.284,12.342,21.031,5.547,7.905,25.054,6.486,17.287,-0.942,-6.106,-6.329,18.664,19.09,25.771,-0.889,14.217,18.416,20.045,18.041,-1.024,15.395,25.074,9.478,4.642,3.741,-2.904,13.184,19.958,21.069,6.404,2.221,4.901,17.296,8.714,15.519,6.394,7.283,8.569,17.535,10.235,22.922,6.0,2.631,-5.338,1.318,9.167,21.056,22.604,15.861,9.083,14.523],[25.976,24.914,7.655,13.732,9.305,11.014,4.624,4.873,8.747,18.13,30.294,24.596,11.226,0.053,15.366,19.788,14.402,16.152,12.512,10.455,10.508,-1.03,15.182,15.309,4.39,4.773,7.801,20.617,11.412,17.093,3.075,13.043,6.73,15.139,8.199,-0.537,7.773,4.679,21.798,-6.403,-0.67,6.91,20.769,12.864,-0.461,18.069,16.753,19.2,24.257,10.992,3.715,-3.284,3.767,24.041,21.84,7.695,10.301,12.898,7.001,1.555,20.681,5.014,17.147,16.05,23.661,19.447,10.369,14.011,7.947,1.311,10.226,6.14,27.373,12.504,3.826,32.12,24.069,4.225,30.012,24.872,12.498,15.208,9.215,10.125,6.268,9.804,11.552,23.984,3.263,18.603,12.753,26.313,-1.471,16.9,12.518,14.674,20.563,12.759,16.169,4.163,10.756,16.786,14.404,15.682,9.77,-2.161,11.681,21.206,3.482,14.629,17.452,4.54,9.122,16.203,18.837,-0.804,14.691,1.62,20.811,9.918,7.589,13.225,3.591,6.738,17.573,-0.035,7.084,12.138,5.716,9.298,4.294,14.096,11.829,13.74,5.496,21.386,8.559,-0.031,7.058,21.905,6.223,1.442,12.654,21.664,5.69,8.346,24.443,6.437,16.803,-1.171,-6.367,-5.288,18.737,19.066,25.776,-1.152,14.319,18.637,19.814,17.613,-0.282,15.979,25.155,9.437,4.685,3.351,-2.857,13.009,20.656,21.705,6.192,1.914,5.473,18.13,8.828,15.515,6.159,7.091,8.496,17.614,10.69,22.824,5.584,2.586,-5.065,1.07,9.532,21.782,22.46,15.93,9.174,13.934],[26.06,24.757,7.581,13.992,9.385,11.064,4.415,4.735,8.284,18.064,30.098,24.575,11.285,-0.02,15.222,19.681,14.431,16.174,12.78,10.573,10.446,-0.953,15.362,15.121,4.375,4.597,8.003,20.653,11.441,17.25,3.089,12.826,6.708,15.169,8.127,-0.589,7.895,4.543,21.819,-6.339,-0.55,7.049,20.868,12.825,-0.494,18.085,16.809,19.147,24.163,11.218,3.563,-3.012,3.422,24.007,21.737,7.908,10.31,12.747,6.822,1.534,20.845,4.894,17.31,15.973,24.014,19.494,10.046,14.476,8.205,1.433,10.57,5.988,27.745,12.458,3.866,31.739,23.467,3.983,29.429,24.751,12.383,15.008,8.833,10.287,6.388,10.226,11.919,23.848,3.04,18.899,12.817,26.167,-1.57,16.902,12.519,15.532,20.504,12.761,16.341,4.177,10.662,16.943,14.709,15.533,10.566,-2.158,11.445,21.09,3.255,14.407,17.445,4.517,9.26,16.527,18.957,-0.967,14.974,1.797,20.973,9.666,7.809,12.793,3.621,6.762,18.17,0.18,6.565,11.991,5.986,9.687,4.672,14.11,11.646,14.099,5.661,21.693,9.02,-0.252,7.079,22.157,6.729,1.421,12.597,21.302,5.483,8.284,24.43,6.696,16.897,-1.008,-6.636,-4.567,18.598,19.072,25.695,-0.787,14.212,18.486,19.735,17.887,0.022,15.617,25.242,9.76,4.822,2.927,-3.36,13.056,21.031,22.212,6.079,2.041,5.935,17.996,8.381,15.463,5.929,6.695,8.187,17.624,10.714,22.933,4.876,2.517,-4.775,1.281,9.313,22.218,23.14,16.001,9.478,13.594],[26.1,24.545,7.408,14.126,9.491,11.157,4.327,4.638,7.86,18.181,29.846,24.431,11.175,0.028,15.196,19.649,14.677,16.146,12.841,10.852,10.275,-0.931,15.432,15.193,4.278,4.484,8.027,20.657,11.573,17.515,3.184,12.755,6.619,15.38,8.146,-0.737,8.005,4.515,21.679,-6.153,-0.452,7.167,21.064,12.608,-0.422,18.07,16.772,19.131,24.223,11.331,3.494,-2.851,3.182,23.948,21.775,8.034,10.08,12.667,6.707,1.505,21.14,5.0,17.608,15.839,23.903,19.872,9.44,15.059,8.529,1.266,10.759,5.574,27.709,13.004,3.689,31.416,23.326,3.872,29.083,24.884,12.417,15.054,8.98,10.617,6.67,10.351,11.984,24.041,3.296,18.805,12.922,26.215,-1.637,16.991,12.513,14.561,20.632,13.037,16.209,3.816,10.816,16.736,14.758,15.497,11.239,-1.879,10.714,20.901,3.011,14.24,17.646,3.812,9.607,16.71,18.743,-0.948,15.127,1.744,21.025,9.287,7.7,13.024,3.827,6.64,18.303,0.475,6.651,11.7,5.386,9.723,4.613,14.024,11.904,14.55,5.956,21.92,9.477,-0.216,6.986,21.779,6.353,1.284,12.84,21.181,5.339,8.343,24.826,6.911,17.066,-0.698,-6.689,-4.349,18.544,19.159,25.744,-1.164,14.257,18.197,19.869,18.111,-0.626,15.137,24.576,9.979,4.565,3.074,-3.144,12.925,20.869,21.582,6.359,2.082,5.717,17.697,8.463,15.54,5.967,6.525,8.274,17.484,10.539,23.042,4.972,2.071,-4.492,1.487,9.021,21.755,23.018,16.119,8.915,13.849],[26.125,24.288,7.325,14.143,9.554,11.238,4.255,4.478,7.667,18.41,29.598,24.304,10.977,0.12,15.277,19.701,14.915,16.148,12.957,11.236,10.209,-0.941,15.474,15.285,4.043,4.497,7.894,20.579,11.678,17.876,3.302,12.836,6.527,15.738,8.22,-0.865,8.107,4.489,21.421,-6.007,-0.541,7.144,21.177,12.474,-0.381,17.998,16.556,19.05,24.333,11.245,3.381,-2.77,3.177,23.803,21.759,8.103,9.655,12.558,6.594,1.486,21.359,5.208,17.731,15.8,23.451,19.849,9.202,15.164,8.045,1.251,10.141,5.501,27.837,13.393,3.062,31.151,23.459,4.202,28.986,25.031,12.686,15.377,9.131,10.666,6.264,10.393,11.817,23.902,3.097,18.825,12.638,26.139,-1.534,16.768,12.204,13.836,21.046,13.088,16.521,3.92,10.551,16.711,14.695,15.883,11.125,-1.172,10.826,20.531,2.835,14.883,17.667,3.864,9.95,16.135,18.759,-0.888,15.13,2.023,21.054,9.239,7.334,13.388,3.792,6.935,17.864,0.009,7.159,11.904,5.639,9.646,4.67,14.283,11.829,15.218,5.715,21.647,9.442,-0.107,6.8,21.824,5.876,1.505,12.68,21.621,5.163,8.314,25.354,7.002,17.31,0.002,-6.186,-4.165,19.261,19.375,25.432,-1.186,14.246,18.31,19.849,17.837,-0.909,15.27,24.61,9.548,4.796,2.938,-2.553,12.513,20.822,21.356,6.833,2.019,5.062,17.503,9.1,15.927,6.248,6.743,8.301,17.97,11.051,22.568,4.901,2.186,-4.572,1.26,9.292,21.447,22.754,15.759,8.548,14.034],[26.154,24.037,7.336,14.139,9.626,11.267,4.147,4.514,7.594,18.444,29.426,24.175,10.873,0.199,15.253,19.849,15.115,16.028,13.0,11.612,10.311,-0.848,15.547,15.504,3.8,4.468,7.858,20.612,11.804,18.15,3.473,13.052,6.673,16.037,8.361,-0.959,7.948,4.378,21.249,-5.857,-0.649,6.953,21.138,12.596,-0.297,18.016,16.344,19.016,24.374,11.119,3.388,-2.771,3.255,23.62,21.725,8.204,9.335,12.331,6.46,1.532,21.393,5.262,17.683,15.913,22.865,19.585,9.47,14.766,7.434,1.335,9.818,5.369,27.84,12.684,2.845,31.219,22.848,3.945,28.837,25.011,12.754,15.349,8.793,10.335,6.073,9.874,12.075,23.777,3.209,19.47,12.122,26.017,-1.552,16.789,12.33,13.991,21.111,13.396,16.568,3.847,10.257,17.027,14.889,16.257,11.21,-0.434,11.406,20.637,2.901,14.859,18.095,4.347,10.318,16.075,18.832,-1.159,15.256,2.051,20.932,9.635,7.368,13.381,3.632,6.243,18.185,-0.318,6.955,12.191,5.479,9.456,4.925,14.425,11.855,15.503,5.637,21.474,8.692,0.033,6.554,22.233,6.253,1.668,12.414,20.5,5.246,8.124,25.441,6.825,16.847,-0.3,-6.088,-4.038,19.068,19.279,25.265,-0.951,14.051,18.147,19.621,17.791,-0.402,15.266,24.594,9.482,4.634,2.878,-2.07,12.456,20.909,21.779,6.831,2.101,5.135,18.028,9.432,15.556,5.932,6.865,7.924,18.869,11.15,22.39,5.184,2.212,-4.552,1.112,8.827,21.799,22.705,15.888,8.319,13.85],[26.022,23.696,7.448,14.045,9.645,11.289,4.028,4.536,7.6,18.383,29.414,24.087,10.835,0.242,15.092,20.134,15.228,15.894,12.944,11.925,10.322,-0.649,15.483,15.63,3.735,4.222,7.827,20.71,11.881,18.457,3.587,13.138,6.784,16.03,8.449,-0.974,7.655,4.392,20.986,-5.79,-0.644,6.791,21.01,12.834,-0.253,18.105,16.418,19.085,24.396,11.117,3.436,-2.736,3.427,23.48,21.765,8.245,9.094,12.177,6.255,1.651,21.376,5.307,17.877,16.146,22.85,19.659,9.353,14.311,6.965,1.322,9.698,5.813,27.793,12.503,3.202,31.302,22.573,4.027,28.912,25.252,12.648,15.337,8.712,10.247,6.149,9.412,12.038,23.864,2.846,19.148,12.472,25.881,-1.525,16.834,13.12,15.031,20.732,13.498,16.136,3.377,10.957,16.555,14.806,16.414,11.48,-0.096,12.222,21.216,2.841,14.905,18.319,3.912,10.932,16.007,18.922,-1.157,15.449,1.987,20.791,9.89,7.599,13.039,3.564,6.443,19.063,-0.172,6.834,11.991,6.024,9.04,4.734,14.634,12.101,15.579,5.569,21.141,7.915,-0.559,6.845,22.06,6.56,1.648,12.479,20.758,5.345,8.087,24.96,6.35,16.681,-1.005,-6.114,-4.314,18.155,19.077,25.84,-0.907,14.232,18.095,19.872,17.909,-0.623,14.964,24.292,9.691,4.656,3.24,-2.127,11.951,21.157,21.739,6.49,2.325,5.157,18.154,9.343,15.114,5.412,6.587,7.667,18.941,10.596,22.684,5.159,1.967,-4.647,1.473,8.059,21.798,22.887,15.934,7.945,13.332],[25.909,23.413,7.5,13.969,9.466,11.345,3.96,4.495,7.661,18.254,29.569,24.181,10.866,0.252,15.015,20.331,15.129,15.759,13.014,12.175,10.266,-0.461,15.279,15.75,3.751,3.99,7.75,20.761,11.846,18.887,3.545,13.145,6.848,15.968,8.428,-1.129,7.503,4.446,20.749,-5.809,-0.724,6.778,20.835,13.043,-0.303,18.205,16.416,19.114,24.439,11.179,3.406,-2.71,3.597,23.499,21.893,8.21,8.767,12.002,6.019,1.867,21.329,5.297,18.059,16.298,22.968,19.74,9.042,14.323,6.526,1.523,10.396,5.872,27.112,12.915,3.431,31.388,22.463,3.986,28.888,25.047,12.574,15.118,9.211,10.946,6.168,9.666,12.082,23.945,2.383,18.813,12.5,25.961,-1.34,16.76,12.687,16.063,20.878,13.681,16.154,3.98,10.745,16.447,14.836,16.691,12.515,-0.132,12.193,21.984,2.337,14.649,18.572,3.33,11.45,16.053,18.914,-0.628,15.33,2.063,21.081,9.414,7.083,13.243,3.324,6.821,19.007,-0.204,6.96,11.943,5.857,8.653,4.583,14.559,12.196,14.966,5.65,21.208,8.002,-0.908,7.521,21.592,6.085,1.567,12.315,21.071,5.085,8.062,24.601,6.102,17.516,-0.446,-6.368,-5.08,18.713,19.026,25.787,-0.833,14.773,18.166,19.766,17.854,-0.801,15.416,24.358,9.997,4.848,3.619,-2.848,11.972,21.488,21.725,6.367,2.605,5.376,17.717,9.008,15.354,5.418,6.69,7.635,18.992,10.581,22.405,5.433,2.072,-4.464,1.529,8.16,21.986,22.46,16.091,8.206,12.823],[25.779,23.255,7.597,14.015,9.393,11.35,3.918,4.455,7.597,18.128,29.764,24.335,10.919,0.334,15.075,20.507,15.053,15.767,13.038,12.523,10.057,-0.298,15.164,15.915,3.868,3.796,7.661,20.697,11.631,19.264,3.374,13.376,6.868,15.769,8.449,-1.312,7.465,4.379,20.655,-5.782,-0.78,6.725,20.89,13.213,-0.253,18.272,16.345,19.126,24.344,11.233,3.474,-2.748,3.896,23.635,22.111,8.093,8.545,11.797,5.869,2.249,21.29,5.301,18.101,16.159,22.894,19.611,9.181,14.988,6.725,1.552,10.567,5.362,26.525,12.582,3.541,31.431,21.897,4.313,29.18,24.66,12.831,15.089,9.194,10.947,6.36,9.566,11.959,23.879,2.345,18.812,12.466,26.19,-1.496,16.756,12.075,15.829,21.358,13.636,16.371,3.644,10.121,16.681,14.856,16.651,13.276,-0.686,11.4,21.769,2.125,14.884,19.099,3.894,11.27,15.795,18.875,-0.371,14.892,1.879,21.149,9.017,6.742,13.359,3.402,6.168,18.624,-0.086,7.121,12.357,5.742,7.898,4.851,14.389,12.247,14.95,5.469,21.342,7.912,-1.115,8.399,21.497,5.999,1.596,12.461,20.286,5.375,8.181,24.92,6.618,17.339,-0.433,-6.874,-5.864,19.466,19.107,25.478,-0.877,15.034,18.166,20.054,17.733,-0.857,15.35,24.183,9.736,4.493,3.912,-2.889,12.218,21.717,21.608,6.402,2.416,5.844,17.996,8.739,15.389,5.368,6.943,7.82,19.139,10.57,22.491,5.335,2.136,-4.38,1.567,8.175,22.454,21.409,16.052,8.167,12.652],[25.664,23.082,7.778,14.057,9.378,11.292,3.895,4.456,7.475,18.195,30.088,24.42,10.959,0.418,15.228,20.576,14.992,15.799,12.968,12.885,9.676,-0.218,15.127,16.105,4.036,3.672,7.356,20.524,11.389,19.462,3.297,13.702,6.906,15.579,8.563,-1.379,7.371,4.306,20.613,-5.819,-0.8,6.752,21.091,13.218,-0.184,18.356,16.16,19.223,24.197,11.128,3.512,-2.785,4.11,23.635,22.118,7.93,8.468,11.771,5.797,2.685,21.315,5.452,18.098,15.838,22.752,19.562,9.117,15.017,7.02,1.322,9.576,5.659,26.355,12.396,3.642,31.698,22.355,3.85,29.173,24.981,12.628,15.293,8.883,10.553,6.474,9.001,12.102,24.186,2.397,19.011,12.347,25.905,-1.481,16.935,12.26,15.216,22.013,13.724,15.884,3.708,10.596,16.589,14.876,16.559,13.532,-1.282,10.625,21.316,2.342,15.367,18.913,3.946,11.071,15.684,18.835,0.025,14.629,1.711,20.618,9.09,7.08,12.967,3.514,6.116,19.485,-0.135,7.178,12.794,6.149,7.038,4.484,14.015,12.347,15.147,5.462,21.361,8.184,-1.433,8.477,21.815,6.224,1.679,12.946,20.201,5.239,7.933,24.936,6.7,16.774,-1.006,-6.255,-5.709,18.725,19.248,25.409,-0.88,15.034,17.947,19.997,17.917,-0.862,15.206,24.198,9.467,4.722,4.443,-2.314,12.094,21.655,22.154,6.421,2.25,5.644,18.043,8.787,15.348,5.248,6.293,8.217,19.276,10.626,22.603,5.693,2.366,-4.656,1.888,8.001,22.34,21.414,15.768,7.756,12.675],[25.631,23.004,7.763,14.045,9.205,11.265,4.026,4.443,7.427,18.307,30.357,24.484,10.795,0.478,15.463,20.549,14.948,15.786,12.955,13.188,9.379,-0.163,14.978,16.176,4.154,3.668,7.119,20.313,11.184,19.545,3.252,13.945,6.951,15.589,8.613,-1.386,7.38,4.354,20.676,-5.796,-0.892,6.913,21.206,13.068,-0.142,18.254,15.847,19.307,24.106,10.893,3.653,-2.829,4.341,23.496,22.06,7.821,8.396,11.883,5.717,3.105,21.364,5.674,18.075,15.621,22.305,19.661,9.124,14.573,7.386,1.456,9.64,5.553,26.806,12.426,3.607,32.249,22.433,3.507,29.636,25.065,12.413,15.29,9.293,10.682,6.315,9.315,11.96,24.09,2.408,19.227,12.348,25.639,-1.271,17.351,12.271,15.216,22.162,13.456,15.683,3.874,10.451,16.493,14.74,16.578,13.573,-1.195,10.399,21.04,2.235,15.763,18.4,3.428,11.46,15.652,18.485,-0.155,15.028,1.915,20.29,8.787,6.666,12.819,3.23,5.769,20.41,-0.148,6.778,12.757,5.983,6.891,4.209,13.937,12.881,14.712,5.529,21.021,8.072,-1.298,8.703,22.197,6.424,1.708,13.235,20.44,5.028,7.596,24.499,6.092,17.107,-0.689,-6.247,-4.707,18.743,19.496,25.792,-0.92,14.539,17.65,19.836,18.25,-0.769,15.258,24.227,9.741,5.053,4.754,-2.055,11.883,21.688,21.981,6.038,2.658,4.697,18.384,9.146,14.797,5.206,5.977,8.281,19.205,10.947,22.626,5.864,2.271,-4.521,2.0,7.909,21.814,21.908,15.256,7.609,12.862],[25.679,22.897,7.556,13.973,9.158,11.265,4.203,4.367,7.617,18.359,30.492,24.471,10.576,0.558,15.694,20.504,14.766,15.798,12.981,13.426,9.236,-0.179,14.798,16.101,4.15,3.709,6.892,20.09,11.115,19.6,3.137,13.985,6.853,15.594,8.649,-1.271,7.338,4.398,20.771,-5.806,-0.915,7.057,21.181,12.876,-0.038,18.136,15.64,19.451,24.09,10.89,3.784,-2.667,4.534,23.338,22.025,7.8,8.292,12.099,5.537,3.247,21.468,5.801,18.148,15.413,21.906,19.645,9.336,14.546,7.54,1.891,10.118,5.466,27.159,12.485,3.744,32.095,22.202,3.632,30.032,25.111,12.663,15.38,9.106,10.402,6.408,9.241,11.95,24.044,2.739,19.155,12.36,25.784,-1.148,17.555,11.955,15.365,21.952,13.656,15.753,3.644,9.479,16.509,14.832,16.491,13.607,-0.936,10.193,21.19,2.494,15.291,18.969,3.807,11.65,15.315,18.216,-0.32,15.399,1.801,20.517,8.317,6.431,12.911,3.172,5.522,20.263,-0.077,7.181,12.7,6.137,7.267,4.579,14.301,12.975,14.762,5.66,21.071,7.751,-0.952,8.591,22.539,6.425,1.699,12.746,20.416,5.388,7.91,24.322,6.457,17.244,-0.632,-6.367,-4.176,19.223,19.485,25.616,-0.867,14.639,17.441,19.7,18.134,-1.024,15.131,24.328,9.564,4.937,4.64,-2.429,12.022,21.329,21.457,6.283,3.631,4.05,18.27,9.079,14.354,5.257,6.586,8.061,18.792,10.065,22.091,6.208,2.344,-4.351,2.461,8.002,21.551,22.533,15.201,7.852,13.067],[25.728,22.731,7.392,13.932,9.215,11.289,4.364,4.293,8.028,18.288,30.518,24.373,10.56,0.855,15.708,20.576,14.579,15.771,12.986,13.532,9.159,-0.234,14.824,15.908,4.144,3.592,6.891,19.967,11.102,19.636,2.993,13.802,6.858,15.547,8.664,-1.081,7.192,4.537,20.771,-5.906,-0.998,7.186,21.172,12.734,0.098,18.132,15.575,19.515,24.001,10.962,3.685,-2.468,4.539,23.293,21.947,7.734,8.158,12.399,5.348,3.322,21.442,5.915,18.17,15.242,22.2,19.61,9.622,14.835,7.302,1.754,9.699,5.794,27.53,12.386,4.25,32.118,22.284,3.939,29.615,25.197,12.759,15.772,8.795,10.665,6.362,8.75,11.961,24.461,2.795,19.106,12.081,26.17,-0.983,17.437,11.888,15.017,21.144,13.627,15.621,3.998,8.911,16.881,14.741,16.325,13.072,-0.206,9.917,21.755,2.556,14.914,18.922,4.28,12.087,15.59,18.272,-0.106,14.488,1.778,20.51,8.629,6.369,12.625,3.491,5.664,19.597,-0.321,7.42,12.491,5.547,7.715,4.594,14.097,12.967,15.127,5.381,21.454,8.014,-0.532,8.454,22.096,6.521,1.81,12.403,20.344,5.528,8.088,24.808,6.642,16.528,-0.41,-6.59,-4.171,19.331,19.345,25.224,-0.235,14.594,17.403,19.635,18.077,-0.955,14.968,24.282,9.382,4.973,4.364,-2.293,12.595,21.125,21.828,6.671,4.088,4.103,18.36,8.779,14.45,5.495,6.232,8.252,19.035,10.413,21.81,6.221,2.283,-4.337,2.51,8.107,22.196,22.946,15.061,8.418,13.195],[25.773,22.806,7.27,13.775,9.274,11.366,4.465,4.34,8.351,18.179,30.434,24.362,10.573,1.156,15.551,20.665,14.461,15.822,12.93,13.649,9.162,-0.215,14.816,15.669,4.232,3.459,7.141,19.987,11.016,19.433,2.914,13.605,6.898,15.381,8.767,-0.954,7.113,4.693,20.7,-6.136,-1.075,7.31,21.135,12.849,0.375,18.12,15.654,19.457,23.974,11.115,3.404,-2.43,4.39,23.402,21.982,7.695,8.034,12.803,5.26,3.499,21.375,6.083,18.183,15.094,22.586,19.494,9.863,14.747,7.235,1.67,9.202,5.681,27.567,12.125,4.15,32.347,21.731,3.848,29.383,25.497,12.121,16.09,8.93,10.893,6.108,9.206,11.964,24.629,2.742,19.188,12.044,26.064,-0.641,17.267,12.373,14.581,20.797,13.514,15.949,3.967,9.519,16.708,14.76,16.346,13.118,0.382,9.778,21.719,1.807,15.141,18.849,4.313,12.233,15.433,18.134,-0.333,14.236,1.541,20.28,8.744,6.6,12.49,3.182,5.691,19.497,-0.175,7.06,12.551,5.593,7.743,4.367,13.729,12.468,14.89,5.65,21.532,7.674,-0.193,8.313,21.241,7.05,1.969,12.141,19.991,5.621,7.885,24.668,5.894,16.71,-0.425,-6.834,-4.322,19.16,19.337,25.595,-0.347,14.373,17.351,19.396,18.482,-0.69,14.797,24.311,9.505,4.942,4.051,-1.88,12.784,21.251,21.708,6.536,4.215,4.303,18.573,8.834,14.966,5.434,5.344,8.354,19.583,11.172,22.087,5.82,2.351,-4.002,2.253,8.164,22.203,22.585,15.088,8.361,13.3],[25.781,22.987,7.186,13.485,9.445,11.381,4.398,4.426,8.363,18.166,30.36,24.448,10.538,1.323,15.39,20.617,14.534,15.863,12.934,13.754,9.254,-0.255,14.746,15.599,4.354,3.409,7.336,19.841,10.96,19.047,2.851,13.542,6.84,15.178,8.791,-0.839,6.931,4.856,20.457,-6.428,-1.134,7.383,20.972,12.92,0.637,18.071,15.744,19.434,24.109,11.183,3.146,-2.471,4.12,23.599,21.952,7.751,7.885,13.18,5.191,3.706,21.241,6.347,18.276,15.037,22.519,19.198,10.091,14.49,7.553,2.104,9.526,6.003,27.668,11.842,4.167,31.956,21.926,3.461,29.534,25.741,12.526,15.969,8.822,10.188,5.796,9.582,12.061,24.44,2.763,19.287,11.949,26.092,-0.424,16.882,12.716,14.576,21.555,13.156,15.917,3.909,10.151,16.045,14.821,16.288,13.334,0.912,9.612,21.524,1.958,15.326,19.103,3.91,12.872,15.638,18.178,-0.032,14.815,1.757,20.046,8.337,6.86,12.525,3.111,6.029,19.454,-0.205,7.466,12.683,6.378,7.929,3.905,13.844,12.088,14.464,6.141,21.52,7.542,-0.231,8.451,20.926,7.57,2.224,12.496,20.39,5.622,7.817,24.038,5.727,16.679,-0.555,-6.983,-4.672,18.748,19.143,25.721,-0.191,14.812,17.504,19.481,18.618,-0.515,14.867,24.049,10.063,4.428,3.709,-1.708,13.032,21.284,21.451,6.18,4.683,4.646,18.397,9.114,14.637,4.957,5.776,8.169,19.552,11.046,22.462,6.037,2.065,-3.866,2.089,8.15,21.969,22.221,15.057,8.033,13.768],[25.821,23.175,7.122,13.216,9.504,11.359,4.26,4.502,8.318,18.178,30.394,24.625,10.513,1.256,15.17,20.605,14.589,15.761,13.073,13.888,9.313,-0.296,14.74,15.807,4.437,3.702,7.456,19.715,10.985,18.748,2.703,13.621,6.937,15.176,8.804,-0.742,6.663,4.986,20.322,-6.64,-1.119,7.47,20.68,12.841,0.852,17.961,15.826,19.477,24.087,11.194,2.99,-2.593,3.982,23.552,21.75,7.813,7.719,13.366,5.207,3.867,21.047,6.638,18.278,15.029,22.073,19.237,10.101,13.976,7.922,2.435,10.006,6.129,27.584,11.699,3.743,31.946,22.616,3.932,29.264,25.525,12.892,15.406,8.785,10.522,6.142,9.264,11.947,24.26,3.072,19.257,12.171,25.543,-0.307,16.81,12.419,15.378,22.069,13.2,15.891,4.072,10.175,15.965,14.867,16.07,13.874,0.728,9.762,21.197,1.949,15.104,18.913,4.115,12.483,16.031,17.868,0.157,14.281,1.918,19.971,8.549,6.664,12.47,3.308,6.319,19.062,0.252,7.462,12.585,6.109,8.018,4.316,14.131,12.687,14.265,6.269,20.776,7.731,-0.372,8.766,21.178,7.183,2.698,13.069,19.95,5.657,8.16,24.184,5.672,16.708,-0.423,-7.225,-4.965,18.963,18.974,25.64,0.329,14.511,17.629,19.686,18.453,-1.031,15.057,24.664,10.005,4.034,3.656,-1.727,13.373,21.259,21.838,6.386,5.341,5.023,18.518,9.344,14.309,4.885,6.247,8.476,19.24,10.417,22.245,5.83,1.77,-4.294,2.319,7.775,22.233,22.33,14.956,7.927,14.356],[25.761,23.305,7.203,12.964,9.35,11.264,4.067,4.605,8.476,18.216,30.404,24.647,10.572,1.075,15.017,20.569,14.399,15.595,13.281,14.004,9.342,-0.247,14.809,16.105,4.593,4.005,7.554,19.679,11.012,18.763,2.738,13.743,7.066,15.188,8.838,-0.663,6.523,5.24,20.288,-6.664,-1.061,7.438,20.286,12.615,1.02,17.969,15.862,19.519,23.966,11.197,2.853,-2.869,3.892,23.432,21.63,8.091,7.55,13.499,5.376,3.916,20.891,6.862,18.155,15.089,22.27,19.533,10.204,14.15,8.18,2.312,9.461,5.926,27.61,11.928,3.502,32.277,22.581,3.881,29.328,25.43,12.508,14.982,8.974,10.785,6.506,9.328,11.858,24.279,2.794,19.24,12.304,26.103,-0.602,16.704,12.081,15.653,22.059,12.912,15.773,3.79,9.422,16.5,14.917,16.165,13.844,-0.13,9.997,21.252,2.618,14.975,18.248,4.732,12.373,15.725,17.822,-0.078,14.171,1.59,20.163,8.717,6.653,12.688,3.823,6.549,18.98,0.211,7.15,12.498,6.033,8.012,4.366,13.447,13.125,15.032,5.959,20.682,7.43,-0.144,9.232,21.418,6.735,2.725,12.831,19.806,6.137,8.498,24.605,5.714,17.114,-0.462,-7.006,-5.58,19.188,18.493,25.702,0.159,14.202,17.753,19.685,18.422,-0.949,15.136,24.739,9.695,4.274,3.938,-2.005,13.293,21.235,21.173,7.317,5.465,5.411,18.212,9.151,14.33,5.181,5.785,9.057,19.359,10.64,21.736,5.475,1.635,-4.656,2.667,7.531,21.989,22.377,14.932,7.495,14.046],[25.673,23.332,7.365,12.988,9.236,11.161,3.905,4.573,8.754,18.344,30.467,24.624,10.521,0.969,15.04,20.544,14.059,15.499,13.344,14.145,9.219,-0.469,14.866,16.127,4.826,4.175,7.699,19.8,11.026,18.776,2.908,13.889,7.049,15.141,8.889,-0.604,6.556,5.449,20.405,-6.648,-0.949,7.227,19.981,12.412,1.099,18.071,15.766,19.534,23.888,11.206,2.706,-3.056,3.81,23.319,21.567,8.499,7.329,13.589,5.617,3.969,20.747,7.055,18.058,15.121,22.551,19.67,10.409,14.329,8.505,1.427,9.347,6.221,27.271,11.834,3.649,32.106,22.197,3.586,30.117,25.745,12.203,14.814,9.155,10.078,6.492,8.992,12.058,24.225,2.207,18.954,12.017,26.374,-0.988,16.688,12.21,15.668,21.775,13.402,15.846,3.718,9.354,16.723,15.089,15.825,13.377,0.482,10.102,21.345,2.802,15.438,18.495,4.919,12.951,15.321,17.981,0.253,14.555,1.331,20.103,8.046,6.905,12.828,4.03,6.085,19.142,0.098,7.462,12.571,6.033,8.045,4.36,13.516,12.825,14.959,5.904,20.482,7.098,0.574,9.575,21.211,6.917,2.548,11.998,20.208,6.475,8.698,24.64,5.698,16.885,-0.461,-7.1,-5.885,18.886,18.314,25.133,-0.047,14.044,17.548,19.841,18.479,-0.441,15.219,24.0,9.681,4.228,4.032,-2.408,13.225,21.001,20.669,7.767,5.457,5.701,18.012,9.43,14.228,4.892,5.848,9.562,19.347,10.894,22.069,5.305,1.562,-4.526,2.528,7.254,21.265,22.381,15.368,7.531,13.604],[25.7,23.275,7.558,13.202,9.096,11.155,3.803,4.515,8.983,18.438,30.638,24.546,10.366,0.865,15.164,20.536,13.876,15.536,13.295,14.313,9.043,-0.617,14.942,15.966,5.062,4.347,7.657,20.006,11.028,18.601,3.076,13.967,6.999,15.117,8.947,-0.397,6.581,5.446,20.553,-6.689,-0.841,7.077,19.908,12.215,1.116,18.104,15.701,19.424,23.717,11.238,2.584,-2.968,3.755,23.192,21.553,8.832,7.044,13.64,5.887,3.965,20.502,7.341,17.944,15.105,22.422,19.438,10.517,13.846,8.478,1.178,9.71,5.963,27.461,11.689,3.566,32.173,22.08,4.074,29.939,25.479,12.167,14.744,8.847,9.626,6.616,8.193,12.209,24.297,2.143,19.49,12.003,26.207,-0.969,16.857,12.592,15.187,21.186,13.156,16.118,3.823,9.788,16.262,15.093,15.745,12.829,0.304,10.051,21.545,2.454,15.316,19.135,4.994,13.647,15.61,18.289,0.151,14.306,1.563,19.668,8.228,7.624,12.488,4.422,6.375,19.232,-0.026,7.396,13.182,5.573,8.348,4.445,14.027,12.555,14.488,6.079,20.544,7.391,0.734,9.449,20.61,7.183,2.798,11.477,20.335,6.512,8.204,24.261,5.405,16.961,0.054,-7.575,-5.923,19.117,18.097,25.202,0.243,13.714,17.481,19.813,18.496,-0.591,14.929,23.704,9.701,3.938,4.142,-2.756,13.558,20.852,20.871,7.048,5.199,5.78,18.005,10.011,13.753,5.016,6.163,9.97,19.339,10.915,21.936,5.273,1.636,-4.739,2.602,7.085,21.093,21.881,15.141,7.83,14.235],[25.714,23.235,7.787,13.234,8.915,11.275,3.762,4.447,9.033,18.44,30.777,24.43,10.428,0.812,15.24,20.509,13.829,15.683,13.185,14.37,8.936,-0.594,15.072,15.79,5.251,4.531,7.71,19.985,10.862,18.556,3.238,13.946,6.855,15.171,9.11,-0.178,6.651,5.288,20.576,-6.813,-0.709,7.136,19.906,12.01,1.149,18.069,15.796,19.288,23.515,11.225,2.541,-3.061,3.669,23.063,21.524,9.066,6.759,13.731,6.057,3.917,20.227,7.517,17.887,14.925,22.03,19.2,10.377,13.949,8.484,1.508,9.808,5.615,27.481,11.654,3.195,32.481,22.361,4.04,29.439,25.179,12.622,15.279,8.758,9.789,6.389,8.416,12.161,24.658,2.314,19.989,12.017,25.876,-0.955,16.794,12.766,15.225,20.997,12.452,16.132,4.128,9.608,16.186,15.123,15.549,12.993,0.175,9.941,21.689,2.854,14.718,18.435,5.15,14.334,15.669,18.397,-0.131,14.659,1.816,20.428,8.702,7.072,12.529,4.513,6.427,18.153,0.173,6.914,13.28,5.895,8.277,4.57,13.914,12.616,14.883,6.398,21.192,7.297,0.395,9.287,20.5,7.158,2.998,11.482,20.287,6.311,7.386,24.153,6.082,17.017,-0.118,-7.305,-5.967,18.589,17.972,25.026,0.314,13.726,17.627,19.87,18.489,-0.634,15.02,24.045,9.66,3.538,4.117,-1.95,13.23,20.757,21.199,7.172,5.184,6.155,18.149,9.743,13.659,5.873,6.563,10.312,18.863,10.561,21.974,5.504,1.567,-4.767,2.595,7.104,21.554,21.749,14.649,7.627,14.968],[25.642,23.138,8.021,13.259,8.828,11.451,3.777,4.403,8.967,18.392,30.919,24.367,10.634,0.739,15.335,20.443,13.628,15.808,13.104,14.496,8.868,-0.528,15.308,15.815,5.315,4.667,7.721,19.908,10.693,18.41,3.292,13.751,6.768,15.318,9.308,-0.055,6.801,5.133,20.666,-6.993,-0.621,7.294,19.873,11.994,1.199,18.089,16.008,19.081,23.376,11.055,2.493,-3.066,3.616,23.099,21.466,9.139,6.516,13.742,6.154,3.934,20.11,7.64,17.757,14.659,21.897,19.126,10.135,13.997,8.363,2.021,9.847,5.922,27.115,11.838,3.056,32.254,22.615,3.862,29.679,24.665,12.797,15.354,9.021,10.061,6.356,8.783,11.982,24.389,2.442,19.717,12.186,25.697,-1.004,16.649,12.254,14.995,21.515,12.293,15.903,4.492,9.504,17.092,15.088,14.936,13.133,0.889,10.167,21.424,3.009,15.16,18.132,5.101,14.474,15.836,18.042,0.228,14.853,1.909,20.523,8.233,6.971,12.491,4.337,6.479,18.936,0.634,7.068,12.46,5.44,8.271,4.567,13.745,12.813,14.917,6.125,21.053,7.618,0.683,9.477,20.564,7.416,2.92,11.82,20.047,6.149,7.312,23.722,5.801,16.915,-0.174,-7.19,-5.84,18.683,18.237,24.872,0.061,13.45,17.694,19.868,18.084,-0.099,15.37,24.228,9.684,3.499,3.726,-2.017,13.15,20.577,20.781,7.681,5.325,6.393,17.844,9.361,13.988,6.403,6.998,10.844,19.07,10.458,21.756,5.144,1.439,-4.814,2.579,7.449,21.225,22.147,14.328,7.05,14.955],[25.392,22.96,8.17,13.366,8.835,11.43,3.774,4.447,8.736,18.352,31.025,24.391,10.868,0.584,15.396,20.325,13.332,15.942,12.982,14.602,8.788,-0.198,15.427,15.857,5.306,4.634,7.778,19.781,10.775,18.376,3.216,13.429,6.783,15.359,9.533,0.085,6.826,4.95,20.748,-7.175,-0.518,7.428,19.841,12.092,1.186,18.114,16.175,18.986,23.233,10.895,2.511,-2.952,3.432,23.229,21.423,9.235,6.368,13.661,6.171,4.038,20.039,7.822,17.658,14.354,22.44,19.686,10.123,13.946,8.486,2.057,10.149,6.101,26.845,11.958,3.154,32.518,22.119,3.911,30.425,24.871,12.458,14.756,9.395,9.594,7.12,8.667,12.192,23.549,2.383,19.148,12.62,25.727,-1.099,17.103,11.957,15.443,21.917,12.173,16.088,4.237,9.557,16.992,14.883,15.042,13.516,0.778,10.176,20.805,3.194,15.237,18.384,4.98,14.273,15.961,18.051,0.374,14.853,1.944,19.875,8.246,7.616,12.548,4.098,6.77,19.538,0.819,7.246,12.049,5.596,8.82,4.807,13.92,12.487,15.136,5.81,21.205,8.165,1.223,9.438,20.627,7.57,2.614,11.823,20.51,6.013,8.046,23.751,5.67,17.345,0.425,-7.356,-5.667,18.6,18.128,24.735,0.174,13.839,17.994,19.876,17.521,-0.316,15.449,23.929,9.197,3.82,3.53,-2.687,13.264,20.302,20.639,7.412,5.394,6.555,17.883,8.919,14.375,6.301,7.189,10.909,18.949,10.65,21.57,5.201,1.243,-4.699,2.77,7.317,20.718,22.229,14.772,6.884,14.614],[25.06,22.863,8.272,13.523,8.739,11.297,3.721,4.511,8.412,18.512,31.166,24.43,11.095,0.438,15.438,20.099,13.175,15.772,12.738,14.686,8.879,0.174,15.393,15.753,5.22,4.587,8.011,19.663,11.195,18.392,3.196,13.111,6.778,15.296,9.777,0.263,6.876,4.697,20.912,-7.299,-0.369,7.532,19.795,12.277,1.218,18.291,16.25,19.15,23.103,10.891,2.628,-2.747,3.209,23.268,21.432,9.305,6.222,13.58,6.17,4.212,19.881,8.0,17.676,14.166,22.221,20.075,10.009,14.022,8.886,1.445,10.787,5.689,26.728,11.964,3.308,32.818,21.778,4.123,30.399,24.559,12.66,14.574,9.969,9.752,7.599,8.556,12.176,23.108,2.214,19.327,12.884,25.795,-1.251,17.067,12.167,15.43,21.521,12.198,16.511,4.043,9.268,16.766,14.541,15.0,13.658,0.77,10.026,20.644,2.841,14.515,18.681,4.856,14.205,16.146,17.918,0.209,15.046,1.922,19.979,8.105,7.529,12.866,4.349,6.452,19.223,0.664,7.172,12.186,5.701,9.204,4.75,13.943,11.993,15.198,5.726,21.35,7.704,1.155,9.63,21.038,7.464,2.544,11.663,20.142,5.951,8.387,23.579,5.999,17.227,0.64,-7.626,-5.75,18.245,18.122,24.654,-0.094,13.858,17.988,19.971,17.869,-0.495,15.023,23.919,9.173,4.106,3.549,-2.285,13.095,20.165,20.765,7.765,5.564,6.628,18.079,9.263,13.808,5.38,6.526,10.913,18.728,10.501,21.885,4.971,1.655,-4.708,3.006,6.635,21.011,22.306,15.092,7.146,14.3],[24.69,22.765,8.278,13.643,8.616,11.308,3.673,4.545,8.143,18.878,31.229,24.413,11.399,0.239,15.451,19.887,13.176,15.694,12.441,14.684,9.161,0.388,15.401,15.463,5.13,4.632,8.175,19.659,11.525,18.397,3.293,12.846,6.682,15.148,9.924,0.386,6.895,4.545,20.951,-7.268,-0.201,7.525,19.773,12.248,1.112,18.527,16.236,19.442,23.006,10.976,2.87,-2.66,3.07,23.279,21.463,9.313,6.012,13.486,5.954,4.462,19.767,8.166,17.776,14.049,21.759,20.115,9.403,14.391,9.053,1.031,10.511,5.559,26.56,12.072,3.136,32.517,22.399,4.22,30.079,24.232,12.587,14.457,9.873,9.972,7.51,8.343,11.752,23.131,2.05,19.679,12.959,26.075,-1.503,16.961,12.241,15.308,21.111,12.839,16.576,3.937,9.074,16.877,14.251,14.85,14.155,0.39,10.801,20.63,2.841,14.463,18.796,4.646,14.353,15.57,17.944,0.859,14.871,1.646,20.435,8.355,7.713,13.326,4.301,6.841,18.265,0.689,7.21,12.299,5.437,9.489,4.57,13.57,11.368,14.894,5.616,21.088,7.193,0.841,10.28,21.077,7.679,2.628,11.54,20.506,5.527,7.802,23.265,5.969,17.153,0.63,-7.587,-6.027,18.749,18.122,24.69,-0.21,13.835,17.914,20.162,18.165,0.079,15.108,24.116,9.699,3.948,3.241,-1.683,13.487,20.271,21.111,8.131,6.012,6.512,17.935,10.174,13.095,5.048,6.286,10.586,18.827,10.111,21.938,4.683,2.409,-4.481,3.428,6.432,20.883,22.057,15.064,6.824,14.355],[24.302,22.665,8.257,13.706,8.503,11.403,3.616,4.498,8.002,19.16,30.969,24.468,11.614,0.085,15.446,19.813,13.243,16.025,12.256,14.711,9.443,0.308,15.448,15.209,4.967,4.845,8.291,19.813,11.543,18.294,3.378,12.741,6.545,15.033,9.969,0.418,6.785,4.477,20.925,-7.106,0.002,7.393,19.685,12.149,1.002,18.686,16.173,19.622,22.936,10.916,3.103,-2.625,2.98,23.317,21.54,9.298,5.804,13.491,5.608,4.802,19.774,8.242,17.873,14.027,21.945,20.434,8.877,14.631,9.011,1.106,10.345,5.875,26.104,12.043,2.914,32.409,22.217,4.165,30.226,23.912,12.625,14.84,9.312,9.832,6.665,8.085,11.646,23.418,2.219,19.981,13.096,26.201,-1.49,16.886,11.393,14.824,21.023,13.082,16.55,4.387,9.312,17.149,14.101,15.017,14.362,0.524,11.174,20.838,3.29,14.855,18.805,4.708,14.475,16.016,17.996,0.452,14.983,2.121,20.303,8.977,7.523,13.4,4.814,7.331,17.592,0.802,7.04,12.077,5.843,9.72,4.493,13.625,11.26,14.655,5.567,21.035,7.962,1.064,10.753,20.797,8.048,2.302,11.354,20.384,5.392,7.613,23.316,5.84,17.693,0.02,-7.901,-6.025,19.282,18.171,24.559,-0.177,13.687,17.927,20.509,17.975,0.566,15.3,24.368,9.692,4.453,3.159,-1.569,13.622,20.321,20.619,8.189,6.542,6.629,18.26,10.522,12.397,4.982,6.534,10.27,18.492,9.967,21.977,4.535,2.44,-4.439,3.589,6.369,20.465,22.003,14.385,6.444,14.451],[23.929,22.568,8.083,13.791,8.43,11.542,3.603,4.386,8.049,19.341,30.645,24.626,11.75,0.064,15.446,19.938,13.318,16.423,12.06,14.752,9.697,0.156,15.554,15.141,4.782,5.278,8.34,19.948,11.549,18.109,3.385,12.755,6.481,14.962,9.912,0.426,6.853,4.458,20.875,-7.029,0.207,7.274,19.449,12.125,0.789,18.804,16.177,19.688,22.86,10.722,3.369,-2.622,2.908,23.393,21.479,9.286,5.616,13.588,5.363,5.178,19.693,8.205,17.895,13.972,22.204,20.864,8.878,14.491,8.506,1.483,10.956,5.429,25.714,12.253,2.898,32.374,21.352,4.441,29.817,23.684,12.866,14.979,9.182,9.415,6.414,7.62,11.919,23.848,2.177,19.893,12.749,26.262,-1.461,17.058,11.091,14.16,20.964,13.0,16.364,4.306,9.854,17.789,13.701,14.855,13.903,0.242,10.932,21.006,3.479,14.554,18.614,4.788,15.009,16.664,18.29,0.389,15.353,2.488,20.3,8.797,7.474,13.111,4.973,6.901,17.571,0.708,6.873,12.07,5.633,9.687,4.756,13.829,11.601,14.987,5.443,21.244,7.894,1.43,11.087,20.59,7.718,2.154,11.227,20.224,5.801,8.06,23.243,5.96,17.882,-0.026,-7.592,-5.676,19.017,18.416,24.418,-0.148,13.744,17.927,20.499,18.304,0.343,15.05,24.564,9.343,4.548,3.216,-1.849,13.411,20.335,20.589,8.392,6.708,6.986,18.52,10.349,12.248,4.482,6.622,10.266,18.594,9.948,22.213,4.64,1.987,-4.453,3.804,6.646,20.822,22.023,14.402,6.29,14.392],[23.677,22.475,7.779,13.934,8.281,11.722,3.508,4.273,8.228,19.485,30.476,24.766,11.826,0.044,15.351,20.067,13.318,16.774,11.894,14.753,9.859,0.156,15.636,15.084,4.622,5.477,8.297,20.074,11.638,17.916,3.38,12.856,6.368,15.035,9.76,0.464,6.975,4.637,20.791,-6.994,0.326,7.245,19.222,12.112,0.579,18.83,16.267,19.764,22.873,10.544,3.514,-2.71,2.945,23.5,21.267,9.326,5.549,13.625,5.224,5.365,19.613,8.146,17.872,14.003,22.076,21.017,8.671,14.034,7.747,1.565,11.163,5.396,25.423,12.944,3.021,32.015,21.775,4.007,29.815,23.026,13.282,14.769,9.532,9.561,6.534,7.783,11.945,24.336,1.909,19.891,13.299,26.209,-1.382,16.982,11.011,14.694,21.178,12.995,16.404,3.891,10.517,17.875,13.785,14.482,13.669,0.122,10.89,21.011,3.658,14.15,18.403,4.777,15.659,16.503,18.309,0.776,15.556,2.421,20.326,8.561,7.876,12.981,5.523,7.322,18.26,1.168,7.069,12.213,5.288,9.423,5.246,13.415,11.451,14.801,5.255,21.305,7.2,1.644,11.468,20.639,7.014,2.115,11.769,20.816,5.568,8.382,22.825,6.194,17.435,0.858,-7.119,-5.946,18.556,17.988,24.659,-0.603,13.689,17.559,20.542,18.862,0.209,14.895,24.305,8.893,4.386,2.932,-2.074,13.415,20.31,20.937,8.08,6.807,7.274,18.272,9.95,12.234,4.493,6.2,10.832,18.932,10.13,22.163,4.767,2.039,-4.453,3.887,6.671,20.897,22.228,14.406,5.422,14.559],[23.414,22.515,7.445,14.094,8.189,11.834,3.353,4.139,8.276,19.583,30.301,24.709,11.891,-0.064,15.241,20.049,13.285,16.967,11.941,14.753,9.954,0.368,15.656,15.141,4.513,5.473,8.514,20.159,11.816,17.839,3.501,12.851,6.263,15.056,9.598,0.575,6.982,4.796,20.91,-7.056,0.465,7.222,19.046,12.176,0.517,18.727,16.311,19.939,22.932,10.417,3.433,-2.906,3.098,23.553,21.15,9.59,5.545,13.633,5.255,5.274,19.632,8.05,17.76,14.019,21.563,20.811,8.828,14.511,7.62,1.401,11.095,5.939,25.197,13.028,3.151,32.209,22.193,3.414,30.122,22.8,13.426,14.563,9.173,9.368,6.986,8.15,12.019,25.101,1.705,20.521,13.5,26.029,-1.226,16.904,11.129,15.141,21.441,12.96,17.004,4.455,10.857,17.818,13.718,14.287,13.905,0.367,10.9,21.028,3.742,14.005,18.352,4.711,16.061,16.823,18.296,0.161,15.224,2.243,20.682,9.171,7.252,13.384,5.697,7.493,19.044,1.441,7.078,12.346,5.045,9.162,5.061,13.291,11.431,14.681,5.639,20.643,7.584,1.621,11.37,20.388,6.828,1.638,11.719,20.516,5.503,8.618,23.057,5.661,17.428,0.925,-7.575,-5.917,18.847,17.721,24.823,-0.969,13.567,17.822,20.237,18.803,0.571,15.055,24.109,8.844,4.857,2.797,-2.34,13.631,20.214,20.37,8.177,6.683,6.55,18.159,10.061,12.272,5.227,5.532,11.144,18.619,9.93,22.05,4.569,2.405,-4.876,3.836,5.914,20.707,22.092,14.283,5.32,14.469],[23.227,22.59,7.174,14.278,8.167,11.88,3.261,4.039,8.284,19.765,30.221,24.514,11.967,-0.218,15.248,20.056,13.246,17.062,12.154,14.705,10.182,0.55,15.732,15.385,4.473,5.447,8.713,20.161,12.053,17.987,3.624,12.89,6.341,14.898,9.481,0.764,6.946,4.885,21.037,-7.325,0.572,7.192,18.902,12.241,0.415,18.491,16.33,20.146,23.0,10.314,3.368,-3.239,3.212,23.555,21.014,9.754,5.379,13.756,5.385,5.065,19.608,7.854,17.532,13.897,21.39,20.864,8.963,14.651,7.777,1.124,10.909,5.464,24.872,12.495,2.762,31.981,21.948,3.956,29.618,22.984,13.703,14.587,9.03,9.459,6.692,7.952,11.994,25.895,1.81,20.484,13.036,25.503,-1.327,17.051,11.147,14.829,21.387,13.255,17.372,4.327,10.425,17.846,13.964,13.858,14.78,0.375,11.288,20.776,3.627,14.429,18.196,4.223,16.159,16.951,18.396,0.592,15.093,2.129,20.827,9.264,7.509,13.902,5.079,8.034,19.395,0.785,6.555,12.138,5.038,8.634,4.817,13.626,11.645,15.052,5.948,20.66,8.086,1.092,10.978,20.347,7.244,1.54,11.3,20.377,5.754,8.429,23.069,5.48,17.66,0.524,-7.723,-5.97,19.375,17.614,24.72,-0.867,13.882,17.87,20.139,18.85,1.232,15.268,24.498,8.967,4.506,2.896,-2.346,13.75,20.034,20.038,8.35,6.706,6.052,18.211,10.617,12.076,5.504,6.019,10.972,18.26,9.635,22.152,4.864,2.639,-5.143,3.666,5.893,20.97,21.724,14.839,6.269,14.476],[23.163,22.488,7.163,14.409,8.235,11.985,3.247,3.987,8.236,19.931,30.221,24.37,12.015,-0.328,15.288,20.06,13.138,17.193,12.386,14.76,10.29,0.693,15.911,15.502,4.292,5.336,8.957,20.14,12.313,18.274,3.721,13.081,6.361,14.834,9.302,0.86,6.982,4.861,21.069,-7.54,0.626,7.158,18.791,12.166,0.313,18.324,16.391,20.267,23.01,10.246,3.234,-3.357,3.327,23.574,20.8,9.718,5.281,13.896,5.632,4.851,19.576,7.527,17.355,13.713,21.826,21.513,8.926,14.655,8.033,0.904,11.203,4.885,25.015,12.701,2.51,32.169,22.103,4.427,29.55,23.017,13.294,14.946,8.765,9.893,5.808,7.594,11.882,25.444,1.931,20.418,13.282,25.112,-1.518,16.933,11.365,14.889,21.333,13.422,17.114,3.909,10.535,17.751,14.177,13.734,14.56,0.261,11.905,20.976,3.576,14.821,17.821,4.38,16.115,16.569,18.291,0.617,15.418,2.242,20.889,9.075,7.863,14.159,5.087,8.157,19.603,0.798,6.736,11.99,5.567,8.45,4.95,13.655,11.763,14.378,5.731,21.004,8.021,1.103,10.49,20.335,7.928,2.001,11.445,20.604,5.922,7.886,22.682,6.181,17.403,0.603,-7.922,-6.446,19.142,17.397,24.599,-0.824,13.649,17.893,19.983,19.272,1.253,14.856,24.712,8.649,4.133,2.969,-2.363,14.123,19.802,20.413,8.363,6.548,5.662,17.67,10.713,12.27,5.168,6.51,10.807,18.056,9.574,22.557,5.22,2.292,-5.313,3.843,5.842,21.021,21.765,15.099,6.171,14.59],[23.3,22.312,7.286,14.464,8.4,11.952,3.341,4.095,8.095,20.105,30.391,24.159,12.204,-0.325,15.325,20.085,13.084,17.303,12.481,14.754,10.176,0.64,16.045,15.505,3.988,5.324,9.171,20.154,12.533,18.453,3.842,13.309,6.411,14.852,9.1,1.006,7.131,4.686,21.058,-7.673,0.626,7.196,18.623,11.996,0.304,18.096,16.382,20.263,22.772,10.031,2.934,-3.084,3.416,23.707,20.683,9.594,5.257,14.04,5.834,4.661,19.663,7.164,17.245,13.57,21.934,21.639,8.527,15.078,8.515,1.286,11.324,5.429,25.026,13.116,2.914,32.125,21.841,3.967,29.988,22.542,13.397,14.824,8.817,9.709,5.799,8.046,12.645,24.428,1.913,20.469,13.646,25.477,-1.333,17.197,11.907,15.056,21.499,12.921,16.844,3.758,10.753,18.058,14.348,13.096,14.461,0.479,12.736,20.943,3.567,14.626,17.672,4.7,16.07,17.226,18.323,0.035,16.41,2.624,20.294,9.21,8.162,13.932,5.301,7.818,19.905,1.231,7.102,12.453,4.941,8.179,5.076,13.334,11.9,14.308,5.511,20.7,7.846,1.269,9.671,19.871,7.53,2.056,11.408,20.934,5.82,8.186,23.037,6.395,17.353,0.425,-8.128,-6.373,18.851,17.717,24.51,-0.862,13.357,17.895,19.959,19.408,1.063,15.156,24.317,8.58,4.388,3.374,-2.832,14.459,19.443,20.555,7.882,6.422,5.42,17.723,10.461,12.944,5.256,6.612,10.937,17.828,9.445,22.244,5.149,2.036,-4.991,3.688,5.92,20.478,21.594,14.822,5.347,14.443],[23.573,22.19,7.458,14.547,8.552,12.025,3.493,4.244,7.873,20.195,30.558,24.023,12.449,-0.23,15.402,20.2,12.955,17.583,12.441,14.613,10.001,0.361,16.147,15.684,3.812,5.481,9.166,20.121,12.594,18.413,3.939,13.457,6.496,14.791,8.853,1.329,7.347,4.483,20.989,-7.752,0.487,7.34,18.49,11.837,0.307,17.931,16.43,20.293,22.545,9.843,2.753,-2.833,3.498,23.64,20.662,9.589,5.196,14.119,5.839,4.499,19.649,6.771,17.254,13.587,21.683,21.362,8.12,14.87,8.992,1.575,11.314,5.733,25.111,13.616,3.62,32.497,21.087,4.117,30.028,22.477,13.358,14.626,9.207,9.88,6.646,8.778,12.696,23.694,1.804,21.336,13.47,25.641,-0.909,17.201,11.617,14.926,21.59,12.437,17.232,3.189,10.496,18.588,14.298,12.424,14.618,0.547,13.094,20.665,3.694,14.481,17.643,3.978,16.166,17.614,18.28,0.41,16.264,2.85,19.971,9.396,8.502,13.839,5.007,8.041,20.107,0.838,6.837,12.924,5.125,7.525,5.574,12.958,12.213,14.926,5.354,19.933,7.907,1.332,8.92,20.008,6.988,1.469,10.951,20.837,5.568,8.602,22.965,5.936,17.46,0.532,-7.995,-6.621,19.117,17.569,24.202,-0.763,13.284,17.729,19.705,19.319,0.892,15.768,24.384,8.46,4.313,3.885,-2.34,14.505,19.394,20.215,7.624,6.161,4.948,17.553,10.266,13.22,5.517,6.358,11.011,18.307,9.228,22.264,4.921,1.818,-4.647,3.384,6.118,20.866,21.598,14.387,5.577,14.553],[23.922,22.094,7.68,14.658,8.703,12.057,3.645,4.371,7.633,20.302,30.663,23.892,12.617,-0.113,15.335,20.382,12.759,17.985,12.214,14.54,9.996,0.174,16.296,15.79,3.705,5.556,9.107,19.998,12.548,18.331,4.124,13.603,6.474,14.686,8.498,1.521,7.467,4.32,20.782,-7.768,0.261,7.51,18.352,11.831,0.384,17.892,16.591,20.476,22.508,9.914,2.658,-2.694,3.656,23.451,20.653,9.622,5.23,14.105,5.809,4.366,19.598,6.384,17.406,13.612,21.448,20.997,7.961,15.128,9.269,1.585,12.082,5.448,25.155,12.979,3.571,32.328,20.803,4.393,30.137,22.517,13.475,14.605,9.536,9.969,7.025,8.867,12.288,23.196,1.943,21.74,13.906,25.491,-0.944,17.044,11.311,15.331,21.599,12.314,17.939,3.182,10.074,18.965,14.03,12.368,14.147,0.35,12.637,20.567,3.806,15.136,17.663,3.663,16.007,17.513,18.122,0.177,15.544,2.641,20.658,8.785,7.677,13.87,5.198,8.623,19.86,1.418,7.02,12.862,5.546,6.956,5.489,12.992,12.331,14.726,5.433,19.784,7.823,1.54,8.415,19.989,6.909,1.438,10.519,20.591,5.256,8.723,22.635,6.229,17.261,0.843,-8.213,-6.858,19.499,17.177,24.214,-1.084,13.018,18.246,19.749,19.39,0.712,15.781,24.326,8.646,3.78,3.986,-1.387,14.007,19.384,19.923,7.539,5.837,4.627,17.032,10.749,13.106,5.032,6.005,10.756,18.436,9.122,22.208,4.832,1.936,-4.607,3.048,6.044,21.033,21.643,14.461,6.447,15.07],[24.163,21.979,7.81,14.53,8.779,11.982,3.738,4.5,7.44,20.417,30.648,23.746,12.901,0.019,15.33,20.575,12.501,18.318,11.955,14.413,9.948,0.022,16.424,16.016,3.743,5.493,9.079,19.941,12.489,18.195,4.247,13.717,6.422,14.622,8.174,1.525,7.425,4.285,20.563,-7.851,0.09,7.692,18.158,11.913,0.386,17.883,16.911,20.723,22.592,10.208,2.599,-2.509,3.786,23.324,20.599,9.609,5.365,14.082,5.678,4.246,19.596,6.353,17.39,13.662,21.295,21.009,8.048,15.201,8.883,1.04,11.721,5.39,25.577,12.78,3.428,32.343,21.051,4.126,30.205,22.682,13.56,14.52,9.657,10.009,6.777,8.774,12.176,22.967,2.046,21.987,13.926,25.353,-0.974,17.226,11.338,15.348,21.113,12.692,18.088,3.384,10.367,19.246,13.714,13.327,14.33,0.485,11.721,21.234,3.739,15.34,18.018,3.638,15.689,17.674,18.056,-0.032,15.862,2.51,20.777,8.589,7.513,14.068,5.747,9.207,19.83,0.851,7.357,12.858,5.218,6.489,5.322,13.105,12.377,14.009,5.426,19.878,8.313,1.253,7.894,19.423,7.287,2.024,10.629,20.002,5.123,8.383,22.763,6.823,17.14,0.446,-8.32,-6.918,19.498,17.098,24.423,-1.02,13.132,18.35,19.555,19.549,0.721,15.62,23.573,8.777,3.62,3.743,-1.762,13.372,19.326,20.235,7.037,5.658,4.597,17.774,10.722,12.798,4.55,6.16,10.718,18.194,9.676,21.885,5.336,1.763,-4.36,2.766,6.005,20.455,21.388,14.824,6.341,14.929],[24.369,21.89,7.646,14.317,8.928,11.952,3.713,4.596,7.279,20.571,30.643,23.615,13.063,0.021,15.471,20.744,12.373,18.502,11.788,14.171,9.748,-0.175,16.614,16.257,3.952,5.424,9.185,19.81,12.454,18.152,4.294,13.904,6.371,14.543,7.881,1.192,7.377,4.358,20.372,-7.995,-0.075,7.887,17.929,11.972,0.301,17.963,17.199,20.786,22.659,10.592,2.517,-2.339,3.838,23.06,20.622,9.527,5.453,13.924,5.487,4.051,19.568,6.487,17.267,13.892,21.456,21.28,7.694,15.021,8.704,1.134,11.554,5.517,25.962,12.441,3.7,32.338,21.277,4.375,30.004,23.267,13.572,14.627,9.437,9.983,6.915,8.628,12.031,22.875,2.054,21.772,13.775,25.188,-0.966,17.253,11.341,15.266,21.132,12.428,17.407,2.958,10.889,19.367,13.747,13.647,14.949,0.343,11.618,21.461,3.6,15.17,17.899,3.633,15.499,18.453,18.131,0.123,16.18,2.629,20.388,9.079,7.649,14.057,5.458,9.46,19.908,0.732,6.868,13.678,5.441,6.602,5.199,13.079,12.322,14.159,5.48,19.471,8.357,1.576,7.897,19.216,7.745,1.904,11.428,20.018,5.561,8.448,23.421,6.256,17.131,-0.151,-8.103,-6.998,19.471,16.985,23.838,-0.465,13.335,18.101,19.45,20.119,0.773,15.949,23.733,8.758,3.978,4.14,-1.974,13.603,19.076,20.334,6.92,5.64,4.6,18.192,10.43,12.441,4.838,6.426,10.857,18.146,10.399,21.754,5.449,1.423,-4.058,2.795,6.537,20.8,21.326,14.932,5.941,14.093],[24.573,21.875,7.477,14.17,9.196,11.976,3.742,4.674,7.113,20.703,30.659,23.626,12.961,-0.139,15.606,20.86,12.387,18.596,11.9,14.002,9.606,-0.409,16.74,16.318,4.04,5.281,9.332,19.673,12.421,18.222,4.195,14.269,6.305,14.554,7.759,0.948,7.2,4.445,20.156,-8.093,-0.216,8.152,17.758,12.104,0.331,18.127,17.296,20.844,22.679,10.889,2.416,-2.274,3.898,22.805,20.802,9.407,5.583,13.581,5.313,3.92,19.532,6.627,17.112,14.189,21.788,21.443,7.606,14.673,8.805,1.511,12.484,5.32,26.391,12.397,3.53,32.569,21.188,4.811,29.833,24.038,13.754,14.96,9.361,9.591,6.727,8.252,11.814,22.745,2.126,21.299,14.381,25.232,-1.215,17.476,10.912,15.734,21.729,12.29,17.129,2.877,10.373,19.294,13.734,12.662,14.46,0.056,12.337,20.964,3.508,15.676,17.452,4.559,15.428,18.567,17.86,-0.565,15.813,2.824,20.253,8.885,7.83,14.095,5.041,9.31,19.978,0.385,6.675,13.948,5.184,6.589,5.729,13.076,12.608,14.284,5.263,19.643,8.06,1.288,8.01,19.219,7.518,1.807,12.186,19.81,5.823,8.613,23.594,6.173,17.483,-0.035,-8.411,-6.932,19.189,16.496,23.804,-0.836,13.101,18.66,19.747,20.364,0.596,16.351,24.127,9.414,4.143,4.441,-1.956,13.528,18.912,19.991,7.29,5.611,4.815,17.784,10.308,12.523,4.765,6.416,10.846,18.101,10.513,21.6,5.388,1.336,-3.699,2.729,5.98,20.858,21.409,15.057,6.176,14.235],[24.832,21.918,7.488,14.078,9.441,12.028,3.813,4.762,7.122,20.657,30.721,23.854,12.963,-0.388,15.889,20.833,12.308,18.574,12.087,13.938,9.46,-0.676,16.681,16.388,4.069,5.052,9.357,19.503,12.446,18.248,4.1,14.697,6.269,14.762,7.864,0.822,6.937,4.512,20.066,-8.189,-0.168,8.372,17.665,12.176,0.267,18.235,17.334,20.889,22.686,10.933,2.306,-2.413,3.946,22.652,20.888,9.294,5.648,13.276,5.252,3.91,19.486,6.787,16.954,14.326,22.05,21.593,7.57,14.494,8.074,1.463,12.691,5.467,26.568,12.225,3.308,32.431,20.783,4.176,30.272,24.172,13.589,15.049,9.179,10.041,6.223,8.109,12.14,22.536,2.322,21.103,13.874,25.266,-1.26,17.739,10.845,15.084,22.068,12.45,17.735,2.912,9.557,19.422,13.734,12.593,13.57,0.307,13.067,21.243,3.493,16.298,17.748,4.252,15.575,17.833,17.611,0.015,15.777,2.804,20.15,8.604,8.41,13.749,4.936,8.96,20.045,0.171,6.931,13.532,5.287,6.457,5.72,13.217,13.665,14.249,5.276,19.632,8.091,0.799,8.405,19.172,7.348,1.828,12.124,19.529,5.662,8.778,23.287,6.361,17.998,0.252,-8.342,-6.966,19.298,16.525,24.134,-0.979,13.557,18.53,20.006,20.334,0.494,16.227,23.722,9.351,3.743,4.162,-1.268,13.002,18.751,20.444,7.833,5.505,4.988,17.172,10.053,13.191,4.154,5.741,10.607,18.264,10.466,21.712,5.308,1.362,-3.851,2.791,5.792,20.464,21.657,15.46,6.362,14.48],[24.975,21.986,7.443,13.861,9.663,12.106,3.866,4.756,7.201,20.426,30.787,24.145,12.98,-0.579,16.049,20.878,12.134,18.518,12.133,13.993,9.253,-0.641,16.585,16.409,3.986,4.921,9.337,19.28,12.39,18.298,3.953,15.146,6.303,14.904,8.101,0.6,6.834,4.405,20.03,-8.218,0.045,8.512,17.681,12.259,0.275,18.3,17.159,20.877,22.747,10.89,2.117,-2.488,3.825,22.642,20.928,9.077,5.741,13.066,5.143,3.912,19.453,6.946,16.978,14.386,21.805,21.485,7.704,15.04,7.262,1.124,12.152,5.735,26.383,12.108,3.539,32.724,20.619,4.498,30.138,23.743,13.66,15.078,9.055,10.82,6.329,8.842,12.216,22.497,2.487,21.682,14.024,25.296,-1.423,17.867,11.028,14.885,21.964,12.571,18.143,2.96,9.787,19.191,13.927,13.387,13.233,0.324,13.377,21.511,3.292,16.298,18.02,3.77,15.581,17.955,17.803,-0.245,15.861,2.565,20.321,8.235,8.771,13.57,4.26,8.51,20.118,0.932,6.728,13.682,5.546,6.727,5.35,13.221,14.421,14.657,5.513,19.519,8.076,1.192,9.124,19.136,8.152,1.835,11.215,20.013,5.582,8.443,23.062,5.86,17.844,0.178,-8.047,-6.784,19.57,16.639,24.415,-0.878,13.39,18.636,20.048,20.181,0.647,16.091,22.875,8.938,3.581,4.263,-1.516,12.816,18.496,20.641,7.924,5.567,5.23,17.207,9.669,13.223,4.353,4.983,10.664,17.878,10.682,21.201,5.505,1.45,-4.274,2.838,6.789,20.186,21.807,15.645,6.357,14.293],[24.914,22.041,7.389,13.627,9.94,12.261,3.968,4.602,7.207,20.305,30.844,24.422,12.981,-0.701,15.954,20.986,12.1,18.617,11.994,14.168,9.006,-0.428,16.551,16.313,3.887,4.686,9.325,19.377,12.247,18.373,3.779,15.532,6.334,14.848,8.405,0.509,6.955,4.225,20.144,-8.239,0.348,8.666,17.781,12.194,0.298,18.263,16.982,20.855,22.843,10.985,2.033,-2.553,3.77,22.575,20.953,8.797,6.067,13.021,4.941,3.875,19.429,7.126,17.104,14.359,21.495,21.054,8.228,15.014,7.521,0.863,12.028,5.769,26.09,12.161,3.57,32.575,20.376,4.712,29.62,23.19,13.637,15.346,9.235,10.69,6.439,9.63,12.322,22.622,2.306,21.496,14.462,25.335,-1.674,17.806,11.66,14.963,22.075,12.563,17.811,2.628,10.36,17.987,13.867,13.223,13.174,0.7,13.019,21.75,3.166,16.295,18.025,3.534,15.572,18.061,17.575,-0.316,15.589,2.49,20.083,8.182,8.265,13.527,4.231,8.258,20.038,1.049,6.437,14.447,5.127,7.005,4.95,13.383,14.351,14.491,5.242,19.019,7.886,0.829,9.658,19.481,8.156,1.961,10.754,19.465,5.396,8.719,23.625,5.959,17.193,0.17,-7.878,-7.125,19.436,17.217,24.429,-0.618,13.621,18.427,19.889,19.902,0.372,16.254,22.751,9.163,3.737,4.215,-1.739,13.001,18.337,20.29,7.805,5.615,5.289,17.986,9.431,13.235,4.846,5.101,10.419,17.908,10.854,21.384,5.461,1.046,-4.228,3.027,6.713,20.551,21.512,15.558,6.539,14.018],[24.696,21.999,7.336,13.489,10.233,12.452,3.908,4.487,7.304,20.15,30.714,24.632,13.11,-0.855,15.864,21.18,12.232,18.672,11.972,14.294,8.824,-0.26,16.411,16.19,3.81,4.418,9.154,19.436,12.035,18.468,3.799,15.695,6.258,14.686,8.63,0.416,7.126,4.186,20.149,-8.244,0.399,8.808,18.023,12.061,0.249,18.197,16.909,20.795,23.081,11.202,1.973,-2.694,3.855,22.481,20.864,8.636,6.406,13.128,4.79,3.874,19.517,7.232,17.303,14.274,21.813,20.933,8.534,14.608,7.889,0.801,11.709,5.048,26.325,11.769,3.845,32.42,20.501,3.988,29.753,23.257,13.93,15.49,9.176,10.939,6.526,9.382,12.395,22.804,2.156,21.331,13.956,25.438,-1.312,17.795,11.492,14.997,21.979,12.409,17.413,2.794,10.342,17.536,13.798,12.3,13.945,0.639,12.585,21.625,2.782,15.918,17.967,3.43,15.726,18.114,17.859,0.136,15.354,2.35,19.978,8.39,7.589,13.623,4.295,8.775,19.964,0.99,6.709,15.028,5.621,7.412,5.214,13.215,14.208,14.589,5.187,19.357,7.681,0.979,9.709,19.73,8.25,1.871,10.836,19.589,5.267,8.65,24.121,6.104,16.914,0.191,-8.308,-7.193,19.272,17.309,24.224,-0.826,13.211,18.167,19.556,20.017,0.698,16.369,23.204,9.616,3.612,4.034,-1.556,12.684,18.413,20.13,7.719,5.544,5.427,17.871,9.567,13.137,4.505,5.709,9.932,18.393,11.032,21.248,5.293,1.077,-4.019,2.739,6.278,20.936,21.427,15.364,6.554,13.629],[24.556,22.022,7.235,13.551,10.516,12.623,3.818,4.287,7.4,19.995,30.512,24.745,13.116,-0.865,15.901,21.25,12.231,18.579,12.107,14.398,8.663,-0.19,16.124,16.125,3.854,4.174,8.823,19.363,11.851,18.533,3.905,15.693,6.357,14.579,8.766,0.437,7.22,4.378,20.082,-8.27,0.297,8.852,18.296,11.838,0.147,18.097,16.923,20.749,23.269,11.542,1.987,-2.767,3.983,22.504,20.735,8.744,6.505,13.047,4.732,3.775,19.713,7.261,17.43,14.084,21.848,21.075,8.297,14.1,8.154,0.739,11.791,4.826,26.341,11.624,3.859,32.292,20.562,4.267,29.797,23.761,14.018,15.31,8.923,10.939,6.325,8.833,12.298,23.149,2.116,21.176,13.575,25.8,-1.555,17.735,10.889,14.948,22.124,13.0,17.708,2.814,10.191,18.16,13.768,12.813,14.633,-0.3,12.238,21.578,2.683,15.88,17.702,4.065,16.108,18.366,17.891,-0.269,15.327,2.819,19.894,8.282,7.139,13.429,3.91,9.514,20.109,0.951,6.756,15.015,5.225,7.309,5.648,13.262,14.302,14.635,5.189,19.973,7.622,0.603,9.739,19.818,7.979,1.645,10.897,20.007,5.566,8.792,24.026,6.189,17.011,0.143,-8.534,-6.924,19.203,17.283,24.567,-1.302,13.134,18.164,19.832,20.572,0.469,16.245,23.462,9.777,3.311,4.02,-1.563,12.89,18.637,20.234,7.917,5.431,5.409,17.373,9.529,13.007,4.039,5.711,10.08,18.419,11.093,21.296,5.206,1.103,-4.391,2.446,7.022,20.604,21.574,15.299,6.92,14.247],[24.511,22.113,7.19,13.688,10.706,12.629,3.693,4.142,7.468,19.955,30.391,24.806,13.025,-0.787,15.97,21.173,12.34,18.558,12.243,14.631,8.588,-0.342,15.99,15.942,3.986,4.032,8.546,19.187,11.659,18.568,4.134,15.605,6.486,14.551,8.835,0.481,7.147,4.683,20.131,-8.288,0.207,8.802,18.65,11.694,-0.121,17.943,16.984,20.799,23.317,11.803,2.076,-2.756,4.062,22.71,20.627,8.913,6.558,13.076,4.65,3.641,19.95,7.176,17.354,13.899,21.405,21.003,7.969,14.588,8.232,0.949,11.745,5.473,26.378,11.925,3.668,32.247,20.821,3.669,29.36,23.968,13.798,15.141,8.852,10.56,5.705,9.184,12.726,23.478,1.976,20.968,13.702,26.028,-1.734,17.787,10.844,14.769,22.316,12.81,17.599,3.079,9.435,19.004,13.79,13.323,14.204,-0.671,12.255,21.633,2.305,16.256,17.601,4.639,16.042,17.813,17.567,0.13,15.018,2.888,19.853,8.232,6.969,12.7,3.503,9.508,20.184,0.47,6.68,14.571,5.51,7.433,5.777,13.837,14.491,14.193,5.834,19.511,7.648,0.487,9.681,19.858,7.779,1.529,10.635,19.912,5.629,9.068,23.543,6.36,17.17,0.143,-8.216,-6.812,19.246,17.474,24.924,-1.055,13.315,17.992,19.763,20.139,0.256,16.668,23.351,9.982,3.231,4.393,-1.9,12.681,18.684,20.398,8.097,5.122,5.432,17.586,9.539,12.77,4.027,6.01,10.571,18.336,11.544,21.218,5.206,1.039,-4.488,2.164,6.974,20.696,21.369,15.373,6.708,14.322],[24.459,22.173,7.121,13.741,10.765,12.528,3.549,4.168,7.569,19.963,30.267,24.791,12.809,-0.672,15.973,20.998,12.485,18.595,12.438,14.698,8.522,-0.559,15.97,15.645,4.232,3.892,8.414,18.975,11.383,18.59,4.262,15.526,6.596,14.596,8.86,0.45,7.094,4.979,20.178,-8.258,0.119,8.753,18.81,11.616,-0.224,17.869,16.976,20.745,23.202,11.999,2.18,-2.736,4.163,22.865,20.588,9.035,6.529,13.168,4.635,3.411,20.162,7.055,17.238,13.829,21.972,21.145,8.071,14.918,8.373,1.086,11.754,5.466,26.254,12.076,3.677,32.028,20.986,3.892,29.289,24.009,13.813,15.261,8.613,10.16,5.614,9.484,12.256,23.476,1.727,20.788,14.163,25.983,-1.629,17.868,11.108,14.523,22.537,12.54,16.996,3.414,9.348,19.367,14.125,12.948,13.868,-0.194,12.902,21.431,2.397,15.96,17.986,4.493,16.214,18.045,17.583,-0.429,14.909,3.031,20.018,8.253,6.669,12.178,3.814,9.184,20.224,0.266,7.165,14.236,5.901,7.69,5.951,13.318,14.593,14.956,6.178,19.776,7.476,1.149,9.664,20.271,8.164,1.484,10.297,19.628,5.813,8.95,23.754,5.714,17.01,-0.081,-7.75,-6.664,19.565,18.245,24.897,-1.177,12.938,18.346,19.56,19.663,0.62,16.695,23.213,10.346,3.636,5.081,-1.706,12.369,18.875,20.353,7.676,5.149,5.189,17.325,9.719,12.764,4.165,5.995,10.562,17.853,12.144,21.436,4.799,1.273,-4.529,2.23,6.769,21.155,21.478,15.483,6.564,14.342],[24.379,22.286,6.947,13.55,10.685,12.347,3.385,4.273,7.74,19.907,30.228,24.672,12.618,-0.582,15.931,20.847,12.563,18.749,12.492,14.645,8.466,-0.688,15.973,15.475,4.519,3.898,8.355,18.897,11.211,18.679,4.327,15.496,6.776,14.813,8.783,0.534,7.044,5.181,20.304,-8.207,0.164,8.776,18.855,11.478,-0.209,17.866,17.016,20.597,23.253,12.222,2.452,-2.73,4.276,22.916,20.541,9.058,6.492,13.137,4.707,3.225,20.321,6.906,17.172,13.711,21.712,20.987,8.512,14.886,8.359,1.253,11.547,5.154,26.228,12.384,3.651,31.795,21.048,4.991,29.095,24.053,13.315,15.277,8.596,10.563,5.987,9.478,12.525,23.399,1.893,20.57,14.076,25.646,-1.338,17.771,11.626,14.551,22.567,12.785,16.771,3.584,9.915,19.357,14.298,12.981,13.848,-0.117,12.656,20.997,2.171,15.263,18.272,4.605,16.299,18.177,17.529,-0.98,15.086,3.052,19.315,8.324,6.617,11.766,3.547,8.628,20.192,0.876,7.81,14.224,5.612,8.213,5.8,13.4,14.591,14.748,6.209,20.112,6.992,0.769,10.043,20.37,8.078,1.449,9.866,19.273,6.26,8.621,24.046,5.558,16.6,0.151,-7.714,-6.686,19.586,18.783,24.368,-1.307,12.699,18.06,19.574,19.722,0.237,16.331,23.528,10.307,3.853,5.38,-1.597,12.701,18.997,20.487,7.118,4.83,5.108,17.296,10.155,13.538,4.419,5.874,10.233,18.199,12.183,21.589,4.319,1.57,-4.352,2.562,6.593,21.052,21.55,15.432,6.839,14.206],[24.408,22.328,6.84,13.328,10.62,12.255,3.27,4.42,7.9,19.728,30.301,24.549,12.552,-0.406,15.869,20.79,12.634,18.921,12.484,14.538,8.456,-0.816,15.842,15.484,4.754,3.879,8.325,18.906,11.055,18.724,4.339,15.382,6.978,14.942,8.706,0.749,7.096,5.32,20.396,-8.193,0.352,8.759,18.815,11.274,-0.094,17.816,17.026,20.513,23.378,12.358,2.761,-2.793,4.289,22.914,20.505,8.987,6.539,13.106,4.743,3.029,20.453,6.718,17.34,13.591,21.446,20.885,8.914,14.531,8.148,1.312,11.298,5.362,25.954,11.717,3.405,32.048,21.171,4.435,28.888,23.667,13.484,14.813,8.651,11.181,6.18,9.64,12.536,23.186,1.682,20.432,13.602,25.458,-1.303,17.672,11.65,14.501,22.38,12.731,17.161,3.878,10.022,19.45,14.066,13.149,13.748,-0.414,12.226,21.144,2.112,15.214,18.538,4.946,15.965,18.383,17.375,0.095,15.227,2.908,19.041,8.28,6.912,11.979,3.538,7.81,20.079,0.78,8.106,14.223,5.626,8.067,5.974,14.147,14.692,14.609,6.176,19.8,6.963,0.12,10.394,20.524,8.116,1.44,9.689,19.651,6.087,8.903,24.439,5.861,16.389,0.133,-7.783,-6.812,18.89,18.732,24.336,-1.239,12.792,18.002,19.278,19.923,0.452,16.272,23.985,10.702,4.292,5.158,-1.8,12.221,18.968,20.172,6.956,4.737,4.864,17.847,10.191,14.052,4.691,5.903,10.18,18.787,12.085,21.459,4.236,1.701,-4.551,2.935,6.111,20.385,21.374,15.393,6.489,14.007],[24.454,22.308,6.751,13.094,10.668,12.347,3.149,4.545,8.049,19.63,30.348,24.437,12.579,-0.223,15.758,20.807,12.641,19.021,12.541,14.358,8.417,-0.864,15.67,15.535,4.916,3.794,8.307,18.947,11.051,18.686,4.318,15.251,7.241,14.931,8.625,0.889,7.239,5.339,20.319,-8.219,0.47,8.731,18.771,11.181,0.043,17.827,17.029,20.388,23.429,12.477,3.102,-2.957,4.105,22.897,20.625,8.935,6.467,12.968,4.817,2.954,20.444,6.497,17.622,13.672,21.621,21.072,8.621,13.755,7.833,1.459,10.975,5.841,25.782,11.234,3.342,32.131,21.143,3.661,29.569,23.363,13.621,14.89,8.615,11.249,6.009,9.734,12.51,23.093,1.386,20.228,13.369,25.561,-1.475,17.372,11.148,14.689,22.493,12.547,17.214,4.408,9.748,19.334,14.259,12.573,13.879,-0.545,12.011,21.35,2.088,15.804,18.653,5.077,16.011,18.844,17.871,0.438,14.911,2.942,19.845,8.348,7.274,12.164,3.794,7.213,19.747,0.728,7.564,13.838,6.076,8.057,5.828,13.59,14.392,15.15,6.112,19.681,7.625,0.368,10.215,20.563,7.616,1.471,9.925,20.631,5.898,8.828,24.442,5.943,16.118,0.309,-7.779,-7.013,18.806,18.051,24.78,-0.863,12.743,18.395,18.967,20.277,1.298,16.194,23.931,11.031,4.427,5.15,-1.824,12.273,19.113,19.975,7.062,4.673,4.69,17.906,9.878,13.198,4.556,5.329,10.129,18.368,11.857,21.589,4.832,1.879,-4.803,2.682,6.611,19.98,21.611,15.462,6.455,14.278],[24.514,22.265,6.629,12.893,10.753,12.435,3.104,4.582,8.147,19.681,30.44,24.378,12.522,-0.101,15.697,20.919,12.496,19.059,12.673,14.241,8.32,-0.861,15.566,15.649,5.107,3.789,8.258,19.19,11.161,18.68,4.173,15.043,7.535,14.934,8.736,1.038,7.477,5.256,20.29,-8.137,0.567,8.523,18.643,11.263,0.196,17.8,17.209,20.466,23.511,12.524,3.364,-3.098,3.971,23.021,20.85,8.948,6.41,12.904,4.898,2.931,20.342,6.287,17.671,13.67,21.861,21.256,8.498,13.436,7.145,1.438,11.653,5.872,25.89,11.193,2.928,32.143,20.724,4.179,29.545,23.458,13.619,14.797,8.272,10.53,5.417,9.386,12.455,23.368,1.469,20.332,13.236,25.181,-1.531,17.402,11.16,14.508,22.398,12.827,16.767,4.105,9.683,18.867,14.138,12.614,13.85,-0.713,12.339,21.234,2.001,15.6,18.017,5.099,15.711,18.082,17.835,-0.14,14.517,3.032,19.949,8.579,7.567,12.285,3.659,6.708,19.151,0.872,6.952,13.824,6.445,7.607,5.743,13.959,14.088,14.368,6.205,19.516,7.39,0.962,9.745,20.158,7.194,1.602,10.043,20.885,5.593,8.654,23.9,6.148,16.082,1.021,-8.346,-7.067,19.135,17.917,24.962,-0.548,12.833,18.083,18.856,19.873,1.326,16.008,23.579,11.104,4.525,4.784,-1.926,12.304,19.237,20.589,7.276,4.769,4.539,18.55,9.311,12.929,4.16,5.955,10.299,18.139,11.555,21.467,5.293,2.206,-4.689,2.118,6.79,20.01,21.53,15.559,6.659,13.676],[24.552,22.167,6.498,12.667,10.68,12.433,3.07,4.639,8.009,19.872,30.471,24.395,12.596,-0.113,15.648,20.982,12.416,18.713,12.773,14.188,8.308,-0.856,15.395,15.675,5.32,3.798,8.113,19.404,11.326,18.559,4.026,14.898,7.771,14.942,8.902,1.259,7.561,5.061,20.258,-8.067,0.815,8.208,18.56,11.342,0.422,17.673,17.377,20.695,23.447,12.327,3.416,-3.064,3.918,23.268,21.096,8.916,6.388,12.781,4.986,2.953,20.189,6.102,17.616,13.624,22.0,21.072,8.355,14.008,6.839,1.724,11.866,5.782,26.408,11.041,2.557,32.23,20.496,4.965,29.179,23.934,13.767,14.682,8.113,10.651,5.165,9.147,12.62,23.621,1.587,20.762,12.779,25.333,-1.09,17.363,11.59,14.807,22.454,12.32,17.022,4.302,9.791,18.99,14.424,12.84,13.302,-1.131,12.409,21.448,2.303,15.205,18.348,4.639,15.458,18.429,17.844,-0.852,14.563,2.755,19.686,8.471,8.182,11.995,3.468,6.404,19.352,0.694,7.406,13.477,6.457,7.663,5.759,13.888,14.015,14.237,6.268,19.881,7.485,0.873,9.057,19.693,7.219,1.983,10.227,20.274,5.706,8.215,23.82,6.39,16.013,0.467,-8.489,-6.803,19.46,17.586,25.11,-0.461,13.157,18.212,18.977,19.577,0.806,15.827,23.78,10.565,4.858,4.577,-2.398,12.087,19.141,21.112,7.186,4.55,4.36,18.62,9.317,12.896,4.487,6.152,10.388,18.336,12.087,21.633,5.389,2.276,-4.828,1.954,6.248,20.209,22.011,15.372,6.887,14.062],[24.658,22.113,6.435,12.491,10.66,12.569,3.099,4.79,7.761,20.133,30.425,24.398,12.704,-0.032,15.678,20.968,12.315,18.352,12.864,14.187,8.332,-1.028,15.267,15.644,5.419,3.754,7.964,19.441,11.203,18.472,4.093,14.804,7.834,14.929,8.982,1.199,7.499,4.912,20.253,-7.953,0.773,8.025,18.479,11.35,0.55,17.6,17.548,20.784,23.36,12.007,3.353,-3.149,3.912,23.69,21.358,8.817,6.252,12.692,5.103,2.994,20.065,5.988,17.691,13.538,21.248,21.377,8.14,13.825,7.175,1.714,11.583,6.063,26.451,11.234,2.753,32.192,20.764,4.218,29.384,24.079,13.249,14.928,8.412,10.579,5.938,9.099,12.619,23.908,1.585,21.135,12.666,25.914,-0.935,17.399,12.13,14.919,22.417,12.295,16.946,4.608,9.729,18.901,14.736,12.552,13.147,-1.165,12.384,21.754,2.782,15.23,18.15,5.05,15.555,18.59,18.076,-0.207,14.366,2.725,19.826,8.134,8.519,12.086,3.219,6.442,19.697,1.499,8.288,13.829,6.17,8.361,5.276,13.289,13.878,15.218,5.968,19.644,7.959,0.865,8.352,20.139,7.238,2.283,10.428,19.498,5.751,8.079,23.828,6.213,16.166,0.355,-8.022,-7.065,19.889,17.802,24.871,-0.319,13.1,18.378,18.768,19.902,1.331,15.749,23.852,10.278,4.873,4.792,-2.034,12.076,18.828,21.3,6.786,4.562,4.188,17.76,9.473,13.105,4.733,5.472,10.466,18.648,11.64,22.175,5.188,2.584,-4.664,1.873,6.21,20.228,22.579,15.375,7.425,14.083],[24.689,22.124,6.543,12.486,10.581,12.753,3.191,4.819,7.585,20.477,30.428,24.363,12.703,0.207,15.845,20.909,12.093,18.075,12.971,14.274,8.246,-1.195,15.041,15.619,5.454,3.872,7.858,19.484,10.997,18.407,4.203,14.769,7.616,15.1,9.074,0.993,7.39,4.861,20.109,-7.871,0.568,7.944,18.528,11.405,0.537,17.553,17.748,20.81,23.295,11.7,3.378,-3.228,3.886,24.052,21.707,8.733,6.174,12.693,5.223,2.96,20.021,6.049,17.892,13.473,20.877,21.887,8.543,13.025,6.885,1.887,11.816,5.498,26.585,10.742,3.532,32.07,21.078,4.318,29.64,24.155,13.684,14.857,8.453,10.787,6.372,9.5,12.676,24.594,1.396,21.03,13.151,25.961,-0.907,17.521,12.104,14.338,22.064,12.805,16.755,4.424,9.489,18.646,14.713,12.772,13.268,-0.764,12.221,21.667,2.319,15.796,18.175,5.752,15.627,17.797,17.923,0.048,14.358,2.703,19.902,8.195,7.937,12.152,3.18,6.52,19.755,0.789,8.223,13.834,6.05,8.455,5.405,13.604,13.484,15.127,5.799,19.326,7.772,0.423,8.171,20.293,7.12,1.977,10.224,19.835,5.806,8.35,24.002,6.362,15.973,0.533,-7.963,-6.653,19.546,18.006,24.564,0.053,12.874,18.512,19.136,19.919,1.971,15.989,24.669,10.167,4.334,4.95,-1.718,12.215,18.413,21.024,6.536,4.535,4.159,17.65,9.403,12.908,4.607,5.904,10.159,19.197,11.234,22.516,5.021,2.584,-4.844,2.277,5.944,20.005,22.343,15.364,7.718,13.686],[24.728,22.167,6.62,12.417,10.482,13.005,3.356,4.676,7.378,20.732,30.419,24.305,12.674,0.594,15.968,20.701,12.047,17.769,13.057,14.336,8.107,-1.197,14.921,15.554,5.46,3.935,7.816,19.625,11.105,18.362,4.313,14.669,7.234,15.368,9.125,0.655,7.318,4.934,19.978,-7.801,0.44,7.915,18.685,11.464,0.485,17.506,17.82,20.736,23.219,11.432,3.495,-3.302,3.956,24.255,22.001,8.601,6.144,12.753,5.35,2.936,19.92,6.088,18.189,13.361,21.433,22.356,8.804,13.006,6.992,1.861,11.955,5.444,26.453,10.695,3.489,32.262,21.169,4.988,29.321,24.161,13.599,15.38,8.435,11.023,5.558,9.514,13.336,24.723,1.568,21.07,13.457,25.815,-0.794,17.584,11.958,14.452,21.679,12.443,16.529,4.715,9.804,18.465,14.646,12.549,13.497,-0.266,12.084,21.819,2.111,15.456,18.319,5.188,15.509,17.928,17.913,-0.671,13.958,2.653,19.916,8.24,7.053,12.022,3.937,6.627,19.809,0.479,7.101,13.747,6.137,7.977,5.621,13.863,13.308,14.718,5.848,19.566,7.542,-0.563,8.81,20.369,6.856,1.958,9.94,19.941,5.508,8.292,23.974,6.094,16.283,0.656,-7.984,-6.571,19.579,17.725,24.522,0.005,13.143,19.058,19.142,19.741,1.876,16.297,25.044,9.796,4.151,4.872,-2.213,12.22,18.047,20.878,6.928,4.668,4.299,18.298,9.443,12.973,4.999,5.922,9.97,19.513,11.165,22.496,4.967,2.19,-4.936,2.41,6.387,20.267,22.241,15.187,7.447,14.009],[24.75,22.379,6.565,12.391,10.502,13.189,3.395,4.439,7.272,20.794,30.49,24.262,12.7,0.927,16.085,20.523,12.044,17.588,13.186,14.271,8.095,-1.041,14.85,15.347,5.351,3.899,7.722,19.849,11.453,18.269,4.327,14.451,6.955,15.443,9.143,0.317,7.338,4.999,20.084,-7.619,0.492,7.836,18.905,11.438,0.504,17.512,17.846,20.68,23.162,11.196,3.727,-3.326,4.119,24.117,22.076,8.444,6.125,12.947,5.419,3.06,19.749,6.088,18.521,13.245,21.612,22.206,8.456,13.342,6.853,2.323,11.521,5.717,26.507,10.591,3.247,32.178,21.054,4.317,29.126,24.114,14.039,15.598,8.204,11.109,5.316,8.86,13.153,24.158,1.894,21.211,13.257,25.754,-0.662,17.879,11.718,14.882,21.483,12.137,16.701,4.417,9.823,18.165,14.79,12.071,13.613,0.179,12.241,21.702,2.337,14.851,18.437,4.765,15.535,17.709,18.287,-0.825,13.883,2.843,20.322,7.901,6.773,11.948,3.842,6.608,19.496,0.526,6.979,13.68,5.331,7.757,5.836,13.889,13.278,15.448,5.986,19.36,7.405,-0.888,9.404,20.43,6.879,2.12,10.388,19.585,5.558,7.952,23.782,5.869,16.18,0.191,-7.687,-6.688,19.932,17.381,24.718,-0.173,13.096,19.216,19.029,19.307,1.289,16.649,24.726,9.957,4.561,4.722,-2.675,12.241,17.961,21.328,7.011,4.778,4.248,18.643,9.41,12.946,5.352,5.906,9.965,19.633,10.569,22.65,5.092,2.436,-5.098,2.261,6.851,20.468,23.019,15.043,6.765,13.832],[24.775,22.552,6.615,12.407,10.54,13.245,3.364,4.069,7.215,20.687,30.494,24.259,12.643,1.112,16.065,20.527,11.949,17.535,13.233,14.179,8.111,-0.775,14.959,15.162,5.031,3.739,7.612,20.134,11.758,18.183,4.239,14.246,6.768,15.577,9.108,0.147,7.387,5.056,20.164,-7.38,0.582,7.786,18.855,11.514,0.504,17.613,17.97,20.662,23.321,10.972,3.901,-3.425,4.256,23.837,22.144,8.395,6.111,13.101,5.438,3.273,19.652,5.994,18.832,13.082,21.657,21.317,8.533,13.553,6.436,2.701,11.157,5.188,26.598,10.852,3.184,32.319,21.52,4.178,29.69,24.077,13.686,14.99,8.475,10.641,5.539,8.921,12.985,23.684,1.506,20.685,12.699,25.791,-0.075,17.563,12.056,14.336,21.822,12.692,16.72,4.481,9.686,17.799,14.887,12.499,13.12,-0.177,12.44,21.11,2.446,14.967,17.979,5.106,15.34,17.109,18.52,-0.219,14.077,3.133,20.403,7.922,7.05,12.023,3.115,6.428,18.834,0.263,7.389,13.243,5.302,8.059,5.544,14.0,13.096,15.331,6.321,19.735,7.431,-0.41,10.12,20.613,6.97,2.27,10.2,19.957,5.716,8.034,23.729,6.172,15.83,-0.016,-7.41,-6.163,20.489,17.995,24.832,-0.116,13.149,18.422,18.533,19.348,0.986,16.888,24.246,9.645,5.509,4.767,-2.517,12.806,17.809,21.633,6.454,4.896,4.134,18.624,9.118,12.566,4.968,6.278,9.805,19.584,10.255,22.406,5.411,3.274,-4.816,2.081,5.867,20.133,23.177,15.032,6.881,13.972],[24.788,22.55,6.792,12.442,10.522,13.104,3.439,3.764,7.078,20.367,30.443,24.234,12.454,1.274,15.821,20.525,12.044,17.35,13.256,13.983,8.149,-0.562,15.105,15.041,4.755,3.585,7.55,20.366,11.922,18.045,4.017,14.015,6.781,15.7,9.158,0.021,7.446,5.214,20.24,-7.039,0.651,7.835,18.795,11.589,0.621,17.562,18.023,20.831,23.557,10.735,4.082,-3.475,4.411,23.65,22.283,8.405,5.978,13.237,5.465,3.402,19.525,5.736,18.996,12.924,21.873,21.142,8.478,13.276,6.795,2.534,11.095,4.626,26.572,11.003,3.361,32.321,21.886,3.915,29.695,24.185,14.069,14.789,8.729,10.927,6.357,9.227,13.193,23.691,1.528,20.382,11.744,25.919,-0.067,17.525,12.247,14.201,21.955,13.099,16.972,4.262,9.918,17.753,14.986,12.638,12.864,-0.414,12.648,21.079,2.038,14.843,17.623,5.155,15.202,17.476,18.59,-0.4,14.447,3.051,20.51,8.068,6.949,12.434,3.311,6.256,18.307,0.669,7.487,12.773,5.5,9.001,5.729,14.429,13.226,14.967,6.236,19.947,7.701,-0.192,9.909,20.575,7.218,2.338,10.297,20.291,5.114,8.084,24.169,6.22,16.042,0.543,-7.022,-6.265,19.902,18.139,24.88,-0.056,13.254,18.215,19.07,19.682,0.774,16.972,23.821,8.986,5.219,5.047,-2.169,12.579,18.091,21.493,6.081,4.913,3.913,19.031,9.204,12.23,4.664,5.557,9.756,20.152,10.627,22.438,5.639,3.229,-5.13,2.526,6.391,19.757,22.617,14.715,6.995,14.561],[24.803,22.426,7.148,12.35,10.449,13.116,3.624,3.605,6.998,20.013,30.433,24.176,12.051,1.321,15.698,20.497,12.19,17.212,13.339,13.736,8.25,-0.614,15.352,14.932,4.62,3.57,7.585,20.547,12.017,17.85,3.793,13.772,6.892,15.741,9.374,0.074,7.513,5.253,20.337,-6.791,0.775,7.969,18.86,11.663,0.836,17.592,18.056,20.918,23.635,10.605,4.084,-3.371,4.558,23.497,22.371,8.496,5.948,13.282,5.395,3.451,19.35,5.534,19.098,12.881,21.236,21.323,7.931,13.111,6.876,2.55,11.144,4.912,26.655,10.649,3.615,32.163,21.831,3.112,28.928,24.194,13.74,14.846,8.907,11.419,6.508,8.877,13.079,23.773,1.991,20.499,11.596,26.055,-0.505,17.443,12.166,14.853,21.763,12.882,17.078,4.386,9.957,17.481,15.052,12.272,13.3,0.114,12.524,21.326,1.854,14.684,17.68,4.955,15.185,17.581,18.825,-0.036,14.57,2.869,20.569,8.342,6.865,13.017,3.768,6.144,18.093,0.736,7.382,12.528,5.722,9.314,5.579,14.689,12.985,15.137,6.532,19.617,7.441,-0.861,9.604,20.558,6.798,2.442,10.709,20.151,4.647,7.864,24.006,6.005,16.511,0.992,-6.516,-6.176,20.175,17.707,24.962,0.273,13.403,18.573,19.226,19.773,0.433,16.811,23.488,9.124,4.811,5.276,-2.453,12.479,18.381,21.31,5.855,4.981,3.664,18.744,9.321,12.088,4.883,5.348,10.118,20.556,10.217,22.659,5.753,2.697,-5.177,2.917,6.445,19.647,22.969,14.738,6.694,14.378],[24.738,22.305,7.391,12.259,10.299,13.197,3.748,3.479,6.999,19.833,30.312,24.16,11.626,1.193,15.692,20.479,12.379,17.2,13.443,13.643,8.358,-0.659,15.432,14.968,4.605,3.691,7.658,20.706,12.102,17.697,3.65,13.484,6.981,15.814,9.663,0.169,7.486,5.197,20.365,-6.633,0.835,7.888,18.998,11.943,1.183,17.808,18.094,20.785,23.533,10.594,3.937,-3.26,4.708,23.433,22.44,8.717,5.961,13.235,5.366,3.482,19.196,5.383,19.195,12.844,20.978,21.252,7.323,13.056,6.809,2.531,10.422,4.833,26.497,10.665,3.539,31.873,21.665,3.27,29.002,24.378,13.924,14.992,9.273,11.166,6.484,9.22,13.356,24.163,2.048,20.581,12.264,25.721,-0.297,17.065,12.088,14.591,21.67,12.19,17.316,4.775,9.914,16.856,15.153,11.693,13.071,0.018,12.889,21.363,1.895,14.553,17.229,4.569,14.805,17.388,18.937,-0.005,14.713,2.689,20.836,8.316,7.127,13.011,3.483,6.188,18.094,0.123,7.415,12.52,5.884,8.888,5.251,14.406,12.206,15.129,6.507,19.456,7.391,-0.875,9.631,20.477,6.658,2.89,10.379,20.187,4.87,8.375,24.11,5.975,16.518,0.844,-6.697,-5.364,20.646,17.538,24.885,0.343,13.553,18.653,19.282,19.187,0.496,16.704,23.561,9.516,4.753,5.292,-2.739,12.764,17.7,21.47,5.948,5.039,3.559,18.285,9.131,12.152,5.196,5.718,10.263,20.205,9.7,21.975,5.788,2.413,-4.915,3.214,6.618,19.652,23.339,14.803,6.868,13.702],[24.643,22.315,7.446,12.277,10.088,13.338,3.704,3.395,7.037,19.878,30.215,24.18,11.273,1.006,15.63,20.448,12.352,17.12,13.652,13.678,8.499,-0.667,15.283,15.142,4.706,3.764,7.761,20.722,12.355,17.54,3.701,13.144,7.11,15.79,9.767,0.184,7.446,5.132,20.335,-6.516,0.681,7.709,19.097,12.182,1.482,18.019,18.097,20.572,23.381,10.653,3.765,-3.253,4.881,23.379,22.442,8.733,6.009,13.096,5.481,3.593,19.143,5.323,19.189,12.664,21.143,21.085,7.913,13.119,6.605,2.291,9.869,4.748,26.428,10.658,3.762,31.981,21.355,3.612,28.905,24.126,14.329,15.245,9.44,11.067,6.627,9.279,13.762,24.02,1.78,20.596,12.081,25.7,-0.242,17.073,12.394,14.122,21.759,12.862,17.139,4.174,10.351,16.37,15.216,12.741,12.555,-0.445,12.82,21.337,2.163,14.388,17.493,4.793,14.823,17.426,18.847,-0.106,14.614,2.157,21.206,8.141,7.113,12.46,3.362,6.373,18.664,-0.196,7.422,12.396,5.722,8.721,5.059,14.395,11.861,15.025,6.456,19.853,7.527,-0.689,10.099,20.816,6.906,2.841,10.737,20.277,5.419,8.058,24.238,5.878,16.494,1.111,-7.01,-5.705,20.255,17.903,24.592,0.685,13.629,18.834,19.458,18.952,1.106,16.399,23.929,9.333,4.754,5.179,-2.741,12.816,17.553,21.144,6.115,4.79,3.476,18.852,9.63,12.097,5.195,6.203,10.21,20.047,9.756,22.12,5.844,2.457,-5.002,2.989,6.886,19.45,22.94,14.481,7.004,13.889],[24.537,22.383,7.488,12.369,9.91,13.591,3.562,3.446,7.086,20.016,30.374,24.066,10.977,0.848,15.706,20.367,12.449,16.98,13.995,13.67,8.587,-0.702,15.072,15.259,4.792,3.631,7.759,20.688,12.602,17.513,3.775,12.82,7.209,15.711,9.731,0.057,7.424,5.238,20.234,-6.538,0.45,7.502,19.094,12.269,1.602,18.266,18.027,20.487,23.36,10.716,3.693,-3.343,5.0,23.401,22.325,8.658,6.011,13.041,5.73,3.696,19.047,5.373,19.091,12.479,21.47,20.793,7.748,13.191,6.616,2.325,9.812,4.878,26.317,10.684,3.769,32.125,21.075,2.91,29.186,23.784,13.849,15.045,9.194,11.065,6.781,8.69,14.307,24.117,1.898,20.659,12.079,25.824,-0.768,17.265,12.555,14.673,21.726,12.838,16.87,3.872,10.379,16.269,15.5,12.328,12.911,0.141,12.867,21.171,2.065,14.483,17.998,5.084,15.106,17.165,18.87,-0.077,14.356,2.187,20.744,8.367,6.734,12.466,3.452,6.417,18.684,0.472,7.422,12.106,5.778,8.647,5.099,14.43,11.791,15.1,6.594,20.062,7.865,-0.712,10.308,20.849,7.048,2.822,10.841,20.713,5.287,7.439,24.259,5.912,16.693,1.392,-6.636,-5.9,19.694,18.117,24.663,0.879,13.848,19.244,19.641,19.067,1.388,16.575,23.856,9.384,4.299,5.182,-2.337,12.795,18.174,21.184,5.991,5.122,3.601,19.371,9.78,11.801,5.441,6.238,9.986,20.383,10.221,22.753,5.995,2.767,-5.117,2.415,6.557,19.523,22.722,14.368,6.761,13.907],[24.541,22.438,7.467,12.548,9.756,13.702,3.402,3.457,6.884,20.054,30.604,24.004,10.82,0.628,15.838,20.295,12.451,16.837,14.347,13.69,8.647,-0.539,14.867,15.27,4.834,3.518,7.528,20.645,12.713,17.465,3.722,12.635,7.318,15.643,9.654,-0.036,7.523,5.366,20.231,-6.563,0.271,7.305,19.016,12.375,1.669,18.496,17.966,20.451,23.516,10.924,3.774,-3.274,5.01,23.519,22.315,8.614,5.859,13.137,5.989,3.807,18.93,5.477,19.018,12.353,21.596,20.865,8.007,13.014,6.924,2.069,9.487,4.812,26.385,10.831,3.489,32.285,21.225,3.006,29.523,23.838,14.563,14.758,9.253,11.003,6.835,8.368,13.827,23.896,1.954,21.165,12.224,25.791,-0.79,17.308,12.855,14.913,21.561,12.83,16.684,4.512,10.329,16.477,16.079,12.135,13.51,0.064,13.194,20.734,1.783,14.658,18.516,4.901,14.906,16.565,19.009,-0.238,14.403,2.565,20.051,8.672,6.86,12.674,3.369,6.347,18.844,0.193,7.333,11.416,5.828,8.155,5.157,14.558,11.643,14.879,6.821,19.25,7.931,-0.857,10.318,20.49,6.689,3.368,11.161,20.856,5.635,7.667,23.828,5.894,17.213,0.88,-6.898,-5.798,19.708,17.973,25.08,0.759,14.026,19.288,20.127,19.362,1.112,16.476,23.968,9.366,3.847,5.145,-2.293,12.916,18.155,21.49,5.902,5.109,3.667,19.234,9.082,11.497,5.882,6.156,10.317,20.262,10.169,22.371,6.535,2.461,-5.061,2.064,6.971,19.363,22.763,14.174,6.408,13.615],[24.568,22.529,7.5,12.7,9.65,13.669,3.174,3.367,6.855,20.072,30.816,23.895,10.611,0.362,15.826,20.179,12.266,16.691,14.543,13.801,8.729,-0.346,14.928,15.244,4.928,3.533,7.278,20.437,12.702,17.539,3.546,12.554,7.473,15.607,9.537,-0.056,7.641,5.509,20.265,-6.576,0.055,7.229,18.895,12.612,1.661,18.704,17.863,20.438,23.466,11.11,3.864,-3.127,5.006,23.598,22.402,8.632,5.661,13.283,6.179,3.82,18.872,5.491,19.055,12.237,21.657,20.512,7.175,13.108,6.955,2.066,9.597,4.768,26.364,10.919,3.686,32.61,21.561,3.265,29.477,24.173,13.89,15.43,9.476,10.633,6.605,8.564,14.235,24.14,1.782,21.14,11.895,25.564,-0.876,17.365,13.478,14.473,21.559,13.102,16.859,4.288,10.498,16.501,16.257,12.681,13.332,0.524,13.211,20.678,1.86,14.535,17.834,4.703,14.634,16.38,18.912,0.348,14.018,3.058,20.11,8.619,7.179,13.081,3.457,5.621,18.954,0.042,7.185,11.37,5.865,7.899,5.424,14.228,11.557,15.045,6.911,19.565,8.069,-0.951,10.291,20.33,6.633,3.395,11.587,20.54,6.075,7.826,24.18,6.161,17.251,0.914,-7.268,-5.776,20.043,17.558,24.722,1.057,14.32,18.704,20.391,18.854,0.538,16.293,24.382,9.769,3.967,5.088,-2.786,12.972,17.487,21.175,6.26,5.025,3.735,18.921,8.722,11.428,6.064,6.8,10.375,19.952,10.328,22.383,6.634,2.326,-4.903,2.24,6.594,19.214,23.023,14.094,6.743,14.335],[24.62,22.766,7.666,12.73,9.658,13.566,2.953,3.292,6.846,19.879,30.902,23.928,10.408,0.225,15.898,20.099,12.186,16.527,14.593,13.913,8.78,-0.172,15.044,15.135,4.95,3.635,7.224,20.224,12.657,17.42,3.477,12.556,7.637,15.576,9.519,0.137,7.788,5.732,20.335,-6.524,-0.085,7.285,18.735,12.785,1.8,18.8,17.724,20.326,23.166,11.202,3.929,-3.239,4.963,23.678,22.486,8.443,5.645,13.515,6.275,3.797,18.86,5.445,19.211,12.295,21.796,20.284,7.396,13.581,6.976,1.71,8.759,4.273,26.326,10.875,3.241,32.703,21.708,2.928,29.927,23.817,14.511,15.685,9.598,11.074,6.718,8.725,14.059,23.408,1.874,20.7,11.465,25.142,-1.166,17.64,13.31,14.65,21.445,12.186,16.901,4.004,10.506,15.966,16.361,12.172,12.812,0.569,13.274,21.002,2.02,14.467,17.891,5.233,14.774,16.325,18.346,0.49,14.378,3.645,20.614,8.08,6.665,12.431,3.473,5.548,19.082,0.546,7.131,11.905,5.948,8.039,5.107,13.917,11.313,15.093,7.006,20.214,8.336,-1.337,9.775,20.465,6.718,3.141,11.727,20.087,6.137,7.737,24.281,6.141,17.425,0.595,-6.787,-5.725,20.018,17.684,24.096,1.011,14.689,18.156,20.301,18.635,0.443,16.027,25.018,10.025,4.27,5.116,-2.646,12.927,17.205,21.143,6.481,5.076,3.708,19.093,9.171,11.468,6.292,6.926,10.147,20.811,10.646,22.659,6.468,2.713,-5.179,2.285,5.767,19.355,23.188,14.048,6.782,14.18],[24.596,22.761,7.877,12.722,9.863,13.532,2.843,3.125,6.807,19.674,30.962,23.904,10.116,0.034,16.075,20.129,11.936,16.374,14.449,13.939,8.717,-0.153,15.081,15.11,4.866,3.804,7.177,20.105,12.59,17.289,3.466,12.676,7.701,15.567,9.557,0.438,7.849,5.93,20.42,-6.3,-0.12,7.374,18.703,12.887,2.02,18.853,17.501,20.05,22.78,11.176,4.056,-3.386,4.897,23.814,22.611,8.342,5.641,13.554,6.212,3.932,18.928,5.412,19.563,12.345,21.968,20.16,7.692,13.775,7.077,1.554,9.081,4.406,26.323,11.238,2.901,32.727,21.725,2.874,29.601,23.544,14.261,15.384,9.645,11.04,6.912,8.484,14.132,23.484,1.324,20.5,10.859,24.919,-1.334,17.57,13.316,14.691,21.243,12.694,16.972,4.217,10.493,15.481,16.223,12.459,12.922,0.454,13.412,21.037,2.178,14.158,18.083,5.717,14.828,16.007,18.249,0.24,14.323,4.007,20.838,8.256,6.441,11.972,3.278,5.996,18.11,0.408,7.577,12.001,6.158,8.253,5.169,14.03,11.262,15.453,7.292,19.991,8.206,-0.771,9.749,20.484,6.697,3.37,11.846,19.93,6.393,7.671,23.614,6.053,17.227,0.137,-6.656,-5.661,19.55,17.796,24.026,0.873,14.534,18.137,20.188,18.776,0.747,15.958,24.983,9.961,4.432,5.382,-2.324,13.78,17.357,21.104,6.575,4.917,3.803,19.73,9.001,11.958,6.894,6.726,9.863,20.762,10.347,22.753,6.083,2.559,-5.136,2.46,5.966,19.186,23.34,14.185,6.755,14.045],[24.424,22.468,7.895,12.812,10.078,13.55,2.634,3.011,6.782,19.692,30.734,23.749,9.958,-0.181,16.201,20.147,11.994,16.223,14.276,13.944,8.648,-0.152,14.847,15.06,4.812,3.862,7.214,20.177,12.654,17.151,3.607,12.819,7.744,15.651,9.656,0.618,7.815,6.186,20.448,-6.114,-0.152,7.463,18.708,13.045,2.187,18.816,17.272,19.828,22.573,10.903,4.16,-3.243,4.892,23.951,22.617,8.311,5.734,13.548,6.047,4.173,19.003,5.559,19.923,12.454,21.667,20.251,7.403,13.179,6.961,1.329,8.811,4.344,26.186,11.027,3.67,32.557,21.581,2.896,29.533,23.726,14.255,15.085,9.714,10.762,6.796,8.698,14.289,24.066,1.085,20.882,10.767,25.409,-1.528,17.473,13.569,14.58,21.046,12.834,16.757,4.584,10.387,15.716,16.096,11.989,13.295,0.659,13.711,21.102,2.3,14.237,18.282,4.9,14.597,16.0,18.564,0.323,13.956,3.799,19.998,8.755,6.529,12.326,3.656,5.921,16.899,0.146,7.989,11.643,6.059,8.466,5.138,14.001,11.477,15.313,7.213,19.594,8.202,0.078,10.203,20.182,6.997,3.527,11.934,20.498,6.432,7.419,22.902,6.204,17.353,0.737,-6.654,-5.659,19.246,17.672,24.214,1.177,14.717,18.617,20.285,18.542,0.433,15.852,24.412,9.6,4.635,5.164,-2.647,13.265,17.606,21.421,6.333,4.997,3.732,19.795,8.54,12.181,7.089,7.071,10.0,20.482,10.45,22.489,5.71,2.434,-5.078,2.358,6.827,19.063,23.377,14.328,6.653,14.484],[24.213,22.143,7.754,12.741,10.272,13.609,2.552,3.04,6.739,19.747,30.452,23.729,9.84,-0.333,16.188,20.071,12.183,16.134,14.217,13.92,8.721,-0.042,14.656,14.924,4.621,3.801,7.254,20.331,12.929,16.975,3.787,12.785,7.717,15.647,9.874,0.709,7.861,6.217,20.484,-5.957,-0.203,7.598,18.526,13.133,2.354,18.8,17.193,19.703,22.605,10.627,4.221,-3.204,4.883,23.927,22.607,8.304,5.965,13.527,5.91,4.2,19.034,5.835,20.167,12.495,21.484,20.285,7.458,13.495,7.062,1.136,8.692,3.878,26.108,10.901,3.653,32.265,21.423,2.61,29.244,23.541,13.852,15.342,9.599,11.403,6.755,9.164,14.042,23.389,1.199,20.976,10.967,25.5,-1.838,17.799,13.123,14.862,21.176,12.167,16.467,4.235,10.275,15.737,15.993,12.391,13.818,0.099,13.753,21.12,2.072,14.728,17.715,5.299,14.417,16.108,18.831,0.501,13.855,3.611,19.746,8.454,6.897,12.818,4.052,5.608,16.951,0.595,7.778,11.76,5.869,8.947,5.467,14.053,12.028,14.917,7.493,19.961,8.1,-0.175,10.155,19.971,6.931,3.707,12.048,20.43,6.667,7.571,23.503,6.164,17.234,1.538,-6.668,-5.662,19.349,17.723,23.692,1.489,14.804,18.612,20.206,18.228,0.207,15.727,24.227,9.345,4.856,5.211,-2.412,12.842,18.186,21.534,6.451,5.19,3.969,19.473,8.622,12.247,6.628,6.748,10.049,21.058,10.233,22.601,5.337,3.123,-5.012,2.492,7.008,19.405,23.116,14.244,6.415,14.526],[24.184,22.004,7.623,12.707,10.578,13.547,2.619,2.947,6.829,19.668,30.308,23.759,9.703,-0.403,16.153,20.018,12.102,16.122,14.163,13.893,8.876,-0.069,14.597,15.047,4.372,3.734,7.317,20.375,13.225,16.916,3.891,12.764,7.516,15.522,10.204,0.698,7.912,6.108,20.57,-5.898,-0.154,7.688,18.331,13.124,2.559,18.635,17.312,19.637,22.691,10.447,4.262,-3.334,4.82,23.825,22.689,8.413,6.09,13.407,5.674,4.098,19.108,6.184,20.292,12.474,21.331,20.255,7.287,13.435,6.532,0.842,8.97,4.331,25.857,10.907,3.394,31.936,21.342,3.282,29.029,23.051,14.006,15.677,9.418,11.771,6.671,9.154,13.946,22.946,1.155,20.827,10.961,25.646,-1.758,17.823,12.76,14.38,21.19,12.638,16.379,3.901,10.498,15.223,15.758,13.068,13.525,0.261,13.406,20.68,1.931,14.209,17.457,5.159,14.541,16.399,18.576,0.955,13.936,3.935,20.854,8.587,7.152,13.276,3.706,5.48,17.35,0.843,7.569,11.706,5.72,9.274,5.692,13.95,11.587,15.264,7.299,20.404,7.913,-0.888,10.062,19.941,7.1,3.972,12.333,20.242,6.631,8.288,23.746,6.218,17.196,1.401,-6.362,-5.52,19.64,17.647,23.634,1.524,14.851,17.901,20.093,18.196,0.148,15.641,24.502,9.325,5.121,5.509,-2.214,13.787,18.046,21.506,6.794,4.934,4.391,19.758,8.976,11.923,6.342,6.342,10.108,21.343,9.716,23.531,5.364,2.975,-5.035,2.481,6.968,19.418,23.009,14.112,6.82,14.357],[24.301,22.0,7.552,12.683,10.684,13.43,2.698,2.906,7.017,19.537,30.258,23.885,9.715,-0.438,16.152,19.909,11.913,16.146,14.096,13.892,9.007,-0.127,14.673,15.064,4.097,3.628,7.374,20.343,13.26,17.047,3.991,12.659,7.277,15.482,10.4,0.532,7.895,6.127,20.623,-5.866,-0.064,7.913,18.287,13.285,2.724,18.442,17.394,19.659,22.719,10.231,4.295,-3.352,4.806,23.949,22.796,8.617,6.134,13.373,5.397,3.977,19.138,6.481,20.397,12.549,21.163,20.28,7.36,13.638,6.375,0.881,8.484,4.582,26.071,10.861,3.249,32.109,21.19,3.043,29.194,23.148,14.089,16.499,9.364,11.916,6.395,9.248,14.43,22.655,1.268,20.574,10.554,25.41,-1.913,17.55,12.743,14.695,21.266,12.738,16.534,3.808,10.8,15.295,15.547,12.54,12.845,0.491,13.232,20.621,2.026,14.307,17.568,4.349,14.693,16.797,18.568,0.866,13.729,3.895,20.884,8.911,7.037,14.025,3.524,6.136,17.717,0.839,7.497,11.664,5.528,9.907,5.755,13.829,11.159,15.294,7.0,20.691,8.097,-0.966,10.579,19.607,7.366,3.809,12.241,20.29,6.008,7.898,23.3,6.095,17.095,1.297,-6.548,-5.305,19.46,17.694,24.23,1.458,14.799,17.87,20.026,18.013,0.31,15.896,24.955,9.056,5.129,5.189,-2.572,14.057,17.713,21.419,7.465,4.45,4.746,19.982,8.589,11.468,5.917,6.12,10.272,21.092,10.253,22.792,5.296,2.579,-5.245,2.104,6.587,19.761,23.2,13.664,6.947,13.696],[24.523,22.014,7.485,12.654,10.58,13.382,2.723,2.863,7.209,19.54,30.35,23.839,9.614,-0.445,16.137,19.949,11.626,16.197,14.153,13.848,9.132,-0.16,14.747,15.09,3.719,3.608,7.43,20.339,13.05,17.282,4.049,12.44,7.158,15.5,10.449,0.346,7.883,6.035,20.637,-5.915,-0.077,8.059,18.333,13.538,2.778,18.367,17.51,19.581,22.697,10.178,4.278,-3.358,4.717,24.022,22.785,8.633,6.015,13.394,5.207,3.736,19.195,6.75,20.473,12.537,21.501,20.568,7.96,13.716,7.079,0.848,9.022,4.465,26.243,10.693,3.118,32.153,20.872,2.77,29.212,24.049,14.343,16.993,9.102,11.812,6.296,9.197,13.846,22.524,1.646,20.157,10.574,25.473,-1.973,17.644,12.797,15.203,20.966,12.276,16.631,3.927,10.488,16.032,15.7,12.324,13.442,0.365,13.624,21.015,1.97,14.302,17.717,4.572,14.819,16.425,18.65,0.117,13.766,4.109,20.071,8.765,6.59,14.445,3.426,6.076,18.459,0.486,7.169,11.833,5.352,10.888,5.628,13.972,11.125,14.825,7.529,20.941,8.396,-0.675,10.262,19.386,7.181,3.695,12.331,20.432,6.211,7.768,23.325,6.16,17.142,1.48,-6.299,-5.393,19.5,17.617,24.325,1.417,15.191,18.589,19.96,18.108,0.758,15.924,25.036,8.816,5.02,4.988,-2.714,13.204,17.521,21.461,7.826,4.24,4.996,19.695,8.572,11.927,5.744,6.208,10.484,20.924,10.125,22.348,5.626,2.832,-5.19,1.874,6.522,19.425,23.747,13.478,6.393,14.182],[24.753,22.025,7.413,12.783,10.439,13.405,2.678,2.936,7.442,19.738,30.4,23.669,9.526,-0.336,16.262,20.073,11.443,16.229,14.308,13.811,9.17,-0.314,14.748,15.179,3.504,3.673,7.403,20.213,12.827,17.518,3.966,12.337,7.126,15.476,10.433,0.267,7.959,6.01,20.722,-5.825,-0.003,8.002,18.443,13.67,2.688,18.389,17.599,19.461,22.592,10.192,4.255,-3.404,4.542,24.127,22.753,8.52,5.787,13.448,5.154,3.497,19.199,6.905,20.427,12.505,21.326,20.998,8.072,13.498,7.709,0.925,9.315,4.391,26.549,10.822,3.377,32.042,20.629,3.165,28.957,23.663,13.935,16.301,9.256,11.736,6.413,9.272,13.128,22.926,1.818,19.999,10.669,25.564,-1.723,17.948,12.982,14.585,21.539,11.84,16.588,3.763,10.499,16.276,15.911,12.412,13.445,0.493,13.503,20.784,1.986,14.126,17.756,4.457,14.37,16.513,18.613,0.165,14.008,4.352,20.248,8.75,6.121,14.502,3.172,6.265,18.892,-0.278,7.296,11.543,5.406,11.124,5.678,13.856,11.017,15.072,7.495,20.952,8.589,-0.785,10.052,19.604,7.442,3.917,12.834,20.375,6.45,8.5,23.389,6.137,16.766,1.356,-6.659,-6.065,18.985,17.664,23.739,1.861,15.278,18.796,19.721,18.588,0.459,16.067,24.83,9.1,5.177,5.358,-2.013,13.242,17.411,21.672,7.997,4.31,5.243,19.435,8.388,12.138,5.614,6.238,10.328,21.259,9.646,22.448,5.988,2.673,-4.914,1.596,6.387,19.375,23.851,13.256,6.787,14.36],[24.835,21.907,7.451,12.935,10.327,13.336,2.591,3.149,7.691,20.019,30.288,23.414,9.596,-0.08,16.355,20.221,11.418,16.314,14.416,13.683,9.266,-0.427,14.734,15.04,3.469,3.598,7.33,20.095,12.751,17.64,3.887,12.314,7.255,15.391,10.389,0.162,8.037,5.977,20.889,-5.869,0.135,8.081,18.591,13.758,2.608,18.259,17.615,19.252,22.509,10.134,4.222,-3.311,4.425,24.078,22.837,8.368,5.726,13.455,5.277,3.359,19.191,6.977,20.281,12.515,20.869,21.165,7.854,13.949,7.11,0.952,8.595,4.31,26.62,11.069,3.259,31.997,21.008,3.332,29.075,23.535,13.753,15.697,9.106,11.503,6.152,9.231,13.963,23.554,2.046,20.444,10.486,25.22,-1.548,18.238,13.414,14.569,21.325,11.837,16.595,3.368,10.427,16.21,16.088,11.714,13.16,0.367,12.962,21.299,1.989,14.598,17.874,3.668,14.093,16.856,18.591,0.234,14.076,3.551,20.467,8.996,6.103,14.26,3.305,6.784,19.041,-0.053,7.606,11.078,5.435,11.138,5.527,13.775,10.991,15.347,7.247,20.492,8.608,-0.989,10.529,19.989,7.174,3.853,13.178,20.358,6.774,8.288,23.523,6.394,16.68,1.55,-6.809,-5.502,18.831,17.973,23.814,1.478,15.37,18.465,19.751,18.246,0.107,16.189,24.919,9.246,5.368,4.889,-1.839,13.866,17.377,21.722,8.134,4.128,5.337,19.475,7.86,11.859,5.199,5.97,10.225,21.58,10.127,23.091,6.147,2.96,-4.879,1.447,6.21,19.616,23.346,13.305,7.061,14.434],[24.773,21.877,7.311,13.13,10.344,13.264,2.523,3.289,7.641,20.285,30.12,23.219,9.533,0.221,16.235,20.48,11.19,16.404,14.568,13.373,9.346,-0.55,14.828,14.997,3.434,3.459,7.444,20.107,12.633,17.671,3.66,12.243,7.507,15.3,10.383,0.056,8.169,5.934,20.974,-5.991,0.197,8.175,18.792,13.972,2.375,18.163,17.541,19.093,22.645,10.237,4.279,-3.28,4.351,23.985,22.918,8.242,5.719,13.477,5.353,3.179,19.214,6.908,20.046,12.524,21.273,21.295,7.683,14.02,6.996,1.187,8.75,4.877,26.532,11.478,2.877,31.933,21.173,3.855,28.979,24.027,14.213,15.814,9.099,11.533,6.259,9.021,13.846,23.189,2.315,21.267,10.674,24.998,-1.28,17.865,13.657,14.498,21.164,12.47,16.678,3.398,10.857,16.33,16.376,11.93,13.314,0.485,12.955,21.547,1.747,14.258,18.017,3.356,14.308,16.597,18.263,0.361,14.157,3.198,20.667,8.899,5.809,14.302,3.379,6.828,18.513,0.258,7.436,11.331,5.726,11.232,5.22,13.686,11.081,14.946,7.219,20.135,8.376,-1.308,10.163,20.3,7.563,3.597,13.392,21.11,6.695,8.567,23.54,6.577,16.807,1.854,-6.771,-4.657,18.943,18.117,23.851,1.539,15.304,18.365,19.755,17.77,0.634,16.038,24.901,8.924,5.377,4.217,-2.235,13.745,17.519,21.47,8.316,4.35,5.339,19.906,8.094,11.867,5.2,5.954,10.119,21.038,10.402,23.092,5.99,3.433,-5.021,1.446,6.478,19.745,23.093,13.559,6.606,14.722],[24.706,22.119,7.217,13.352,10.45,13.243,2.474,3.508,7.349,20.558,29.95,23.113,9.534,0.454,16.137,20.598,11.018,16.374,14.761,13.123,9.507,-0.572,15.272,15.029,3.446,3.301,7.561,20.186,12.494,17.609,3.519,12.219,7.605,15.191,10.332,-0.027,8.234,5.914,20.915,-6.146,0.198,8.228,19.029,14.235,2.071,18.233,17.371,19.105,22.886,10.415,4.5,-3.417,4.22,23.918,22.794,8.303,5.611,13.523,5.356,3.104,19.284,6.819,19.707,12.507,21.286,21.175,8.035,14.174,7.289,1.593,8.967,4.862,26.478,11.533,3.134,31.761,20.785,3.612,28.711,24.023,13.865,15.777,9.011,11.84,6.383,9.423,13.782,22.644,2.741,21.639,10.428,24.792,-1.011,17.408,13.549,14.676,21.574,11.348,16.985,3.744,10.769,16.168,16.529,12.307,12.827,0.082,13.121,21.244,1.608,14.062,17.673,3.49,14.222,16.552,18.538,0.452,14.302,3.193,20.708,9.02,6.169,14.089,3.137,6.787,18.05,-0.229,7.629,11.531,5.863,10.938,5.272,13.489,10.802,14.682,7.516,20.29,8.399,-1.591,9.799,20.142,7.851,3.482,13.678,22.134,6.048,8.597,23.685,6.688,16.814,1.311,-6.502,-4.58,18.802,18.32,24.237,1.301,15.548,18.432,19.764,18.099,0.988,15.942,24.626,9.519,5.292,4.412,-2.217,13.618,17.836,21.525,8.126,4.429,5.244,20.074,8.131,12.073,5.335,6.056,10.045,20.806,10.059,22.642,6.085,2.763,-4.929,1.374,6.177,19.636,23.298,14.079,6.7,13.895],[24.501,22.154,7.229,13.399,10.66,13.14,2.616,3.691,7.226,20.801,29.771,22.973,9.647,0.668,16.011,20.625,10.894,16.274,14.865,12.916,9.629,-0.59,15.755,15.113,3.66,3.105,7.723,20.33,12.427,17.373,3.535,12.18,7.585,15.122,10.095,-0.179,8.284,5.834,20.938,-6.172,0.019,8.307,19.131,14.401,1.893,18.339,17.248,19.026,23.168,10.501,4.594,-3.546,4.298,23.73,22.526,8.391,5.629,13.388,5.431,3.188,19.338,6.707,19.33,12.671,21.532,21.218,8.041,14.537,6.582,1.494,8.877,4.719,26.373,11.734,3.05,31.595,20.847,3.263,28.673,24.093,14.103,15.858,8.978,11.633,6.003,9.238,14.06,22.017,2.687,21.707,9.753,24.527,-1.072,17.244,13.765,15.461,21.495,10.865,17.559,4.325,10.9,16.043,16.562,11.737,13.32,0.236,13.295,21.46,1.366,14.074,17.936,3.748,13.615,16.595,18.443,0.225,14.919,3.493,20.964,9.214,6.786,13.281,3.019,6.644,17.949,-0.19,7.763,11.621,6.001,10.777,5.14,13.463,10.535,14.917,7.644,20.294,8.663,-1.399,10.153,20.449,7.207,3.473,13.942,22.615,5.758,8.914,23.742,6.626,16.705,1.283,-7.054,-4.882,19.363,18.975,24.458,0.959,15.807,18.357,19.714,18.656,0.806,15.924,24.367,10.194,5.134,4.8,-2.378,13.894,18.046,21.772,7.796,4.227,5.168,19.67,8.55,11.84,5.112,6.019,10.257,20.411,10.264,22.605,5.789,2.85,-5.223,1.428,5.495,19.892,23.32,14.472,6.73,13.526],[24.363,22.116,7.227,13.444,10.829,13.041,2.808,3.604,7.191,20.979,29.535,22.765,9.767,0.689,15.868,20.539,10.702,16.141,14.796,12.726,9.763,-0.511,16.197,15.383,4.024,2.865,7.837,20.48,12.414,17.202,3.583,12.166,7.6,15.186,9.861,-0.369,8.328,5.716,21.045,-6.03,-0.213,8.32,19.242,14.445,1.807,18.437,17.207,19.098,23.341,10.609,4.555,-3.584,4.497,23.551,22.322,8.583,5.64,13.222,5.579,3.272,19.421,6.497,19.042,12.801,21.235,21.723,7.66,14.241,6.529,1.669,8.737,5.215,26.046,11.775,3.482,31.202,21.03,3.862,28.489,24.05,14.119,16.036,8.833,11.82,5.935,9.319,13.709,21.528,2.698,21.889,9.961,24.448,-1.003,17.556,13.548,15.027,21.526,11.775,18.147,3.972,10.888,16.36,16.412,11.692,13.423,0.29,13.329,21.772,1.411,13.911,17.717,4.586,13.457,16.349,18.792,0.054,15.388,3.336,21.029,9.217,7.366,12.588,2.734,6.324,17.748,0.097,7.492,11.618,5.964,10.608,5.39,13.476,10.574,15.028,7.532,20.081,8.986,-0.882,10.073,20.857,7.689,3.362,14.261,22.48,5.78,9.058,23.925,6.804,16.859,1.454,-7.076,-5.395,19.098,18.497,24.787,0.982,15.457,18.217,19.701,18.281,0.469,15.706,24.145,9.527,5.071,5.07,-2.518,13.574,17.845,21.155,7.66,4.406,4.881,19.107,8.729,12.28,4.62,6.267,10.251,19.945,10.701,22.561,4.991,3.394,-5.415,1.522,5.761,20.067,23.097,14.645,6.946,14.0],[24.323,22.18,7.209,13.472,11.048,13.017,3.08,3.561,7.242,21.164,29.326,22.685,9.841,0.606,15.827,20.478,10.708,15.988,14.426,12.607,9.869,-0.38,16.55,15.375,4.337,2.549,7.915,20.672,12.364,17.1,3.619,12.249,7.564,15.291,9.683,-0.4,8.341,5.567,20.978,-5.874,-0.284,8.359,19.259,14.509,1.76,18.481,17.096,19.187,23.426,10.63,4.507,-3.552,4.577,23.582,22.182,8.693,5.719,13.12,5.741,3.265,19.388,6.206,18.889,12.858,21.01,21.732,7.96,14.331,6.71,1.76,8.722,4.905,26.14,11.838,3.719,31.094,20.977,3.668,28.258,23.493,14.485,16.003,8.779,11.726,6.151,9.652,13.42,21.575,3.037,21.728,10.537,24.141,-0.886,17.623,13.067,14.731,21.658,11.905,18.543,3.901,10.749,16.04,16.055,11.55,12.563,0.019,13.088,21.488,1.464,14.585,17.449,5.388,13.72,16.505,19.09,0.302,15.937,3.14,21.099,9.193,7.661,12.785,2.575,6.218,17.536,-0.709,7.575,11.534,5.695,10.649,5.319,13.54,10.847,15.11,7.083,20.464,9.38,-0.712,9.842,20.857,7.999,3.169,13.941,22.276,5.672,8.724,23.981,6.837,17.067,1.077,-6.792,-5.777,18.68,18.545,24.893,0.855,15.763,18.27,19.926,18.082,0.009,15.479,23.668,9.23,5.251,5.612,-2.395,13.847,17.549,21.035,7.601,4.724,5.076,18.561,8.609,12.942,4.676,6.485,10.519,20.5,10.617,22.088,4.551,2.646,-5.002,1.616,6.413,19.888,22.475,14.384,6.909,14.474],[24.282,22.283,7.215,13.479,11.245,13.078,3.356,3.607,7.363,21.365,29.243,22.685,9.832,0.563,15.838,20.44,10.793,15.9,13.882,12.457,9.838,-0.454,16.663,15.285,4.553,2.349,7.981,20.71,12.285,16.928,3.549,12.497,7.527,15.32,9.613,-0.373,8.255,5.451,20.829,-5.758,-0.309,8.373,19.31,14.653,1.638,18.465,16.923,19.158,23.372,10.505,4.486,-3.465,4.615,23.461,22.122,8.625,5.898,13.347,5.932,3.306,19.281,6.0,18.779,12.927,21.559,21.246,8.211,14.349,6.376,1.722,8.861,4.81,26.158,11.839,3.561,31.055,20.896,3.289,28.017,23.678,14.566,15.94,9.06,11.845,6.281,9.89,13.468,21.857,2.94,21.805,10.302,24.183,-0.9,17.524,12.984,14.604,21.686,11.362,18.557,4.681,10.873,16.13,15.664,12.27,12.393,0.631,12.941,21.196,0.856,14.571,17.485,5.553,13.724,16.354,19.359,0.287,16.036,3.163,21.8,9.213,7.812,13.365,2.489,6.293,18.025,-1.435,7.774,11.577,5.875,10.93,4.944,13.739,11.103,15.497,7.062,20.755,9.238,-1.135,9.799,20.426,7.431,3.283,13.856,21.757,5.705,8.86,24.309,6.875,17.479,1.227,-6.637,-5.436,19.025,18.706,24.715,1.01,15.921,18.051,20.312,18.214,-0.108,15.466,24.185,9.713,5.199,5.33,-2.178,13.902,17.51,21.112,7.613,4.74,5.177,18.748,8.152,13.385,4.804,6.408,10.52,19.933,10.448,22.151,4.503,2.61,-4.822,1.781,6.434,19.481,22.476,13.629,6.872,14.422],[24.401,22.397,7.225,13.479,11.45,13.079,3.484,3.678,7.3,21.54,29.163,22.709,9.684,0.631,15.852,20.246,10.985,15.994,13.398,12.171,9.783,-0.681,16.563,15.28,4.8,2.152,8.033,20.84,12.248,16.859,3.38,12.707,7.694,15.382,9.641,-0.544,8.125,5.651,20.663,-5.612,-0.261,8.33,19.404,14.819,1.52,18.628,16.74,19.12,23.331,10.373,4.615,-3.323,4.607,23.378,22.053,8.548,6.011,13.672,6.127,3.437,19.203,5.856,18.498,12.888,21.754,21.73,7.935,14.437,6.43,1.751,8.953,5.312,26.197,11.743,3.823,30.907,21.031,3.598,28.18,24.209,14.359,16.156,9.003,12.199,6.365,10.018,13.681,21.807,3.274,22.002,10.165,24.244,-1.147,17.375,12.594,14.863,21.609,11.126,18.291,5.104,10.92,16.388,15.255,12.226,12.715,0.306,13.082,21.181,0.73,14.006,17.225,4.916,13.32,15.744,19.17,0.071,15.959,3.131,21.955,9.26,7.869,13.654,2.464,6.364,17.943,-0.589,7.561,11.788,6.123,11.003,5.04,13.732,11.283,15.497,7.14,20.239,8.556,-1.193,9.828,20.303,7.373,3.048,13.891,21.341,5.505,8.709,24.157,6.788,17.521,0.99,-6.265,-5.583,18.681,18.499,24.658,0.584,15.741,17.735,20.332,18.594,0.553,15.356,24.588,9.767,4.879,4.517,-2.298,13.929,17.571,21.405,7.335,4.493,5.101,18.812,8.187,13.363,5.168,6.445,10.396,19.43,10.735,22.269,5.153,2.965,-5.077,1.767,6.504,19.501,23.02,13.573,7.462,14.339],[24.693,22.495,7.177,13.519,11.543,12.938,3.493,3.888,7.151,21.533,29.085,22.89,9.567,0.787,15.99,19.977,11.062,16.081,13.142,11.959,9.725,-0.947,16.478,15.338,4.961,2.037,7.983,20.963,12.281,16.907,3.204,12.611,7.964,15.468,9.617,-0.742,7.916,5.767,20.424,-5.618,-0.076,8.231,19.349,14.846,1.511,18.745,16.605,19.05,23.372,10.372,4.765,-3.328,4.58,23.525,22.072,8.609,6.133,13.869,6.342,3.542,19.215,5.796,18.051,12.683,21.532,22.219,7.588,14.214,6.521,1.628,9.06,4.8,26.556,11.72,4.362,30.91,21.1,3.415,28.265,24.451,14.523,16.292,9.035,12.596,6.494,10.344,13.364,21.437,3.613,22.649,10.223,24.556,-1.111,17.449,11.756,15.498,21.061,11.628,18.389,4.834,10.647,16.331,14.708,11.682,12.562,0.018,12.975,20.998,1.123,14.36,17.779,5.021,12.949,15.994,19.423,-0.222,15.675,2.85,22.206,9.619,7.907,13.811,1.89,6.432,17.233,-0.824,7.772,12.039,6.466,11.0,5.092,13.564,11.026,15.299,7.219,20.315,8.39,-1.007,10.105,20.763,7.726,2.945,14.118,20.999,6.206,8.969,23.754,6.746,17.228,1.0,-5.708,-5.13,18.507,18.298,24.877,0.187,16.258,17.803,20.254,18.537,0.771,15.254,24.411,9.439,5.177,4.629,-2.719,14.164,17.616,21.06,6.913,4.669,4.797,18.46,8.607,13.001,5.397,6.754,10.377,19.618,10.31,22.038,5.553,2.857,-5.096,1.752,6.369,19.701,22.585,14.236,7.945,14.268],[25.023,22.468,7.21,13.603,11.486,12.857,3.622,3.976,6.989,21.489,29.132,23.094,9.536,0.898,16.202,19.791,10.992,16.102,13.006,11.891,9.787,-0.925,16.45,15.514,4.918,1.994,7.937,21.09,12.292,17.023,3.091,12.378,8.249,15.52,9.539,-0.925,7.711,5.869,20.161,-5.451,0.258,8.259,19.245,14.814,1.499,18.463,16.604,18.926,23.393,10.364,4.786,-3.519,4.583,23.654,21.927,8.701,6.382,13.863,6.627,3.625,19.298,5.763,17.698,12.449,21.533,22.078,7.743,13.826,6.556,1.957,8.913,5.156,26.749,11.705,3.965,30.951,21.176,3.685,28.014,24.799,14.207,16.198,8.934,12.854,6.329,10.314,12.847,21.769,3.356,22.685,10.252,24.396,-0.649,17.937,11.463,15.069,20.714,11.961,18.236,5.155,10.086,16.138,14.19,11.464,12.429,-0.073,12.794,21.192,0.913,14.353,17.943,5.505,13.111,16.569,19.646,-0.008,15.539,2.397,22.538,9.561,7.319,13.633,1.666,6.554,17.519,-0.788,8.416,11.576,6.332,10.699,4.742,13.991,11.016,15.336,7.081,20.052,8.265,-0.909,9.905,20.98,7.215,3.107,14.427,21.393,6.723,8.685,24.253,6.372,16.93,1.363,-6.02,-4.941,18.463,18.526,24.68,0.615,16.105,17.703,20.085,18.1,0.413,15.06,24.671,9.451,5.183,5.222,-2.138,14.43,17.539,20.722,7.074,4.797,4.711,18.144,9.085,12.347,5.26,6.764,10.434,18.888,10.232,22.5,5.764,3.142,-5.094,1.923,5.996,19.748,22.464,14.128,8.199,14.661],[25.279,22.348,7.286,13.571,11.29,12.811,3.699,3.966,7.07,21.406,29.262,23.255,9.529,1.03,16.285,19.939,10.876,16.11,12.815,11.969,9.837,-0.693,16.324,15.38,4.817,1.914,7.864,21.265,12.219,17.233,3.015,12.13,8.449,15.583,9.389,-1.034,7.468,6.016,20.018,-5.316,0.551,8.343,19.245,14.822,1.587,18.016,16.63,18.852,23.403,10.394,4.725,-3.437,4.643,23.907,21.63,8.812,6.634,13.839,6.833,3.631,19.397,5.787,17.445,12.115,21.23,22.004,7.587,14.457,6.367,2.186,8.521,5.346,27.093,11.792,3.881,30.782,21.395,4.001,27.921,25.385,13.787,16.505,9.043,12.452,6.351,9.842,13.062,21.695,3.638,22.495,10.14,24.578,-0.615,17.942,11.455,14.425,21.03,11.756,17.877,5.084,9.917,16.424,14.404,12.075,12.682,0.028,12.755,21.208,0.661,14.942,17.33,5.113,13.238,16.081,20.43,-0.156,15.538,2.336,23.132,9.27,6.75,13.07,1.851,6.756,18.101,-0.536,8.34,11.274,6.688,10.595,4.543,13.991,10.836,15.481,7.313,19.279,7.927,-1.239,9.686,20.974,6.947,2.893,14.094,21.342,6.622,8.406,24.78,6.042,16.842,1.694,-6.083,-4.999,18.136,18.679,24.268,0.498,16.231,17.84,19.614,17.641,0.222,15.057,24.914,9.65,4.831,5.579,-1.857,14.325,17.489,21.003,7.532,4.944,4.77,17.676,9.016,11.876,5.249,7.52,10.526,18.069,10.67,22.455,5.518,3.103,-5.012,2.193,6.246,19.8,22.349,14.012,8.506,14.882],[25.559,22.344,7.488,13.547,11.035,12.827,3.71,3.99,7.232,21.367,29.306,23.374,9.423,1.012,16.229,20.386,10.906,16.071,12.697,12.147,9.801,-0.601,16.049,15.204,4.715,1.919,7.714,21.615,12.063,17.415,3.05,12.025,8.549,15.605,9.331,-1.026,7.226,6.071,19.823,-5.286,0.781,8.443,19.316,14.822,1.594,17.65,16.607,18.845,23.414,10.527,4.549,-3.181,4.651,24.091,21.377,8.822,6.892,13.823,6.951,3.634,19.399,5.844,17.15,11.861,21.32,21.564,7.791,14.62,6.74,2.294,8.835,4.57,27.344,11.802,4.561,31.111,21.403,3.478,28.068,25.374,13.798,16.755,9.108,11.93,6.379,9.398,12.88,21.68,3.949,22.029,10.242,24.505,-0.597,17.731,11.505,14.685,21.484,11.36,17.892,4.754,10.346,16.51,14.249,12.348,12.501,0.721,12.727,21.131,0.456,14.899,17.224,5.151,13.252,16.117,21.136,-0.09,15.255,2.64,23.316,8.918,7.075,12.862,1.704,6.75,18.103,-0.971,8.383,11.133,6.895,10.548,4.701,13.797,10.636,15.527,7.68,19.271,7.674,-1.893,9.922,20.964,7.031,2.891,14.063,21.059,6.1,8.452,24.419,5.77,16.318,1.086,-5.587,-5.369,17.751,18.73,24.419,0.34,15.903,17.973,19.353,17.765,0.073,15.15,25.108,9.966,4.923,5.845,-2.114,13.844,17.914,20.808,7.49,5.17,4.7,17.679,8.535,11.982,5.417,7.863,10.679,18.269,10.753,22.744,5.605,2.662,-4.956,2.077,7.082,19.492,22.304,13.368,8.496,14.523],[25.819,22.514,7.688,13.531,10.719,13.006,3.859,3.79,7.316,21.281,29.354,23.488,9.284,0.923,16.142,20.796,11.022,16.1,12.52,12.153,9.686,-0.572,15.766,15.212,4.662,1.91,7.516,22.102,11.931,17.434,3.107,12.025,8.601,15.576,9.428,-1.017,7.033,6.082,19.646,-5.418,0.811,8.512,19.436,14.808,1.466,17.395,16.54,18.886,23.429,10.778,4.296,-3.078,4.733,24.089,21.193,8.74,7.13,13.687,7.053,3.718,19.328,5.879,17.063,11.76,21.606,21.438,7.901,13.868,7.233,2.125,8.568,5.056,27.583,11.653,4.103,31.059,21.439,3.426,28.273,25.347,13.726,16.519,9.338,11.81,6.487,9.365,12.37,21.819,3.336,21.223,10.259,23.806,-0.877,17.774,11.187,14.91,22.198,11.183,17.376,4.542,10.573,16.23,14.106,12.666,12.431,0.437,12.781,21.401,1.041,13.833,17.632,5.358,13.62,16.198,21.269,0.102,14.964,2.78,23.989,8.954,7.782,13.012,1.526,6.551,17.748,-1.604,8.852,11.032,6.581,10.604,4.865,13.878,10.916,15.491,7.99,19.748,7.128,-2.424,9.949,20.854,7.536,3.208,14.202,20.632,5.809,8.891,24.193,6.064,15.92,1.494,-5.059,-5.121,18.085,18.7,24.863,0.133,15.814,17.554,18.813,18.196,0.877,14.969,25.343,10.035,5.133,5.95,-1.756,13.944,17.58,20.658,7.057,4.995,4.64,17.659,8.537,11.639,5.429,7.529,10.552,18.226,10.643,23.617,5.849,2.938,-4.793,2.029,7.387,19.412,22.104,13.11,8.833,14.718],[26.025,22.631,7.682,13.364,10.439,13.193,3.87,3.633,7.338,21.064,29.454,23.423,9.161,0.776,16.105,21.108,11.125,16.216,12.312,12.019,9.638,-0.566,15.496,15.121,4.639,1.97,7.339,22.667,12.009,17.245,3.193,11.987,8.669,15.611,9.563,-1.101,7.002,6.16,19.607,-5.563,0.952,8.672,19.649,14.759,1.418,17.281,16.365,19.064,23.535,10.983,4.256,-3.047,4.913,24.115,21.02,8.699,7.232,13.599,6.971,3.861,19.153,5.94,17.112,11.839,21.89,21.996,7.829,14.068,6.99,2.013,8.534,4.68,27.663,11.551,3.935,31.19,21.277,3.208,28.267,25.386,13.603,16.28,9.485,11.79,6.58,9.219,12.977,22.507,4.037,20.558,9.96,24.071,-0.865,17.782,10.919,14.864,22.133,11.7,17.345,4.058,9.796,16.333,13.8,12.393,13.017,0.136,12.562,22.259,1.002,13.836,17.611,5.06,13.396,15.958,21.34,-0.17,14.864,2.567,24.321,8.898,7.76,13.559,1.529,6.658,18.072,-1.754,8.425,10.947,6.962,10.75,4.936,14.091,10.809,15.309,7.916,19.626,6.677,-2.518,9.952,20.909,7.91,2.954,13.962,20.414,5.573,8.656,24.264,5.717,15.708,1.935,-5.012,-5.125,18.234,18.395,25.034,0.14,16.09,17.44,18.486,17.96,1.749,14.805,25.219,9.985,4.874,5.666,-1.646,14.225,17.508,20.479,6.222,4.642,4.79,17.12,8.799,11.654,5.595,7.621,10.433,18.443,10.808,23.38,6.212,2.744,-4.796,2.113,7.031,20.107,21.896,13.089,9.108,14.617],[26.138,22.608,7.527,13.28,10.379,13.28,4.046,3.422,7.091,20.726,29.558,23.414,9.057,0.65,16.067,21.469,11.172,16.295,12.155,12.076,9.544,-0.693,15.373,14.98,4.485,2.055,7.171,23.016,12.299,16.924,3.356,11.896,8.744,15.813,9.716,-1.196,7.0,6.205,19.693,-5.595,1.212,8.804,19.745,14.661,1.322,17.269,16.152,19.212,23.692,11.109,4.269,-3.03,5.11,23.983,20.873,8.784,7.106,13.589,6.825,4.027,19.104,5.912,17.156,11.987,22.016,22.003,7.678,14.468,6.611,1.916,8.548,4.271,27.924,11.563,4.431,31.329,21.042,2.664,28.275,25.525,14.072,16.328,9.301,11.419,6.879,9.009,12.728,22.822,4.206,20.473,10.129,24.301,-1.021,17.878,10.782,14.403,21.706,12.335,17.109,4.974,8.663,16.044,13.684,11.63,12.57,0.454,12.338,22.72,0.77,14.555,17.266,4.888,12.846,16.349,21.806,0.011,14.585,2.1,24.476,8.94,7.197,13.991,1.713,6.787,18.257,-1.834,8.433,10.675,7.098,10.6,4.989,14.414,10.967,15.041,8.028,19.473,6.922,-2.699,10.156,21.418,7.632,3.067,13.884,20.663,5.89,8.482,24.483,5.643,15.731,2.32,-5.973,-5.409,18.323,18.887,24.797,0.246,15.744,17.518,18.966,18.207,2.363,14.557,24.942,10.109,4.219,5.854,-2.015,13.763,17.593,20.06,6.286,4.871,4.935,17.254,9.024,11.945,5.192,7.176,10.44,18.623,10.472,23.546,6.512,2.686,-4.807,2.199,7.085,20.26,21.802,13.655,8.799,14.581],[26.213,22.557,7.48,13.386,10.399,13.342,4.428,3.162,6.668,20.352,29.635,23.531,9.035,0.545,16.163,21.663,11.154,16.388,12.056,12.009,9.369,-0.718,15.341,14.978,4.46,2.136,6.937,23.04,12.472,16.639,3.433,11.835,8.82,16.059,9.89,-1.306,6.96,6.261,19.858,-5.711,1.499,8.798,19.751,14.497,1.243,17.43,16.099,19.331,23.803,11.163,4.281,-3.023,5.368,23.763,20.876,8.874,6.995,13.505,6.537,4.113,19.158,5.803,17.155,12.159,21.68,21.342,7.335,13.904,6.212,1.376,7.867,4.61,27.98,11.733,4.765,31.345,21.173,2.525,28.472,25.53,13.942,16.171,9.329,11.447,6.735,9.089,12.401,22.638,4.699,20.366,10.223,24.289,-1.134,17.722,11.067,13.953,22.184,12.128,17.103,5.29,8.644,15.709,13.623,11.665,12.236,0.481,12.872,22.939,0.896,14.726,16.664,4.957,13.241,16.152,22.43,-0.203,14.47,2.135,24.911,8.838,6.873,14.123,1.729,6.766,17.764,-1.975,9.219,10.472,6.755,10.13,4.884,14.256,10.967,15.296,7.781,19.476,7.289,-2.714,10.12,21.455,7.597,2.796,13.895,21.156,6.761,8.886,24.935,5.754,16.629,2.323,-6.685,-4.941,18.497,18.946,24.595,0.135,15.407,17.362,19.143,18.632,2.569,14.462,24.861,10.086,3.636,6.097,-2.041,13.397,17.56,20.021,7.116,5.308,5.065,17.674,8.868,12.065,4.801,6.953,10.672,18.387,10.458,23.749,6.071,2.928,-4.785,2.4,7.191,19.873,21.57,13.57,8.767,14.567],[26.294,22.547,7.559,13.459,10.428,13.324,4.793,3.013,6.344,19.884,29.79,23.769,8.916,0.412,16.356,21.846,11.248,16.38,12.109,11.887,9.199,-0.746,15.391,15.001,4.578,2.252,6.704,23.155,12.453,16.429,3.367,11.682,9.017,16.009,9.936,-1.467,6.891,6.386,20.077,-5.911,1.678,8.845,19.711,14.27,1.074,17.666,16.156,19.46,23.77,11.133,4.292,-3.015,5.542,23.63,20.934,8.849,7.16,13.334,6.053,4.15,19.233,5.731,17.134,12.224,21.471,20.727,7.346,14.195,5.511,1.317,7.963,4.246,28.019,11.764,5.378,31.387,21.629,2.446,28.384,25.415,13.835,16.0,9.341,11.737,6.381,9.072,12.428,22.134,4.294,20.086,9.968,23.91,-1.466,18.163,11.363,14.363,22.852,11.827,17.13,4.657,9.085,16.491,13.652,12.323,12.695,0.362,13.3,22.47,1.092,14.592,16.584,5.233,13.234,16.276,22.264,-0.432,14.763,2.488,24.926,8.682,6.65,13.716,1.529,6.37,17.276,-2.135,9.341,10.614,7.151,10.769,4.858,14.221,10.668,16.54,7.843,19.779,7.22,-2.453,10.402,21.018,7.401,2.765,13.563,21.261,6.581,8.775,25.0,5.479,16.802,2.396,-6.24,-4.903,18.384,18.492,24.647,0.03,15.686,17.547,19.558,18.578,2.789,14.553,24.511,10.128,3.544,6.3,-1.895,13.682,17.447,20.362,7.603,5.511,5.585,17.764,8.849,12.516,4.339,6.904,10.617,18.154,11.053,23.198,5.704,2.862,-4.813,2.636,7.371,19.513,21.876,13.407,8.847,14.354],[26.346,22.59,7.619,13.58,10.523,13.214,4.948,2.809,6.148,19.525,29.83,23.893,8.79,0.315,16.566,21.944,11.478,16.422,12.3,11.896,9.121,-0.813,15.42,15.113,4.615,2.378,6.509,23.317,12.356,16.195,3.312,11.521,9.362,15.98,10.054,-1.728,6.777,6.48,20.215,-6.029,1.769,8.823,19.612,14.097,0.924,17.94,16.307,19.408,23.606,11.213,4.164,-3.0,5.623,23.558,21.039,8.661,7.517,13.31,5.649,4.125,19.293,5.846,17.113,12.199,21.369,20.255,6.972,14.515,5.698,1.519,8.151,4.062,28.049,11.724,5.008,31.505,21.736,2.32,28.545,25.375,13.987,16.59,9.34,11.753,6.504,9.077,12.582,22.357,4.814,19.966,9.856,24.118,-1.5,18.359,11.266,15.054,22.894,11.804,17.31,4.589,9.056,16.883,13.857,12.49,12.952,0.42,13.5,22.387,1.104,13.804,17.267,5.622,12.489,16.217,22.321,0.014,14.747,2.355,25.01,8.338,6.282,13.11,1.614,5.484,17.238,-2.443,8.936,10.706,7.749,10.985,4.668,14.196,10.655,16.963,7.603,20.077,7.129,-1.609,10.584,20.982,7.148,2.446,13.328,21.588,6.416,8.641,24.675,5.198,16.656,1.935,-6.289,-5.366,18.358,18.077,24.715,-0.08,15.345,17.655,19.761,18.389,3.246,14.852,24.067,10.441,4.404,6.468,-2.047,13.493,17.435,20.657,7.473,5.392,5.779,17.454,9.053,12.764,4.036,6.228,10.251,18.629,10.816,23.049,5.896,2.794,-4.762,2.584,7.807,19.671,21.753,13.326,8.983,14.658],[26.308,22.549,7.631,13.694,10.562,13.197,4.977,2.657,5.937,19.588,29.799,23.957,8.796,0.223,16.818,21.833,11.585,16.587,12.627,11.967,9.071,-0.703,15.227,15.303,4.652,2.489,6.257,23.491,12.368,16.0,3.139,11.571,9.55,16.046,10.175,-2.089,6.62,6.449,20.306,-6.129,1.839,8.668,19.524,14.009,0.865,18.143,16.499,19.272,23.411,11.364,4.077,-2.97,5.636,23.453,21.16,8.457,7.71,13.465,5.402,4.041,19.363,6.029,17.164,12.249,21.858,20.283,6.725,14.478,6.386,1.635,7.867,3.977,28.096,12.065,5.261,31.67,22.362,1.863,29.238,25.726,13.936,17.088,9.387,11.634,6.742,8.974,12.648,22.526,5.151,19.73,10.134,24.222,-1.026,18.524,11.312,14.516,22.744,12.155,16.858,4.586,8.637,16.096,14.108,12.433,12.91,0.188,12.855,22.48,1.152,13.858,16.979,5.151,11.619,16.052,22.288,-0.226,14.263,2.145,25.283,8.107,6.45,13.184,1.642,4.658,17.159,-2.548,9.545,10.104,7.849,10.491,4.869,14.336,10.834,16.398,7.627,19.839,6.914,-0.624,10.48,21.026,6.917,2.676,13.454,21.726,6.637,9.018,24.732,5.259,16.829,1.681,-6.818,-5.463,18.296,18.102,24.37,-0.299,15.209,17.82,19.988,18.139,3.136,14.923,24.506,10.548,5.017,6.745,-2.205,13.469,17.59,20.072,7.666,5.411,5.47,17.021,8.703,11.854,3.84,6.062,10.165,18.527,10.746,23.429,6.323,2.518,-4.865,2.512,7.83,20.119,21.69,13.718,9.587,14.404],[26.227,22.644,7.533,13.658,10.457,13.258,5.062,2.646,5.674,19.744,29.979,23.874,8.803,0.303,17.087,21.62,11.564,16.643,13.07,11.939,8.967,-0.564,14.971,15.38,4.639,2.491,6.122,23.676,12.442,15.918,2.905,11.713,9.54,16.071,10.111,-2.319,6.496,6.38,20.403,-6.289,1.842,8.583,19.412,14.056,0.963,18.159,16.643,19.215,23.224,11.395,4.054,-2.906,5.725,23.48,21.118,8.367,7.839,13.549,5.392,4.043,19.402,6.28,17.135,12.232,21.979,20.498,6.88,14.71,6.192,1.69,7.655,3.704,28.118,11.974,5.536,31.908,22.118,1.613,29.354,25.825,13.852,17.123,9.399,11.594,6.857,8.947,13.154,22.675,4.339,19.49,9.826,23.907,-1.537,18.518,11.514,14.465,22.025,12.361,16.608,4.25,8.264,15.607,14.323,12.107,12.643,0.795,12.691,22.17,1.35,14.877,16.755,4.753,11.344,16.817,22.739,-0.254,14.047,1.724,25.42,8.184,6.347,13.636,1.511,4.399,16.356,-2.989,9.789,10.418,7.847,10.048,4.527,14.341,10.911,16.513,7.479,19.563,6.636,-0.563,10.674,21.02,7.343,2.486,13.511,21.57,6.153,8.666,24.608,5.202,17.586,2.359,-6.267,-5.535,18.259,18.516,23.962,-0.26,15.212,17.922,20.03,17.955,2.728,14.966,24.835,10.771,4.697,6.382,-2.041,13.98,17.863,20.211,7.755,5.338,5.087,17.691,8.393,11.669,3.637,6.084,10.184,18.361,11.328,23.248,6.794,2.52,-4.75,2.493,7.557,20.661,21.802,13.961,9.619,14.697],[26.165,22.681,7.519,13.434,10.352,13.433,5.077,2.689,5.494,19.801,30.215,23.648,8.667,0.402,17.162,21.341,11.433,16.584,13.406,11.793,8.798,-0.349,14.812,15.502,4.434,2.28,6.204,23.825,12.502,15.868,2.603,11.939,9.462,16.22,9.945,-2.359,6.343,6.197,20.461,-6.391,1.783,8.618,19.289,14.14,1.072,18.28,16.774,19.272,23.05,11.397,3.955,-2.764,5.837,23.589,20.979,8.41,7.738,13.65,5.384,4.052,19.491,6.454,17.141,12.161,22.321,19.89,6.321,14.582,5.213,1.491,7.817,3.904,27.98,11.699,5.283,32.032,21.439,1.876,29.138,25.531,13.711,17.353,9.362,11.509,6.562,8.808,13.465,23.101,5.026,19.52,9.357,23.616,-1.423,18.84,11.998,14.872,21.619,12.045,16.777,4.531,8.123,15.659,14.918,12.147,12.645,1.092,13.155,22.27,1.132,15.535,17.041,5.474,11.562,17.056,22.98,0.268,14.229,1.679,25.607,8.193,6.553,13.326,1.253,4.866,16.251,-3.643,9.39,10.903,7.655,10.242,4.332,14.282,11.065,16.484,7.471,19.939,6.992,-1.21,10.455,20.947,7.859,2.705,14.019,21.549,6.109,8.289,24.153,5.339,17.38,2.683,-5.665,-5.604,18.225,18.431,24.167,-0.26,15.265,17.835,20.181,18.174,2.542,15.021,24.603,10.367,4.321,6.264,-1.71,13.594,17.987,20.863,8.241,5.402,5.662,17.793,8.217,12.441,3.745,6.423,10.256,18.549,11.423,23.633,7.17,2.373,-4.455,2.423,7.724,20.652,21.601,13.372,9.427,15.012],[26.1,22.644,7.618,13.138,10.338,13.685,5.163,2.777,5.395,19.773,30.222,23.457,8.478,0.439,17.052,21.215,11.257,16.419,13.62,11.667,8.553,-0.075,14.811,15.725,4.434,1.906,6.505,23.941,12.584,15.922,2.388,12.133,9.343,16.483,9.809,-2.458,6.253,5.998,20.583,-6.382,1.66,8.665,19.153,14.205,1.124,18.491,16.892,19.315,23.01,11.309,3.879,-2.517,5.924,23.712,20.839,8.461,7.484,13.674,5.377,4.172,19.668,6.718,17.397,12.187,22.572,19.347,6.162,13.886,5.059,1.791,7.733,3.968,27.969,11.674,5.288,31.878,21.153,2.136,29.247,25.714,13.821,17.299,9.241,11.122,6.401,8.769,13.028,23.493,4.906,19.332,9.352,23.749,-1.076,18.748,12.455,15.183,21.624,12.109,16.331,4.165,8.146,16.251,15.253,12.169,12.391,0.779,13.717,22.573,0.637,15.415,16.81,5.181,11.903,16.713,22.484,0.288,14.379,1.568,25.503,7.899,6.917,12.209,1.656,4.783,16.462,-3.12,9.073,11.246,7.706,10.515,4.181,14.662,11.575,16.259,7.409,20.427,7.119,-1.776,10.289,20.516,7.582,2.777,13.851,21.508,6.689,8.741,23.9,4.986,17.082,1.844,-5.651,-5.903,18.331,17.858,24.376,0.048,15.384,18.259,20.111,18.307,3.2,15.276,24.483,10.543,3.965,6.6,-1.247,13.623,17.945,20.429,8.126,5.196,6.438,17.858,8.113,11.913,3.576,6.099,10.292,18.65,10.953,23.471,7.512,2.284,-4.296,2.336,8.258,20.275,21.699,13.223,8.865,14.826],[26.044,22.607,7.616,12.909,10.266,13.915,5.163,2.842,5.425,19.602,29.992,23.508,8.373,0.562,16.877,21.226,11.231,16.239,13.525,11.563,8.266,-0.08,14.902,15.976,4.502,1.568,6.777,23.749,12.648,16.03,2.227,12.342,9.368,16.695,9.873,-2.626,6.167,5.872,20.816,-6.333,1.657,8.619,18.937,14.17,1.084,18.524,17.09,19.3,23.005,11.186,3.962,-2.315,6.07,23.683,20.793,8.461,7.308,13.51,5.314,4.27,19.696,6.985,17.935,12.19,22.209,19.248,6.602,13.861,5.733,2.175,7.459,3.734,27.93,11.079,5.166,31.806,21.208,2.038,29.19,25.635,13.941,17.075,9.368,11.397,6.829,8.658,13.701,22.955,4.845,19.767,9.497,23.347,-1.089,18.412,12.238,14.937,22.035,12.141,16.651,4.093,7.73,16.689,14.96,11.718,12.001,1.292,14.149,22.383,1.089,15.726,17.254,4.485,12.487,16.315,22.702,0.354,14.195,1.613,25.61,7.571,7.221,12.04,1.482,4.973,15.83,-2.146,9.224,10.884,7.815,10.312,4.081,15.093,11.63,16.822,7.295,20.17,6.677,-2.25,10.051,20.366,7.329,3.045,13.875,21.706,6.408,8.581,24.27,4.953,17.381,1.113,-6.254,-5.688,18.249,17.787,23.97,0.414,15.199,18.429,20.178,18.216,3.437,15.426,24.792,10.654,3.573,6.545,-0.972,13.982,17.815,20.49,8.502,5.472,6.118,18.603,8.01,11.631,3.486,5.89,10.353,19.186,10.633,23.58,7.509,2.455,-3.969,2.526,7.863,20.157,21.339,13.435,8.597,14.711],[25.928,22.56,7.608,12.819,10.192,14.181,5.063,2.847,5.609,19.375,29.826,23.641,8.46,0.636,16.731,21.28,11.139,16.065,13.458,11.5,7.899,-0.079,15.17,16.174,4.553,1.494,6.946,23.545,12.785,16.235,2.112,12.383,9.52,16.848,9.955,-2.721,6.005,5.736,21.021,-6.259,1.879,8.335,18.795,14.005,1.131,18.515,17.295,19.26,23.001,11.092,4.163,-2.308,6.153,23.631,21.109,8.407,7.254,13.377,5.147,4.437,19.566,7.121,18.332,12.168,21.514,19.507,6.688,14.179,6.149,1.748,7.434,3.829,27.805,11.191,5.265,31.723,21.504,1.746,28.652,25.046,14.387,17.254,9.216,11.335,7.019,8.563,13.912,22.367,4.531,20.147,9.283,23.544,-0.953,18.092,11.925,15.043,22.293,12.203,16.714,4.696,7.473,16.151,15.038,11.76,12.447,0.91,14.136,21.962,0.795,16.242,17.037,4.535,12.804,16.586,22.757,0.172,13.839,1.512,25.366,7.556,7.347,12.752,0.708,5.15,15.222,-2.033,9.194,11.253,7.783,10.009,3.85,14.866,11.388,17.396,7.294,19.93,6.514,-2.712,10.323,20.575,7.534,2.988,13.85,22.222,5.977,8.05,24.475,5.198,17.593,1.426,-6.6,-5.972,18.458,17.9,23.658,0.238,15.332,18.34,20.317,18.171,3.159,15.515,24.736,10.204,3.839,6.75,-0.899,13.46,17.757,20.159,8.833,5.698,5.936,18.903,7.745,11.554,3.453,5.562,10.324,19.137,10.919,23.287,7.65,2.559,-4.096,2.79,7.188,20.314,21.339,13.74,8.71,14.356],[25.654,22.522,7.573,12.857,10.142,14.516,4.869,2.799,5.803,19.129,29.7,23.8,8.641,0.581,16.609,21.285,10.899,15.888,13.536,11.559,7.471,-0.132,15.47,16.333,4.637,1.536,6.946,23.429,13.013,16.336,2.049,12.405,9.569,16.777,9.938,-2.754,5.933,5.683,21.15,-6.26,2.051,8.074,18.763,13.858,1.068,18.51,17.419,19.325,22.996,11.008,4.366,-2.34,6.337,23.577,21.434,8.257,7.203,13.283,4.941,4.6,19.411,7.156,18.497,12.16,21.623,20.206,6.844,14.131,5.837,1.727,7.439,3.813,27.511,11.288,5.327,31.576,21.365,2.193,28.528,25.227,15.051,17.163,9.501,11.29,6.724,8.56,13.705,22.48,4.92,19.405,9.355,24.179,-1.262,18.18,12.181,15.365,21.862,12.156,16.669,4.702,7.484,15.339,15.092,11.67,12.113,0.713,14.134,22.391,0.693,15.915,16.913,5.109,12.614,16.814,22.266,0.084,14.143,1.227,25.011,7.293,7.62,13.389,0.41,5.334,15.132,-2.931,9.515,11.233,7.78,9.937,3.995,15.335,11.418,18.082,7.459,19.962,6.867,-2.937,10.361,20.225,7.657,2.795,13.557,22.237,5.78,7.73,24.164,4.547,17.37,2.366,-6.221,-5.6,18.963,17.88,24.05,0.012,14.937,18.859,20.271,17.894,2.755,15.763,24.783,10.535,4.451,6.447,-1.007,13.337,17.587,20.597,8.639,5.822,6.027,18.385,7.286,11.472,3.445,5.229,10.04,19.752,11.235,23.594,7.264,2.751,-3.888,3.114,7.598,20.256,21.97,13.794,8.689,14.264],[25.419,22.518,7.642,12.846,10.069,14.847,4.675,2.749,5.834,18.886,29.54,23.904,8.8,0.545,16.478,21.223,10.6,15.659,13.661,11.597,7.008,-0.246,15.732,16.288,4.706,1.67,6.954,23.349,13.346,16.217,2.151,12.428,9.632,16.793,9.87,-2.786,5.955,5.804,21.199,-6.253,2.141,7.996,18.804,13.764,0.912,18.358,17.602,19.424,22.92,11.027,4.558,-2.213,6.472,23.787,21.685,8.08,7.137,13.272,4.883,4.803,19.257,7.16,18.556,12.116,21.947,20.615,7.065,14.119,5.781,1.813,7.825,3.809,27.312,11.187,5.215,31.295,21.534,2.107,28.351,25.215,15.106,16.894,9.255,11.409,6.405,8.539,14.171,23.547,4.786,18.826,9.678,23.908,-1.202,17.983,12.568,15.264,21.739,12.059,17.329,4.544,6.958,15.512,15.358,11.115,12.152,0.671,13.456,22.339,0.713,15.758,17.466,5.04,12.207,16.543,22.456,0.38,14.59,1.06,25.181,6.934,7.434,14.304,0.577,5.344,15.185,-3.535,9.582,11.255,7.827,9.644,3.894,15.313,11.577,18.489,7.229,20.28,7.023,-3.218,10.188,20.418,7.107,2.654,13.621,22.06,5.595,7.872,23.743,4.838,17.114,1.96,-6.608,-6.033,19.108,17.947,24.282,0.145,14.967,18.95,20.012,17.741,3.053,15.889,25.101,10.42,5.035,6.786,-0.884,13.617,17.666,20.913,8.115,5.714,5.908,18.809,7.105,11.469,3.286,5.38,9.914,19.704,11.394,23.29,6.997,3.186,-4.013,3.49,7.631,19.945,22.191,13.786,8.574,14.299],[25.235,22.624,7.626,12.805,9.998,15.017,4.515,2.701,5.915,18.897,29.253,23.945,8.94,0.584,16.254,21.004,10.42,15.453,13.885,11.62,6.517,-0.298,15.899,16.053,4.7,1.806,6.952,23.352,13.667,16.028,2.094,12.521,9.685,16.839,9.759,-2.832,5.961,5.952,21.216,-6.354,2.159,7.911,18.859,13.806,0.874,18.234,17.725,19.468,22.87,11.182,4.809,-2.118,6.577,24.127,21.787,8.057,7.126,13.406,5.027,4.991,19.152,6.965,18.545,11.948,22.348,20.7,6.285,13.915,5.685,1.74,8.25,3.978,27.068,11.19,5.169,30.913,21.809,2.326,28.116,24.553,15.369,17.136,9.483,10.934,6.652,8.768,14.5,24.49,4.465,18.557,9.505,23.355,-0.929,17.713,12.494,15.431,22.026,11.902,17.403,4.374,6.726,16.294,15.425,10.821,12.311,0.307,12.869,21.65,0.747,15.853,16.883,4.69,11.643,16.041,22.756,0.118,14.567,1.459,25.215,6.78,7.429,14.515,1.028,5.122,15.745,-3.138,9.319,11.302,7.995,9.405,3.776,15.73,11.525,18.399,6.607,20.26,7.54,-3.857,10.504,20.328,7.444,2.597,13.52,21.879,5.956,8.058,23.804,5.613,17.299,2.013,-6.865,-6.185,18.843,17.863,24.045,-0.066,14.768,18.928,20.007,18.559,3.838,15.983,24.833,10.346,5.247,7.224,-1.257,13.758,17.814,20.959,8.479,6.211,5.995,18.826,6.897,11.945,3.264,5.679,9.835,19.738,11.023,23.365,6.894,3.315,-3.927,3.422,7.63,19.987,22.538,13.431,8.476,14.249],[24.956,22.844,7.694,12.782,9.88,15.066,4.483,2.665,6.091,19.151,28.878,23.99,9.023,0.552,16.069,20.683,10.381,15.33,14.1,11.523,6.281,-0.417,16.016,15.862,4.535,1.841,6.87,23.307,13.908,15.781,1.816,12.654,9.656,16.95,9.841,-2.851,6.031,6.057,21.204,-6.596,2.316,7.873,18.8,13.707,0.911,18.224,17.653,19.566,22.82,11.446,5.078,-2.207,6.761,24.458,21.736,8.006,7.199,13.552,5.303,5.172,19.145,6.841,18.437,11.605,22.452,20.693,6.576,13.95,5.429,2.077,7.99,3.806,26.8,11.26,4.917,30.589,21.976,2.489,27.755,24.516,15.422,17.022,9.455,10.415,6.941,9.076,14.39,24.633,4.838,19.01,9.514,23.137,-0.808,17.188,12.479,15.277,21.715,11.792,17.057,4.95,6.598,16.065,15.469,11.114,12.146,0.712,13.243,21.204,0.985,15.598,16.652,4.87,12.418,15.846,22.576,-0.112,14.505,1.303,25.077,6.66,7.631,14.178,1.64,5.074,15.974,-3.038,9.203,11.6,7.94,9.248,3.447,15.483,11.606,18.2,6.441,20.449,7.396,-4.557,10.328,20.462,7.422,2.619,14.051,22.148,6.045,7.633,23.972,6.154,17.554,1.967,-6.038,-5.751,18.67,17.794,23.935,-0.153,14.689,19.061,20.023,19.021,4.142,16.114,25.242,10.566,5.095,6.806,-0.945,13.807,17.699,21.275,8.573,6.621,6.298,18.367,7.141,12.138,3.465,6.121,9.856,19.622,10.515,23.78,6.637,3.529,-3.906,3.586,7.53,19.922,22.705,13.106,8.69,14.358],[24.789,23.061,7.874,12.75,9.761,14.944,4.6,2.722,6.241,19.423,28.585,24.085,8.953,0.568,15.91,20.376,10.462,15.266,14.259,11.469,6.302,-0.489,16.061,15.751,4.464,1.877,6.783,23.197,14.03,15.637,1.503,12.808,9.571,17.044,10.02,-2.932,6.051,6.063,21.332,-6.637,2.44,7.867,18.695,13.575,0.996,18.273,17.453,19.707,22.689,11.594,5.349,-2.287,6.839,24.791,21.674,7.946,7.272,13.572,5.678,5.449,19.23,6.9,18.238,11.278,22.359,20.804,6.918,14.133,5.921,2.187,7.698,4.074,26.611,11.239,5.308,30.236,21.942,2.149,27.306,24.586,15.469,16.468,9.7,10.75,6.829,8.52,14.471,23.655,4.884,19.251,9.973,23.811,-1.166,17.437,12.8,14.64,20.983,11.662,17.3,4.808,6.352,15.566,15.652,11.075,11.599,0.171,13.756,21.634,0.72,15.179,16.585,4.9,13.109,16.035,22.149,0.028,14.544,1.075,25.054,6.442,7.644,14.281,1.724,4.994,15.64,-3.335,9.384,11.853,7.896,9.772,2.965,15.528,11.586,17.77,6.492,20.143,7.475,-4.464,10.497,20.409,6.917,2.432,13.848,22.225,6.021,7.536,23.772,6.014,17.267,1.967,-6.261,-5.898,18.88,17.736,23.996,0.033,14.323,18.885,20.122,18.284,4.174,15.923,25.975,11.207,4.688,6.807,-0.727,14.071,17.483,21.298,8.232,6.51,5.99,18.493,7.479,11.527,3.82,6.556,9.812,19.363,11.013,23.9,6.608,3.918,-3.866,3.812,7.775,19.836,22.58,12.815,8.86,14.386],[24.7,23.229,8.175,12.685,9.734,14.736,4.703,2.95,6.385,19.679,28.443,24.207,8.826,0.702,15.816,20.171,10.488,15.291,14.251,11.44,6.244,-0.571,16.046,15.495,4.573,1.889,6.72,23.113,14.137,15.523,1.301,12.863,9.617,17.005,10.305,-3.025,6.049,5.908,21.364,-6.626,2.533,7.947,18.474,13.479,1.126,18.254,17.248,19.637,22.525,11.818,5.513,-2.267,6.887,25.085,21.679,7.977,7.324,13.465,6.08,5.667,19.307,6.922,18.112,11.065,22.277,21.283,6.862,13.585,6.128,1.375,8.384,3.842,26.556,10.855,5.166,29.967,21.968,2.456,27.138,24.327,15.352,16.302,9.739,10.542,7.019,8.296,14.263,23.084,4.988,19.57,9.231,24.251,-1.15,17.266,13.052,15.07,20.561,12.024,17.684,4.517,6.544,15.559,15.641,10.765,12.128,-0.28,13.07,21.822,0.656,15.046,16.782,4.4,12.812,16.3,22.423,0.13,14.707,0.657,24.917,6.406,7.328,14.501,1.129,4.989,15.603,-3.669,9.234,11.788,7.887,10.539,2.987,15.291,11.598,17.55,6.683,20.169,7.686,-4.306,10.696,20.062,6.696,2.997,13.244,21.972,5.793,7.578,23.095,5.728,17.023,2.006,-6.192,-6.515,19.319,17.691,23.889,0.156,14.746,18.695,20.009,18.015,3.958,15.677,25.702,11.04,4.761,7.042,-0.905,13.821,17.51,20.579,7.964,6.859,5.856,18.545,7.265,10.696,4.547,6.665,9.815,19.455,11.83,24.267,7.047,4.19,-3.615,3.959,8.051,19.638,22.685,12.934,8.623,14.408],[24.679,23.345,8.481,12.49,9.68,14.514,4.639,3.243,6.4,20.028,28.5,24.335,8.818,0.767,15.704,20.014,10.387,15.341,14.05,11.477,6.065,-0.596,16.089,15.253,4.596,1.816,6.68,23.104,14.11,15.533,1.314,12.74,9.733,16.806,10.725,-3.067,6.098,5.668,21.209,-6.642,2.535,8.03,18.139,13.483,1.247,18.132,17.13,19.432,22.292,12.115,5.504,-2.128,6.96,25.325,21.723,8.066,7.287,13.281,6.418,5.711,19.349,6.832,18.207,10.984,22.182,21.678,7.024,13.242,5.933,1.654,8.316,4.205,26.518,10.738,5.135,29.958,22.211,2.562,26.88,24.331,14.715,16.437,9.859,10.492,7.177,8.405,13.891,23.145,5.005,20.035,9.315,24.776,-0.985,17.267,12.79,14.691,20.78,12.086,17.579,5.405,6.358,15.772,15.754,10.673,12.425,0.43,12.515,21.496,0.635,14.888,16.383,4.635,12.853,16.493,22.645,0.183,14.823,-0.393,24.893,7.087,7.25,15.069,1.001,4.875,14.864,-3.939,9.379,11.684,8.056,10.057,2.332,15.132,11.818,17.94,7.227,20.448,7.354,-4.299,10.978,19.767,7.108,3.126,13.475,21.793,5.551,7.737,22.96,5.787,17.174,2.352,-6.647,-6.592,18.871,17.314,23.719,0.395,14.302,18.506,19.987,18.019,3.549,15.599,25.543,10.877,5.104,7.323,-0.468,13.573,17.489,20.377,8.206,7.049,6.194,18.594,7.333,10.684,5.247,6.99,9.872,19.068,12.037,24.077,7.778,4.487,-3.65,4.193,7.752,19.554,22.799,12.762,8.652,14.029],[24.779,23.39,8.702,12.344,9.565,14.246,4.548,3.492,6.31,20.474,28.608,24.524,9.086,0.816,15.669,19.932,10.252,15.48,13.795,11.592,5.944,-0.377,16.123,15.008,4.787,1.72,6.582,23.119,14.009,15.416,1.276,12.652,9.914,16.579,11.061,-3.091,6.19,5.554,21.058,-6.77,2.483,8.139,17.827,13.537,1.289,18.032,17.148,19.277,22.104,12.342,5.538,-1.894,7.079,25.381,21.749,8.215,7.123,13.03,6.688,5.55,19.37,6.862,18.202,11.003,22.14,21.352,6.956,13.497,5.976,2.229,8.405,4.71,26.592,10.889,5.261,29.874,22.855,2.735,26.988,24.641,14.684,16.341,9.895,10.436,7.121,8.651,13.8,23.422,4.619,20.047,9.862,24.671,-0.915,17.033,12.65,14.236,20.732,11.545,17.411,4.838,6.007,15.933,15.377,10.799,11.825,0.087,12.548,21.062,0.788,14.624,16.387,5.074,13.101,15.832,22.288,-0.008,14.742,-0.493,24.963,6.831,7.315,15.106,1.068,4.892,14.961,-3.897,9.604,11.467,8.142,9.658,1.884,14.923,11.756,18.058,7.408,20.044,7.319,-4.423,11.458,19.392,7.119,2.844,13.825,21.614,5.303,7.565,23.335,5.612,17.407,2.606,-7.281,-6.338,18.209,16.78,23.23,0.306,14.435,18.43,19.655,18.293,3.074,15.652,26.13,11.464,4.788,7.148,-0.163,13.568,17.615,20.66,8.247,7.111,6.301,18.471,7.292,10.769,4.96,7.253,10.053,19.539,12.016,24.273,8.336,4.511,-3.354,4.094,7.866,19.586,22.866,12.739,8.67,14.057],[24.995,23.446,8.793,12.335,9.534,14.004,4.51,3.669,6.194,20.788,28.715,24.714,9.522,0.908,15.595,19.847,10.152,15.697,13.625,11.655,5.894,-0.212,16.128,14.751,4.984,1.686,6.471,23.135,13.98,15.339,1.29,12.639,10.059,16.293,11.226,-3.176,6.289,5.545,20.867,-6.899,2.505,8.173,17.618,13.689,1.141,18.051,17.138,19.268,22.065,12.549,5.543,-1.77,7.189,25.385,21.774,8.303,7.003,12.94,6.727,5.349,19.408,6.974,18.09,11.005,22.494,21.318,7.18,13.35,5.762,2.272,8.665,4.096,26.93,10.867,4.847,30.162,23.135,2.695,27.124,24.509,14.92,16.494,10.049,10.459,7.327,8.81,13.772,23.968,5.224,20.229,9.729,24.102,-0.71,16.894,12.173,14.351,20.724,11.005,17.555,4.449,6.019,15.811,14.932,10.667,11.752,-0.27,12.24,20.945,0.594,14.802,16.406,4.93,13.112,15.836,22.14,0.191,14.558,-0.67,24.679,5.917,7.055,14.896,1.191,4.92,15.113,-3.095,9.798,11.526,8.359,9.852,1.487,15.334,11.323,17.88,7.034,19.603,7.83,-4.692,12.15,19.076,6.927,2.979,13.454,21.603,5.512,7.39,23.221,5.382,16.591,2.473,-7.657,-6.637,18.475,16.242,23.016,0.028,14.87,18.488,19.747,18.043,3.31,15.643,26.231,11.739,4.629,6.831,-0.228,13.312,17.872,21.041,8.376,6.792,5.964,18.384,7.18,10.804,5.052,7.785,10.05,19.706,11.907,24.579,8.164,4.36,-3.276,3.693,8.041,19.522,23.132,12.682,7.851,13.845],[25.212,23.586,8.862,12.361,9.634,13.773,4.519,3.572,6.096,20.958,28.84,24.71,9.758,0.968,15.428,19.833,9.975,15.924,13.423,11.822,5.831,-0.204,16.141,14.682,4.951,1.584,6.404,23.112,13.889,15.365,1.169,12.64,10.058,16.057,11.19,-3.285,6.378,5.558,20.61,-6.946,2.598,8.096,17.438,13.829,0.936,18.043,17.071,19.465,22.159,12.758,5.544,-1.878,7.284,25.305,21.867,8.198,6.777,13.035,6.84,5.142,19.519,7.074,17.985,10.826,22.873,21.337,6.879,13.066,5.584,2.087,8.804,4.585,27.024,10.696,5.245,30.33,22.857,2.745,27.21,24.444,14.761,16.098,10.432,10.984,7.52,8.521,13.599,25.215,4.916,20.643,10.202,24.485,-0.747,16.945,12.212,14.052,20.857,11.08,17.792,5.639,6.038,15.331,14.983,10.735,12.25,0.482,12.318,21.192,0.751,14.679,16.402,4.615,13.214,16.757,22.289,0.489,15.012,-0.53,24.798,5.747,6.895,14.142,1.699,4.559,14.982,-2.471,9.757,11.93,8.375,10.523,1.482,15.559,11.57,17.534,6.675,19.215,8.27,-4.927,12.233,19.1,7.029,2.47,13.777,21.444,5.53,7.876,23.289,5.781,16.587,2.681,-7.3,-6.873,18.952,16.375,23.018,0.314,14.636,18.511,19.559,17.91,3.848,15.63,25.865,11.627,4.984,6.895,-0.209,13.37,17.996,20.975,8.317,6.238,5.707,18.046,7.283,11.049,5.144,7.879,9.977,19.093,11.743,24.308,7.292,4.412,-3.246,3.419,7.78,19.064,23.1,12.681,7.934,13.878],[25.293,23.723,8.921,12.392,9.861,13.55,4.549,3.436,6.039,21.052,28.886,24.818,9.755,0.943,15.216,20.025,9.938,16.072,13.305,12.316,5.745,-0.116,16.255,14.67,4.87,1.516,6.322,23.125,13.724,15.363,1.058,12.742,9.852,15.831,11.041,-3.399,6.495,5.567,20.277,-6.876,2.622,8.124,17.413,13.908,0.83,17.896,17.069,19.881,22.285,12.956,5.677,-1.918,7.259,25.123,21.838,7.988,6.705,13.199,7.097,4.866,19.539,7.144,17.825,10.717,22.989,21.199,6.502,13.25,5.799,2.017,9.604,4.28,27.207,10.889,5.637,30.372,22.857,2.589,27.389,24.864,14.21,15.396,10.242,11.081,7.417,8.512,13.195,25.922,4.573,21.064,10.11,24.675,-0.902,16.875,12.666,14.006,20.77,11.048,17.809,5.143,5.908,15.14,14.964,10.409,12.099,0.81,11.925,21.246,0.417,14.222,16.446,5.056,13.325,16.93,22.259,0.037,15.096,-0.836,24.941,6.37,6.978,13.369,1.788,4.572,15.367,-2.421,9.413,11.672,8.293,11.021,1.449,15.78,11.912,17.479,6.137,19.257,8.245,-4.712,11.648,19.139,6.828,2.162,13.763,21.206,5.462,7.951,23.379,6.063,17.213,2.885,-6.589,-6.853,19.282,17.064,23.593,0.029,15.056,18.402,19.647,18.404,4.234,15.493,25.667,11.867,5.901,7.382,-0.522,13.63,17.897,20.924,8.32,6.209,5.494,18.37,7.272,10.496,5.261,7.21,9.848,18.718,11.935,24.123,6.888,4.183,-3.215,3.161,7.025,19.533,23.056,12.414,8.071,14.275],[25.24,23.667,8.863,12.466,10.065,13.329,4.604,3.257,6.038,21.059,28.876,25.069,9.627,0.935,15.083,20.267,9.925,16.279,13.41,12.689,5.772,-0.063,16.364,14.682,4.754,1.478,6.233,23.178,13.468,15.407,0.98,12.774,9.639,15.755,10.819,-3.479,6.69,5.499,20.049,-6.547,2.577,8.268,17.6,14.079,0.756,17.879,17.149,20.12,22.506,12.949,5.759,-1.891,7.234,24.974,21.66,7.847,6.862,13.335,7.288,4.822,19.55,7.159,17.702,10.603,22.632,21.46,6.724,13.502,5.973,2.335,9.859,3.742,27.108,10.843,4.882,30.445,23.371,2.131,27.353,25.086,14.118,15.205,10.379,11.064,7.587,8.878,12.953,25.524,4.729,21.366,9.72,24.904,-0.759,16.845,12.572,14.175,20.723,10.993,17.531,4.86,5.619,15.668,14.893,10.593,12.018,0.498,11.787,21.654,0.218,13.929,15.899,5.19,14.105,16.251,22.123,-0.201,14.852,-0.941,24.798,6.363,7.115,13.386,1.21,4.639,15.064,-2.579,9.194,11.337,7.948,10.826,1.201,15.821,11.889,17.492,6.19,18.98,8.142,-4.341,11.262,19.394,6.924,2.196,13.401,20.833,5.334,7.428,23.274,5.504,17.708,3.003,-7.11,-6.727,19.51,16.631,23.798,-0.502,14.91,18.232,19.671,18.842,4.027,15.418,25.71,11.813,6.421,7.039,-0.381,13.574,17.7,20.788,8.159,6.042,5.477,18.399,6.811,9.943,5.778,7.592,9.625,19.196,12.733,23.834,6.838,4.216,-3.388,3.143,7.054,20.059,23.23,12.467,8.049,13.681],[25.162,23.455,8.849,12.578,10.278,13.169,4.495,2.991,6.177,21.046,28.834,25.373,9.45,1.147,15.031,20.455,9.895,16.484,13.496,12.707,5.802,-0.146,16.322,14.731,4.71,1.45,6.1,23.081,13.233,15.346,0.854,12.635,9.362,16.061,10.534,-3.446,6.791,5.394,19.85,-6.249,2.462,8.195,17.83,14.152,0.657,18.018,17.143,20.065,22.642,12.844,5.735,-1.843,7.173,24.864,21.497,7.755,7.007,13.226,7.472,4.949,19.609,7.147,17.769,10.5,22.33,21.975,6.805,13.213,5.583,2.543,9.166,4.484,26.96,11.095,5.381,30.361,23.583,2.245,27.279,24.578,14.214,15.401,10.527,10.998,7.497,9.001,13.109,24.803,4.81,21.73,9.65,24.676,-0.422,16.76,12.165,14.76,21.239,11.156,17.735,5.102,5.687,16.522,15.188,10.752,12.277,0.441,11.337,21.83,0.093,14.014,15.918,4.6,14.218,16.502,22.256,0.158,14.775,-0.953,24.76,6.324,7.086,13.866,0.9,4.557,14.49,-2.811,9.554,11.328,7.825,10.644,1.298,14.753,12.17,17.674,6.619,18.75,7.731,-4.351,11.459,19.42,7.651,2.19,14.184,20.804,5.35,7.603,23.45,5.505,17.365,3.102,-7.656,-6.001,18.989,16.431,23.651,-0.597,15.21,18.351,19.718,19.358,3.971,15.701,25.567,11.352,6.75,6.865,-0.206,13.478,17.92,20.169,7.984,6.094,5.503,17.936,6.702,10.168,5.789,8.48,9.332,19.386,12.842,24.034,7.032,4.566,-3.392,3.267,7.846,19.73,22.916,12.238,8.189,14.206],[25.098,23.317,8.937,12.656,10.49,13.145,4.409,2.842,6.447,21.15,28.746,25.536,9.183,1.289,15.144,20.619,9.954,16.77,13.59,12.509,5.852,-0.239,16.288,14.924,4.69,1.419,5.874,22.987,13.014,15.105,0.749,12.557,9.103,16.345,10.275,-3.314,6.76,5.306,19.684,-6.11,2.375,8.042,18.086,14.324,0.559,18.159,17.082,19.974,22.619,12.653,5.745,-1.788,7.095,24.719,21.31,7.64,7.155,13.105,7.697,5.048,19.65,7.072,17.855,10.44,22.538,22.381,6.877,13.493,5.558,2.552,8.521,4.196,27.01,11.347,5.433,30.111,22.897,2.077,27.239,24.547,14.119,15.602,10.209,11.311,7.296,8.987,13.464,24.677,4.434,21.763,9.747,25.443,-0.357,16.692,12.21,14.392,21.568,10.827,17.86,4.804,5.58,16.758,14.893,10.246,12.777,0.427,11.507,21.575,-0.039,14.081,16.342,4.787,14.147,17.395,22.299,0.337,15.06,-1.038,24.73,6.66,7.19,13.966,1.232,4.431,15.048,-3.309,9.677,11.422,7.392,10.817,0.862,14.93,12.537,17.231,7.011,18.78,7.92,-4.369,11.118,19.666,7.742,2.321,14.468,20.937,5.248,7.435,23.911,5.758,17.058,3.079,-6.89,-5.126,18.964,16.957,23.696,-0.323,15.706,18.436,19.977,18.75,3.742,15.545,25.176,11.386,7.304,7.314,-0.375,13.505,17.928,19.591,7.991,6.566,5.8,17.889,6.77,10.318,5.943,8.369,9.439,19.369,12.091,23.839,7.544,4.341,-3.291,3.509,7.805,19.747,22.529,12.295,8.407,13.878],[25.224,23.286,8.824,12.771,10.774,13.125,4.286,2.608,6.66,21.317,28.601,25.752,8.937,1.281,15.334,20.656,9.912,17.2,13.716,12.535,5.897,-0.289,16.381,15.124,4.651,1.402,5.625,22.955,12.819,14.96,0.611,12.5,8.849,16.377,10.245,-3.147,6.69,5.255,19.542,-5.812,2.257,7.937,18.424,14.612,0.488,18.221,17.063,19.822,22.723,12.323,5.713,-1.733,7.067,24.481,21.032,7.547,7.27,12.962,7.86,5.113,19.605,6.937,17.799,10.395,22.268,22.633,6.719,13.638,6.542,2.359,8.949,3.949,26.965,11.147,5.019,29.981,22.536,1.974,26.963,25.016,14.298,16.134,10.372,11.786,7.264,9.08,13.511,24.505,4.669,21.928,9.369,25.685,-0.468,16.828,12.303,14.31,21.526,11.101,17.972,5.364,5.625,16.46,15.032,10.271,12.351,0.06,11.744,21.845,-0.129,14.27,16.46,5.06,14.144,17.282,22.267,0.027,15.076,-1.113,24.804,6.385,7.024,14.435,1.738,4.146,15.793,-3.478,9.11,11.592,7.165,10.435,0.36,15.326,12.869,17.532,6.836,18.836,8.075,-4.274,10.646,20.263,7.306,2.292,14.135,20.889,5.103,7.106,23.621,5.62,17.464,2.935,-6.124,-5.237,19.389,17.208,24.037,-0.137,15.391,18.083,20.191,18.384,3.716,15.341,25.155,11.658,6.947,7.208,-0.444,13.625,18.012,19.858,8.151,6.75,6.113,18.116,6.978,10.434,6.297,7.849,9.424,19.547,11.451,23.728,8.055,4.333,-3.199,3.759,7.735,20.042,22.429,12.157,8.463,13.264],[25.334,23.186,8.689,12.861,11.095,13.147,4.126,2.41,6.728,21.539,28.497,25.934,9.079,1.136,15.61,20.653,9.868,17.482,13.803,12.536,5.869,-0.324,16.447,15.224,4.868,1.352,5.33,23.041,12.857,15.095,0.47,12.547,8.624,16.394,10.335,-3.079,6.57,5.157,19.337,-5.407,2.107,7.845,18.658,14.763,0.446,18.313,17.071,19.789,22.927,12.012,5.577,-1.697,7.066,24.39,20.843,7.572,7.256,12.77,7.927,5.068,19.547,6.768,17.723,10.358,22.453,22.562,6.848,13.625,7.121,2.395,9.185,4.041,27.212,11.228,5.268,29.58,22.76,1.553,26.71,25.148,14.42,16.265,10.199,12.005,7.378,9.491,13.005,24.476,4.396,22.006,9.181,25.444,-0.555,17.18,12.552,14.845,21.52,11.266,17.93,5.157,5.458,16.705,15.531,10.433,12.143,0.433,11.645,21.945,0.621,14.625,16.009,4.701,14.149,17.311,22.2,-0.454,15.184,-1.26,24.867,6.257,6.75,14.542,2.219,3.932,16.097,-3.149,8.11,11.07,7.315,10.044,0.541,15.092,12.169,17.782,6.382,18.745,7.876,-3.962,11.085,20.385,7.273,2.248,14.249,20.937,5.262,7.584,23.48,5.497,17.802,2.843,-5.641,-5.5,19.202,17.469,24.203,-0.398,15.613,17.725,20.197,18.526,3.586,15.248,24.894,11.132,6.532,6.968,-0.169,13.455,18.172,20.227,8.14,6.453,6.269,18.058,6.628,10.483,6.478,7.742,9.147,18.689,11.763,23.904,7.932,3.951,-3.19,3.483,8.091,19.726,22.297,11.999,8.138,13.712],[25.43,23.173,8.642,13.013,11.366,13.053,4.133,2.366,6.774,21.781,28.382,26.008,9.347,1.0,15.965,20.637,9.79,17.642,13.801,12.459,5.773,-0.308,16.416,15.369,5.067,1.39,5.033,23.145,13.064,15.342,0.401,12.489,8.294,16.422,10.447,-3.121,6.442,4.996,19.08,-5.077,1.936,7.854,18.686,14.829,0.468,18.381,16.985,19.796,22.979,11.822,5.31,-1.559,7.091,24.397,20.782,7.486,7.146,12.685,7.964,4.796,19.361,6.581,17.586,10.381,22.554,22.755,7.515,13.746,6.665,2.281,9.207,3.945,27.213,11.218,4.786,29.455,22.469,1.743,26.652,24.946,14.558,16.401,10.081,12.419,7.26,9.793,13.095,24.767,4.449,22.058,9.953,25.426,-0.575,17.499,12.999,14.86,21.617,11.144,18.207,5.32,5.328,17.449,15.15,10.461,12.416,0.687,11.521,21.539,1.089,14.715,15.689,4.923,13.703,17.581,22.437,-0.022,15.39,-1.32,24.852,6.456,6.482,14.19,2.455,3.519,15.925,-2.839,7.944,11.113,7.498,10.187,0.651,15.44,11.99,17.669,5.755,18.683,7.786,-3.758,10.938,20.432,7.492,1.891,14.457,20.788,5.491,7.397,24.161,5.291,17.81,2.448,-5.784,-4.907,19.01,17.676,24.209,-0.72,16.403,18.008,20.14,18.978,3.417,15.307,24.458,10.633,6.531,7.127,-0.248,13.427,18.069,20.183,7.849,6.407,6.128,17.99,6.631,11.249,6.066,8.009,9.164,18.909,12.097,23.533,7.52,3.688,-3.174,3.249,8.118,19.731,21.893,11.984,8.189,13.674],[25.543,23.249,8.762,13.176,11.68,12.884,4.26,2.525,6.82,22.008,28.383,26.143,9.536,0.947,16.241,20.558,9.786,17.739,13.674,12.332,5.608,-0.122,16.5,15.518,5.161,1.451,4.794,23.12,13.239,15.472,0.424,12.499,7.989,16.38,10.582,-3.224,6.329,4.769,18.966,-4.85,1.725,7.996,18.656,14.992,0.335,18.342,16.851,19.855,23.072,11.725,5.189,-1.416,7.154,24.16,20.876,7.439,7.06,12.827,7.806,4.59,19.239,6.353,17.551,10.645,22.349,23.348,6.866,13.909,6.305,2.284,9.353,4.046,27.377,11.578,5.111,29.668,22.021,1.642,26.694,24.699,14.207,16.78,10.166,12.788,7.243,9.99,13.403,25.296,4.369,22.002,9.903,25.113,-0.631,17.777,12.612,14.526,21.449,10.918,18.082,5.025,5.558,17.319,14.979,10.072,12.865,0.348,11.443,21.641,0.783,14.811,16.79,5.617,13.358,17.698,22.127,0.025,15.427,-1.234,24.804,6.203,6.38,14.216,1.982,3.419,15.17,-2.713,8.15,10.766,6.757,10.213,0.41,16.144,12.252,17.87,5.717,18.444,7.734,-3.527,10.593,20.429,7.316,2.13,14.873,20.474,5.032,7.313,24.311,5.039,17.713,2.191,-6.172,-4.56,18.7,17.476,24.158,-0.75,16.333,18.031,20.237,19.388,3.282,15.179,24.665,10.494,6.152,7.442,-0.307,13.219,17.461,19.883,7.286,6.205,5.951,18.272,6.34,11.389,5.975,8.388,9.168,18.933,12.342,23.499,6.555,3.522,-2.974,3.298,7.655,19.505,22.032,11.986,8.367,13.314],[25.568,23.249,8.999,13.374,12.071,12.726,4.358,2.636,6.747,22.177,28.457,26.213,9.607,1.027,16.397,20.58,9.652,17.752,13.435,12.19,5.476,-0.01,16.585,15.585,5.201,1.38,4.711,22.973,13.388,15.575,0.371,12.423,7.658,16.401,10.541,-3.347,6.29,4.646,18.933,-4.844,1.578,8.174,18.645,15.204,0.106,18.459,16.844,19.881,23.196,11.685,4.983,-1.378,7.247,23.949,20.992,7.353,7.048,12.916,7.716,4.558,19.142,6.011,17.614,10.876,22.778,23.371,6.787,14.197,6.33,2.379,9.17,4.139,27.49,11.753,5.732,29.987,22.285,1.797,27.052,24.967,14.078,16.969,10.422,12.886,7.575,10.207,13.157,25.608,4.145,22.204,9.349,25.387,-0.78,17.9,12.148,14.687,21.476,11.068,18.071,5.266,5.102,16.881,15.09,10.143,12.265,0.527,11.658,21.949,0.242,14.907,16.975,5.149,13.739,17.657,22.286,-0.122,15.53,-1.436,24.719,5.894,6.367,14.122,1.602,3.738,15.283,-2.863,8.092,10.989,6.198,10.308,0.281,15.89,12.9,17.81,5.639,18.186,7.778,-3.013,11.231,20.269,7.45,1.937,14.604,20.427,4.898,7.571,23.806,4.886,17.434,1.902,-5.536,-4.561,18.767,17.194,24.25,-0.76,16.525,17.489,20.319,19.164,3.294,15.138,24.706,10.52,6.173,6.84,-0.016,13.566,17.419,20.134,6.964,5.945,5.705,17.75,6.574,11.006,5.905,8.187,9.232,18.945,12.079,23.563,6.03,3.258,-3.097,3.011,7.676,19.309,22.251,12.651,8.259,13.684],[25.49,23.29,9.248,13.526,12.399,12.636,4.307,2.634,6.647,22.229,28.622,26.187,9.474,1.256,16.441,20.773,9.502,17.645,13.277,12.099,5.383,0.025,16.541,15.58,5.201,1.2,4.766,22.892,13.452,15.774,0.205,12.352,7.359,16.452,10.482,-3.391,6.336,4.624,18.8,-4.856,1.48,8.348,18.557,15.319,-0.107,18.484,16.917,19.814,23.142,11.815,4.76,-1.407,7.23,23.928,21.037,7.44,7.045,13.043,7.763,4.526,19.166,5.705,17.583,11.036,22.561,23.132,7.237,14.468,6.218,2.245,8.928,4.225,27.202,11.955,5.558,30.18,23.103,2.003,27.283,25.577,14.26,17.027,10.515,13.052,7.908,10.648,12.7,25.35,4.894,22.644,9.804,25.803,-0.455,17.977,12.214,14.991,21.606,10.736,18.18,5.201,4.607,17.627,14.586,10.478,12.054,0.87,12.21,21.951,0.205,14.515,16.502,4.37,13.749,17.43,22.434,0.041,15.799,-1.516,24.676,6.023,6.431,14.64,1.705,3.718,15.901,-3.295,7.667,11.837,6.298,10.602,0.216,14.932,13.033,17.311,5.56,18.511,7.703,-2.649,11.28,20.203,7.603,1.43,14.162,20.4,5.114,7.736,24.16,5.02,17.633,1.496,-5.176,-4.715,19.223,17.474,24.319,-1.084,16.539,17.376,20.295,18.664,3.2,15.109,24.204,10.642,5.972,7.359,-0.191,13.861,17.388,20.743,6.685,6.078,5.219,17.597,6.42,10.66,5.896,7.877,9.146,19.108,11.408,23.116,6.109,3.185,-2.701,2.856,7.884,19.346,21.941,12.741,8.362,14.104],[25.477,23.295,9.505,13.636,12.608,12.592,4.379,2.614,6.643,22.204,28.709,26.154,9.29,1.423,16.517,21.017,9.521,17.575,13.081,12.008,5.358,0.103,16.541,15.47,5.072,1.11,4.862,22.933,13.573,16.009,0.057,12.298,7.12,16.414,10.56,-3.396,6.42,4.43,18.632,-4.814,1.287,8.57,18.522,15.251,-0.275,18.304,17.017,19.771,23.094,11.93,4.597,-1.455,7.236,23.831,21.02,7.564,7.215,13.339,7.782,4.653,19.243,5.358,17.442,11.12,23.039,22.883,7.054,14.393,5.926,2.745,9.06,3.929,27.322,12.33,4.972,30.298,23.78,1.542,27.537,25.183,14.058,16.98,10.533,13.832,8.153,10.914,12.678,25.086,4.676,22.621,10.157,25.592,-0.288,17.849,12.368,15.019,21.744,10.677,18.229,4.85,4.805,17.329,14.546,10.38,12.168,0.752,12.362,21.823,0.174,14.312,16.667,5.019,13.929,17.769,22.111,-0.226,15.733,-1.521,24.632,6.027,6.355,15.089,1.923,3.449,16.404,-3.96,7.425,11.51,6.282,10.603,-0.347,14.705,13.095,16.565,5.214,18.706,7.662,-2.494,10.83,20.318,7.54,1.657,14.643,20.104,5.474,7.631,24.178,4.997,18.318,1.029,-5.887,-5.168,18.971,17.437,24.207,-1.27,16.561,17.854,20.203,18.94,3.148,15.295,24.123,10.876,5.36,7.622,-0.026,13.754,17.799,20.311,6.693,6.044,4.883,18.202,6.407,11.086,5.96,8.551,9.117,18.687,11.562,23.177,6.274,3.216,-2.73,3.255,7.507,19.726,22.227,12.61,8.521,14.19],[25.487,23.449,9.671,13.783,12.674,12.583,4.442,2.496,6.516,22.095,28.741,26.131,9.149,1.342,16.606,21.183,9.715,17.624,13.078,12.07,5.405,0.004,16.59,15.205,5.159,1.153,4.898,23.008,13.677,16.107,-0.168,12.271,6.86,16.152,10.546,-3.429,6.523,4.123,18.472,-5.05,1.106,8.714,18.59,15.241,-0.387,18.317,17.169,19.767,23.119,11.922,4.43,-1.345,7.217,23.809,20.926,7.684,7.336,13.605,7.874,4.878,19.276,5.077,17.316,11.256,22.889,22.795,7.136,14.199,6.221,2.67,9.006,3.734,27.349,11.967,5.166,30.161,23.6,1.408,27.129,24.904,14.006,16.699,10.621,14.079,8.124,11.278,12.703,25.127,4.126,22.022,9.555,25.443,-0.07,17.872,11.981,15.198,21.832,10.742,18.194,5.19,5.348,16.692,14.345,10.261,12.414,0.895,12.421,22.151,0.176,14.464,17.142,5.076,13.615,18.358,22.316,-0.061,15.571,-1.881,24.84,6.196,6.344,15.285,2.126,3.522,16.475,-4.024,7.564,10.588,6.203,10.864,-0.648,14.597,12.711,17.292,5.319,18.18,7.95,-2.2,10.997,20.257,7.747,1.621,14.745,20.136,5.003,7.684,23.854,5.204,17.559,0.524,-5.883,-4.496,18.727,17.277,24.108,-0.974,16.864,17.994,20.194,19.118,2.91,15.516,24.538,10.842,5.403,7.382,-0.119,13.768,17.937,19.914,6.662,6.401,4.437,18.14,6.448,11.951,6.028,8.868,9.372,18.638,12.008,23.378,6.814,2.733,-3.033,3.468,7.731,20.17,22.136,12.669,8.818,14.359],[25.539,23.669,9.759,13.765,12.647,12.626,4.425,2.322,6.385,21.876,28.712,26.216,9.054,1.185,16.687,21.297,9.82,17.729,13.183,12.253,5.538,-0.174,16.557,15.021,5.376,1.215,4.922,23.117,13.728,16.078,-0.395,12.201,6.706,16.077,10.506,-3.405,6.686,3.897,18.426,-5.215,0.907,8.831,18.662,15.408,-0.519,18.402,17.332,19.74,23.096,11.735,4.324,-1.235,7.188,23.915,20.771,7.946,7.388,13.676,7.976,4.996,19.192,4.928,17.247,11.52,22.951,22.944,6.491,14.384,6.357,2.669,8.392,3.755,27.392,11.981,5.637,29.755,23.486,1.553,27.029,25.022,14.007,17.364,10.671,13.73,8.487,11.058,12.677,25.275,4.726,21.811,9.173,25.307,-0.446,18.34,11.922,14.943,22.005,10.844,18.249,5.04,5.224,17.563,14.271,10.735,12.576,0.687,12.662,22.55,0.147,14.085,17.37,4.611,13.814,18.118,22.627,0.294,15.844,-2.094,24.731,6.112,6.43,15.064,2.16,3.89,16.053,-3.641,7.464,10.605,5.761,10.337,-0.503,15.023,11.77,17.711,5.156,17.861,8.011,-2.069,11.357,20.25,7.795,1.241,14.123,20.083,4.543,7.987,24.141,5.314,17.183,0.575,-6.098,-4.492,18.841,17.407,24.319,-1.345,16.317,17.854,20.053,19.193,2.795,15.422,24.886,10.599,5.389,7.363,-0.318,14.138,17.469,19.682,6.338,6.666,4.027,17.459,6.82,12.239,6.115,8.406,9.506,18.638,11.825,23.132,7.369,2.727,-2.827,3.599,8.586,19.941,21.74,13.013,8.649,14.506],[25.724,23.904,9.772,13.705,12.463,12.7,4.441,2.238,6.242,21.637,28.684,26.326,8.939,1.025,17.008,21.394,9.858,17.934,13.191,12.464,5.65,-0.235,16.632,14.897,5.473,1.317,4.996,23.219,13.799,15.973,-0.406,11.986,6.672,16.357,10.506,-3.384,6.708,3.823,18.399,-5.372,0.772,8.966,18.71,15.427,-0.747,18.367,17.38,19.746,23.227,11.417,4.196,-1.216,7.197,24.017,20.559,8.237,7.594,13.611,7.881,5.09,19.014,4.857,17.071,11.786,23.325,22.52,6.994,14.264,5.845,2.046,9.131,3.581,27.535,12.201,5.799,29.865,24.104,1.157,26.946,25.227,13.99,17.532,11.058,13.381,8.836,10.74,12.688,25.655,4.98,22.146,9.698,25.488,-0.804,18.407,12.199,14.468,22.014,11.126,18.269,5.252,5.365,17.619,14.628,10.633,12.8,0.255,12.418,22.545,0.027,14.182,17.351,4.987,13.768,17.539,22.403,-0.174,15.662,-2.116,24.903,5.842,6.635,14.905,1.624,4.007,15.611,-3.137,7.099,10.761,5.422,9.953,-0.59,15.415,11.261,17.385,5.002,18.0,7.998,-2.016,11.139,20.376,7.908,0.941,14.539,20.157,4.398,8.012,24.323,5.274,17.313,0.731,-6.451,-5.05,18.607,17.41,24.215,-2.044,16.371,17.861,20.222,19.149,2.543,15.7,24.223,9.962,5.146,7.058,-0.385,14.003,17.347,19.794,6.377,6.409,3.909,17.33,6.992,12.112,6.021,8.35,9.937,18.466,11.487,23.625,7.708,2.896,-2.723,3.489,8.821,19.394,21.834,13.348,8.245,15.01],[25.785,24.176,9.849,13.804,12.213,12.714,4.438,2.123,6.14,21.532,28.645,26.394,9.046,0.838,17.326,21.421,10.0,18.06,13.305,12.651,5.704,-0.241,16.726,14.745,5.665,1.408,5.16,23.293,13.837,15.993,-0.302,11.665,6.608,16.513,10.466,-3.419,6.555,3.881,18.43,-5.546,0.64,8.89,18.728,15.336,-1.002,18.338,17.345,19.705,23.414,11.057,4.122,-1.294,7.156,24.093,20.366,8.53,7.719,13.542,7.84,5.134,18.83,4.865,16.723,11.828,23.313,22.0,7.366,13.902,5.637,2.041,8.558,3.574,27.647,11.831,5.892,30.121,24.395,1.238,27.214,25.492,14.41,17.612,11.092,12.889,8.301,10.361,12.732,26.116,4.581,21.891,9.697,25.741,-0.89,18.837,12.183,14.298,22.302,10.935,18.239,5.305,5.448,17.271,14.521,10.466,13.004,0.689,12.243,22.391,0.036,14.714,16.892,5.36,13.401,17.735,22.541,-0.756,15.752,-1.81,25.102,6.088,6.718,14.837,1.409,3.913,15.539,-2.812,7.273,10.763,5.732,10.449,-1.093,16.011,11.624,17.98,4.883,18.089,8.038,-2.142,10.557,20.348,8.201,0.765,14.759,20.056,4.254,8.064,24.415,5.316,17.912,0.548,-6.201,-5.102,18.353,17.579,24.208,-1.986,16.312,18.219,20.1,18.752,2.394,15.808,24.182,9.554,5.209,7.467,-0.259,14.112,17.863,19.759,6.089,6.427,4.456,17.456,7.221,12.06,6.035,8.532,10.121,18.271,10.975,23.612,7.394,2.757,-2.638,3.571,8.767,19.402,21.844,13.278,8.87,14.801],[25.805,24.307,9.841,13.801,11.881,12.66,4.415,2.081,6.197,21.496,28.642,26.403,9.096,0.887,17.532,21.478,10.179,18.1,13.473,12.734,5.698,-0.128,16.661,14.632,5.935,1.418,5.301,23.39,13.894,15.989,-0.277,11.458,6.634,16.518,10.383,-3.365,6.387,3.919,18.455,-5.609,0.543,8.86,18.72,15.185,-1.174,18.255,17.319,19.484,23.491,10.59,4.189,-1.351,7.119,24.025,20.274,8.731,7.949,13.526,7.906,5.245,18.963,4.938,16.429,11.735,23.6,22.385,6.822,14.248,5.467,1.895,8.216,3.725,27.59,11.976,5.699,30.192,24.293,1.245,27.327,25.317,14.289,17.855,10.583,12.55,8.411,10.203,12.763,26.536,4.497,21.307,9.512,25.571,-0.916,19.123,12.242,14.26,22.333,11.081,18.6,5.03,5.295,17.587,14.289,11.066,13.596,1.01,12.338,22.871,0.062,14.755,16.628,5.608,13.478,17.633,22.803,-0.645,15.992,-1.715,24.982,6.566,6.823,14.711,1.827,3.888,16.132,-3.196,7.627,10.666,6.008,11.031,-1.041,16.684,11.533,18.075,4.864,18.487,7.692,-1.695,10.499,20.547,7.752,0.659,14.581,20.282,4.619,7.855,24.547,5.296,17.982,0.159,-6.585,-5.138,18.296,17.722,24.329,-2.027,15.736,18.258,20.138,18.573,2.238,15.747,25.134,9.739,5.269,7.453,-0.091,14.589,17.526,19.458,5.721,6.809,4.815,17.137,7.632,11.605,6.039,8.619,10.469,17.542,10.739,23.718,6.446,2.555,-3.032,3.754,8.324,19.701,21.374,12.966,9.479,14.252],[25.917,24.408,9.728,13.925,11.528,12.563,4.457,2.233,6.173,21.537,28.629,26.39,9.084,0.824,17.611,21.636,10.326,18.106,13.577,12.776,5.659,0.083,16.659,14.591,6.189,1.439,5.417,23.436,13.923,16.015,-0.368,11.316,6.794,16.411,10.333,-3.155,6.275,3.953,18.56,-5.897,0.498,8.739,18.761,14.921,-1.226,18.214,17.312,19.283,23.39,10.248,4.254,-1.381,6.94,24.008,20.254,8.895,8.1,13.534,7.941,5.416,19.328,4.963,16.213,11.599,23.689,22.599,7.335,14.149,5.619,1.502,9.014,3.794,27.753,12.212,5.994,30.133,24.373,1.323,27.306,25.179,14.221,17.738,10.708,11.991,8.925,10.16,12.879,26.511,4.976,21.344,9.66,25.058,-0.901,19.056,12.368,14.143,22.168,11.399,18.413,5.423,6.051,17.124,14.321,11.054,13.311,1.155,12.915,23.006,0.034,14.481,17.165,5.485,13.957,17.767,22.994,-0.344,15.628,-1.972,25.18,6.47,6.914,15.132,2.297,4.037,15.482,-3.775,7.885,10.717,6.015,10.853,-0.591,17.193,10.925,17.638,4.631,18.534,7.555,-1.342,10.507,20.496,7.501,0.566,14.588,20.336,4.693,7.897,24.561,5.134,17.245,-0.168,-6.372,-5.315,17.983,17.757,24.408,-2.095,15.952,17.913,19.972,18.899,2.401,15.456,25.032,9.794,5.458,7.168,-0.573,14.388,17.705,19.15,5.866,6.814,4.652,16.657,7.962,11.31,6.138,8.672,10.32,17.459,9.902,23.753,5.896,2.599,-3.111,3.977,8.437,19.686,21.003,13.294,9.776,14.287],[26.08,24.561,9.792,14.042,11.224,12.542,4.745,2.371,6.181,21.549,28.645,26.362,9.193,0.499,17.484,21.705,10.262,17.965,13.572,12.841,5.764,0.321,16.544,14.587,6.381,1.633,5.674,23.489,14.037,16.016,-0.412,11.168,7.052,16.449,10.315,-3.001,6.192,3.894,18.67,-6.265,0.572,8.55,18.866,14.789,-1.102,18.176,17.207,19.159,23.245,10.059,4.268,-1.448,6.692,24.009,20.154,8.978,8.244,13.588,8.049,5.661,19.645,4.895,16.1,11.524,23.542,22.543,7.52,14.145,5.941,1.782,8.936,3.935,27.95,12.106,6.104,30.056,24.505,1.268,27.096,25.533,14.434,17.768,11.171,11.791,8.388,10.093,12.769,26.158,5.088,21.694,9.731,25.109,-1.235,19.09,12.421,14.115,22.572,11.325,18.302,5.884,5.742,17.644,14.546,10.644,12.51,0.786,13.37,22.843,0.027,14.039,17.125,5.598,13.931,18.431,22.833,0.001,15.827,-2.097,25.217,6.039,7.116,15.129,2.339,4.171,14.835,-3.913,7.441,10.907,6.019,10.29,-0.842,16.836,10.415,17.787,4.712,18.441,7.569,-1.291,10.029,20.463,7.936,0.733,14.165,20.419,4.291,8.017,24.127,5.029,16.972,0.046,-6.741,-5.656,17.68,17.627,24.286,-1.962,15.368,17.563,19.881,18.745,2.294,15.403,24.386,9.084,5.116,7.34,-0.772,13.991,17.898,19.059,6.213,6.727,4.222,16.771,7.681,11.445,6.221,8.669,10.602,17.753,8.771,23.625,5.904,3.306,-3.274,4.183,8.858,20.226,21.459,13.229,9.028,14.937],[26.193,24.659,9.94,14.001,11.088,12.467,4.991,2.242,6.23,21.509,28.701,26.378,9.286,0.178,17.285,21.737,10.007,17.868,13.475,12.851,5.822,0.482,16.572,14.584,6.532,1.883,5.888,23.568,14.172,15.807,-0.428,11.054,7.166,16.507,10.141,-2.871,6.153,3.733,18.69,-6.658,0.745,8.563,18.862,14.596,-0.849,18.146,17.102,19.015,23.231,9.689,4.19,-1.529,6.445,23.987,20.068,8.986,8.309,13.766,8.057,5.981,19.848,4.826,16.238,11.439,23.445,22.001,7.626,14.352,5.793,1.594,8.414,3.815,27.99,12.377,6.487,29.814,24.732,1.328,27.027,25.963,14.126,18.047,10.954,11.958,8.544,10.247,12.593,26.044,5.289,21.697,9.796,25.185,-1.46,18.772,12.271,14.372,22.153,11.077,18.361,5.323,5.77,17.432,14.707,10.804,12.54,0.572,13.208,23.009,0.471,13.281,16.934,5.811,13.633,18.434,22.807,0.377,15.96,-1.736,25.189,6.239,7.562,15.273,2.531,4.615,15.002,-3.402,7.872,10.707,6.342,9.781,-1.415,16.513,10.473,18.214,4.865,18.83,7.544,-1.797,10.306,20.739,7.531,0.912,14.242,20.592,4.761,7.386,24.555,4.892,17.313,0.712,-7.289,-5.823,17.684,17.83,23.998,-2.102,15.354,17.493,19.783,18.457,2.372,15.231,24.651,8.789,5.25,7.738,-0.817,14.269,18.188,19.115,5.771,7.027,4.301,17.107,7.537,11.614,6.476,9.172,10.431,17.529,8.507,23.671,6.025,3.098,-3.385,4.291,9.43,20.708,21.617,12.906,9.235,15.024],[26.404,24.666,10.172,13.957,11.25,12.231,5.262,2.06,6.063,21.411,28.699,26.496,9.269,-0.037,17.191,21.649,10.001,17.696,13.417,12.766,5.862,0.442,16.646,14.516,6.602,2.225,6.003,23.662,14.318,15.512,-0.373,10.951,7.179,16.494,9.912,-2.628,6.107,3.89,18.715,-7.007,0.903,8.502,18.903,14.437,-0.855,18.185,17.009,18.966,23.346,9.322,4.0,-1.547,6.339,23.955,19.967,8.945,8.45,13.886,7.987,6.246,19.978,4.74,16.523,11.419,23.733,22.205,7.449,14.165,5.593,0.746,8.448,3.588,28.273,12.563,6.006,29.935,25.001,1.18,27.058,25.739,13.833,17.499,11.02,12.177,8.864,10.656,12.723,26.079,6.047,22.013,9.688,24.942,-1.82,18.593,12.197,14.696,22.154,11.101,18.397,5.443,6.35,16.99,14.325,10.584,13.29,1.455,12.643,22.996,0.879,13.035,16.43,5.6,14.114,17.487,23.179,0.9,15.933,-1.474,25.561,6.492,7.422,15.322,2.621,4.743,15.199,-3.289,8.216,10.461,6.586,8.778,-1.339,16.869,11.308,17.925,4.741,18.734,7.792,-2.028,9.825,20.598,7.628,1.004,14.117,20.335,4.409,7.71,24.904,4.697,17.615,1.146,-7.64,-5.95,17.584,17.742,24.092,-1.748,15.498,17.703,20.069,18.207,2.674,15.192,24.856,8.912,5.216,7.093,-1.188,14.836,18.533,19.167,5.532,7.569,4.326,17.027,8.007,11.005,6.439,9.137,10.326,17.61,8.457,23.863,6.169,2.476,-3.248,4.661,9.473,20.396,21.574,12.955,9.609,14.929],[26.709,24.716,10.329,13.954,11.515,12.021,5.507,1.959,5.834,21.522,28.657,26.601,9.176,-0.201,17.187,21.48,10.28,17.366,13.451,12.816,6.029,0.448,16.615,14.379,6.645,2.481,5.885,23.861,14.36,15.27,-0.238,11.029,7.27,16.568,9.567,-2.455,5.951,4.087,18.706,-7.139,1.02,8.557,18.907,14.429,-0.881,18.326,16.869,18.974,23.48,9.095,3.82,-1.574,6.294,23.904,19.943,8.961,8.457,13.913,7.948,6.496,19.926,4.628,16.693,11.455,24.097,22.755,7.02,14.061,5.179,0.394,8.381,3.424,28.448,12.64,5.91,30.056,24.822,1.076,27.148,25.644,13.749,16.83,11.625,12.32,9.078,11.257,12.509,25.953,6.264,21.356,9.899,25.207,-2.117,18.899,11.956,15.033,22.487,10.941,18.363,5.684,6.017,17.095,14.274,10.848,13.382,1.888,12.856,22.622,0.866,13.186,16.05,5.53,13.952,16.895,23.226,0.795,16.15,-1.749,25.538,6.381,7.436,15.196,3.205,4.779,15.095,-3.241,7.344,10.143,6.542,8.351,-0.839,17.103,11.843,17.151,4.845,18.647,7.623,-1.838,9.173,20.499,7.814,0.917,13.545,20.43,4.867,7.778,24.542,4.885,17.762,0.649,-7.796,-6.024,17.715,17.639,24.271,-1.807,14.882,17.832,20.087,18.392,2.894,15.27,24.678,8.665,4.981,6.807,-0.751,14.466,18.224,18.794,5.584,7.765,4.032,17.02,7.933,10.75,6.222,8.536,10.663,18.092,8.097,23.679,6.377,2.141,-3.026,5.193,9.267,20.551,21.128,13.024,9.668,14.985],[26.971,24.697,10.355,14.019,11.684,11.94,5.591,2.019,5.573,21.721,28.664,26.611,9.019,-0.174,17.199,21.36,10.52,17.005,13.47,12.825,6.097,0.464,16.572,14.291,6.676,2.61,5.724,24.04,14.378,15.18,-0.232,11.249,7.196,16.63,9.239,-2.407,5.684,4.223,18.816,-7.159,1.087,8.606,18.76,14.39,-0.871,18.486,16.61,19.027,23.575,8.898,3.733,-1.502,6.255,23.782,19.901,8.987,8.326,13.903,7.86,6.755,19.735,4.515,16.734,11.457,24.314,22.54,7.021,13.919,4.919,0.721,8.672,3.338,28.709,12.127,6.445,30.324,25.271,1.104,27.386,25.953,13.323,16.957,11.31,12.407,9.229,11.801,12.359,25.889,6.012,21.273,9.889,25.729,-2.105,18.952,11.909,14.93,22.395,11.383,18.397,5.285,5.964,16.612,14.669,11.39,13.083,1.624,13.005,22.697,1.022,12.925,16.549,5.827,14.035,17.154,23.174,0.809,15.954,-1.918,25.685,6.352,7.587,15.081,3.296,4.441,14.795,-3.028,8.142,11.117,6.601,8.597,-0.335,16.967,11.526,17.755,4.51,18.811,7.257,-1.589,9.112,20.571,8.191,0.872,13.326,20.514,5.073,7.742,24.816,4.81,17.896,0.598,-7.375,-6.451,17.751,17.846,24.03,-1.813,15.198,17.723,20.225,18.283,2.639,15.47,24.692,8.768,4.762,7.258,-0.484,13.832,17.939,18.565,5.365,7.909,3.938,17.433,8.017,11.027,6.138,8.461,10.644,18.104,8.082,23.785,6.144,2.291,-2.962,5.37,8.787,20.262,20.693,12.692,9.391,14.993],[26.92,24.68,10.186,13.878,11.782,11.991,5.62,2.207,5.36,21.854,28.828,26.563,8.949,0.096,17.21,21.323,10.656,16.672,13.534,12.828,6.045,0.483,16.531,14.259,6.607,2.578,5.663,24.137,14.416,15.336,-0.222,11.472,7.146,16.788,9.25,-2.551,5.388,4.334,19.018,-7.198,1.153,8.864,18.681,14.374,-0.842,18.659,16.456,19.132,23.523,8.839,3.642,-1.341,6.376,23.777,19.781,8.933,8.161,13.972,7.739,6.932,19.445,4.439,16.759,11.384,24.194,22.216,6.865,14.103,5.062,0.892,9.039,3.382,28.813,12.23,5.967,30.314,25.39,1.073,27.536,26.278,13.426,17.313,10.842,12.52,8.92,11.748,12.671,26.486,6.296,22.115,9.808,25.25,-1.74,18.538,11.961,14.132,21.793,11.505,18.233,5.341,6.101,16.59,14.757,10.99,13.165,1.719,12.906,22.605,1.103,12.912,16.323,5.627,13.812,16.599,23.294,0.565,15.772,-1.843,25.955,6.351,7.158,14.911,3.174,4.752,15.046,-3.158,8.069,11.405,6.441,8.087,-0.436,16.787,11.438,18.519,4.444,18.793,6.943,-1.384,9.324,20.403,8.109,0.691,13.421,20.84,4.564,7.617,25.171,4.21,17.746,0.896,-6.577,-6.715,17.719,17.624,24.186,-1.617,15.129,17.339,20.435,18.168,2.84,15.299,24.417,8.618,4.99,7.445,-0.492,14.364,17.602,18.356,5.566,7.618,3.878,17.483,8.22,11.563,6.206,9.035,10.566,17.781,8.134,24.13,5.44,2.539,-2.852,5.316,8.98,20.287,20.798,13.044,9.233,14.462],[26.684,24.64,9.925,13.796,11.887,12.173,5.618,2.355,5.202,21.981,28.972,26.531,9.039,0.38,17.107,21.165,10.568,16.35,13.649,12.779,6.033,0.532,16.427,14.269,6.519,2.453,5.608,24.282,14.272,15.671,-0.2,11.492,7.132,17.099,9.219,-2.778,5.22,4.197,19.168,-7.152,1.231,8.984,18.571,14.398,-0.792,18.778,16.381,19.261,23.405,8.902,3.615,-1.095,6.51,23.931,19.709,8.963,8.247,13.952,7.744,6.922,19.303,4.453,16.764,11.373,24.093,22.88,6.802,14.041,5.174,1.126,8.516,3.439,28.531,12.024,5.783,30.454,24.684,1.333,27.645,25.708,13.48,17.512,11.083,12.357,8.585,11.536,12.904,26.697,6.481,22.344,9.889,24.973,-1.408,18.504,11.972,13.441,22.018,11.262,18.089,5.451,6.122,16.494,14.501,10.88,13.616,1.562,12.809,22.294,1.162,13.323,16.713,5.625,13.853,16.529,23.369,0.933,16.009,-1.817,25.938,5.831,7.391,14.926,3.103,4.895,15.026,-3.592,7.65,10.636,6.478,8.494,-0.824,16.848,11.931,18.398,4.851,19.114,6.625,-1.499,9.283,20.218,7.989,0.842,13.525,20.835,4.723,8.397,24.568,3.647,17.89,0.971,-7.461,-6.204,18.082,17.544,23.887,-1.997,15.151,17.49,20.616,18.435,3.084,15.225,24.987,8.165,4.831,7.423,-0.175,15.001,17.506,18.753,5.958,7.584,3.71,17.602,8.02,11.451,6.163,8.999,10.11,17.745,7.832,23.498,5.434,2.05,-2.818,5.171,9.17,19.773,20.855,12.943,9.485,14.278],[26.426,24.557,10.02,13.874,11.965,12.359,5.667,2.468,5.133,22.169,29.048,26.494,9.073,0.448,17.031,20.923,10.424,16.17,13.735,12.779,6.046,0.659,16.387,14.24,6.393,2.293,5.646,24.304,13.905,15.989,-0.236,11.386,7.039,17.26,9.105,-3.065,5.14,4.086,19.225,-7.062,1.348,8.961,18.473,14.496,-0.81,18.857,16.486,19.418,23.089,8.893,3.394,-0.81,6.519,23.983,19.856,8.981,8.358,13.811,7.815,6.715,19.326,4.5,16.788,11.465,23.603,23.281,6.766,13.745,5.136,1.703,8.407,3.543,28.076,12.345,6.448,30.36,24.493,1.115,27.596,25.318,13.823,17.161,10.919,12.471,8.437,11.401,12.725,26.953,6.098,22.144,9.958,25.522,-1.341,18.615,12.179,13.703,22.037,11.425,17.821,5.014,5.839,15.936,14.382,11.088,13.34,1.453,12.528,22.176,1.039,13.442,17.387,5.604,14.163,16.434,23.605,1.343,15.94,-1.618,26.081,5.817,7.517,14.711,2.886,4.546,15.562,-3.364,8.509,9.905,6.808,8.45,-0.92,17.92,12.431,18.331,4.526,19.194,6.393,-1.902,9.088,20.023,8.201,0.844,13.615,21.11,4.613,8.154,24.514,3.649,18.506,0.878,-7.772,-6.593,18.312,17.557,23.98,-1.95,15.013,17.535,20.747,18.349,2.989,15.483,25.179,8.495,4.945,7.515,0.099,14.607,17.678,18.379,5.836,7.737,4.09,17.546,7.867,11.212,6.147,8.546,10.38,17.861,7.774,24.044,6.077,2.151,-2.605,5.01,9.134,19.358,20.949,13.158,9.512,14.681],[26.182,24.33,10.152,14.042,12.067,12.477,5.82,2.497,5.27,22.44,28.979,26.583,9.073,0.547,17.079,20.71,10.468,16.095,13.728,12.815,5.908,0.775,16.309,14.197,6.186,2.085,5.559,24.268,13.623,16.183,-0.277,11.278,7.236,17.286,8.96,-3.248,5.032,4.093,19.342,-7.217,1.398,9.053,18.319,14.65,-0.928,19.196,16.728,19.497,22.877,8.792,3.207,-0.545,6.563,24.008,20.052,8.977,8.271,13.627,7.807,6.373,19.357,4.495,16.83,11.657,23.71,22.711,6.545,13.962,5.074,1.613,8.731,3.282,28.099,12.232,6.722,30.371,25.007,1.031,27.608,25.451,14.121,16.459,11.239,12.772,8.701,11.099,13.051,27.108,6.0,22.142,9.945,25.727,-1.079,18.512,11.967,14.176,21.621,11.266,18.228,4.668,5.733,15.937,14.807,10.976,12.474,2.055,12.192,22.091,0.725,12.822,17.475,5.41,14.175,15.975,24.062,1.252,15.83,-1.831,26.088,6.416,7.189,14.12,2.757,4.745,15.433,-3.15,8.71,9.81,6.652,8.363,-0.642,18.298,12.625,18.288,4.355,18.66,6.589,-1.927,8.682,20.0,8.277,0.841,14.095,21.054,4.484,7.544,24.096,3.686,18.686,0.955,-6.857,-6.818,18.285,17.278,23.689,-1.952,14.939,17.612,21.025,18.343,3.2,16.096,24.546,8.884,4.546,7.637,0.19,14.364,17.71,18.716,5.63,7.43,4.177,17.33,8.053,11.42,6.766,8.354,10.57,18.269,8.112,24.242,6.087,2.217,-2.356,4.641,9.146,19.887,21.138,13.508,9.573,15.033],[26.159,24.19,10.055,14.116,12.146,12.625,5.989,2.307,5.488,22.584,28.827,26.832,9.064,0.818,17.091,20.612,10.485,15.977,13.617,12.909,5.795,0.804,16.369,14.101,6.172,1.924,5.369,24.315,13.518,16.122,-0.22,11.197,7.515,17.161,8.768,-3.244,4.943,4.052,19.362,-7.309,1.295,9.23,18.082,14.854,-1.054,19.588,16.992,19.433,22.77,8.739,3.093,-0.328,6.616,23.943,20.226,8.823,8.164,13.69,7.73,5.967,19.362,4.511,16.894,11.839,23.934,22.949,6.884,14.6,5.062,1.195,9.185,3.256,27.899,12.311,6.644,30.292,24.534,1.302,27.603,25.397,13.892,16.296,11.455,12.95,8.739,11.092,13.212,26.954,6.189,22.34,9.844,25.679,-0.986,18.474,12.151,14.168,21.239,11.346,18.062,5.221,5.609,16.081,15.048,11.068,11.705,1.774,12.332,21.88,0.618,12.542,17.6,5.241,13.795,16.578,23.607,1.545,15.523,-1.992,25.914,5.691,7.235,14.102,2.719,4.87,15.245,-3.674,8.3,10.062,7.12,8.021,-0.412,17.941,12.928,18.254,4.355,18.719,6.622,-1.395,8.869,19.835,8.215,0.571,14.446,21.236,4.508,8.113,23.522,4.056,18.78,1.02,-6.386,-6.905,18.339,17.192,23.52,-1.255,15.426,18.09,21.483,18.329,3.086,16.552,25.054,8.718,4.447,7.206,0.439,14.059,17.677,18.726,5.496,7.017,3.194,17.81,8.065,12.162,6.853,9.099,10.584,18.192,7.956,23.725,6.183,1.835,-2.095,4.376,8.839,20.027,21.253,13.413,9.652,14.301],[25.998,24.135,10.085,14.194,12.189,12.735,6.166,2.13,5.68,22.666,28.611,27.092,8.999,1.05,17.017,20.543,10.352,15.957,13.639,12.886,5.733,0.79,16.391,14.042,6.372,1.788,5.384,24.259,13.429,16.139,-0.078,11.13,7.656,17.05,8.613,-3.151,4.978,3.886,19.352,-7.197,1.034,9.386,17.928,15.141,-1.028,19.772,17.32,19.288,22.587,8.779,2.883,-0.197,6.527,23.879,20.338,8.709,8.069,13.789,7.744,5.64,19.31,4.449,17.109,11.926,23.625,23.628,7.317,14.643,5.119,1.699,9.336,3.675,27.934,12.379,6.666,30.193,24.013,0.881,27.639,25.685,14.112,16.767,10.599,12.852,8.666,11.524,12.944,27.294,5.992,22.287,9.899,25.964,-0.793,18.147,12.06,13.976,21.81,11.626,18.226,5.125,5.472,15.755,14.817,11.058,12.036,1.505,12.462,21.684,0.802,12.511,17.506,5.385,14.068,16.542,23.862,1.875,15.589,-1.75,26.154,5.357,7.381,14.289,2.952,4.546,15.33,-3.862,8.362,11.046,7.302,7.61,-0.461,17.193,13.02,18.502,3.974,19.06,6.706,-1.59,8.853,19.389,8.03,0.771,14.185,21.189,4.471,8.839,23.918,3.897,18.98,1.047,-7.478,-7.006,18.345,17.136,23.595,-1.769,15.722,18.126,21.474,18.066,2.734,16.645,24.962,8.448,4.515,7.475,0.59,14.663,17.747,19.04,5.421,6.842,3.089,18.433,7.839,11.931,6.544,8.438,10.165,17.844,7.762,24.076,6.178,1.902,-2.042,3.994,8.993,19.627,21.515,13.675,9.613,13.398],[25.881,23.958,10.069,14.223,12.07,12.889,6.227,1.992,5.801,22.726,28.398,27.409,8.906,1.266,16.912,20.597,10.088,15.899,13.584,12.863,5.701,0.733,16.495,13.994,6.485,1.777,5.506,24.339,13.276,16.348,-0.045,11.208,7.656,16.835,8.532,-3.087,5.077,3.656,19.386,-7.09,0.832,9.448,17.804,15.323,-0.974,19.714,17.607,19.204,22.46,8.919,2.692,-0.207,6.358,24.112,20.255,8.784,8.147,13.793,7.701,5.445,19.34,4.452,17.389,11.919,23.34,23.251,7.235,14.333,4.956,2.075,9.097,3.547,27.69,12.526,6.934,29.818,24.242,1.246,27.406,25.412,14.45,17.397,10.913,13.03,8.869,11.841,13.185,28.039,5.882,22.168,9.807,26.035,-0.426,18.085,11.874,13.792,21.809,11.279,17.885,4.882,5.64,15.884,14.475,10.844,13.053,1.42,12.396,21.549,0.573,12.589,17.632,5.68,14.203,16.155,23.869,1.992,15.927,-1.336,26.064,6.158,7.584,14.297,2.651,4.795,15.439,-3.744,9.03,11.509,6.646,7.948,-0.855,17.254,12.922,18.298,4.557,18.853,6.405,-1.928,8.272,19.558,7.957,0.768,14.933,21.08,4.156,8.738,23.949,3.52,18.678,0.603,-8.067,-6.516,18.13,16.992,23.489,-2.011,15.962,18.399,21.511,17.94,2.681,16.558,24.568,8.715,4.259,7.498,0.369,15.041,17.916,19.37,5.507,6.434,3.347,18.333,7.536,11.488,6.274,8.11,10.293,18.455,7.866,23.627,6.017,2.122,-1.817,3.706,9.088,19.339,21.669,13.664,9.342,13.765],[25.759,23.764,10.06,14.248,11.942,13.041,6.111,1.846,5.814,22.549,28.152,27.746,8.758,1.471,16.909,20.631,9.987,15.771,13.463,12.99,5.84,0.656,16.626,13.976,6.469,1.743,5.449,24.264,13.166,16.508,-0.086,11.348,7.54,16.587,8.487,-3.059,5.277,3.677,19.449,-7.037,0.792,9.392,17.937,15.52,-1.02,19.49,17.776,19.15,22.441,9.135,2.71,-0.318,6.258,24.288,20.179,8.859,8.21,13.747,7.518,5.349,19.484,4.495,17.621,11.815,23.095,22.943,7.447,14.155,5.316,1.999,8.815,3.405,27.621,12.634,7.118,29.435,24.004,1.462,26.787,25.069,14.479,17.588,11.39,12.817,9.051,11.643,13.756,28.284,5.969,22.402,9.512,26.305,-0.317,18.243,11.888,13.608,21.539,11.01,18.247,5.172,5.495,16.281,14.429,10.664,13.24,1.153,11.983,21.708,0.593,12.419,17.928,5.7,14.45,16.629,24.245,2.105,16.239,-1.692,26.097,6.179,7.491,14.035,2.275,4.896,15.561,-3.28,9.279,11.413,7.087,7.775,-0.811,17.536,12.965,18.13,3.994,18.758,5.757,-2.611,8.827,19.724,8.355,0.582,15.085,21.368,4.275,8.296,23.363,3.53,18.169,0.29,-7.644,-6.654,18.195,17.053,23.187,-2.072,16.005,18.703,21.184,18.099,2.39,16.51,25.433,8.91,4.478,7.186,0.211,15.131,17.99,18.683,5.785,6.261,3.882,18.209,7.543,11.878,6.596,8.373,10.464,18.967,8.07,24.086,6.012,1.62,-1.778,3.596,8.797,19.847,21.577,13.538,9.568,14.483],[25.575,23.63,10.113,14.284,11.814,13.231,5.962,1.78,5.894,22.166,27.853,28.026,8.484,1.522,17.032,20.598,9.997,15.822,13.391,13.2,5.877,0.651,16.88,13.921,6.415,1.609,5.25,24.246,13.118,16.416,-0.114,11.401,7.564,16.554,8.625,-3.074,5.196,3.729,19.529,-7.076,0.733,9.387,18.23,15.706,-1.066,19.144,17.909,19.186,22.4,9.462,2.992,-0.432,6.348,24.424,20.109,8.871,8.126,13.826,7.303,5.366,19.549,4.581,17.835,11.816,22.601,22.92,7.47,14.319,5.395,2.074,8.893,3.423,27.427,12.676,7.329,29.151,24.005,0.79,26.377,25.481,14.147,17.394,11.111,12.491,9.056,11.32,13.673,28.292,5.716,21.926,9.33,26.537,-0.299,18.288,11.623,13.847,21.546,11.312,18.525,5.333,5.644,16.051,14.524,10.71,12.786,1.092,12.184,21.844,0.54,12.235,17.918,5.28,14.18,16.691,23.967,2.202,16.236,-1.774,25.93,6.377,7.139,13.781,2.594,4.57,15.918,-3.098,8.706,11.644,7.587,7.66,-0.329,17.78,13.127,17.462,4.33,19.136,6.619,-3.233,8.979,19.678,9.191,0.54,14.62,21.323,4.416,7.813,23.47,3.999,18.068,0.604,-7.216,-6.296,18.421,17.375,23.225,-2.374,15.606,18.367,20.789,17.906,2.658,16.517,24.949,8.79,4.457,7.269,-0.095,14.747,18.307,18.624,5.577,6.22,3.865,18.396,7.704,12.086,6.707,8.481,10.475,18.48,8.233,24.679,5.6,1.74,-1.589,3.526,8.648,20.241,21.481,13.37,9.802,14.855],[25.48,23.556,10.127,14.345,11.606,13.408,6.013,1.616,5.927,21.737,27.608,28.184,8.145,1.482,17.175,20.539,9.977,15.953,13.284,13.314,5.841,0.653,17.067,13.846,6.286,1.543,5.168,24.232,13.147,16.213,0.073,11.465,7.683,16.679,8.886,-3.103,5.285,3.721,19.45,-7.056,0.783,9.543,18.479,15.718,-1.126,18.954,17.965,19.31,22.471,9.653,3.334,-0.517,6.454,24.475,19.956,8.923,8.075,13.947,7.184,5.427,19.548,4.555,17.874,11.92,21.946,22.987,7.341,14.621,4.906,2.08,8.856,3.104,27.17,12.513,7.493,28.795,24.325,0.588,26.035,25.573,14.293,16.519,11.092,12.516,8.825,11.477,13.08,28.525,5.752,21.29,9.09,26.926,-0.36,18.598,11.647,14.099,21.784,11.351,18.699,5.07,5.455,16.169,14.424,10.706,12.471,1.056,12.47,21.628,0.139,12.283,17.512,5.201,13.443,16.371,23.824,2.144,16.402,-1.302,25.861,6.289,6.934,13.91,2.607,4.386,15.881,-3.509,8.044,11.757,6.973,7.94,-0.393,17.573,13.156,17.277,4.357,19.221,6.961,-3.621,8.726,20.133,9.398,0.652,14.688,21.283,3.837,7.933,23.402,4.543,17.977,0.809,-7.052,-6.534,18.635,17.415,23.987,-1.869,15.657,18.523,20.669,17.785,2.444,16.704,25.007,9.327,4.812,7.282,-0.37,15.181,18.318,19.089,5.403,5.988,3.403,18.465,8.046,11.922,6.34,8.33,9.85,19.029,8.42,24.246,6.028,2.3,-1.645,3.627,8.407,19.792,21.507,13.562,9.393,14.912],[25.472,23.418,10.038,14.425,11.36,13.514,6.206,1.484,5.825,21.303,27.346,28.176,7.804,1.395,17.15,20.603,10.0,16.035,13.288,13.321,5.863,0.603,17.175,13.853,6.127,1.583,5.124,24.162,13.273,15.916,0.344,11.512,7.743,16.697,9.049,-3.159,5.568,3.543,19.295,-7.014,0.801,9.559,18.623,15.593,-1.212,18.878,18.02,19.486,22.625,9.82,3.623,-0.664,6.592,24.461,20.072,8.954,7.947,14.275,7.227,5.434,19.549,4.308,17.86,12.018,21.842,22.446,7.26,14.903,5.179,2.167,8.311,3.314,27.324,12.696,7.567,28.162,23.943,0.951,25.864,25.169,14.539,16.151,11.109,12.857,8.944,11.484,13.244,28.919,6.478,21.086,8.739,26.992,-0.476,18.635,11.96,13.641,21.328,11.043,18.485,4.82,5.423,16.607,14.103,10.656,12.47,1.104,12.112,21.812,0.049,12.589,17.086,5.348,13.453,16.974,24.006,1.907,16.656,-1.234,26.039,5.725,6.829,14.381,2.495,4.409,15.268,-4.129,8.282,11.817,6.497,8.013,-0.619,18.064,12.836,17.743,4.002,18.83,6.905,-3.644,9.373,20.139,9.806,0.605,15.016,21.167,4.331,8.79,23.585,4.379,18.194,0.792,-6.882,-6.651,18.755,17.761,23.561,-1.623,16.498,18.373,20.563,18.243,2.602,16.81,25.071,9.843,5.499,7.447,-0.255,15.121,18.188,19.067,5.371,6.144,3.186,18.413,7.882,11.662,6.555,7.878,9.785,18.709,8.491,24.029,6.523,2.544,-1.738,3.572,8.819,19.268,21.131,13.459,9.317,14.738],[25.612,23.292,9.914,14.622,11.159,13.532,6.516,1.599,5.784,20.949,27.059,28.116,7.464,1.257,17.064,20.7,10.008,16.261,13.558,13.27,5.848,0.544,17.148,13.935,5.99,1.555,5.126,24.185,13.393,15.69,0.436,11.401,7.773,16.855,9.093,-3.236,5.729,3.488,19.145,-6.908,0.748,9.61,18.663,15.57,-1.387,18.856,18.075,19.775,22.568,10.082,3.833,-0.841,6.789,24.465,20.216,8.945,7.922,14.54,7.521,5.37,19.55,3.907,17.739,11.871,21.653,21.634,7.217,15.126,4.998,2.057,7.772,3.083,27.378,12.735,7.425,26.877,23.69,1.198,26.025,24.896,14.853,16.127,11.083,12.639,8.855,11.194,13.755,28.685,6.374,20.837,8.577,26.604,-0.58,17.986,11.69,13.249,21.477,11.158,18.539,4.829,6.158,16.775,14.333,10.789,12.988,1.214,11.984,22.064,0.39,12.896,16.351,5.075,14.02,17.145,24.047,1.339,16.507,-0.889,25.936,6.162,6.805,14.425,2.401,4.166,14.859,-4.238,8.94,12.444,7.213,8.407,-0.289,17.793,12.616,18.111,4.59,18.926,7.016,-3.688,9.552,20.139,10.035,0.213,14.797,20.956,4.133,8.58,23.825,4.202,18.07,1.092,-7.36,-6.24,18.726,17.978,23.067,-1.783,16.841,18.234,20.402,18.797,2.442,16.799,24.372,9.932,5.534,7.482,0.103,15.203,17.903,18.82,5.344,6.575,3.414,18.306,7.367,11.812,6.355,7.775,10.239,18.155,8.763,24.182,6.119,3.096,-2.077,3.731,8.953,19.54,21.549,13.406,9.367,15.206],[25.821,23.232,9.81,14.833,11.132,13.524,6.741,1.593,5.761,20.874,26.715,27.981,7.257,1.145,16.889,20.806,10.053,16.506,13.852,13.31,5.994,0.494,16.824,14.027,5.977,1.393,5.169,24.186,13.458,15.536,0.506,11.395,7.889,16.933,9.139,-3.462,5.82,3.638,19.143,-6.786,0.724,9.668,18.657,15.571,-1.638,18.82,18.113,19.96,22.364,10.408,4.014,-1.027,6.853,24.376,20.289,8.865,7.998,14.655,7.791,5.292,19.684,3.719,17.438,11.555,21.439,21.904,7.412,15.356,4.678,2.056,7.652,3.349,27.708,13.075,7.636,25.683,23.869,0.787,26.014,25.118,14.741,16.147,10.862,12.178,8.474,10.882,14.11,28.09,6.42,20.081,8.498,26.313,-0.716,18.491,12.092,13.856,21.918,11.446,18.398,4.832,6.113,17.021,14.563,10.612,13.652,1.302,12.367,21.885,-0.147,12.718,16.541,4.863,14.645,17.261,23.889,0.786,16.582,-0.981,26.067,6.663,6.77,14.141,2.103,4.016,15.007,-3.391,9.098,12.392,7.642,8.008,0.052,17.399,11.945,18.358,4.283,18.995,6.879,-3.804,9.623,20.281,9.935,0.252,14.706,20.958,3.935,8.01,23.807,4.511,17.826,0.905,-7.237,-5.786,18.959,17.358,23.444,-2.383,16.856,18.531,20.454,18.877,2.416,16.558,24.753,9.798,5.496,7.524,-0.352,15.161,17.875,18.972,5.354,6.07,3.058,18.398,7.408,11.594,6.894,8.564,10.086,18.684,8.921,24.255,6.304,2.756,-2.17,3.669,8.689,20.078,21.921,13.047,9.339,15.863],[26.06,23.198,9.718,15.137,11.173,13.512,6.85,1.528,5.716,20.911,26.342,27.861,7.247,1.225,16.783,20.937,10.086,16.805,14.092,13.464,6.18,0.464,16.498,14.09,6.137,1.129,5.164,24.241,13.449,15.455,0.481,11.371,8.059,16.899,9.105,-3.629,5.897,3.673,19.282,-6.547,0.655,9.664,18.56,15.563,-1.76,18.811,18.243,19.799,22.404,10.529,4.027,-1.162,6.884,24.243,20.354,8.766,7.919,14.719,8.038,5.072,19.924,3.644,17.299,11.3,21.446,22.342,7.483,15.483,5.093,2.1,7.718,3.367,27.816,13.238,7.997,25.308,23.753,0.793,25.649,25.831,14.519,16.288,10.636,12.11,8.448,11.106,13.825,27.562,6.855,20.136,8.42,26.459,-0.689,18.744,12.531,14.191,22.075,11.264,18.221,5.17,5.637,16.451,15.173,10.409,13.857,0.954,12.682,21.799,-0.528,12.396,16.861,5.021,14.886,17.214,23.768,0.96,15.846,-1.084,25.831,6.506,6.89,14.46,2.014,4.149,14.589,-2.728,9.21,12.055,7.598,7.817,-0.366,17.534,11.384,18.561,4.384,18.981,7.061,-4.542,9.603,19.912,9.686,-0.054,15.186,21.095,4.303,8.167,23.325,4.92,17.483,0.589,-6.382,-6.068,19.032,17.118,23.382,-2.72,16.406,18.651,20.516,18.835,2.563,16.441,25.538,10.164,5.38,7.449,-1.244,15.026,18.315,19.165,5.103,5.597,2.495,17.895,7.412,11.333,7.199,9.194,10.212,18.616,8.929,24.334,6.423,2.486,-2.178,3.256,8.765,20.121,21.793,12.979,9.197,15.815],[26.239,23.224,9.767,15.329,11.223,13.496,7.012,1.507,5.789,20.973,26.071,27.76,7.262,1.339,16.797,20.959,10.017,16.978,14.286,13.639,6.289,0.417,16.23,14.036,6.385,0.925,5.219,24.258,13.41,15.356,0.286,11.32,8.192,16.98,9.029,-3.716,6.003,3.671,19.452,-6.269,0.616,9.707,18.28,15.597,-1.831,18.765,18.414,19.63,22.495,10.46,3.926,-1.323,6.884,24.212,20.434,8.734,7.782,14.68,8.204,4.844,20.165,3.54,17.255,11.155,21.463,22.056,7.48,15.749,4.753,2.326,7.862,2.839,28.204,13.549,8.274,25.925,23.515,0.856,25.315,25.961,14.277,16.067,10.652,12.464,8.574,11.522,13.114,27.531,6.22,20.717,8.345,26.692,-0.491,18.236,12.932,14.181,21.882,11.347,17.699,5.185,5.806,16.278,15.433,10.532,13.784,1.293,12.554,22.16,-0.403,12.309,16.656,5.485,14.534,17.87,23.767,1.459,15.543,-0.791,25.895,6.002,6.892,14.84,1.813,4.186,14.731,-3.17,8.866,11.551,7.657,8.487,-0.732,17.617,11.589,18.371,4.306,19.096,7.527,-5.15,9.401,19.784,9.066,-0.533,15.651,21.218,4.384,8.927,23.163,5.356,17.514,0.262,-6.13,-5.948,18.467,17.39,23.58,-2.16,15.395,18.786,20.3,18.663,2.376,16.737,24.988,10.616,5.338,7.185,-1.712,15.477,18.54,19.143,5.025,5.312,2.136,17.728,7.522,11.284,7.371,8.976,10.007,18.411,8.923,24.04,6.372,2.642,-2.072,3.134,8.878,20.135,21.759,12.737,9.003,15.464],[26.347,23.286,9.88,15.378,11.306,13.378,7.233,1.397,5.785,20.965,25.936,27.748,7.183,1.412,16.742,20.775,9.945,17.089,14.428,13.788,6.249,0.531,16.019,13.978,6.642,0.865,5.373,24.269,13.421,15.291,0.135,11.285,8.232,17.0,9.139,-3.79,6.149,3.701,19.612,-6.014,0.592,9.874,18.042,15.666,-1.942,18.61,18.637,19.536,22.534,10.394,3.742,-1.483,6.729,24.184,20.508,8.746,7.753,14.492,8.253,4.727,20.324,3.35,17.206,11.058,21.564,22.043,7.345,16.016,4.75,2.159,7.748,3.311,28.184,13.534,8.152,27.065,23.885,0.834,25.26,25.49,14.266,15.87,10.8,12.71,9.047,11.651,13.21,27.732,5.97,20.907,8.322,26.543,-0.423,18.31,13.087,13.831,21.601,11.321,17.457,5.275,6.397,17.173,15.366,10.422,13.432,1.655,12.468,22.289,-0.51,12.484,15.854,5.702,14.221,17.701,23.808,1.404,16.22,-1.001,25.749,6.382,7.007,14.404,1.769,4.458,14.847,-3.647,8.509,11.404,7.281,8.245,-0.741,17.945,11.738,18.147,3.97,18.948,7.366,-5.277,9.529,19.69,8.794,-0.604,15.309,21.348,4.047,8.756,23.992,5.789,18.049,0.713,-6.749,-5.873,18.211,16.928,23.414,-1.71,15.584,18.776,20.493,18.721,2.276,16.971,24.068,10.31,5.477,7.489,-1.796,15.859,19.0,19.416,4.848,5.062,2.094,18.287,7.485,11.106,7.228,8.616,10.091,18.487,8.81,24.494,6.856,3.071,-2.298,2.894,8.622,20.268,21.943,12.509,8.854,15.022],[26.328,23.382,10.061,15.466,11.356,13.315,7.44,1.269,5.875,20.808,26.077,27.807,7.052,1.346,16.526,20.585,9.791,17.172,14.463,13.899,6.277,0.602,16.053,14.006,6.719,0.96,5.637,24.358,13.412,15.011,0.085,11.229,8.126,16.885,9.414,-3.825,6.351,3.687,19.687,-5.908,0.71,10.003,17.929,15.743,-2.016,18.651,18.741,19.623,22.679,10.333,3.61,-1.696,6.607,24.26,20.615,8.756,7.815,14.216,8.079,4.505,20.386,3.099,17.241,10.954,21.887,22.116,7.064,15.994,4.606,1.816,7.214,3.044,28.099,13.748,7.992,27.431,23.969,0.899,25.103,25.495,13.867,16.407,11.143,12.789,9.009,11.357,13.658,28.201,6.565,20.151,8.233,26.554,-0.535,18.479,12.962,13.707,20.789,10.915,17.57,5.876,6.49,17.128,15.614,10.281,13.008,1.898,12.211,22.214,-0.658,12.488,15.662,5.516,14.012,17.759,23.433,1.651,15.659,-0.935,25.81,6.504,7.053,14.196,1.582,4.808,14.497,-3.53,9.175,12.048,7.304,8.392,-0.958,18.138,11.522,18.102,4.153,19.315,7.382,-5.081,9.67,19.484,9.202,-0.361,15.297,21.456,4.17,8.541,24.328,5.548,17.857,1.309,-7.159,-5.516,18.503,16.619,22.889,-2.243,17.001,19.378,20.471,18.669,2.181,17.234,24.55,9.792,5.353,7.624,-1.875,15.181,18.698,19.606,4.563,5.526,2.841,18.082,7.471,11.107,7.201,8.782,10.298,18.152,8.608,24.169,6.527,2.858,-2.05,2.762,8.461,20.59,21.602,12.408,8.69,14.873],[26.388,23.512,10.259,15.518,11.392,13.26,7.583,1.083,5.951,20.487,26.244,27.904,6.884,1.184,16.428,20.468,9.599,17.148,14.458,13.784,6.404,0.539,16.217,14.093,6.681,0.937,5.794,24.386,13.315,14.65,0.161,11.069,8.041,16.819,9.698,-3.87,6.416,3.652,19.846,-5.836,0.812,10.088,17.936,15.92,-1.995,18.765,18.813,19.858,22.743,10.201,3.734,-1.895,6.495,24.32,20.459,8.709,7.8,13.878,7.769,4.437,20.314,3.105,17.194,10.821,21.982,21.736,7.259,15.868,4.505,2.022,7.286,2.892,28.267,13.686,8.212,27.111,23.794,0.958,25.369,25.613,13.96,16.553,11.622,13.139,8.86,10.757,13.959,28.706,6.617,19.751,8.116,26.886,-0.662,17.885,12.688,13.886,20.833,11.136,17.633,5.691,6.415,16.307,15.306,10.041,13.517,1.646,12.137,22.037,-0.319,12.547,15.895,5.624,14.436,18.007,23.589,1.58,15.316,-0.741,25.909,6.483,7.295,14.775,1.231,4.601,14.224,-3.581,9.209,12.662,7.989,8.982,-1.215,17.765,11.616,18.03,4.852,19.187,7.998,-4.411,10.008,19.571,9.964,-0.401,15.494,21.635,4.291,8.749,24.087,5.604,17.49,1.269,-7.003,-5.668,19.2,16.759,23.371,-2.337,17.357,19.259,20.482,18.854,2.43,17.125,24.653,9.572,4.654,7.535,-1.673,14.528,18.584,19.603,4.722,5.432,3.109,17.788,7.54,10.946,6.936,8.969,10.444,18.637,8.713,24.435,6.392,2.29,-1.951,2.671,8.625,20.534,21.963,12.409,9.053,15.148],[26.463,23.434,10.428,15.485,11.479,13.293,7.625,1.025,5.877,20.203,26.365,27.995,6.736,1.164,16.394,20.423,9.592,17.057,14.38,13.707,6.567,0.386,16.172,14.238,6.652,0.834,5.704,24.432,13.284,14.484,0.323,10.968,8.018,16.703,10.101,-3.805,6.432,3.709,19.991,-5.727,0.856,10.254,18.059,16.051,-1.949,18.757,18.815,20.079,22.683,10.061,3.943,-1.928,6.41,24.247,20.233,8.631,7.794,13.551,7.53,4.562,20.185,3.331,17.176,10.647,22.136,21.645,7.271,15.518,5.204,2.454,7.463,2.695,28.439,13.735,8.858,26.81,24.225,0.405,26.007,25.937,14.508,16.271,11.661,13.08,9.137,10.475,13.445,28.736,6.389,19.758,8.16,26.523,-0.577,17.986,12.77,14.026,21.503,11.146,17.944,5.348,6.265,17.035,15.199,9.659,14.109,1.298,12.379,21.806,-0.586,12.522,15.678,5.705,15.037,17.783,23.335,1.645,15.677,-0.888,26.205,6.765,7.217,14.867,1.433,4.627,13.62,-4.152,8.401,12.286,8.391,8.786,-0.583,17.504,11.341,18.084,4.631,19.416,8.131,-4.151,10.583,19.636,10.39,-0.321,15.74,21.703,4.165,8.903,23.905,5.963,17.765,0.965,-7.318,-6.048,19.276,16.883,23.845,-2.3,16.774,19.338,20.582,18.993,2.569,17.079,24.473,9.608,5.075,7.394,-1.723,14.504,18.394,19.252,4.911,5.015,3.068,17.975,7.699,11.114,6.408,8.955,10.229,18.584,8.642,24.822,6.534,2.487,-2.279,2.841,8.437,20.428,21.979,12.313,9.104,14.515],[26.48,23.257,10.615,15.352,11.419,13.314,7.671,1.108,5.841,20.212,26.612,27.885,6.755,1.442,16.261,20.571,9.565,17.054,14.306,13.781,6.746,0.235,16.062,14.316,6.719,0.88,5.48,24.558,13.262,14.433,0.429,10.694,7.967,16.56,10.459,-3.797,6.513,3.811,20.094,-5.92,0.789,10.34,18.144,16.196,-1.747,18.705,18.836,20.028,22.754,9.949,4.138,-1.881,6.426,24.238,20.003,8.512,7.73,13.377,7.468,4.731,20.008,3.653,17.239,10.586,21.785,21.75,7.041,15.491,5.167,2.497,7.156,2.753,28.382,13.491,8.813,26.082,23.827,0.077,26.904,26.042,14.268,16.679,11.113,13.042,9.56,10.612,13.173,28.445,6.703,19.933,7.877,26.234,-0.235,17.975,12.851,14.005,21.608,10.916,17.77,5.494,6.603,17.107,15.267,9.994,14.452,1.157,12.2,21.649,-0.924,12.601,15.165,5.539,15.34,18.021,23.64,1.521,16.104,-1.04,26.144,6.763,7.0,14.376,1.57,4.903,14.095,-3.54,8.662,11.765,7.542,9.379,-0.142,17.442,11.837,17.98,3.936,19.851,7.878,-4.335,10.225,19.749,10.944,-0.212,15.653,21.791,4.003,9.129,23.997,6.171,17.846,0.858,-7.396,-5.518,19.048,16.859,23.38,-2.483,16.733,19.59,20.543,18.983,2.547,17.125,24.627,9.69,5.592,7.201,-1.781,14.211,18.499,19.202,5.177,5.224,2.798,17.753,7.517,11.127,6.317,8.226,10.097,18.3,8.371,24.042,6.016,2.979,-2.446,2.879,8.112,19.911,21.534,12.223,8.719,13.731],[26.406,22.992,10.531,15.089,11.369,13.266,7.743,1.28,5.695,20.459,26.941,27.672,6.88,1.737,16.239,20.635,9.485,17.199,14.318,13.917,6.914,0.19,16.034,14.304,6.98,0.856,5.324,24.646,13.267,14.512,0.415,10.48,7.891,16.539,10.461,-3.794,6.526,3.747,20.165,-6.165,0.702,10.454,18.198,16.239,-1.448,18.586,19.008,19.885,22.888,9.788,4.236,-1.837,6.474,24.259,19.744,8.308,7.577,13.225,7.414,4.803,19.761,3.911,17.206,10.645,21.49,21.812,7.008,15.552,4.361,2.74,7.173,2.917,28.1,13.243,8.152,25.826,23.357,0.399,27.215,25.52,13.594,16.884,11.809,12.695,9.633,11.204,13.398,28.423,6.732,20.09,7.716,26.401,-0.05,17.494,12.893,14.09,21.138,10.972,17.599,6.122,6.735,16.106,15.429,10.009,14.599,0.875,12.175,22.06,-0.705,12.72,15.064,6.076,15.259,17.72,23.996,0.565,15.446,-0.901,26.345,7.038,6.618,14.497,1.928,5.067,14.352,-2.909,9.267,11.109,7.178,9.918,-0.702,17.179,11.847,18.18,4.755,19.91,8.047,-4.71,10.345,19.907,11.274,-0.259,15.595,21.949,4.113,8.959,24.475,6.571,17.508,0.704,-7.451,-5.65,18.88,17.017,23.281,-2.048,17.093,19.579,20.394,18.821,2.534,17.188,24.565,9.554,5.429,7.298,-2.215,14.099,18.413,19.01,5.36,5.635,2.522,18.155,7.196,10.408,6.449,8.319,10.176,18.412,8.525,24.412,6.264,3.403,-2.203,3.032,7.858,19.737,21.574,12.056,8.652,13.888],[26.074,22.754,10.419,14.87,11.349,13.131,7.743,1.514,5.326,20.671,27.236,27.505,6.994,1.898,16.269,20.481,9.405,17.171,14.42,14.104,6.982,0.049,15.92,14.294,7.355,0.667,5.347,24.824,13.268,14.751,0.196,10.38,7.899,16.588,10.438,-3.751,6.683,3.906,20.187,-6.407,0.761,10.566,18.283,16.201,-1.336,18.396,19.101,19.801,23.02,9.665,4.233,-1.812,6.571,24.363,19.588,8.113,7.512,13.182,7.433,4.831,19.472,3.898,17.227,10.549,21.435,21.959,6.722,15.478,4.61,2.747,7.493,3.23,27.954,13.034,7.907,25.891,23.506,1.21,26.975,25.606,13.839,16.551,11.665,12.804,9.476,11.786,13.717,28.314,6.284,20.229,7.965,26.772,0.102,17.781,12.8,13.823,21.435,10.694,17.641,6.548,6.704,16.214,15.567,9.697,14.455,1.072,12.332,21.782,-0.389,12.995,15.258,6.048,15.758,17.875,23.839,0.535,15.255,-0.982,26.411,7.14,6.57,14.974,2.024,4.945,14.201,-3.204,9.272,10.273,7.468,9.394,-0.728,17.012,11.575,18.241,4.556,20.087,8.197,-4.989,10.127,20.044,11.173,-0.029,15.829,21.815,4.234,9.251,24.381,7.019,17.734,0.943,-7.128,-5.891,18.926,17.224,24.071,-1.278,16.341,19.835,20.263,19.138,2.346,17.505,24.654,9.003,5.41,7.665,-2.675,14.332,18.393,18.56,5.222,5.592,2.663,18.314,6.987,10.565,7.118,8.862,9.803,18.034,8.343,24.874,6.874,3.18,-2.42,3.012,7.674,20.128,21.392,12.305,8.582,13.995],[25.801,22.655,10.447,14.882,11.351,13.012,7.616,1.764,5.191,20.717,27.419,27.472,7.033,1.866,16.24,20.408,9.308,17.102,14.517,14.377,6.993,-0.022,15.884,14.313,7.466,0.574,5.488,24.897,13.327,15.008,0.042,10.188,7.999,16.568,10.447,-3.673,6.974,4.177,20.254,-6.672,0.927,10.528,18.406,16.122,-1.345,18.284,19.207,19.964,23.115,9.485,4.158,-1.856,6.701,24.536,19.517,7.937,7.443,13.195,7.634,4.802,19.293,3.753,17.185,10.499,21.215,21.897,6.237,15.307,4.934,2.808,7.779,3.408,27.687,12.983,7.986,26.559,23.18,1.271,26.215,25.423,14.398,16.367,11.337,12.659,9.467,12.373,13.447,27.906,6.523,20.327,8.346,26.884,0.288,17.941,12.906,13.315,21.739,10.834,17.497,6.394,6.987,16.914,15.399,9.518,14.113,1.179,12.353,21.226,-0.998,13.325,16.069,6.039,16.095,18.164,24.003,1.129,15.368,-1.497,26.287,7.082,6.649,14.84,1.615,4.507,14.036,-3.871,8.284,10.958,8.268,9.304,-0.417,17.447,11.068,18.042,4.171,19.733,8.196,-5.148,10.144,20.071,10.722,-0.037,15.471,21.945,4.466,9.338,23.979,7.643,17.516,1.263,-7.32,-6.118,18.618,17.474,24.089,-0.984,16.248,19.862,20.101,18.939,2.586,17.438,24.881,9.019,5.461,8.119,-2.376,14.399,18.176,18.617,5.227,5.414,3.035,17.635,7.054,10.88,7.016,8.479,9.525,18.527,8.072,24.546,6.433,2.843,-2.779,2.991,8.061,19.674,21.168,12.118,8.611,14.211],[25.621,22.511,10.541,15.045,11.486,13.053,7.39,1.908,5.394,20.537,27.476,27.538,7.024,1.735,16.087,20.501,9.29,17.137,14.446,14.654,7.043,0.004,16.022,14.296,7.249,0.503,5.66,24.832,13.364,15.254,-0.038,10.064,8.116,16.554,10.437,-3.534,7.287,4.349,20.327,-7.073,1.164,10.254,18.531,15.864,-1.379,18.188,19.254,20.139,23.016,9.415,4.109,-1.91,6.726,24.618,19.47,7.852,7.386,13.244,7.675,4.774,19.133,3.687,17.114,10.529,21.489,22.068,6.236,15.291,4.661,2.902,7.778,3.208,27.403,13.195,8.184,27.313,23.073,0.634,25.777,24.971,13.82,16.635,12.017,12.265,9.881,12.643,13.053,27.715,6.959,20.399,8.177,26.527,-0.043,17.639,13.063,13.627,21.238,10.968,17.53,6.262,6.987,16.657,15.607,9.41,13.78,1.087,12.272,21.55,-1.052,13.385,16.53,6.525,15.764,18.181,23.906,1.104,15.158,-1.725,26.386,7.31,6.693,14.395,1.304,4.396,14.886,-3.851,8.201,11.408,7.853,9.861,-0.459,17.974,11.167,17.43,4.773,19.531,8.532,-5.194,10.411,20.325,10.492,-0.565,15.433,22.148,5.017,8.975,24.246,7.966,17.095,0.949,-7.53,-6.187,19.182,17.327,23.798,-1.042,16.852,19.779,20.102,18.957,2.959,17.505,25.274,9.12,5.316,8.078,-1.998,14.044,17.762,18.922,5.243,5.412,2.873,17.679,6.66,10.746,6.552,8.391,9.644,18.493,8.047,24.629,6.32,2.91,-2.938,2.945,8.006,19.409,21.441,12.216,8.484,14.262],[25.603,22.449,10.83,15.127,11.61,13.143,7.143,1.86,5.549,20.366,27.468,27.552,6.895,1.544,15.986,20.582,9.257,17.148,14.344,14.848,7.168,-0.036,16.105,14.258,7.123,0.483,5.886,24.66,13.387,15.566,-0.125,10.11,8.088,16.563,10.572,-3.34,7.546,4.549,20.454,-7.543,1.382,9.942,18.543,15.417,-1.451,18.15,19.231,20.319,22.897,9.572,4.13,-1.97,6.624,24.69,19.477,7.86,7.297,13.212,7.501,4.825,19.014,3.653,17.131,10.623,21.278,21.875,7.017,15.522,4.961,2.575,8.099,3.267,27.445,13.314,8.099,27.615,23.229,1.054,25.901,24.883,13.278,16.378,12.276,12.428,10.252,13.127,13.594,28.122,6.426,20.138,8.026,26.341,-0.29,17.487,12.782,14.182,21.233,10.661,17.912,6.131,6.741,16.559,15.558,9.64,14.103,1.241,12.128,21.796,-0.968,13.275,16.611,6.014,15.107,17.863,23.726,0.607,15.404,-1.738,26.508,7.4,7.048,14.531,1.736,4.651,15.083,-3.301,9.17,10.754,7.291,9.694,-0.584,18.09,11.459,16.921,5.064,19.814,9.015,-5.106,10.007,20.395,9.969,-0.834,15.225,22.012,4.867,8.948,24.228,7.455,17.147,0.84,-7.312,-6.33,19.264,17.536,23.954,-0.96,16.407,19.718,19.774,19.357,3.215,17.65,25.352,8.989,5.299,7.491,-1.762,13.979,17.682,18.709,5.073,5.405,2.798,17.807,6.639,10.608,6.464,8.651,9.446,18.141,8.69,24.871,6.402,3.193,-2.69,2.988,7.229,19.597,21.353,12.346,8.396,13.972],[25.676,22.462,11.183,15.103,11.708,13.294,6.743,1.837,5.73,20.457,27.506,27.57,6.914,1.388,15.877,20.64,9.298,17.076,14.253,15.04,7.201,-0.2,16.072,14.204,7.019,0.576,6.103,24.478,13.449,15.844,-0.147,10.215,7.935,16.596,10.619,-3.12,7.66,4.595,20.587,-7.837,1.614,9.835,18.559,14.954,-1.574,18.133,19.084,20.29,22.9,9.746,4.364,-2.003,6.505,24.805,19.485,7.939,7.061,13.173,7.34,4.766,18.987,3.669,17.19,10.747,20.982,21.533,6.86,15.893,5.31,2.254,7.658,3.441,27.544,13.251,7.813,27.396,22.971,1.359,25.737,25.095,13.442,16.27,12.695,12.22,10.1,13.226,13.676,28.587,5.833,19.449,7.858,26.625,-0.336,17.478,12.799,14.05,21.956,10.895,17.872,6.028,6.959,16.851,15.355,9.753,14.251,1.322,12.129,21.296,-0.805,13.471,16.588,5.991,14.696,17.791,23.807,0.411,15.908,-1.579,26.295,7.779,7.217,14.676,1.913,5.117,14.756,-2.38,8.875,9.967,7.678,9.044,-0.711,18.131,11.463,17.132,5.549,20.166,8.988,-4.87,10.532,19.975,9.479,-0.546,14.714,22.376,4.782,8.637,23.977,7.62,17.15,1.172,-8.21,-7.028,18.986,17.824,23.809,-1.067,15.456,20.124,19.988,19.329,3.18,17.357,24.96,9.035,5.228,6.983,-1.993,13.95,17.756,18.346,4.855,5.695,2.815,18.285,6.55,10.771,6.324,8.647,9.53,18.246,9.234,24.498,6.378,3.423,-2.258,3.014,7.261,18.947,21.173,12.556,8.257,13.714],[25.658,22.444,11.394,15.066,11.519,13.547,6.307,1.919,5.91,20.571,27.409,27.686,7.042,1.425,15.738,20.623,9.512,17.024,14.124,15.163,7.097,-0.351,16.038,14.195,6.935,0.643,6.277,24.411,13.5,15.891,-0.129,10.299,7.79,16.724,10.578,-2.921,7.803,4.64,20.76,-8.052,1.868,9.839,18.591,14.604,-1.645,18.132,18.925,19.994,22.936,9.941,4.634,-2.021,6.375,24.744,19.365,7.988,6.957,13.119,7.259,4.59,18.937,3.632,17.388,10.949,21.224,21.797,6.512,15.961,5.221,2.127,6.728,3.558,27.522,13.364,7.497,27.435,22.991,1.408,25.94,25.315,14.043,16.174,12.63,11.638,10.413,12.96,13.203,28.742,5.749,19.262,8.31,26.815,-0.493,17.572,12.601,13.596,21.586,11.145,17.554,6.065,7.211,16.425,15.305,9.891,14.436,0.698,12.867,21.273,-0.964,13.257,16.612,6.275,14.986,18.131,23.525,0.476,15.823,-1.725,26.058,7.613,7.179,14.737,1.741,5.329,15.133,-1.563,8.06,9.807,7.541,9.103,-0.722,17.814,10.945,17.573,5.418,20.024,9.135,-4.448,10.495,19.907,9.709,-0.279,14.651,22.282,4.959,8.685,23.735,7.884,17.251,1.233,-8.338,-6.806,19.027,17.461,23.908,-1.684,15.321,19.849,20.116,18.767,3.647,17.247,25.298,9.086,5.429,7.026,-2.443,13.8,17.645,18.522,4.76,5.791,3.132,18.412,6.716,11.17,6.107,8.567,9.648,18.192,9.017,24.754,6.649,3.658,-2.032,2.868,6.694,18.96,21.286,12.709,8.116,13.812],[25.452,22.561,11.451,15.023,11.069,13.852,5.892,2.059,6.032,20.647,27.264,27.862,7.123,1.341,15.705,20.419,9.744,16.876,14.037,15.242,6.892,-0.383,15.934,14.128,6.956,0.478,6.435,24.425,13.66,15.758,-0.147,10.219,7.506,16.928,10.3,-2.704,7.918,4.74,20.852,-8.206,2.222,9.872,18.591,14.424,-1.713,18.164,18.941,19.788,22.979,10.169,4.851,-2.115,6.262,24.667,19.358,8.044,6.907,13.016,7.263,4.469,18.856,3.585,17.572,11.263,21.314,22.076,6.992,16.198,5.693,2.035,7.365,3.86,27.227,13.412,7.033,27.346,23.041,1.416,25.979,25.29,14.387,15.492,12.678,11.536,10.662,12.718,13.76,28.594,5.502,20.011,8.492,26.277,-0.382,17.37,12.56,13.396,21.064,11.344,17.766,6.347,6.716,16.109,15.422,10.215,14.675,-0.068,13.244,21.504,-0.848,12.923,16.757,6.139,15.72,17.78,23.588,0.624,15.484,-1.763,25.803,7.428,7.602,14.731,1.575,5.17,15.307,-1.119,8.629,10.52,6.655,9.547,-0.779,17.644,11.049,18.09,5.237,20.089,9.102,-3.795,10.573,20.192,10.114,-0.353,13.861,21.935,4.798,8.93,23.774,8.193,17.065,1.324,-8.048,-6.963,18.937,17.591,24.028,-1.685,15.401,19.137,19.81,18.535,4.015,17.227,25.219,9.469,5.981,7.149,-2.246,13.39,17.276,18.688,5.022,5.225,3.2,18.483,6.698,10.92,6.09,8.594,9.631,18.297,8.89,24.858,6.659,3.59,-2.091,2.655,7.346,19.469,21.07,12.972,8.241,14.063],[25.161,22.786,11.531,15.055,10.733,14.143,5.452,2.305,6.136,20.764,27.137,27.871,7.17,1.051,15.569,20.184,9.99,16.601,13.981,15.23,6.83,-0.411,15.892,13.991,7.152,0.241,6.466,24.502,13.824,15.748,-0.258,10.223,7.344,17.135,10.113,-2.45,7.937,4.691,20.829,-8.3,2.452,10.011,18.736,14.299,-1.638,18.097,18.931,19.791,22.981,10.447,4.905,-2.254,6.191,24.583,19.474,8.108,6.997,12.817,7.442,4.384,18.798,3.476,17.604,11.407,21.378,22.312,7.742,16.163,6.032,2.281,8.053,3.697,26.962,13.309,6.621,27.313,22.992,1.457,25.626,24.812,14.818,15.2,12.755,11.814,10.119,11.918,13.962,28.826,5.023,20.864,8.406,26.449,-0.711,17.44,12.564,13.469,21.369,11.486,17.672,6.189,6.812,16.172,15.407,10.471,15.083,0.403,12.699,21.209,-0.865,12.609,16.526,6.197,16.553,17.652,23.355,0.647,15.121,-1.657,26.068,7.528,7.679,15.15,1.585,5.243,14.823,-0.621,8.426,11.176,6.224,9.192,-0.831,17.903,11.129,18.432,5.609,20.323,8.731,-3.045,10.019,20.183,10.023,-0.585,14.106,21.933,5.114,8.793,24.134,8.175,16.761,1.68,-8.352,-7.09,18.622,17.808,24.007,-1.711,15.162,19.588,19.789,18.681,4.153,17.136,25.163,9.689,5.874,7.138,-2.6,13.191,17.206,18.401,5.186,5.065,3.552,18.924,6.718,11.251,6.151,8.946,9.641,18.332,9.008,24.616,6.28,3.72,-2.335,2.504,7.758,19.296,21.092,13.278,8.173,14.003],[24.907,22.903,11.486,15.086,10.565,14.397,5.017,2.458,6.209,20.993,26.994,27.937,7.166,0.735,15.4,20.169,10.223,16.491,13.933,15.269,7.124,-0.371,15.927,13.816,7.251,0.085,6.423,24.562,13.834,15.832,-0.33,10.297,7.321,17.293,9.951,-2.141,7.866,4.644,20.791,-8.401,2.503,10.072,18.896,14.309,-1.601,17.86,18.929,19.79,23.017,10.551,4.797,-2.511,6.216,24.479,19.545,8.152,7.075,12.65,7.813,4.247,18.765,3.381,17.693,11.482,21.586,22.474,7.982,16.092,5.789,1.669,8.0,4.125,26.716,13.343,6.177,27.605,23.132,1.94,25.369,24.473,14.932,14.89,12.81,11.591,10.153,11.387,14.132,28.869,4.593,21.365,8.422,26.392,-1.06,17.26,12.471,13.529,20.964,11.785,17.541,6.257,7.072,16.053,15.235,10.744,15.174,0.646,12.596,21.028,-1.347,12.429,16.622,6.304,16.6,17.398,23.629,0.452,14.926,-1.962,26.152,7.352,8.008,14.948,1.279,5.709,15.358,-0.544,7.744,11.813,6.511,8.725,-0.645,18.125,11.227,18.477,5.571,20.464,9.197,-2.237,10.388,20.442,9.975,-0.504,14.214,22.471,5.378,9.166,23.749,7.88,17.279,1.576,-8.749,-6.97,18.713,17.894,24.14,-1.412,14.83,19.946,19.742,18.767,4.192,17.316,25.335,9.929,5.327,6.96,-2.567,13.261,17.517,18.291,4.879,5.611,3.712,18.633,6.614,11.584,6.603,8.898,9.414,18.188,9.468,24.646,5.726,3.647,-3.043,2.618,7.593,18.892,21.243,13.136,8.628,13.413],[24.772,22.967,11.406,15.095,10.534,14.659,4.743,2.698,6.123,21.192,26.885,28.137,7.205,0.518,15.182,20.113,10.485,16.544,13.794,15.258,7.529,-0.377,15.965,13.689,7.082,-0.077,6.551,24.602,13.846,16.027,-0.255,10.496,7.181,17.208,9.993,-1.746,7.741,4.581,20.882,-8.472,2.393,10.1,18.979,14.409,-1.583,17.792,18.929,19.693,23.102,10.627,4.578,-2.783,6.31,24.448,19.537,7.965,7.306,12.581,8.17,4.204,18.737,3.235,17.749,11.477,21.605,22.555,7.779,15.888,5.122,1.239,7.46,4.201,26.537,13.374,5.608,27.945,22.947,1.772,25.382,24.465,14.59,14.478,12.933,11.022,10.492,11.968,14.628,28.599,4.322,21.67,8.578,26.374,-1.199,16.758,12.23,13.412,20.959,12.288,17.622,6.15,6.983,16.155,15.035,10.705,15.606,0.423,12.536,21.336,-1.646,12.442,16.364,6.082,16.266,17.047,23.614,-0.085,15.417,-1.892,26.248,7.902,8.223,14.157,1.336,5.582,15.718,-0.15,8.303,11.85,6.825,9.226,-0.765,18.312,11.152,18.365,5.524,20.548,9.221,-2.241,10.646,20.387,9.796,-0.22,13.959,22.561,4.922,9.747,23.485,7.929,17.367,1.618,-9.242,-7.168,18.887,18.012,24.257,-1.121,14.826,19.606,19.625,18.37,4.192,17.495,25.212,9.901,5.414,6.999,-2.277,13.753,17.393,18.532,4.679,5.512,3.602,18.427,6.406,11.434,6.629,9.221,9.464,18.536,9.324,24.531,5.317,3.185,-3.24,2.567,7.21,19.312,21.17,13.037,8.379,13.22],[24.776,22.944,11.369,15.067,10.811,14.94,4.686,2.743,5.831,21.27,26.826,28.249,7.289,0.492,14.876,20.091,10.675,16.533,13.629,15.188,7.865,-0.422,16.1,13.677,6.913,-0.271,6.61,24.528,13.712,16.113,-0.089,10.724,7.148,17.02,10.238,-1.277,7.643,4.41,21.023,-8.626,2.313,10.269,18.953,14.491,-1.424,17.948,18.9,19.413,23.106,10.629,4.285,-2.9,6.454,24.433,19.54,7.685,7.371,12.593,8.366,4.226,18.741,3.187,17.786,11.395,21.603,22.726,7.213,15.743,5.048,1.259,7.448,4.192,26.43,13.339,5.307,28.023,23.137,2.128,25.47,24.43,15.326,14.334,12.681,10.497,10.9,12.622,14.06,28.325,4.648,21.349,8.588,26.898,-1.268,16.667,12.146,12.962,21.14,12.451,17.905,5.981,7.343,16.273,14.968,10.861,16.11,0.313,12.578,21.119,-1.434,12.517,17.032,6.157,15.826,17.684,23.017,-0.553,15.466,-1.517,25.953,8.267,8.084,14.717,1.217,5.698,15.988,0.105,8.426,11.727,6.675,8.995,-0.812,17.87,11.16,18.009,5.371,20.701,8.879,-2.436,10.178,20.185,9.354,-0.529,14.554,22.056,4.726,9.255,24.017,7.549,16.923,1.803,-9.782,-7.305,18.889,18.201,24.218,-1.282,14.873,19.459,19.744,18.025,4.07,17.266,25.188,10.018,5.405,7.167,-2.233,13.76,17.38,18.501,4.264,5.134,2.823,18.518,6.509,10.956,7.051,9.752,9.322,18.42,8.956,24.649,5.195,3.163,-3.005,2.355,7.617,19.338,21.351,13.249,8.531,13.445],[24.899,22.886,11.428,15.028,11.039,15.132,4.76,2.54,5.633,21.206,26.854,28.26,7.329,0.557,14.624,20.078,10.749,16.587,13.597,15.066,8.117,-0.476,16.397,13.73,6.884,-0.441,6.558,24.163,13.625,16.278,0.102,10.981,7.132,16.851,10.27,-0.901,7.582,4.243,21.173,-8.739,2.222,10.376,18.861,14.685,-1.384,18.141,18.851,19.233,23.024,10.521,4.013,-2.962,6.573,24.54,19.564,7.452,7.279,12.604,8.414,4.187,18.862,3.112,17.728,11.35,21.52,22.586,6.956,15.374,4.786,1.448,7.883,3.868,26.778,13.12,5.87,27.887,22.923,2.372,25.592,24.119,15.665,14.222,12.439,10.971,10.935,12.742,14.507,28.781,4.755,21.078,8.824,26.948,-1.125,16.49,12.383,12.875,21.032,12.22,18.142,6.035,7.709,16.274,15.07,11.418,15.954,0.739,12.605,20.758,-1.104,13.061,17.163,5.681,15.402,17.889,23.05,0.24,15.461,-1.521,25.463,8.215,8.141,14.908,1.313,5.841,15.667,0.506,8.142,11.336,6.736,8.921,-0.161,17.362,11.377,17.847,4.798,20.179,8.325,-2.358,10.274,20.379,9.38,-0.767,14.522,22.027,5.119,9.526,23.543,7.175,16.959,2.254,-9.841,-7.476,18.238,17.872,24.138,-0.694,14.914,19.335,20.041,18.004,3.874,17.009,25.228,10.602,4.677,7.036,-2.011,13.122,17.303,18.424,4.292,5.39,2.52,18.192,6.349,11.284,7.613,10.197,9.091,18.576,8.978,24.419,5.289,3.287,-3.024,2.397,7.575,18.805,21.351,12.97,8.958,13.649],[25.036,22.821,11.562,14.931,11.049,15.25,4.927,2.259,5.548,21.161,26.932,28.314,7.311,0.583,14.482,19.834,10.929,16.714,13.697,14.779,8.307,-0.297,16.753,13.907,6.878,-0.378,6.601,23.693,13.606,16.367,0.333,11.148,7.075,16.66,10.205,-0.585,7.366,4.076,21.178,-8.657,2.141,10.506,18.684,14.919,-1.389,18.304,18.699,19.157,22.858,10.604,3.766,-3.0,6.553,24.728,19.585,7.279,7.181,12.484,8.458,4.159,18.977,3.051,17.462,11.34,21.382,22.23,7.004,14.716,4.686,1.81,7.998,3.787,26.751,13.258,6.314,27.979,22.486,1.858,25.642,24.5,16.05,14.077,12.76,11.832,10.506,12.379,14.596,29.124,4.383,20.658,8.758,26.678,-1.066,16.28,12.292,13.511,20.891,12.22,18.427,6.302,7.579,16.38,15.112,11.428,15.319,0.684,12.727,21.009,-1.217,13.203,16.68,5.873,15.614,17.614,23.156,0.357,15.722,-1.398,25.327,8.426,8.368,14.476,0.591,6.021,15.311,0.717,8.175,11.582,6.286,9.052,-0.125,17.128,11.769,18.118,4.441,20.053,8.69,-1.977,10.409,20.165,9.458,-0.539,13.889,22.209,4.929,10.108,23.542,7.204,17.51,2.022,-9.444,-7.337,17.867,17.784,23.67,-0.036,15.439,19.551,19.984,18.361,3.898,17.08,25.055,11.352,3.954,6.665,-1.863,12.873,17.68,18.504,4.697,5.483,3.101,18.16,5.895,11.649,7.629,10.069,8.821,18.894,8.984,24.529,5.225,2.78,-3.265,2.623,6.998,19.244,21.181,13.042,8.631,13.443],[25.141,22.727,11.682,14.746,11.01,15.343,4.968,1.956,5.556,21.086,27.019,28.408,7.251,0.596,14.464,19.527,11.172,16.855,13.72,14.511,8.462,-0.047,17.049,14.122,6.916,-0.303,6.761,23.476,13.477,16.19,0.459,11.32,6.932,16.512,10.112,-0.419,7.241,3.943,21.06,-8.425,2.224,10.758,18.466,15.138,-1.164,18.39,18.731,19.265,22.651,10.99,3.474,-2.971,6.41,24.876,19.649,7.131,6.973,12.357,8.451,4.146,19.197,3.161,17.135,11.44,21.284,22.24,7.252,14.534,5.089,1.732,7.555,3.541,26.992,12.975,6.233,28.159,22.624,1.792,25.482,24.543,15.725,14.35,12.95,11.983,10.134,11.855,14.472,29.093,4.9,20.531,8.841,26.605,-1.077,16.299,12.091,14.001,20.59,12.836,18.727,5.714,7.563,16.558,15.123,11.149,14.614,0.614,13.198,20.741,-1.765,12.801,17.129,6.222,15.907,17.257,22.387,0.189,16.225,-1.0,25.174,8.279,8.303,14.597,0.751,6.018,15.903,0.911,8.305,12.04,6.154,9.248,-0.283,17.301,11.631,17.933,4.735,20.744,8.585,-1.496,10.577,19.717,9.839,-1.036,14.621,21.731,4.427,9.577,23.511,7.312,17.427,1.355,-9.172,-7.349,18.054,18.035,23.671,-0.05,15.639,19.354,20.162,18.498,3.623,16.993,25.143,11.298,3.844,6.385,-1.997,13.12,17.7,18.357,4.692,5.383,3.272,18.302,5.684,10.824,7.006,9.788,8.518,18.128,9.261,24.461,5.155,2.687,-3.575,2.419,6.958,19.36,21.439,12.977,8.309,12.563],[25.184,22.572,11.664,14.567,10.85,15.387,4.943,1.752,5.728,21.098,27.189,28.45,7.23,0.65,14.536,19.327,11.338,16.898,13.734,14.33,8.593,0.082,17.135,14.222,6.94,-0.226,6.858,23.313,13.499,16.122,0.509,11.416,6.766,16.446,9.978,-0.379,7.164,4.001,20.911,-8.219,2.31,10.746,18.364,15.437,-1.088,18.564,18.868,19.525,22.4,11.301,3.227,-2.872,6.343,24.956,19.633,6.936,6.717,12.171,8.279,4.118,19.391,3.315,16.882,11.405,21.423,22.258,7.388,14.547,5.338,1.204,7.834,3.402,26.722,12.917,5.351,27.984,23.134,1.498,25.52,25.158,15.324,14.453,12.816,11.678,10.235,11.905,14.358,29.239,5.103,20.714,8.831,26.794,-1.147,16.32,12.11,13.683,20.292,13.064,18.653,5.539,8.108,17.251,14.707,11.177,14.325,1.127,12.44,19.864,-1.793,13.043,17.204,6.223,15.992,18.032,22.154,0.317,16.778,-1.088,24.833,7.948,8.486,14.514,0.99,5.798,16.041,1.046,8.21,11.988,6.661,9.256,-0.001,17.605,12.122,17.515,5.118,20.839,8.313,-1.337,10.601,19.271,10.904,-1.373,14.907,21.889,4.121,9.746,23.026,7.259,17.326,1.684,-9.138,-7.367,18.429,17.688,23.469,0.518,15.591,19.307,20.373,18.322,3.357,16.914,25.286,10.976,3.939,5.86,-2.378,13.273,17.831,18.705,4.95,5.12,3.238,17.765,5.827,11.343,6.656,9.563,8.697,17.758,9.516,24.192,5.109,2.873,-3.956,2.287,7.208,19.252,21.401,12.735,8.01,12.822],[25.148,22.467,11.538,14.673,10.739,15.341,4.791,1.633,5.937,21.187,27.385,28.426,7.247,0.765,14.693,19.092,11.315,17.091,13.468,14.114,8.787,0.15,17.161,14.262,6.939,-0.081,6.956,23.167,13.563,16.158,0.594,11.573,6.702,16.492,9.785,-0.482,7.014,4.201,20.837,-8.232,2.424,10.513,18.322,15.694,-0.999,18.739,19.034,19.706,22.033,11.315,3.095,-2.817,6.213,25.011,19.604,6.83,6.601,11.994,8.028,4.108,19.54,3.54,16.832,11.324,21.28,22.167,7.572,14.369,5.33,1.151,7.833,3.46,26.949,13.004,5.006,27.894,22.843,1.554,25.727,24.932,15.815,14.369,12.718,11.115,10.057,12.303,14.392,29.292,4.645,20.961,8.609,26.941,-1.097,16.537,12.002,13.108,20.269,12.799,18.516,5.653,7.988,17.109,14.724,11.603,14.931,1.216,12.182,19.91,-1.679,13.484,16.931,6.356,15.433,18.196,22.306,0.471,16.503,-1.166,24.806,8.004,8.711,14.425,1.171,5.823,15.255,1.137,8.037,11.824,6.547,8.901,0.027,18.005,12.474,17.037,5.018,20.18,8.05,-1.51,10.753,19.436,11.167,-1.459,14.859,22.146,4.199,9.841,22.623,6.949,17.978,2.508,-9.178,-7.031,18.877,17.15,23.24,0.819,15.69,19.407,20.419,18.452,3.103,17.489,24.809,11.138,3.758,5.721,-2.297,13.024,18.252,18.803,5.269,5.094,3.353,17.818,5.998,11.616,6.853,9.795,8.493,18.155,9.903,24.386,5.341,2.776,-4.256,2.297,6.777,19.382,21.435,12.926,8.0,13.198],[25.196,22.338,11.287,14.831,10.836,15.3,4.498,1.597,5.998,21.167,27.539,28.372,7.124,0.912,14.714,19.202,11.371,17.223,13.174,13.904,8.958,0.041,17.176,14.305,6.926,0.084,6.998,23.273,13.595,16.022,0.84,11.79,6.66,16.704,9.586,-0.637,6.848,4.384,20.832,-8.395,2.659,10.292,18.24,15.779,-0.743,18.89,19.163,19.816,21.675,11.232,3.137,-2.88,6.074,25.015,19.668,6.785,6.526,11.871,7.89,4.101,19.641,3.735,17.013,11.357,21.505,22.657,7.988,14.444,5.617,1.586,7.367,3.335,26.988,13.272,5.322,27.986,22.392,1.492,25.878,24.288,15.912,13.881,12.258,10.717,9.888,12.358,14.803,29.006,4.304,20.697,8.784,26.979,-0.603,16.414,11.639,13.227,20.115,12.449,18.779,5.41,7.878,17.434,14.424,10.97,15.068,1.306,12.898,20.65,-1.354,13.395,16.93,6.683,14.927,17.703,22.039,0.862,15.927,-0.694,24.904,8.338,8.52,14.892,1.563,6.507,15.173,0.858,7.811,11.886,6.17,8.614,0.091,17.965,12.776,16.885,5.105,19.65,7.706,-1.776,10.613,19.776,10.012,-1.957,15.188,21.69,4.811,9.959,22.45,6.187,18.007,2.191,-9.251,-7.256,18.856,17.415,22.935,0.747,15.702,19.995,20.616,18.694,3.25,17.773,24.985,11.279,3.312,6.024,-2.06,12.63,18.28,18.718,5.335,5.288,4.002,17.813,5.804,11.232,6.987,9.677,8.583,18.374,9.625,24.297,5.502,2.388,-4.322,2.399,6.381,19.686,21.484,12.998,8.052,12.949],[25.362,22.378,11.057,14.885,10.924,15.38,4.207,1.57,6.093,21.185,27.676,28.231,7.064,1.162,14.543,19.668,11.303,17.265,13.099,13.672,9.015,-0.014,17.126,14.366,6.973,0.165,6.936,23.376,13.723,15.784,1.097,11.945,6.531,16.891,9.443,-0.831,6.613,4.696,20.774,-8.522,2.87,10.155,18.051,15.764,-0.552,18.937,19.279,19.945,21.491,11.093,3.055,-3.046,6.092,24.931,19.893,6.73,6.407,11.721,7.843,4.052,19.653,4.002,17.129,11.341,21.209,22.926,7.81,14.571,5.924,2.03,7.352,3.251,26.965,13.274,5.376,28.109,22.593,1.342,25.894,24.048,15.864,13.602,11.828,10.682,9.606,12.197,14.28,29.052,4.388,20.261,8.812,26.894,-0.494,16.267,11.452,14.096,19.869,12.929,18.694,5.657,8.441,17.345,14.272,11.518,14.835,0.85,13.131,20.631,-0.629,13.203,17.137,6.334,14.573,18.304,22.518,1.076,15.654,-0.538,25.038,8.636,8.588,14.973,1.874,6.237,15.47,0.504,7.78,12.295,5.963,8.459,0.866,18.092,12.937,17.139,4.991,19.699,7.573,-1.445,9.901,19.495,8.916,-2.031,14.936,21.668,5.394,9.668,22.521,6.275,17.551,2.324,-9.598,-7.494,18.642,17.266,22.976,1.038,15.783,19.716,20.611,18.941,3.446,17.781,25.283,11.369,3.316,5.831,-1.964,12.443,18.329,18.661,5.3,5.332,3.813,17.746,5.685,10.806,6.685,9.306,8.5,18.192,9.32,24.383,5.201,2.389,-3.9,2.323,6.535,19.649,21.321,13.145,8.049,13.118],[25.45,22.537,10.765,14.771,10.807,15.381,4.147,1.527,6.101,21.184,27.797,28.091,7.134,1.395,14.481,19.84,11.312,17.364,13.161,13.389,9.124,-0.015,16.906,14.479,7.132,0.281,6.962,23.484,13.897,15.708,1.278,12.132,6.335,17.048,9.193,-0.927,6.381,5.035,20.689,-8.676,3.039,9.952,17.747,15.674,-0.296,18.788,19.312,20.102,21.595,10.893,2.891,-3.159,6.119,24.871,20.033,6.59,6.441,11.594,7.78,4.002,19.638,4.076,17.115,11.235,21.459,22.789,7.753,14.852,5.672,2.061,7.658,3.286,27.033,13.148,5.138,28.329,23.022,1.831,26.055,24.491,16.154,13.792,11.984,11.3,9.579,12.385,13.965,29.344,4.406,20.471,8.514,26.46,-0.419,16.265,11.796,14.975,20.611,12.995,18.612,5.767,8.44,16.928,14.141,11.682,14.496,0.736,12.604,20.922,-0.737,13.673,16.975,5.981,14.563,18.52,22.567,1.095,16.129,-0.56,25.073,8.199,8.591,14.841,2.008,5.806,15.13,0.344,7.907,12.457,5.781,8.589,1.432,18.326,12.733,17.557,4.968,20.017,7.762,-1.384,9.755,18.6,9.138,-1.631,14.699,22.081,5.797,9.779,22.101,6.534,17.628,2.954,-9.409,-7.422,19.066,16.882,22.644,1.014,15.628,19.49,20.361,18.997,3.469,17.65,24.381,11.468,3.695,6.154,-2.24,12.506,18.234,18.854,5.774,4.863,4.12,17.736,5.75,11.064,6.416,8.868,8.381,18.461,9.193,24.346,4.668,2.55,-3.325,2.1,6.527,19.78,21.708,12.904,7.812,12.684],[25.484,22.829,10.498,14.521,10.645,15.422,4.288,1.518,6.038,21.231,27.913,28.181,7.29,1.432,14.483,19.899,11.369,17.342,13.209,13.237,9.29,-0.096,16.748,14.729,7.18,0.478,7.045,23.547,13.944,15.644,1.444,12.356,6.08,17.233,9.016,-0.981,6.344,5.22,20.657,-8.809,3.202,9.806,17.524,15.553,0.012,18.507,19.229,20.323,21.715,10.761,2.877,-3.155,6.068,24.772,20.096,6.427,6.55,11.522,7.69,3.853,19.642,4.09,17.177,10.963,21.679,22.46,7.873,15.148,5.505,1.831,8.054,3.291,26.878,12.768,5.011,28.486,23.039,1.528,26.166,25.182,16.007,14.103,11.493,11.105,9.3,12.112,14.266,29.126,4.231,20.652,8.218,26.678,-0.353,16.405,11.781,15.465,21.034,12.554,18.499,5.549,8.251,17.342,14.343,11.167,13.947,1.153,12.411,20.976,-0.843,13.987,16.66,6.76,14.68,18.154,22.003,1.025,16.087,-0.4,25.137,8.006,8.372,14.928,1.498,5.751,15.573,0.669,7.497,13.066,5.888,8.758,1.336,18.338,12.219,18.168,5.368,19.843,7.29,-1.634,9.876,18.08,10.057,-1.406,15.229,22.011,6.193,9.63,22.252,5.846,17.769,2.956,-9.506,-7.609,19.474,16.548,22.874,1.797,15.235,19.554,20.139,18.953,3.683,17.562,24.616,10.873,3.71,6.349,-2.724,13.1,18.159,19.24,5.687,5.008,4.45,17.944,5.737,11.166,6.321,8.806,8.278,18.332,8.888,24.246,4.624,2.124,-3.09,1.986,6.673,19.936,21.783,12.611,7.855,12.382],[25.614,22.976,10.234,14.233,10.447,15.423,4.434,1.548,5.987,21.217,28.033,28.352,7.468,1.373,14.613,20.137,11.309,17.303,13.318,13.171,9.462,-0.149,16.747,15.114,7.152,0.636,7.104,23.47,13.985,15.538,1.43,12.592,5.859,17.413,9.029,-1.056,6.319,5.363,20.607,-8.995,3.333,9.731,17.389,15.504,0.451,18.244,19.077,20.441,21.825,10.584,2.84,-3.167,5.948,24.822,19.986,6.214,6.608,11.587,7.596,3.829,19.658,4.163,17.392,10.663,21.727,22.204,7.75,15.056,5.674,1.739,8.278,3.274,27.134,12.509,5.215,28.316,23.284,1.248,26.226,25.003,15.441,13.958,11.503,10.571,8.934,11.779,14.855,29.07,4.037,20.818,8.436,26.872,-0.377,16.343,11.568,15.294,20.296,12.325,18.391,5.549,8.453,17.331,14.24,11.32,13.687,1.078,12.437,20.642,-0.934,13.965,16.709,6.769,14.697,17.794,22.748,0.591,15.783,-0.109,25.303,8.66,8.437,15.003,1.419,5.822,15.085,0.759,6.774,13.34,6.394,8.399,1.212,18.038,12.243,18.833,5.648,19.824,7.155,-1.594,9.798,18.65,10.402,-0.548,14.637,22.025,5.799,9.349,22.473,5.33,17.464,2.726,-9.748,-8.039,19.44,16.749,23.219,2.027,15.605,19.543,20.064,19.351,4.163,17.836,25.11,10.694,4.028,5.583,-2.184,13.09,18.298,19.314,5.057,5.166,4.006,17.879,5.716,10.548,6.599,8.674,7.951,18.084,8.687,24.054,4.634,1.878,-3.417,2.083,7.051,19.708,21.822,12.355,8.281,12.471],[25.815,22.99,10.141,14.081,10.273,15.306,4.593,1.582,5.843,21.139,28.117,28.399,7.651,1.446,14.695,20.127,11.281,17.284,13.439,13.177,9.64,-0.284,16.809,15.444,7.126,0.612,7.117,23.549,13.948,15.298,1.306,12.85,5.841,17.603,9.078,-1.002,6.319,5.427,20.58,-9.154,3.383,9.541,17.494,15.466,0.801,18.137,19.053,20.347,21.807,10.442,2.722,-3.022,5.718,24.955,19.824,6.025,6.731,11.639,7.486,3.95,19.694,4.156,17.613,10.436,21.686,21.938,7.566,14.518,5.69,2.083,7.839,3.438,27.391,12.347,5.677,28.458,23.615,1.73,26.309,24.602,15.672,13.997,11.542,10.536,8.831,11.97,14.803,29.391,4.431,20.929,9.156,26.838,-0.389,16.399,11.615,14.597,20.827,12.687,18.033,5.518,9.188,16.983,13.831,11.085,13.81,0.766,12.581,21.302,-0.735,14.161,16.309,6.21,14.645,18.016,22.879,0.612,15.791,-0.268,25.285,9.045,8.435,15.032,2.068,6.302,15.119,0.464,6.929,12.99,6.226,8.174,0.8,17.803,12.339,18.799,5.948,19.602,7.029,-1.88,9.721,18.861,9.947,0.437,14.625,21.464,5.655,9.407,22.541,5.322,17.045,2.911,-10.149,-8.313,19.196,16.772,23.109,2.442,16.15,19.484,19.795,19.249,4.535,17.806,24.536,10.677,3.933,5.444,-2.47,12.863,18.239,18.84,5.359,4.871,3.623,17.467,5.197,10.181,6.586,8.564,7.724,18.865,8.652,24.243,4.331,1.778,-3.742,2.276,6.797,19.877,21.542,12.221,8.267,12.269],[25.919,23.096,10.193,14.031,10.248,15.113,4.836,1.548,5.832,21.03,28.287,28.415,7.82,1.545,14.756,20.181,11.295,17.316,13.364,13.353,9.961,-0.424,16.774,15.496,6.962,0.576,7.056,23.7,13.778,14.988,1.088,13.016,5.925,17.716,9.157,-1.01,6.375,5.559,20.53,-9.298,3.348,9.32,17.683,15.557,0.964,17.998,19.173,20.149,21.748,10.371,2.63,-2.881,5.579,24.866,19.667,5.829,6.683,11.534,7.387,4.005,19.781,4.194,17.705,10.41,21.599,21.943,7.454,14.139,5.191,2.751,7.555,3.29,27.42,12.311,5.683,28.485,23.27,1.61,26.463,24.618,16.034,14.026,11.191,10.099,8.87,11.815,14.06,29.624,4.953,21.073,9.551,27.0,-0.01,16.588,12.03,14.364,21.005,12.736,18.363,5.42,9.558,17.524,14.575,11.115,13.593,1.171,12.506,21.331,-0.431,14.474,16.162,6.55,15.066,18.166,22.382,0.341,15.645,-0.695,25.255,8.406,8.379,14.96,2.426,6.944,15.031,0.457,7.369,12.651,5.278,8.355,0.818,17.582,12.579,18.49,5.816,19.37,7.355,-1.971,9.751,18.725,9.042,0.545,15.351,21.63,6.495,9.569,22.308,5.24,17.025,3.071,-10.333,-7.705,18.972,16.505,22.969,2.817,15.752,19.336,19.738,19.204,4.854,18.147,24.854,10.716,3.265,5.791,-2.734,12.818,18.185,18.445,5.47,5.196,4.088,18.006,4.945,9.976,6.22,8.534,7.605,18.689,8.447,24.327,4.278,1.731,-4.046,2.298,6.432,19.64,21.368,12.083,8.205,12.618],[25.901,23.207,10.187,13.934,10.173,14.785,5.109,1.451,5.906,21.062,28.443,28.444,7.929,1.721,14.8,20.222,11.377,17.455,13.488,13.556,10.177,-0.442,16.698,15.589,6.868,0.51,7.165,23.705,13.523,14.722,0.778,13.115,5.952,17.685,9.351,-1.122,6.343,5.956,20.414,-9.353,3.306,9.18,17.754,15.775,0.984,17.984,19.261,20.107,21.65,10.359,2.5,-3.0,5.65,24.674,19.513,5.661,6.501,11.489,7.364,4.143,19.766,4.403,17.665,10.4,22.058,22.114,7.495,14.038,5.352,2.811,7.906,3.196,27.584,12.312,5.258,28.518,23.285,1.259,26.669,25.073,15.118,14.224,11.616,10.222,8.881,11.69,13.933,29.65,4.968,20.848,9.702,26.999,-0.069,16.675,11.989,14.675,20.886,12.551,18.564,5.335,10.055,17.447,14.784,11.03,14.001,1.177,12.156,21.028,-0.442,14.471,15.859,6.362,14.92,17.996,22.769,-0.46,15.936,-0.894,25.249,8.524,8.642,14.567,2.205,6.497,14.432,0.436,7.089,13.155,4.789,8.433,1.212,17.803,12.054,18.625,5.98,19.763,7.768,-2.35,9.569,19.121,8.093,0.342,15.313,21.89,6.154,9.686,22.494,5.489,17.069,2.872,-10.424,-7.793,19.256,16.607,22.839,2.382,14.965,19.676,19.525,18.834,4.917,17.991,24.537,10.836,3.859,5.427,-1.976,12.375,18.361,18.973,5.42,5.549,3.928,18.144,4.836,10.291,6.203,8.488,7.492,18.576,8.556,24.146,4.428,1.748,-3.971,2.433,6.652,19.927,21.394,11.958,8.172,12.94],[25.826,23.376,10.2,13.859,10.102,14.249,5.217,1.308,6.002,21.387,28.535,28.489,8.035,1.829,14.913,20.126,11.491,17.339,13.746,13.688,10.458,-0.621,16.486,15.751,6.802,0.433,7.441,23.699,13.236,14.484,0.565,13.122,5.842,17.588,9.533,-1.148,6.411,6.21,20.279,-9.417,3.25,9.051,17.81,15.9,0.882,18.027,19.296,20.174,21.619,10.499,2.516,-3.162,5.636,24.428,19.612,5.524,6.557,11.444,7.284,4.433,19.707,4.622,17.587,10.395,21.976,22.235,7.469,13.88,5.359,2.16,8.416,3.013,27.581,12.082,5.924,28.684,23.916,1.202,26.767,25.112,14.625,14.321,11.492,10.594,8.736,11.756,14.113,29.715,4.943,20.441,9.549,27.155,-0.02,16.639,12.409,15.71,20.948,12.427,18.297,5.102,10.266,16.788,14.442,11.129,14.275,0.871,11.663,21.322,-1.041,14.38,15.348,6.375,15.194,18.377,22.46,-0.336,15.893,-1.11,25.358,9.062,8.47,14.461,1.836,6.125,14.49,0.295,7.203,13.461,4.811,8.673,0.692,18.18,11.688,18.435,5.904,19.735,7.321,-2.323,9.615,19.284,7.724,0.158,15.35,21.938,6.662,9.621,22.381,5.756,16.991,2.382,-10.141,-8.369,19.248,17.025,22.967,2.405,15.044,19.713,19.699,18.856,4.774,18.285,24.597,11.146,3.832,5.713,-2.318,11.824,18.458,18.787,4.764,5.579,4.072,17.748,4.918,10.717,6.424,8.306,7.375,18.352,8.818,24.053,4.613,1.922,-3.527,2.733,6.726,20.515,21.322,12.048,7.718,12.871],[25.698,23.472,10.031,13.768,10.13,13.81,5.167,1.201,6.133,21.644,28.57,28.602,8.125,1.79,15.072,20.084,11.689,17.044,13.974,13.736,10.725,-0.847,16.225,16.031,6.74,0.327,7.761,23.642,13.175,14.41,0.411,13.09,5.715,17.465,9.533,-1.125,6.568,6.264,20.224,-9.48,3.163,8.912,17.846,15.926,0.726,18.027,19.46,20.179,21.602,10.764,2.62,-3.269,5.727,24.328,19.554,5.529,6.801,11.268,7.128,4.759,19.726,4.614,17.597,10.346,22.083,22.109,7.497,14.251,4.808,1.789,8.896,2.958,27.176,11.876,6.049,28.643,23.758,0.815,27.002,24.757,14.836,14.316,11.502,10.341,8.884,11.58,13.421,29.29,5.296,21.156,9.425,27.124,-0.035,16.903,12.396,15.763,20.275,12.252,18.025,5.086,10.299,16.63,14.513,10.814,14.193,0.346,11.887,21.562,-1.26,14.544,15.42,6.718,15.336,17.413,22.508,0.561,15.614,-1.314,25.408,9.351,8.239,14.357,1.647,6.612,14.024,0.293,7.28,13.225,5.423,8.913,0.455,18.329,11.498,17.872,6.458,19.027,7.118,-1.676,10.199,19.095,8.144,-0.195,15.733,21.732,7.353,9.816,22.089,5.607,17.101,2.208,-9.913,-8.243,19.066,17.022,22.915,2.595,16.095,19.763,19.695,19.103,4.494,18.21,24.642,11.208,3.858,5.556,-2.936,12.144,18.213,18.545,4.824,5.833,4.195,18.053,5.074,10.268,6.618,8.156,7.381,18.529,8.901,24.043,4.896,2.101,-3.232,3.052,7.046,19.622,21.461,12.09,8.034,12.817],[25.496,23.5,9.819,13.74,10.064,13.525,5.082,1.114,6.169,21.735,28.529,28.732,8.351,1.557,15.21,19.987,11.892,16.594,14.009,13.756,10.873,-0.954,16.063,16.312,6.783,0.267,8.11,23.605,13.22,14.487,0.28,13.042,5.729,17.227,9.546,-1.083,6.736,6.317,20.279,-9.437,3.059,8.938,17.754,15.983,0.595,18.063,19.528,20.178,21.414,11.028,2.659,-3.388,5.936,24.306,19.365,5.657,7.038,11.106,6.943,5.009,19.616,4.44,17.765,10.236,22.282,22.074,7.406,14.659,4.947,2.302,9.032,2.862,27.176,11.965,5.634,28.792,23.272,0.896,27.331,24.454,14.115,14.185,11.425,10.214,8.832,11.768,13.483,29.333,5.097,22.442,9.552,27.069,-0.059,16.998,12.414,15.402,20.821,12.384,17.664,5.374,10.86,16.875,15.281,10.814,14.001,0.088,11.791,21.215,-1.157,15.32,15.766,6.188,15.352,17.157,22.753,0.055,14.958,-1.278,25.096,9.382,8.463,14.292,1.612,7.165,13.964,0.35,7.25,12.638,6.077,8.631,0.179,17.983,11.496,18.087,6.944,19.08,7.481,-1.872,10.83,19.155,8.732,0.271,15.767,21.215,6.696,9.427,22.077,5.415,16.812,2.411,-10.015,-7.81,19.314,16.757,22.86,2.339,17.024,19.598,19.567,18.857,4.038,18.456,24.613,11.293,3.944,5.888,-2.576,12.324,18.124,18.553,5.439,6.504,4.103,18.093,5.224,9.908,6.385,8.081,7.496,18.823,9.224,24.089,4.831,1.756,-3.4,3.282,7.505,19.294,21.104,11.784,8.418,12.254],[25.402,23.488,9.625,13.83,10.008,13.369,4.932,1.117,6.155,21.737,28.43,28.808,8.725,1.345,15.097,19.895,12.093,16.262,14.0,13.806,10.892,-1.135,15.933,16.536,6.705,0.253,8.356,23.525,13.195,14.625,0.246,13.005,5.918,17.03,9.7,-1.095,6.959,6.188,20.417,-9.363,2.941,9.043,17.635,16.145,0.571,18.044,19.496,20.082,21.283,11.242,2.622,-3.356,6.218,24.313,19.239,5.84,7.061,11.028,6.817,5.09,19.411,4.348,17.999,10.187,22.432,22.245,7.38,14.739,5.355,2.58,8.673,2.883,27.195,12.115,5.418,28.977,23.463,0.885,27.812,24.764,14.491,14.775,11.329,10.034,8.526,11.534,13.585,29.877,4.878,23.253,10.42,27.195,-0.374,16.864,12.568,15.271,20.799,12.687,17.412,5.137,11.336,16.177,15.267,11.55,14.342,0.386,11.603,21.067,-1.086,15.656,16.022,6.351,15.234,17.218,22.488,-0.753,14.63,-1.272,25.158,9.585,8.762,14.171,1.641,7.043,14.71,0.459,7.202,12.643,5.753,8.504,-0.179,17.136,11.487,18.226,6.688,19.701,7.74,-2.308,10.383,18.714,9.186,0.647,15.122,21.136,6.718,9.356,21.85,5.749,16.768,2.48,-10.035,-7.926,19.643,16.325,22.762,2.308,17.162,19.735,19.634,18.566,3.536,18.779,24.29,11.792,3.622,5.999,-2.602,12.265,18.224,18.498,4.72,6.487,4.124,18.057,5.427,10.277,6.174,7.803,7.696,18.462,9.459,23.961,4.671,1.658,-3.712,3.536,7.949,19.599,21.027,11.713,8.142,12.026],[25.467,23.546,9.449,13.981,10.005,13.422,4.65,1.197,6.104,21.734,28.338,28.883,9.138,1.265,14.893,19.921,12.36,16.068,13.923,13.916,10.935,-1.41,15.795,16.639,6.518,0.217,8.474,23.429,13.201,14.832,0.223,13.004,6.138,16.959,9.89,-1.18,7.139,5.911,20.631,-9.383,2.886,9.107,17.487,16.323,0.672,17.925,19.532,19.881,21.206,11.402,2.661,-3.266,6.413,24.259,19.167,6.09,7.031,11.083,6.687,5.029,19.283,4.206,18.145,10.391,22.162,21.867,7.524,14.609,5.192,2.361,8.577,2.556,27.194,12.05,5.692,28.728,23.629,0.93,28.152,24.885,14.776,14.523,10.975,10.085,8.293,11.61,13.647,29.801,5.163,23.344,10.837,27.141,-0.447,16.573,12.349,15.612,19.815,12.674,17.627,4.843,11.131,15.687,15.077,11.745,14.483,0.058,11.581,21.328,-0.747,15.388,15.886,6.314,15.305,17.031,22.036,-0.524,15.34,-1.44,24.975,9.555,9.203,13.782,2.065,6.922,14.905,0.321,6.877,12.969,5.01,8.707,0.18,16.152,11.52,17.7,6.004,19.556,8.139,-2.464,9.511,18.371,9.142,0.393,14.897,21.764,7.295,9.907,21.884,6.771,17.12,2.006,-9.973,-8.286,19.054,16.596,22.253,2.138,16.787,19.974,19.676,18.566,3.172,18.627,24.561,12.358,4.042,6.189,-2.404,11.694,18.058,18.154,4.572,6.335,4.098,18.177,5.56,10.005,6.349,7.506,7.926,18.959,9.668,23.847,5.009,1.643,-3.833,3.368,7.998,19.531,21.011,11.789,7.898,12.635],[25.476,23.592,9.329,14.106,10.083,13.678,4.378,1.244,6.088,21.739,28.181,29.003,9.415,1.192,14.818,19.958,12.503,15.929,13.844,14.011,10.966,-1.484,15.938,16.518,6.268,0.278,8.533,23.304,13.12,15.027,0.117,13.137,6.261,16.846,9.875,-1.331,7.35,5.752,20.867,-9.441,2.905,9.318,17.363,16.451,0.69,17.775,19.649,19.685,20.932,11.533,2.773,-3.269,6.565,24.192,19.156,6.413,7.001,11.213,6.556,4.85,19.219,4.088,18.19,10.606,22.161,21.878,7.006,14.012,4.634,1.809,9.122,2.642,27.312,12.286,5.627,28.703,23.374,1.383,28.466,24.967,13.925,13.885,10.597,10.247,8.142,11.606,13.772,29.388,4.739,22.921,11.002,27.156,-0.578,16.506,12.578,16.31,20.308,13.147,17.715,4.654,11.157,15.915,14.797,11.264,14.387,-0.288,11.852,21.373,-0.627,15.024,15.827,5.87,15.482,16.671,21.985,-0.726,15.364,-1.74,24.873,9.402,9.412,14.136,2.083,7.121,14.176,0.105,6.991,13.068,4.947,8.645,0.374,15.541,11.365,17.416,5.374,19.516,8.261,-2.315,10.375,18.748,8.568,0.013,15.581,22.102,6.818,9.494,21.895,6.534,16.875,1.844,-10.308,-8.241,18.825,16.826,22.236,2.314,16.047,20.118,19.529,18.372,2.98,18.583,24.745,12.724,4.279,6.331,-2.357,11.475,17.781,17.958,4.984,6.436,3.966,18.371,5.288,10.6,5.897,7.588,8.11,18.849,10.027,23.745,5.373,1.999,-3.656,3.245,8.157,19.567,20.816,12.304,8.347,12.954],[25.45,23.541,9.236,14.162,10.133,13.982,4.217,1.365,6.03,21.597,28.036,29.047,9.554,1.04,14.992,20.071,12.433,15.833,13.914,13.996,10.872,-1.41,16.147,16.359,6.052,0.295,8.548,23.131,13.057,14.902,-0.014,13.172,6.211,16.637,9.839,-1.521,7.393,5.546,21.117,-9.468,2.979,9.486,17.365,16.443,0.653,17.662,19.754,19.559,20.764,11.693,2.885,-3.18,6.74,24.179,19.044,6.524,7.192,11.28,6.442,4.705,19.18,4.204,18.194,10.848,22.43,22.246,6.792,13.856,4.396,1.275,9.967,2.7,27.254,12.543,4.951,28.96,23.498,1.139,28.285,24.875,14.88,14.05,10.535,10.385,8.267,11.884,13.27,29.473,4.461,22.377,10.839,27.251,-0.838,16.894,12.18,16.373,20.509,13.629,18.042,4.613,11.106,16.139,14.714,11.338,14.606,-0.017,11.687,21.42,-0.929,14.574,16.34,5.97,15.391,16.376,22.169,-0.926,15.577,-1.55,24.992,9.682,9.505,14.253,1.641,7.072,14.387,0.02,7.67,13.69,5.998,8.5,-0.282,15.321,11.43,17.66,6.165,19.766,7.988,-2.172,10.868,18.697,8.566,-0.277,16.355,21.49,6.324,9.662,21.353,6.703,16.423,1.864,-10.044,-8.05,19.186,16.38,22.158,2.197,15.872,20.296,19.01,18.131,2.989,18.577,24.519,12.725,3.919,6.347,-3.312,11.522,17.973,18.364,4.499,6.18,3.777,18.186,5.554,10.729,6.106,7.386,8.489,18.613,10.141,23.859,5.756,2.399,-3.798,3.219,7.525,19.54,20.874,12.619,8.426,12.946],[25.43,23.503,9.196,14.233,10.116,14.43,4.171,1.423,5.961,21.315,28.013,29.063,9.608,0.785,15.211,20.278,12.326,15.757,13.98,13.903,10.879,-1.383,16.583,16.287,6.013,0.22,8.507,22.952,13.019,14.756,-0.1,13.147,6.175,16.528,9.802,-1.58,7.373,5.447,21.249,-9.345,2.988,9.693,17.353,16.368,0.476,17.63,19.781,19.464,20.696,11.872,2.893,-3.143,6.897,24.224,19.017,6.493,7.348,11.375,6.423,4.681,19.148,4.243,18.097,11.055,22.358,21.519,6.747,14.009,4.338,1.055,10.713,2.506,27.323,12.578,5.298,29.013,23.485,0.609,27.492,24.684,15.615,14.762,10.832,10.635,8.357,11.636,13.733,29.939,4.262,22.291,10.606,27.32,-1.017,16.969,12.233,15.865,20.41,13.051,18.288,4.631,10.536,15.931,14.746,11.982,14.572,-0.085,11.382,21.279,-1.063,14.7,15.836,5.317,15.287,16.872,21.962,-0.319,15.466,-1.536,24.706,9.417,9.427,13.708,1.843,6.926,14.52,-0.178,7.474,13.973,6.861,8.16,-0.589,15.36,11.281,17.666,6.389,20.115,7.916,-2.517,10.424,18.596,9.203,-0.347,16.363,21.741,6.466,9.737,21.257,6.881,16.32,2.322,-9.776,-7.886,18.8,16.249,22.217,2.306,15.984,20.202,19.138,18.028,3.176,18.635,24.534,12.169,4.206,6.689,-3.779,12.115,18.166,18.172,4.61,5.67,3.858,18.033,6.06,10.498,6.555,6.905,8.44,18.745,10.13,23.46,6.128,2.058,-3.907,2.904,7.522,19.719,20.769,12.254,8.669,12.761],[25.424,23.419,9.271,14.287,10.062,14.887,4.17,1.301,5.952,21.184,28.026,29.076,9.689,0.492,15.318,20.406,12.234,15.737,13.91,13.753,10.796,-1.272,16.884,16.318,5.911,0.193,8.469,22.812,12.904,14.711,-0.231,13.063,6.149,16.624,9.651,-1.641,7.293,5.424,21.335,-9.234,2.954,10.014,17.483,16.184,0.207,17.681,19.673,19.235,20.722,11.814,2.841,-3.267,7.183,24.162,19.045,6.473,7.439,11.646,6.554,4.601,19.308,4.163,17.869,11.06,22.125,21.613,6.517,14.087,4.284,1.237,11.203,2.445,27.291,12.609,5.449,28.829,23.411,0.747,26.811,24.856,15.768,14.944,10.89,10.36,8.5,11.455,14.295,30.181,4.556,22.347,10.14,27.53,-1.148,17.241,12.657,15.552,20.862,12.697,18.804,4.722,10.324,15.918,15.155,12.204,14.367,-0.197,11.229,21.702,-0.816,15.139,15.825,5.62,15.154,17.258,21.757,-0.386,15.533,-1.628,24.444,9.62,9.063,13.328,2.017,6.81,14.123,0.089,7.229,13.636,6.927,8.394,-0.3,15.135,11.368,17.534,6.139,20.127,8.49,-2.785,10.291,18.388,9.701,-0.034,15.677,22.218,6.688,10.099,21.092,6.261,16.882,2.604,-9.765,-8.453,18.449,16.831,22.138,2.093,16.136,20.475,19.405,17.744,3.586,18.633,24.674,12.224,4.09,6.586,-3.497,12.676,17.942,17.962,5.104,5.686,3.863,18.17,5.788,11.042,6.084,6.914,8.193,18.443,10.348,23.608,6.115,1.99,-3.876,2.806,7.792,19.69,20.799,12.517,8.47,12.862],[25.459,23.351,9.404,14.37,10.017,15.208,4.18,1.076,5.92,21.441,27.968,29.01,9.78,0.356,15.452,20.447,12.192,15.795,13.915,13.564,10.657,-1.134,16.754,16.374,5.99,0.279,8.456,22.835,12.63,14.882,-0.249,12.926,6.1,16.753,9.597,-1.677,7.243,5.416,21.49,-9.231,2.92,10.322,17.678,15.839,0.126,17.95,19.55,18.917,20.717,11.697,2.827,-3.533,7.354,24.039,19.079,6.424,7.493,11.999,6.664,4.523,19.523,4.178,17.549,11.016,21.793,22.35,6.957,14.216,4.154,1.132,11.451,2.683,27.27,12.852,5.276,28.795,23.45,0.952,26.569,24.761,15.896,14.586,10.744,9.875,8.387,11.609,14.42,30.257,4.561,22.659,10.043,27.315,-1.363,17.264,12.34,15.433,20.401,13.371,18.68,4.441,10.471,16.245,14.931,11.421,14.195,0.285,11.477,21.896,-0.983,15.576,15.935,5.294,15.02,16.94,21.635,-1.044,16.297,-1.654,24.485,9.581,8.883,13.42,1.887,6.83,14.23,-0.13,7.598,13.371,6.527,8.611,-0.732,14.977,11.57,17.461,5.634,20.037,7.814,-2.43,10.179,18.382,10.093,-0.932,15.336,21.709,6.654,10.102,21.5,6.372,17.1,2.433,-10.054,-8.37,18.508,16.856,22.229,1.764,16.186,20.216,19.414,17.673,3.854,18.353,24.846,12.61,3.921,7.004,-2.539,13.047,18.007,17.999,4.686,5.819,3.519,18.304,5.921,10.617,6.512,7.453,8.341,18.535,10.282,23.478,6.392,2.008,-3.631,2.908,7.443,19.843,20.818,12.667,8.556,13.208],[25.54,23.313,9.539,14.586,9.981,15.429,4.136,0.941,6.017,21.794,27.914,28.968,9.922,0.368,15.418,20.283,12.16,15.763,13.933,13.503,10.565,-1.142,16.709,16.569,5.999,0.283,8.443,22.87,12.352,15.098,-0.105,12.774,6.025,16.849,9.582,-1.42,7.184,5.335,21.467,-9.27,2.872,10.479,17.775,15.582,-0.07,18.347,19.351,18.77,20.744,11.673,2.776,-3.718,7.368,23.999,19.132,6.513,7.414,12.243,6.757,4.59,19.666,4.128,17.275,10.854,22.018,22.039,7.202,14.519,4.419,0.746,11.265,2.371,27.418,12.966,5.278,29.111,23.574,0.482,26.48,24.69,15.658,14.257,10.803,9.796,8.396,11.617,14.173,29.769,4.083,23.139,10.365,27.182,-1.487,17.156,12.168,15.675,20.474,13.617,18.564,4.743,10.087,16.254,14.784,11.405,14.136,0.312,11.675,21.409,-1.096,15.28,16.213,5.384,14.687,17.257,21.614,-0.454,16.11,-1.706,24.668,9.627,9.442,13.794,1.762,7.089,14.164,-0.55,7.844,12.737,6.023,8.064,-0.562,14.982,12.142,17.445,5.565,20.302,7.7,-2.895,10.363,19.253,10.264,-1.374,15.32,21.857,6.368,9.979,21.49,6.391,17.252,2.185,-10.11,-7.891,17.877,16.722,22.155,1.684,15.373,20.146,19.544,17.345,3.881,18.473,24.54,12.083,4.108,6.918,-2.958,13.348,18.217,18.408,4.66,5.724,3.922,18.028,6.033,10.256,6.549,7.793,8.243,18.118,10.351,23.516,6.627,2.456,-3.92,2.738,7.277,20.013,20.977,12.369,8.891,13.208],[25.666,23.322,9.562,14.829,9.975,15.477,4.037,0.871,6.195,22.024,27.817,28.904,10.087,0.353,15.217,20.094,12.136,15.683,13.889,13.52,10.463,-1.111,16.788,16.805,6.002,0.144,8.54,22.939,12.267,15.178,0.024,12.544,5.865,16.987,9.472,-1.347,7.103,5.12,21.484,-9.339,2.826,10.564,17.898,15.48,-0.42,18.665,19.271,18.564,20.757,11.691,2.798,-3.915,7.262,24.087,19.118,6.673,7.303,12.28,6.86,4.687,19.711,4.161,16.942,10.663,21.855,22.074,7.38,14.694,4.61,0.661,10.77,2.058,27.208,13.036,5.421,28.929,23.338,0.182,27.013,25.3,16.215,14.522,11.038,10.187,8.902,11.507,14.658,29.288,4.41,23.552,11.194,27.091,-1.443,16.915,12.271,16.034,20.446,13.352,18.532,4.437,9.292,15.848,14.946,12.043,14.393,0.039,11.168,21.12,-0.638,15.478,16.57,5.747,14.895,17.248,21.836,-0.233,15.643,-1.274,24.571,9.956,9.857,13.577,1.624,7.028,14.381,0.141,7.586,12.716,6.122,8.177,0.579,15.214,12.064,17.314,5.851,19.807,8.437,-2.794,10.02,18.931,10.031,-0.863,15.237,22.171,6.228,10.255,21.289,6.19,18.142,2.796,-9.789,-7.715,17.628,16.974,22.129,1.241,14.678,20.103,20.261,17.532,3.723,18.128,23.857,12.396,3.831,6.781,-3.32,13.641,18.224,18.5,5.042,5.618,3.96,17.516,5.987,10.658,6.398,7.488,8.416,18.075,10.387,23.521,6.254,2.475,-4.096,2.885,7.434,20.089,21.0,12.261,8.293,13.075],[25.703,23.241,9.514,14.9,10.108,15.575,4.13,0.75,6.363,22.13,27.626,28.735,10.214,0.394,14.953,19.927,12.328,15.512,13.873,13.614,10.328,-0.928,16.992,16.849,6.105,0.042,8.613,22.98,12.244,15.194,0.323,12.295,5.685,17.055,9.37,-1.433,7.036,4.907,21.468,-9.408,2.864,10.502,17.885,15.431,-0.741,18.976,19.4,18.462,20.706,11.758,2.914,-4.101,7.113,24.109,19.083,6.818,7.191,12.205,6.929,4.748,19.651,4.311,16.671,10.733,21.874,22.37,7.817,15.044,4.898,0.672,10.449,2.198,27.577,13.129,5.209,28.764,22.945,0.565,27.77,25.524,16.006,14.463,11.04,10.458,9.386,11.481,15.128,29.392,4.511,23.435,11.921,26.896,-1.424,16.643,12.133,15.676,20.441,13.506,18.781,4.474,9.239,15.909,14.802,11.42,14.575,0.446,11.007,21.431,-0.872,15.92,16.356,5.251,14.814,16.922,21.728,-0.648,16.293,-1.231,24.621,10.043,9.821,13.32,1.655,7.076,14.6,0.251,7.134,13.218,6.029,8.451,0.604,15.214,11.484,17.6,5.733,20.239,8.246,-2.113,10.012,18.89,9.72,-0.539,15.018,22.033,5.898,10.564,21.515,6.829,18.302,3.618,-9.881,-7.944,17.423,16.808,22.005,1.17,15.151,20.3,20.458,17.478,3.662,18.5,24.577,12.267,4.06,6.869,-3.084,13.368,18.489,18.259,5.224,5.712,3.557,17.237,6.416,10.293,6.668,7.248,8.629,18.156,10.318,23.709,5.656,1.955,-3.649,3.086,6.842,19.851,20.876,11.913,8.185,13.149],[25.677,23.167,9.558,14.924,10.308,15.739,4.335,0.773,6.61,22.233,27.521,28.562,10.322,0.55,14.693,19.851,12.508,15.395,13.842,13.519,10.302,-0.671,17.208,16.671,6.097,-0.04,8.543,22.941,12.207,15.084,0.651,12.108,5.54,16.956,9.361,-1.532,7.023,4.655,21.513,-9.3,2.923,10.238,17.689,15.422,-0.845,19.082,19.6,18.474,20.733,11.69,3.082,-3.934,6.877,24.198,19.117,7.058,7.09,12.155,6.924,4.786,19.617,4.408,16.533,10.722,21.842,22.672,7.887,15.219,5.07,0.378,10.161,2.03,27.441,13.231,5.193,28.522,23.455,0.758,27.816,24.77,15.955,13.802,10.778,10.557,9.248,11.899,14.939,29.322,4.392,22.89,12.023,26.991,-1.032,16.551,12.032,15.415,20.159,13.737,19.057,5.53,9.902,16.211,14.786,11.879,14.748,0.699,11.287,21.277,-1.175,15.686,16.435,5.054,14.502,16.58,21.707,-0.72,16.777,-0.855,24.723,9.342,9.767,13.353,1.547,7.26,14.656,0.032,7.261,13.644,5.628,7.933,-0.098,15.376,11.272,17.985,5.198,20.503,7.74,-2.598,10.318,19.074,10.13,-0.911,14.64,22.147,5.885,10.103,21.981,6.996,18.288,3.511,-10.237,-8.413,17.345,16.804,21.87,0.752,15.764,20.058,20.387,17.227,4.007,18.707,24.387,12.459,4.301,7.033,-3.487,12.78,18.218,18.393,4.983,5.955,3.73,17.565,6.481,10.533,6.701,7.495,8.816,17.78,10.275,23.81,5.654,2.417,-3.684,3.116,7.52,19.341,20.95,12.24,8.302,13.151],[25.555,23.283,9.715,14.939,10.454,15.889,4.435,0.877,6.905,22.289,27.444,28.442,10.33,0.734,14.493,19.718,12.614,15.517,13.721,13.35,10.29,-0.487,17.423,16.343,6.247,-0.045,8.415,22.954,12.115,15.025,0.79,12.058,5.549,16.956,9.377,-1.522,6.924,4.355,21.651,-9.128,2.899,9.967,17.452,15.434,-0.927,19.019,19.511,18.408,20.902,11.558,3.328,-3.628,6.66,24.301,19.161,7.237,7.047,12.083,6.873,4.849,19.48,4.412,16.568,10.789,21.971,22.945,7.998,15.157,5.408,0.032,10.157,1.942,27.207,13.175,5.619,28.679,23.509,0.651,27.707,24.646,16.584,13.909,10.744,10.394,8.765,12.325,14.794,29.175,4.785,23.065,11.934,27.084,-0.492,16.22,11.986,15.639,20.076,14.05,19.191,4.987,9.983,15.779,14.616,11.952,14.207,0.692,11.351,20.959,-1.194,15.145,16.433,5.281,14.719,16.627,21.85,-0.184,16.51,-0.244,24.591,8.918,9.85,13.395,1.672,7.247,14.04,-0.456,7.353,13.44,5.146,8.127,-0.379,15.292,11.742,17.529,4.741,19.994,8.034,-3.23,9.871,18.315,10.204,-1.299,14.997,22.429,5.529,9.769,21.683,6.698,18.631,2.67,-10.007,-8.081,17.412,16.798,21.929,1.088,16.004,20.491,20.388,17.239,4.365,18.38,23.998,12.596,3.821,6.891,-3.172,13.033,18.097,18.358,5.235,5.954,4.085,17.776,6.226,10.809,6.106,7.651,9.162,17.839,10.124,23.663,5.743,2.914,-4.112,2.969,7.66,19.35,20.97,12.47,8.459,13.237],[25.446,23.456,9.853,14.827,10.419,16.11,4.444,0.88,7.287,22.292,27.443,28.286,10.275,0.876,14.514,19.461,12.62,15.637,13.568,13.251,10.188,-0.453,17.52,15.932,6.331,0.094,8.279,23.065,12.028,14.965,0.743,12.22,5.558,16.927,9.423,-1.495,6.732,4.06,21.769,-8.936,2.834,9.934,17.23,15.519,-0.873,19.035,19.344,18.35,20.92,11.382,3.531,-3.349,6.53,24.291,19.197,7.219,6.988,12.073,6.757,4.917,19.252,4.5,16.742,11.034,22.253,22.954,8.313,15.197,5.58,0.057,10.294,2.512,27.287,13.003,5.195,29.165,23.495,0.737,27.587,25.065,16.796,13.755,11.055,10.537,8.526,12.183,15.131,29.323,5.071,23.646,11.263,27.165,-0.122,16.089,12.042,15.516,20.06,13.938,19.326,4.755,9.619,15.982,14.716,12.255,13.708,0.552,10.976,21.035,-1.101,14.323,16.126,5.677,14.815,17.216,21.71,0.025,16.722,-0.343,24.647,9.195,9.639,13.349,1.705,6.871,13.91,-1.038,7.381,12.802,5.049,8.514,-0.057,15.338,11.908,17.476,4.487,20.195,8.057,-2.741,10.13,18.764,9.445,-1.541,14.995,22.318,5.365,9.685,21.77,6.945,18.149,2.805,-9.742,-7.926,17.117,16.518,22.349,0.878,15.775,20.159,20.081,17.435,4.052,18.403,24.507,11.828,3.768,6.746,-2.487,13.167,17.992,18.158,5.356,5.698,4.015,17.824,6.776,10.882,6.271,7.713,8.916,18.134,9.983,24.066,5.369,2.757,-3.63,3.155,7.259,19.614,20.862,12.486,8.413,13.028],[25.434,23.576,9.883,14.675,10.429,16.323,4.359,0.935,7.594,22.439,27.653,28.229,10.165,1.008,14.633,19.263,12.539,15.738,13.558,13.189,10.05,-0.524,17.451,15.562,6.406,0.349,8.093,23.208,12.004,14.809,0.591,12.398,5.419,16.84,9.587,-1.515,6.617,3.921,21.822,-8.963,2.869,9.96,17.335,15.528,-0.86,18.975,19.307,18.367,20.873,11.197,3.617,-3.068,6.396,24.337,19.213,7.225,6.999,12.006,6.737,5.01,19.217,4.58,16.882,11.3,22.437,22.751,8.446,15.318,6.019,0.319,10.171,2.446,27.089,12.918,5.073,28.985,23.653,0.788,27.142,25.301,17.133,13.759,11.178,10.989,8.92,11.813,15.195,29.391,4.669,23.598,10.537,27.058,-0.426,16.553,11.948,14.839,19.669,13.883,19.328,5.692,9.149,16.302,14.507,12.638,13.91,0.52,10.982,20.808,-1.004,14.129,16.181,5.303,14.544,16.736,21.986,-0.412,16.808,-1.122,24.907,9.461,9.436,13.219,1.635,6.923,14.004,-1.086,7.228,12.094,5.526,8.276,0.231,15.374,12.078,17.919,4.689,20.198,7.62,-3.034,10.262,18.585,9.02,-1.678,14.676,22.346,5.194,9.935,22.002,6.583,17.971,2.97,-9.498,-7.533,17.59,16.324,22.162,0.872,15.394,20.221,20.43,17.025,3.675,17.935,24.457,11.835,4.485,6.442,-2.238,13.37,17.85,18.234,5.152,5.744,4.149,18.258,6.547,11.063,6.31,7.641,8.956,17.979,9.55,23.912,5.233,2.346,-3.284,3.325,7.589,19.173,21.01,12.459,7.992,12.777],[25.569,23.653,9.891,14.713,10.644,16.528,4.25,1.069,7.65,22.602,27.858,28.353,9.973,0.967,14.693,19.119,12.517,15.65,13.553,13.187,9.964,-0.579,17.34,15.235,6.563,0.594,7.937,23.284,12.045,14.717,0.267,12.575,5.244,16.716,9.663,-1.626,6.559,3.997,21.767,-8.944,3.023,9.813,17.697,15.281,-0.926,18.829,19.345,18.469,20.742,11.056,3.718,-2.815,6.306,24.29,19.185,7.151,6.957,12.053,6.812,4.987,19.432,4.647,17.052,11.5,22.563,22.315,8.563,15.31,6.53,0.761,9.921,1.814,27.061,12.828,5.508,28.784,23.647,0.706,26.638,24.987,16.925,14.501,11.134,10.973,9.005,12.137,15.072,29.064,4.617,23.291,10.027,26.626,-0.669,16.384,11.85,14.457,19.487,13.932,19.186,5.716,9.262,16.162,14.486,11.838,14.456,0.546,11.062,20.648,-0.884,14.407,16.196,5.049,14.273,16.554,22.523,-0.125,16.676,-1.554,25.109,9.074,9.57,12.944,2.083,7.072,13.819,-0.502,6.945,11.344,5.003,8.46,0.469,15.922,12.031,17.82,4.779,20.273,7.66,-3.078,10.368,18.31,10.06,-1.822,14.547,22.5,4.93,9.805,21.8,6.05,18.611,2.558,-9.826,-8.115,17.568,16.331,21.652,0.94,15.231,20.154,20.354,17.246,3.447,18.338,24.688,11.826,4.682,6.305,-2.521,13.083,17.913,18.587,5.162,6.208,3.937,17.471,6.298,11.338,5.801,7.672,9.059,18.002,9.208,23.585,4.929,2.751,-3.055,3.172,7.98,18.936,20.823,12.694,8.283,13.265],[25.731,23.655,9.828,14.825,10.968,16.68,4.368,1.094,7.617,22.528,27.823,28.443,9.686,0.808,14.796,19.012,12.467,15.534,13.434,13.25,9.866,-0.512,17.241,15.092,6.703,0.813,7.93,23.189,12.09,14.717,0.068,12.67,4.999,16.624,9.686,-1.691,6.626,4.156,21.674,-8.885,3.087,9.707,18.05,14.874,-1.05,18.652,19.452,18.625,20.502,10.944,3.843,-2.549,6.295,24.308,19.139,7.016,7.001,12.132,6.881,4.942,19.562,4.742,16.923,11.521,22.435,22.34,8.538,15.727,6.793,0.584,9.227,2.604,27.462,12.989,5.618,29.149,23.818,0.848,26.687,24.784,16.741,14.057,11.085,10.914,8.593,12.528,15.452,28.942,4.628,23.736,10.103,26.626,-0.657,16.361,11.928,14.469,19.602,13.898,18.994,5.317,9.484,15.983,14.542,12.024,14.196,0.51,10.982,20.583,-0.38,13.966,15.965,5.867,14.477,16.867,22.59,0.292,16.366,-1.449,24.92,8.24,9.319,13.183,2.367,6.796,13.838,-0.13,6.839,11.274,4.703,8.548,-0.257,16.357,12.163,17.652,4.87,20.308,7.477,-2.908,10.175,18.723,10.344,-1.731,14.756,22.416,5.216,9.711,21.527,6.054,18.032,1.982,-10.405,-8.461,17.62,16.758,21.716,0.678,15.733,19.898,20.084,17.514,3.703,18.175,24.373,11.566,4.0,6.592,-3.015,12.865,18.03,18.457,5.328,6.275,4.004,17.899,6.384,11.548,6.094,7.562,8.754,17.986,9.065,24.019,4.558,2.975,-3.185,3.317,7.754,19.588,21.046,13.047,8.601,13.392],[25.833,23.536,9.569,14.97,11.2,16.646,4.548,1.103,7.643,22.378,27.78,28.59,9.226,0.666,14.806,19.096,12.416,15.663,13.433,13.268,9.707,-0.432,17.09,15.04,6.877,1.034,8.0,23.029,12.221,14.791,-0.033,12.818,4.794,16.651,9.561,-1.596,6.656,4.291,21.578,-8.873,2.974,9.75,18.273,14.708,-1.144,18.45,19.514,18.699,20.503,10.835,3.729,-2.459,6.233,24.441,19.228,6.893,7.179,12.16,6.918,5.04,19.575,4.875,16.796,11.476,22.36,22.444,8.791,15.883,6.701,-0.058,9.033,2.852,27.304,13.233,5.493,29.236,23.423,0.957,26.404,25.55,17.438,13.793,11.04,11.44,8.343,12.702,15.402,28.941,5.115,23.876,10.566,26.912,-0.677,16.572,11.845,14.443,19.369,13.867,18.959,5.542,9.23,15.759,14.16,12.344,13.576,0.701,11.137,20.311,-0.071,13.694,15.908,6.131,14.86,16.709,22.063,-0.043,16.217,-1.12,24.837,8.455,9.311,13.333,2.665,6.785,13.911,-0.034,6.576,11.549,4.921,8.555,-1.104,15.911,12.029,17.532,4.537,20.25,7.743,-2.614,10.149,19.104,9.373,-1.974,14.193,22.179,5.943,9.608,21.408,6.493,17.442,2.167,-10.129,-7.908,17.997,17.195,21.915,0.785,15.56,20.304,20.121,17.294,3.813,17.674,23.929,11.653,4.255,6.417,-2.628,13.222,18.141,17.904,5.652,6.278,4.397,18.073,6.108,11.335,6.343,7.705,8.593,17.599,8.955,23.727,4.536,2.66,-2.956,3.354,8.037,19.691,20.819,12.498,8.444,13.066],[25.938,23.261,9.314,15.057,11.346,16.316,4.742,1.007,7.731,22.215,27.753,28.715,8.931,0.64,14.674,19.149,12.352,15.933,13.515,13.242,9.721,-0.431,17.027,14.9,6.942,1.065,8.112,22.9,12.296,14.824,-0.132,13.025,4.855,16.657,9.302,-1.244,6.63,4.441,21.462,-8.773,2.782,9.729,18.401,14.727,-1.208,18.314,19.557,18.641,20.801,10.832,3.424,-2.502,5.976,24.505,19.129,6.779,7.317,12.181,7.01,5.036,19.623,5.136,16.824,11.273,22.068,22.18,8.85,15.785,6.884,-0.58,8.942,2.476,27.596,13.245,5.287,28.937,23.751,1.026,26.255,25.979,17.408,14.023,10.822,11.7,8.314,12.52,15.367,29.224,5.22,23.515,10.674,27.167,-0.225,16.184,11.718,14.609,19.64,13.775,18.88,5.774,9.145,16.071,14.514,12.285,13.727,0.361,11.13,20.824,0.101,13.844,16.005,5.745,14.736,16.685,21.937,-0.022,16.489,-0.932,24.563,8.609,9.817,13.405,2.806,7.134,14.596,0.158,6.505,11.626,4.745,8.409,-1.287,15.549,11.976,17.756,4.221,20.241,7.553,-2.673,10.337,19.314,8.879,-1.784,13.788,22.538,5.845,9.9,21.625,6.667,18.088,2.788,-9.759,-7.111,17.581,16.805,21.974,0.584,14.845,20.318,19.81,17.568,2.932,18.051,24.519,11.353,4.293,6.548,-1.833,13.372,18.041,18.216,5.906,6.209,4.421,17.18,5.963,11.514,6.204,8.01,8.617,18.052,9.107,23.776,4.461,2.526,-3.06,3.256,8.56,19.122,20.841,12.571,8.499,13.27],[26.084,23.006,9.144,15.03,11.529,16.022,4.797,0.954,7.868,22.103,27.706,28.812,8.895,0.78,14.567,19.235,12.32,16.261,13.661,13.224,9.9,-0.508,17.129,14.727,6.709,1.038,8.244,22.875,12.363,14.899,-0.118,13.101,4.933,16.674,9.131,-0.97,6.538,4.422,21.44,-8.59,2.504,9.754,18.453,14.789,-1.211,18.276,19.712,18.598,21.197,10.889,3.143,-2.648,5.843,24.571,19.092,6.653,7.382,12.139,7.13,4.75,19.567,5.413,16.777,11.136,21.735,22.365,8.984,15.525,6.642,-0.258,8.847,2.031,27.924,13.133,5.444,28.252,23.714,0.684,26.44,25.321,16.011,13.664,10.531,11.65,8.412,12.998,15.272,29.697,5.027,22.457,10.658,27.267,-0.195,16.155,11.846,14.794,19.681,13.83,18.937,5.728,9.345,16.293,14.649,11.853,14.288,0.685,11.006,20.799,0.032,13.948,16.216,5.514,14.289,17.027,22.179,0.207,16.727,-1.453,24.63,8.41,9.915,13.414,2.823,7.477,14.552,0.61,6.643,12.088,4.772,7.985,-0.78,15.673,12.56,18.072,4.682,20.243,7.184,-2.348,10.04,18.888,8.942,-2.327,13.904,22.226,5.714,9.706,22.343,6.298,17.597,2.927,-9.576,-6.902,17.547,16.939,22.205,0.55,14.482,19.801,19.632,17.591,2.992,18.252,24.408,11.252,3.91,6.226,-1.26,13.139,18.127,18.244,6.116,6.07,4.538,17.815,6.109,11.285,6.531,7.761,8.487,18.04,9.091,23.871,4.199,2.545,-2.791,3.063,8.619,19.337,20.896,12.528,8.648,13.295],[26.145,22.93,9.042,14.89,11.829,15.707,4.59,0.872,7.892,21.897,27.476,29.02,8.887,0.992,14.482,19.258,12.291,16.551,13.755,13.143,10.054,-0.42,17.182,14.545,6.334,1.08,8.218,23.041,12.47,14.971,-0.157,13.22,4.953,16.775,9.091,-0.726,6.235,4.397,21.369,-8.371,2.25,9.895,18.417,14.797,-1.216,18.322,19.776,18.61,21.444,10.923,3.063,-2.656,5.949,24.499,19.121,6.525,7.386,11.937,7.249,4.42,19.543,5.591,16.765,11.061,22.051,22.598,9.207,15.359,6.474,0.41,8.804,2.475,27.816,13.115,5.719,28.145,22.744,0.562,27.282,25.067,15.805,13.752,10.666,11.801,7.955,13.317,14.751,29.797,5.313,22.823,10.51,27.36,-0.415,16.229,12.254,14.205,19.591,13.806,19.128,5.142,9.486,16.619,14.733,11.79,14.536,0.881,11.182,20.592,0.045,14.18,16.233,5.327,13.943,17.47,22.24,-0.095,16.631,-1.509,24.711,8.999,9.817,13.565,2.685,7.355,14.302,0.7,6.714,12.152,4.978,8.094,-0.159,15.664,12.922,18.264,5.172,20.402,7.556,-2.053,9.758,19.519,9.094,-2.563,14.348,21.877,5.69,9.592,22.465,6.065,17.227,2.466,-9.561,-6.912,17.305,17.141,22.6,0.459,15.254,19.966,19.989,17.804,3.513,18.191,24.252,11.5,3.544,6.141,-1.252,13.062,17.839,18.334,6.382,5.588,4.843,18.084,5.758,11.1,6.711,7.392,8.294,17.735,9.076,23.855,4.18,1.873,-3.37,2.787,8.172,19.682,20.834,12.57,8.542,12.814],[26.148,23.135,8.939,14.752,12.081,15.465,4.435,0.978,7.816,21.946,27.387,29.262,8.806,1.098,14.383,19.069,12.26,16.759,13.755,13.055,10.168,-0.368,17.073,14.407,6.129,1.047,8.114,23.256,12.675,14.993,-0.217,13.399,4.988,16.868,9.205,-0.596,6.025,4.462,21.203,-8.183,2.207,9.981,18.498,14.947,-1.092,18.449,19.681,18.647,21.443,10.97,2.935,-2.693,6.136,24.26,19.169,6.451,7.341,11.667,7.241,4.119,19.48,5.659,16.789,11.023,21.843,22.056,9.322,15.283,6.564,0.942,8.828,2.683,27.756,13.02,5.329,28.587,23.177,0.148,27.568,25.326,16.617,13.782,10.577,12.031,7.994,13.397,14.442,29.822,5.117,23.483,9.858,27.456,-0.2,16.101,12.101,14.007,19.744,13.168,18.959,4.826,9.557,16.756,14.854,12.377,13.938,0.879,11.166,20.749,0.216,14.015,16.324,5.157,14.33,18.004,22.336,0.264,16.383,-1.645,24.993,9.086,9.625,13.873,2.683,7.109,14.521,0.566,6.825,11.947,4.814,8.045,-0.406,16.193,13.111,17.825,5.096,19.978,6.81,-1.985,9.876,19.705,9.384,-2.709,14.385,22.207,5.323,10.39,22.499,5.678,17.669,1.527,-9.533,-7.301,17.491,17.273,22.662,0.056,15.884,20.218,19.918,17.941,2.998,18.001,24.492,11.659,3.785,6.884,-1.627,12.941,17.795,18.407,6.238,5.354,4.685,17.451,5.279,11.342,6.657,7.828,8.128,18.322,9.246,23.722,4.565,1.931,-3.285,2.4,7.854,19.79,20.861,12.523,8.725,12.556],[26.176,23.235,8.869,14.573,12.241,15.444,4.331,1.121,7.814,22.132,27.455,29.426,8.757,1.161,14.34,19.002,12.292,16.967,13.588,13.039,10.283,-0.438,16.942,14.382,6.126,1.089,8.07,23.446,12.936,15.055,-0.439,13.536,4.999,16.891,9.283,-0.658,5.841,4.41,21.105,-8.047,2.204,10.108,18.547,15.203,-1.024,18.539,19.509,18.791,21.384,11.126,2.715,-2.711,6.392,24.038,19.348,6.31,7.36,11.463,7.221,3.957,19.476,5.546,16.764,11.122,22.077,22.062,9.361,15.512,6.325,0.751,8.083,2.884,28.046,12.861,5.35,28.701,23.799,0.53,27.78,25.672,16.237,13.691,10.616,11.791,7.647,13.44,14.396,30.256,4.404,23.184,9.35,27.642,-0.24,15.909,11.823,13.82,19.456,13.63,18.722,4.716,9.658,16.771,14.751,11.856,13.454,0.784,11.363,20.376,-0.121,13.442,16.36,5.501,14.5,18.07,22.408,0.308,16.246,-1.778,25.182,8.651,8.981,14.375,2.798,7.306,14.516,0.832,6.833,12.009,4.572,8.174,-1.018,15.854,13.567,17.909,4.618,20.165,6.664,-2.112,10.271,19.519,9.498,-2.596,14.371,22.15,5.774,10.164,21.947,5.509,17.42,1.125,-9.369,-7.564,17.741,17.287,22.889,0.466,15.73,20.006,20.155,17.793,2.709,17.705,24.064,11.391,4.051,7.211,-2.732,12.337,17.798,18.402,6.273,4.847,4.606,18.126,5.327,11.409,6.467,8.142,8.169,18.002,9.294,23.906,5.039,2.005,-2.844,2.11,8.161,19.255,21.178,12.514,8.801,12.624],[26.305,23.142,8.758,14.472,12.255,15.468,4.369,1.261,7.866,22.08,27.718,29.539,8.708,1.115,14.338,18.903,12.398,17.092,13.491,13.023,10.166,-0.644,16.79,14.364,6.151,1.079,8.029,23.455,13.296,15.162,-0.63,13.717,4.931,16.755,9.278,-0.824,5.768,4.345,21.189,-8.059,2.145,10.086,18.469,15.295,-0.947,18.574,19.13,18.957,21.317,11.269,2.624,-2.802,6.691,23.898,19.512,6.155,7.636,11.236,7.283,3.953,19.473,5.428,16.891,11.217,21.853,22.493,9.153,14.894,6.417,0.012,7.183,2.452,28.06,12.898,5.289,28.099,23.906,0.905,27.282,25.634,15.088,13.699,10.561,11.958,7.783,13.138,14.91,30.24,4.541,23.384,9.005,27.684,-0.246,16.103,11.8,13.856,19.622,13.419,18.719,4.685,10.295,17.147,14.247,12.173,13.743,0.839,11.641,20.126,0.052,13.43,16.367,5.523,14.482,18.001,22.681,-0.059,16.315,-1.989,25.308,8.644,8.634,14.648,2.726,7.207,14.526,0.429,6.711,12.054,5.028,8.05,-1.349,15.709,13.56,18.23,3.903,20.217,7.154,-1.917,10.445,19.605,9.729,-2.21,14.708,22.014,5.907,10.341,21.795,5.355,17.523,1.753,-8.876,-6.764,17.801,17.444,22.876,0.739,15.592,19.593,20.197,18.244,3.226,17.584,24.402,11.48,3.678,7.01,-3.382,11.768,17.983,18.579,6.333,4.908,4.693,17.727,5.499,11.644,6.684,7.713,7.982,17.904,9.552,23.705,5.351,2.045,-2.616,2.075,8.623,19.107,21.266,12.89,8.501,12.464],[26.396,22.955,8.671,14.488,12.124,15.332,4.53,1.418,7.893,21.948,27.84,29.443,8.667,0.915,14.398,18.805,12.535,17.251,13.531,13.061,10.108,-0.791,16.687,14.333,6.045,0.996,7.968,23.409,13.582,15.439,-0.648,13.842,5.04,16.511,9.195,-0.863,5.864,4.166,21.257,-8.054,2.257,9.973,18.368,15.303,-0.872,18.52,18.794,19.154,21.301,11.424,2.676,-2.875,6.981,23.891,19.705,5.961,7.92,10.926,7.472,4.03,19.424,5.362,16.862,11.307,21.653,22.282,9.325,14.728,6.843,0.017,7.612,2.451,28.172,12.89,5.832,28.755,23.258,0.965,26.769,25.54,15.662,13.745,10.409,12.289,7.785,13.52,14.934,30.299,4.492,23.05,8.77,27.731,-0.125,15.942,11.703,14.133,19.614,13.377,18.507,4.955,10.31,16.891,14.451,12.313,14.062,0.593,12.003,20.102,0.107,14.092,16.619,5.018,14.138,17.89,22.522,-0.201,16.309,-1.877,25.18,8.285,8.731,14.727,2.803,7.254,14.793,-0.219,6.802,12.06,5.181,7.989,-1.14,15.924,13.646,17.873,4.293,20.172,6.925,-2.312,10.131,19.244,9.91,-1.71,14.795,22.237,5.438,10.08,22.199,5.165,18.093,1.981,-8.933,-6.335,17.786,17.313,22.596,1.056,15.693,19.625,19.776,18.34,2.974,17.129,24.423,11.977,3.124,6.953,-2.875,11.558,17.806,18.345,6.0,5.275,4.41,17.543,5.247,11.432,6.995,7.129,7.752,18.199,9.901,23.376,5.665,1.649,-3.397,2.255,8.56,19.561,21.025,12.703,9.216,12.243],[26.437,22.716,8.583,14.536,12.116,15.286,4.548,1.513,7.953,21.74,27.786,29.322,8.563,0.853,14.443,18.789,12.553,17.384,13.618,13.085,10.056,-0.705,16.663,14.335,5.773,0.937,7.875,23.412,13.685,15.759,-0.438,13.877,5.228,16.235,9.018,-0.706,6.005,3.947,21.19,-8.018,2.325,9.826,18.293,15.39,-0.748,18.406,18.714,19.08,21.232,11.673,2.742,-2.989,7.315,23.877,19.776,5.872,8.07,10.708,7.646,4.089,19.275,5.222,16.792,11.416,21.334,22.204,9.481,15.115,6.687,0.34,8.565,3.015,28.23,13.018,6.293,28.32,23.009,0.914,26.905,25.555,16.092,13.884,10.349,11.703,7.474,13.578,14.267,30.225,4.508,22.493,9.087,27.497,-0.477,15.978,11.891,13.921,19.521,13.726,18.519,4.714,9.751,17.021,14.747,12.34,13.684,0.568,11.989,19.838,-0.193,13.807,16.581,4.73,14.503,18.119,22.43,-0.113,16.245,-1.851,25.161,8.425,9.042,14.969,2.644,7.349,15.192,0.324,7.094,12.32,5.225,8.142,-0.801,15.764,13.953,17.81,4.827,20.495,7.017,-2.359,9.672,19.476,9.604,-1.656,14.51,21.992,4.953,10.226,22.225,4.829,17.547,1.733,-9.135,-6.679,18.096,16.75,22.307,1.113,15.778,19.785,19.94,18.059,3.091,17.135,24.446,12.06,2.958,7.386,-2.293,11.405,17.802,18.649,5.739,5.609,4.233,17.82,4.693,11.324,7.257,7.459,7.665,17.891,10.065,23.88,5.813,1.661,-3.635,2.669,8.324,19.74,21.243,13.114,9.493,11.872],[26.498,22.446,8.481,14.505,12.162,15.305,4.481,1.49,7.933,21.516,27.653,29.347,8.534,0.986,14.334,18.825,12.523,17.441,13.619,13.049,10.065,-0.537,16.754,14.191,5.44,0.805,7.966,23.488,13.598,15.986,-0.179,13.95,5.292,16.274,8.917,-0.457,6.097,3.841,21.031,-7.941,2.315,9.81,18.243,15.408,-0.692,18.309,18.961,18.998,21.168,11.847,2.823,-3.076,7.665,23.927,19.741,5.63,8.072,10.684,7.788,4.158,19.237,5.063,16.918,11.67,21.212,22.178,9.482,14.872,6.437,0.222,8.177,3.285,28.309,12.828,5.779,28.056,23.218,0.873,27.378,25.621,15.679,13.992,10.213,11.393,7.396,13.271,14.012,29.915,4.453,22.768,10.085,27.524,-0.558,15.921,12.187,13.783,19.484,13.528,18.629,4.179,9.144,17.055,14.943,12.338,13.527,1.036,12.598,20.28,-0.264,13.207,16.877,4.526,14.571,18.156,22.549,0.081,15.907,-1.634,25.163,8.877,9.296,14.96,2.413,6.738,15.166,0.859,7.109,12.403,5.428,7.586,-0.826,15.222,13.613,17.779,4.793,19.686,6.973,-1.65,9.748,19.551,9.339,-2.031,14.673,21.983,4.649,9.994,21.528,4.689,17.011,1.272,-9.378,-7.185,18.026,17.112,22.825,1.018,16.061,19.413,19.819,18.141,3.458,17.257,24.455,12.292,3.182,7.527,-2.202,11.383,17.602,18.809,5.876,5.691,4.006,17.347,4.848,11.531,6.998,8.2,7.463,18.275,10.181,23.936,6.017,2.015,-3.17,2.412,8.27,19.239,21.197,13.266,9.244,11.943],[26.709,22.298,8.43,14.34,12.083,15.185,4.405,1.478,7.797,21.514,27.553,29.477,8.532,1.047,14.179,18.918,12.466,17.374,13.705,12.99,10.113,-0.486,16.694,13.957,5.11,0.624,8.055,23.465,13.546,16.12,-0.066,13.906,5.235,16.46,8.798,-0.19,6.012,3.918,20.723,-8.102,2.357,9.84,18.161,15.38,-0.949,18.194,19.204,18.993,21.328,12.003,2.957,-2.968,7.843,24.092,19.801,5.318,7.972,10.758,7.903,4.091,19.257,4.854,17.015,11.977,21.255,21.956,9.451,14.988,6.499,0.355,7.748,3.051,27.957,12.554,5.656,27.989,22.833,0.759,27.624,25.717,15.572,13.658,9.977,11.746,7.108,13.544,14.381,30.261,4.644,23.005,10.369,27.631,-0.404,16.025,11.929,13.996,19.336,13.53,18.594,3.924,9.327,16.925,14.874,12.274,13.911,0.908,12.443,20.447,-0.687,13.254,17.478,4.387,14.081,18.353,22.371,0.188,16.031,-1.511,25.231,9.239,9.498,14.568,2.347,6.706,15.988,1.151,6.836,12.716,5.592,7.636,-0.73,15.476,13.247,17.194,4.467,19.6,6.955,-1.133,9.98,19.468,9.372,-2.135,14.61,21.82,5.163,9.89,21.252,4.98,17.088,1.326,-8.554,-6.822,18.397,17.613,23.204,0.611,16.036,19.837,19.706,18.532,3.333,17.509,24.273,12.435,3.911,7.816,-2.396,11.644,17.786,18.416,5.988,5.44,4.008,18.017,5.035,12.035,6.947,7.88,7.098,18.272,10.598,23.176,6.797,1.853,-3.642,2.508,8.621,18.916,20.8,13.414,9.22,12.082],[26.747,22.362,8.318,14.275,11.95,15.092,4.476,1.47,7.766,21.643,27.484,29.641,8.429,1.015,14.138,18.864,12.362,17.226,13.782,12.915,10.192,-0.564,16.537,13.778,4.954,0.41,8.158,23.261,13.559,16.427,-0.227,13.844,5.184,16.611,8.795,0.119,5.804,4.069,20.676,-8.042,2.416,9.789,18.168,15.291,-1.238,18.181,19.336,19.179,21.598,12.126,3.069,-2.859,7.888,24.058,19.756,5.094,8.024,10.844,7.862,3.954,19.243,4.714,17.017,12.165,21.319,22.169,9.086,14.721,6.22,0.697,7.791,2.533,28.302,12.535,6.028,28.015,22.475,0.991,27.596,25.889,15.399,13.411,10.071,11.697,6.966,13.144,14.536,30.613,4.742,22.904,10.27,27.83,-0.24,15.817,12.001,14.147,19.8,13.497,18.463,3.651,9.719,17.03,14.77,12.463,13.806,0.795,11.953,20.267,-0.785,14.103,17.593,4.098,14.473,18.506,22.223,-0.003,15.952,-1.418,25.051,8.837,9.303,14.667,2.081,7.547,15.98,1.082,6.834,13.249,5.191,7.671,-0.967,15.585,12.823,17.159,4.271,19.982,7.081,-1.209,10.098,19.415,9.664,-2.546,14.397,21.664,5.698,10.053,21.893,5.471,17.538,1.945,-8.712,-6.763,18.135,16.997,23.138,0.4,15.633,19.71,19.736,18.464,3.122,17.813,24.685,12.385,4.149,7.507,-2.777,11.542,17.852,18.882,5.567,5.338,4.239,18.084,4.56,12.551,7.532,7.81,6.975,18.286,11.4,23.6,7.516,1.899,-3.504,2.287,8.737,19.378,21.115,13.854,9.314,12.023],[26.718,22.516,8.198,14.234,11.82,15.071,4.699,1.369,7.638,21.75,27.449,29.87,8.312,1.08,14.13,18.885,12.265,17.063,13.835,12.989,10.189,-0.659,16.488,13.784,4.914,0.116,8.323,23.152,13.671,16.754,-0.391,13.861,5.1,16.607,8.855,0.347,5.759,4.183,20.923,-7.959,2.424,9.86,18.281,15.07,-1.51,18.357,19.352,19.331,21.801,12.374,3.059,-2.834,7.898,23.934,19.851,5.063,8.296,10.825,7.751,3.727,19.308,4.73,16.905,12.326,21.736,22.643,9.069,14.369,6.067,0.385,7.932,2.915,28.525,12.387,5.775,28.239,23.035,0.619,26.842,25.815,15.5,13.643,9.895,11.201,7.041,13.048,14.47,30.473,4.549,22.99,10.104,28.096,-0.3,15.674,12.06,13.621,19.747,13.285,18.189,3.794,10.073,16.923,14.771,12.39,13.345,0.754,11.791,19.919,-0.678,14.082,17.784,4.115,14.584,18.009,22.215,-0.247,15.691,-1.877,24.67,8.417,9.641,14.62,1.848,7.289,15.245,1.139,6.948,13.337,4.865,7.256,-1.058,15.663,12.359,17.931,4.391,19.513,6.875,-1.139,9.932,19.566,9.158,-2.862,14.73,21.519,5.435,10.034,23.05,5.161,17.305,2.072,-9.226,-6.949,18.22,17.317,22.837,0.208,15.378,19.647,19.737,18.472,3.482,17.995,24.648,12.55,3.985,7.952,-3.324,11.792,17.602,18.884,5.076,5.087,3.835,17.465,4.209,12.129,7.988,7.752,6.86,18.386,11.541,24.597,7.442,2.222,-3.046,1.855,8.153,19.534,21.635,13.91,9.717,11.815],[26.725,22.713,8.141,14.022,11.649,15.059,4.672,1.06,7.517,21.837,27.369,30.098,8.241,1.115,14.065,18.968,12.235,16.926,13.709,13.083,10.067,-0.689,16.539,13.808,4.934,-0.153,8.4,23.224,13.698,16.877,-0.48,13.851,5.241,16.597,8.828,0.544,5.791,4.173,21.048,-8.087,2.435,9.96,18.398,14.817,-1.767,18.6,19.303,19.402,21.96,12.623,2.844,-2.893,7.987,23.835,20.004,5.168,8.552,10.713,7.589,3.497,19.256,4.644,16.808,12.41,21.464,22.245,9.124,14.541,6.205,0.277,7.896,2.865,28.498,12.199,6.289,28.235,22.87,0.479,26.989,25.682,15.633,13.603,9.671,10.782,6.776,13.34,14.296,30.652,4.694,23.523,9.781,28.234,-0.28,15.915,12.09,13.774,19.733,13.441,18.535,3.919,9.944,16.85,15.11,12.319,13.703,0.521,11.979,20.203,-1.138,13.451,18.157,3.946,14.234,17.602,22.391,-0.311,15.646,-2.203,24.761,8.702,9.725,14.483,1.663,7.1,15.827,1.334,7.013,13.365,5.07,7.471,-1.147,15.943,12.276,17.983,4.609,20.116,7.066,-0.94,9.943,20.153,8.804,-2.739,14.613,22.141,5.54,9.952,23.276,4.826,17.02,1.544,-8.617,-6.608,18.717,18.058,23.043,-0.134,15.324,20.054,19.634,18.62,3.698,17.952,24.099,13.073,4.115,7.507,-3.315,12.16,17.65,18.71,5.251,5.047,3.665,17.859,4.461,11.891,7.785,7.687,7.049,18.208,11.755,25.26,6.893,1.969,-3.525,1.776,8.233,19.258,21.41,14.299,10.122,11.586],[26.817,22.673,8.135,14.032,11.424,15.02,4.6,0.796,7.481,21.828,27.327,30.279,8.146,1.082,13.999,19.178,12.346,16.948,13.499,13.085,9.96,-0.632,16.77,13.896,4.831,-0.365,8.306,23.552,13.495,16.953,-0.425,13.843,5.714,16.558,8.923,0.64,5.901,4.094,21.238,-8.069,2.339,9.755,18.717,14.647,-1.863,18.727,19.175,19.607,22.025,12.907,2.525,-3.011,8.013,23.743,20.122,5.366,8.694,10.536,7.388,3.501,18.936,4.418,17.029,12.539,21.38,21.876,9.041,14.471,6.19,0.285,8.091,2.432,28.472,12.257,6.228,27.954,22.838,0.372,27.441,26.106,15.53,13.371,9.803,10.844,6.708,12.971,14.2,30.992,4.059,23.553,9.783,28.511,-0.193,15.848,11.833,13.745,19.954,13.415,18.596,3.705,9.013,16.762,14.768,12.415,13.878,0.476,11.939,20.687,-1.339,13.456,18.202,3.776,14.366,18.219,22.196,-0.32,15.883,-1.709,25.181,8.973,9.665,14.473,1.466,7.089,16.025,1.354,7.418,13.327,5.885,7.687,-1.184,16.092,12.453,17.8,4.836,20.668,6.589,-0.692,10.035,19.899,9.559,-3.065,13.76,22.058,5.431,9.796,22.509,5.462,17.464,1.458,-8.866,-6.677,19.361,17.935,23.225,-0.377,15.228,19.777,19.818,18.239,3.466,17.544,23.568,12.932,3.372,7.677,-3.177,12.092,17.437,18.802,5.31,4.937,4.153,17.852,4.715,12.289,7.445,7.562,7.17,18.253,12.169,25.489,6.992,1.394,-3.628,1.76,8.809,18.82,20.999,14.239,10.222,11.209],[26.951,22.661,8.277,14.245,11.29,15.012,4.49,0.799,7.443,21.693,27.412,30.449,8.103,1.214,13.944,19.352,12.338,17.104,13.229,13.024,9.826,-0.599,16.956,14.025,4.702,-0.455,8.072,23.805,13.148,16.855,-0.396,13.892,5.881,16.601,9.119,0.661,6.087,3.937,21.415,-8.068,2.283,9.749,18.897,14.495,-1.841,18.774,18.903,19.859,21.835,13.033,2.118,-3.213,8.187,23.596,20.149,5.529,8.89,10.39,7.3,3.449,18.575,4.32,17.274,12.683,21.509,22.564,8.821,14.433,5.968,0.209,8.095,2.586,28.528,12.48,5.361,27.912,22.751,0.047,27.232,26.309,15.599,13.371,9.583,10.786,7.046,12.645,14.331,31.192,3.705,23.023,9.909,28.596,0.017,15.593,11.489,13.936,20.499,13.438,18.707,3.564,9.258,16.98,14.374,12.375,13.324,0.947,12.559,20.31,-1.314,13.486,17.996,3.896,14.665,17.978,22.753,-0.103,16.158,-1.906,25.521,8.834,9.544,14.271,1.281,6.784,15.886,0.929,7.657,13.049,6.318,7.458,-1.01,16.114,12.325,17.178,4.691,20.529,6.262,-0.683,10.099,20.109,9.167,-3.235,13.854,22.136,5.471,9.896,22.917,5.639,17.518,1.863,-8.581,-6.707,19.699,18.0,23.079,-0.084,14.722,19.451,20.055,18.699,3.565,17.326,23.729,13.37,3.571,7.757,-2.711,11.931,17.153,19.273,5.085,4.853,3.824,18.206,4.743,12.677,7.083,6.754,7.396,18.399,12.328,25.326,7.094,0.929,-3.741,1.986,9.118,19.04,21.275,13.926,9.697,10.972],[27.018,22.65,8.415,14.433,11.218,15.062,4.338,0.905,7.402,21.73,27.471,30.435,8.089,1.507,13.861,19.294,12.144,17.216,13.109,13.005,9.787,-0.421,17.089,14.212,4.669,-0.514,7.84,23.865,12.903,16.654,-0.604,13.83,5.838,16.635,9.108,0.629,6.175,3.841,21.506,-8.083,2.406,9.991,18.973,14.299,-1.632,18.825,18.585,20.097,21.963,13.021,1.797,-3.387,8.425,23.464,20.182,5.545,9.206,10.38,7.09,3.357,18.408,4.236,17.436,12.783,21.529,22.493,8.436,14.664,5.791,0.478,7.657,2.695,28.818,12.756,5.983,28.1,22.726,0.208,27.654,25.95,15.915,13.473,10.154,10.511,7.126,12.871,14.129,31.535,4.091,23.226,9.801,28.725,0.347,15.62,11.365,14.33,20.439,13.27,18.974,3.315,9.204,17.297,14.084,12.656,13.573,0.962,11.894,20.014,-1.468,13.091,17.764,3.737,14.519,17.666,22.783,0.342,16.103,-2.231,25.462,8.291,9.141,13.824,1.269,6.789,16.21,1.004,7.487,13.145,5.719,7.708,-1.37,15.905,12.899,16.812,3.957,20.574,7.452,-0.718,10.424,20.154,9.071,-2.773,14.356,22.516,4.781,9.647,22.91,5.81,17.28,1.511,-8.204,-6.602,19.31,17.964,22.92,-0.174,14.85,19.196,19.902,19.401,3.729,17.134,24.109,13.39,3.462,7.842,-2.43,11.358,16.741,19.23,4.953,4.941,3.514,18.543,4.66,12.354,7.385,6.072,7.409,18.742,12.519,25.031,7.613,0.946,-4.346,1.932,8.563,18.719,21.653,14.317,9.763,11.548],[27.116,22.601,8.522,14.532,11.178,15.066,4.576,1.02,7.331,21.903,27.49,30.318,7.931,1.776,13.858,19.002,11.982,17.282,13.24,13.133,9.696,-0.098,17.243,14.313,4.674,-0.564,7.645,23.602,12.674,16.572,-0.896,13.846,5.727,16.54,9.029,0.649,6.291,3.619,21.641,-7.978,2.534,10.237,19.045,14.181,-1.371,18.863,18.441,20.109,22.07,12.953,1.725,-3.497,8.64,23.571,20.163,5.49,9.38,10.471,6.775,3.406,18.345,4.154,17.476,12.798,21.509,22.229,8.782,15.066,5.904,1.196,7.836,2.682,28.734,12.766,6.279,28.675,22.628,0.497,27.375,25.928,15.771,13.065,10.152,10.571,7.081,12.744,14.019,31.202,4.087,23.549,9.607,28.465,0.533,15.716,11.542,13.992,19.819,13.098,18.976,3.299,9.265,17.048,14.63,12.474,13.78,0.93,11.159,20.447,-1.596,13.309,17.707,4.237,14.569,17.872,22.108,0.474,16.106,-2.444,25.161,8.023,8.862,13.655,1.261,6.607,15.676,1.049,7.458,12.664,5.129,7.781,-1.276,15.486,13.244,17.399,4.211,20.986,7.634,-0.625,9.891,20.221,9.163,-2.636,13.607,22.229,4.388,9.973,22.705,5.729,17.359,1.298,-8.479,-6.641,19.183,18.161,23.485,0.304,15.081,19.32,19.475,19.131,3.618,16.854,23.763,12.967,2.953,7.923,-2.848,11.163,16.799,18.933,5.141,4.931,3.901,18.316,4.4,12.236,7.186,5.882,7.22,18.875,12.391,25.221,8.388,1.034,-3.965,1.769,9.243,18.17,21.207,14.289,11.036,11.933],[27.144,22.525,8.631,14.643,11.171,15.043,4.814,1.132,7.343,21.971,27.522,30.119,7.748,2.019,13.832,18.737,11.882,17.249,13.449,13.367,9.687,0.247,17.302,14.184,4.817,-0.59,7.419,23.182,12.541,16.542,-1.097,13.807,5.519,16.385,8.896,0.774,6.304,3.47,21.854,-7.885,2.613,10.445,19.139,14.077,-1.098,18.826,18.54,19.864,22.016,12.778,1.791,-3.53,8.898,23.739,20.048,5.403,9.549,10.547,6.496,3.454,18.289,4.168,17.382,12.786,21.023,22.392,8.871,14.925,6.013,1.394,8.013,2.929,28.977,12.875,5.987,28.751,22.674,0.674,26.971,26.502,15.694,12.997,9.82,10.554,7.148,13.028,14.36,30.731,4.569,23.661,9.467,28.279,0.665,15.67,11.983,13.775,19.668,12.952,19.023,3.508,9.025,17.411,14.91,11.97,13.771,1.381,11.195,20.175,-1.401,13.343,17.752,4.061,14.941,17.626,22.008,0.05,16.345,-2.625,24.774,8.484,8.894,13.647,1.123,6.264,15.41,1.304,7.215,12.269,5.627,7.296,-1.079,15.5,13.056,17.944,4.58,21.052,7.098,-0.808,9.75,20.386,9.22,-2.312,13.232,22.4,4.355,10.394,22.75,5.668,17.36,1.597,-8.455,-6.457,19.507,18.649,23.492,0.71,14.778,19.412,19.66,18.936,3.512,17.396,23.801,13.124,3.238,8.138,-3.584,11.789,16.693,18.729,4.702,4.834,3.627,18.151,4.513,12.086,6.558,6.015,7.203,18.591,11.971,25.329,8.552,0.57,-3.8,1.888,9.449,18.22,21.087,14.589,10.847,11.694],[27.243,22.314,8.62,14.765,11.226,15.09,5.009,1.127,7.447,22.019,27.528,29.976,7.728,2.112,13.68,18.727,11.758,17.127,13.63,13.536,9.884,0.497,17.298,14.049,4.934,-0.616,7.156,22.905,12.521,16.689,-1.048,13.662,5.454,16.289,8.672,0.814,6.202,3.626,22.034,-7.804,2.61,10.494,19.359,13.986,-1.071,18.862,18.8,19.573,21.904,12.482,2.003,-3.643,9.139,23.837,19.788,5.473,9.579,10.59,6.34,3.492,18.153,3.956,17.42,12.814,21.476,22.619,8.67,14.71,5.829,1.392,7.517,2.922,28.94,13.174,5.843,28.266,22.512,0.721,27.369,26.906,15.651,13.571,10.199,10.613,7.406,12.818,14.155,30.924,4.521,23.382,9.136,28.265,0.807,15.468,12.105,13.375,19.687,12.88,19.206,3.77,8.791,17.57,14.965,12.091,14.301,1.946,11.69,19.474,-1.353,13.011,17.435,3.736,15.067,17.904,22.067,-0.017,16.589,-2.656,24.626,8.984,8.629,13.514,1.267,6.359,15.254,1.341,6.897,12.212,5.906,7.25,-1.601,15.785,13.08,17.448,4.426,21.366,7.599,-0.747,10.087,20.176,9.923,-1.882,13.216,22.574,4.398,10.063,23.056,5.669,17.575,1.555,-8.264,-6.241,19.441,18.133,22.825,0.603,14.059,19.473,19.876,18.424,3.68,17.272,24.064,13.155,3.222,8.479,-3.606,11.877,16.613,18.648,4.691,4.859,3.613,17.986,4.774,12.286,6.606,6.003,7.338,18.871,12.325,25.464,8.343,0.432,-4.554,1.994,9.467,18.326,21.369,14.307,10.261,11.529],[27.403,22.097,8.714,14.832,11.125,15.166,5.05,0.949,7.597,21.973,27.499,30.004,7.703,2.078,13.585,18.727,11.696,16.985,13.761,13.599,10.013,0.611,17.434,13.9,5.003,-0.636,6.974,22.995,12.616,16.726,-0.897,13.574,5.531,16.217,8.667,0.678,6.129,3.791,22.199,-7.789,2.434,10.318,19.513,13.806,-1.12,18.975,19.018,19.31,21.729,12.349,2.209,-4.076,9.352,24.0,19.614,5.724,9.516,10.457,6.307,3.578,17.992,3.837,17.601,12.827,21.692,22.869,8.62,14.931,5.905,1.301,7.264,2.687,29.189,13.157,6.484,28.058,22.307,0.436,27.816,27.004,15.596,13.268,10.435,10.919,7.393,12.95,14.266,31.305,4.451,23.355,8.821,28.229,0.808,15.522,11.981,13.751,19.988,13.005,19.07,3.551,9.282,16.714,14.933,12.235,14.096,1.977,11.334,19.606,-1.569,12.56,17.973,4.509,14.945,18.089,21.738,0.779,16.418,-2.38,24.75,8.961,8.196,13.47,1.192,5.816,15.869,1.558,7.283,12.088,5.6,7.492,-1.327,15.654,13.076,17.314,4.859,21.755,6.832,-0.939,9.837,20.501,10.549,-2.554,13.344,22.09,4.761,10.325,23.142,5.851,17.803,1.87,-7.71,-6.299,18.546,18.4,22.587,0.474,14.213,19.717,20.123,18.473,3.635,17.24,23.958,13.082,3.192,8.705,-3.475,11.488,16.593,18.596,4.8,5.133,3.334,18.67,4.728,12.35,6.299,5.96,7.55,18.413,11.981,25.421,8.258,0.527,-4.744,1.86,8.977,18.38,20.953,14.172,10.829,11.601],[27.612,22.136,8.841,14.727,11.066,15.23,5.041,0.707,7.767,21.915,27.45,29.995,7.688,2.09,13.669,18.726,11.745,16.801,13.774,13.507,10.109,0.589,17.442,13.789,5.107,-0.783,6.926,23.167,12.643,16.8,-0.716,13.622,5.657,16.235,8.773,0.368,6.096,3.878,22.246,-7.69,2.257,10.228,19.653,13.656,-1.214,19.298,19.036,19.222,21.661,12.425,2.218,-4.559,9.507,24.072,19.484,5.793,9.369,10.367,6.224,3.63,17.892,3.861,17.771,12.902,20.737,22.499,8.863,15.275,6.026,1.284,6.99,2.403,29.29,13.043,6.683,28.455,21.877,0.172,27.983,26.659,15.922,12.543,10.416,10.493,7.426,12.8,14.707,31.229,4.32,23.426,9.111,28.339,1.104,15.438,12.236,13.847,19.85,12.822,19.268,3.726,9.592,16.96,14.663,12.186,13.973,1.992,11.538,19.886,-1.697,12.492,17.931,4.573,15.091,17.509,21.933,1.615,16.397,-2.347,24.749,8.677,8.199,14.004,0.927,5.586,15.902,1.616,7.316,11.912,5.5,7.515,-0.85,14.99,13.132,17.383,4.29,21.567,7.286,-1.234,10.164,20.769,9.981,-2.727,13.142,22.79,5.202,10.226,22.743,5.752,17.707,1.759,-8.08,-6.347,18.163,19.172,22.853,0.343,14.398,20.219,20.486,18.515,3.716,17.335,24.363,12.664,3.456,8.286,-3.649,11.118,16.483,18.663,4.648,5.178,3.593,18.309,4.896,11.956,6.42,6.508,7.585,18.437,11.171,25.343,8.67,0.792,-4.668,2.275,9.299,18.075,20.598,14.644,10.708,11.881],[27.809,22.122,8.976,14.592,10.982,15.375,4.963,0.537,7.799,21.836,27.473,29.968,7.746,2.286,13.633,18.664,11.676,16.56,13.664,13.383,10.134,0.625,17.364,13.731,5.213,-1.09,6.947,23.428,12.747,16.865,-0.585,13.625,5.742,16.277,8.905,-0.019,6.177,3.802,22.258,-7.65,2.234,10.075,19.889,13.523,-1.298,19.605,18.879,19.23,21.714,12.529,2.156,-4.791,9.606,24.181,19.366,5.575,9.186,10.632,6.187,3.674,17.882,3.982,17.75,12.955,20.937,22.103,9.157,15.266,6.373,1.368,7.523,2.405,29.487,13.191,6.554,28.444,22.043,0.2,27.932,26.497,16.089,12.999,10.47,10.391,7.72,12.596,14.624,31.186,4.316,23.397,9.521,28.162,0.938,15.519,12.306,13.43,19.38,12.837,19.315,3.897,9.593,17.114,14.881,12.382,13.972,1.91,11.802,20.032,-1.666,13.333,17.669,4.299,14.921,17.789,21.995,1.362,16.591,-2.316,24.799,8.717,8.447,14.081,0.49,6.52,15.596,1.394,7.265,11.927,5.668,7.474,-0.955,15.002,13.789,17.075,4.336,21.572,7.441,-1.608,10.242,20.45,9.089,-2.461,12.87,22.841,5.29,10.213,22.511,5.924,18.127,0.986,-8.551,-6.286,19.146,18.691,22.814,0.202,14.317,20.196,21.057,17.967,3.346,17.909,24.196,13.075,3.534,8.402,-4.228,11.395,16.268,18.196,4.283,5.163,3.873,18.388,4.65,12.408,6.463,7.18,7.47,18.949,11.619,25.106,8.818,1.181,-5.321,2.146,9.242,17.956,20.997,14.45,10.027,11.85],[27.875,22.075,8.925,14.562,11.051,15.555,4.896,0.604,7.783,21.685,27.615,30.112,7.85,2.326,13.584,18.462,11.661,16.673,13.494,13.447,10.066,0.598,17.309,13.703,5.227,-1.351,7.098,23.635,12.846,16.774,-0.675,13.695,5.782,16.318,9.102,-0.045,6.388,3.711,22.224,-7.772,2.133,9.909,19.989,13.423,-1.399,20.018,18.834,18.963,21.602,12.709,2.147,-4.907,9.559,24.235,19.341,5.38,8.976,10.899,6.274,3.616,17.897,4.112,17.84,12.841,21.925,22.282,8.932,14.697,6.425,1.096,8.041,2.403,29.501,12.851,6.003,28.033,22.395,0.069,27.726,26.982,15.825,13.597,10.828,10.843,7.78,12.868,14.67,30.967,4.29,23.347,9.288,28.382,1.431,15.456,11.864,13.707,19.632,13.046,19.07,3.85,9.549,16.806,15.046,12.171,13.774,2.249,11.343,19.624,-1.796,13.693,17.736,4.403,14.659,17.322,22.206,0.98,16.374,-2.35,25.245,9.116,8.949,13.72,0.363,6.613,15.753,0.621,7.089,11.917,5.491,7.668,-1.054,15.595,13.861,17.275,4.774,21.58,7.07,-1.811,9.797,20.639,9.522,-1.981,12.677,22.627,4.651,9.878,22.866,5.844,18.544,1.196,-8.453,-6.378,18.505,18.558,22.736,0.398,14.244,20.022,21.006,18.286,3.217,17.548,23.648,13.406,3.425,8.922,-4.619,11.988,16.107,18.158,4.56,5.207,3.393,18.746,4.483,13.112,6.231,7.095,7.202,18.38,12.155,25.437,8.537,1.449,-5.253,2.041,9.006,18.117,21.166,14.473,9.96,11.728],[27.791,22.206,8.756,14.331,11.428,15.712,4.718,0.69,7.753,21.59,27.76,30.32,7.95,2.331,13.685,18.36,11.768,16.85,13.294,13.57,10.004,0.591,17.195,13.86,5.234,-1.374,7.221,23.842,12.87,16.641,-0.893,13.794,5.622,16.53,9.242,0.034,6.606,3.717,22.206,-7.968,2.001,9.85,20.046,13.414,-1.311,20.424,18.821,18.525,21.476,12.828,2.157,-4.885,9.397,24.204,19.273,5.277,8.763,10.991,6.438,3.55,17.905,4.131,17.92,12.71,21.94,22.479,9.029,14.73,6.167,1.552,7.857,2.506,29.459,12.688,5.71,28.088,21.979,0.302,27.826,27.26,15.916,12.959,10.421,11.228,7.649,12.902,14.945,31.07,4.467,22.788,9.029,28.558,1.011,15.435,11.806,13.679,19.506,13.117,18.897,4.044,9.066,17.162,14.657,12.06,14.307,2.222,11.044,18.943,-2.229,12.922,17.773,4.535,14.98,17.286,22.659,1.131,16.058,-2.527,25.248,9.271,8.894,13.564,0.258,6.203,15.729,0.534,7.298,12.089,5.429,7.825,-1.221,15.725,13.577,17.594,4.62,21.473,7.415,-1.683,10.003,20.942,9.441,-2.089,12.834,22.801,3.961,9.938,22.704,5.817,18.536,1.558,-8.702,-6.109,18.153,18.869,22.584,0.49,14.251,19.642,20.979,17.554,3.366,17.197,23.722,13.131,3.372,8.592,-4.608,11.646,16.575,18.789,5.19,4.766,3.416,19.02,4.738,12.113,6.21,6.647,7.117,18.461,12.232,25.876,8.391,1.521,-5.232,1.937,8.758,18.187,21.014,14.395,10.44,12.072],[27.676,22.38,8.526,14.125,11.764,15.901,4.59,0.745,7.745,21.451,27.88,30.395,8.001,2.345,13.696,18.21,11.853,16.844,13.201,13.751,9.91,0.635,17.056,14.046,5.357,-1.296,7.189,24.001,12.841,16.636,-1.059,13.853,5.398,16.909,9.332,0.08,6.818,3.656,22.23,-8.038,1.934,9.825,20.118,13.529,-1.244,20.512,18.737,18.151,21.414,12.657,2.19,-4.711,9.181,24.19,19.269,5.338,8.65,10.965,6.513,3.409,18.006,4.176,17.965,12.362,21.191,22.119,9.042,14.962,6.229,1.582,7.572,2.393,29.417,12.425,5.963,28.666,22.079,0.373,27.974,27.032,16.333,12.801,10.161,11.57,7.442,13.468,14.816,31.401,3.959,22.718,9.036,28.648,0.906,15.323,11.74,13.511,19.392,13.125,18.883,3.815,8.861,17.092,14.361,12.414,14.447,1.962,11.277,19.271,-1.936,12.933,16.913,4.776,15.006,18.307,22.847,1.32,15.87,-2.65,25.422,8.793,8.876,13.697,0.347,6.423,15.818,0.815,7.059,12.388,5.459,8.027,-1.421,15.881,13.302,17.56,4.701,21.479,7.876,-1.635,10.222,20.704,8.714,-1.774,13.568,22.775,3.951,9.949,22.328,5.988,18.64,1.074,-8.95,-6.28,18.284,18.723,22.5,0.684,13.985,19.877,21.669,17.38,3.087,16.973,24.188,12.756,3.512,8.329,-4.235,11.429,16.622,18.661,5.293,4.937,3.404,19.246,4.793,11.43,6.794,7.465,7.224,18.415,11.689,25.994,8.258,1.1,-5.329,1.657,8.811,17.781,21.145,14.205,10.293,11.934],[27.583,22.412,8.432,14.073,11.979,15.976,4.584,0.738,7.714,21.24,28.087,30.393,7.962,2.317,13.516,18.171,11.99,16.871,13.184,13.8,9.775,0.596,16.947,13.99,5.453,-1.14,7.157,24.038,12.813,16.499,-1.049,13.931,5.299,17.263,9.39,0.041,6.945,3.687,22.311,-8.086,1.758,9.669,20.042,13.748,-1.091,20.601,18.879,17.986,21.332,12.225,2.239,-4.47,9.007,24.375,19.295,5.593,8.635,10.829,6.7,3.271,17.884,4.247,17.983,11.981,21.08,21.477,9.321,14.521,6.43,1.258,8.003,2.503,29.168,12.341,6.323,28.64,22.45,0.03,27.946,26.671,16.466,13.131,10.322,11.521,7.255,13.781,15.045,31.503,3.755,23.048,8.843,28.773,1.541,15.396,11.671,13.768,18.862,13.436,18.616,4.03,9.084,16.649,14.554,12.131,14.225,1.826,12.024,19.729,-1.394,13.684,17.007,4.751,15.356,18.104,22.498,1.742,15.845,-2.865,25.589,8.405,8.95,14.224,0.474,6.66,15.737,1.071,6.258,12.274,5.148,8.119,-1.254,15.964,13.767,17.949,4.52,21.548,7.871,-1.515,10.304,20.669,8.624,-1.856,13.494,22.759,4.464,9.699,22.379,6.416,18.904,0.786,-9.115,-6.339,17.563,18.921,22.636,0.602,14.425,19.89,21.572,17.734,2.627,17.239,24.125,12.881,3.351,8.253,-3.873,11.794,16.372,18.397,4.703,4.831,3.417,18.93,4.634,11.822,6.813,7.532,7.369,18.954,11.183,25.363,7.893,0.622,-4.853,1.715,8.587,17.881,21.061,13.646,10.011,11.742],[27.584,22.155,8.636,13.997,12.188,16.007,4.7,0.732,7.784,21.096,28.33,30.437,7.856,2.232,13.491,18.288,12.23,16.931,13.274,13.793,9.708,0.554,16.789,13.95,5.394,-0.892,7.179,23.844,12.921,16.255,-0.951,14.048,5.204,17.419,9.406,-0.061,6.863,3.851,22.416,-8.007,1.378,9.44,19.955,13.986,-1.009,20.718,19.201,18.056,21.281,11.734,2.306,-4.03,8.857,24.5,19.393,5.808,8.347,10.762,6.854,3.357,17.642,4.22,17.849,11.838,21.592,21.057,9.13,13.984,6.837,1.353,8.128,2.457,29.28,12.467,6.329,28.347,22.479,-0.28,28.215,26.82,16.193,12.9,10.352,11.257,7.624,13.636,15.003,31.509,4.346,22.535,8.869,28.799,1.059,15.103,11.678,13.506,18.218,13.521,18.529,4.117,8.994,16.776,14.506,12.136,14.166,2.153,12.062,19.7,-1.481,13.59,17.352,4.733,15.449,17.392,22.458,1.486,15.766,-2.756,25.279,8.575,8.91,14.733,0.96,6.642,15.522,1.145,6.595,12.207,4.964,7.852,-0.839,16.191,14.055,18.336,4.523,21.775,8.12,-1.436,10.413,20.638,8.862,-2.022,13.021,22.985,4.971,9.95,22.387,6.685,18.829,0.531,-9.385,-6.362,17.454,18.454,22.501,0.846,14.982,19.913,21.364,17.261,2.491,17.688,24.769,12.863,2.981,7.78,-3.612,11.923,16.117,18.791,4.508,4.446,3.476,18.83,4.752,11.984,6.595,6.895,7.651,18.784,10.748,24.142,7.734,0.556,-4.834,1.662,8.595,18.092,20.947,13.105,9.548,11.616],[27.583,21.951,8.792,13.807,12.308,16.01,4.851,0.717,8.024,20.918,28.435,30.475,7.757,2.155,13.439,18.241,12.361,17.002,13.351,13.846,9.736,0.658,16.672,13.954,5.355,-0.6,7.278,23.648,12.986,16.136,-0.835,14.135,5.203,17.553,9.386,-0.149,6.864,4.032,22.442,-8.022,0.96,9.495,19.879,14.008,-0.986,20.667,19.469,18.18,21.258,11.325,2.317,-3.6,8.717,24.513,19.517,5.842,8.097,10.814,6.753,3.469,17.648,4.067,17.588,11.698,21.063,21.056,9.33,13.715,6.542,1.43,7.602,2.303,29.175,12.014,6.245,28.849,22.006,-0.143,28.243,26.713,16.078,13.258,10.447,11.726,7.789,13.89,14.739,31.322,4.492,22.32,9.046,28.625,0.847,15.196,11.61,13.451,18.938,13.795,18.581,4.289,8.769,16.769,14.449,12.641,14.371,2.242,11.855,19.466,-1.646,13.074,16.979,4.276,15.174,17.92,22.444,1.008,15.719,-2.554,24.937,8.872,8.639,14.372,1.115,6.468,15.154,0.821,6.832,12.463,5.349,7.627,-0.893,16.376,14.088,18.03,5.074,21.233,7.825,-1.279,10.128,20.459,8.555,-1.539,13.287,22.843,5.316,9.176,22.248,6.361,18.814,0.539,-9.286,-6.215,18.011,18.19,22.339,0.857,14.458,20.365,21.636,17.736,2.142,18.035,24.948,11.969,2.989,8.039,-3.243,11.854,16.168,19.432,4.99,4.635,3.566,19.001,5.343,12.037,6.9,7.32,7.757,18.251,10.394,23.903,7.426,0.658,-4.648,1.658,8.858,17.671,21.212,13.514,9.504,11.662],[27.44,21.817,8.791,13.664,12.382,15.932,4.961,0.738,8.327,20.715,28.405,30.392,7.611,2.143,13.438,18.192,12.414,17.132,13.396,13.861,9.728,0.712,16.657,14.097,5.28,-0.499,7.3,23.525,12.973,16.03,-0.792,14.122,5.268,17.685,9.239,-0.189,6.926,4.259,22.311,-8.205,0.727,9.371,19.783,13.811,-0.923,20.63,19.593,18.409,21.221,11.024,2.193,-3.311,8.659,24.515,19.75,5.847,8.185,10.978,6.676,3.565,17.853,4.083,17.384,11.802,21.116,21.323,9.733,13.905,6.847,1.081,7.582,2.265,28.806,11.893,6.18,29.364,22.38,0.461,28.272,26.379,16.223,13.067,10.699,12.254,7.602,13.704,15.219,31.102,4.383,22.353,9.241,28.684,1.162,15.254,11.686,13.193,19.484,14.001,18.107,4.188,9.006,16.985,14.573,12.372,14.343,2.024,11.743,19.085,-1.141,12.74,16.584,4.194,15.236,18.357,22.251,1.653,15.411,-2.568,25.223,8.988,8.927,13.475,1.224,6.174,14.707,0.731,6.69,12.838,5.282,7.83,-1.472,16.569,14.113,18.217,5.324,21.385,7.769,-1.636,9.919,20.353,8.624,-1.45,13.519,22.457,5.22,9.807,22.185,6.039,18.846,0.198,-9.19,-6.484,18.062,18.268,22.507,0.955,14.461,20.514,21.206,18.319,2.083,17.793,24.854,11.934,3.47,8.397,-3.606,11.493,16.512,19.2,4.856,4.735,3.191,18.672,5.268,11.391,6.94,7.194,7.566,18.37,10.095,24.215,7.088,1.106,-3.978,1.862,8.245,17.776,21.589,13.312,9.682,11.931],[27.204,21.993,8.688,13.68,12.359,15.909,4.959,0.941,8.702,20.561,28.461,30.275,7.519,2.124,13.505,18.128,12.279,17.384,13.443,13.744,9.836,0.749,16.669,14.138,5.102,-0.489,7.297,23.512,12.793,15.822,-0.959,14.075,5.175,17.721,9.141,-0.308,6.984,4.439,22.135,-8.486,0.743,9.16,19.615,13.749,-0.757,20.547,19.554,18.768,21.224,10.914,2.12,-3.148,8.709,24.607,19.93,5.808,8.339,10.982,6.672,3.617,18.097,4.169,17.419,11.911,21.121,21.447,10.188,14.569,7.233,1.083,7.848,2.658,28.869,11.774,6.47,29.359,22.078,0.296,27.889,26.324,16.085,12.926,10.493,11.919,7.976,13.507,15.083,30.989,4.486,21.85,9.271,28.377,0.868,15.409,12.002,13.901,19.128,13.633,18.179,3.851,9.108,17.319,14.757,12.052,14.033,1.834,11.229,19.191,-0.705,13.341,16.667,4.472,15.284,18.327,22.347,1.936,15.166,-2.507,25.293,9.06,8.889,13.55,1.29,6.412,14.821,0.779,6.766,12.74,5.286,7.889,-1.026,16.973,13.856,18.984,5.114,21.37,7.721,-1.707,10.089,20.24,8.564,-1.846,13.355,22.898,5.536,9.531,22.297,6.333,18.685,-0.017,-9.292,-6.579,18.247,18.344,22.303,1.024,14.041,20.42,21.332,17.679,2.161,17.699,24.528,12.183,3.579,8.269,-3.932,11.403,16.648,19.339,4.703,4.926,3.131,18.038,4.788,11.265,6.518,6.831,7.627,18.39,9.905,24.837,7.22,1.368,-4.049,1.958,8.121,18.246,21.507,13.553,9.255,12.19],[26.999,22.038,8.554,13.722,12.312,15.74,4.916,1.074,8.943,20.526,28.557,30.028,7.617,1.966,13.577,18.249,11.84,17.536,13.574,13.541,10.021,0.794,16.619,14.299,4.946,-0.529,7.268,23.662,12.616,15.727,-1.02,14.053,4.997,17.781,9.237,-0.386,7.037,4.605,22.122,-8.6,0.896,8.974,19.464,13.747,-0.603,20.578,19.402,19.036,21.247,11.003,2.181,-3.156,8.785,24.633,19.914,5.796,8.36,10.724,6.625,3.697,18.263,4.232,17.567,12.004,21.544,20.963,10.514,14.592,7.661,1.158,7.854,2.912,28.716,12.03,6.607,29.339,22.594,0.909,27.614,26.176,16.206,13.266,10.282,11.408,7.954,13.554,14.8,31.053,4.391,22.03,8.674,28.071,0.63,15.475,11.726,14.278,18.187,13.231,18.328,3.485,8.935,17.955,14.605,12.504,13.829,1.646,11.069,19.799,-1.21,13.435,16.184,4.548,15.19,18.439,22.745,2.007,15.194,-2.849,25.258,9.168,8.791,13.602,1.249,6.999,14.995,0.395,6.545,12.52,5.355,7.635,-0.738,16.929,13.465,19.123,4.88,21.209,7.838,-1.899,10.193,20.315,8.223,-1.636,13.572,22.613,5.677,9.082,22.268,6.484,18.634,0.126,-9.877,-6.782,18.816,17.864,22.506,1.102,14.194,20.189,21.251,17.684,1.869,17.856,24.829,11.917,3.172,8.264,-3.31,11.53,16.634,19.417,5.057,4.881,3.272,18.103,4.658,11.543,6.672,6.586,7.565,18.71,10.439,25.457,7.236,1.163,-4.173,1.912,8.574,18.199,21.473,13.391,9.857,11.811],[26.763,22.181,8.329,13.729,12.359,15.476,4.856,1.259,9.049,20.664,28.737,29.935,7.676,1.657,13.558,18.402,11.525,17.615,13.686,13.429,10.109,0.876,16.545,14.44,4.917,-0.524,7.258,23.93,12.535,15.574,-0.952,13.982,4.783,17.835,9.265,-0.463,7.01,4.668,22.144,-8.722,1.011,8.814,19.345,13.828,-0.453,20.617,19.197,19.221,21.307,11.206,2.173,-3.114,8.819,24.604,19.88,5.763,8.501,10.485,6.563,3.742,18.249,4.344,17.749,12.16,21.883,21.169,10.177,14.118,7.448,0.943,7.532,3.055,28.309,11.928,6.509,28.929,22.254,0.333,27.914,26.259,15.56,13.001,10.152,11.413,7.353,13.79,15.072,30.524,4.312,22.286,8.708,28.013,0.486,15.365,11.982,13.64,18.87,12.794,18.289,3.661,9.301,18.145,14.666,12.075,13.847,1.653,10.921,20.102,-1.75,13.742,16.194,4.133,14.701,18.432,22.982,2.177,15.533,-2.593,25.461,9.146,8.938,13.805,1.009,6.611,14.523,0.45,6.255,12.427,4.804,7.69,-1.52,16.508,13.815,18.443,5.448,21.031,8.294,-1.775,10.272,20.188,8.593,-1.12,13.678,22.42,5.378,9.468,21.8,6.54,18.752,0.422,-10.026,-7.083,18.752,17.991,22.862,1.491,14.734,20.317,21.302,18.522,1.999,17.811,24.778,12.066,3.028,8.513,-2.998,11.561,16.611,19.433,4.817,4.47,3.369,18.52,5.211,11.5,6.462,6.72,7.575,18.874,10.571,25.892,7.356,0.982,-4.059,1.989,8.531,18.359,21.671,13.452,9.694,11.541],[26.63,22.44,7.977,13.586,12.415,15.143,4.73,1.376,8.93,20.979,28.912,29.844,7.679,1.402,13.385,18.648,11.464,17.656,13.908,13.387,10.25,0.923,16.427,14.367,5.007,-0.611,7.159,24.248,12.584,15.415,-0.996,13.889,4.472,17.684,9.252,-0.495,7.084,4.616,22.083,-8.738,1.107,8.935,19.235,14.05,-0.354,20.585,19.132,19.4,21.312,11.428,2.082,-3.154,8.885,24.509,19.962,5.732,8.59,10.508,6.459,3.768,18.193,4.368,17.972,12.163,21.736,21.653,10.242,14.092,7.308,0.378,7.415,2.661,27.985,11.725,6.109,28.898,22.704,0.355,28.319,25.614,15.507,12.596,9.747,12.072,6.842,13.653,14.723,30.362,4.617,22.154,9.036,28.065,0.105,15.212,12.17,13.508,19.826,12.82,18.223,3.96,9.633,18.108,15.071,11.107,13.706,1.766,11.157,19.354,-1.394,13.843,16.516,3.95,15.048,18.19,22.768,2.333,15.617,-2.342,25.611,8.892,8.434,13.781,1.148,6.359,14.631,0.922,6.124,12.049,4.652,7.614,-1.4,16.275,14.187,18.258,5.52,21.174,7.955,-1.377,10.215,20.08,8.184,-0.672,13.294,22.983,5.161,9.374,21.931,6.273,18.717,0.606,-9.808,-6.976,18.594,17.972,22.798,1.499,14.67,20.158,21.488,18.548,2.284,17.481,24.75,12.112,3.427,8.611,-2.81,11.373,16.835,19.557,4.718,4.688,3.757,18.902,5.441,12.187,6.361,7.263,7.57,18.427,10.249,25.986,7.256,1.138,-3.358,1.918,8.15,18.435,21.606,13.946,9.635,11.592],[26.482,22.67,7.746,13.504,12.518,14.918,4.575,1.381,8.778,21.162,29.098,29.708,7.659,1.114,13.163,18.644,11.397,17.566,14.066,13.436,10.457,0.951,16.339,14.22,4.991,-0.572,7.003,24.431,12.632,15.469,-1.013,13.706,4.359,17.374,9.26,-0.372,7.049,4.474,22.062,-8.495,1.294,9.02,19.155,14.216,-0.28,20.533,19.174,19.615,21.403,11.564,2.157,-3.094,8.853,24.377,20.014,5.698,8.528,10.739,6.304,3.944,18.246,4.291,18.063,12.082,21.595,21.755,10.281,13.528,7.587,0.234,7.563,2.89,28.218,11.769,5.847,29.19,22.873,0.709,27.844,25.373,15.35,12.63,9.347,11.66,6.464,13.371,13.943,30.871,4.426,22.63,9.38,27.871,-0.035,14.622,12.667,14.307,19.815,12.84,18.081,3.716,9.951,17.96,15.226,11.3,13.667,1.733,12.034,19.621,-1.064,13.117,16.546,4.103,15.123,18.473,22.916,2.338,15.176,-2.87,25.524,9.264,8.241,13.695,1.149,6.233,14.866,1.087,5.949,11.944,4.721,7.635,-1.007,16.534,14.348,18.409,5.203,20.968,7.681,-1.558,10.07,20.06,8.141,-1.276,13.905,23.074,5.491,9.558,22.321,5.995,18.689,0.337,-9.542,-6.74,19.026,17.566,22.712,1.484,14.417,19.866,21.23,18.528,2.115,17.529,25.173,12.166,3.261,8.672,-2.74,11.731,16.944,19.197,4.932,5.21,3.168,19.406,4.964,12.722,6.744,6.958,7.575,19.054,10.697,25.95,7.17,1.181,-3.612,2.024,8.415,18.13,21.409,13.53,10.103,11.47],[26.445,22.722,7.73,13.52,12.569,14.776,4.481,1.399,8.624,21.199,29.2,29.618,7.696,0.961,13.014,18.513,11.276,17.422,14.126,13.48,10.747,0.961,16.334,14.175,4.677,-0.431,7.007,24.426,12.536,15.619,-1.072,13.61,4.443,17.017,9.264,-0.154,6.857,4.459,21.939,-8.265,1.409,8.901,19.035,14.403,-0.368,20.463,19.217,19.864,21.596,11.715,2.315,-2.988,8.815,24.327,20.02,5.694,8.527,10.839,6.16,4.197,18.224,4.058,18.291,12.028,22.12,22.093,10.413,13.751,7.662,0.482,7.683,3.205,28.242,11.599,5.454,29.448,22.509,0.728,27.638,25.706,15.129,12.374,9.48,11.28,6.549,13.807,14.516,30.787,3.935,22.545,9.303,27.867,-0.131,14.753,12.607,13.79,19.136,12.745,17.881,3.314,10.198,17.908,15.66,11.78,13.653,1.698,12.395,20.091,-1.257,13.606,16.294,3.99,15.05,18.26,23.111,2.124,15.095,-2.749,25.618,9.614,8.354,14.295,1.294,5.94,14.475,0.87,6.099,11.948,4.866,8.144,-0.972,16.59,14.026,18.345,4.669,20.873,7.563,-1.379,9.701,19.836,8.448,-1.693,14.261,22.893,5.344,8.959,22.639,6.301,18.572,0.225,-9.191,-6.528,19.017,17.738,22.616,1.241,14.814,20.125,20.929,18.837,2.615,17.512,25.099,12.741,3.04,8.595,-2.897,12.361,16.632,18.784,4.836,5.461,3.172,19.518,4.982,12.551,6.7,6.541,7.429,19.179,10.967,25.508,7.223,1.5,-4.17,2.427,8.512,18.709,21.449,13.333,9.374,11.433],[26.476,22.742,7.861,13.577,12.536,14.819,4.373,1.485,8.607,21.192,29.19,29.596,7.741,1.091,13.021,18.405,11.195,17.259,14.269,13.428,10.959,0.862,16.23,14.265,4.312,-0.396,7.223,24.285,12.556,15.674,-1.136,13.514,4.666,16.64,9.336,0.048,6.656,4.377,21.759,-7.973,1.526,8.644,18.892,14.701,-0.623,20.215,19.175,20.155,21.773,12.034,2.398,-3.016,8.836,24.143,20.053,5.779,8.483,10.784,6.093,4.245,18.21,3.82,18.535,11.932,22.393,21.981,10.282,14.816,7.463,0.433,8.183,2.908,28.374,11.844,5.314,29.432,22.748,0.893,27.562,25.957,15.084,12.231,9.449,11.848,7.141,13.966,14.738,30.093,4.25,22.525,9.289,27.79,-0.35,14.86,12.572,13.011,18.772,12.319,18.135,3.187,10.343,17.645,15.347,11.042,13.786,2.014,11.807,20.066,-1.332,13.266,16.394,3.545,14.931,18.145,23.254,2.032,15.643,-2.66,25.686,9.85,7.951,14.151,1.368,6.319,14.483,0.521,6.427,12.593,4.49,8.154,-1.254,15.912,13.191,18.106,4.504,20.886,7.72,-1.045,9.741,19.963,7.604,-1.532,13.79,22.676,5.443,9.81,22.679,6.614,18.521,0.61,-9.047,-6.588,19.524,17.679,22.924,1.202,15.243,20.076,21.344,18.881,2.521,17.744,24.609,12.822,3.344,8.068,-2.868,11.926,16.822,19.203,4.292,5.689,3.421,19.634,5.307,12.54,6.341,6.346,7.66,19.098,10.793,25.68,7.46,2.094,-4.035,2.484,8.254,18.995,21.486,13.353,8.968,11.983],[26.627,22.962,8.05,13.853,12.464,14.982,4.355,1.492,8.663,21.165,29.012,29.57,7.895,1.22,13.096,18.328,10.934,17.134,14.27,13.293,11.134,0.771,16.256,14.133,4.101,-0.538,7.507,24.162,12.469,15.67,-1.163,13.474,4.698,16.364,9.428,0.173,6.626,4.311,21.586,-7.679,1.753,8.596,18.785,14.831,-0.867,20.05,19.103,20.448,21.914,12.286,2.448,-3.106,8.83,23.937,20.149,5.996,8.294,10.825,6.106,4.207,18.411,3.797,18.699,11.835,21.874,21.565,10.292,14.826,7.427,0.673,8.103,3.175,28.146,12.269,5.607,28.882,22.753,0.674,27.635,25.647,14.99,12.323,9.821,12.014,7.134,13.944,14.398,29.701,4.367,22.787,9.294,27.649,0.007,14.938,12.744,13.64,19.051,12.47,17.858,3.582,10.343,17.398,15.535,10.978,13.447,1.816,11.014,19.499,-1.506,13.68,16.441,3.19,14.86,17.884,22.814,1.768,15.382,-2.694,25.296,9.751,8.014,13.714,1.13,6.598,14.878,0.694,6.458,11.965,4.685,7.918,-1.932,15.577,13.274,17.9,4.984,20.604,7.635,-1.258,10.441,20.221,7.943,-1.605,14.246,22.493,5.203,9.63,22.688,6.134,18.217,0.698,-8.833,-6.253,19.986,17.715,23.345,0.98,15.263,19.465,21.172,19.008,2.586,17.553,24.396,12.617,3.707,8.4,-2.478,11.39,17.098,19.181,3.841,5.401,3.028,19.828,5.417,12.174,6.127,5.786,7.938,19.354,10.916,25.562,7.437,1.677,-3.57,2.357,8.053,18.298,21.723,13.19,9.585,11.91],[26.686,23.059,8.191,14.035,12.394,15.056,4.439,1.383,8.705,21.183,28.693,29.558,7.874,1.408,13.41,18.254,10.814,17.061,14.306,13.036,11.126,0.579,16.19,14.13,4.085,-0.906,7.764,23.984,12.18,15.643,-1.3,13.466,4.562,16.412,9.563,0.225,6.699,4.345,21.33,-7.582,1.943,8.777,18.868,14.87,-1.12,20.068,18.828,20.625,22.053,12.339,2.546,-3.116,8.795,23.821,20.24,6.177,8.042,10.879,6.059,4.148,18.642,3.756,18.811,11.688,21.551,21.581,10.367,14.814,7.592,0.863,8.351,3.206,28.454,12.308,5.65,28.892,23.237,0.56,28.013,25.447,15.516,12.088,9.994,11.471,7.134,13.729,14.251,30.182,4.573,22.757,9.464,27.728,-0.164,14.688,12.784,13.852,19.488,12.172,18.07,3.458,10.341,16.932,15.801,11.258,13.245,1.62,10.623,19.385,-1.472,13.205,16.598,3.218,14.538,17.917,22.401,1.725,15.119,-2.794,24.992,9.893,8.771,13.575,0.846,6.575,14.71,1.078,6.174,11.633,5.01,7.895,-1.373,15.187,14.031,17.61,4.884,20.737,7.942,-0.66,10.652,20.087,8.389,-1.914,14.784,22.707,4.929,9.687,22.666,6.1,18.052,0.806,-7.77,-6.135,19.992,17.949,23.156,0.757,15.574,19.877,20.255,19.275,3.161,17.188,23.858,12.895,3.441,8.411,-2.812,11.703,17.145,18.989,4.186,5.134,3.098,20.181,5.301,12.018,6.471,6.223,7.873,19.221,11.002,25.653,7.611,1.19,-3.45,2.416,8.201,18.343,21.601,13.084,9.625,11.702],[26.686,22.896,8.327,13.956,12.273,15.098,4.669,1.201,8.636,21.143,28.531,29.712,7.851,1.445,13.635,18.351,10.973,16.93,14.408,12.733,10.951,0.369,16.224,14.115,4.233,-1.146,8.028,23.765,11.863,15.637,-1.35,13.379,4.592,16.544,9.594,0.279,6.852,4.235,21.276,-7.521,2.133,9.015,19.136,14.907,-1.243,20.046,18.569,20.739,22.056,12.364,2.536,-3.127,8.82,23.782,20.233,6.121,7.8,10.992,6.188,4.242,18.82,3.755,18.86,11.539,21.603,22.007,10.376,15.182,7.512,0.763,8.025,2.826,28.456,12.3,5.397,29.448,22.659,1.034,27.445,25.681,15.208,13.141,9.731,11.359,7.799,13.38,14.618,30.696,4.609,22.724,9.046,27.988,-0.019,15.199,13.03,14.028,19.674,12.099,17.903,3.497,10.155,16.262,15.955,10.617,13.304,1.47,10.557,19.072,-1.925,12.922,16.734,3.359,14.287,17.986,22.62,1.626,15.124,-2.858,25.274,10.554,8.735,13.496,0.419,6.517,14.444,1.392,6.284,11.753,4.757,7.993,-1.46,15.248,14.149,18.01,4.883,20.463,8.098,-0.293,10.653,20.318,8.409,-1.923,14.412,22.263,5.236,9.557,22.778,6.726,18.36,0.767,-7.18,-6.345,19.968,17.684,23.047,0.556,15.554,19.509,20.009,19.658,2.912,16.982,23.855,12.895,3.139,8.04,-2.981,12.245,17.153,18.884,4.344,5.254,3.121,20.323,5.456,12.281,6.583,6.72,7.947,18.906,11.299,25.326,7.482,1.106,-3.609,2.466,8.25,18.81,21.359,13.056,8.94,11.811],[26.551,22.615,8.446,13.914,12.111,15.099,4.905,1.131,8.445,21.163,28.508,29.939,7.608,1.396,13.876,18.594,11.174,16.698,14.603,12.539,10.844,0.276,16.238,13.958,4.467,-1.331,8.139,23.648,11.689,15.585,-1.273,13.187,4.763,16.641,9.49,0.333,7.052,4.126,21.235,-7.381,2.155,9.157,19.223,14.872,-1.251,20.014,18.538,20.83,21.885,12.429,2.438,-3.089,8.883,23.795,20.164,6.012,7.755,11.138,6.478,4.314,18.795,3.729,18.82,11.452,21.958,21.82,10.159,14.709,7.427,0.694,7.767,2.945,28.174,12.18,5.347,28.963,22.228,0.635,27.243,25.826,14.934,13.041,10.122,11.717,8.349,13.407,14.967,30.742,4.722,22.587,9.205,28.039,0.211,15.776,12.915,14.07,19.481,12.563,17.914,3.936,9.617,16.916,16.002,10.925,13.173,1.108,10.764,19.784,-2.131,13.061,16.747,3.626,13.624,17.315,22.898,1.399,15.527,-2.542,25.265,10.299,8.612,13.365,0.152,6.523,14.664,1.323,6.378,11.949,5.101,7.825,-2.005,15.714,13.121,18.223,4.734,20.681,8.091,-0.433,10.672,20.491,8.446,-1.789,14.085,22.057,5.299,9.478,23.064,6.733,18.288,1.101,-7.64,-6.024,19.895,17.983,22.733,0.665,15.876,19.233,20.497,20.188,2.873,16.764,24.083,12.853,3.176,8.368,-2.771,12.256,17.181,18.787,4.439,5.489,3.136,20.055,5.578,12.124,6.351,6.454,7.905,19.267,11.392,25.135,7.359,1.059,-3.803,2.45,8.077,19.413,21.171,12.944,8.53,12.116],[26.289,22.421,8.536,13.894,11.985,15.079,5.045,1.111,8.227,21.234,28.546,30.022,7.41,1.388,14.056,19.035,11.44,16.431,14.79,12.547,10.771,0.221,16.364,13.698,4.721,-1.478,7.981,23.718,11.755,15.56,-1.209,13.008,5.008,16.772,9.236,0.343,7.2,4.017,21.264,-7.198,2.141,9.2,19.251,14.858,-1.234,20.034,18.432,20.99,21.614,12.555,2.369,-2.992,8.982,23.864,20.187,5.969,7.765,11.259,6.778,4.299,18.664,3.683,18.727,11.41,22.022,21.728,10.007,14.398,7.216,0.525,7.73,2.901,28.169,12.092,6.222,28.262,22.255,-0.018,27.235,25.489,15.429,13.017,10.038,11.709,8.734,13.661,14.648,30.519,4.783,22.761,8.933,28.236,-0.21,15.896,13.12,13.447,19.374,12.848,18.12,4.183,9.801,17.126,16.014,11.439,12.52,1.171,10.354,20.627,-2.236,12.589,16.16,4.323,13.508,17.432,22.465,1.433,15.432,-2.567,25.2,9.611,9.162,13.188,0.162,6.418,15.176,0.945,6.613,11.914,5.346,7.756,-1.858,15.799,12.41,17.576,4.941,20.822,8.279,-0.781,10.514,19.941,8.539,-1.717,14.637,22.321,4.976,10.1,22.584,6.48,18.052,1.15,-8.122,-5.767,20.043,18.0,22.714,0.616,15.399,19.403,20.571,19.746,3.134,17.009,23.982,13.108,3.288,8.41,-2.688,12.179,17.255,18.562,4.23,5.353,3.158,20.167,5.233,11.488,6.485,5.965,7.749,19.355,11.297,24.956,7.577,1.355,-4.149,2.629,8.293,19.452,20.92,12.85,8.731,12.434],[26.187,22.564,8.53,13.73,11.878,15.134,5.155,1.01,8.083,21.315,28.463,29.976,7.346,1.321,14.117,19.286,11.701,16.284,14.856,12.687,10.681,0.034,16.608,13.331,4.958,-1.512,7.857,23.844,11.722,15.551,-1.198,12.93,5.248,16.669,9.005,0.254,7.247,3.923,21.477,-7.072,2.184,9.313,19.167,14.92,-1.204,20.032,18.326,21.087,21.303,12.695,2.41,-3.094,9.009,23.875,20.252,5.933,7.797,11.275,6.982,4.187,18.512,3.556,18.65,11.362,21.31,22.069,9.831,15.017,7.152,0.701,7.435,2.667,27.919,12.274,6.798,28.551,22.368,0.089,27.334,25.505,15.561,13.685,9.888,11.594,8.846,13.722,15.069,30.48,4.938,23.037,8.814,28.082,-0.259,16.045,13.369,13.626,20.353,13.027,18.29,4.02,10.144,16.378,16.344,11.453,12.834,1.175,10.269,20.565,-2.353,12.755,15.571,4.55,13.765,17.061,22.614,1.315,15.654,-2.709,25.251,9.43,8.885,13.321,0.242,6.483,15.183,0.73,7.018,11.544,5.423,7.712,-1.63,15.631,13.169,18.169,5.217,20.656,8.108,-0.759,10.627,20.034,8.265,-1.79,14.668,22.383,4.474,9.579,21.979,6.798,18.108,1.011,-8.223,-5.783,20.342,17.669,22.886,0.638,15.322,19.115,20.08,19.491,3.317,16.814,24.029,13.349,3.479,8.283,-2.507,12.259,17.106,18.955,3.961,5.308,3.291,19.955,5.035,11.482,7.064,5.752,7.675,19.093,11.594,25.37,7.689,1.423,-3.482,2.351,8.057,18.499,21.375,12.311,9.046,12.384],[26.234,22.794,8.431,13.846,11.796,15.449,5.307,0.949,8.06,21.396,28.305,29.862,7.326,1.244,14.327,19.236,11.799,16.092,14.908,12.877,10.549,-0.263,16.917,13.154,4.945,-1.37,7.812,23.927,11.759,15.42,-1.223,13.066,5.459,16.568,9.072,0.164,7.362,3.809,21.623,-6.995,2.191,9.199,19.032,14.933,-1.256,19.832,18.176,21.124,21.193,12.884,2.536,-3.077,8.959,23.885,20.452,5.916,7.772,11.172,7.086,3.965,18.4,3.385,18.617,11.321,21.552,22.091,9.749,14.852,7.073,0.633,7.267,2.644,28.061,12.04,6.73,29.155,22.608,0.451,27.017,25.483,16.061,13.731,10.103,11.412,8.639,13.632,15.039,30.707,5.226,22.793,8.863,28.142,0.158,16.067,13.67,13.456,19.909,13.11,18.575,4.396,10.025,16.058,16.355,11.671,13.438,0.931,10.388,20.593,-2.254,11.989,15.183,4.325,14.271,17.278,22.801,0.885,15.521,-2.752,25.462,9.735,8.702,13.146,-0.035,6.421,14.414,1.019,7.132,11.481,5.675,7.499,-1.484,15.196,13.277,17.861,4.426,20.942,8.126,-0.792,10.539,19.976,8.811,-1.785,14.006,22.629,4.798,9.45,22.207,7.099,18.084,1.433,-8.276,-5.728,20.64,17.692,22.401,0.622,16.01,19.08,20.001,19.617,3.314,16.473,24.056,13.794,3.698,8.33,-3.237,12.391,16.772,19.205,3.901,4.948,2.861,20.031,5.185,11.246,6.544,6.061,7.73,18.95,11.647,25.665,7.968,1.314,-3.489,2.204,8.27,18.469,21.86,11.936,8.985,12.093],[26.266,22.896,8.447,13.986,11.746,15.784,5.469,0.936,8.044,21.302,28.124,29.771,7.252,1.293,14.39,19.087,11.793,16.061,14.965,13.142,10.565,-0.411,17.087,12.962,4.836,-1.191,7.727,24.02,11.592,15.117,-1.223,13.21,5.553,16.364,9.331,0.181,7.497,3.687,21.755,-6.98,2.169,9.048,19.015,14.747,-1.374,19.629,18.097,21.108,21.251,13.071,2.786,-3.107,9.125,23.967,20.609,5.985,7.771,11.058,7.047,3.838,18.471,3.189,18.746,11.247,22.392,22.02,9.744,14.684,6.733,0.506,7.389,2.784,28.078,12.287,5.889,29.142,23.065,0.317,26.989,25.559,16.303,13.812,10.035,11.026,8.554,13.456,15.41,30.646,5.377,22.747,9.134,27.932,-0.079,16.28,13.356,13.671,19.596,13.303,18.874,4.233,9.657,16.216,16.174,11.882,13.382,0.71,10.479,20.437,-2.046,11.908,14.658,3.533,14.534,17.35,23.037,0.542,15.935,-2.786,25.456,9.244,8.962,13.301,0.101,6.392,14.018,1.133,6.908,11.559,6.016,7.659,-1.744,15.414,12.947,17.613,4.035,20.86,8.102,-1.047,10.512,19.457,8.792,-1.856,13.766,22.255,5.189,10.023,22.507,6.903,17.984,1.669,-7.823,-6.028,20.257,17.632,22.188,0.503,15.779,18.982,19.975,19.963,3.279,16.454,23.704,14.293,3.82,8.168,-2.587,12.193,16.728,19.45,3.992,4.684,2.707,20.107,5.197,11.224,6.103,7.047,7.86,19.221,11.706,25.854,7.731,1.255,-4.041,2.106,8.01,18.711,21.944,12.53,8.625,12.144],[26.193,23.028,8.58,13.971,11.689,15.923,5.596,0.851,8.043,21.389,28.01,29.521,7.232,1.375,14.259,19.022,11.831,16.238,14.939,13.319,10.565,-0.303,17.071,12.801,4.812,-1.048,7.642,24.096,11.376,14.67,-1.075,13.246,5.597,16.264,9.474,0.256,7.371,3.616,21.628,-7.049,2.179,9.101,18.939,14.422,-1.521,19.591,18.097,20.924,21.277,13.289,2.951,-3.195,9.249,24.074,20.611,6.102,7.72,11.0,7.014,3.799,18.618,3.068,18.991,11.23,22.821,21.96,9.25,15.002,6.412,0.675,7.504,2.659,28.061,12.357,5.572,28.55,22.485,0.006,27.183,25.408,16.248,13.692,10.185,11.295,8.759,13.136,15.482,30.474,4.759,23.133,8.938,27.634,0.214,16.263,13.363,13.18,20.088,13.219,18.846,4.16,9.946,17.036,16.094,11.54,13.568,0.861,10.116,20.191,-1.994,12.573,14.533,3.355,14.462,16.711,23.075,0.107,16.32,-2.757,25.81,9.541,8.961,13.083,0.634,6.351,14.404,1.252,7.104,11.979,6.14,7.98,-1.694,15.626,12.831,17.743,4.099,21.079,8.43,-0.815,10.966,19.497,8.131,-2.224,13.511,22.631,5.251,9.457,21.992,6.754,18.047,1.406,-7.678,-6.083,19.596,17.397,22.795,0.333,15.148,19.024,19.959,19.818,3.276,16.611,23.608,13.994,3.918,8.642,-2.571,11.915,17.067,19.513,4.17,4.929,2.983,20.21,4.992,11.865,6.827,7.589,7.881,19.653,11.891,25.754,8.117,1.41,-3.824,2.133,8.222,18.645,21.609,12.657,8.525,12.437],[26.226,23.043,8.965,13.946,11.681,15.775,5.512,0.736,8.057,21.597,27.863,29.405,7.252,1.345,14.052,19.079,11.806,16.489,14.852,13.467,10.491,-0.212,17.049,12.783,5.059,-1.045,7.625,24.215,11.295,14.302,-0.758,13.327,5.773,16.519,9.566,0.333,7.284,3.547,21.532,-7.164,2.227,9.048,18.854,14.148,-1.638,19.656,18.057,20.588,21.278,13.533,2.874,-3.145,9.381,24.029,20.534,6.085,7.525,11.093,7.058,3.848,18.541,3.193,19.13,11.296,22.826,22.14,8.799,14.567,6.366,0.864,7.608,2.526,28.008,12.207,6.279,28.655,23.11,-0.08,27.546,25.239,16.41,13.351,10.794,11.327,8.769,13.282,15.806,30.11,4.937,23.131,8.628,27.543,-0.124,15.902,13.695,12.706,20.089,13.218,18.848,4.368,10.07,17.559,16.548,11.387,13.457,1.104,9.922,20.203,-1.942,11.959,14.492,3.622,13.934,17.098,22.931,0.261,15.81,-2.304,25.834,9.418,8.877,12.765,0.603,6.248,13.948,1.597,7.312,11.974,6.138,8.115,-0.917,15.235,12.531,17.846,4.605,20.485,7.994,-0.529,11.183,19.323,8.091,-2.186,13.332,22.786,4.618,9.275,21.972,6.959,18.043,1.058,-7.972,-5.971,19.735,17.16,22.638,0.272,13.772,19.169,19.878,19.472,3.038,16.864,23.987,14.1,3.964,8.503,-2.755,11.844,17.069,19.079,3.961,5.337,3.178,20.427,4.992,12.085,6.709,7.472,7.842,19.559,11.985,25.503,8.715,1.44,-3.936,2.208,7.731,18.485,21.604,12.535,9.116,12.261],[26.426,23.087,9.224,13.85,11.751,15.631,5.491,0.692,7.972,21.664,27.727,29.503,7.255,1.101,13.868,19.093,11.674,16.778,14.884,13.643,10.21,-0.213,17.081,12.635,5.388,-1.029,7.633,24.216,11.255,13.958,-0.39,13.161,5.988,16.76,9.556,0.481,7.253,3.382,21.44,-7.287,2.198,9.042,18.652,13.92,-1.581,19.59,18.076,20.369,21.169,13.728,2.739,-3.003,9.511,23.856,20.391,6.033,7.296,11.088,7.078,4.052,18.365,3.489,19.116,11.467,22.688,22.27,9.288,14.438,6.267,0.491,7.953,2.505,27.89,12.165,6.348,28.903,23.002,0.21,27.793,25.26,15.828,13.469,11.016,11.218,8.882,13.548,15.513,29.984,5.124,23.16,8.656,27.68,-0.137,15.655,13.763,13.41,19.709,12.973,18.51,4.555,9.973,17.291,16.546,11.933,13.743,0.994,10.175,20.267,-1.674,11.757,14.564,4.083,14.586,17.193,22.99,0.474,15.929,-2.015,25.876,8.969,8.525,12.831,-0.04,6.67,13.62,1.814,7.097,11.682,6.328,8.256,-0.853,15.664,12.918,18.072,4.747,20.463,8.105,-0.787,11.146,19.66,8.218,-2.225,12.84,22.436,4.517,9.713,22.298,6.438,18.15,1.545,-7.912,-6.137,20.215,17.156,22.177,0.313,13.692,19.412,19.896,18.792,3.288,16.756,24.309,14.788,4.067,8.774,-2.699,12.408,16.794,19.072,3.694,5.011,3.18,20.408,5.274,11.628,5.962,7.367,7.882,19.474,12.268,25.366,9.196,1.345,-3.865,2.299,8.156,18.468,21.559,12.497,8.749,11.958],[26.386,23.108,9.142,13.739,11.849,15.433,5.523,0.683,7.991,21.67,27.729,29.595,7.347,0.8,13.95,18.996,11.613,16.948,14.945,14.139,9.834,-0.192,17.092,12.552,5.498,-0.985,7.596,24.186,11.268,13.691,-0.255,12.941,6.017,16.829,9.665,0.581,7.089,3.324,21.393,-7.426,2.303,9.182,18.548,13.767,-1.429,19.386,18.059,20.301,20.977,13.932,2.764,-2.806,9.655,23.707,20.244,6.034,7.351,10.969,6.999,4.214,18.322,3.794,19.069,11.634,22.592,22.424,9.439,14.874,6.675,0.649,7.96,2.085,28.183,11.972,6.004,28.434,23.036,1.014,27.467,25.581,16.037,13.184,10.959,11.135,9.19,13.577,14.975,30.036,5.375,23.26,8.871,27.686,-0.436,15.758,13.392,13.08,19.199,12.61,18.772,4.385,9.813,17.256,16.407,12.044,13.897,1.125,10.087,20.363,-2.168,11.97,14.653,4.667,15.126,17.535,23.352,0.686,15.811,-1.836,25.565,8.872,8.724,13.009,0.283,6.659,13.627,1.35,7.565,11.089,6.45,8.289,-0.928,15.768,12.969,18.235,4.327,20.709,8.295,-0.824,11.262,19.474,7.993,-2.326,12.25,22.417,4.452,9.277,22.263,6.509,17.973,1.758,-7.859,-6.267,20.008,17.033,21.836,0.368,14.321,19.103,20.087,18.582,3.526,16.459,23.306,15.295,3.899,8.964,-2.432,12.291,16.52,19.325,3.748,4.966,3.365,20.286,5.332,11.743,6.74,7.59,7.923,19.744,12.773,25.271,9.393,1.15,-3.637,2.452,8.301,18.62,21.627,12.36,8.185,12.088],[26.16,23.073,9.135,13.733,11.765,15.185,5.595,0.57,8.174,21.816,27.778,29.589,7.48,0.703,13.928,18.846,11.553,16.994,14.841,14.665,9.647,-0.055,17.109,12.511,5.415,-0.871,7.569,24.178,11.337,13.576,-0.308,12.689,6.02,16.813,9.978,0.436,6.811,3.378,21.5,-7.513,2.537,9.206,18.564,13.554,-1.417,19.094,17.892,20.325,20.707,14.245,2.801,-2.7,9.848,23.55,20.171,6.087,7.56,10.951,7.007,4.273,18.483,4.023,19.144,11.796,22.528,22.513,9.604,14.222,6.667,0.877,7.914,2.127,28.161,12.105,5.979,28.441,23.174,1.012,26.925,25.688,16.107,13.557,11.039,11.176,8.766,13.543,15.149,30.006,5.083,23.259,8.916,27.791,-0.81,16.006,13.456,12.818,19.75,12.974,18.818,4.38,9.069,17.19,16.164,11.679,14.054,1.155,10.229,20.034,-2.264,11.778,14.423,4.304,15.145,17.611,23.098,1.041,16.089,-1.857,25.968,8.085,8.759,13.083,0.651,6.409,13.138,1.409,7.577,10.963,6.114,8.428,-0.642,15.391,12.61,18.065,3.842,20.631,8.024,-0.755,11.33,19.06,8.547,-2.199,12.862,22.381,4.986,9.359,21.85,6.845,17.475,1.609,-7.799,-6.413,19.763,17.022,21.705,0.406,14.416,19.222,20.234,18.984,3.777,16.286,22.984,15.327,3.918,8.688,-1.979,11.531,16.794,18.934,4.65,5.555,3.549,20.434,5.126,11.856,6.923,7.657,7.955,19.403,13.096,24.878,9.274,1.226,-3.493,2.582,8.449,18.504,21.161,12.459,8.362,12.056],[26.005,23.008,9.33,13.736,11.596,14.92,5.664,0.44,8.235,22.037,27.788,29.451,7.62,0.81,13.9,18.772,11.512,16.995,14.766,14.912,9.575,0.091,17.23,12.409,5.188,-0.647,7.423,24.209,11.488,13.621,-0.413,12.434,5.894,16.64,10.256,0.221,6.386,3.479,21.587,-7.514,2.824,9.308,18.501,13.355,-1.394,18.872,17.733,20.444,20.477,14.559,2.883,-2.779,10.071,23.385,20.001,6.04,7.696,10.988,7.101,4.268,18.756,4.318,19.226,11.9,22.995,22.201,9.635,14.238,6.591,0.475,8.319,2.253,27.592,12.106,5.743,28.715,22.776,-0.066,26.809,25.046,15.596,13.602,11.109,11.306,8.47,13.363,14.911,30.274,5.112,23.788,9.079,27.637,-0.456,15.889,13.089,13.25,19.691,12.729,18.874,4.724,8.921,17.193,16.379,11.749,14.727,0.836,10.51,19.919,-2.002,11.766,13.975,3.964,15.715,17.16,22.933,1.573,16.053,-2.082,25.802,8.458,8.914,13.067,0.651,6.475,12.351,1.662,7.177,11.339,6.514,8.527,-0.816,15.707,12.102,17.802,4.054,20.599,7.959,-0.958,11.377,19.389,8.753,-2.144,12.884,22.925,4.873,9.347,21.368,6.463,17.399,1.669,-7.508,-6.355,19.063,17.171,21.935,0.442,14.327,18.982,19.938,19.73,3.737,16.244,23.415,14.918,3.981,9.317,-2.495,11.308,17.038,18.335,5.407,5.569,3.816,20.456,5.368,11.91,6.249,7.565,7.884,19.508,13.273,24.727,8.763,1.488,-3.007,2.709,8.648,18.328,20.974,12.781,9.086,11.848],[25.813,22.903,9.666,13.835,11.636,14.689,5.632,0.252,8.146,22.159,27.779,29.251,7.855,0.996,13.847,18.814,11.413,16.986,14.729,15.002,9.603,0.208,17.309,12.347,5.078,-0.497,7.28,24.29,11.618,13.726,-0.573,12.294,5.797,16.352,10.375,0.062,6.117,3.439,21.664,-7.549,2.941,9.371,18.493,13.232,-1.261,18.851,17.535,20.468,20.487,14.738,3.068,-2.942,10.289,23.351,19.74,5.933,7.809,11.021,7.175,4.288,18.932,4.714,19.134,11.954,23.405,22.436,9.248,14.914,6.571,0.335,8.667,2.043,27.291,12.141,6.098,28.308,23.172,-0.385,26.988,24.355,14.683,12.971,11.358,11.473,8.905,13.157,14.74,29.532,5.67,23.97,9.21,27.324,0.163,15.517,13.28,12.802,19.023,12.702,18.904,4.323,8.604,17.742,16.244,11.918,14.603,0.857,10.159,20.094,-1.896,12.255,13.839,4.025,15.874,17.17,23.146,1.685,16.187,-1.921,25.85,8.559,8.617,13.316,0.754,6.665,12.691,1.414,7.347,11.333,6.561,8.63,-1.052,15.777,11.613,17.883,4.332,20.849,7.275,-0.985,11.463,19.025,8.207,-2.133,12.073,22.517,4.439,9.711,21.233,5.556,17.423,2.247,-7.107,-6.282,19.092,16.95,21.699,0.37,14.454,18.944,19.41,19.828,3.806,16.121,23.614,14.914,4.143,9.38,-2.325,11.974,17.478,18.415,5.541,5.322,4.188,20.552,5.272,11.834,6.204,8.194,7.737,19.869,13.358,24.25,8.916,1.737,-3.224,2.516,8.395,18.689,21.133,13.094,9.12,12.058],[25.552,22.875,10.082,14.109,11.73,14.527,5.597,0.042,7.991,22.149,27.755,28.978,8.105,1.151,13.589,18.813,11.353,17.088,14.748,14.973,9.624,0.315,17.384,12.266,5.143,-0.349,7.087,24.402,11.708,13.952,-0.402,12.248,5.893,16.262,10.35,0.055,5.997,3.393,21.728,-7.527,2.992,9.36,18.463,13.189,-1.201,18.94,17.421,20.365,20.468,14.708,3.257,-3.004,10.42,23.33,19.734,5.711,7.749,11.16,7.306,4.356,18.946,5.08,18.981,11.98,23.135,22.626,9.175,14.483,6.376,0.973,8.967,1.858,27.129,12.355,6.295,28.134,23.107,-0.367,27.311,24.205,14.041,13.144,11.979,11.272,9.705,13.217,14.602,29.619,5.43,23.677,9.31,27.457,-0.091,15.536,13.282,12.715,19.363,12.621,18.854,3.973,8.901,17.548,16.257,11.475,14.385,1.319,10.33,20.286,-1.662,12.27,13.595,4.185,15.493,17.077,23.578,1.488,16.323,-2.045,26.098,8.216,8.506,13.274,0.619,6.251,13.455,1.141,7.412,10.941,6.161,8.779,-0.856,15.074,11.968,17.701,4.053,20.716,6.249,-0.973,11.665,18.849,8.346,-1.809,11.894,22.373,4.485,9.389,21.772,4.941,17.147,1.981,-7.317,-6.436,19.184,16.845,21.537,0.556,14.027,18.701,19.209,19.489,4.272,15.772,23.554,15.529,4.123,9.112,-2.35,12.032,17.135,18.068,4.831,5.18,4.385,20.528,5.17,12.025,6.549,8.458,7.602,19.188,13.583,23.974,9.552,1.696,-4.023,2.494,8.646,18.894,20.892,13.111,8.687,11.893],[25.333,22.954,10.445,14.266,11.782,14.33,5.621,-0.055,7.818,21.994,27.652,29.039,8.15,1.206,13.489,18.796,11.37,17.143,14.713,14.923,9.533,0.409,17.447,12.217,5.309,-0.131,6.885,24.494,11.87,14.244,-0.195,12.305,6.019,16.168,10.357,0.214,5.801,3.411,21.689,-7.521,3.093,9.426,18.391,13.227,-1.125,19.068,17.326,20.241,20.497,14.662,3.221,-3.144,10.489,23.381,19.821,5.418,7.509,11.086,7.533,4.42,18.696,5.208,18.786,12.022,22.425,22.407,9.284,14.737,6.214,0.855,9.132,1.355,26.973,12.519,5.668,28.577,22.772,0.111,27.894,24.133,13.858,13.191,12.342,11.541,10.345,13.406,14.604,29.562,5.067,23.627,9.412,27.211,-0.103,15.315,13.153,12.511,19.428,12.326,19.269,4.753,9.374,17.391,16.389,11.759,14.596,1.494,10.474,20.088,-1.91,11.912,13.847,4.543,15.954,17.337,23.636,1.091,16.398,-1.932,26.204,8.174,8.404,13.256,0.294,5.972,13.258,1.23,7.649,10.629,6.263,8.451,-0.409,14.795,12.322,17.23,4.053,20.599,5.343,-1.293,11.386,18.946,8.588,-1.911,12.14,22.879,4.711,9.211,21.787,5.232,17.414,1.699,-7.963,-6.25,19.49,17.195,21.421,0.484,13.507,18.302,19.215,18.993,3.954,15.666,22.967,15.372,4.246,9.21,-2.565,11.793,17.038,18.356,4.419,5.647,4.336,20.366,5.247,12.037,7.082,7.878,7.212,19.204,13.62,23.225,9.858,1.962,-3.72,2.785,8.847,18.678,20.845,12.596,8.549,12.2],[25.164,22.946,10.422,14.322,11.851,14.195,5.559,-0.113,7.777,21.871,27.664,29.281,8.067,1.086,13.552,18.601,11.459,17.189,14.462,15.121,9.449,0.453,17.586,12.149,5.625,-0.039,6.701,24.512,12.11,14.401,-0.17,12.349,6.091,16.026,10.309,0.329,5.559,3.528,21.564,-7.521,3.142,9.574,18.423,13.324,-1.063,19.212,17.321,20.245,20.581,14.516,3.118,-3.281,10.587,23.232,20.05,5.209,7.268,10.818,7.711,4.576,18.408,5.122,18.822,12.058,22.207,22.547,8.872,15.036,6.279,1.029,9.002,1.411,26.934,12.558,5.707,28.08,23.453,0.368,28.204,23.804,14.211,12.613,12.196,11.752,10.491,13.591,14.152,29.485,5.403,23.332,9.355,27.575,-0.326,15.381,13.041,12.783,19.168,12.701,19.251,5.09,9.168,17.628,16.074,11.996,15.188,1.026,10.444,19.959,-1.855,12.059,14.699,4.637,15.993,17.425,23.218,0.67,16.398,-1.862,26.131,8.582,7.789,13.556,0.239,6.472,13.733,1.469,7.622,10.703,6.718,8.521,-0.259,14.772,11.808,17.187,3.784,21.012,4.811,-1.013,10.81,19.093,8.759,-2.229,12.642,22.782,4.808,9.644,21.961,5.546,17.476,2.282,-7.989,-6.643,19.307,17.241,21.153,0.149,13.554,18.034,19.29,19.022,3.766,15.524,23.302,14.619,4.366,9.459,-2.942,11.829,17.271,18.738,4.533,5.905,4.581,19.776,4.698,12.013,6.902,7.905,7.088,19.497,13.371,23.148,9.511,2.801,-3.465,2.994,8.546,18.553,21.243,12.605,8.326,12.004],[24.92,22.888,10.137,14.49,11.928,14.227,5.541,-0.118,7.771,21.857,27.734,29.442,8.132,1.114,13.539,18.353,11.561,17.298,14.085,15.351,9.451,0.447,17.684,12.146,5.853,0.073,6.747,24.333,12.456,14.536,-0.197,12.29,6.152,15.877,10.311,0.431,5.316,3.484,21.415,-7.554,3.162,9.706,18.64,13.521,-1.154,19.194,17.336,20.397,20.687,14.318,3.18,-3.329,10.584,23.082,20.406,5.13,7.097,10.581,7.828,4.676,18.295,5.043,18.889,11.978,22.571,22.534,8.852,14.558,6.496,0.92,9.276,1.697,26.554,12.705,5.833,27.997,23.157,-0.051,27.878,23.839,14.427,13.201,11.868,11.406,10.031,13.393,14.005,29.725,5.584,23.349,9.041,27.709,-0.097,15.533,12.589,12.728,19.005,12.449,19.05,4.991,9.048,17.506,15.688,11.561,15.31,0.633,10.844,19.85,-1.622,12.048,15.557,4.719,15.509,17.786,22.95,0.749,16.388,-1.675,25.855,8.797,7.405,13.759,0.711,6.077,14.022,1.272,7.4,11.05,6.684,8.415,-0.84,14.661,11.398,17.213,3.567,20.657,5.007,-0.601,10.823,19.071,8.843,-2.182,13.184,22.44,4.722,9.621,22.105,5.17,17.247,2.873,-7.39,-6.736,19.456,17.044,21.61,0.294,13.825,18.099,19.413,19.54,4.056,15.507,23.138,14.894,4.115,9.624,-3.04,11.427,17.082,19.002,4.926,5.679,4.469,20.09,4.335,12.313,6.913,8.571,6.962,19.227,12.946,23.978,9.318,2.461,-4.227,2.975,7.935,18.107,21.4,13.258,8.161,11.264],[24.704,22.855,9.869,14.639,11.867,14.331,5.54,-0.053,7.795,21.923,27.859,29.51,8.244,1.293,13.474,18.267,11.523,17.53,13.825,15.416,9.515,0.547,17.589,12.156,5.775,0.164,6.824,24.107,12.737,14.739,-0.323,12.24,6.131,15.608,10.287,0.488,5.084,3.312,21.306,-7.482,3.201,9.697,18.826,13.782,-1.282,19.191,17.343,20.665,20.717,14.26,3.246,-3.43,10.459,22.938,20.712,5.096,6.899,10.319,8.033,4.498,18.246,4.986,18.818,11.877,22.737,22.341,9.406,14.746,6.576,0.993,9.187,1.778,26.325,12.797,6.071,28.08,22.724,-0.786,27.231,23.226,13.943,13.095,11.734,11.671,9.839,13.446,14.247,29.946,5.427,23.656,9.488,27.67,-0.061,15.238,12.263,12.498,19.168,12.23,19.32,5.269,8.857,18.142,15.316,11.938,14.896,0.901,11.197,19.532,-1.319,12.587,15.913,4.732,15.717,17.509,23.19,0.815,16.571,-1.906,25.618,8.667,7.689,14.057,1.509,5.749,13.605,1.401,7.791,11.279,6.157,8.41,-0.938,15.036,11.167,17.298,3.817,20.271,5.83,-0.687,11.517,19.396,8.988,-2.273,13.391,22.121,4.493,9.648,21.798,4.756,17.381,2.891,-7.838,-6.434,19.691,17.321,21.953,0.258,14.071,18.442,19.182,19.556,4.237,15.605,23.252,15.201,3.946,9.686,-2.641,11.01,16.44,18.93,5.567,5.681,4.149,20.433,4.873,11.896,7.549,8.602,6.88,19.447,13.192,24.139,9.126,1.49,-4.094,2.746,7.627,18.009,21.544,13.246,8.312,11.354],[24.614,22.796,9.76,14.65,11.831,14.369,5.509,0.018,7.981,22.134,27.959,29.604,8.269,1.458,13.33,18.329,11.46,17.862,13.851,15.292,9.554,0.776,17.523,12.126,5.683,0.321,6.828,24.02,12.895,14.965,-0.598,12.205,6.022,15.413,10.32,0.509,5.018,3.232,21.131,-7.365,3.198,9.694,18.97,14.01,-1.449,19.259,17.406,20.808,20.652,14.283,3.118,-3.425,10.283,22.779,20.91,5.136,6.665,10.15,8.381,4.261,18.215,4.877,18.673,11.732,22.617,22.31,9.262,15.028,6.507,1.486,9.463,1.518,25.956,13.057,6.287,28.291,23.131,-0.7,26.824,22.946,13.617,12.429,11.462,11.336,9.971,13.543,13.938,29.77,4.886,23.731,9.481,28.09,-0.085,15.171,12.256,13.021,19.281,12.638,19.152,4.544,8.578,18.461,15.092,11.992,14.955,1.097,11.423,19.499,-0.858,12.603,15.836,4.499,16.518,17.372,22.617,0.618,16.872,-2.167,25.67,8.316,8.336,14.566,1.994,6.176,13.675,1.956,7.409,11.183,6.165,8.613,-0.702,14.943,10.933,17.325,3.934,20.72,6.166,-0.835,11.582,19.632,9.233,-2.404,12.852,22.04,4.299,9.379,21.931,4.15,17.544,2.536,-8.061,-5.985,19.754,17.236,21.628,0.144,14.325,18.737,18.989,19.702,4.261,15.912,23.642,15.153,4.08,9.438,-2.916,11.025,16.509,19.303,6.07,5.596,4.296,19.704,5.028,11.412,7.835,8.249,6.86,20.024,13.147,23.493,8.907,1.354,-3.608,2.607,7.749,18.202,21.675,12.846,8.021,11.222],[24.629,22.729,9.8,14.684,11.829,14.267,5.465,0.124,8.164,22.173,28.103,29.726,8.223,1.662,13.265,18.419,11.466,18.218,13.968,15.195,9.378,0.949,17.571,12.038,5.52,0.635,6.967,23.863,12.964,15.027,-0.85,12.093,5.847,15.44,10.42,0.585,5.1,3.213,20.99,-7.209,3.241,9.605,19.118,14.036,-1.646,19.3,17.617,20.742,20.68,14.169,2.97,-3.312,10.088,22.609,21.089,5.176,6.478,10.14,8.695,4.131,18.346,4.764,18.508,11.478,22.619,22.593,9.214,14.7,6.525,1.271,9.534,1.177,26.003,12.826,5.833,28.113,22.992,-0.314,26.552,23.27,13.646,12.638,11.597,11.431,9.968,13.479,14.072,29.232,4.97,23.87,8.751,28.184,0.334,15.213,12.45,12.627,18.981,12.83,18.862,4.521,8.679,17.926,15.439,11.568,15.117,1.12,11.717,19.55,-0.845,12.705,15.482,4.463,16.785,18.083,22.662,0.722,16.674,-2.396,25.599,8.046,8.67,14.656,2.051,6.56,14.587,2.062,7.301,11.046,6.256,8.626,-1.181,14.123,11.191,17.008,3.732,20.38,5.747,-0.701,11.628,19.414,9.771,-2.31,12.723,22.412,4.351,9.715,22.188,3.603,17.402,2.851,-7.53,-5.782,19.594,17.749,21.24,0.031,14.429,18.95,19.388,19.911,3.7,15.958,23.785,15.149,3.981,9.111,-2.688,11.232,17.065,19.329,5.991,5.309,4.651,19.18,4.493,11.352,7.955,8.555,6.969,19.352,12.955,23.577,8.74,1.24,-4.175,2.43,7.701,18.251,21.487,12.641,7.041,10.853],[24.743,22.693,10.018,14.631,11.836,14.18,5.382,0.19,8.247,22.079,28.194,29.732,7.953,1.864,13.23,18.429,11.494,18.507,14.182,15.157,9.111,0.973,17.508,11.997,5.49,0.823,7.166,23.767,13.091,15.069,-1.066,12.034,5.696,15.443,10.473,0.641,5.13,3.228,21.008,-7.082,3.295,9.627,19.154,13.971,-1.801,19.342,17.811,20.607,20.777,14.013,2.804,-3.246,9.871,22.515,21.075,5.131,6.152,10.229,8.836,4.055,18.597,4.72,18.26,11.204,22.122,22.773,9.704,14.793,6.849,1.159,9.409,1.736,26.55,12.859,5.756,28.382,23.351,-0.446,26.6,23.52,13.869,13.024,11.687,11.825,9.999,13.627,13.702,29.935,5.415,23.662,8.588,27.99,0.384,15.042,12.733,12.575,19.151,12.485,19.138,4.409,9.036,18.681,15.554,11.385,15.057,1.115,11.491,19.734,-0.816,12.434,15.565,4.487,17.001,18.517,22.704,1.572,16.682,-2.185,25.561,7.648,8.414,14.598,2.029,6.947,14.692,1.547,7.311,10.626,5.833,8.757,-1.854,14.239,11.482,16.465,4.075,20.209,5.422,-0.564,11.479,19.7,9.723,-2.621,13.165,21.936,4.258,9.437,22.066,3.569,17.288,3.081,-6.891,-5.831,19.612,18.12,21.566,-0.062,14.052,18.683,19.86,19.667,4.182,15.991,23.265,14.45,3.793,9.147,-2.365,11.422,16.854,19.878,5.65,4.929,4.889,19.838,4.546,11.752,8.319,8.859,6.794,18.767,12.892,23.188,8.558,1.018,-3.919,2.197,7.804,18.425,21.558,12.223,6.601,10.968],[24.888,22.669,10.278,14.557,12.028,14.091,5.352,0.255,8.332,22.003,28.343,29.812,7.608,1.92,13.201,18.49,11.408,18.818,14.342,15.177,8.803,0.941,17.524,12.014,5.396,0.803,7.447,23.721,13.328,15.198,-1.226,12.016,5.616,15.384,10.527,0.644,5.109,3.217,21.001,-6.895,3.281,9.685,19.125,13.883,-1.936,19.454,17.787,20.432,20.905,13.927,2.614,-3.122,9.685,22.308,21.002,5.036,5.989,10.389,8.775,4.013,18.789,4.859,18.156,10.917,21.847,22.511,9.731,15.016,7.056,1.786,8.912,2.087,26.78,12.776,5.969,28.696,23.347,-0.442,26.676,23.946,14.011,12.748,12.078,11.239,10.007,13.677,14.095,29.977,4.788,23.458,8.569,28.174,0.441,14.995,12.953,12.638,19.217,12.368,19.258,4.869,9.01,18.486,15.815,11.606,15.039,1.226,11.509,19.689,-0.756,12.708,15.941,4.779,16.935,18.829,22.519,1.62,16.4,-2.289,25.44,7.56,8.134,14.551,2.181,6.595,14.059,1.531,7.291,10.219,5.813,8.826,-1.659,14.327,11.854,16.548,4.142,21.0,5.318,-0.739,11.68,20.105,9.568,-3.007,13.633,22.146,4.345,9.091,22.078,3.759,17.6,3.062,-6.913,-6.094,19.575,17.733,22.117,-0.205,14.047,18.736,19.934,19.488,4.258,16.15,22.638,14.084,3.033,8.9,-2.798,11.143,17.178,20.559,5.582,5.043,4.743,19.609,4.887,11.761,7.999,9.015,6.702,18.22,12.427,23.158,8.328,1.429,-3.415,2.177,7.437,18.861,21.493,12.19,6.265,11.463],[24.975,22.676,10.564,14.454,12.075,14.081,5.284,0.361,8.357,21.913,28.563,29.926,7.394,2.0,13.192,18.569,11.239,19.06,14.461,15.183,8.582,1.014,17.626,12.09,5.309,0.647,7.582,23.666,13.525,15.264,-1.255,12.047,5.55,15.335,10.639,0.593,5.084,3.213,21.156,-6.713,3.11,9.697,19.177,13.932,-2.087,19.635,17.717,20.303,20.961,13.786,2.384,-3.027,9.437,22.029,20.883,5.078,5.999,10.447,8.588,3.994,19.034,4.996,18.055,10.768,21.914,22.606,9.799,14.562,7.026,1.774,8.046,2.107,26.361,12.461,6.051,28.501,22.869,-0.534,26.841,23.788,13.991,12.448,12.291,11.782,10.322,13.898,14.51,29.945,5.269,23.449,8.748,28.112,0.437,15.022,12.879,12.381,19.425,12.422,19.152,4.843,8.224,18.146,15.822,11.407,15.036,1.444,11.786,19.673,-0.568,13.239,16.313,4.712,17.062,19.226,22.513,0.627,16.262,-2.653,25.421,7.533,8.573,14.419,2.246,6.669,13.855,1.606,7.215,10.529,5.989,8.91,-1.56,14.05,11.957,16.939,3.633,20.454,4.978,-0.813,12.024,19.622,9.21,-3.012,13.584,22.31,4.459,9.295,22.154,4.181,17.989,3.285,-7.23,-5.956,19.375,17.569,22.27,-0.435,14.191,18.665,20.065,19.483,3.91,15.991,22.763,14.756,3.277,8.714,-2.665,11.056,17.493,21.149,5.882,5.273,4.498,19.445,4.38,11.216,8.202,9.104,6.836,18.092,12.304,23.1,8.359,2.324,-3.906,2.415,7.37,18.864,20.94,11.901,6.46,11.665],[24.786,22.636,10.89,14.25,12.137,14.207,5.26,0.554,8.354,21.957,28.684,29.986,7.254,2.046,13.182,18.576,11.045,19.236,14.525,15.249,8.43,1.123,17.64,12.289,5.236,0.512,7.626,23.619,13.59,15.286,-1.282,12.143,5.43,15.206,10.786,0.581,4.943,3.162,21.345,-6.658,2.842,9.652,19.159,14.079,-2.209,19.868,17.601,20.203,20.818,13.674,2.362,-3.079,9.199,21.803,20.644,5.185,6.211,10.485,8.589,4.029,19.17,4.989,17.93,10.653,22.0,22.885,9.87,14.392,6.932,1.576,7.935,2.024,26.535,12.42,6.387,28.587,23.212,-0.442,26.869,23.463,13.761,12.465,12.581,12.136,10.818,14.118,14.06,30.312,5.436,23.235,8.826,28.4,0.559,15.044,12.963,12.462,19.653,12.488,19.339,4.242,7.841,18.697,15.5,10.849,15.14,1.354,11.866,19.836,-0.553,12.847,16.526,4.347,16.901,19.328,22.559,0.943,16.56,-2.269,25.408,7.571,8.989,14.378,2.065,7.019,14.197,1.162,7.008,10.47,5.767,9.048,-1.881,14.238,12.009,16.892,3.44,20.53,4.83,-0.781,11.853,19.26,9.078,-2.58,13.605,22.172,4.754,9.246,22.125,5.219,18.283,3.41,-7.179,-5.422,19.337,17.578,21.77,-0.68,14.158,18.76,19.625,19.611,3.982,15.878,22.852,14.996,3.837,8.814,-2.452,11.2,17.514,21.701,6.052,5.076,4.32,19.274,4.231,11.23,8.047,8.844,6.964,18.305,12.487,22.661,8.657,2.185,-3.499,2.249,7.746,18.936,20.842,11.748,6.351,11.379],[24.527,22.569,11.181,14.102,12.356,14.334,5.356,0.803,8.458,22.163,28.595,30.081,7.179,2.095,13.215,18.609,10.877,19.355,14.471,15.276,8.358,1.233,17.655,12.422,5.051,0.658,7.638,23.558,13.419,15.373,-1.439,12.291,5.28,15.023,10.921,0.687,4.854,3.116,21.518,-6.696,2.665,9.438,19.04,14.191,-2.267,19.977,17.547,19.995,20.592,13.566,2.432,-3.121,9.029,21.63,20.352,5.352,6.401,10.518,8.662,3.986,19.232,4.943,17.878,10.622,22.398,22.816,9.916,14.388,7.003,1.52,7.86,1.663,26.239,12.424,6.091,28.664,23.028,0.533,26.949,23.65,13.891,12.632,12.697,11.578,11.24,14.282,13.791,30.178,4.487,23.305,8.687,28.231,0.596,14.936,12.91,13.205,19.105,12.281,19.441,3.843,8.391,19.011,15.536,10.679,15.052,1.438,11.767,19.584,-0.88,13.237,15.902,4.396,17.162,19.218,22.62,1.515,16.554,-2.259,25.384,7.219,8.946,14.907,2.022,7.068,14.62,1.7,7.093,10.854,5.368,9.263,-1.936,14.481,11.707,16.893,3.458,21.304,5.01,-0.758,11.638,19.949,9.334,-2.441,13.829,22.495,4.803,9.102,22.038,5.349,18.607,3.397,-6.872,-5.289,19.502,17.714,21.312,-0.531,14.999,18.359,19.238,19.667,3.303,15.8,22.832,15.068,3.676,9.007,-2.363,11.618,17.509,21.462,5.83,5.04,4.333,18.917,4.646,11.483,8.129,9.175,7.2,18.05,12.823,22.226,8.683,1.888,-3.276,2.242,8.085,18.885,21.006,11.766,6.068,11.28],[24.266,22.552,11.384,14.048,12.456,14.407,5.229,1.112,8.698,22.281,28.42,30.158,7.133,2.118,13.35,18.349,10.745,19.421,14.397,15.383,8.364,1.353,17.697,12.548,4.853,0.907,7.757,23.545,13.23,15.505,-1.528,12.504,5.086,14.95,11.044,0.932,4.84,3.115,21.735,-6.7,2.663,9.261,19.14,14.462,-2.239,19.915,17.54,19.806,20.451,13.574,2.548,-3.016,8.953,21.478,19.902,5.65,6.406,10.647,8.818,3.836,19.169,4.886,17.797,10.733,22.427,23.026,10.205,13.75,7.453,2.105,7.716,1.751,26.216,12.106,5.85,28.895,23.581,0.005,26.91,24.085,13.967,12.442,13.034,12.11,11.122,14.258,14.351,30.198,4.799,23.545,8.45,28.525,0.367,15.167,12.831,12.486,19.108,12.0,19.341,3.81,8.427,18.878,15.499,10.84,14.764,1.071,11.915,19.678,-0.526,13.423,15.365,4.251,16.954,19.161,22.5,1.581,16.464,-2.664,25.375,6.964,8.078,14.643,1.748,6.745,14.458,2.046,6.779,11.578,5.542,9.275,-1.906,14.627,11.65,16.604,3.463,20.707,5.131,-0.745,11.623,20.024,9.338,-2.44,14.07,22.099,4.637,8.681,22.103,4.463,18.824,2.783,-6.321,-6.066,19.038,17.843,21.011,-0.54,14.876,18.307,18.837,19.379,3.257,15.719,22.362,14.884,3.484,8.46,-2.565,11.512,17.615,21.346,5.562,5.097,4.653,19.472,5.11,11.544,8.096,9.504,7.329,17.921,12.722,22.443,8.626,1.02,-3.657,2.31,8.235,18.868,20.822,11.91,5.875,11.38],[24.243,22.747,11.559,13.764,12.417,14.491,5.05,1.1,8.99,22.234,28.439,30.209,7.01,2.361,13.342,18.167,10.609,19.439,14.357,15.353,8.37,1.392,17.748,12.595,4.636,1.076,7.683,23.562,13.123,15.669,-1.542,12.713,4.949,14.982,11.094,1.156,4.768,3.085,21.629,-6.619,2.705,9.083,19.208,14.804,-2.061,19.761,17.567,19.654,20.43,13.531,2.533,-3.0,8.918,21.333,19.473,5.882,6.267,10.899,9.044,3.776,19.007,4.969,17.718,10.987,21.888,23.184,10.364,13.603,7.772,1.862,7.825,1.701,25.899,12.004,5.633,28.998,23.402,-0.145,27.412,23.959,13.827,12.275,12.97,12.449,10.793,13.925,14.751,30.883,4.542,23.637,8.503,28.323,0.82,15.205,12.857,12.685,19.073,11.936,19.332,4.299,8.006,18.569,15.899,10.738,14.725,0.698,11.576,19.434,-0.38,12.713,15.404,4.123,17.006,19.078,22.589,1.482,16.486,-2.538,25.316,7.191,8.503,14.342,2.228,6.989,13.908,1.749,6.444,11.722,5.637,9.318,-1.743,14.636,12.201,16.638,3.514,20.869,4.551,-0.388,12.044,19.78,9.251,-2.465,14.51,22.667,4.687,8.906,22.077,4.223,19.364,2.119,-5.873,-5.936,18.708,18.019,20.525,-0.262,13.82,18.045,18.178,19.301,3.651,15.891,21.925,15.132,3.703,8.431,-2.419,11.309,17.389,20.812,5.596,4.91,4.1,19.24,5.37,11.597,8.155,9.614,7.732,17.688,12.273,22.647,8.41,0.873,-3.522,1.951,8.107,18.732,20.066,12.179,5.833,11.844],[24.244,22.84,11.624,13.481,12.35,14.551,4.798,0.843,9.264,22.261,28.677,30.37,6.96,2.511,13.226,18.159,10.575,19.362,14.286,15.183,8.515,1.308,17.814,12.595,4.51,1.213,7.499,23.659,12.982,15.79,-1.562,12.836,4.922,15.092,11.079,1.264,4.5,3.129,21.603,-6.441,2.504,9.035,19.314,14.847,-1.813,19.632,17.642,19.552,20.394,13.459,2.485,-3.043,8.886,21.23,18.976,6.061,6.215,11.154,9.144,3.687,18.965,5.002,17.623,11.271,21.632,22.882,10.496,13.97,7.791,2.403,7.252,1.209,26.107,11.773,5.932,28.903,23.146,0.684,28.086,23.739,14.432,12.849,12.777,11.809,11.317,14.144,14.023,30.894,4.48,23.524,8.465,28.743,0.946,15.033,13.014,13.053,18.788,12.374,19.267,4.241,7.917,18.215,15.815,10.344,15.178,0.74,11.294,19.209,0.234,12.13,15.724,3.773,17.025,19.385,22.475,1.302,17.032,-2.431,25.444,7.108,8.925,14.255,2.719,7.067,14.47,2.272,6.594,11.055,5.347,9.519,-1.834,14.43,12.676,16.866,3.633,21.315,4.164,-0.18,12.22,19.64,8.895,-2.703,14.221,22.183,4.531,8.768,22.254,5.232,19.167,2.253,-5.923,-5.47,19.101,17.78,20.313,-0.242,14.326,18.021,17.932,19.422,3.449,15.965,22.273,14.893,3.52,8.918,-2.258,11.833,17.541,20.213,5.242,4.623,4.13,18.931,5.141,11.632,8.127,10.165,7.951,17.578,12.162,22.062,8.079,0.753,-3.326,1.955,7.58,18.279,19.998,12.667,5.629,12.285],[24.352,22.685,11.79,13.392,12.271,14.585,4.633,0.771,9.488,22.269,29.001,30.546,6.87,2.681,13.322,18.151,10.659,19.265,14.089,14.996,8.68,1.149,17.92,12.591,4.446,1.402,7.226,23.566,12.879,15.838,-1.639,12.84,4.885,15.241,11.122,1.392,4.29,3.224,21.667,-6.248,2.091,8.999,19.557,14.737,-1.601,19.55,17.761,19.582,20.288,13.27,2.464,-3.054,8.98,21.131,18.513,6.225,6.161,11.328,9.071,3.552,19.121,4.926,17.524,11.543,22.121,23.25,10.788,13.69,7.981,2.439,7.224,0.506,25.973,11.56,5.97,29.457,23.566,0.034,27.843,23.296,14.472,12.366,13.159,11.875,11.294,14.205,14.313,30.893,4.632,23.376,8.466,28.792,1.073,15.226,13.053,12.752,19.216,12.278,19.664,3.414,8.681,18.1,15.775,10.724,15.179,1.042,11.266,19.026,0.769,12.925,15.627,3.682,16.562,19.622,22.683,1.317,16.935,-2.278,25.391,6.925,8.336,14.039,2.825,6.824,15.12,2.417,6.733,11.24,4.976,9.619,-1.87,14.474,12.636,17.085,3.753,20.914,4.097,-0.273,12.276,19.631,8.522,-2.783,13.87,22.409,4.452,8.739,22.035,5.338,18.849,2.737,-6.0,-5.428,18.838,18.097,20.556,-0.426,14.782,18.602,18.117,19.528,3.141,15.955,22.545,14.923,3.448,8.725,-2.54,12.463,17.424,19.211,4.624,4.853,4.307,19.171,5.0,11.806,8.173,9.973,7.905,17.855,12.227,22.009,7.566,0.866,-3.735,1.931,6.984,18.594,19.928,13.042,5.95,11.805],[24.44,22.533,11.963,13.34,12.362,14.624,4.564,0.799,9.553,22.291,29.348,30.64,6.856,2.804,13.344,18.19,10.687,19.218,14.065,14.837,8.847,0.945,17.984,12.661,4.36,1.66,6.992,23.366,12.853,15.951,-1.857,12.969,4.788,15.405,11.263,1.451,4.29,3.342,21.745,-6.296,1.722,8.83,19.834,14.724,-1.566,19.6,17.974,19.564,20.21,13.009,2.58,-3.121,9.077,21.211,18.167,6.347,6.049,11.437,8.847,3.497,19.217,4.662,17.597,11.816,22.32,23.397,10.736,13.927,8.14,2.243,7.544,0.155,25.628,11.593,6.172,29.983,23.15,-0.281,27.678,23.155,14.376,12.431,13.163,12.211,11.331,14.134,14.198,31.311,4.233,23.345,8.432,28.938,1.343,15.202,12.519,12.646,18.898,11.922,19.473,2.885,8.857,18.148,15.394,10.922,14.365,1.755,11.389,19.219,0.603,13.341,15.194,3.945,16.71,19.628,22.364,1.4,16.82,-2.344,25.109,7.184,8.012,14.013,3.01,6.461,14.626,1.842,6.527,11.699,4.82,9.466,-1.26,14.784,11.917,17.045,3.072,21.303,3.979,-0.227,12.111,19.619,8.674,-2.439,14.095,22.643,4.749,9.018,21.874,4.54,18.771,2.473,-5.445,-5.443,18.723,18.523,20.361,0.117,14.199,18.798,18.548,19.421,2.563,16.192,22.211,14.817,3.389,9.038,-2.67,12.442,17.614,17.97,4.347,4.818,4.067,19.256,5.349,12.081,8.131,9.828,7.97,17.649,11.988,22.085,7.367,1.284,-3.392,1.769,7.174,19.12,19.276,13.005,5.826,12.261],[24.513,22.429,12.003,13.42,12.463,14.618,4.558,0.771,9.565,22.29,29.612,30.7,6.948,2.838,13.268,18.285,10.521,19.243,14.074,14.751,9.017,0.969,17.889,12.711,4.306,1.808,6.887,23.223,12.927,15.987,-1.979,13.08,4.567,15.588,11.201,1.338,4.271,3.417,21.966,-6.301,1.444,8.759,20.065,14.731,-1.525,19.863,18.209,19.512,20.047,12.771,2.757,-3.201,9.178,21.342,17.683,6.492,5.953,11.517,8.663,3.483,19.31,4.297,17.753,12.013,21.788,23.118,10.576,13.857,8.172,2.656,7.522,-0.21,25.665,11.587,5.504,30.508,23.3,0.175,27.857,22.673,14.517,12.733,13.142,12.226,12.119,14.197,14.427,31.55,3.903,23.058,8.329,29.205,1.511,15.176,12.462,13.544,18.792,12.132,19.421,2.765,8.268,18.364,15.343,10.545,14.2,1.549,11.337,19.656,0.384,12.718,14.865,4.131,16.538,19.183,21.933,1.575,16.897,-2.681,24.928,7.958,8.123,14.235,2.884,6.267,14.771,1.722,5.969,11.943,5.02,9.423,-1.445,14.837,12.143,16.968,2.379,21.645,4.296,-0.323,11.53,19.935,8.725,-2.295,14.108,22.158,4.888,8.62,21.849,4.75,19.123,1.918,-5.159,-5.759,19.047,18.507,19.641,0.168,14.127,18.733,18.265,18.881,2.564,16.404,22.637,14.539,3.242,9.234,-2.445,12.324,17.848,16.946,4.217,4.373,3.535,19.333,5.784,12.417,7.695,9.697,8.277,17.672,11.721,22.142,7.457,2.065,-3.502,1.761,7.381,18.982,19.087,12.883,6.121,12.547],[24.528,22.315,12.084,13.538,12.485,14.712,4.483,0.781,9.505,22.13,29.848,30.769,6.994,2.898,13.402,18.402,10.313,19.317,14.22,14.656,9.142,1.088,17.802,12.816,4.287,1.826,6.955,23.112,12.985,15.912,-2.057,13.29,4.338,15.753,10.85,1.142,4.3,3.424,22.226,-6.094,1.222,8.601,20.231,14.729,-1.408,20.016,18.331,19.537,19.838,12.45,2.986,-3.358,9.29,21.408,17.158,6.777,5.944,11.596,8.499,3.517,19.307,3.896,17.913,12.194,21.064,23.061,10.498,13.762,8.185,2.459,7.745,-0.308,25.946,11.64,4.752,30.441,23.526,0.3,28.022,23.143,14.096,12.265,13.315,12.097,12.244,14.217,14.437,31.403,4.085,23.468,8.368,29.057,1.652,15.326,12.661,12.776,18.976,11.838,19.546,3.278,7.903,18.468,15.691,10.205,14.171,0.678,11.329,19.769,0.163,12.832,14.632,4.05,16.545,18.428,22.172,1.959,16.89,-2.524,24.814,8.294,8.255,14.063,2.747,6.193,15.235,2.007,5.881,11.611,5.193,9.094,-2.174,15.085,13.279,17.376,1.924,21.626,4.236,-0.549,11.533,19.869,8.512,-2.233,14.12,22.891,4.698,8.724,21.613,5.409,19.971,1.749,-5.152,-5.823,18.935,18.635,19.268,-0.495,14.635,18.917,18.309,18.532,2.587,16.597,22.699,14.212,3.322,9.018,-2.613,12.712,17.69,16.784,3.928,4.399,3.233,19.525,5.646,12.304,7.578,9.374,8.449,17.651,11.405,22.302,7.693,2.585,-3.3,1.655,7.185,18.647,18.833,12.704,6.574,11.995],[24.661,22.227,12.165,13.479,12.417,14.752,4.313,0.799,9.493,22.026,30.008,30.733,7.05,2.869,13.384,18.4,10.168,19.356,14.495,14.681,9.178,1.126,17.905,12.984,4.302,1.723,7.027,23.273,12.975,15.833,-2.131,13.684,4.293,15.881,10.45,0.966,4.351,3.338,22.488,-5.779,1.189,8.476,20.247,14.79,-1.36,20.153,18.454,19.479,19.659,12.155,3.263,-3.456,9.274,21.436,16.772,7.081,5.934,11.634,8.313,3.527,19.223,3.573,18.005,12.328,20.896,22.873,10.084,14.326,7.633,2.233,7.782,-0.01,26.299,11.679,5.124,30.139,23.219,0.153,28.341,23.32,14.179,12.784,13.063,11.976,11.683,14.176,14.317,31.249,4.313,23.277,8.437,29.27,1.353,15.246,12.827,12.261,18.785,11.913,19.489,4.148,8.471,18.575,15.704,10.426,14.193,0.995,11.288,19.96,0.205,13.21,14.28,3.942,16.402,18.145,22.096,1.845,16.528,-2.745,24.772,8.291,8.07,13.804,2.724,6.213,15.296,1.929,6.029,12.028,4.487,8.676,-1.891,15.295,13.134,17.69,1.815,21.974,3.931,-0.802,11.243,20.005,8.207,-2.078,13.983,22.817,4.496,8.795,21.537,5.333,20.335,1.679,-4.845,-5.797,19.042,18.499,19.348,-0.508,14.733,18.992,18.372,19.183,2.364,16.643,22.216,13.986,3.47,8.98,-2.917,12.814,17.636,16.388,3.411,4.48,2.922,19.501,5.72,12.296,7.961,9.578,8.643,17.156,11.139,22.019,7.876,2.499,-3.599,1.877,7.013,18.895,18.44,12.444,6.762,12.389],[24.943,22.348,12.152,13.407,12.351,14.723,4.172,0.724,9.343,21.999,30.07,30.687,7.104,2.814,13.309,18.347,10.289,19.354,14.674,14.755,9.259,1.032,18.085,13.136,4.383,1.495,6.995,23.402,12.967,15.695,-2.181,14.009,4.251,15.989,10.007,0.806,4.433,3.28,22.62,-5.436,1.273,8.484,20.128,14.839,-1.376,20.299,18.547,19.457,19.57,12.031,3.56,-3.519,9.159,21.373,16.426,7.187,5.923,11.767,8.236,3.587,19.144,3.312,17.911,12.401,21.101,22.924,10.269,14.17,7.716,2.155,7.513,1.025,26.457,11.583,5.575,30.483,22.467,-0.07,28.313,23.566,14.623,13.22,13.042,11.784,11.009,14.181,14.705,31.177,4.202,22.619,8.574,28.838,1.379,15.164,13.04,13.267,18.666,11.628,19.253,4.644,8.683,18.723,15.794,10.809,14.514,1.594,11.109,19.748,0.474,12.913,14.299,4.053,16.409,18.231,22.028,1.573,16.484,-2.857,24.981,7.763,7.967,13.788,2.59,6.326,14.966,1.683,5.989,12.817,4.169,8.702,-1.249,15.249,13.081,17.228,1.939,22.414,3.674,-0.783,10.695,19.765,7.733,-2.07,13.911,22.552,4.589,8.484,21.54,5.078,19.977,1.899,-4.764,-5.655,18.727,18.598,19.58,0.077,14.973,19.121,18.573,19.507,2.429,16.777,22.46,13.685,3.964,8.985,-2.912,12.53,17.406,16.052,2.623,4.621,2.908,19.527,6.387,12.329,8.008,9.579,8.971,16.921,10.929,22.115,7.615,2.019,-3.837,1.743,6.961,19.011,18.088,12.095,6.329,12.677],[25.337,22.446,11.905,13.416,12.382,14.779,4.165,0.745,9.292,21.928,29.988,30.572,7.086,2.668,13.461,18.236,10.532,19.319,14.814,14.903,9.195,0.981,18.209,13.346,4.472,1.171,6.97,23.31,12.919,15.423,-2.182,14.193,4.219,15.981,9.675,0.734,4.423,3.274,22.669,-5.233,1.365,8.352,20.029,14.861,-1.414,20.396,18.584,19.333,19.545,11.93,3.831,-3.626,9.001,21.321,16.148,7.225,5.87,11.944,8.206,3.723,19.072,3.091,17.673,12.439,21.264,22.906,10.681,13.753,7.692,2.818,7.74,1.471,26.154,11.522,5.532,30.672,22.902,-0.391,28.337,23.572,14.307,12.937,13.002,11.728,11.124,14.128,14.734,31.257,3.722,23.137,8.571,28.949,1.503,15.435,13.138,13.484,18.875,11.846,19.305,4.739,8.759,18.933,16.083,10.914,14.66,1.641,11.165,19.508,0.507,13.17,14.916,4.405,16.79,18.409,22.457,1.574,16.628,-2.797,25.035,7.676,7.815,13.803,2.546,6.096,14.789,1.727,5.833,12.64,4.696,8.222,-1.295,15.792,13.458,17.604,2.53,22.307,4.516,-1.012,10.301,19.361,8.252,-2.104,14.09,23.056,4.785,8.651,21.444,5.249,19.619,2.376,-4.182,-5.178,18.93,18.544,19.209,0.318,14.807,19.345,18.986,18.864,2.546,16.945,22.432,13.411,3.87,9.264,-2.789,12.796,17.504,15.769,2.032,4.681,2.641,19.442,6.371,12.108,7.571,9.525,9.047,17.695,10.736,22.189,7.121,2.094,-3.287,1.964,7.095,18.504,17.638,11.917,5.975,12.515],[25.573,22.452,11.492,13.397,12.467,14.803,4.298,0.932,9.43,21.949,29.76,30.425,7.066,2.726,13.615,18.203,10.723,19.179,14.89,15.057,9.061,1.08,18.297,13.693,4.601,0.944,6.968,23.238,12.87,15.268,-2.23,14.115,4.332,15.917,9.49,0.689,4.476,3.352,22.688,-5.104,1.573,8.279,19.875,14.838,-1.536,20.491,18.594,19.18,19.446,11.745,3.881,-3.417,8.799,21.283,15.984,7.254,5.854,12.033,8.332,3.936,19.089,2.841,17.631,12.341,21.444,22.691,10.669,13.875,8.153,2.543,7.835,0.631,26.055,11.674,5.192,30.439,23.146,0.056,28.395,24.156,13.962,12.756,12.939,12.103,11.336,14.294,14.912,31.346,3.724,23.281,8.511,28.717,1.218,15.62,13.179,13.086,18.773,12.471,19.761,5.086,8.507,19.167,15.953,11.066,14.721,1.47,11.248,19.683,0.016,13.373,14.363,4.196,16.815,18.987,22.182,1.376,16.823,-3.096,24.913,7.849,8.13,13.967,2.391,5.715,14.772,1.796,5.773,12.478,4.75,7.756,-1.753,16.003,14.258,17.493,3.645,22.097,5.043,-0.878,10.468,19.582,8.51,-1.951,14.105,22.844,4.426,8.655,21.303,5.491,19.474,2.258,-3.779,-4.928,18.781,18.08,18.859,0.18,14.426,19.597,19.482,19.059,2.505,17.248,22.528,13.271,4.169,9.27,-2.553,13.176,17.547,15.527,1.849,4.717,2.36,19.258,6.244,12.615,7.049,9.035,8.881,17.905,10.439,21.97,6.993,2.365,-3.901,2.082,7.115,18.432,17.326,12.41,5.561,12.644],[25.705,22.456,11.207,13.425,12.714,14.87,4.41,1.172,9.767,21.981,29.452,30.278,7.029,2.692,13.505,18.388,10.889,19.12,14.809,14.954,8.957,1.138,18.432,14.082,4.794,0.714,6.947,23.08,12.795,15.105,-2.287,14.077,4.468,15.8,9.547,0.755,4.73,3.427,22.622,-5.04,1.779,8.34,19.653,14.717,-1.673,20.67,18.628,19.249,19.3,11.554,3.769,-3.19,8.641,21.35,15.902,7.166,5.885,12.212,8.418,4.143,19.043,2.601,17.757,12.263,21.165,22.465,9.942,14.127,8.402,1.701,7.799,0.191,26.631,11.593,5.292,29.966,22.627,0.218,27.984,24.598,14.061,12.756,12.374,12.533,10.64,14.418,14.973,31.373,4.463,23.48,8.368,29.027,1.248,15.391,13.108,13.566,18.539,12.377,19.811,5.14,7.843,18.521,15.707,11.122,14.968,1.439,11.437,19.893,-0.379,13.487,13.53,3.576,16.706,19.48,21.764,0.984,16.979,-2.896,24.715,8.179,8.285,14.036,2.452,6.012,14.695,1.778,6.077,12.21,5.009,7.69,-2.135,15.848,14.333,17.486,4.624,21.842,4.237,-0.796,10.424,20.225,7.625,-2.465,13.658,22.829,4.229,8.425,21.197,5.329,19.6,1.948,-4.177,-5.07,18.376,17.743,18.965,0.169,14.66,19.75,19.527,19.723,3.081,17.349,22.606,13.053,4.302,8.853,-2.903,12.836,17.276,16.232,1.707,5.005,2.328,19.299,6.233,12.465,7.004,9.145,8.981,17.23,10.165,21.935,6.855,2.64,-3.495,2.316,6.714,18.892,16.819,13.283,5.808,13.168],[25.764,22.299,10.915,13.496,12.981,14.96,4.518,1.205,9.855,21.975,29.159,30.22,6.941,2.48,13.381,18.509,11.027,19.129,14.638,14.767,8.894,1.051,18.55,14.458,4.921,0.481,6.863,22.945,12.773,14.836,-2.232,14.115,4.711,15.864,9.778,0.788,4.915,3.494,22.54,-5.078,1.984,8.299,19.596,14.478,-1.793,20.731,18.746,19.455,19.246,11.266,3.639,-3.078,8.546,21.442,15.887,7.04,5.959,12.417,8.413,4.396,19.03,2.413,17.811,12.142,21.105,22.748,10.84,13.994,8.403,1.689,7.584,1.045,27.303,11.664,5.1,29.811,22.845,0.257,27.258,24.807,14.622,12.855,12.406,12.949,10.185,14.529,15.054,31.535,4.744,23.126,8.429,29.033,1.744,15.075,12.865,14.303,18.746,12.334,19.674,4.948,8.245,18.08,15.601,11.137,14.852,1.551,10.935,19.911,-0.508,14.199,13.155,3.292,16.57,19.545,21.845,1.076,16.949,-2.984,24.46,7.683,8.458,13.706,2.085,5.976,14.874,1.871,6.377,12.388,4.753,8.024,-2.265,14.882,13.877,17.277,5.125,21.807,3.876,-0.973,10.083,20.174,8.218,-2.819,13.944,22.629,3.943,8.285,21.131,5.697,20.121,2.618,-4.204,-5.472,19.167,17.775,18.824,-0.094,14.539,19.995,19.287,19.296,3.333,17.29,22.453,12.804,3.695,8.248,-2.71,12.794,17.365,16.434,1.734,5.139,2.306,19.444,6.426,12.296,7.126,9.132,8.904,17.127,10.316,22.133,6.855,2.357,-3.016,2.606,7.289,18.612,16.703,13.837,5.944,13.026],[25.842,22.151,10.649,13.621,13.197,15.136,4.492,1.043,9.899,21.983,28.933,30.214,6.847,2.373,13.406,18.442,11.159,19.077,14.397,14.642,8.858,0.943,18.532,14.749,4.96,0.346,6.907,22.92,12.802,14.639,-2.103,14.22,4.868,15.81,10.05,0.837,4.995,3.484,22.535,-5.26,2.358,8.448,19.63,14.296,-1.919,20.563,19.096,19.65,19.216,10.951,3.329,-2.974,8.479,21.542,15.965,6.991,6.255,12.572,8.333,4.582,19.046,2.295,17.911,11.972,21.194,23.198,10.991,13.994,8.484,2.273,7.099,1.076,27.236,11.825,5.502,29.69,22.716,0.107,27.28,24.826,14.719,12.852,12.184,13.003,10.252,15.05,14.74,31.559,4.673,22.907,8.633,28.726,1.045,15.208,12.664,14.126,18.733,12.787,19.777,4.712,8.675,18.764,15.733,11.242,14.66,1.557,11.056,19.899,-0.859,14.411,13.064,3.505,16.477,19.769,22.13,0.956,17.045,-3.263,24.687,7.238,7.886,13.433,1.625,5.483,14.337,1.581,6.498,12.635,4.822,8.217,-2.025,14.593,13.757,17.463,5.171,21.533,4.657,-0.893,10.273,19.887,8.588,-2.537,13.672,22.094,3.514,8.413,21.058,5.61,20.725,3.424,-3.828,-5.659,19.028,17.775,18.821,-0.063,14.08,19.975,18.823,19.6,2.954,17.538,22.752,12.719,4.003,8.202,-2.487,13.063,17.449,15.49,1.834,5.268,2.378,19.135,6.369,12.13,6.853,8.959,8.743,17.241,9.912,22.118,6.888,1.878,-3.411,2.727,7.894,18.447,17.007,13.749,5.796,12.41],[25.972,22.119,10.561,13.696,13.386,15.286,4.47,0.824,10.061,22.006,28.814,30.17,6.853,2.401,13.517,18.296,11.368,19.031,14.202,14.581,8.915,0.828,18.533,14.763,4.926,0.369,7.01,23.001,12.996,14.602,-2.037,14.342,4.958,15.642,10.218,0.993,4.947,3.348,22.557,-5.381,2.771,8.777,19.589,14.24,-1.945,20.222,19.542,19.664,19.142,10.682,2.938,-2.989,8.491,21.642,15.968,6.957,6.542,12.515,8.138,4.575,19.004,2.238,17.904,11.715,21.12,22.707,10.556,14.444,8.355,2.049,7.039,0.154,27.261,11.951,5.789,29.681,22.381,-0.161,27.324,24.817,14.761,12.588,11.655,12.836,10.126,15.232,14.613,31.252,4.25,23.428,8.464,28.484,0.855,15.382,12.668,13.907,18.613,12.649,19.597,4.586,8.51,19.352,15.391,11.248,14.485,1.381,11.127,19.809,-1.311,14.29,13.12,4.037,16.363,19.823,22.039,0.841,17.091,-2.753,24.85,7.63,7.089,13.516,0.992,5.351,13.875,1.815,6.414,12.493,5.382,8.461,-1.556,15.437,14.569,17.38,5.157,21.311,5.303,-0.847,10.804,19.777,8.011,-2.331,13.37,22.59,2.832,8.555,21.027,5.956,20.619,3.311,-4.004,-5.831,19.251,17.691,19.057,-0.22,13.69,20.384,18.334,19.756,3.717,17.824,22.779,12.539,3.587,8.494,-2.394,13.382,17.263,15.25,1.984,5.449,2.378,19.325,5.945,12.298,6.53,8.742,8.837,17.527,9.623,22.279,6.736,1.277,-3.589,2.861,7.693,18.841,17.616,12.979,5.816,13.33],[26.052,22.079,10.552,13.807,13.378,15.273,4.489,0.56,10.019,22.09,28.837,30.102,6.923,2.407,13.682,18.255,11.454,19.024,14.069,14.487,9.05,0.66,18.559,14.674,4.965,0.224,6.953,23.19,13.145,14.511,-2.008,14.53,5.104,15.58,10.268,1.104,5.046,3.245,22.722,-5.342,3.135,8.923,19.436,14.235,-1.94,19.922,19.815,19.666,19.148,10.588,2.538,-3.103,8.438,21.634,16.063,7.022,6.608,12.483,7.879,4.481,19.003,2.199,17.941,11.44,21.39,22.193,11.488,14.507,9.168,1.704,7.058,-0.181,27.634,12.039,5.67,29.835,22.837,-0.447,27.012,24.731,14.611,12.809,11.773,13.319,10.316,15.007,14.859,31.062,4.047,23.78,8.671,28.278,1.411,15.494,12.662,14.234,18.342,12.633,19.701,4.314,8.637,18.976,15.314,11.762,14.329,1.374,11.433,19.521,-1.35,14.472,13.422,4.262,16.314,19.92,21.809,1.212,16.882,-2.899,24.823,7.788,7.088,13.89,1.24,5.716,14.233,2.015,6.908,12.647,5.0,8.64,-1.028,15.451,14.947,17.341,4.563,21.208,4.491,-0.629,10.567,19.467,8.605,-2.577,13.53,23.145,1.995,8.773,21.087,5.329,20.186,3.451,-4.329,-6.416,19.017,17.496,18.799,-0.394,13.606,20.864,18.086,19.668,4.246,18.291,22.672,12.116,3.077,8.851,-2.219,12.848,17.405,15.577,2.185,5.236,2.384,19.375,6.288,12.433,6.059,8.429,8.91,17.519,9.817,22.462,6.587,0.897,-3.46,2.769,7.962,18.724,17.818,11.818,5.935,13.247],[25.975,22.15,10.673,13.962,13.335,15.01,4.435,0.236,10.169,22.181,28.891,29.91,7.082,2.368,13.798,18.29,11.561,19.049,14.027,14.414,9.175,0.568,18.599,14.638,5.044,0.146,6.82,23.365,13.257,14.352,-1.991,14.793,5.183,15.672,10.27,1.095,4.974,3.153,22.961,-5.398,3.455,9.184,19.245,14.161,-1.874,19.855,19.987,19.57,19.151,10.664,2.145,-3.226,8.316,21.616,16.262,7.131,6.724,12.351,7.668,4.336,19.072,2.228,17.914,11.155,21.517,22.252,11.401,14.155,9.362,2.171,7.378,-0.511,27.829,12.051,5.285,29.748,22.838,-0.415,27.192,25.124,14.102,13.277,11.948,13.14,10.362,15.116,14.559,31.495,4.606,23.905,8.712,28.546,1.411,15.34,12.374,14.433,18.188,12.861,19.833,4.113,8.974,18.422,15.433,11.333,14.355,1.651,11.476,19.837,-1.214,14.739,12.975,3.981,16.152,20.0,22.203,0.541,16.925,-2.935,25.06,7.742,7.543,14.278,1.475,5.704,14.701,1.726,6.881,13.169,4.984,8.406,-1.248,14.7,14.393,17.285,4.142,21.552,4.014,-0.464,10.497,19.518,8.735,-2.848,13.748,23.109,1.563,8.813,21.006,5.8,19.591,3.944,-4.116,-6.326,19.253,17.45,18.618,-1.141,14.035,21.047,18.297,19.788,4.226,18.619,22.52,12.126,3.335,8.942,-2.526,12.784,17.413,15.86,1.866,5.176,2.52,19.29,6.697,12.188,5.988,8.105,8.984,17.232,9.32,22.263,6.49,0.892,-3.218,2.518,8.124,18.466,18.058,11.983,6.237,12.4],[25.937,22.312,10.826,14.261,13.34,14.596,4.484,-0.13,10.429,22.315,28.917,29.878,7.296,2.392,13.933,18.301,11.683,19.037,13.918,14.399,9.249,0.438,18.574,14.667,5.077,0.142,6.852,23.501,13.361,14.095,-1.98,15.008,5.168,15.69,10.129,0.976,4.961,3.07,23.125,-5.518,3.65,9.407,19.258,14.189,-1.809,19.817,20.131,19.529,19.085,10.799,1.847,-3.328,8.063,21.62,16.487,7.271,6.837,12.076,7.62,4.257,19.053,2.285,17.79,11.053,21.439,22.653,10.965,14.417,8.93,2.033,7.148,-0.149,27.675,12.442,5.0,29.721,22.688,-0.226,27.158,25.695,14.089,12.796,12.079,13.124,10.535,15.139,13.878,31.342,4.539,23.791,8.975,28.46,1.229,15.663,12.479,14.558,18.596,12.834,20.096,3.695,8.964,18.791,15.29,10.928,14.537,0.94,11.567,19.845,-1.199,14.343,12.714,4.347,16.181,20.187,22.474,0.137,17.196,-2.567,25.276,7.92,7.183,13.826,1.675,5.192,14.036,1.477,6.944,13.24,5.728,8.331,-1.621,14.704,14.717,17.159,4.007,21.814,4.467,-0.842,10.726,19.37,8.545,-2.527,13.274,22.846,1.398,8.858,20.963,5.808,19.151,4.041,-4.04,-6.14,19.03,17.427,18.849,-2.338,14.275,21.439,18.134,19.36,4.348,18.643,22.263,12.461,3.223,8.835,-3.029,13.031,17.301,16.195,1.418,4.791,2.504,19.146,6.114,11.458,5.703,8.391,9.17,17.307,9.556,22.685,6.511,0.528,-3.002,2.359,8.33,18.917,18.193,12.447,5.994,12.924],[25.936,22.425,10.886,14.612,13.316,14.224,4.601,-0.265,10.552,22.449,28.882,29.938,7.362,2.301,14.063,18.289,11.607,19.073,13.753,14.599,9.334,0.217,18.601,14.772,5.065,0.184,6.899,23.598,13.326,13.835,-1.915,15.02,5.317,15.621,9.978,0.706,5.078,2.996,23.178,-5.496,3.597,9.423,19.307,14.238,-1.831,19.621,20.254,19.399,19.005,11.05,1.665,-3.368,7.712,21.672,16.69,7.16,6.641,12.135,7.68,4.105,19.031,2.287,17.632,11.149,21.901,23.465,11.253,15.238,9.094,1.737,7.126,0.192,27.648,12.773,5.655,29.461,23.073,-0.768,27.286,25.747,14.672,13.109,12.33,13.552,10.493,14.84,13.941,31.233,4.3,23.857,9.267,28.445,1.172,15.825,12.137,14.236,18.395,12.732,20.059,3.653,8.432,19.224,15.004,11.519,14.679,1.143,11.509,19.76,-1.349,14.191,12.924,4.607,16.271,20.355,22.249,0.683,17.091,-3.071,25.37,8.111,7.194,13.606,1.248,5.174,13.323,1.137,6.838,13.366,5.545,8.099,-1.594,14.838,15.124,17.32,4.205,21.507,4.943,-1.021,10.485,19.274,9.09,-2.428,12.689,23.082,1.592,9.423,20.927,5.636,19.187,4.098,-4.357,-6.666,18.982,17.478,18.682,-2.711,14.313,21.274,18.005,19.375,4.085,18.513,22.345,12.853,2.594,8.757,-2.405,12.427,17.421,16.206,1.761,4.954,2.666,19.034,6.143,12.032,5.979,8.662,8.966,17.24,10.277,22.719,7.162,0.23,-3.37,2.329,8.496,18.852,18.281,12.232,6.165,13.037],[25.964,22.645,11.028,14.935,13.403,14.141,4.697,-0.265,10.661,22.522,28.856,30.037,7.307,2.054,14.157,18.304,11.602,19.202,13.555,14.883,9.42,0.24,18.678,14.957,5.07,0.249,6.953,23.657,13.186,13.595,-1.897,14.866,5.284,15.62,9.854,0.348,5.3,2.997,23.147,-5.501,3.485,9.59,19.256,14.094,-1.813,19.367,20.331,19.217,18.929,11.397,1.49,-3.226,7.383,21.689,16.803,6.89,6.521,12.295,7.775,3.97,18.925,2.238,17.529,11.415,21.973,23.128,11.52,15.554,9.196,1.829,7.719,-0.067,27.75,13.077,5.84,29.416,22.871,-0.711,27.053,24.934,14.535,13.428,12.397,13.121,10.334,15.161,13.824,31.174,4.412,24.071,8.825,28.485,1.367,15.711,11.893,14.074,18.033,12.175,19.927,4.217,8.613,19.158,14.903,11.407,14.902,1.163,11.603,20.018,-1.445,14.342,12.812,3.755,16.55,20.515,22.551,0.631,16.943,-3.029,25.392,8.075,7.33,14.028,0.554,5.327,13.02,1.055,6.945,13.057,5.664,8.029,-1.49,14.975,14.922,17.372,4.249,21.586,4.811,-1.366,10.432,19.474,8.695,-2.884,12.637,23.47,1.486,9.224,20.72,5.832,19.241,4.173,-4.291,-6.519,19.08,17.551,18.523,-2.426,14.313,20.628,17.748,19.766,4.564,18.604,22.517,13.119,2.524,8.783,-2.132,12.761,17.232,16.442,2.506,5.278,2.608,18.818,6.277,12.692,6.035,9.001,8.705,16.875,10.319,22.569,7.346,0.199,-3.936,2.272,8.066,18.446,18.644,12.084,5.905,12.876],[25.907,22.839,11.251,15.172,13.569,14.125,4.768,-0.082,10.686,22.418,28.753,30.169,7.171,1.873,14.336,18.331,11.533,19.324,13.529,15.052,9.509,0.367,18.771,15.131,5.064,0.108,6.956,23.771,13.105,13.353,-1.931,14.675,5.266,15.79,9.677,-0.001,5.557,2.903,23.133,-5.472,3.516,9.716,19.181,13.859,-1.756,19.066,20.345,19.226,18.878,11.703,1.409,-3.096,7.182,21.641,16.949,6.745,6.569,12.297,7.756,4.076,18.677,2.191,17.402,11.762,21.957,22.273,11.87,14.963,9.375,1.085,7.874,-0.668,27.47,13.411,5.478,29.218,23.063,-0.654,26.92,24.885,13.665,13.262,12.802,12.985,10.887,15.283,13.725,31.258,4.368,24.249,8.55,28.528,1.251,16.0,11.952,15.025,18.408,12.457,20.059,4.674,9.218,19.027,14.662,11.558,15.337,0.911,11.465,19.909,-1.363,14.498,12.35,3.584,16.749,20.8,22.698,0.56,17.283,-2.505,25.501,8.2,7.22,14.378,1.24,5.504,13.291,0.64,7.087,12.898,5.355,7.786,-1.18,15.08,14.653,17.62,4.196,21.413,4.814,-1.704,10.307,19.311,9.056,-2.981,12.594,23.154,1.313,9.348,20.656,5.896,19.343,4.159,-4.35,-6.677,18.414,17.299,18.668,-1.999,13.762,20.44,17.244,19.651,4.409,18.466,22.22,13.41,2.898,8.238,-2.16,13.169,17.004,16.255,2.833,4.851,2.492,18.737,5.714,12.468,6.15,9.135,8.549,16.956,10.304,22.486,6.329,0.073,-3.921,2.155,7.632,18.453,18.664,11.996,5.952,12.981],[25.739,22.899,11.49,15.181,13.641,14.04,4.764,0.073,10.676,22.218,28.432,30.237,6.985,1.786,14.627,18.504,11.549,19.437,13.545,15.294,9.655,0.447,18.864,15.365,5.085,-0.016,6.924,23.828,13.022,13.098,-1.942,14.474,5.266,16.003,9.613,-0.439,5.776,2.829,22.984,-5.482,3.606,9.928,18.964,13.636,-1.692,18.896,20.277,19.18,18.919,11.885,1.458,-3.012,7.058,21.617,16.959,6.64,6.762,12.133,7.824,4.243,18.439,2.229,17.288,11.977,21.974,22.585,11.652,15.158,9.666,0.682,7.127,-0.618,27.438,13.354,5.838,29.441,23.167,-0.44,26.61,25.253,12.951,13.293,12.997,13.182,10.837,15.407,13.446,31.533,4.796,23.845,8.925,28.668,0.56,16.085,11.987,14.938,18.342,12.54,20.524,3.9,9.2,19.093,14.981,11.744,15.532,1.373,11.532,19.82,-1.548,14.613,12.37,4.062,16.874,20.987,22.512,0.258,17.591,-2.635,25.524,8.472,6.962,14.179,1.436,5.572,14.067,0.411,7.01,12.847,5.004,7.69,-0.989,15.378,14.472,17.649,3.909,21.238,4.977,-1.81,10.194,19.048,9.251,-3.268,12.4,22.976,1.204,9.55,20.819,5.905,19.083,4.207,-4.307,-6.871,18.735,17.297,18.657,-1.73,13.432,21.057,17.174,19.73,4.402,18.407,22.182,13.302,3.017,7.642,-2.264,12.589,17.097,16.365,2.313,4.823,2.673,18.656,5.697,12.645,6.021,8.764,8.431,17.412,10.534,22.349,5.761,0.352,-3.79,2.44,7.658,18.51,18.579,12.456,5.939,13.139],[25.756,22.776,11.591,15.081,13.628,13.736,4.829,0.093,10.677,22.253,28.069,30.235,6.923,1.632,14.817,18.769,11.621,19.658,13.484,15.56,9.793,0.403,18.861,15.494,4.913,-0.148,6.813,23.699,12.932,12.991,-1.932,14.299,5.185,16.199,9.76,-0.832,5.905,2.755,22.751,-5.502,3.629,10.132,18.677,13.423,-1.68,18.865,20.331,19.227,19.026,11.971,1.714,-3.023,6.896,21.746,16.926,6.621,6.93,11.917,7.92,4.368,18.365,2.366,17.393,12.14,21.81,22.645,11.148,15.669,9.609,1.149,6.634,-0.376,27.665,13.245,6.037,29.128,23.205,-0.207,26.322,24.838,13.361,13.552,12.911,13.815,10.832,15.16,13.572,31.675,4.606,23.997,8.727,28.818,0.819,16.188,12.014,15.168,18.419,12.472,20.429,3.373,8.876,18.871,15.044,11.427,15.402,1.115,11.477,20.338,-1.807,14.761,12.47,4.546,16.95,21.037,22.596,0.275,17.392,-3.057,25.449,8.449,7.04,13.767,0.783,5.617,14.303,0.244,6.956,12.561,5.46,7.868,-0.931,15.597,14.319,17.686,3.313,21.128,5.3,-2.338,10.608,18.66,9.18,-2.744,12.527,23.151,1.425,9.809,21.039,6.213,18.56,4.579,-4.588,-6.599,18.515,16.784,18.486,-1.816,13.836,21.204,17.282,19.759,4.427,18.648,22.483,13.551,3.053,7.704,-2.359,11.988,16.73,16.431,1.572,5.615,2.557,18.956,5.789,13.094,6.151,8.797,8.304,17.242,10.496,22.82,6.121,0.511,-3.611,2.571,8.161,18.054,18.619,12.817,6.098,12.909],[25.833,22.677,11.609,15.047,13.694,13.442,4.869,-0.123,10.545,22.455,28.05,30.202,6.976,1.613,14.868,19.047,11.578,19.972,13.49,15.717,9.756,0.253,18.616,15.554,4.826,-0.321,6.678,23.618,12.838,13.025,-1.936,14.176,5.181,16.368,9.924,-1.071,6.076,2.687,22.565,-5.523,3.622,10.124,18.267,13.462,-1.674,18.886,20.558,19.261,19.086,11.987,1.982,-3.059,6.889,22.046,16.992,6.656,7.086,11.744,8.072,4.455,18.261,2.395,17.565,12.323,21.786,22.381,11.793,15.571,9.012,0.883,7.085,-0.436,27.41,13.182,6.098,28.457,22.7,-0.918,26.262,24.906,13.829,13.875,12.976,13.54,11.079,15.219,13.09,31.199,4.585,24.171,8.665,28.513,0.751,16.62,11.9,15.434,18.953,12.37,19.909,3.253,8.936,18.704,14.748,11.595,15.749,1.143,11.214,20.7,-2.141,14.843,12.556,4.262,17.1,20.964,22.667,0.687,17.034,-3.224,25.368,8.625,7.153,13.852,0.335,5.453,13.845,-0.206,6.762,12.866,5.648,8.107,-0.603,15.36,14.242,18.148,3.154,21.003,5.581,-2.457,10.845,18.79,9.948,-2.406,12.146,23.042,1.115,10.209,20.997,6.364,18.839,4.477,-4.462,-6.769,18.266,16.556,18.62,-2.469,13.495,21.098,17.124,19.338,4.455,18.616,22.58,13.45,3.465,7.923,-2.311,12.023,16.601,16.325,1.892,5.4,2.098,19.171,5.716,13.009,6.3,9.293,8.502,17.089,10.65,22.768,5.575,0.661,-3.437,2.663,8.34,18.035,18.853,12.229,6.106,12.37],[25.962,22.728,11.689,15.043,13.87,13.282,4.854,-0.539,10.545,22.465,28.216,30.08,7.078,1.698,14.945,19.256,11.614,20.391,13.368,15.808,9.645,0.213,18.232,15.656,4.847,-0.497,6.559,23.653,12.827,13.127,-2.061,14.064,5.22,16.532,9.963,-1.213,6.318,2.547,22.418,-5.557,3.625,10.136,17.919,13.446,-1.786,18.846,20.755,19.156,19.09,12.029,2.102,-2.914,6.968,22.375,17.181,6.666,7.108,11.631,8.274,4.424,18.244,2.227,17.651,12.293,22.13,22.275,11.489,15.282,8.994,0.579,7.356,-0.752,27.601,13.154,6.137,28.498,22.827,-1.26,26.356,25.127,13.311,13.781,13.165,12.999,10.834,15.621,13.011,30.559,4.788,24.136,8.905,28.365,0.35,16.428,11.981,14.96,18.8,12.043,19.763,3.896,8.763,18.859,15.024,11.627,15.95,1.275,11.049,20.587,-2.181,14.607,12.224,3.78,17.104,20.978,22.363,0.497,16.904,-3.242,25.254,8.286,7.036,13.694,0.636,4.989,13.103,0.097,6.835,12.429,5.45,8.13,-0.535,15.399,14.028,18.001,3.62,20.684,5.539,-2.396,10.594,18.446,10.211,-3.104,12.206,22.607,1.15,9.726,20.915,6.408,18.862,4.229,-4.424,-6.919,19.04,16.015,18.998,-2.71,13.803,21.092,16.987,18.953,4.595,18.872,22.476,13.608,3.52,7.86,-2.12,12.597,16.633,16.512,2.578,5.081,2.215,18.991,5.982,13.075,6.73,9.61,8.59,17.031,10.897,22.714,5.862,1.35,-3.658,2.849,8.191,18.37,18.905,12.385,5.949,12.539],[26.136,22.897,11.801,15.048,14.021,13.277,4.916,-0.864,10.456,22.239,28.296,29.965,7.173,1.84,14.892,19.244,11.698,20.758,13.251,15.873,9.533,0.367,18.025,15.629,4.98,-0.53,6.339,23.633,12.791,13.069,-2.339,13.957,5.335,16.542,9.871,-1.252,6.379,2.375,22.251,-5.578,3.607,10.123,17.6,13.457,-1.959,18.672,20.89,19.035,19.108,12.205,2.282,-2.771,7.046,22.57,17.417,6.702,6.992,11.733,8.323,4.368,18.403,2.159,17.75,12.066,22.246,22.329,11.893,15.215,9.475,0.466,6.814,-1.304,27.718,13.273,5.914,29.231,23.07,-1.335,26.559,25.035,12.465,13.966,13.378,13.018,11.179,15.802,12.824,30.125,4.473,24.059,9.043,28.146,0.74,16.457,12.343,15.385,19.051,12.434,19.74,4.088,8.343,19.288,15.115,11.521,15.367,1.097,11.133,20.548,-1.967,14.471,12.664,3.649,17.062,21.405,22.424,-0.137,16.735,-3.004,25.242,8.488,6.719,14.044,0.761,4.771,12.329,0.02,7.124,12.209,5.178,7.988,-0.749,15.941,14.086,18.021,4.038,20.555,5.467,-2.233,10.518,18.28,9.777,-3.419,12.11,22.383,1.141,9.603,20.858,6.058,18.264,4.583,-4.438,-6.769,18.738,16.19,18.764,-2.786,13.931,21.051,17.148,18.637,4.638,19.173,22.959,13.638,3.334,7.354,-1.946,12.114,16.649,17.019,2.08,5.21,2.55,18.883,6.374,13.331,6.795,9.614,8.499,17.412,10.656,23.014,6.866,1.224,-3.663,2.458,8.251,18.249,19.201,12.949,6.216,12.83],[26.217,23.113,12.112,14.962,14.126,13.284,4.905,-1.105,10.395,22.043,28.43,29.758,7.15,2.035,14.749,19.258,11.853,21.057,13.247,15.84,9.405,0.48,17.922,15.529,5.099,-0.514,6.063,23.618,12.817,12.908,-2.38,14.022,5.501,16.624,9.905,-1.265,6.282,2.333,22.164,-5.522,3.599,9.992,17.437,13.472,-2.088,18.46,20.946,18.864,19.107,12.369,2.35,-2.734,7.199,22.706,17.81,6.856,6.913,11.882,8.18,4.226,18.381,2.144,17.81,11.838,22.173,22.176,12.123,15.528,9.477,1.196,7.217,-1.791,27.797,13.147,6.001,29.111,23.031,-1.643,26.624,25.394,12.161,13.643,13.188,13.339,11.275,15.931,12.972,30.458,4.924,23.63,8.819,28.041,1.31,16.449,11.948,15.541,19.05,12.657,19.516,3.93,8.291,19.374,14.778,11.5,15.766,1.465,11.136,20.822,-2.216,14.509,12.624,4.061,17.149,21.832,22.672,0.365,16.806,-3.312,25.23,8.618,6.541,13.981,0.648,4.834,11.667,-0.211,7.337,12.265,5.263,8.081,-1.365,15.733,14.382,18.319,3.863,20.584,5.246,-2.516,10.356,18.387,9.426,-3.523,12.507,22.065,1.054,9.89,20.944,6.534,18.164,4.847,-4.812,-7.047,18.118,15.958,18.386,-2.668,13.317,21.063,17.12,18.391,4.386,18.993,23.305,13.471,3.79,7.018,-1.857,12.17,17.065,17.339,1.589,5.665,2.526,19.191,5.725,12.793,6.826,9.693,8.7,17.603,10.661,23.073,6.396,1.545,-3.799,2.667,8.421,18.144,19.36,12.578,6.337,12.745],[26.309,23.311,12.302,14.87,14.169,13.259,4.894,-1.317,10.263,21.919,28.489,29.606,7.233,2.382,14.53,19.375,11.945,21.162,13.166,15.798,9.362,0.634,17.892,15.433,5.124,-0.573,5.794,23.698,12.818,12.638,-2.19,14.21,5.741,16.877,9.987,-1.288,6.126,2.444,22.205,-5.555,3.573,9.837,17.333,13.44,-2.176,18.382,20.851,18.673,18.997,12.585,2.505,-2.846,7.165,22.908,18.2,6.923,7.018,11.99,8.154,4.258,18.228,2.028,17.751,11.589,22.311,21.879,11.718,15.494,9.512,1.287,7.083,-1.901,28.129,13.003,6.209,29.014,23.094,-1.255,26.689,25.822,12.081,13.647,13.73,13.948,11.742,15.906,13.672,30.696,4.51,23.519,9.148,27.849,1.447,16.288,11.741,14.921,18.972,12.349,19.317,3.998,8.374,19.607,14.806,11.817,16.35,1.466,11.458,20.591,-2.32,14.798,12.39,4.479,17.081,22.204,22.58,0.66,16.52,-3.33,25.122,8.193,6.286,14.071,0.719,4.568,11.568,-0.063,7.321,12.428,5.31,8.122,-0.992,15.385,14.548,18.04,2.782,20.868,4.953,-2.448,10.429,18.635,9.169,-3.418,13.377,21.498,0.772,9.67,20.877,6.75,18.433,4.459,-4.983,-7.088,18.108,15.59,18.496,-2.747,13.186,21.237,16.576,17.976,4.291,19.134,22.602,12.984,3.977,7.416,-2.007,12.416,16.651,17.472,2.654,5.467,2.718,18.974,5.922,12.325,6.319,9.112,8.808,17.745,10.684,22.967,5.883,1.805,-4.066,2.527,8.348,17.899,19.901,11.852,6.222,13.071],[26.502,23.225,12.276,14.78,14.132,13.296,4.818,-1.355,10.108,21.854,28.414,29.488,7.457,2.78,14.428,19.387,11.96,21.164,13.18,15.961,9.342,0.703,17.853,15.339,5.175,-0.554,5.42,23.807,12.954,12.232,-1.942,14.375,5.875,17.1,10.041,-1.208,5.962,2.338,22.329,-5.552,3.51,9.614,17.306,13.455,-2.302,18.375,20.773,18.39,18.918,12.701,2.716,-3.147,7.135,23.071,18.534,6.911,7.186,12.123,8.069,4.361,18.096,1.973,17.603,11.327,22.535,21.741,11.007,15.492,9.012,1.242,6.96,-1.999,28.077,12.909,6.194,29.212,23.564,-1.109,26.542,25.538,12.003,13.907,13.649,14.187,11.727,15.807,12.948,30.608,4.548,23.692,9.3,27.882,1.714,16.287,11.933,14.69,18.89,12.684,19.286,3.97,8.212,19.754,14.919,11.557,15.316,1.471,11.401,20.633,-2.25,14.433,12.362,4.337,17.225,22.685,22.616,0.508,16.376,-2.76,25.238,8.299,6.162,13.995,0.118,4.145,11.93,0.179,7.473,12.669,6.006,8.143,-0.471,15.73,14.524,18.059,2.889,21.22,4.899,-1.989,10.698,18.117,9.38,-2.98,13.422,21.424,1.03,9.405,20.767,6.179,18.545,4.243,-5.034,-6.81,18.233,15.777,19.04,-2.903,13.159,21.076,16.55,18.122,4.492,19.049,22.662,13.372,3.827,7.736,-2.489,12.584,16.48,17.679,2.788,5.229,2.543,18.744,6.655,12.326,6.33,9.129,8.729,17.735,10.99,22.991,6.217,1.711,-3.911,2.509,8.233,17.88,20.223,11.66,6.022,12.829],[26.6,23.006,11.96,14.565,14.035,13.24,4.81,-1.178,9.864,21.872,28.238,29.478,7.569,2.985,14.588,19.303,11.988,21.099,13.243,16.058,9.2,0.592,17.825,15.199,5.255,-0.487,5.146,23.927,13.08,11.913,-1.702,14.441,5.865,17.207,10.063,-0.987,5.829,2.242,22.528,-5.34,3.423,9.585,17.368,13.461,-2.322,18.439,20.703,18.303,19.036,12.832,2.7,-3.488,7.195,23.187,18.751,7.035,7.147,12.022,8.047,4.482,18.105,2.016,17.506,11.252,22.299,21.92,10.471,15.347,9.066,2.091,8.107,-1.984,27.976,12.735,5.702,28.91,23.517,-1.577,26.37,25.739,12.17,13.627,13.497,13.92,11.766,15.857,12.491,30.152,4.838,23.436,9.062,27.71,2.04,16.17,12.03,14.892,18.954,12.743,19.473,4.362,7.738,19.856,14.819,11.599,15.565,1.509,11.375,20.74,-2.47,14.241,12.034,3.888,16.769,22.632,22.676,0.52,16.647,-2.498,25.301,8.896,5.807,14.217,-0.206,3.928,12.356,0.37,7.614,12.8,5.888,8.176,-0.113,16.405,14.365,18.379,3.351,21.615,4.738,-1.957,10.549,17.602,9.185,-3.127,13.266,21.447,0.676,9.352,20.826,5.728,18.337,4.453,-4.543,-6.777,18.023,15.912,18.626,-3.626,13.29,20.395,16.703,17.773,4.491,19.076,23.323,13.245,4.247,7.51,-2.444,12.581,16.717,17.549,2.522,5.591,2.329,18.852,6.607,12.389,6.529,9.405,8.846,17.654,11.281,23.554,6.759,2.076,-4.167,2.806,8.661,18.001,20.448,11.727,6.108,13.111],[26.677,22.841,11.709,14.431,13.877,13.126,4.833,-0.919,9.632,21.862,28.022,29.494,7.649,3.15,14.71,19.272,11.967,20.958,13.227,15.992,9.063,0.412,17.94,15.089,5.262,-0.558,5.012,24.107,13.173,11.783,-1.593,14.526,5.7,17.279,10.086,-0.665,5.723,2.211,22.792,-5.079,3.239,9.746,17.335,13.439,-2.422,18.443,20.552,18.24,19.12,13.021,2.774,-3.683,7.364,23.398,18.815,7.127,7.028,12.036,8.072,4.688,18.143,2.061,17.491,11.451,22.025,22.306,10.327,14.76,8.281,2.304,8.256,-1.738,28.204,12.537,5.698,28.719,22.893,-1.591,26.218,25.854,11.778,13.96,13.215,13.602,11.32,15.599,13.305,29.839,4.746,23.553,9.371,27.693,2.48,16.517,11.855,15.047,19.419,12.438,19.45,4.623,7.569,19.453,14.925,11.676,15.803,1.484,11.642,20.398,-2.35,14.422,11.531,4.076,17.221,22.345,22.735,0.543,16.513,-2.021,25.121,9.012,5.564,14.386,0.363,4.037,12.289,-0.051,7.426,12.713,5.44,8.208,-0.324,16.319,14.779,18.314,3.071,21.677,4.473,-1.986,10.212,18.003,9.133,-3.442,13.665,21.831,0.558,9.306,20.96,6.114,18.302,4.289,-4.099,-6.58,17.932,15.85,18.569,-3.478,13.476,20.636,16.572,17.892,4.109,18.771,23.627,12.801,4.061,6.938,-2.517,12.379,16.941,17.851,2.364,5.631,2.422,18.989,5.991,12.442,6.505,9.346,8.968,18.04,11.33,23.538,6.561,1.769,-5.075,2.928,8.514,18.471,20.365,11.729,6.153,12.877],[26.711,22.734,11.562,14.359,13.657,13.081,4.792,-0.578,9.394,21.933,27.867,29.542,7.74,3.306,14.833,19.258,11.87,20.675,13.308,15.944,9.015,0.334,18.073,15.124,5.315,-0.723,4.93,24.244,13.224,11.814,-1.556,14.681,5.432,17.306,10.035,-0.486,5.699,2.156,23.057,-4.949,2.838,9.81,17.358,13.458,-2.571,18.329,20.447,18.247,19.224,13.081,2.883,-3.947,7.603,23.546,18.808,6.988,6.804,12.14,8.007,4.762,18.241,2.083,17.609,11.634,21.674,22.137,10.273,14.557,7.951,1.897,7.751,-1.714,28.251,12.583,6.207,28.939,22.561,-1.022,25.958,26.085,11.502,13.914,13.046,13.253,11.181,15.585,13.177,29.884,5.089,23.577,9.531,27.738,2.309,16.444,11.895,14.989,18.977,12.698,19.463,4.133,7.522,19.158,14.811,11.843,15.446,1.266,12.016,20.723,-2.11,14.165,11.567,4.342,17.221,22.088,22.843,-0.006,16.657,-2.104,25.266,8.527,5.762,14.59,0.968,4.112,11.367,0.574,7.085,12.849,5.704,8.161,-0.381,15.87,14.903,18.218,3.077,21.796,4.452,-1.973,10.383,18.104,8.996,-3.952,14.168,22.274,0.807,9.73,20.965,6.674,18.328,3.909,-3.662,-6.211,17.854,15.511,19.291,-3.1,13.279,20.784,16.664,18.235,4.041,18.559,23.907,13.244,3.703,6.79,-2.627,12.34,17.065,18.227,2.84,5.968,2.566,18.829,6.301,12.568,6.186,9.221,8.811,18.127,11.275,23.706,6.148,2.021,-5.232,3.054,8.165,18.282,20.599,11.816,5.786,13.224],[26.737,22.622,11.517,14.329,13.551,13.112,4.953,-0.349,9.2,21.798,27.78,29.633,7.755,3.23,14.845,19.233,11.831,20.437,13.442,15.888,9.0,0.322,18.255,15.261,5.233,-0.824,4.907,24.224,13.223,11.888,-1.527,14.762,5.297,17.265,9.975,-0.425,5.7,2.204,23.249,-4.83,2.611,9.71,17.393,13.532,-2.637,18.282,20.341,18.397,19.295,13.06,2.91,-4.15,7.806,23.728,18.889,6.968,6.441,12.26,7.78,4.863,18.298,2.21,17.677,11.655,21.797,21.961,10.24,14.973,7.991,1.619,7.455,-1.549,27.859,12.509,6.434,28.845,22.829,-0.411,26.103,26.007,11.397,13.983,13.022,13.312,11.292,15.312,12.917,30.315,4.761,23.37,9.303,27.867,2.699,16.628,12.06,15.032,18.963,12.442,19.822,4.185,7.556,18.971,14.853,11.616,15.6,1.085,12.471,20.496,-2.163,14.294,11.868,4.33,16.607,21.944,23.029,-0.372,16.751,-2.673,25.951,8.08,5.452,14.306,0.737,3.747,10.541,0.839,6.774,13.216,5.736,8.151,-0.43,15.975,15.14,18.008,3.125,21.996,4.754,-1.825,10.779,17.854,9.314,-4.014,14.278,22.348,0.405,9.738,21.168,6.307,18.26,3.547,-3.623,-6.073,18.197,15.591,19.371,-3.384,13.485,20.652,16.772,17.929,3.579,18.703,23.752,13.279,4.15,7.032,-2.879,12.979,16.79,18.21,2.782,6.001,2.305,19.069,6.598,12.582,6.265,9.066,8.839,17.961,11.522,23.974,6.389,2.192,-5.059,3.127,8.12,18.458,20.689,11.968,5.624,13.152],[26.663,22.592,11.565,14.497,13.561,13.048,5.213,-0.365,8.984,21.505,27.948,29.741,7.536,3.264,14.745,19.3,11.823,20.362,13.641,15.778,8.978,0.37,18.336,15.511,5.07,-0.941,4.703,24.28,13.118,11.931,-1.487,14.797,5.266,17.184,10.057,-0.437,5.643,2.237,23.206,-4.814,2.545,9.605,17.422,13.646,-2.675,18.381,20.379,18.553,19.323,13.022,2.955,-4.284,8.024,23.92,19.009,7.124,6.226,12.387,7.687,4.965,18.271,2.276,17.765,11.509,22.022,21.925,9.896,14.944,7.736,1.866,7.922,-1.276,27.751,12.64,6.643,28.784,22.656,-0.533,26.098,25.622,11.425,13.701,12.846,13.31,10.919,15.37,13.403,30.826,5.008,23.187,9.121,28.038,3.108,16.431,12.14,14.584,19.136,12.347,19.66,4.436,7.606,19.206,15.091,11.691,15.0,1.094,13.2,20.462,-2.473,14.744,11.696,4.165,16.794,21.818,22.912,-0.325,17.149,-3.001,25.772,8.169,5.007,13.968,0.595,4.027,10.397,0.333,6.784,13.628,5.596,8.301,-0.77,16.125,15.102,17.842,3.093,22.132,5.367,-1.809,10.483,18.046,8.836,-3.397,14.43,21.949,0.46,9.356,21.093,5.92,18.226,3.522,-3.869,-5.788,18.277,15.554,19.018,-3.936,13.767,20.329,16.644,18.0,3.591,18.484,23.708,13.082,3.919,6.83,-3.139,12.925,16.619,18.212,2.481,5.876,2.309,19.421,6.491,12.194,5.956,8.82,9.088,17.936,11.546,24.018,6.886,1.931,-5.398,3.201,7.723,19.137,20.834,12.279,5.397,13.176],[26.552,22.679,11.508,14.63,13.632,13.089,5.404,-0.427,8.683,21.496,28.034,29.925,7.364,3.488,14.555,19.377,11.807,20.395,13.89,15.55,8.883,0.401,18.277,15.616,5.023,-1.041,4.396,24.382,13.049,12.005,-1.501,14.813,5.341,17.063,10.108,-0.58,5.643,2.233,22.852,-4.845,2.457,9.384,17.476,13.75,-2.718,18.415,20.527,18.67,19.294,12.913,2.904,-4.503,8.213,24.008,19.202,7.256,6.157,12.479,7.792,4.969,18.266,2.235,17.893,11.304,21.731,21.647,9.955,14.805,7.962,2.323,7.876,-1.46,27.719,12.829,6.618,29.174,22.658,-0.605,26.25,25.227,11.605,13.709,13.067,13.622,10.842,15.363,13.204,30.713,5.652,23.085,8.768,28.093,2.262,16.233,12.487,15.3,19.533,12.317,19.325,4.273,7.469,19.445,15.497,11.674,15.37,1.59,13.578,20.592,-2.727,14.718,11.716,3.812,16.931,21.967,22.818,0.062,16.791,-2.984,25.48,8.443,5.364,13.885,0.325,4.026,10.62,0.402,7.01,13.75,5.53,8.369,-0.569,16.028,14.803,17.956,3.041,21.857,5.086,-1.891,10.304,17.73,8.645,-3.503,14.899,21.806,0.959,9.381,21.063,6.666,18.614,3.643,-4.897,-5.78,18.371,15.892,19.289,-3.747,13.743,20.615,16.596,18.499,3.658,18.736,23.95,12.832,3.708,6.651,-3.285,12.622,16.654,18.447,2.748,5.907,2.268,19.444,6.408,12.035,6.061,8.72,9.05,18.313,11.349,23.907,7.472,2.471,-5.723,3.236,7.58,18.388,20.895,11.525,5.327,13.274],[26.428,22.736,11.437,14.613,13.687,13.191,5.484,-0.407,8.599,21.668,28.038,30.146,7.237,3.427,14.558,19.415,11.744,20.529,14.076,15.326,8.811,0.412,18.118,15.694,5.061,-1.057,4.248,24.476,13.093,12.013,-1.483,14.759,5.44,16.866,10.01,-0.72,5.827,2.284,22.479,-4.933,2.443,9.187,17.454,13.905,-2.8,18.325,20.738,18.873,19.356,12.801,2.924,-4.726,8.403,24.092,19.403,7.355,6.161,12.474,8.038,4.922,18.115,2.143,18.05,11.044,22.09,21.751,10.008,15.291,8.081,2.667,7.267,-1.402,27.567,12.85,6.217,28.982,23.248,-0.696,26.333,25.403,11.641,13.657,12.95,13.491,11.188,15.518,12.966,30.417,5.34,23.296,8.988,28.363,1.898,16.313,12.908,15.712,19.343,12.406,19.414,4.258,7.197,19.488,15.693,11.381,15.325,1.529,13.536,20.61,-2.699,14.528,11.791,3.783,16.687,22.194,22.989,0.784,16.443,-2.363,25.384,8.158,5.329,13.629,0.009,3.638,11.107,0.103,7.053,13.875,5.489,8.199,-0.36,15.482,14.948,17.467,2.98,21.287,4.609,-1.907,10.288,18.048,9.38,-3.596,14.993,21.567,0.675,8.955,21.115,6.293,18.472,3.481,-5.079,-6.081,18.539,16.384,19.216,-3.066,13.853,21.065,16.557,18.556,3.399,18.936,23.788,12.88,4.122,6.762,-3.736,13.024,16.606,18.569,2.85,5.845,2.081,19.451,6.418,11.973,6.498,9.351,9.092,18.615,11.052,24.05,8.039,2.065,-5.919,3.055,7.719,17.63,21.213,11.286,5.389,13.282],[26.265,22.951,11.426,14.57,13.734,13.17,5.324,-0.28,8.61,21.644,28.019,30.302,7.11,3.257,14.722,19.372,11.69,20.772,14.233,15.108,8.715,0.402,18.014,15.829,5.125,-1.041,4.221,24.602,13.163,12.03,-1.415,14.667,5.476,16.502,9.815,-0.896,5.791,2.298,22.187,-5.068,2.581,9.116,17.415,14.088,-2.955,18.183,21.024,19.067,19.412,12.765,2.997,-4.924,8.464,24.04,19.695,7.355,6.21,12.434,8.295,4.846,17.979,1.942,18.212,10.778,22.147,22.189,10.128,15.582,8.226,2.708,7.087,-1.65,27.596,12.708,6.643,29.192,22.902,-0.594,26.355,25.501,11.516,13.473,12.886,13.096,10.573,15.531,13.829,30.859,5.416,23.128,8.857,28.696,2.002,16.299,13.022,14.977,19.338,12.451,19.517,3.954,7.329,19.32,15.628,11.385,14.561,1.447,13.157,20.594,-2.536,14.843,11.695,4.491,16.576,22.268,22.958,1.236,16.512,-2.342,25.731,7.681,5.077,14.06,-0.319,3.546,10.397,0.218,6.799,14.055,6.061,8.195,-0.313,14.874,15.248,16.863,2.987,21.211,5.175,-1.815,10.387,18.419,8.951,-3.766,14.696,21.045,0.496,8.884,21.195,6.521,17.909,3.499,-4.489,-6.43,18.87,16.803,19.494,-2.002,13.7,20.968,16.521,18.523,3.671,19.121,23.869,13.023,3.863,6.969,-3.621,13.112,16.41,19.222,2.859,5.397,2.214,19.476,6.83,11.737,6.907,9.751,9.285,18.915,10.901,24.268,8.701,2.37,-5.953,3.013,7.687,17.932,21.224,11.633,5.25,13.416],[26.167,23.106,11.204,14.408,13.678,13.086,5.189,-0.181,8.714,21.495,28.082,30.388,6.95,3.122,14.765,19.312,11.672,20.834,14.378,15.028,8.647,0.346,17.998,15.871,5.184,-1.098,4.269,24.789,13.347,11.859,-1.407,14.592,5.536,16.139,9.603,-1.001,5.694,2.323,22.068,-5.237,2.82,9.028,17.414,14.18,-2.955,18.093,21.206,19.166,19.483,12.712,3.128,-5.093,8.395,23.95,20.089,7.479,6.207,12.378,8.5,4.765,18.105,1.873,18.323,10.667,22.223,21.88,10.538,15.159,7.773,2.753,7.561,-1.74,27.393,12.654,6.74,29.242,22.74,-0.116,26.392,25.007,11.412,14.091,12.921,13.347,10.268,15.564,14.023,31.444,5.293,23.069,8.378,29.584,2.256,16.568,12.663,15.182,19.489,12.116,19.245,4.209,7.453,19.413,15.779,11.044,14.873,1.335,12.763,20.562,-2.824,15.261,12.079,4.571,16.689,22.427,23.28,1.347,16.544,-2.752,26.028,7.721,4.996,14.442,-0.072,3.821,10.116,0.174,7.136,13.769,5.68,8.011,-0.074,14.698,15.255,16.52,2.911,21.097,5.385,-2.145,10.625,17.892,8.397,-3.868,14.219,21.321,0.438,9.028,21.292,6.382,18.053,3.857,-4.487,-6.615,19.197,17.317,19.472,-1.903,14.153,21.257,16.349,18.61,3.848,19.493,24.215,13.808,3.902,6.811,-3.609,12.71,16.564,19.469,2.269,5.281,2.159,19.989,6.616,11.682,6.886,9.768,9.318,18.866,10.926,24.103,9.305,2.476,-5.6,2.883,7.811,18.096,21.924,11.602,5.256,13.005],[26.154,23.148,10.965,14.095,13.612,12.936,5.131,-0.113,8.757,21.315,28.332,30.518,6.815,3.122,14.796,19.318,11.496,20.721,14.382,15.162,8.68,0.206,18.079,15.901,5.127,-1.197,4.342,24.984,13.662,11.621,-1.452,14.648,5.563,15.949,9.723,-1.15,5.599,2.356,22.063,-5.49,3.032,8.974,17.394,14.115,-2.86,18.033,21.4,19.312,19.533,12.724,3.206,-5.068,8.22,24.104,20.263,7.536,6.09,12.215,8.561,4.601,18.38,1.957,18.557,10.772,22.39,21.53,10.351,14.517,7.496,2.556,7.267,-1.605,27.422,12.195,6.619,29.149,23.134,-0.504,26.564,24.712,11.484,13.922,12.584,13.667,10.438,15.102,13.297,31.692,4.85,23.031,8.521,30.798,2.173,16.479,12.824,16.106,19.426,12.28,19.066,4.305,7.082,19.65,15.754,11.453,14.933,1.441,12.402,20.786,-2.796,15.1,11.406,4.018,16.681,22.323,23.654,1.084,16.474,-2.648,26.199,8.115,5.095,14.193,0.033,3.961,10.215,0.126,7.393,13.512,5.117,7.858,0.115,14.623,14.927,16.265,2.832,20.939,5.118,-2.088,10.323,17.421,8.846,-3.713,14.156,21.844,0.817,8.739,21.143,6.665,18.417,3.707,-4.514,-6.514,18.764,17.679,18.996,-2.345,14.608,21.102,16.283,18.844,4.025,19.815,23.972,13.662,4.414,6.776,-4.264,12.719,16.897,19.943,2.25,5.734,2.345,19.987,6.476,11.793,6.68,9.338,9.293,19.123,11.073,24.255,9.623,2.435,-5.509,2.841,7.783,18.331,21.985,11.344,5.517,13.538],[26.28,23.193,10.931,13.676,13.523,12.727,4.987,-0.127,8.693,21.145,28.624,30.741,6.794,3.161,14.87,19.489,11.357,20.582,14.302,15.193,8.725,0.182,18.257,15.958,4.934,-1.258,4.364,25.154,13.991,11.236,-1.395,14.775,5.563,15.87,10.065,-1.258,5.546,2.344,22.027,-5.861,3.121,9.066,17.356,14.122,-2.837,18.088,21.532,19.452,19.385,12.728,3.188,-5.029,8.113,24.349,20.243,7.459,5.95,12.297,8.39,4.508,18.665,2.209,18.813,10.959,22.365,21.303,9.902,14.222,7.453,2.082,6.882,-1.04,27.559,11.892,6.72,29.659,22.928,-0.982,26.778,25.043,11.159,13.444,12.426,13.563,10.528,15.117,13.003,31.398,4.882,22.813,8.502,31.786,2.575,16.356,12.908,15.965,19.381,11.906,19.333,4.119,7.075,19.89,15.733,11.378,14.623,1.439,12.148,20.262,-2.705,15.174,11.041,3.776,16.69,22.393,23.59,0.838,16.451,-1.998,26.487,8.31,5.012,14.195,0.158,3.727,10.276,0.251,7.166,14.276,5.538,8.266,-0.542,14.771,15.041,15.744,3.153,20.748,5.282,-1.989,9.534,17.297,8.672,-3.613,14.472,21.714,0.975,8.574,21.147,6.152,18.103,3.55,-5.107,-6.711,18.825,17.451,19.238,-2.627,13.881,20.919,16.333,18.937,4.36,19.85,23.708,12.989,4.5,6.551,-3.986,13.127,17.06,20.681,2.568,5.365,2.332,19.807,6.503,11.795,6.591,9.035,9.338,19.669,10.961,24.758,9.369,2.9,-4.978,2.59,7.57,18.424,21.634,11.278,5.382,13.201],[26.564,23.129,11.065,13.539,13.357,12.529,4.939,-0.113,8.51,21.073,28.772,31.046,6.752,3.223,14.8,19.573,11.202,20.701,14.173,15.073,8.759,0.235,18.353,15.983,4.832,-1.263,4.297,25.335,14.207,11.025,-1.321,14.966,5.648,15.778,10.067,-1.224,5.538,2.233,21.95,-6.265,3.082,8.88,17.288,14.203,-2.923,18.195,21.532,19.483,19.227,12.583,3.147,-4.85,8.135,24.558,20.241,7.282,5.836,12.514,8.062,4.418,18.916,2.45,18.991,11.035,22.062,21.418,9.782,14.102,7.596,1.701,7.379,-0.885,27.42,11.766,6.275,29.821,22.907,-0.764,27.079,25.109,11.02,13.781,12.757,13.135,10.638,15.14,12.864,30.965,5.084,22.553,8.214,32.314,3.312,16.215,12.898,15.745,19.381,11.64,19.159,3.909,7.258,19.311,15.853,10.846,14.471,1.18,12.513,20.466,-2.817,15.663,10.931,3.548,16.626,22.247,23.812,1.146,16.632,-1.385,26.334,8.057,5.003,14.897,0.085,3.727,9.874,0.415,7.133,13.927,5.752,8.764,-1.01,14.965,15.666,15.603,3.316,20.541,5.313,-2.209,9.674,17.398,8.678,-3.841,14.616,21.22,1.045,8.838,21.001,5.896,17.778,3.941,-5.345,-7.107,19.765,17.126,18.954,-2.233,14.106,21.131,16.622,19.506,3.886,19.888,24.327,12.964,4.309,6.51,-3.939,12.945,17.3,20.455,2.864,5.042,2.619,20.169,6.67,12.033,6.338,9.169,9.188,19.332,10.877,24.812,9.336,2.531,-4.722,2.515,7.609,18.538,21.947,11.181,5.067,13.061],[26.703,22.915,11.187,13.699,13.034,12.385,5.006,0.006,8.304,21.099,28.731,31.463,6.713,3.364,14.708,19.546,10.984,20.828,14.245,14.998,8.682,0.334,18.217,16.022,4.737,-1.294,4.257,25.413,14.445,10.943,-1.173,15.073,5.661,15.617,9.946,-1.148,5.552,2.129,21.88,-6.443,2.973,8.625,17.224,14.381,-3.066,18.239,21.531,19.599,19.064,12.512,3.04,-4.602,8.306,24.74,20.223,7.168,5.826,12.555,7.725,4.403,19.081,2.579,19.05,10.913,21.843,21.761,9.771,13.997,7.252,1.48,7.77,-1.447,27.649,11.809,6.08,29.543,22.605,-0.386,27.051,25.104,11.267,13.851,12.909,13.087,10.591,14.867,13.155,30.762,4.753,22.638,8.143,32.091,3.825,16.426,12.671,16.288,19.436,11.481,19.202,4.289,7.491,19.377,15.801,11.287,14.37,1.559,12.899,21.129,-2.784,15.877,10.949,3.656,16.518,22.255,24.127,1.431,16.48,-1.471,25.945,7.739,5.164,15.364,0.139,3.61,9.211,0.369,7.191,13.333,5.818,8.218,-0.41,14.71,15.484,16.057,3.015,20.308,5.025,-1.927,10.272,17.743,8.072,-3.861,14.462,21.412,1.049,8.87,20.83,6.298,18.351,4.105,-5.108,-7.281,19.225,16.359,18.522,-1.947,14.278,21.561,16.46,20.124,3.751,19.818,24.796,13.01,3.838,6.794,-3.917,13.052,17.567,20.468,3.161,5.231,3.054,20.426,6.325,11.94,6.348,9.225,9.001,18.898,10.73,24.942,9.381,2.331,-5.031,2.602,7.435,19.035,21.954,11.4,5.392,13.571],[26.791,22.65,11.109,13.822,12.697,12.373,4.962,0.086,8.174,21.225,28.62,31.96,6.74,3.426,14.712,19.546,10.892,21.008,14.464,15.088,8.591,0.492,18.076,16.132,4.76,-1.269,4.193,25.398,14.779,10.86,-0.891,14.974,5.559,15.351,9.759,-1.077,5.569,2.029,21.874,-6.477,2.862,8.552,17.114,14.655,-3.144,18.206,21.596,19.65,18.956,12.546,2.922,-4.463,8.437,24.903,20.306,7.127,5.982,12.501,7.471,4.457,19.215,2.661,18.836,10.73,21.596,21.876,9.278,14.093,7.052,1.707,7.429,-1.469,27.651,12.007,6.521,29.724,22.446,-0.139,26.851,25.35,11.223,13.767,12.72,12.632,10.683,14.354,13.406,31.111,4.77,22.694,8.266,31.574,3.925,16.62,12.624,16.851,19.34,11.494,19.264,4.186,7.529,19.723,15.398,10.773,15.011,1.877,13.191,20.926,-2.858,15.807,10.835,3.872,16.687,22.609,23.632,1.324,16.269,-1.892,26.442,7.966,4.832,15.23,0.067,3.876,9.083,0.498,7.067,13.173,5.981,7.964,0.343,14.524,15.277,16.398,2.82,19.958,4.853,-1.99,10.377,17.789,7.765,-3.77,14.21,21.805,0.577,7.999,20.851,6.094,18.526,3.686,-5.485,-7.317,19.266,15.662,18.377,-2.708,14.575,21.47,16.409,20.146,3.972,19.76,24.543,12.9,4.059,6.963,-3.217,13.336,17.807,20.755,3.545,5.226,2.732,20.171,5.929,11.538,5.945,8.813,8.884,19.544,10.77,25.166,9.76,2.71,-4.54,2.556,7.562,19.167,21.946,11.186,5.384,13.538],[26.909,22.463,10.937,13.81,12.39,12.42,4.904,0.096,8.152,21.401,28.6,32.384,6.798,3.286,14.761,19.472,10.843,21.332,14.54,15.245,8.642,0.564,18.102,16.374,4.815,-1.203,4.134,25.28,15.059,10.701,-0.61,14.772,5.525,15.06,9.648,-1.082,5.432,1.86,21.84,-6.718,2.726,8.481,17.005,14.981,-3.117,18.12,21.609,19.623,18.981,12.685,3.018,-4.179,8.393,24.983,20.551,7.096,6.164,12.459,7.309,4.407,19.363,2.704,18.676,10.503,21.486,21.772,8.966,14.343,7.101,1.6,7.492,-1.265,28.11,12.045,6.331,29.363,22.534,-0.149,26.789,25.246,11.138,13.477,12.625,12.339,10.844,13.921,13.589,31.881,5.021,22.971,8.29,31.614,3.55,16.125,12.819,16.291,19.516,11.522,19.031,3.425,7.083,20.085,15.847,10.469,15.099,1.702,13.186,20.627,-2.828,15.915,11.145,3.973,16.894,22.964,23.796,1.128,16.283,-1.748,26.609,7.574,5.098,15.29,0.054,3.926,9.13,0.537,6.804,13.202,5.262,7.83,0.485,14.824,15.297,16.481,2.3,20.111,4.927,-1.904,9.947,17.226,8.257,-4.306,14.105,21.895,0.126,8.411,20.691,6.323,18.104,3.378,-5.351,-7.296,19.193,15.537,18.518,-3.268,14.875,21.477,16.6,20.362,4.047,19.805,24.629,13.351,4.51,7.078,-3.309,12.85,17.703,20.877,3.874,5.025,2.354,19.765,6.356,11.359,5.653,8.548,8.978,19.702,10.879,25.143,9.963,2.587,-4.625,2.519,7.98,18.828,22.224,11.011,5.203,13.38],[26.846,22.424,10.998,13.741,12.157,12.478,4.888,-0.056,8.097,21.494,28.523,32.747,6.866,3.036,14.718,19.391,10.845,21.65,14.63,15.319,8.479,0.462,18.19,16.596,4.687,-1.108,4.211,25.211,15.19,10.533,-0.344,14.675,5.416,14.883,9.738,-1.089,5.355,1.461,21.879,-6.954,2.517,8.599,16.896,15.169,-3.163,17.992,21.63,19.672,19.018,12.857,3.141,-3.964,8.485,25.069,20.663,7.209,6.277,12.319,7.117,4.354,19.367,2.72,18.601,10.354,21.839,21.978,9.035,14.286,7.107,1.51,7.873,-0.854,28.189,11.801,6.171,29.316,22.094,0.321,26.784,25.419,11.092,13.373,12.693,12.55,10.656,13.989,13.561,32.602,4.842,23.1,8.327,32.2,2.977,15.879,12.968,15.389,19.441,11.452,19.131,3.832,7.113,20.375,15.859,10.887,14.486,1.94,13.566,20.337,-2.596,16.439,10.349,3.465,16.837,23.421,23.784,1.103,16.509,-1.501,26.093,7.571,5.157,15.256,0.243,3.687,9.958,0.681,7.045,13.128,4.982,7.964,0.384,14.98,15.039,16.278,2.49,20.212,5.197,-1.655,9.259,16.9,7.822,-4.428,14.351,21.521,-0.083,9.182,20.857,5.734,17.994,3.382,-5.612,-7.637,18.917,16.25,18.635,-2.922,14.94,21.484,16.616,20.398,3.848,19.968,24.911,13.731,4.25,6.676,-2.884,13.259,17.895,20.667,4.353,4.837,2.473,19.932,6.591,10.965,5.717,8.65,9.09,19.2,11.314,24.86,9.46,2.824,-4.614,2.499,7.821,18.948,22.483,11.256,5.403,12.941],[26.701,22.494,11.037,13.625,12.138,12.443,4.872,-0.071,8.062,21.508,28.499,33.085,6.963,2.786,14.556,19.3,11.015,21.83,14.635,15.223,8.354,0.364,18.417,16.7,4.539,-1.019,4.271,25.201,15.322,10.387,-0.234,14.758,5.286,14.742,9.87,-1.078,5.3,1.038,21.905,-7.116,2.427,8.836,16.865,15.161,-3.235,17.905,21.674,19.688,19.126,13.078,3.283,-3.799,8.57,25.251,20.37,7.291,6.232,12.268,6.916,4.246,19.504,2.903,18.656,10.424,21.763,22.245,9.005,13.99,7.134,1.198,7.726,-1.102,27.734,11.738,6.053,29.477,22.342,-0.283,26.892,25.245,11.146,13.596,12.907,12.107,10.605,13.652,13.8,32.658,4.585,23.028,8.29,33.294,3.228,16.221,12.982,15.304,19.062,11.748,19.135,4.485,6.949,20.81,15.924,10.777,14.87,1.579,13.777,20.128,-2.421,16.278,10.373,2.771,16.922,23.508,23.389,0.746,16.794,-1.44,25.644,7.786,5.212,15.171,0.393,3.92,9.533,0.477,7.051,13.215,5.215,8.109,0.341,14.831,14.949,16.4,2.325,20.298,4.655,-1.806,9.599,16.739,7.673,-3.897,14.895,21.41,0.001,8.129,20.939,5.965,17.844,3.274,-5.844,-8.065,19.737,16.779,18.336,-2.195,14.672,21.525,16.44,19.948,3.591,20.049,24.666,13.749,4.272,6.838,-2.957,13.631,18.15,20.929,4.372,4.874,2.699,20.094,6.361,11.139,5.456,8.515,9.088,18.398,11.538,25.134,9.28,2.906,-4.275,2.385,7.656,19.142,22.043,10.93,5.324,13.003],[26.41,22.554,10.937,13.647,12.169,12.41,4.824,-0.089,8.088,21.44,28.6,33.479,7.077,2.623,14.385,19.145,11.25,21.915,14.52,15.215,8.348,0.274,18.733,16.573,4.424,-0.91,4.261,25.228,15.423,10.306,-0.275,14.953,5.149,14.691,10.018,-1.089,5.253,0.817,21.92,-7.354,2.594,8.872,16.919,15.02,-3.228,17.907,21.646,19.762,19.124,13.23,3.421,-3.684,8.751,25.398,19.891,7.277,6.074,12.362,6.701,4.067,19.862,3.185,18.726,10.478,22.22,21.941,8.962,13.827,6.823,0.897,7.781,-1.39,27.812,11.906,5.961,29.675,22.544,-0.24,26.758,25.104,11.042,13.589,12.652,12.264,10.947,13.87,13.731,32.265,4.661,23.01,8.499,34.089,3.171,16.23,12.918,15.92,18.998,11.678,19.676,4.393,6.802,20.796,15.97,10.789,14.705,1.125,13.734,20.629,-2.543,16.188,10.508,2.843,16.714,23.656,23.433,0.592,17.002,-1.513,25.814,7.529,5.385,15.335,0.472,3.897,8.795,0.686,6.893,13.155,4.995,8.308,-0.08,14.493,15.361,16.331,2.049,20.33,4.239,-1.951,10.153,16.886,7.997,-4.016,15.224,21.43,-0.776,7.796,20.96,6.189,17.823,3.218,-6.001,-7.789,19.539,16.268,18.52,-2.597,14.846,21.635,16.2,19.786,3.269,19.765,24.748,14.025,4.341,6.809,-3.247,13.08,18.071,20.695,4.423,4.99,2.986,20.306,6.19,11.054,5.265,8.004,9.063,18.759,11.644,25.339,9.51,3.041,-4.51,2.22,7.677,19.337,21.212,11.149,5.234,13.194],[26.136,22.614,10.753,13.924,12.244,12.402,4.75,-0.083,8.014,21.411,28.587,33.867,7.313,2.595,14.29,19.101,11.352,21.989,14.51,15.17,8.331,0.147,19.011,16.305,4.423,-0.822,4.143,25.266,15.49,10.4,-0.355,15.064,4.962,14.604,10.14,-1.156,5.222,0.587,21.839,-7.531,2.783,8.728,17.002,14.974,-3.258,17.97,21.493,19.816,18.969,13.372,3.58,-3.816,8.932,25.406,19.507,7.23,5.983,12.344,6.457,4.04,20.006,3.418,18.887,10.441,22.101,21.935,9.149,14.135,7.056,0.708,8.143,-1.545,27.333,12.043,6.305,29.679,22.419,0.322,26.906,24.594,10.803,13.289,12.256,12.74,11.014,13.874,13.387,32.334,4.745,23.0,8.953,34.411,2.767,15.853,12.782,16.551,19.029,11.965,19.938,3.548,6.984,20.553,15.624,11.129,14.673,1.44,13.625,20.465,-2.528,16.167,10.265,3.503,16.528,23.469,23.698,0.757,17.233,-1.637,26.573,7.596,4.787,15.796,0.33,3.952,8.637,0.493,6.463,13.252,5.287,8.391,0.204,14.392,15.604,16.357,1.661,20.022,3.963,-1.895,10.028,17.115,8.052,-4.572,15.021,21.969,-0.906,8.05,20.859,5.829,18.278,3.704,-6.546,-7.914,18.951,16.015,18.779,-2.82,14.895,21.772,16.174,20.023,3.578,19.714,24.76,14.344,4.368,7.378,-2.485,13.007,18.343,20.293,4.619,4.914,3.354,20.05,6.039,11.076,4.935,7.95,8.984,19.587,11.633,25.171,9.99,2.911,-4.496,2.154,7.489,19.723,20.973,11.75,5.486,13.253],[25.929,22.598,10.531,14.262,12.327,12.388,4.782,-0.085,8.007,21.637,28.602,34.091,7.557,2.576,14.388,19.061,11.433,22.025,14.555,15.073,8.244,0.046,19.103,16.048,4.538,-0.801,3.916,25.416,15.512,10.481,-0.468,15.042,4.732,14.583,10.145,-1.218,5.188,0.377,21.726,-7.722,2.979,8.587,17.039,15.055,-3.347,18.033,21.4,19.707,18.808,13.465,3.64,-4.039,9.264,25.283,19.416,7.106,6.069,12.183,6.314,4.165,19.978,3.544,19.026,10.517,21.849,21.868,9.211,14.638,7.095,1.138,8.606,-1.263,26.552,12.529,6.098,29.358,22.996,-0.143,26.715,24.054,10.951,13.123,12.212,12.543,10.43,13.588,13.821,33.36,4.48,23.39,8.687,34.905,2.424,15.511,12.796,16.762,18.889,11.92,20.141,3.368,6.868,20.585,15.853,10.696,15.217,1.395,13.694,20.016,-2.493,16.048,10.476,3.651,16.319,23.546,24.035,0.343,17.369,-1.392,26.576,7.415,4.997,16.222,0.574,4.069,8.83,0.38,6.575,13.471,4.879,8.327,0.834,14.566,15.748,16.209,1.296,19.911,4.174,-2.017,9.886,17.218,7.983,-4.135,14.469,22.308,-0.645,8.608,20.603,6.073,18.678,3.999,-6.631,-8.313,19.641,16.397,18.533,-2.749,14.431,21.449,16.174,20.453,3.83,19.692,24.709,14.631,4.077,7.525,-2.48,13.251,18.5,20.174,4.842,4.754,3.2,20.225,6.264,10.986,4.736,7.714,8.926,19.105,11.903,25.064,10.176,3.243,-4.244,2.346,7.276,19.585,20.923,11.738,5.595,12.975],[25.63,22.625,10.349,14.546,12.228,12.516,4.768,-0.163,8.111,21.903,28.521,34.302,7.68,2.61,14.438,18.873,11.389,22.074,14.657,15.054,7.997,-0.162,19.108,15.892,4.658,-0.69,3.78,25.568,15.615,10.589,-0.599,14.996,4.573,14.693,10.011,-1.311,5.291,0.356,21.692,-7.872,3.071,8.663,16.998,15.074,-3.411,18.161,21.376,19.644,18.664,13.553,3.64,-4.233,9.58,25.139,19.468,7.177,6.159,11.996,6.333,4.296,19.912,3.58,19.07,10.541,22.285,22.089,8.879,14.907,7.206,1.237,8.608,-0.926,26.869,12.862,6.289,29.363,22.615,-0.742,26.75,24.147,11.091,13.637,11.855,12.322,10.243,13.962,13.788,34.38,4.6,23.681,8.859,35.053,2.059,16.154,13.209,16.402,18.8,11.714,20.265,4.039,6.626,20.96,16.123,10.98,15.065,1.098,13.725,20.32,-2.327,15.961,10.507,3.24,16.358,23.793,24.003,0.034,17.399,-1.531,25.985,7.315,5.228,16.141,0.759,3.732,8.896,0.426,6.306,13.703,4.27,8.509,0.211,14.505,15.256,16.383,1.199,19.909,5.124,-2.076,9.836,17.484,7.789,-4.122,14.26,21.763,-1.014,8.737,20.418,5.951,18.574,3.589,-6.581,-8.411,19.706,16.656,17.942,-2.224,14.804,21.361,16.402,20.554,3.901,19.764,24.43,14.895,4.237,7.962,-3.516,13.121,18.397,20.295,4.629,5.039,3.002,20.681,6.319,10.671,4.772,7.661,9.049,18.642,12.261,25.068,10.149,3.11,-4.014,2.431,7.423,19.07,20.877,11.684,5.362,12.602],[25.463,22.75,10.303,14.697,11.943,12.632,4.682,-0.353,8.302,22.02,28.438,34.491,7.702,2.609,14.539,18.664,11.28,22.178,14.774,15.034,7.789,-0.448,19.135,15.751,4.732,-0.557,3.702,25.542,15.826,10.69,-0.823,14.938,4.52,14.846,9.904,-1.36,5.431,0.37,21.564,-7.805,2.948,8.832,17.049,15.054,-3.349,18.358,21.409,19.671,18.327,13.731,3.654,-4.426,9.921,24.865,19.491,7.291,6.235,11.924,6.346,4.407,19.738,3.478,19.098,10.487,21.962,22.554,9.076,14.939,7.382,1.214,8.096,-0.881,26.951,12.868,6.035,29.513,22.924,-0.325,26.661,24.248,11.016,14.094,11.886,11.988,10.323,13.663,13.62,34.412,4.772,23.364,9.392,34.95,2.088,16.205,13.374,16.176,18.719,12.048,20.13,4.844,6.278,20.993,16.521,11.353,15.006,0.921,14.018,20.305,-2.087,15.977,10.285,3.154,16.345,23.868,24.061,0.117,17.488,-1.794,26.136,7.287,4.911,15.84,1.033,3.792,9.145,0.286,6.31,13.229,4.492,8.703,-0.177,14.662,15.077,16.168,1.45,20.08,5.307,-2.226,9.537,17.387,7.926,-4.776,15.039,21.223,-1.109,8.389,20.252,6.23,18.279,3.765,-6.821,-8.137,19.262,16.606,17.623,-2.406,15.06,21.627,16.884,20.545,3.406,19.718,24.678,15.054,4.384,8.267,-3.824,12.623,18.149,20.387,4.524,5.598,3.874,20.25,6.098,11.076,4.896,7.862,9.084,18.764,12.344,25.401,9.806,2.861,-3.845,2.556,7.7,19.121,20.728,11.525,5.207,13.329],[25.492,22.934,10.469,14.797,11.541,12.667,4.616,-0.503,8.527,21.925,28.444,34.639,7.559,2.64,14.768,18.622,11.388,22.302,14.835,14.949,7.749,-0.659,19.063,15.664,4.796,-0.398,3.759,25.452,16.01,10.682,-1.108,14.801,4.61,14.806,9.76,-1.319,5.555,0.356,21.468,-7.643,2.916,9.061,17.118,15.107,-3.283,18.444,21.466,19.658,17.891,14.023,3.682,-4.499,10.069,24.588,19.401,7.25,6.321,12.165,6.216,4.562,19.49,3.521,18.986,10.521,22.063,22.444,9.376,14.698,7.482,1.166,8.018,-0.54,27.057,12.996,6.159,29.456,22.804,-0.564,26.787,24.212,10.94,13.617,12.315,12.005,10.202,12.972,13.707,34.373,4.768,23.519,9.031,34.319,2.211,16.332,13.324,16.181,18.064,12.077,20.045,4.783,6.171,20.876,16.443,10.564,15.382,0.395,14.26,20.0,-2.009,15.816,10.721,3.388,16.261,23.84,23.751,-0.498,17.772,-1.803,26.351,7.138,5.054,15.759,1.229,3.702,8.93,0.325,5.989,12.989,4.874,8.976,0.044,15.02,15.267,16.327,1.619,19.631,4.655,-2.05,10.092,17.115,7.856,-4.624,15.463,21.747,-0.848,8.002,19.647,6.486,18.34,3.905,-6.66,-8.023,19.381,15.989,17.527,-2.912,14.727,21.706,17.793,20.506,3.124,19.631,24.615,15.277,3.894,8.836,-3.316,12.684,17.841,20.197,4.557,5.522,3.043,20.249,6.077,11.2,4.883,7.836,9.025,19.292,12.491,24.865,9.841,3.128,-4.079,2.714,7.835,19.362,20.758,11.665,5.507,13.224],[25.607,23.084,10.672,14.823,11.211,12.574,4.778,-0.518,8.707,21.81,28.499,34.641,7.431,2.74,14.861,18.622,11.452,22.416,14.744,14.975,7.841,-0.908,18.933,15.642,4.683,-0.45,3.965,25.186,16.04,10.548,-1.315,14.637,4.69,14.725,9.803,-1.194,5.575,0.401,21.501,-7.512,2.859,9.193,17.036,15.112,-3.268,18.503,21.466,19.594,17.475,14.419,3.667,-4.445,10.094,24.275,19.271,7.179,6.364,12.49,6.062,4.603,19.39,3.456,18.976,10.586,22.77,22.043,9.447,14.701,7.823,1.157,8.547,-0.614,26.647,13.202,6.469,29.313,23.073,-1.307,26.592,24.204,11.135,13.574,12.316,11.773,10.463,12.922,13.807,34.459,4.767,23.338,8.587,34.097,2.448,15.917,13.3,16.427,18.511,12.017,20.158,4.575,6.809,21.045,16.123,10.547,15.016,-0.029,14.256,20.186,-1.674,15.58,10.931,3.205,16.339,24.01,23.826,-0.556,17.105,-2.199,26.332,7.076,5.503,16.33,1.277,3.903,8.822,0.36,6.223,13.161,4.959,8.651,0.211,14.8,15.195,16.606,1.768,19.849,4.898,-2.241,10.112,17.497,8.027,-3.978,14.556,21.835,-0.994,8.447,19.302,6.239,18.8,3.76,-6.333,-8.234,19.534,15.898,17.431,-2.841,14.937,21.912,17.727,20.454,3.597,19.645,23.922,15.796,4.304,8.313,-2.725,13.643,17.626,20.128,4.783,5.543,2.929,20.314,6.372,11.071,4.583,7.448,9.044,19.08,12.946,24.521,10.06,3.057,-4.42,2.745,8.032,19.072,20.762,12.137,5.682,12.848],[25.599,23.251,10.742,14.641,11.146,12.5,5.133,-0.529,8.871,21.832,28.49,34.488,7.664,2.913,14.696,18.743,11.361,22.478,14.569,15.129,8.093,-1.129,18.616,15.722,4.418,-0.351,4.281,24.95,16.059,10.389,-1.45,14.525,4.874,14.709,10.01,-1.159,5.51,0.535,21.605,-7.519,2.761,9.329,17.004,14.973,-3.207,18.58,21.465,19.462,17.222,14.809,3.68,-4.295,9.936,23.953,19.21,7.208,6.392,12.635,5.926,4.63,19.34,3.301,19.054,10.754,22.334,22.184,9.622,14.751,8.069,1.172,8.645,-1.013,26.738,13.055,6.401,29.066,23.221,-0.76,26.63,24.184,10.95,13.956,12.376,10.971,10.878,12.934,13.502,33.858,4.864,23.123,9.077,34.526,2.704,16.243,12.812,16.813,18.713,11.839,20.123,4.144,7.077,21.242,16.12,11.618,15.055,0.37,14.39,20.393,-2.069,15.239,10.63,3.043,16.482,24.248,23.642,-1.077,17.229,-2.476,26.333,6.94,5.356,16.809,1.27,3.688,8.77,0.497,6.794,12.801,4.542,8.127,0.163,14.591,14.87,16.368,1.316,20.102,5.396,-2.044,9.681,17.23,8.091,-4.321,14.298,21.472,-0.48,9.275,19.085,6.011,18.737,3.493,-6.261,-8.365,19.3,16.204,16.975,-2.654,14.811,21.845,17.408,20.402,3.981,19.633,23.496,16.373,4.202,8.143,-2.617,13.637,17.705,20.177,4.527,5.353,3.372,20.13,6.502,10.748,4.484,7.421,8.961,18.587,13.307,24.087,10.045,2.912,-4.063,2.708,7.979,18.808,20.522,12.578,5.807,13.548],[25.501,23.179,10.731,14.395,11.149,12.505,5.346,-0.53,9.026,21.865,28.454,34.211,8.071,3.04,14.627,18.951,11.382,22.497,14.346,15.331,8.146,-1.26,18.441,15.91,4.195,-0.308,4.39,24.79,16.124,10.201,-1.476,14.364,5.131,14.623,10.026,-1.156,5.369,0.765,21.658,-7.708,2.77,9.474,17.08,14.848,-3.08,18.639,21.317,19.37,17.086,15.082,3.664,-4.067,9.716,23.672,19.246,7.379,6.434,12.549,5.824,4.642,19.124,3.262,19.013,11.005,22.326,22.139,9.701,14.832,8.118,1.261,9.029,-0.93,27.201,12.535,6.857,29.103,23.335,-0.212,26.725,24.352,10.855,13.596,12.508,10.637,10.831,13.009,13.691,33.833,5.682,23.569,9.284,34.841,3.071,16.494,12.912,17.01,18.393,11.765,19.586,3.509,6.879,21.051,15.926,12.072,15.698,0.238,14.851,20.73,-1.998,15.005,10.062,3.067,16.607,24.032,23.275,-0.91,16.849,-2.442,25.964,7.317,5.761,16.713,1.175,4.231,8.701,0.501,6.847,12.829,4.647,8.474,0.128,14.552,14.571,16.378,1.034,19.854,5.092,-2.148,10.045,16.466,8.295,-4.336,14.506,21.793,-0.502,9.362,18.828,6.117,18.673,3.595,-6.714,-8.252,19.295,16.4,16.684,-2.853,14.476,21.534,17.146,19.888,3.645,19.534,23.877,16.539,4.41,7.825,-2.455,13.141,17.709,20.538,4.044,5.716,2.936,20.285,6.124,10.699,4.942,7.681,9.019,18.957,13.71,24.158,10.072,2.823,-3.805,2.807,7.834,18.715,20.251,12.718,5.622,13.67],[25.481,23.091,10.687,14.275,11.126,12.688,5.505,-0.442,9.234,21.862,28.448,34.118,8.29,3.073,14.512,19.157,11.595,22.34,14.261,15.503,7.985,-1.283,18.267,16.107,4.066,-0.292,4.508,24.672,16.177,9.994,-1.342,14.271,5.313,14.623,10.03,-1.176,5.241,1.011,21.637,-8.025,2.9,9.444,17.148,14.705,-3.013,18.721,21.038,19.35,16.934,15.235,3.633,-3.9,9.495,23.638,19.448,7.482,6.517,12.379,5.894,4.792,18.91,3.205,18.984,11.157,22.527,22.07,9.533,14.757,8.05,1.516,9.117,-0.798,27.057,12.459,6.994,29.4,23.143,-0.905,26.591,24.686,10.939,13.438,12.552,10.821,10.874,12.966,13.596,34.056,5.699,23.205,9.492,34.27,3.106,16.186,12.745,17.093,18.237,12.129,19.551,3.572,6.391,20.914,15.767,11.566,15.27,-0.481,14.956,20.675,-1.74,15.257,10.091,2.931,16.631,23.801,23.237,-0.575,16.573,-2.501,26.055,7.456,5.939,16.615,1.328,4.167,8.33,0.313,6.965,12.71,5.255,8.22,-0.213,15.077,14.784,16.287,1.541,20.169,4.418,-2.316,10.054,16.442,8.755,-3.916,14.894,22.193,-0.778,8.664,18.72,6.347,18.636,3.723,-7.111,-8.153,19.469,16.162,16.602,-3.253,14.561,21.64,17.348,19.87,3.595,19.148,23.703,16.562,4.637,7.624,-2.142,13.066,17.193,20.672,4.464,5.931,2.765,20.127,6.3,11.188,5.001,7.623,9.175,19.204,13.685,23.961,9.931,2.438,-3.892,3.068,7.977,18.588,20.222,12.721,5.419,13.171],[25.517,23.166,10.738,14.276,11.125,12.913,5.51,-0.394,9.337,21.76,28.387,34.242,8.23,3.004,14.315,19.047,11.85,22.099,14.318,15.43,7.772,-1.311,18.151,16.298,4.032,-0.137,4.496,24.605,16.178,9.858,-1.298,14.284,5.513,14.786,9.911,-1.295,5.175,1.237,21.726,-8.283,3.046,9.191,17.208,14.586,-3.104,18.855,20.885,19.467,16.855,15.25,3.616,-3.811,9.227,23.759,19.645,7.435,6.613,12.253,6.084,5.074,18.709,3.219,18.908,11.217,22.362,22.112,9.644,14.177,8.482,1.392,8.987,-0.809,26.92,12.635,7.09,29.576,23.253,-0.84,26.763,24.497,11.22,13.292,12.527,11.452,10.455,12.682,13.124,33.412,5.388,23.104,9.815,33.795,3.043,15.868,12.588,17.529,18.622,12.74,19.626,4.269,6.486,20.819,15.84,11.059,14.955,-0.444,14.762,20.754,-1.699,15.248,10.334,2.921,16.683,23.888,23.296,-0.823,16.581,-2.238,26.171,7.271,5.935,16.692,1.349,3.868,8.194,0.529,6.76,12.677,5.895,8.646,-0.402,15.116,15.133,16.355,2.074,20.229,4.625,-2.098,9.711,16.637,9.047,-3.889,14.379,21.842,-0.075,8.283,18.669,5.68,18.538,3.78,-7.219,-9.115,19.305,16.068,16.593,-3.225,14.576,21.205,17.815,20.25,3.81,19.068,23.377,16.654,4.135,7.408,-2.041,12.874,17.186,20.584,4.224,5.92,3.132,19.84,6.745,11.554,4.808,7.658,9.259,19.326,13.587,23.979,9.526,2.624,-3.964,3.264,8.207,18.846,20.159,12.368,5.702,13.138],[25.543,23.381,10.794,14.056,11.202,13.116,5.429,-0.285,9.405,21.666,28.438,34.309,8.109,2.862,14.143,18.738,12.1,21.899,14.262,15.207,7.621,-1.412,18.264,16.513,4.11,0.064,4.448,24.575,16.192,9.722,-1.331,14.311,5.679,14.915,9.775,-1.378,5.185,1.429,21.828,-8.525,3.14,8.855,17.339,14.448,-3.263,18.998,20.918,19.693,16.981,15.183,3.742,-3.794,8.889,23.874,19.604,7.21,6.742,12.279,6.238,5.32,18.728,3.181,18.712,11.114,22.371,21.944,9.411,14.255,8.538,1.145,9.0,-1.145,26.841,12.345,6.941,29.369,23.81,-0.382,26.733,24.266,11.391,13.185,12.565,11.841,10.534,12.658,13.482,33.445,5.565,23.351,9.481,33.909,3.069,15.579,13.069,17.385,18.178,12.463,19.478,4.284,6.472,20.656,16.029,11.27,15.082,0.206,14.571,20.539,-1.582,15.464,10.729,3.234,16.643,23.53,23.34,-1.025,16.71,-2.013,26.029,6.606,5.61,16.511,1.474,4.048,8.231,0.223,7.399,12.545,6.056,8.749,-0.0,15.0,15.213,16.526,2.645,20.28,4.831,-1.786,9.626,16.908,8.934,-3.807,14.364,21.31,0.402,8.311,18.417,5.433,18.784,3.739,-7.323,-9.242,19.411,16.271,16.289,-3.089,14.231,20.79,18.07,20.494,4.042,19.219,23.962,16.426,4.305,6.949,-2.149,12.955,17.412,20.706,4.449,6.145,3.197,19.808,6.547,11.414,5.027,7.827,8.947,19.325,13.539,24.246,8.993,2.736,-3.776,3.442,7.974,18.194,20.36,12.313,6.17,12.71],[25.598,23.684,10.835,13.813,11.207,13.219,5.374,-0.083,9.362,21.758,28.533,34.327,8.087,2.766,13.971,18.302,12.166,21.648,14.188,15.035,7.452,-1.52,18.444,16.599,4.15,0.343,4.361,24.706,16.225,9.692,-1.321,14.353,5.784,15.075,9.844,-1.404,5.13,1.739,21.742,-8.613,3.147,8.8,17.483,14.326,-3.42,19.076,21.11,19.969,17.133,14.949,4.026,-3.842,8.534,24.006,19.441,6.833,6.809,12.315,6.277,5.461,18.856,3.172,18.64,10.965,22.711,21.653,9.563,14.558,8.374,0.966,8.804,-1.003,27.175,11.983,6.484,29.165,23.391,-0.542,26.851,24.378,11.603,13.559,12.549,11.784,10.783,12.81,14.254,34.051,5.576,23.573,9.304,33.993,2.837,15.81,12.799,17.337,18.128,12.723,19.543,3.911,6.29,20.455,15.744,12.422,15.11,-0.142,14.661,20.114,-1.237,15.624,10.444,3.393,16.684,23.27,23.195,-0.736,16.654,-2.038,25.705,6.618,5.576,16.134,1.773,3.593,7.826,0.363,7.405,12.54,5.743,8.481,0.407,14.935,15.105,16.809,2.751,20.23,4.901,-1.851,9.241,17.266,8.122,-3.82,14.184,21.793,-0.032,8.181,18.671,6.058,18.823,3.246,-7.553,-8.509,19.66,16.288,16.075,-2.77,14.172,21.171,18.02,20.586,4.276,19.319,23.99,16.464,4.845,6.882,-2.452,13.179,17.196,20.249,4.464,6.298,3.342,19.756,6.076,10.943,5.38,8.074,8.593,18.562,13.463,23.859,8.421,2.825,-3.726,3.621,8.221,18.336,20.696,12.396,5.792,12.365],[25.663,23.981,10.803,13.753,11.073,13.305,5.244,0.05,9.203,21.75,28.596,34.36,8.125,2.718,13.882,18.087,12.328,21.504,14.087,15.011,7.458,-1.58,18.548,16.626,4.09,0.551,4.146,24.769,16.246,9.705,-1.251,14.351,5.838,15.258,9.915,-1.423,5.046,1.975,21.714,-8.441,3.027,8.783,17.578,14.258,-3.399,19.125,21.408,20.293,17.221,14.654,4.298,-3.845,8.27,24.059,19.213,6.435,6.724,12.255,6.329,5.462,18.977,3.135,18.546,10.911,23.022,21.812,9.699,14.105,8.232,0.995,9.076,-0.509,27.229,11.843,6.629,29.194,23.968,-0.477,26.754,24.72,11.754,13.406,12.672,11.838,10.782,12.344,14.187,34.19,5.611,23.555,9.457,33.852,2.373,15.675,12.558,17.49,17.462,12.887,19.684,4.015,6.118,20.025,15.557,12.659,14.762,-0.601,14.621,19.571,-0.924,15.145,9.972,3.206,16.434,23.105,23.276,-0.476,16.962,-2.297,26.154,6.677,5.79,15.78,2.053,3.731,8.04,0.346,7.348,12.52,5.926,8.456,0.323,14.978,15.085,17.072,2.551,20.047,4.388,-2.153,9.506,17.883,7.315,-4.452,13.465,22.011,0.213,8.462,19.039,6.115,19.119,3.448,-7.091,-8.558,19.794,16.067,16.529,-2.726,14.301,21.286,17.99,20.569,3.865,19.649,23.674,16.11,4.811,6.597,-2.598,12.548,17.455,20.188,4.064,6.512,3.312,20.048,5.855,11.098,4.951,8.039,8.302,18.541,13.416,24.469,8.485,3.135,-3.92,3.718,8.207,18.881,20.493,12.084,6.1,13.188],[25.649,24.248,10.749,13.73,10.95,13.387,5.221,0.018,9.091,21.591,28.535,34.418,8.175,2.659,13.737,18.092,12.607,21.464,14.0,15.018,7.61,-1.493,18.674,16.598,3.941,0.735,4.053,24.943,16.201,9.728,-1.179,14.168,5.863,15.365,10.005,-1.488,4.825,2.204,21.771,-8.142,2.833,8.627,17.589,14.196,-3.332,19.236,21.615,20.54,17.291,14.286,4.37,-3.788,8.359,24.15,19.073,6.254,6.616,12.09,6.215,5.464,19.138,2.954,18.447,10.929,23.403,22.203,9.022,14.194,7.944,0.886,9.094,0.147,27.106,12.054,6.815,28.885,24.785,0.279,26.877,25.219,11.462,12.904,12.39,11.61,11.012,12.062,13.568,34.425,5.615,23.101,9.793,33.726,2.375,15.456,12.418,17.547,17.711,12.876,19.873,4.328,6.09,19.912,15.544,12.078,14.437,-0.322,14.832,19.294,-0.969,15.468,10.168,3.097,16.419,22.702,23.753,-0.564,16.785,-2.497,26.544,6.895,5.611,15.557,1.941,3.884,8.139,0.288,7.661,12.294,5.947,8.443,0.442,14.749,15.322,16.901,2.283,20.055,4.507,-1.888,9.166,18.272,7.54,-4.461,13.702,21.597,0.262,7.802,19.028,5.397,19.136,3.906,-6.696,-8.429,20.038,16.279,16.813,-2.767,14.118,21.587,17.866,21.187,3.799,19.911,23.845,15.988,4.937,6.751,-2.655,12.822,17.539,20.299,4.5,6.551,2.698,19.935,5.804,11.11,4.919,7.669,8.054,19.078,12.929,24.275,7.759,2.998,-3.856,3.608,7.525,18.718,20.105,11.985,6.368,12.848],[25.553,24.571,10.819,13.773,10.808,13.291,5.484,0.078,9.007,21.393,28.455,34.484,8.276,2.596,13.555,18.179,12.756,21.325,13.855,14.982,7.738,-1.309,18.718,16.625,3.75,0.771,4.082,25.134,16.137,9.697,-1.043,14.015,5.943,15.165,9.968,-1.436,4.479,2.303,21.802,-7.771,2.733,8.401,17.596,14.227,-3.255,19.295,21.771,20.827,17.42,13.906,4.292,-3.659,8.434,24.212,19.084,6.272,6.5,11.816,6.068,5.525,19.156,2.737,18.436,10.949,23.467,21.652,8.712,14.528,8.242,0.984,8.799,-0.033,27.463,11.989,6.789,28.827,24.376,-0.005,26.62,25.198,11.623,12.573,12.219,11.557,11.301,12.095,13.404,34.378,5.528,23.115,9.806,33.98,2.356,15.054,12.673,17.865,18.351,13.175,19.477,4.383,6.27,20.168,15.497,12.1,14.952,0.013,15.111,19.386,-0.856,15.648,10.708,3.243,16.48,23.022,24.029,-0.168,17.01,-2.099,26.461,7.252,5.319,15.516,2.051,3.515,8.302,0.223,7.564,12.263,5.809,8.284,0.539,14.949,14.673,17.004,2.331,20.468,4.662,-1.783,9.667,17.733,7.813,-3.67,14.056,21.443,0.657,7.563,18.837,4.871,19.101,3.517,-7.017,-8.702,20.371,16.221,16.861,-2.582,13.968,21.943,17.706,20.892,3.865,19.904,24.08,15.305,4.898,7.668,-2.591,12.992,17.518,20.172,4.018,6.395,2.81,19.739,6.061,10.756,4.721,7.733,7.992,18.739,12.759,24.109,7.07,3.212,-3.666,3.618,7.737,18.865,20.087,12.037,5.805,11.943],[25.433,24.716,10.939,13.88,10.744,13.169,5.788,0.088,8.956,21.265,28.334,34.515,8.278,2.549,13.323,18.384,12.816,21.312,13.802,14.994,7.925,-1.011,18.723,16.726,3.613,0.735,4.164,25.213,16.097,9.689,-0.949,13.822,5.956,14.973,9.911,-1.382,4.103,2.443,21.782,-7.603,2.726,8.227,17.523,14.378,-3.066,19.337,21.881,21.072,17.59,13.477,4.218,-3.555,8.538,24.191,19.103,6.375,6.597,11.467,6.083,5.598,19.131,2.457,18.458,10.834,23.557,21.184,9.117,14.295,7.891,0.8,9.228,-0.672,27.237,12.025,7.129,29.435,24.117,-0.348,26.535,25.103,11.725,12.756,12.512,10.822,10.968,12.146,13.383,33.65,6.05,23.19,9.505,34.859,2.146,14.856,12.525,17.846,17.81,13.225,19.379,3.863,6.588,20.42,15.565,12.523,14.906,-0.029,15.276,19.442,-0.728,15.387,11.037,2.849,16.536,23.139,23.809,0.058,16.785,-1.74,26.317,7.003,5.55,15.759,2.229,3.292,8.16,0.404,7.64,11.985,6.292,8.425,0.934,14.967,14.362,16.763,2.403,20.598,4.014,-1.735,9.797,17.01,7.717,-3.365,14.017,21.008,0.646,7.724,19.365,4.677,19.264,2.569,-6.725,-8.109,20.729,16.199,17.321,-2.361,14.015,21.589,17.743,20.945,3.93,20.163,24.089,14.795,4.599,7.388,-2.592,12.28,17.778,20.029,3.742,6.636,2.888,19.614,5.898,11.262,4.729,7.663,8.131,18.222,12.68,24.491,7.265,3.337,-3.514,3.719,8.075,18.873,20.392,12.338,5.74,11.798],[25.33,24.567,10.965,13.814,10.737,13.142,6.017,0.026,8.986,21.331,28.37,34.444,8.271,2.435,13.211,18.437,12.958,21.292,13.827,15.023,8.035,-0.883,18.588,16.802,3.462,0.731,4.386,25.163,16.191,9.618,-0.954,13.683,6.016,14.906,9.882,-1.379,3.841,2.509,21.643,-7.568,2.632,8.249,17.392,14.509,-2.786,19.416,21.863,21.287,17.941,13.11,4.218,-3.659,8.478,24.14,19.15,6.383,6.801,11.113,6.254,5.633,19.119,2.294,18.44,10.838,23.85,21.607,9.012,13.97,8.256,0.735,9.519,-1.384,27.001,12.449,7.461,29.42,24.48,-0.673,26.874,25.424,11.696,12.859,12.6,10.513,10.519,12.328,13.193,33.936,6.368,23.106,9.648,35.442,1.973,14.981,12.312,17.718,17.99,12.645,19.669,3.388,6.903,19.933,15.481,12.055,15.089,0.249,15.211,19.273,-0.96,15.481,10.941,2.662,16.781,22.788,23.865,-0.089,16.814,-1.686,26.836,6.741,5.742,15.915,2.082,3.571,8.158,0.334,7.419,11.797,6.35,8.669,0.9,14.474,14.663,16.541,2.504,20.279,4.157,-1.517,9.605,16.935,7.047,-3.647,14.099,21.063,0.793,7.909,19.652,4.987,19.152,2.535,-6.31,-7.44,20.634,16.035,17.163,-2.202,14.421,21.291,17.901,21.525,3.767,20.424,24.656,14.481,4.654,6.796,-2.681,11.821,17.621,19.887,3.768,6.942,2.462,19.643,5.957,11.139,4.93,7.793,8.225,18.687,12.321,24.324,8.08,2.807,-3.984,3.822,8.035,18.96,20.73,12.127,6.11,11.981],[25.505,24.501,10.901,13.743,10.772,13.084,6.141,-0.216,9.094,21.484,28.577,34.5,8.517,2.515,13.288,18.32,12.936,20.968,13.809,15.217,8.017,-1.075,18.469,16.864,3.304,0.619,4.681,25.146,16.398,9.57,-1.135,13.811,5.939,14.734,9.858,-1.458,3.973,2.505,21.428,-7.539,2.472,8.329,17.147,14.633,-2.61,19.462,21.795,21.443,18.361,12.898,4.139,-3.938,8.333,24.124,19.342,6.214,6.925,10.983,6.313,5.598,19.044,2.464,18.541,10.805,23.422,21.994,8.626,14.214,8.607,0.994,9.16,-1.341,27.24,11.903,7.61,29.117,24.462,-0.581,26.652,25.034,11.25,12.976,12.574,11.207,10.734,12.487,13.622,33.466,6.091,23.041,10.016,35.514,1.859,14.994,12.792,17.926,18.735,13.18,19.496,3.333,7.116,19.743,15.506,12.445,15.248,0.119,15.12,19.543,-0.998,15.441,10.553,2.876,16.966,22.701,24.402,0.232,16.714,-2.228,26.894,6.682,5.769,15.886,1.963,4.265,7.834,0.245,7.571,12.098,5.991,8.35,0.598,14.027,14.813,16.633,3.02,19.774,4.267,-1.412,9.227,17.462,6.946,-3.488,14.243,21.121,0.705,7.789,19.673,4.717,19.149,3.131,-6.369,-8.037,20.979,15.892,17.284,-2.093,14.185,21.312,18.275,20.954,3.705,20.212,25.053,14.363,5.02,6.644,-3.036,12.09,17.303,19.641,2.926,6.647,2.437,19.838,5.788,10.932,5.186,8.143,8.104,19.14,11.671,24.276,8.265,3.001,-4.116,3.768,7.832,19.039,21.002,11.898,6.606,11.794],[25.744,24.467,10.943,13.693,11.014,12.982,6.135,-0.361,9.252,21.501,28.726,34.62,8.636,2.764,13.54,18.326,13.03,20.75,13.977,15.433,7.897,-1.103,18.291,16.758,3.171,0.512,4.972,25.228,16.64,9.31,-1.43,14.198,5.84,14.553,9.716,-1.491,4.089,2.464,21.017,-7.588,2.504,8.391,16.881,14.659,-2.472,19.428,21.588,21.44,18.664,12.867,4.032,-4.16,8.184,24.251,19.536,6.044,6.941,11.092,6.208,5.423,18.948,2.589,18.71,10.788,23.387,21.619,8.655,13.933,8.607,1.276,9.329,-1.49,27.438,11.853,7.586,29.023,24.328,-0.734,26.954,25.086,11.218,12.771,12.569,11.236,11.334,12.502,13.877,34.015,6.126,23.086,10.121,35.359,2.512,15.161,12.514,17.987,18.219,13.528,19.296,3.767,6.597,19.536,15.722,12.957,15.092,0.036,15.18,19.625,-0.976,15.579,10.27,2.619,17.157,22.4,24.059,-0.14,16.526,-2.622,26.563,7.205,6.491,15.894,1.902,4.494,7.582,0.217,7.492,12.441,6.172,8.11,0.211,13.985,14.962,16.109,3.123,19.673,3.869,-1.755,9.548,17.571,7.701,-3.521,14.198,21.09,0.752,7.706,20.273,4.606,19.208,2.947,-6.413,-8.363,21.248,15.741,18.265,-1.862,14.198,21.387,18.518,21.081,3.569,19.794,24.771,14.077,4.891,6.679,-3.035,12.389,17.464,20.056,3.313,6.551,2.838,19.991,5.607,11.08,5.192,7.947,7.93,18.944,11.085,24.0,7.33,3.085,-4.123,3.665,7.631,18.455,20.924,11.635,6.67,11.366],[25.954,24.249,11.128,13.605,11.286,12.954,6.066,-0.471,9.381,21.362,28.846,34.801,8.58,3.103,13.7,18.313,13.303,20.804,14.165,15.5,7.788,-0.756,18.095,16.589,3.076,0.519,5.11,25.149,16.754,9.061,-1.658,14.57,5.81,14.396,9.621,-1.517,3.974,2.382,20.642,-7.641,2.607,8.495,16.647,14.625,-2.352,19.332,21.316,21.473,18.772,12.825,4.003,-4.24,7.901,24.381,19.657,6.05,6.799,11.093,6.069,5.348,18.78,2.749,18.785,10.828,23.393,21.482,9.211,13.865,8.728,1.493,9.639,-1.677,27.54,12.039,7.212,29.242,24.008,-0.557,26.937,26.002,11.115,12.954,12.627,10.928,11.643,12.825,13.52,34.828,6.252,23.132,9.992,35.265,2.703,15.515,12.707,17.802,18.414,13.644,19.171,3.707,6.229,19.541,15.855,13.049,15.283,0.639,15.245,19.782,-0.928,15.768,9.864,2.344,17.323,22.057,23.633,-0.076,16.27,-2.357,26.679,7.51,6.492,16.09,2.176,4.275,7.672,0.259,7.268,12.728,6.293,7.931,-0.016,14.194,15.293,15.758,3.028,19.328,3.6,-2.068,9.312,17.279,8.374,-3.535,14.064,20.404,0.654,8.122,20.444,4.792,18.761,2.818,-6.565,-7.729,20.693,16.0,17.907,-1.919,14.954,21.443,18.65,21.036,3.715,19.572,24.164,13.654,4.212,6.723,-3.228,12.236,17.255,20.731,4.097,6.75,2.638,20.024,5.688,11.156,4.815,7.489,7.955,18.783,11.254,24.22,6.847,3.045,-4.653,3.655,7.901,18.536,20.955,11.838,6.551,11.937],[26.262,23.867,11.355,13.626,11.495,12.919,6.004,-0.526,9.48,21.23,28.896,35.172,8.616,3.281,13.803,18.432,13.599,20.954,14.339,15.565,7.898,-0.293,17.932,16.607,2.954,0.641,4.806,24.969,16.696,8.883,-1.63,14.874,5.778,14.262,9.514,-1.598,3.85,2.246,20.244,-7.603,2.578,8.698,16.507,14.609,-2.312,19.183,21.224,21.467,18.688,12.786,3.892,-4.432,7.678,24.489,19.773,6.181,6.665,10.974,5.957,5.455,18.642,2.905,18.751,10.944,22.897,21.774,9.402,13.789,8.693,1.466,9.469,-1.603,28.061,11.717,7.271,29.509,23.782,-0.448,27.209,25.954,11.279,13.57,12.885,11.163,11.627,13.197,13.234,34.05,6.277,22.796,9.971,35.06,3.468,15.584,13.068,17.4,18.947,13.189,18.979,3.264,6.792,19.882,15.972,12.891,15.139,0.686,15.118,20.06,-0.944,15.509,10.024,2.49,17.21,22.025,23.934,0.475,16.204,-2.589,26.528,7.057,5.969,16.286,2.175,3.793,7.875,0.325,7.142,13.066,6.154,7.701,-0.027,14.292,15.285,15.756,3.061,18.786,3.8,-1.633,9.37,16.758,8.327,-3.336,14.128,19.587,0.467,8.318,20.157,4.686,18.861,2.934,-6.289,-7.904,20.9,16.065,17.641,-2.314,14.652,21.2,18.683,20.831,3.664,19.455,23.8,13.454,4.415,6.431,-3.462,12.025,17.028,20.657,4.479,6.326,3.253,19.66,5.693,11.595,4.841,7.271,7.935,19.061,11.182,24.874,6.849,2.772,-4.299,3.582,8.011,18.477,20.923,12.017,6.157,12.409],[26.446,23.428,11.583,13.669,11.801,12.879,6.02,-0.508,9.563,21.245,28.958,35.238,8.695,3.397,13.958,18.78,13.632,21.077,14.452,15.56,7.922,0.003,17.822,16.649,2.845,0.721,4.41,24.92,16.597,8.829,-1.474,14.966,5.687,14.191,9.39,-1.556,3.882,2.179,19.707,-7.447,2.453,8.839,16.348,14.395,-2.411,19.19,21.301,21.591,18.62,12.763,3.584,-4.68,7.6,24.583,19.835,6.223,6.701,11.014,5.926,5.407,18.67,3.221,18.738,11.092,22.735,21.448,8.605,14.312,8.905,1.725,9.556,-1.09,28.124,11.797,7.507,29.365,23.995,-1.025,27.085,25.805,11.133,13.771,13.122,11.183,11.439,13.29,13.489,34.315,6.218,22.723,10.023,35.175,3.137,15.694,13.149,17.393,18.318,13.618,18.978,3.1,7.171,20.08,16.078,13.226,14.638,1.167,14.859,20.398,-0.867,15.271,10.186,2.361,17.135,22.696,23.458,0.766,16.225,-2.874,26.115,6.515,5.539,16.409,1.931,4.004,7.716,0.178,7.376,13.148,6.221,7.724,-0.155,14.05,15.821,16.108,3.17,18.543,3.586,-1.6,9.527,16.758,8.382,-3.069,14.435,19.58,0.434,7.979,19.812,4.332,18.442,2.908,-5.951,-7.622,21.062,15.63,17.947,-2.206,14.114,21.097,18.063,20.57,3.663,19.473,24.161,13.45,4.629,6.094,-3.569,11.92,16.946,20.561,3.405,6.34,2.974,19.837,5.836,11.958,4.768,7.267,8.028,18.901,10.971,24.432,6.792,2.802,-4.323,3.509,7.913,18.466,21.152,12.198,6.263,11.638],[26.45,23.082,11.778,13.847,12.238,12.874,6.105,-0.375,9.625,21.323,28.962,35.083,8.788,3.364,14.142,19.053,13.648,21.262,14.49,15.428,7.751,0.138,17.783,16.775,2.786,0.738,4.146,24.733,16.457,8.951,-1.352,14.957,5.79,14.219,9.33,-1.541,4.007,2.153,19.282,-7.253,2.3,8.857,16.041,14.027,-2.511,19.224,21.381,21.758,18.54,12.693,3.169,-4.942,7.528,24.637,19.929,6.118,6.874,11.12,5.918,5.233,18.694,3.273,18.744,11.331,22.431,21.107,8.371,13.855,9.018,1.645,9.841,-0.949,27.937,12.067,7.434,29.068,23.392,-0.584,27.211,26.17,11.211,13.656,13.142,11.521,11.779,13.384,13.719,34.644,6.164,22.946,10.167,35.343,2.899,15.918,12.938,17.634,18.448,13.369,19.097,2.722,6.539,20.288,16.036,12.971,14.924,1.583,14.854,20.699,-0.936,15.629,10.247,2.229,17.049,22.869,23.257,0.719,16.227,-2.554,26.156,6.647,5.54,16.415,2.101,3.93,7.631,0.289,7.174,13.068,6.102,7.49,0.23,13.502,15.647,15.92,3.13,17.94,2.899,-1.865,9.228,16.795,7.99,-3.425,13.745,19.375,0.45,8.7,19.919,4.041,18.673,2.895,-6.001,-7.436,21.142,15.345,18.074,-1.658,14.492,21.25,17.813,20.959,3.685,19.669,24.588,13.802,3.89,6.202,-3.234,12.343,16.977,20.6,3.929,6.619,2.752,20.173,6.006,11.772,4.965,7.333,8.063,18.668,10.899,23.965,6.895,2.807,-4.839,3.593,8.192,18.784,21.338,12.127,6.92,11.364],[26.544,22.923,11.844,13.901,12.64,12.811,6.151,-0.034,9.56,21.245,28.982,34.943,8.901,3.148,14.366,19.061,13.613,21.465,14.507,15.39,7.62,0.068,17.949,17.004,2.756,0.601,4.161,24.575,16.285,9.279,-1.132,14.858,5.75,14.027,9.238,-1.717,3.971,1.995,19.046,-7.268,2.355,8.87,15.527,13.676,-2.437,19.279,21.328,21.963,18.575,12.52,2.867,-4.991,7.545,24.564,20.034,6.051,7.07,11.225,5.999,5.136,18.673,3.177,18.775,11.511,22.534,21.612,9.105,13.931,9.411,1.524,9.695,-1.111,28.159,12.074,7.407,28.981,22.95,-0.081,27.114,25.956,11.088,13.902,13.357,12.568,12.222,13.834,13.935,34.037,5.973,23.004,10.308,35.491,3.272,15.95,12.965,17.465,19.318,13.203,19.094,2.375,6.108,20.249,16.119,12.712,15.04,1.288,15.162,20.75,-0.964,16.084,9.983,2.392,17.11,23.183,23.551,1.097,16.43,-2.376,26.098,7.225,5.585,16.154,2.092,3.545,7.722,0.203,7.32,13.094,6.248,7.498,0.408,13.371,15.173,15.612,3.049,17.522,3.387,-1.521,8.983,16.69,7.474,-3.694,13.672,18.983,0.152,8.254,20.083,4.458,19.094,2.912,-5.663,-7.605,21.058,15.741,17.671,-1.846,14.134,21.066,17.803,20.958,3.346,19.648,24.918,13.889,4.031,6.292,-3.325,12.069,17.096,20.735,4.599,6.447,2.944,19.974,5.595,12.086,4.84,7.595,7.915,18.834,11.265,24.437,6.789,2.274,-5.16,3.577,8.516,18.716,21.352,12.282,6.868,12.407],[26.636,22.916,11.81,13.82,13.024,12.739,6.063,0.236,9.583,21.205,28.884,34.783,8.974,3.018,14.659,19.073,13.451,21.706,14.501,15.443,7.749,-0.061,18.264,17.141,2.684,0.394,4.311,24.664,16.148,9.533,-0.963,14.753,5.623,13.701,9.162,-1.887,3.98,1.856,18.745,-7.311,2.462,8.706,15.128,13.434,-2.398,19.282,21.267,22.072,18.676,12.427,2.774,-4.959,7.632,24.448,20.214,6.091,7.147,11.457,6.212,5.056,18.607,3.024,18.829,11.694,22.52,21.838,9.104,14.139,9.371,1.262,9.692,-0.513,28.408,12.044,7.54,29.572,23.376,0.247,27.007,25.881,10.875,14.199,13.272,12.721,12.414,14.459,13.361,34.29,6.017,22.563,10.238,35.327,2.946,16.123,13.1,17.818,18.973,13.688,18.908,3.022,6.376,20.404,16.177,13.2,15.622,0.885,15.175,20.28,-1.019,16.145,10.44,2.147,16.974,23.182,23.275,0.91,16.382,-2.097,26.005,7.005,5.788,15.501,1.803,3.797,7.911,-0.097,7.227,12.909,6.113,7.467,0.623,13.632,15.537,15.626,2.484,17.514,3.063,-1.83,9.271,16.231,7.933,-3.467,13.591,19.143,-0.072,8.166,20.195,4.497,18.795,3.225,-5.781,-7.839,21.426,15.365,17.611,-2.176,13.697,20.746,18.128,20.762,3.646,19.578,24.857,13.694,3.886,6.247,-3.854,11.576,16.982,20.518,4.262,6.283,3.416,19.73,5.013,12.252,4.754,7.639,7.828,19.536,10.979,24.659,6.671,2.337,-4.928,3.379,8.824,18.635,21.76,12.68,6.635,12.48],[26.689,23.031,11.714,13.803,13.404,12.713,5.909,0.494,9.612,21.217,28.819,34.682,8.92,2.903,15.01,18.991,13.316,21.864,14.436,15.435,7.907,-0.26,18.371,17.181,2.582,0.339,4.612,24.846,16.023,9.793,-0.767,14.693,5.429,13.552,9.233,-2.006,3.94,1.767,18.437,-7.288,2.626,8.525,15.001,13.304,-2.56,19.167,21.218,21.973,18.692,12.368,2.782,-4.954,7.758,24.412,20.326,6.186,7.141,11.533,6.452,5.01,18.498,2.935,18.964,11.887,22.278,21.396,8.849,13.451,9.201,1.071,9.916,-0.006,28.16,11.963,7.317,29.578,23.241,0.423,26.976,26.615,11.017,14.383,13.142,12.425,12.153,14.4,12.833,34.586,5.877,22.851,10.319,34.951,3.016,16.364,12.967,18.069,18.493,13.211,19.334,3.707,7.049,20.769,15.896,12.921,15.922,1.185,14.892,20.71,-1.308,16.029,10.91,1.733,16.948,23.291,23.502,0.224,16.643,-1.842,26.285,6.666,5.866,15.086,1.725,4.093,8.166,-0.251,6.882,12.87,5.76,7.432,0.495,13.346,15.684,15.182,2.456,17.458,3.327,-2.177,9.215,16.213,8.584,-3.333,13.045,19.434,0.11,8.277,20.479,4.153,18.908,3.289,-5.749,-7.863,21.659,14.271,18.222,-2.013,13.458,21.456,18.227,20.703,3.899,19.416,24.395,13.42,3.593,6.423,-4.187,12.42,16.886,20.549,4.187,6.143,2.635,20.055,4.872,12.416,5.203,8.025,7.751,19.449,10.513,24.147,6.728,2.253,-4.632,3.11,8.738,18.392,21.729,12.747,6.675,12.32],[26.803,23.167,11.595,13.633,13.811,12.724,5.751,0.68,9.457,21.296,28.953,34.731,8.815,2.96,15.227,18.929,13.045,21.985,14.234,15.266,7.949,-0.45,18.433,17.123,2.539,0.307,4.96,25.042,15.931,9.983,-0.673,14.68,5.182,13.416,9.311,-2.001,3.885,1.828,18.387,-7.167,2.743,8.476,15.115,13.341,-2.7,19.102,21.356,21.698,18.612,12.281,2.778,-4.991,7.797,24.271,20.28,6.25,7.104,11.475,6.716,4.914,18.386,2.837,19.131,11.804,22.248,21.257,8.763,13.556,9.542,1.454,9.681,0.229,28.4,12.132,7.052,28.965,23.46,-0.194,27.002,26.78,11.048,14.907,13.04,12.456,11.935,14.001,13.623,34.001,5.511,23.059,10.223,34.477,2.919,16.795,12.842,17.631,18.573,12.875,19.602,3.308,6.954,20.861,15.9,12.39,15.43,1.092,14.668,20.523,-1.219,16.201,11.193,1.544,16.502,23.702,24.031,0.185,16.718,-1.984,26.537,6.768,6.032,14.905,1.985,4.313,8.841,-0.151,6.63,13.067,5.746,7.502,0.588,12.902,15.162,15.027,2.544,17.377,3.502,-2.062,9.512,16.457,8.319,-3.772,13.259,19.564,0.321,8.056,20.392,4.463,19.188,3.133,-5.837,-7.172,21.184,14.453,19.061,-2.462,13.206,21.508,17.562,20.374,3.448,19.582,24.272,13.243,3.716,6.743,-3.881,12.62,16.642,20.123,4.126,6.216,2.595,20.411,5.437,12.778,5.458,8.067,7.987,19.214,10.637,24.181,7.025,2.298,-5.123,3.315,8.49,18.498,21.721,12.989,7.013,12.403],[26.831,23.35,11.518,13.492,14.048,12.85,5.648,0.671,9.266,21.435,29.169,34.687,8.651,3.177,15.429,18.968,12.657,21.98,14.093,15.005,7.825,-0.487,18.522,16.951,2.597,0.394,5.238,25.221,15.866,10.095,-0.873,14.685,5.021,13.238,9.35,-1.912,3.943,1.903,18.471,-7.07,2.705,8.484,15.457,13.482,-2.93,19.027,21.546,21.29,18.595,12.193,2.846,-5.14,7.728,24.014,20.217,6.377,7.109,11.351,6.895,4.883,18.249,2.914,19.311,11.739,22.689,21.528,8.381,13.889,9.691,1.408,9.411,0.468,28.465,11.661,6.934,29.48,23.286,-0.074,27.185,26.268,11.168,14.628,12.981,13.216,11.82,14.779,14.112,34.547,5.374,23.035,9.959,34.288,3.05,16.665,12.719,17.574,18.379,12.727,19.615,2.24,6.853,20.769,15.867,12.311,15.146,0.677,14.676,20.244,-1.124,16.584,11.03,1.632,16.423,23.739,23.925,0.485,16.923,-2.103,26.623,7.1,6.711,14.771,1.798,4.298,8.505,-0.244,6.427,12.817,5.674,7.502,0.892,13.373,15.404,14.861,2.65,17.288,3.18,-2.014,10.102,16.596,7.518,-3.951,13.351,19.451,0.202,8.313,20.188,4.664,18.657,3.126,-5.542,-7.495,20.689,15.015,18.67,-2.45,13.473,21.372,17.732,20.14,3.605,20.031,24.504,13.782,3.718,6.537,-3.607,11.894,16.605,20.418,3.981,6.238,2.757,20.525,5.986,12.433,5.576,8.319,8.247,19.375,10.911,24.499,7.108,2.065,-5.056,3.061,8.893,18.674,21.611,12.924,6.842,12.59],[26.629,23.483,11.398,13.343,14.255,13.086,5.652,0.681,9.188,21.6,29.36,34.657,8.477,3.242,15.557,19.025,12.236,21.772,14.181,14.854,7.833,-0.299,18.484,16.946,2.63,0.472,5.399,25.242,15.778,10.078,-1.2,14.578,5.021,13.153,9.431,-1.737,4.016,1.87,18.526,-7.147,2.607,8.475,15.784,13.588,-3.198,18.959,21.735,20.949,18.496,12.237,2.848,-5.269,7.506,23.814,20.305,6.47,7.252,11.323,7.002,4.924,18.309,3.048,19.479,11.734,22.915,21.811,8.544,13.645,8.659,1.42,9.398,0.146,28.317,11.513,7.117,30.39,23.725,0.039,27.58,26.44,11.198,14.295,12.845,14.007,11.66,15.255,13.496,34.978,5.826,23.351,9.943,34.449,3.568,16.211,12.633,17.689,18.739,12.846,19.736,1.957,6.615,21.043,15.523,12.244,14.993,1.004,14.775,20.473,-1.194,15.97,11.011,2.34,16.47,23.108,23.904,0.234,16.675,-1.904,26.611,6.706,6.541,14.742,1.836,4.873,8.453,-0.018,6.607,12.784,5.352,7.668,0.597,12.794,15.435,15.051,2.668,17.418,3.555,-2.144,9.889,16.85,7.826,-4.044,13.332,19.263,0.067,8.082,20.255,4.302,18.844,3.702,-5.587,-7.999,20.252,15.354,17.814,-2.051,13.598,21.991,18.186,20.023,3.625,19.823,24.797,13.904,3.476,6.184,-3.589,11.966,16.438,20.657,3.942,5.639,3.285,20.499,6.223,12.653,5.544,8.797,8.271,19.693,10.908,24.311,7.013,1.85,-5.244,2.941,8.758,18.534,21.556,12.536,6.443,12.487],[26.614,23.596,11.32,13.213,14.519,13.131,5.714,0.732,9.124,21.749,29.686,34.822,8.348,3.192,15.531,19.157,11.967,21.544,14.212,14.72,7.856,-0.142,18.36,17.051,2.716,0.519,5.307,25.215,15.706,10.114,-1.422,14.341,5.064,13.152,9.589,-1.468,4.132,1.782,18.66,-7.301,2.796,8.448,15.867,13.599,-3.402,19.075,21.874,20.708,18.387,12.292,2.795,-5.315,7.191,23.763,20.322,6.536,7.241,11.34,7.117,4.997,18.449,3.163,19.553,11.734,22.556,22.244,8.68,12.812,8.437,1.436,9.373,0.062,28.259,11.496,7.319,30.507,23.922,-0.471,27.872,26.402,11.568,14.561,12.796,14.368,10.927,15.221,13.594,34.128,5.742,23.453,9.808,34.301,3.29,16.48,12.601,17.481,19.026,12.673,19.514,2.848,7.096,20.593,15.837,11.862,14.663,1.362,14.739,20.501,-1.178,15.645,10.863,1.98,16.42,22.883,23.896,0.625,16.62,-2.541,26.548,6.667,6.645,14.801,1.905,4.546,8.57,0.13,6.696,12.466,5.326,7.662,-0.21,12.457,15.289,14.946,2.642,17.361,3.337,-2.199,10.178,17.273,8.239,-3.687,13.114,19.507,0.129,7.897,20.302,3.851,18.733,3.75,-5.793,-7.794,20.045,15.453,17.721,-2.669,13.673,22.085,18.067,19.889,3.518,20.102,24.524,13.309,3.572,5.9,-3.93,12.483,16.812,20.454,4.408,5.807,3.615,20.314,6.006,12.78,5.819,8.582,8.177,20.133,10.758,24.042,6.796,2.045,-5.598,3.137,8.681,18.584,21.749,12.518,6.601,12.475],[26.914,23.567,11.2,13.042,14.762,13.147,5.59,0.886,9.103,21.793,29.919,34.897,8.237,3.039,15.437,19.365,11.971,21.349,14.217,14.527,7.983,-0.049,18.261,17.087,2.83,0.586,4.981,25.223,15.661,9.947,-1.722,14.14,5.123,13.072,9.755,-1.269,4.138,1.641,18.784,-7.374,3.186,8.411,15.753,13.611,-3.554,19.264,21.95,20.561,18.565,12.104,2.887,-5.442,7.046,23.692,20.159,6.621,7.108,11.446,7.277,5.107,18.589,3.349,19.504,11.752,22.883,22.004,8.278,12.741,9.053,1.578,9.252,-0.141,28.246,11.409,7.015,30.261,23.456,-0.299,28.103,25.945,11.363,14.755,12.493,14.138,10.737,15.026,14.096,34.471,5.388,23.455,9.374,34.57,3.208,16.952,12.906,17.584,18.84,12.109,19.477,3.305,7.046,19.86,15.803,11.804,14.436,1.248,14.564,20.801,-0.955,16.535,11.333,1.732,16.273,22.948,24.002,0.529,16.577,-2.85,26.677,7.166,6.259,14.892,2.084,4.24,8.656,0.444,6.564,12.35,5.668,8.053,-0.592,13.127,15.071,14.937,2.476,17.59,3.391,-2.03,10.772,16.67,7.855,-3.858,13.257,19.935,-0.211,7.736,20.224,3.99,19.076,3.283,-5.96,-8.121,19.991,14.985,18.143,-2.805,13.759,21.453,17.902,19.822,3.726,20.234,23.923,13.514,3.773,5.363,-4.044,12.576,16.854,20.787,4.853,6.431,3.145,20.358,5.647,12.445,5.746,8.711,8.191,20.042,10.485,24.371,6.876,1.928,-5.212,3.33,8.772,18.71,21.527,13.044,7.033,12.645],[27.137,23.347,11.022,12.964,14.829,13.046,5.333,1.052,9.091,21.697,29.977,34.945,8.148,2.993,15.42,19.566,12.028,21.196,14.317,14.311,8.245,0.009,18.209,17.2,2.949,0.693,4.54,25.32,15.653,9.839,-1.992,14.003,5.233,13.108,9.956,-1.025,4.109,1.382,18.779,-7.415,3.441,8.246,15.503,13.739,-3.683,19.42,21.906,20.527,18.789,11.915,3.023,-5.497,7.065,23.573,19.923,6.751,7.037,11.597,7.346,5.106,18.588,3.382,19.348,11.849,23.519,21.817,8.217,13.287,8.886,1.21,9.11,0.102,28.498,11.251,6.867,30.404,23.972,0.586,28.234,26.613,11.282,14.871,12.5,13.692,10.792,15.011,13.957,34.53,5.234,23.507,9.416,35.298,3.02,16.592,12.914,17.475,18.95,12.534,19.519,3.257,6.84,19.623,15.874,12.049,14.163,0.967,14.336,21.047,-0.919,16.991,11.231,2.314,16.03,22.559,24.015,0.059,16.754,-3.035,26.607,7.157,5.631,14.956,2.171,4.205,8.814,0.478,6.491,12.357,5.853,8.471,-0.596,13.296,14.938,14.695,1.936,18.348,3.575,-1.485,10.722,16.505,8.036,-4.389,13.419,19.851,-0.347,7.558,20.609,4.044,19.353,3.799,-6.418,-7.855,20.085,14.78,18.981,-2.538,13.879,21.643,18.341,19.672,4.238,20.193,23.874,13.471,3.494,5.613,-4.243,12.088,16.747,20.644,4.788,6.416,3.195,20.595,5.731,12.702,5.921,8.913,8.437,19.358,10.482,24.171,6.911,1.73,-5.183,3.491,8.84,18.788,21.118,13.192,7.081,12.921],[27.251,23.376,10.97,12.983,14.695,13.019,5.121,1.259,8.996,21.593,29.978,34.962,8.146,2.836,15.517,19.605,12.082,21.013,14.487,14.116,8.248,-0.082,18.324,17.321,3.106,0.745,4.195,25.456,15.655,9.742,-2.135,13.998,5.206,13.208,10.227,-0.813,4.201,1.198,18.681,-7.403,3.59,8.106,15.307,13.885,-3.723,19.557,21.904,20.721,19.14,11.761,3.026,-5.559,7.274,23.4,19.586,7.046,7.193,11.687,7.339,5.013,18.428,3.295,19.055,12.062,22.876,22.029,8.165,13.179,8.641,1.088,9.139,0.659,28.687,11.075,6.789,29.99,23.754,1.112,28.064,26.996,11.354,14.235,12.432,13.57,10.484,15.229,13.648,34.548,5.155,23.223,9.651,35.899,3.586,16.304,13.11,17.796,19.696,12.679,19.488,2.889,7.423,19.52,15.936,11.979,14.053,1.355,14.236,20.948,-1.065,16.407,11.159,2.583,15.576,22.301,23.841,0.622,16.74,-3.199,26.286,7.184,5.521,14.978,2.003,3.85,9.115,0.927,6.959,12.162,5.286,8.62,-0.611,13.531,14.878,14.823,1.55,18.352,3.042,-1.456,10.448,16.753,8.262,-4.695,13.442,19.984,-0.609,7.883,20.741,4.03,19.269,4.503,-6.13,-8.064,20.014,14.477,19.409,-2.828,13.708,21.946,18.579,19.524,4.732,20.135,24.234,13.147,3.718,6.037,-4.403,12.274,16.772,20.365,4.201,6.091,3.935,20.266,6.146,13.153,5.833,8.529,8.715,19.177,10.19,23.951,6.715,2.119,-5.362,3.347,8.723,19.023,20.966,13.025,6.493,13.106],[27.363,23.53,10.953,12.991,14.505,13.172,4.929,1.471,8.807,21.529,29.862,35.064,8.176,2.718,15.491,19.462,12.116,20.972,14.573,14.002,8.108,0.125,18.535,17.273,3.287,0.513,4.179,25.527,15.622,9.773,-2.261,14.043,5.124,13.36,10.492,-0.622,4.31,0.977,18.514,-7.355,3.657,8.128,15.05,13.872,-3.763,19.566,21.922,20.977,19.431,11.632,3.109,-5.669,7.289,23.243,19.372,7.44,7.397,11.823,7.162,4.911,18.36,3.21,18.728,12.377,22.652,22.155,8.291,13.107,8.614,0.98,9.051,1.278,28.86,11.331,6.517,30.255,23.757,0.846,28.048,26.573,11.443,14.242,12.105,13.504,11.092,15.454,13.661,34.696,5.094,23.018,9.328,35.645,3.483,16.761,13.277,17.811,19.872,12.255,19.21,2.976,7.775,19.444,16.114,12.343,13.834,1.511,14.498,21.118,-1.086,16.627,10.69,1.98,14.933,21.974,24.08,0.708,16.9,-3.276,26.651,7.114,5.524,14.9,1.918,3.807,8.454,0.775,6.859,12.242,4.916,8.628,-0.476,13.514,14.902,15.147,1.764,17.96,2.926,-1.465,10.917,16.6,7.904,-4.809,13.863,19.468,-0.949,7.991,20.933,4.491,19.252,4.689,-6.306,-8.317,19.868,14.73,19.548,-2.721,13.775,21.885,18.517,19.812,4.473,20.102,23.908,13.196,3.856,5.888,-4.342,12.971,16.457,20.359,3.783,5.937,3.468,19.73,6.545,13.063,5.597,8.534,9.204,19.381,10.023,24.024,7.024,2.029,-5.202,3.01,9.002,18.663,20.707,13.03,6.652,12.936],[27.357,23.661,10.957,12.997,14.314,13.367,4.837,1.569,8.663,21.43,29.857,35.197,8.024,2.719,15.547,19.31,12.118,21.013,14.518,14.026,8.099,0.592,18.684,17.177,3.378,0.336,4.398,25.529,15.575,9.761,-2.41,14.083,5.004,13.542,10.741,-0.502,4.426,0.745,18.306,-7.398,3.491,8.327,14.826,13.894,-3.804,19.493,21.93,21.092,19.58,11.74,3.174,-5.579,7.055,23.051,19.372,7.864,7.663,12.017,6.837,4.868,18.339,2.973,18.627,12.531,23.155,22.162,8.037,13.099,8.69,0.853,9.198,1.372,28.946,11.345,6.435,31.11,23.651,0.294,28.007,26.676,11.672,14.612,12.127,13.528,11.291,15.554,13.975,34.66,5.03,22.884,9.206,35.145,2.824,16.96,12.832,17.339,18.995,12.527,19.733,3.598,7.036,19.403,16.024,12.168,13.757,1.45,14.683,21.098,-1.355,16.623,10.784,1.825,14.38,22.032,24.19,0.36,16.881,-3.13,26.852,7.101,5.508,14.732,1.689,3.772,8.038,0.837,6.427,12.218,5.318,9.011,-0.604,13.041,14.967,15.367,1.717,17.068,3.358,-0.97,11.022,16.376,7.581,-4.319,13.234,18.808,-0.802,7.49,21.374,4.699,19.296,4.004,-6.772,-7.626,20.097,15.222,19.745,-2.688,14.247,21.621,18.096,20.083,4.205,20.27,23.747,13.049,4.132,5.563,-4.319,12.989,16.538,20.212,4.184,6.01,2.853,19.774,6.81,12.898,5.329,8.362,9.439,18.789,10.055,23.93,6.82,1.752,-5.704,3.072,9.452,18.134,20.686,13.719,7.384,12.668],[27.285,23.693,10.92,12.916,14.166,13.559,4.977,1.5,8.567,21.319,30.05,35.315,7.86,2.669,15.688,19.085,12.079,20.995,14.389,14.117,8.14,0.963,18.827,17.028,3.453,0.188,4.582,25.395,15.519,9.704,-2.582,14.215,4.959,13.644,10.97,-0.389,4.524,0.673,17.984,-7.404,3.152,8.371,14.877,13.866,-3.793,19.32,21.996,21.187,19.754,11.77,3.165,-5.434,6.884,22.911,19.39,8.162,8.053,12.203,6.421,5.063,18.306,2.659,18.653,12.525,23.379,21.96,7.862,12.932,8.697,0.974,9.213,1.513,28.673,11.123,6.587,30.995,24.126,-0.1,28.252,26.869,11.76,14.212,12.115,13.362,10.87,15.517,14.337,34.265,4.785,22.872,9.066,34.842,2.852,16.92,12.817,17.662,19.188,12.597,19.982,3.906,6.836,19.622,15.672,12.26,13.636,1.951,14.579,20.701,-1.455,16.17,10.817,2.026,14.891,22.54,24.108,0.676,17.11,-2.928,26.577,7.125,5.716,14.505,1.684,3.592,8.31,1.275,6.341,12.449,5.66,9.04,-0.711,13.161,14.887,15.465,1.377,16.458,3.403,-0.825,11.088,16.549,7.942,-3.865,13.861,18.795,-0.883,7.504,21.387,4.467,19.104,3.022,-6.407,-8.122,20.455,14.798,19.94,-2.869,13.748,21.488,17.959,19.869,3.591,20.404,23.966,13.055,3.853,5.528,-4.063,12.822,16.545,20.33,4.289,6.053,2.99,19.665,7.125,13.204,4.989,7.828,9.899,18.469,10.128,23.496,6.426,2.151,-5.364,3.333,9.5,18.43,20.365,13.328,7.682,12.534],[27.301,23.78,10.774,12.871,14.072,13.707,5.152,1.401,8.559,21.277,30.225,35.161,7.928,2.674,15.657,18.997,11.958,21.057,14.214,14.214,8.119,1.118,18.933,16.959,3.542,0.174,4.548,25.176,15.461,9.604,-2.701,14.28,4.983,13.602,11.006,-0.341,4.573,0.58,17.754,-7.471,2.595,8.172,14.924,13.697,-3.571,19.007,22.054,21.264,19.992,11.644,3.242,-5.171,6.921,23.004,19.281,8.418,8.188,12.274,6.095,5.327,18.343,2.402,18.62,12.583,23.163,21.779,8.072,13.149,8.689,0.879,8.796,1.296,29.122,11.171,6.635,30.514,23.703,-0.047,28.383,26.746,11.927,14.194,12.043,12.999,11.008,15.115,14.187,34.834,5.254,22.936,9.171,35.524,3.099,16.654,13.134,17.324,19.943,12.545,19.825,4.05,7.263,20.008,15.921,12.398,13.651,2.51,14.23,20.388,-1.359,16.382,10.942,2.209,15.524,22.796,23.969,1.368,17.127,-3.206,26.185,7.427,5.888,14.419,1.59,3.641,8.316,1.092,6.529,12.51,5.396,9.331,-0.936,13.674,15.33,15.459,1.566,15.873,3.284,-1.032,11.668,16.652,7.979,-4.615,13.983,18.618,-1.135,8.405,21.526,4.366,19.163,3.498,-6.24,-8.186,20.488,14.448,19.869,-3.493,13.837,21.815,18.145,19.843,3.431,20.188,23.733,13.211,3.6,5.65,-3.959,12.846,16.583,20.486,3.621,6.182,2.746,19.69,7.672,12.948,4.586,7.541,10.215,18.98,10.211,23.152,6.984,1.634,-4.993,3.465,9.927,18.73,20.72,13.787,7.611,13.288],[27.552,23.901,10.658,12.845,14.023,13.689,5.195,1.296,8.758,21.304,30.246,35.003,8.061,2.72,15.489,19.153,11.899,21.242,14.225,14.319,8.32,1.21,18.903,17.125,3.571,0.347,4.396,24.891,15.33,9.577,-2.87,14.164,4.914,13.729,11.089,-0.512,4.681,0.426,17.588,-7.676,2.227,8.046,14.899,13.524,-3.414,18.625,21.929,21.174,20.113,11.678,3.201,-4.899,7.182,23.11,19.385,8.607,8.14,12.417,5.921,5.497,18.479,2.203,18.65,12.862,23.05,21.929,8.042,13.176,8.684,0.833,8.777,1.497,29.401,10.975,6.653,30.902,23.893,0.367,28.451,26.665,12.047,14.625,11.856,12.72,10.971,14.152,13.673,34.48,6.054,22.818,9.563,35.873,3.253,16.296,13.118,17.4,19.427,12.685,19.645,4.124,6.936,20.159,16.009,12.191,13.828,2.576,13.837,20.671,-1.354,16.508,10.481,2.252,16.08,22.85,23.669,0.718,17.097,-3.537,26.205,7.532,5.611,14.778,1.585,4.183,8.343,1.019,6.504,12.49,5.167,9.668,-1.027,13.575,15.315,15.318,1.489,15.845,3.314,-1.065,11.267,16.72,7.522,-4.408,12.97,18.204,-1.051,7.846,22.102,4.771,19.154,3.352,-6.485,-7.651,20.785,14.632,19.847,-3.911,13.996,21.805,17.825,19.687,3.136,20.221,23.674,13.043,3.784,5.66,-3.931,12.424,16.619,20.269,2.855,6.479,1.878,19.71,8.45,13.257,4.431,7.438,10.511,19.366,10.13,23.676,7.291,2.008,-5.039,3.691,9.933,18.503,20.655,14.018,7.479,13.857],[27.798,24.056,10.573,12.633,13.913,13.46,5.238,1.318,9.095,21.284,30.245,34.855,8.057,2.792,15.449,19.218,12.024,21.365,14.367,14.467,8.437,1.257,18.794,17.339,3.581,0.442,4.431,24.584,15.165,9.522,-2.992,14.096,4.756,13.938,11.064,-0.72,4.794,0.287,17.526,-7.83,2.046,7.89,14.868,13.37,-3.229,18.298,21.854,21.113,20.151,11.735,3.174,-4.823,7.483,23.331,19.499,8.824,8.137,12.358,5.805,5.764,18.503,2.007,18.761,13.189,23.433,22.081,8.336,12.874,8.902,1.018,9.265,1.662,29.279,10.931,6.766,31.134,24.429,0.879,28.5,26.676,11.788,14.045,11.788,12.368,10.635,13.96,13.718,34.303,5.356,22.643,9.314,34.823,3.247,16.879,13.227,17.991,19.049,12.573,19.595,4.006,7.279,19.985,16.037,12.388,13.927,2.249,13.748,21.081,-1.137,16.848,10.275,2.01,16.255,22.901,23.457,0.768,17.107,-3.8,26.191,7.9,5.411,15.038,2.021,3.653,7.962,0.581,6.224,12.315,5.053,9.765,-1.287,13.494,14.758,15.805,1.538,15.667,3.584,-1.298,11.148,16.572,6.767,-4.176,13.167,17.98,-1.106,7.528,21.842,5.311,18.539,3.069,-6.858,-8.376,20.528,14.523,20.121,-4.407,13.753,21.455,17.475,19.591,3.24,20.184,23.862,12.935,3.925,5.927,-3.547,12.648,16.74,19.974,2.94,6.598,1.314,19.81,8.483,14.015,4.666,7.397,10.702,19.245,10.095,23.731,7.217,2.017,-4.806,3.962,9.831,18.62,20.88,13.882,7.539,14.123],[27.784,24.294,10.536,12.401,13.855,13.184,5.24,1.502,9.373,21.208,30.268,34.6,7.945,2.919,15.609,19.298,12.107,21.16,14.598,14.545,8.561,1.281,18.54,17.45,3.59,0.451,4.546,24.442,15.101,9.367,-3.117,14.022,4.58,14.157,10.972,-0.871,4.887,0.317,17.527,-8.065,2.151,7.661,14.792,13.527,-3.177,18.164,22.026,21.083,20.021,11.759,3.284,-4.787,7.591,23.553,19.468,8.872,8.214,12.165,5.718,5.937,18.472,1.947,18.913,13.467,23.545,21.658,8.864,12.941,9.415,1.177,8.869,1.415,29.324,10.823,6.825,31.262,24.367,0.678,28.569,26.992,11.448,13.947,11.742,12.089,10.543,14.521,14.216,34.09,5.036,22.887,9.014,35.08,3.016,16.792,13.264,17.843,19.393,12.805,19.966,3.677,7.426,19.931,15.995,13.009,13.921,2.214,13.999,21.026,-0.924,16.725,10.295,1.954,16.098,22.843,23.152,0.986,17.201,-3.573,25.722,7.687,5.763,14.335,2.017,3.558,7.532,0.48,6.089,12.123,5.307,9.188,-1.548,13.233,14.892,15.941,1.412,15.807,3.654,-1.507,11.769,16.196,6.562,-4.053,13.499,17.733,-1.341,7.828,21.66,5.389,18.418,2.701,-6.451,-8.379,20.014,14.398,20.387,-4.565,13.765,21.894,17.134,19.882,2.931,20.112,23.834,12.993,3.47,6.17,-3.763,13.063,16.6,20.236,3.344,6.926,2.12,19.918,7.884,13.512,4.65,7.413,10.554,18.506,10.133,23.862,7.177,1.855,-4.883,4.128,9.981,18.816,20.828,14.264,7.597,13.489],[27.794,24.51,10.61,12.291,13.781,13.148,5.132,1.651,9.485,21.158,30.393,34.386,7.78,2.885,15.722,19.424,12.236,20.941,14.779,14.55,8.525,1.301,18.4,17.401,3.588,0.465,4.693,24.565,15.044,9.188,-3.166,14.159,4.479,14.245,10.848,-1.075,4.886,0.4,17.511,-8.156,2.157,7.361,14.652,13.904,-3.275,18.225,22.165,21.102,19.891,11.785,3.42,-4.766,7.581,23.642,19.459,8.647,8.276,12.041,5.627,5.934,18.425,2.163,18.912,13.654,23.611,21.507,8.987,13.072,9.29,1.157,8.844,1.332,29.156,10.519,6.906,31.031,24.372,0.309,28.582,26.902,11.233,14.413,11.813,12.194,10.416,14.826,13.971,33.498,5.457,22.838,9.105,35.032,3.299,16.345,13.215,18.13,19.664,12.718,19.724,3.601,7.473,19.499,16.301,12.919,14.12,2.336,13.943,20.984,-1.147,16.942,9.98,2.071,15.167,22.054,23.282,0.533,16.915,-3.34,25.719,7.379,5.494,13.994,1.885,4.112,7.402,0.7,5.453,12.263,5.421,9.138,-2.066,13.357,15.32,16.123,1.391,16.245,3.947,-1.566,11.564,15.818,7.338,-4.002,13.21,17.778,-1.079,8.087,21.33,5.212,18.196,3.231,-6.457,-8.437,20.284,14.866,20.851,-4.543,14.011,22.095,16.883,19.822,3.243,20.457,24.287,13.318,3.346,6.014,-3.728,12.922,16.709,20.217,3.149,7.139,2.759,19.637,7.633,13.632,4.532,7.447,10.421,18.468,10.287,23.845,7.439,2.37,-5.132,4.442,9.997,18.828,20.896,14.506,7.8,12.842],[27.912,24.654,10.573,12.273,13.71,13.215,5.135,1.724,9.353,21.105,30.486,34.147,7.821,2.735,15.736,19.576,12.415,20.613,14.823,14.568,8.3,1.214,18.295,17.476,3.689,0.358,4.718,25.014,14.942,8.923,-3.085,14.563,4.367,14.262,10.775,-1.259,4.943,0.512,17.386,-8.093,2.134,7.226,14.525,14.127,-3.38,18.467,22.121,21.268,19.886,11.833,3.53,-4.738,7.655,23.7,19.602,8.332,8.253,11.97,5.578,5.935,18.46,2.433,18.782,13.731,24.113,21.598,8.764,12.98,9.471,0.895,8.921,1.309,29.13,10.429,6.413,31.228,24.38,0.459,28.711,26.565,11.41,14.612,12.145,12.177,10.506,14.822,13.669,33.368,5.594,22.515,9.186,34.549,3.46,16.208,13.499,18.0,19.793,12.396,19.187,3.501,7.399,19.104,16.394,12.455,14.295,2.215,13.521,20.812,-1.27,16.69,10.042,2.127,13.884,21.608,23.758,1.223,16.495,-3.986,26.378,7.382,5.888,14.734,1.711,4.038,7.181,0.45,5.708,12.717,5.261,8.823,-2.538,13.85,15.315,15.906,1.565,16.972,4.072,-1.529,10.968,15.534,7.287,-4.446,13.434,18.706,-0.707,7.387,20.894,4.945,18.034,3.385,-6.717,-8.789,20.612,14.597,20.852,-4.693,14.438,21.488,17.406,19.834,3.193,20.578,24.664,13.057,4.162,6.208,-3.348,12.429,16.611,20.024,3.296,6.981,2.571,19.409,7.727,14.597,4.475,7.271,10.119,18.717,10.222,24.081,7.401,2.158,-4.903,4.196,10.179,18.845,21.168,14.276,8.018,12.235],[28.014,24.777,10.408,12.267,13.673,13.282,5.196,1.805,9.211,21.056,30.542,33.926,8.082,2.6,15.761,19.696,12.305,20.201,14.731,14.586,8.16,1.208,18.107,17.548,3.807,0.246,4.588,25.545,14.876,8.696,-3.008,14.783,4.464,14.25,10.633,-1.332,5.022,0.696,17.486,-8.076,2.01,7.182,14.345,14.227,-3.545,18.782,22.074,21.417,19.77,11.846,3.609,-4.65,7.713,23.807,19.709,8.082,8.28,11.755,5.568,5.905,18.451,2.636,18.655,13.755,24.042,21.534,8.843,12.858,8.742,0.754,8.76,0.707,29.387,10.539,6.795,31.241,24.515,1.14,28.676,27.029,11.742,14.16,12.089,12.229,10.961,14.328,13.677,32.986,5.505,22.527,9.356,34.539,3.066,16.809,13.829,18.232,19.982,12.829,18.674,3.582,6.778,18.464,16.428,12.986,14.513,2.463,13.265,21.07,-1.364,16.449,9.882,2.357,13.231,21.518,24.017,1.731,16.268,-3.978,26.798,7.507,5.658,15.119,1.749,4.094,7.072,0.388,5.737,12.957,4.987,8.957,-2.96,13.979,15.841,15.967,1.588,16.877,3.676,-1.584,10.86,15.353,6.464,-4.587,13.708,18.958,-0.766,7.197,20.676,4.936,18.582,2.791,-6.387,-7.839,20.586,14.574,20.828,-4.599,14.53,21.63,18.248,19.942,2.559,20.254,24.23,12.853,4.075,6.367,-3.666,12.337,16.576,20.393,3.557,6.707,2.075,19.341,7.6,15.298,4.321,7.156,9.969,19.076,10.366,24.746,7.272,2.35,-4.402,4.082,10.03,18.903,21.069,13.799,8.003,12.359],[28.175,24.783,10.323,12.235,13.583,13.447,5.379,1.803,9.2,20.919,30.478,33.821,8.218,2.561,15.882,19.881,12.204,19.916,14.614,14.6,8.017,1.345,17.851,17.619,3.827,0.232,4.397,25.902,14.807,8.533,-2.965,14.891,4.547,14.228,10.537,-1.24,4.927,0.897,17.674,-7.965,1.695,7.198,14.089,14.218,-3.678,19.169,22.107,21.27,19.554,11.873,3.59,-4.513,7.733,23.95,19.769,7.985,8.241,11.511,5.482,5.85,18.426,2.62,18.672,13.893,23.674,21.469,8.472,12.604,8.666,0.801,9.032,0.698,29.458,10.717,7.253,30.998,24.676,1.826,28.675,27.566,11.551,14.32,11.494,12.531,10.43,14.07,13.57,32.895,5.44,22.509,9.441,34.428,2.95,17.177,13.56,18.162,19.779,12.683,18.627,4.064,7.002,18.3,16.405,12.909,14.951,2.791,13.533,21.525,-1.297,16.911,9.506,2.562,13.392,21.09,24.64,1.37,16.027,-3.572,26.942,7.481,5.611,14.556,1.705,3.892,6.718,0.434,5.748,13.208,5.377,8.82,-3.014,14.835,16.026,15.893,1.936,16.189,3.73,-1.674,10.841,15.426,6.619,-4.366,13.491,18.757,-0.932,7.5,20.296,5.318,19.05,2.775,-6.369,-7.883,20.362,14.601,20.855,-4.754,14.371,22.202,18.119,19.9,2.699,20.348,24.344,13.517,3.737,6.145,-3.879,12.419,16.83,20.607,3.396,6.723,2.599,19.361,7.11,15.512,4.594,7.399,9.315,19.044,10.478,24.38,7.606,2.823,-4.73,4.324,10.129,18.414,21.289,13.765,7.995,12.554],[28.314,24.684,10.17,12.322,13.429,13.37,5.749,1.836,9.34,20.645,30.377,33.91,8.123,2.616,16.018,20.016,12.254,19.826,14.457,14.589,8.004,1.461,17.717,17.687,3.802,0.463,4.36,25.94,14.717,8.418,-2.87,15.012,4.561,14.38,10.46,-1.041,4.881,1.199,17.595,-7.869,1.628,7.371,13.77,14.069,-3.709,19.359,22.324,21.004,19.296,12.004,3.444,-4.522,7.769,24.068,19.863,7.859,8.212,11.34,5.409,5.803,18.365,2.482,18.77,14.128,23.785,21.233,8.694,12.393,9.35,0.835,9.065,1.09,29.774,10.662,7.079,31.01,24.286,1.996,28.494,27.398,11.537,14.807,11.696,12.933,9.895,14.34,13.936,33.118,5.665,22.052,9.461,34.127,3.107,17.389,13.174,18.132,19.675,12.398,18.748,4.481,6.95,18.067,16.016,12.55,15.109,2.8,13.537,21.858,-1.277,17.108,9.288,2.538,14.004,20.96,24.691,1.066,15.978,-3.542,26.98,6.87,5.445,13.915,1.656,3.811,6.816,0.725,5.935,13.172,5.422,9.028,-2.579,15.661,15.774,15.568,1.841,16.245,3.662,-1.449,10.845,15.529,7.024,-4.31,13.478,18.417,-0.544,6.957,19.873,5.161,18.909,2.533,-6.203,-8.298,20.198,14.187,21.021,-5.271,14.011,22.098,18.084,19.715,2.845,20.636,24.499,13.215,4.182,6.153,-3.402,12.074,16.603,20.61,3.268,7.287,3.034,19.54,6.973,15.408,4.38,7.159,8.96,18.757,10.512,24.677,7.751,2.263,-4.91,4.13,10.02,18.093,21.365,14.033,7.809,12.535],[28.329,24.52,10.083,12.471,13.272,13.063,6.029,1.931,9.705,20.452,30.301,34.093,7.993,2.614,16.198,20.043,12.351,19.752,14.308,14.723,7.905,1.515,17.758,17.734,3.797,0.563,4.508,25.822,14.634,8.388,-2.641,14.957,4.488,14.597,10.45,-0.843,4.805,1.493,17.352,-7.924,1.764,7.677,13.53,13.821,-3.781,19.343,22.586,20.974,19.193,12.149,3.317,-4.607,7.81,24.188,19.958,7.735,8.231,11.195,5.243,5.775,18.152,2.43,18.758,14.261,23.82,21.065,9.122,12.89,9.529,0.724,8.762,1.471,29.641,10.736,7.496,31.262,24.436,1.46,28.466,27.621,11.558,14.888,11.594,13.648,10.015,14.385,14.06,32.937,6.203,22.073,9.23,34.359,3.444,17.244,12.901,18.523,19.892,12.611,18.673,4.175,7.16,18.109,15.44,12.929,14.576,2.849,13.227,21.724,-0.868,16.925,9.483,2.451,13.781,20.907,24.404,0.954,15.926,-3.921,27.214,6.923,5.327,13.788,2.187,3.588,7.092,0.889,5.903,13.186,5.21,8.942,-2.022,15.623,15.89,15.725,1.842,16.712,3.497,-1.16,11.157,14.85,6.61,-3.977,13.352,18.503,-0.107,7.464,18.812,4.869,18.727,2.299,-6.243,-7.988,20.142,13.648,20.893,-5.331,13.952,21.931,18.086,19.654,2.411,20.866,24.653,13.169,3.591,6.261,-4.027,11.963,16.377,20.88,3.181,6.898,2.107,19.822,6.977,15.151,4.094,6.835,8.766,18.782,10.234,24.827,7.357,2.298,-4.247,4.13,10.05,18.523,21.168,13.889,7.738,12.429],[28.227,24.341,9.992,12.754,13.109,12.77,6.188,1.984,10.111,20.402,30.313,34.151,7.915,2.525,16.268,20.012,12.543,19.77,14.202,14.812,7.958,1.517,17.796,17.854,3.746,0.62,4.617,25.799,14.59,8.394,-2.294,14.826,4.284,14.613,10.442,-0.737,4.587,1.653,17.241,-8.028,1.737,7.955,13.121,13.533,-3.915,19.276,22.691,21.141,19.137,12.138,3.282,-4.545,7.795,24.343,20.069,7.603,8.266,11.226,5.009,5.771,18.068,2.264,18.656,14.235,23.909,20.989,9.558,13.396,9.181,0.773,8.835,1.398,29.867,11.2,8.016,31.199,24.46,0.965,28.585,27.759,11.041,14.807,11.437,14.054,10.526,14.404,13.639,32.948,6.352,22.074,9.084,34.838,3.301,17.252,12.419,18.074,19.705,12.661,18.214,3.797,7.009,18.065,15.488,12.999,14.068,2.479,13.025,21.245,-0.639,17.316,9.733,2.502,13.548,20.437,24.662,1.167,16.117,-3.597,27.17,6.974,5.908,13.804,2.321,3.808,7.061,0.827,5.625,13.263,5.057,9.188,-1.499,14.71,16.055,16.274,2.292,16.963,3.766,-1.463,11.665,14.216,6.688,-3.619,13.138,17.94,0.663,7.641,18.741,5.094,18.922,2.84,-6.42,-7.721,20.4,13.38,20.865,-5.199,13.989,22.472,18.597,20.203,2.826,20.913,24.56,13.686,3.61,6.238,-4.352,12.127,16.247,21.054,3.579,6.087,1.641,19.332,7.07,14.834,3.894,6.811,9.139,19.028,10.597,24.519,7.515,2.333,-4.172,3.852,9.972,18.441,21.36,14.009,8.191,12.39],[28.152,24.115,10.025,13.042,12.97,12.539,6.341,1.895,10.262,20.429,30.445,34.107,8.003,2.494,16.309,19.876,12.681,19.765,14.18,14.789,8.03,1.374,17.748,18.029,3.692,0.712,4.721,25.894,14.545,8.33,-1.936,14.932,4.127,14.36,10.495,-0.76,4.424,1.863,17.205,-7.937,1.74,8.185,12.748,13.28,-4.053,19.458,22.778,21.447,19.154,12.124,3.287,-4.396,7.896,24.33,20.216,7.608,8.396,11.507,4.936,5.567,18.126,2.109,18.455,14.057,23.753,21.119,9.239,14.052,9.427,0.737,9.209,0.761,29.687,11.43,7.984,31.02,24.182,1.261,28.589,27.374,10.775,14.926,11.398,13.587,10.05,14.165,12.675,33.02,6.25,21.778,9.288,34.775,2.863,17.246,12.537,18.311,19.797,12.732,18.142,3.623,6.65,17.895,15.572,13.01,14.207,2.503,13.162,20.669,-0.8,17.306,9.449,2.718,13.807,20.343,24.678,1.438,15.967,-2.75,26.964,7.172,5.953,13.887,2.01,3.921,6.657,0.701,5.625,13.063,4.917,8.835,-1.046,14.143,15.859,16.207,2.196,16.722,3.625,-1.361,11.418,14.363,7.204,-3.921,13.063,17.289,1.365,7.919,18.878,5.231,19.234,2.903,-6.139,-8.368,20.467,13.263,20.966,-5.049,13.798,22.884,18.484,20.186,2.718,21.043,24.743,13.595,3.865,6.232,-3.318,12.741,16.399,20.706,3.271,6.434,1.91,19.354,6.941,14.779,3.579,6.528,9.385,18.914,10.469,24.967,7.659,2.085,-5.088,3.631,10.244,17.864,21.795,13.951,8.061,11.814],[27.946,23.878,9.953,13.381,12.778,12.37,6.315,1.779,10.123,20.537,30.532,34.1,8.308,2.497,16.428,19.722,12.69,19.764,14.207,14.753,7.941,1.159,17.654,18.126,3.693,0.767,4.672,26.015,14.544,8.144,-1.533,15.162,4.225,14.188,10.374,-0.77,4.346,2.087,17.148,-7.878,1.656,8.481,12.71,13.128,-4.147,19.726,22.944,21.541,19.288,12.154,3.237,-4.382,8.006,24.296,20.317,7.666,8.576,11.821,4.952,5.393,18.115,2.075,18.365,13.788,23.454,21.386,9.1,13.766,9.481,0.595,8.775,0.093,29.719,11.442,8.185,30.981,23.631,1.235,28.621,27.352,10.749,14.955,11.484,12.899,9.846,13.979,12.412,33.148,6.104,21.871,9.712,34.523,3.0,17.213,12.946,19.115,19.162,12.656,18.328,3.493,6.794,17.938,15.676,12.929,14.649,2.761,13.265,20.881,-0.915,17.447,9.078,2.919,13.685,20.19,24.723,1.197,15.878,-2.67,27.578,7.204,5.986,13.703,1.904,3.822,6.393,0.546,5.81,13.293,4.801,8.664,-0.728,13.989,15.558,16.028,2.453,15.899,3.478,-0.982,10.935,14.34,7.44,-4.812,13.394,17.327,1.732,8.12,19.024,4.853,19.322,2.638,-6.086,-8.151,20.831,13.123,21.134,-5.465,13.304,22.931,18.417,20.223,2.462,21.026,24.986,13.436,3.453,6.453,-3.179,13.083,16.809,20.605,2.646,6.457,1.693,19.648,6.842,15.155,3.692,6.088,9.465,18.321,10.615,24.772,7.553,2.599,-4.925,3.741,10.306,17.613,21.865,13.012,8.204,11.158],[27.82,23.67,9.757,13.658,12.653,12.273,6.211,1.591,9.968,20.645,30.449,34.177,8.512,2.596,16.687,19.532,12.526,19.766,14.206,14.632,7.808,0.904,17.629,18.249,3.749,0.73,4.512,26.245,14.442,7.91,-1.228,15.23,4.455,14.245,10.113,-0.672,4.281,2.368,17.057,-7.788,1.595,8.629,12.832,13.101,-4.35,19.852,23.069,21.418,19.423,12.318,3.072,-4.506,8.051,24.296,20.294,7.732,8.704,11.984,4.88,5.422,18.109,2.012,18.464,13.469,23.529,21.072,9.178,13.263,8.898,0.787,9.03,-0.044,29.361,12.085,8.038,30.968,23.243,1.353,28.681,27.454,10.577,15.046,11.611,12.378,10.221,13.456,13.07,33.076,5.772,22.357,10.053,34.799,3.195,17.451,12.769,18.777,18.927,12.533,18.364,3.539,6.765,17.931,15.787,12.631,14.52,2.128,13.317,21.266,-0.831,17.634,9.054,2.998,13.638,20.169,25.157,0.958,15.92,-2.662,27.614,6.692,5.832,14.034,2.279,3.914,6.225,0.755,5.623,13.438,5.313,8.301,-0.671,14.453,15.99,16.054,2.708,16.253,3.73,-1.009,10.723,14.045,8.196,-4.896,13.282,17.902,1.538,7.865,19.653,4.652,19.381,2.349,-6.141,-7.469,20.53,13.326,21.182,-5.692,13.232,23.268,18.725,19.735,1.888,21.103,24.784,13.627,3.824,6.555,-3.826,12.665,16.467,21.078,2.904,6.248,1.827,19.95,6.795,15.264,3.911,6.45,9.505,17.917,10.856,24.751,7.878,2.365,-4.266,3.582,10.522,18.012,21.5,13.02,8.447,10.868],[27.698,23.548,9.697,13.782,12.517,12.301,6.153,1.502,9.82,20.521,30.307,34.362,8.474,2.753,17.05,19.326,12.425,19.703,14.158,14.314,7.617,0.57,17.694,18.382,3.932,0.725,4.393,26.527,14.302,7.759,-1.125,15.192,4.73,14.373,9.73,-0.582,4.133,2.669,17.08,-7.543,1.603,8.662,13.026,13.15,-4.537,19.815,23.206,21.136,19.498,12.602,2.979,-4.618,8.109,24.253,20.228,7.747,8.711,12.052,4.878,5.456,18.171,2.039,18.625,13.267,23.493,21.172,9.523,13.501,9.197,0.966,9.605,0.384,29.24,12.345,7.778,31.0,23.74,0.695,28.375,27.411,10.506,15.371,11.052,12.389,9.865,13.138,13.186,32.899,5.913,22.024,9.768,35.131,3.29,17.849,12.614,18.416,19.143,12.429,18.642,3.546,6.519,17.833,15.725,12.301,14.517,1.658,13.103,21.117,-0.601,17.479,9.009,2.773,13.783,20.506,25.352,0.82,16.057,-2.453,27.52,6.489,5.813,14.458,2.248,3.281,6.277,1.017,5.887,13.48,5.813,8.259,-0.299,14.992,16.38,15.988,2.672,16.438,3.846,-1.301,10.763,14.043,8.938,-4.487,12.603,18.052,1.56,8.325,19.603,5.195,19.315,2.323,-6.077,-7.891,20.585,13.807,21.44,-6.378,13.749,23.183,19.057,19.41,2.555,21.442,24.631,13.589,3.302,6.387,-4.437,12.652,16.303,21.259,3.098,6.069,1.873,19.927,7.181,15.008,3.844,6.704,9.373,18.637,10.826,24.969,7.795,1.868,-4.638,3.543,10.579,18.376,21.52,13.272,8.232,10.678],[27.478,23.533,9.598,13.895,12.329,12.335,6.209,1.389,9.802,20.327,30.08,34.583,8.307,2.81,17.337,19.13,12.45,19.573,14.149,13.986,7.397,0.468,17.744,18.459,4.215,0.864,4.26,26.682,14.224,7.742,-1.123,15.2,4.987,14.45,9.487,-0.695,4.05,2.954,17.054,-7.427,1.772,8.725,13.278,13.187,-4.832,19.777,23.331,21.073,19.288,12.756,2.989,-4.765,8.072,24.171,20.248,7.731,8.552,12.113,4.836,5.494,18.282,2.049,18.75,13.185,23.557,21.29,9.261,13.903,9.661,0.933,9.247,1.227,29.266,12.005,7.275,31.076,24.025,0.444,28.361,27.281,10.602,15.653,11.384,12.798,9.108,13.338,12.984,33.102,6.068,21.804,9.498,35.012,3.312,17.834,12.794,18.954,19.336,12.612,19.042,3.825,6.144,17.769,15.661,12.258,14.616,1.992,13.005,20.566,-0.802,17.783,9.098,2.783,13.666,20.447,25.474,0.742,16.159,-2.257,27.861,6.484,5.714,14.272,2.107,3.584,6.214,1.102,6.584,13.365,5.538,7.679,0.399,14.803,16.21,16.007,2.735,15.738,3.806,-1.232,10.711,14.655,9.172,-3.873,12.832,17.583,1.657,8.347,18.837,5.206,19.524,2.573,-5.834,-7.554,20.632,14.211,21.211,-6.561,13.816,23.096,18.639,19.533,2.926,21.559,24.402,14.056,3.423,6.481,-3.777,12.719,16.63,20.96,3.166,6.077,1.822,20.064,7.822,14.593,4.249,6.625,9.223,19.399,11.125,24.866,7.423,2.176,-5.145,3.726,10.176,18.388,21.503,13.288,8.204,10.715],[27.427,23.653,9.561,13.886,12.169,12.314,6.266,1.374,9.881,20.405,29.851,34.743,8.151,2.742,17.22,18.943,12.515,19.336,14.202,13.756,7.239,0.562,17.759,18.637,4.532,0.944,4.136,26.677,14.199,7.905,-0.982,15.18,5.141,14.353,9.351,-0.932,3.984,3.084,16.821,-7.323,1.975,8.932,13.609,13.234,-5.078,19.918,23.399,21.243,18.915,12.782,3.153,-4.734,7.982,24.081,20.296,7.761,8.346,12.214,4.683,5.59,18.386,2.074,18.862,13.179,23.606,20.702,9.045,14.876,9.38,0.904,8.748,1.336,28.947,12.063,7.942,30.878,23.668,0.218,28.12,27.111,10.593,15.42,11.161,12.968,9.275,13.789,12.957,33.613,6.175,22.236,9.746,34.891,3.005,17.53,12.883,19.311,18.97,12.575,18.982,4.199,6.21,17.72,15.817,12.432,13.741,1.826,13.247,20.518,-0.867,18.207,8.983,3.342,13.636,20.255,25.396,1.062,16.169,-2.004,27.676,6.212,5.683,13.588,2.234,3.654,6.229,0.729,6.744,13.408,5.372,7.525,0.741,14.107,15.782,16.206,3.46,15.89,4.099,-1.232,9.864,14.906,9.434,-4.003,13.757,17.157,2.334,7.732,18.476,4.992,20.057,2.789,-5.541,-7.226,20.3,14.099,20.608,-6.762,13.186,23.306,18.825,19.804,2.745,21.565,24.092,14.325,3.844,6.588,-3.825,12.597,16.863,20.95,3.045,6.43,1.847,19.996,7.796,14.473,4.193,6.599,9.503,19.118,11.456,24.443,7.363,2.357,-4.953,3.757,9.798,18.076,21.585,13.231,8.086,10.692],[27.491,23.851,9.46,13.962,12.157,12.235,6.365,1.387,9.996,20.624,29.666,34.796,8.199,2.617,16.955,18.778,12.445,19.074,14.204,13.692,7.144,0.607,17.779,18.88,4.704,0.936,4.139,26.526,14.186,8.145,-0.718,15.067,5.183,14.114,9.376,-1.164,3.887,3.237,16.709,-7.152,2.12,9.116,13.825,13.288,-5.264,20.187,23.388,21.329,18.528,12.856,3.417,-4.64,7.997,23.925,20.297,7.873,8.169,12.216,4.486,5.682,18.36,2.06,18.911,13.107,23.394,20.442,9.201,14.785,9.086,0.828,8.82,0.618,29.041,12.175,8.086,30.475,24.008,0.3,27.682,27.292,10.496,15.15,11.112,12.629,9.457,13.574,12.923,33.921,6.401,22.476,9.775,35.482,2.76,17.237,13.052,19.217,18.626,12.295,18.703,4.599,6.041,17.446,15.816,13.111,13.61,1.531,13.237,20.601,-0.612,18.277,8.862,4.089,13.102,19.965,25.38,0.99,16.039,-2.096,27.845,6.021,5.752,13.145,2.247,3.454,6.691,0.42,6.686,13.334,5.549,7.655,0.712,13.9,15.933,15.986,3.469,15.752,3.751,-1.236,9.087,14.653,9.101,-4.53,13.863,17.491,3.047,8.705,18.328,5.456,19.885,2.453,-5.711,-7.352,20.37,14.318,20.365,-6.925,13.108,23.467,19.035,19.876,3.14,21.679,24.475,13.902,3.988,6.372,-4.287,13.289,17.028,20.786,2.963,6.609,2.103,20.326,7.477,14.678,3.671,6.347,9.673,18.976,11.074,24.136,7.553,2.595,-4.581,3.861,9.738,18.225,21.667,13.195,7.623,10.968],[27.449,24.074,9.219,14.025,12.103,12.063,6.452,1.325,10.193,20.795,29.524,34.82,8.387,2.53,16.667,18.695,12.404,18.796,14.215,13.641,7.139,0.447,17.85,19.015,4.65,1.042,4.348,26.417,14.113,8.413,-0.647,14.952,5.191,13.96,9.602,-1.389,3.871,3.468,16.82,-7.139,2.198,9.237,13.939,13.299,-5.375,20.293,23.361,21.309,18.288,12.845,3.682,-4.722,8.031,23.794,20.228,8.007,8.003,12.288,4.33,5.787,18.376,1.96,19.007,13.046,23.632,21.025,9.481,15.086,9.273,0.624,9.466,0.132,29.236,12.477,8.135,30.253,24.166,0.536,27.724,27.078,10.32,15.221,10.961,12.624,9.495,13.547,12.746,33.936,6.391,22.52,9.584,35.399,2.921,17.496,12.574,19.353,18.147,12.522,18.476,4.777,6.026,17.219,15.645,12.433,14.277,1.915,13.114,20.431,-0.55,18.046,8.759,4.33,13.707,20.042,25.315,0.819,16.096,-2.273,27.769,6.023,5.624,13.325,2.238,3.544,7.239,0.396,6.818,13.312,5.798,8.084,0.721,13.834,16.126,15.658,2.715,15.563,3.491,-1.352,9.49,14.89,8.775,-5.346,13.227,17.55,3.384,8.687,17.922,5.402,19.211,2.214,-5.831,-6.946,20.684,14.512,20.039,-6.954,13.749,23.486,19.171,20.011,3.527,21.482,24.616,13.897,4.182,6.372,-3.659,13.428,16.838,20.409,3.141,6.654,1.824,20.363,7.525,14.754,3.356,6.045,9.735,19.469,10.985,24.419,7.626,2.463,-4.844,4.025,9.851,18.31,21.423,12.88,7.447,10.916],[27.359,24.235,9.053,14.148,12.146,11.918,6.441,1.084,10.347,20.972,29.529,34.786,8.498,2.467,16.586,18.74,12.387,18.588,14.211,13.693,7.21,0.224,17.881,18.979,4.56,1.196,4.6,26.298,14.043,8.653,-0.756,14.967,5.409,13.992,9.98,-1.532,3.946,3.676,16.984,-7.256,2.224,9.25,14.029,13.253,-5.59,20.203,23.332,21.291,18.125,12.887,3.806,-4.928,8.126,23.808,20.049,8.111,7.965,12.375,4.116,5.912,18.297,1.856,19.26,12.878,24.123,21.436,9.727,15.208,9.909,0.673,9.609,0.624,28.934,12.452,8.224,30.506,24.36,0.608,27.795,26.859,10.092,14.83,10.608,12.267,9.257,13.484,12.358,33.854,6.098,22.71,9.628,35.303,3.079,17.273,12.503,19.574,18.178,12.338,18.45,4.492,6.393,17.072,15.426,11.671,14.77,1.51,13.146,20.317,-0.448,17.991,8.984,3.829,13.902,20.024,25.05,0.652,16.23,-2.204,27.426,6.12,5.865,13.232,2.504,3.425,7.519,0.243,6.902,13.659,5.88,8.231,0.692,13.487,16.179,15.553,2.503,15.868,3.657,-2.035,10.155,15.308,8.984,-5.641,13.499,17.576,3.804,7.871,17.993,5.285,19.779,2.793,-5.531,-7.439,20.536,14.408,19.738,-6.829,13.749,23.216,19.271,19.765,2.966,21.653,24.176,14.052,3.892,6.711,-3.605,12.534,16.566,20.711,2.89,6.839,1.406,19.781,7.997,14.639,3.273,6.013,9.867,19.795,11.37,24.809,7.329,2.401,-5.244,4.037,9.694,18.336,21.358,13.385,7.774,10.741],[27.308,24.421,9.13,14.287,12.214,11.8,6.241,0.892,10.421,21.081,29.641,34.716,8.396,2.439,16.661,18.863,12.156,18.512,14.278,13.801,7.273,0.066,17.951,18.906,4.534,1.323,4.803,26.117,14.03,8.854,-0.824,15.126,5.626,14.039,10.091,-1.617,4.05,3.915,17.213,-7.482,2.305,9.186,14.134,13.205,-5.898,20.272,23.301,21.145,18.009,13.011,3.727,-5.195,8.257,23.978,19.977,8.252,8.027,12.352,3.776,6.015,18.048,1.638,19.458,12.708,23.963,21.119,9.527,14.753,10.341,0.504,9.099,1.07,28.621,12.483,7.791,30.352,24.447,-0.161,27.793,27.15,10.204,14.89,10.647,11.643,8.997,13.814,12.179,33.923,6.531,22.839,9.925,35.464,2.788,16.87,12.865,19.046,18.631,12.323,18.56,4.132,6.164,16.864,15.643,12.568,14.427,0.478,12.951,20.61,-0.246,17.921,9.475,3.458,13.327,19.629,25.053,0.67,16.124,-2.311,27.511,6.385,6.186,13.153,2.512,3.888,7.705,0.29,7.007,13.804,5.99,8.181,0.474,13.504,16.649,15.637,3.229,15.806,3.962,-2.208,10.801,15.312,8.932,-5.068,13.84,17.915,3.882,8.363,18.128,5.572,19.737,3.208,-5.921,-7.805,20.568,14.346,19.08,-7.05,13.503,22.966,19.156,19.432,2.934,21.665,24.173,14.347,4.475,6.829,-4.53,12.434,16.348,20.674,2.627,6.872,1.409,19.628,8.44,14.399,3.615,5.478,9.996,19.799,11.42,24.528,7.554,2.773,-4.746,4.419,9.485,18.045,21.433,13.33,7.557,10.683],[27.361,24.565,9.298,14.25,12.197,11.841,6.07,0.8,10.279,20.992,29.728,34.614,8.191,2.331,16.859,19.131,11.956,18.453,14.508,13.85,7.396,-0.029,18.059,18.783,4.579,1.378,4.966,25.999,14.016,9.067,-0.948,15.372,5.716,14.06,9.962,-1.673,4.191,4.25,17.369,-7.686,2.438,9.164,14.256,13.172,-6.2,20.357,23.251,20.976,17.873,13.185,3.682,-5.431,8.361,24.209,19.968,8.393,8.066,12.337,3.443,6.213,17.782,1.553,19.451,12.663,23.986,20.989,10.021,14.951,9.971,0.466,9.24,0.545,28.741,12.457,7.728,30.534,24.642,0.108,27.748,26.819,9.861,15.051,11.15,11.285,9.139,13.943,12.522,33.918,5.854,22.72,9.42,35.58,2.63,16.895,12.986,18.574,18.862,12.079,19.032,3.742,6.126,16.738,16.026,12.371,13.384,-0.029,12.787,20.867,-0.371,17.814,9.345,3.971,13.731,19.667,25.05,0.526,16.315,-2.536,27.347,6.375,6.22,13.473,2.472,4.183,7.778,0.094,7.323,14.005,6.035,8.269,0.396,13.808,16.84,15.841,3.935,16.284,4.094,-1.718,10.881,15.319,9.092,-4.553,13.566,18.034,3.466,8.389,17.477,5.407,19.258,2.852,-5.949,-7.442,20.517,14.298,18.579,-7.378,13.654,23.349,19.238,19.53,3.697,21.433,24.744,14.233,4.761,6.746,-4.454,12.424,16.235,20.385,1.889,6.853,1.15,20.275,8.31,14.183,3.368,4.773,10.106,19.75,11.216,24.532,8.303,2.786,-5.483,4.382,9.116,17.845,21.555,12.683,7.105,10.521],[27.433,24.647,9.594,13.996,11.983,11.995,5.845,0.774,10.082,20.941,29.794,34.556,8.076,2.202,17.06,19.402,11.753,18.413,14.675,13.912,7.494,-0.172,18.18,18.603,4.66,1.348,4.974,25.926,13.99,9.196,-1.105,15.651,5.793,14.083,9.932,-1.756,4.254,4.563,17.33,-7.539,2.505,9.314,14.35,13.143,-6.417,20.336,23.246,21.111,17.703,13.275,3.823,-5.571,8.524,24.454,19.977,8.395,7.915,12.234,3.138,6.313,17.616,1.459,19.438,12.463,24.224,20.923,9.524,15.057,9.394,0.462,9.039,0.122,28.961,12.174,7.707,30.657,24.923,0.346,28.071,26.682,10.125,15.443,11.296,11.078,9.472,13.462,13.017,33.75,5.713,22.727,9.377,35.457,2.839,17.412,13.526,18.804,19.124,11.979,19.567,3.999,6.467,16.996,16.49,11.606,13.45,0.32,12.943,21.311,-0.45,17.88,8.946,4.409,13.96,19.637,24.665,0.535,16.741,-2.63,27.223,6.241,6.417,13.25,2.705,4.24,7.686,-0.101,7.434,14.164,5.867,8.147,0.058,13.91,16.692,15.651,4.305,16.925,4.319,-1.495,10.09,15.182,9.105,-4.801,13.249,17.938,2.911,8.521,16.668,5.584,19.08,2.49,-5.907,-7.563,20.298,14.67,18.386,-7.527,13.733,23.653,19.226,19.652,3.714,21.493,25.11,13.748,4.083,6.664,-4.138,12.694,15.868,20.546,1.951,6.943,0.574,20.786,7.968,13.758,2.547,4.1,10.244,19.258,11.671,25.134,8.39,2.4,-5.821,4.457,9.169,17.982,21.375,13.242,7.319,10.616],[27.421,24.713,9.757,13.729,11.764,12.153,5.637,0.738,9.783,21.155,29.919,34.481,8.202,2.2,17.292,19.593,11.532,18.474,14.778,14.143,7.524,-0.225,18.265,18.633,4.801,1.361,4.879,25.946,13.923,9.129,-1.208,15.75,5.723,13.934,9.909,-1.832,4.303,4.688,17.378,-7.404,2.334,9.531,14.452,13.119,-6.668,20.155,23.251,21.253,17.516,13.369,3.834,-5.43,8.533,24.734,19.99,8.25,7.83,12.174,2.838,6.338,17.56,1.379,19.473,12.168,24.322,21.022,9.054,14.71,9.255,0.274,9.159,0.604,28.908,12.224,7.08,30.723,25.056,0.127,28.005,26.978,10.799,15.455,11.573,10.451,9.583,13.385,13.448,33.948,6.424,22.986,9.501,34.69,2.76,17.619,14.04,18.877,19.125,11.83,19.631,4.86,6.839,16.999,16.597,11.797,14.457,1.233,13.05,21.293,-0.165,17.749,9.311,3.888,13.762,19.515,24.68,0.136,16.944,-2.946,27.209,6.305,5.809,13.257,2.69,3.906,7.339,-0.191,7.263,14.102,6.087,8.083,-0.094,14.22,16.946,15.561,4.441,16.112,4.547,-1.859,9.519,15.137,9.524,-5.168,13.113,17.343,3.268,8.549,16.847,5.905,19.157,2.862,-6.021,-7.308,20.576,15.108,18.382,-7.483,13.641,23.456,19.489,19.758,3.443,21.352,24.613,14.14,4.401,7.026,-4.147,13.1,15.942,20.603,1.905,7.211,0.144,20.613,7.938,12.937,2.312,3.823,10.075,19.309,11.488,25.095,7.973,3.024,-5.629,4.712,9.429,17.661,21.546,13.517,7.24,10.925],[27.325,24.773,9.841,13.674,11.654,12.378,5.669,0.695,9.387,21.451,29.951,34.429,8.225,2.361,17.32,19.607,11.458,18.489,14.956,14.469,7.632,-0.089,18.386,18.804,4.993,1.373,4.73,25.992,13.871,8.972,-1.308,15.689,5.684,13.824,9.869,-1.907,4.446,4.786,17.248,-7.428,2.097,9.567,14.646,13.074,-6.797,20.043,23.179,21.224,17.362,13.461,3.957,-5.155,8.35,24.961,20.05,8.044,7.891,12.131,2.53,6.536,17.565,1.232,19.538,11.767,24.611,21.628,9.408,14.357,9.375,0.412,9.316,0.538,28.867,12.016,7.206,30.727,24.95,0.329,28.228,26.726,10.81,15.565,11.639,10.343,9.686,13.354,13.455,33.553,6.099,23.109,9.218,34.756,2.639,18.172,13.906,18.92,18.997,11.606,19.274,4.863,6.573,16.857,16.627,11.733,15.269,1.532,12.794,21.519,-0.226,17.954,9.688,3.396,14.261,19.456,24.554,-0.082,16.55,-3.033,27.132,6.526,6.018,13.719,2.675,3.43,7.239,0.033,7.267,13.953,5.725,8.286,-0.073,13.514,16.776,15.615,4.176,15.933,4.507,-2.14,9.54,15.57,9.631,-5.971,13.036,18.078,3.947,8.706,16.861,5.643,19.643,2.957,-5.563,-7.144,20.577,15.268,18.617,-7.699,13.376,23.133,19.021,19.857,3.238,21.563,24.204,14.801,4.947,7.139,-4.135,12.993,15.881,20.45,2.072,7.367,0.153,20.423,7.947,12.118,2.692,3.345,9.796,19.984,11.971,25.323,7.304,2.917,-5.379,4.614,9.105,17.477,21.554,12.947,7.04,11.297],[27.158,24.859,9.997,13.717,11.742,12.579,5.831,0.692,9.217,21.522,29.859,34.4,8.13,2.47,17.2,19.588,11.445,18.546,14.994,14.73,7.67,0.143,18.436,18.883,4.994,1.345,4.623,25.924,13.896,8.778,-1.362,15.509,5.691,13.894,9.998,-1.858,4.539,4.864,17.224,-7.437,2.074,9.473,14.925,12.952,-6.844,20.118,23.204,21.153,17.345,13.712,4.06,-4.857,8.147,25.044,20.162,7.896,7.884,12.084,2.303,6.637,17.558,1.095,19.628,11.324,24.306,21.726,9.097,13.792,8.884,0.809,9.124,0.269,28.87,12.545,7.595,30.511,24.687,-0.016,27.993,26.304,10.867,15.591,11.792,10.547,9.731,13.215,13.104,33.405,5.832,22.937,9.277,35.204,2.923,18.58,13.622,18.789,19.018,11.708,18.836,4.448,6.224,16.827,16.595,11.359,15.58,1.177,12.779,21.45,-0.376,18.067,10.014,3.663,14.679,19.313,24.949,-0.054,16.7,-2.852,27.419,6.97,5.734,13.774,2.569,3.674,7.136,-0.06,7.439,13.846,5.651,8.348,-0.075,12.829,16.724,15.478,3.879,16.431,4.476,-2.303,9.645,15.883,9.416,-6.498,12.933,17.985,4.757,8.874,16.432,5.656,19.774,2.465,-5.789,-7.461,20.417,15.066,18.95,-7.646,13.669,22.684,18.66,19.696,3.407,21.702,24.656,14.98,4.563,6.818,-4.175,12.167,15.907,20.622,1.804,7.274,0.177,20.505,7.344,11.651,3.036,3.32,9.665,19.831,12.234,25.215,7.348,3.222,-5.02,4.97,8.816,17.801,21.781,12.69,7.129,11.092],[26.874,24.819,10.222,13.723,11.938,12.689,6.007,0.641,9.22,21.405,29.605,34.392,8.031,2.53,17.05,19.632,11.373,18.574,14.8,15.086,7.758,0.236,18.529,18.847,4.957,1.249,4.588,25.935,13.951,8.566,-1.354,15.288,5.7,13.866,10.183,-1.772,4.58,4.943,17.324,-7.471,2.139,9.417,15.188,12.812,-6.888,20.202,23.257,21.109,17.461,13.936,3.958,-4.61,8.066,25.06,20.303,7.738,7.601,11.94,2.244,6.536,17.707,1.064,19.619,11.125,24.435,21.412,8.776,13.778,8.187,0.638,8.816,0.633,28.47,12.606,7.26,30.466,25.371,-0.155,27.861,26.6,11.026,15.484,12.093,10.637,9.812,13.64,13.155,33.66,6.2,22.993,9.252,35.005,2.947,18.282,14.063,18.707,18.953,12.134,18.317,4.136,6.613,16.888,16.718,11.237,15.633,1.337,12.813,21.508,-0.4,17.637,9.87,4.219,14.52,19.309,24.977,0.708,16.722,-2.865,27.565,6.664,5.448,13.494,2.264,3.288,6.992,0.123,7.206,13.66,6.175,8.331,0.007,13.373,16.59,15.694,3.863,16.47,4.705,-2.069,9.739,15.62,9.482,-6.575,13.107,17.718,5.512,8.662,16.57,5.95,19.669,2.353,-5.919,-7.365,20.476,15.19,18.772,-7.401,13.313,22.706,19.089,19.539,3.43,21.586,24.904,14.629,4.563,6.684,-3.49,12.706,15.832,20.884,0.889,7.371,-0.247,20.556,7.33,11.967,2.799,3.02,9.543,19.573,12.219,25.064,7.351,3.166,-5.059,4.677,8.99,18.138,21.713,12.206,7.104,10.885],[26.661,24.954,10.555,13.758,12.117,12.726,6.221,0.668,9.183,21.242,29.307,34.322,7.902,2.487,16.926,19.738,11.333,18.621,14.662,15.431,7.871,0.256,18.467,18.728,4.994,1.16,4.584,26.006,13.908,8.43,-1.339,15.085,5.722,14.005,10.218,-1.601,4.732,5.048,17.283,-7.382,2.091,9.338,15.304,12.651,-6.972,20.3,23.216,21.149,17.557,13.89,3.767,-4.501,8.044,24.991,20.286,7.624,7.111,11.945,2.231,6.27,17.928,0.824,19.544,11.227,24.491,21.46,9.083,13.466,8.839,0.763,8.805,0.425,28.387,12.128,7.612,29.906,24.988,0.223,27.458,26.664,11.158,15.106,12.269,10.873,10.4,13.794,13.435,33.346,6.624,22.999,9.177,34.613,2.688,17.665,14.162,18.967,19.039,12.336,18.468,4.202,7.076,17.02,16.477,11.124,15.641,1.288,13.146,21.636,-0.621,17.272,9.266,4.996,15.174,19.236,24.645,1.172,16.986,-2.962,27.321,6.362,5.667,13.53,2.351,3.404,6.651,0.072,7.342,13.458,6.111,8.539,-0.183,14.18,16.164,15.807,4.163,16.287,4.522,-1.424,9.965,15.731,9.466,-5.976,13.057,18.181,5.889,8.811,17.172,5.665,19.645,2.888,-5.522,-7.213,20.685,15.247,18.937,-7.358,13.053,23.45,19.329,19.853,3.246,21.488,24.995,14.619,4.612,7.078,-3.138,12.633,16.133,20.91,1.116,6.934,-0.717,20.706,7.384,12.248,1.96,2.813,9.405,19.7,12.061,25.422,6.919,2.754,-4.449,4.336,8.589,18.511,21.639,12.441,6.827,10.635],[26.463,25.026,10.903,13.675,12.156,12.733,6.41,0.728,9.392,21.1,28.926,34.115,7.736,2.426,16.77,19.853,11.401,18.757,14.591,15.759,8.035,0.145,18.426,18.532,5.146,1.079,4.665,26.134,13.892,8.303,-1.348,14.863,5.63,14.206,10.226,-1.376,4.873,5.155,17.245,-7.094,1.929,9.331,15.339,12.536,-6.951,20.287,23.162,21.309,17.719,13.725,3.544,-4.354,8.087,24.901,20.231,7.495,6.911,12.029,2.208,6.045,18.207,0.559,19.599,11.456,24.35,21.708,9.059,13.253,8.732,0.662,8.933,0.303,28.192,12.267,7.896,29.866,24.804,0.226,26.929,25.816,10.985,15.049,12.688,11.456,10.751,13.854,13.137,33.146,6.526,22.659,8.886,34.542,2.503,17.418,13.491,19.183,19.493,11.805,18.721,4.553,6.824,16.963,16.265,11.521,15.853,1.009,12.819,21.661,-0.446,17.646,8.804,5.04,15.417,19.088,24.724,0.93,17.027,-2.919,27.585,7.067,5.651,13.872,2.546,3.427,6.528,0.27,7.304,13.056,5.861,8.453,-0.438,14.405,15.823,16.077,4.311,16.44,4.283,-1.588,10.572,16.175,9.638,-5.514,12.807,17.824,6.489,8.875,17.47,5.803,20.064,2.869,-5.514,-7.001,20.886,15.147,18.655,-7.479,13.093,23.72,19.525,19.829,3.156,21.319,25.118,14.749,4.09,7.089,-3.763,12.149,16.616,21.069,1.234,6.587,-1.25,20.416,6.923,11.467,1.813,2.386,9.367,19.381,12.133,25.537,7.209,3.478,-3.872,4.404,8.288,18.677,21.635,13.11,6.277,10.706],[26.115,24.811,11.13,13.625,12.215,12.618,6.472,0.657,9.687,20.999,28.672,33.898,7.586,2.367,16.697,19.987,11.387,18.861,14.33,16.117,8.185,-0.04,18.505,18.308,5.405,1.101,4.691,26.343,13.953,8.175,-1.379,14.67,5.423,14.359,10.308,-1.232,4.989,5.244,17.277,-6.923,1.614,9.387,15.625,12.466,-6.789,20.277,23.067,21.395,17.927,13.567,3.409,-4.099,8.241,24.961,20.369,7.425,6.83,12.041,2.105,5.998,18.448,0.283,19.567,11.432,24.702,21.339,8.769,12.866,8.704,0.529,8.484,0.49,27.7,12.751,7.963,29.708,25.254,-0.087,26.926,26.033,10.779,15.006,12.969,11.175,10.719,13.985,13.119,33.272,6.427,22.364,9.001,34.834,2.644,17.429,13.197,18.692,19.287,11.975,19.026,4.847,6.674,17.19,16.109,12.129,16.071,1.249,12.334,21.895,-0.353,18.141,8.518,4.616,14.668,19.25,25.049,0.154,16.7,-2.86,27.787,7.682,5.75,13.864,2.461,3.155,6.31,0.687,6.828,12.857,6.082,8.445,-0.304,14.163,15.604,16.065,4.359,16.612,4.684,-1.412,11.018,16.267,9.965,-5.407,12.762,17.496,6.818,8.894,16.888,5.953,19.712,2.248,-5.246,-6.829,20.745,15.203,18.222,-7.511,13.001,23.04,19.476,19.984,3.1,21.417,24.955,14.822,4.012,7.133,-3.631,12.542,16.908,21.341,1.187,6.853,-1.497,20.13,6.808,11.492,2.513,2.455,9.235,20.227,11.973,25.156,6.913,2.889,-4.144,4.126,8.358,19.052,21.653,13.009,6.403,10.822],[25.948,24.742,11.197,13.597,12.232,12.523,6.54,0.382,9.829,20.874,28.653,33.768,7.606,2.371,16.777,19.939,11.379,18.926,14.005,16.351,8.286,-0.151,18.53,18.168,5.649,1.241,4.479,26.547,13.974,7.977,-1.311,14.618,5.282,14.28,10.497,-1.271,5.143,5.298,17.259,-6.897,1.217,9.406,16.058,12.507,-6.595,20.128,22.924,21.407,18.001,13.381,3.5,-3.908,8.225,25.012,20.791,7.346,6.713,12.008,2.112,6.142,18.64,-0.028,19.53,11.235,23.719,21.19,9.122,13.383,8.95,0.869,8.369,-0.086,27.565,13.054,8.279,29.483,24.956,0.003,26.822,26.079,10.862,15.063,12.953,11.14,10.852,13.931,13.176,32.911,6.567,22.664,9.033,34.786,2.242,17.381,12.923,18.452,19.3,12.462,19.698,4.514,7.075,17.441,15.767,11.715,16.065,0.712,12.588,21.784,-0.472,17.191,8.563,5.191,14.947,19.621,25.442,-0.303,16.796,-2.707,27.835,7.098,5.586,13.67,2.387,3.418,6.289,0.49,6.833,12.956,5.773,8.822,0.107,14.108,15.691,16.173,4.378,17.291,5.176,-1.593,11.05,16.136,9.946,-5.415,12.47,18.094,6.85,9.248,16.882,5.7,19.476,1.536,-5.239,-6.785,20.493,15.802,18.024,-7.401,12.976,22.764,19.532,20.062,2.719,21.601,25.321,14.61,3.925,7.572,-3.448,13.258,16.824,21.232,1.13,6.745,-1.759,20.147,6.911,12.026,2.811,2.463,9.201,20.159,11.709,25.053,6.789,2.721,-4.262,4.186,8.368,19.125,22.031,12.628,6.437,11.174],[25.936,24.628,11.151,13.695,12.387,12.566,6.733,0.095,9.857,20.8,28.651,33.761,7.617,2.475,16.919,19.605,11.36,18.975,13.731,16.569,8.232,-0.238,18.657,18.018,5.933,1.302,4.243,26.62,13.964,7.774,-0.996,14.733,5.205,14.303,10.745,-1.505,5.221,5.387,17.39,-6.906,0.842,9.431,16.359,12.593,-6.526,19.898,22.772,21.309,17.866,13.132,3.64,-3.939,8.191,25.059,21.027,7.219,6.625,12.019,2.197,6.301,18.667,-0.21,19.423,11.144,24.3,20.748,9.387,14.114,9.532,0.782,8.671,-0.213,27.355,12.807,8.391,29.518,25.035,-0.296,27.027,25.811,10.839,15.226,12.72,11.031,11.023,13.782,13.351,32.496,6.82,22.548,8.864,34.429,1.849,17.842,12.761,18.413,19.328,12.368,19.879,4.561,7.19,17.346,15.465,11.268,15.845,-0.019,13.34,21.429,-0.303,17.125,8.91,5.805,15.395,19.374,25.277,0.026,16.927,-2.299,28.323,7.065,5.457,13.57,2.553,3.133,6.062,0.276,6.999,13.358,5.436,8.954,0.304,13.625,15.952,16.135,3.997,17.069,5.152,-1.848,10.808,16.357,9.726,-5.259,12.218,18.569,7.032,9.246,17.87,5.968,19.485,1.442,-5.177,-6.868,20.758,16.049,18.34,-7.199,13.168,22.909,19.589,19.922,2.407,21.131,25.659,14.418,4.276,7.191,-3.32,13.06,16.92,22.0,0.327,6.766,-1.965,19.818,6.89,11.528,2.622,2.852,9.095,19.878,11.503,25.716,7.1,3.207,-3.78,4.49,8.159,18.899,22.241,12.549,5.894,11.73],[25.808,24.67,11.024,13.9,12.557,12.638,6.994,-0.002,9.964,20.593,28.59,33.823,7.455,2.469,17.118,19.332,11.295,18.875,13.666,16.624,8.202,-0.338,18.916,17.95,6.182,1.325,4.025,26.557,14.027,7.647,-0.64,15.018,5.197,14.338,10.864,-1.653,5.204,5.486,17.606,-6.95,0.719,9.424,16.53,12.653,-6.559,19.839,22.665,21.244,17.693,12.954,3.875,-4.013,8.114,25.224,21.064,7.175,6.533,12.071,2.318,6.37,18.626,-0.356,19.208,11.116,23.969,20.697,8.922,13.809,9.104,0.686,8.58,-0.277,27.494,12.784,8.566,29.657,24.652,-0.12,26.85,26.287,10.942,15.545,12.554,10.999,11.36,14.082,13.684,32.884,6.944,22.167,8.851,34.17,2.533,18.281,12.52,18.326,18.875,11.941,19.367,4.848,6.651,17.243,15.208,11.469,15.427,-0.28,13.392,21.212,-0.307,17.4,8.516,6.007,15.861,19.579,25.033,1.032,17.004,-2.085,27.971,7.65,5.284,13.781,2.579,2.899,5.994,0.077,6.646,13.222,5.783,8.937,0.582,13.394,16.07,16.215,4.295,16.89,5.097,-1.902,11.394,16.709,10.086,-5.402,12.768,18.544,6.851,8.58,17.933,5.871,19.414,1.433,-5.274,-6.972,20.612,15.597,18.86,-7.236,13.07,23.051,19.398,19.835,2.056,20.944,25.806,14.245,4.504,6.817,-3.1,12.639,16.869,21.834,0.476,7.134,-2.099,19.6,6.604,11.516,2.24,3.306,8.868,19.993,11.23,26.155,7.115,2.737,-4.213,4.51,8.061,18.678,22.225,12.827,6.064,12.231],[25.847,24.736,10.877,14.033,12.719,12.732,7.112,0.083,9.863,20.401,28.46,33.958,7.307,2.489,17.332,19.245,11.166,18.767,13.624,16.464,8.149,-0.413,18.995,17.992,6.298,1.296,3.947,26.435,14.152,7.654,-0.328,15.116,5.183,14.25,11.011,-1.718,5.26,5.55,17.891,-7.094,0.708,9.374,16.559,12.725,-6.612,19.838,22.67,21.26,17.599,12.875,4.119,-4.23,7.862,25.341,20.943,7.218,6.546,12.166,2.457,6.263,18.517,-0.437,18.973,11.288,23.498,21.187,9.141,13.812,8.748,0.682,8.204,-0.076,27.166,12.899,8.758,29.347,25.025,0.367,26.667,25.831,11.196,15.566,12.502,11.502,11.093,14.288,12.897,32.866,7.283,22.001,8.765,34.481,2.694,18.136,12.561,18.306,18.356,11.758,19.691,5.239,6.581,17.197,15.383,11.838,15.23,-0.027,13.145,21.053,-0.351,17.329,7.996,6.368,15.717,19.467,24.949,1.158,17.178,-2.077,27.683,7.633,4.985,14.035,2.41,2.406,5.77,0.22,6.461,13.315,6.289,9.481,0.258,14.13,16.35,16.049,4.552,16.789,4.935,-1.793,12.098,17.061,9.976,-5.651,13.54,18.192,6.891,9.142,17.145,5.034,19.992,1.391,-5.291,-7.497,20.261,15.938,18.953,-7.306,12.843,22.601,19.08,19.919,2.348,21.066,26.365,13.991,4.3,6.603,-3.442,12.956,16.772,21.576,0.912,7.057,-2.097,19.846,6.773,11.843,2.114,3.676,8.863,19.467,11.114,25.586,6.908,3.28,-4.053,4.357,8.195,18.841,21.986,12.698,6.18,12.26],[25.841,24.742,10.699,14.107,12.812,12.663,7.134,0.215,9.803,20.399,28.299,34.087,7.181,2.589,17.356,19.316,11.018,18.743,13.591,16.056,8.127,-0.364,19.055,18.036,6.475,1.232,3.811,26.254,14.228,7.579,-0.172,15.092,5.171,14.194,11.273,-1.508,5.26,5.66,18.064,-7.325,0.864,9.358,16.563,12.892,-6.727,19.882,22.766,21.307,17.439,12.885,4.259,-4.355,7.696,25.442,20.723,7.268,6.618,12.32,2.621,6.084,18.406,-0.414,18.685,11.63,24.562,20.575,9.252,14.445,8.257,0.798,8.161,0.267,27.505,13.206,8.974,29.34,24.858,0.415,26.539,25.14,10.997,15.571,12.408,12.209,10.59,14.626,13.142,32.966,6.814,22.056,8.727,34.884,2.084,18.066,12.948,18.033,18.64,12.353,20.158,5.375,6.853,17.016,15.435,11.298,15.353,0.358,12.851,21.188,-0.557,17.846,8.52,6.528,15.409,18.826,25.252,0.142,17.325,-1.976,27.833,7.152,5.091,14.452,2.255,2.464,5.825,0.256,6.636,13.346,5.987,9.72,0.046,14.015,15.704,16.036,4.507,16.961,4.914,-2.132,11.97,17.253,9.586,-5.82,13.506,18.605,6.798,9.188,16.383,4.814,19.663,1.39,-5.688,-7.1,20.236,16.349,19.126,-7.049,12.694,22.553,19.095,20.271,2.515,21.128,26.512,13.983,4.303,6.934,-4.243,12.969,16.625,22.089,0.613,6.395,-2.053,19.817,7.401,11.652,2.436,3.877,8.837,19.438,11.127,24.897,6.702,3.188,-4.546,4.188,8.263,18.98,21.57,12.554,6.285,12.121],[25.77,24.671,10.564,14.345,12.872,12.662,7.08,0.314,9.786,20.345,28.248,34.196,7.185,2.613,17.332,19.508,10.888,18.742,13.625,15.605,8.078,-0.258,19.076,18.027,6.749,0.928,3.644,26.215,14.188,7.483,-0.21,14.956,5.156,14.198,11.45,-1.27,5.189,5.765,18.22,-7.377,1.11,9.354,16.551,13.099,-6.868,19.923,22.95,21.283,17.303,12.831,4.181,-4.547,7.876,25.325,20.583,7.379,6.663,12.433,2.829,5.935,18.292,-0.357,18.545,11.883,24.193,20.428,8.737,14.109,8.812,1.192,8.107,0.084,27.682,13.477,8.889,29.39,25.043,0.316,26.565,25.297,10.802,15.597,12.121,12.162,10.668,14.448,13.107,33.117,6.288,22.078,8.705,34.956,2.038,17.953,13.34,17.838,18.806,12.323,20.348,5.507,6.653,16.883,15.379,10.819,15.453,0.764,12.819,21.275,-0.391,17.449,8.684,6.305,14.546,19.286,25.005,-0.744,17.55,-2.027,27.902,7.262,5.179,13.902,2.402,2.268,6.114,0.682,6.731,13.044,5.604,9.726,0.514,13.06,15.697,15.722,4.646,17.258,5.031,-1.825,11.732,17.07,9.542,-5.929,12.675,18.955,6.843,8.818,16.564,5.307,18.98,1.944,-5.703,-7.125,20.097,15.906,19.063,-6.446,13.315,23.214,19.158,20.571,2.466,21.301,26.794,14.222,4.537,6.655,-3.545,12.871,16.466,21.824,0.622,6.284,-2.051,19.348,7.072,12.019,2.662,3.801,8.909,19.244,11.221,25.42,6.725,3.15,-4.606,4.225,8.356,18.747,21.492,12.91,6.187,12.147],[25.756,24.415,10.553,14.536,12.906,12.672,6.904,0.347,9.804,20.33,28.373,34.291,7.259,2.62,17.285,19.63,10.801,18.81,13.758,15.304,7.921,-0.261,19.008,17.959,7.003,0.578,3.46,26.435,14.048,7.332,-0.415,14.804,5.154,14.023,11.355,-0.966,5.139,5.905,18.398,-7.273,1.327,9.304,16.387,13.265,-6.96,19.873,23.005,21.215,17.336,12.696,4.064,-4.729,8.068,25.24,20.463,7.475,6.751,12.381,3.096,5.872,18.222,-0.174,18.506,11.975,23.656,21.002,8.635,14.243,9.088,0.978,8.357,-0.128,27.53,13.735,8.64,29.36,24.498,0.099,26.429,25.261,10.862,15.543,12.085,11.792,10.982,14.606,13.094,32.974,6.424,21.873,8.414,34.603,2.177,17.875,12.981,18.231,18.778,11.854,20.626,5.614,6.189,17.214,15.236,11.206,15.439,0.841,12.991,21.561,-0.263,17.412,8.232,6.773,13.926,19.72,24.965,-0.209,17.629,-2.039,27.903,7.669,4.475,13.348,2.295,2.166,6.49,0.697,6.615,13.058,5.954,9.866,1.024,12.865,16.023,15.778,4.683,17.15,5.417,-1.224,11.732,16.906,9.711,-5.866,13.031,18.634,7.046,9.359,16.837,6.121,19.286,2.136,-5.355,-7.661,20.247,15.863,19.008,-6.092,13.369,23.485,18.925,19.844,2.795,21.171,26.502,14.211,4.341,6.766,-3.39,13.222,16.553,21.307,0.609,6.772,-2.017,19.021,6.767,12.605,2.694,3.387,9.253,19.024,11.142,25.966,7.04,2.955,-4.786,3.942,8.365,18.459,21.83,13.497,5.903,12.786],[25.806,24.131,10.586,14.728,12.95,12.522,6.71,0.345,9.783,20.526,28.529,34.256,7.308,2.512,17.168,19.532,10.783,18.943,13.736,15.171,7.816,-0.308,19.026,18.027,7.219,0.332,3.291,26.755,13.945,7.195,-0.633,14.842,5.312,13.834,11.202,-0.728,5.26,6.028,18.339,-7.285,1.433,9.256,16.189,13.378,-6.985,19.803,22.998,21.12,17.487,12.469,3.885,-4.871,8.114,25.157,20.499,7.579,6.793,12.311,3.327,5.796,18.253,0.043,18.54,12.057,23.845,21.375,9.33,14.16,8.836,0.684,8.651,0.21,27.61,13.751,8.471,29.634,23.682,-0.089,26.557,24.969,10.934,15.544,12.011,11.518,11.154,14.255,13.53,33.158,6.724,21.753,8.197,34.803,2.217,18.244,12.599,18.224,18.933,11.687,20.525,5.96,6.19,17.242,15.513,11.579,15.652,0.843,13.253,21.45,-0.896,17.142,8.286,6.924,13.995,19.105,25.528,0.465,17.642,-1.887,27.859,7.272,4.31,13.775,1.943,1.921,6.015,1.153,6.8,13.078,6.155,9.482,0.552,13.451,15.539,15.722,4.522,17.431,5.75,-0.914,11.744,16.756,9.931,-5.727,13.709,18.537,7.457,9.212,17.488,6.182,19.63,1.968,-5.546,-7.362,20.517,15.879,18.436,-6.076,13.192,23.423,18.865,19.704,3.029,21.181,26.083,13.999,4.358,7.299,-4.028,13.103,16.671,20.934,0.871,6.771,-1.709,18.858,6.795,12.7,3.078,3.143,9.246,19.329,10.948,26.143,7.135,2.982,-5.261,4.165,8.503,18.724,22.03,13.499,6.039,13.003],[25.961,23.971,10.593,14.843,12.841,12.414,6.606,0.43,9.738,20.763,28.69,34.281,7.322,2.25,17.039,19.218,10.825,18.933,13.673,15.182,7.767,-0.197,19.142,18.105,7.155,0.194,3.31,27.022,14.026,7.19,-0.848,14.962,5.561,13.783,11.263,-0.57,5.438,6.139,18.181,-7.405,1.447,9.315,16.017,13.529,-6.958,19.709,23.056,21.115,17.729,12.326,3.712,-5.122,8.107,25.089,20.537,7.669,6.892,12.287,3.45,5.758,18.442,0.18,18.753,12.077,23.595,21.559,9.552,14.083,8.592,0.697,8.783,-0.221,27.458,13.683,8.225,29.755,24.282,0.037,26.989,25.003,10.602,15.529,12.081,11.1,10.995,14.036,13.033,32.874,6.167,22.04,8.172,34.994,2.147,17.958,12.36,18.031,19.212,11.732,20.368,5.735,6.617,17.054,15.171,11.435,15.957,0.423,13.042,20.926,-1.456,17.275,8.271,6.838,14.002,19.074,26.051,0.147,17.662,-2.217,28.251,6.825,4.444,13.849,1.284,1.765,5.582,1.354,7.157,13.099,5.786,9.65,0.391,13.143,15.534,15.277,4.775,17.088,6.119,-0.886,11.788,16.517,9.62,-5.559,13.241,18.636,7.251,8.786,17.727,6.013,19.593,2.114,-5.704,-7.131,20.21,16.03,17.984,-6.356,13.608,23.261,18.95,20.338,2.975,21.517,26.203,13.774,4.382,7.18,-4.109,12.434,16.629,21.573,1.316,6.526,-1.372,18.769,6.913,13.032,3.355,3.524,9.307,19.252,10.823,25.497,6.778,3.221,-5.051,4.034,8.609,18.928,21.739,13.024,6.308,12.81],[26.017,23.933,10.618,14.807,12.579,12.293,6.546,0.427,9.741,20.986,28.87,34.292,7.306,2.079,16.885,19.054,10.878,18.934,13.521,15.227,7.842,-0.112,19.272,18.152,6.801,0.122,3.351,27.208,14.149,7.34,-0.906,15.052,5.593,13.695,11.522,-0.717,5.634,6.163,17.968,-7.37,1.534,9.474,15.872,13.654,-6.938,19.652,23.147,21.217,17.969,12.231,3.897,-5.325,7.932,25.112,20.551,7.8,7.04,12.215,3.566,5.625,18.558,0.238,18.887,11.946,23.825,21.572,9.378,14.545,8.406,0.621,8.638,0.157,27.806,13.365,8.111,29.601,24.064,0.081,27.039,25.636,10.473,15.452,12.249,10.994,10.42,14.006,12.594,32.848,5.463,22.305,8.282,34.858,1.898,16.98,12.355,18.309,18.499,11.958,20.524,5.658,6.337,17.098,15.107,11.226,16.059,0.503,12.945,20.784,-1.632,17.551,8.259,6.864,14.075,19.24,26.065,-0.368,17.756,-2.658,28.565,6.933,4.293,13.516,1.052,2.269,5.55,1.231,7.265,13.281,5.866,9.81,0.187,12.537,16.033,15.317,4.842,16.715,6.087,-0.811,11.805,16.463,9.137,-5.544,13.379,18.869,7.268,9.148,17.924,6.271,19.594,1.958,-5.749,-7.529,20.288,16.459,17.862,-6.807,13.747,23.024,18.689,20.065,2.849,21.572,25.953,13.76,4.388,6.491,-4.157,12.284,16.82,21.867,1.271,6.224,-1.531,19.02,7.31,12.878,2.761,4.31,9.596,19.504,10.685,24.949,6.909,2.912,-5.273,3.792,8.804,18.849,21.48,13.157,6.454,12.366],[26.127,23.877,10.584,14.647,12.352,12.184,6.53,0.371,9.792,21.171,28.999,34.251,7.309,1.952,16.615,18.96,10.889,19.043,13.364,15.2,7.849,-0.115,19.423,18.268,6.534,0.03,3.297,27.243,14.2,7.523,-0.896,15.237,5.551,13.526,11.674,-0.895,5.908,6.191,17.742,-7.322,1.539,9.574,15.805,13.634,-6.941,19.597,23.262,21.339,18.149,12.104,4.223,-5.454,7.659,24.914,20.605,8.067,7.126,11.975,3.636,5.374,18.574,0.122,18.871,11.832,23.555,21.338,9.257,14.538,8.584,0.351,8.257,0.098,27.785,13.714,8.181,30.003,23.646,0.053,26.994,26.439,10.484,15.049,12.315,10.957,10.503,13.768,12.996,33.105,5.557,22.595,8.702,34.936,1.83,16.85,12.598,18.014,18.498,12.388,20.872,5.613,6.186,17.31,15.145,11.062,16.099,0.981,13.347,20.84,-1.442,17.178,8.614,6.152,14.09,19.325,26.127,-0.013,17.796,-2.445,28.528,7.661,4.33,13.331,1.274,2.38,5.93,0.84,6.96,13.423,6.196,9.876,0.312,13.103,16.1,15.261,4.711,16.914,5.775,-1.4,11.879,16.435,9.735,-6.068,13.838,18.972,6.936,9.157,18.199,6.437,19.427,1.95,-5.496,-7.365,20.642,16.017,17.593,-7.102,13.482,23.517,18.572,19.709,3.245,21.48,25.865,13.6,4.844,6.47,-4.075,12.683,17.074,21.588,1.075,5.997,-1.54,19.438,7.56,12.221,2.996,4.912,9.48,19.774,10.536,25.676,6.983,3.216,-5.134,3.644,8.912,18.559,21.672,13.409,6.552,12.451],[26.335,23.763,10.612,14.573,12.18,12.304,6.589,0.368,9.952,21.258,29.102,34.352,7.357,1.936,16.374,18.907,10.88,19.15,13.285,15.142,7.813,-0.111,19.549,18.237,6.321,0.023,3.263,27.193,14.15,7.67,-0.756,15.379,5.549,13.379,11.697,-1.156,6.161,6.147,17.658,-7.287,1.541,9.532,15.767,13.566,-7.067,19.422,23.354,21.298,18.243,12.072,4.53,-5.46,7.618,24.878,20.77,8.277,7.141,11.718,3.809,5.079,18.591,0.002,18.93,11.762,23.536,21.552,8.984,13.524,9.079,0.247,8.306,-0.156,27.992,13.899,8.43,30.052,23.551,-0.211,27.316,26.886,10.45,14.552,12.292,10.775,11.087,13.69,12.792,33.079,6.053,22.753,8.782,34.602,1.561,16.913,13.032,18.256,18.637,12.522,21.085,5.366,6.153,17.539,15.136,10.985,16.22,0.779,13.514,20.683,-1.36,17.069,9.001,5.868,14.079,19.131,25.818,0.333,18.104,-2.117,28.4,7.589,4.617,13.691,1.691,1.963,6.441,0.78,6.947,13.533,6.326,10.005,0.666,13.048,16.324,15.32,4.652,16.825,6.217,-1.371,11.95,16.062,10.336,-6.347,13.346,19.062,6.608,9.006,18.484,6.563,19.278,2.125,-5.568,-7.282,20.881,15.089,17.342,-7.319,12.947,23.97,18.896,20.051,3.019,21.648,24.901,13.278,4.806,6.66,-4.045,12.476,17.059,21.342,1.167,6.054,-1.711,19.399,7.195,12.048,3.498,5.095,9.759,19.234,10.482,25.817,6.471,3.326,-5.268,3.36,8.87,18.639,22.01,13.224,6.829,12.721],[26.472,23.626,10.837,14.464,12.109,12.492,6.779,0.389,10.128,21.215,29.182,34.439,7.471,1.893,16.121,18.821,10.942,19.081,13.341,15.189,7.676,-0.198,19.595,18.162,6.13,0.154,3.208,27.065,14.16,7.884,-0.638,15.408,5.596,13.345,11.617,-1.207,6.348,6.107,17.734,-7.338,1.528,9.414,15.54,13.449,-7.355,19.257,23.469,21.313,18.243,12.084,4.471,-5.37,7.865,24.917,20.761,8.401,7.32,11.507,4.133,4.862,18.641,0.069,18.936,11.662,23.63,21.927,9.247,13.369,9.4,0.659,8.841,-0.027,28.285,13.562,8.365,30.331,23.847,-0.321,27.474,26.482,10.787,14.41,12.333,10.619,11.394,13.278,12.454,33.256,5.943,22.544,8.437,34.48,1.228,17.087,13.151,18.668,18.725,12.386,21.266,5.116,6.301,17.495,15.193,11.0,16.01,0.911,13.173,20.503,-1.355,17.48,8.945,6.204,14.119,18.915,25.789,-0.027,18.35,-1.675,27.983,6.967,4.621,13.934,1.637,1.754,6.365,0.625,7.084,13.644,5.754,9.932,1.222,12.225,16.415,15.184,4.326,16.473,6.541,-1.8,12.013,15.942,10.269,-6.155,12.565,18.701,6.411,9.067,18.862,7.488,19.542,2.28,-5.778,-7.047,20.461,15.659,17.147,-7.419,13.03,23.459,18.653,19.921,2.994,21.87,23.949,13.587,5.014,6.53,-4.242,11.96,17.018,21.639,1.346,5.828,-1.532,19.509,6.67,12.207,3.325,5.293,9.486,19.473,10.599,25.618,6.906,3.687,-5.147,2.987,9.062,18.65,22.058,13.053,6.752,12.686],[26.434,23.517,11.11,14.458,12.118,12.649,6.691,0.443,10.416,21.182,29.321,34.347,7.553,1.843,15.974,18.708,11.07,18.842,13.485,15.232,7.455,-0.374,19.657,18.253,6.061,0.294,3.153,26.808,14.169,8.132,-0.408,15.453,5.506,13.266,11.508,-1.132,6.493,6.059,17.736,-7.443,1.619,9.393,15.274,13.317,-7.719,19.234,23.518,21.277,18.209,12.201,4.219,-5.278,8.247,25.0,20.629,8.338,7.419,11.463,4.408,4.702,18.667,0.294,18.971,11.728,23.526,21.724,9.429,13.829,9.39,0.334,8.662,-0.155,28.39,13.397,8.367,30.369,23.82,-0.148,27.482,26.08,10.858,14.293,12.595,10.644,11.473,13.248,12.99,33.323,5.678,22.307,8.647,35.086,1.548,16.996,12.57,18.193,18.202,11.969,21.237,5.144,5.999,17.734,15.298,11.465,15.994,1.372,13.5,20.501,-1.322,17.551,9.035,6.102,14.061,18.921,26.145,-0.403,18.172,-1.34,28.159,7.117,4.259,13.741,1.348,2.374,6.321,0.736,7.113,13.609,5.769,9.653,0.938,12.105,16.012,14.756,4.547,16.825,6.705,-2.046,11.629,15.931,9.786,-6.283,12.55,18.149,6.03,8.746,19.274,7.9,19.35,2.069,-5.733,-7.402,20.362,16.066,17.09,-7.319,13.866,23.397,17.858,19.653,2.967,21.921,23.913,13.886,5.061,6.944,-4.084,12.132,16.97,21.628,1.457,5.445,-1.143,19.566,6.664,11.997,3.458,5.352,9.596,19.684,10.854,25.384,7.347,2.785,-5.229,2.999,9.203,18.763,21.759,13.307,6.85,12.01],[26.375,23.473,11.327,14.628,12.231,12.706,6.423,0.502,10.61,21.273,29.484,34.225,7.463,1.776,15.865,18.599,11.14,18.631,13.573,15.248,7.237,-0.519,19.683,18.373,6.06,0.382,3.223,26.571,14.206,8.374,-0.227,15.443,5.291,13.129,11.299,-1.029,6.658,6.09,17.734,-7.558,1.652,9.471,15.112,13.423,-8.034,19.143,23.561,21.011,18.149,12.405,3.922,-5.355,8.506,25.11,20.447,8.184,7.353,11.497,4.488,4.513,18.641,0.602,19.06,11.992,23.099,21.401,9.7,14.069,9.853,0.203,8.314,-0.049,28.182,13.858,8.24,29.948,23.56,0.423,27.877,26.121,10.839,14.454,12.94,10.802,11.717,13.745,13.473,33.275,5.332,22.63,9.057,34.698,2.061,16.758,12.578,18.348,17.697,12.08,20.827,5.276,5.798,17.855,15.245,11.687,16.438,0.75,13.657,20.493,-1.408,17.369,9.425,5.737,13.864,19.013,25.907,-0.169,17.967,-1.249,28.291,6.949,4.6,13.366,1.272,2.283,6.826,0.815,7.036,13.533,5.996,9.459,1.04,12.451,16.076,14.99,4.374,16.813,6.706,-1.74,11.668,15.685,9.304,-6.437,12.951,17.875,6.066,8.671,19.765,7.315,19.287,1.926,-5.7,-7.65,20.838,15.671,17.436,-7.618,13.833,23.575,17.672,19.873,3.206,21.822,24.025,13.84,4.249,7.233,-3.922,12.154,16.975,21.34,1.708,5.61,-0.985,19.673,6.959,12.34,3.934,5.29,9.864,19.506,11.16,25.238,7.578,2.851,-5.43,2.827,9.041,18.748,21.549,13.074,6.913,12.209],[26.325,23.298,11.536,14.859,12.493,12.71,6.177,0.586,10.659,21.428,29.635,34.143,7.355,1.723,15.729,18.508,11.203,18.559,13.729,15.232,7.129,-0.621,19.553,18.537,6.059,0.311,3.356,26.4,14.247,8.689,-0.014,15.453,5.193,13.251,11.093,-0.993,6.68,6.027,17.668,-7.635,1.651,9.494,15.135,13.636,-8.106,19.075,23.453,20.915,18.139,12.607,3.727,-5.531,8.584,25.116,20.26,8.021,7.35,11.435,4.488,4.352,18.603,0.89,19.104,12.09,23.274,21.402,9.742,14.005,10.224,0.224,8.381,0.433,27.881,13.849,7.955,30.019,23.538,0.664,27.737,26.834,10.9,14.411,12.981,11.308,11.52,14.016,13.244,33.05,5.233,23.103,8.665,33.74,2.097,16.668,12.788,18.535,18.464,12.259,20.475,5.274,5.516,17.311,15.37,11.394,16.514,-0.189,13.458,20.269,-1.125,17.323,9.888,6.071,13.988,18.945,25.221,0.278,17.814,-1.501,27.826,6.768,4.946,13.515,1.73,2.445,7.275,0.752,6.86,13.757,5.271,9.351,1.112,12.449,16.551,15.098,4.192,16.556,6.697,-1.013,11.703,15.002,9.755,-6.883,13.545,18.346,6.774,8.945,20.0,6.88,19.259,1.591,-5.982,-7.569,20.418,15.157,17.491,-8.333,13.106,23.964,17.989,19.393,3.264,21.729,24.468,14.195,3.949,7.115,-4.173,11.902,16.979,21.126,2.037,5.46,-0.92,19.949,7.356,12.387,3.93,4.758,9.893,19.531,11.258,25.375,7.781,3.284,-5.23,2.594,8.889,18.59,21.591,13.181,6.954,12.685],[26.348,23.054,11.665,14.924,12.805,12.66,5.899,0.795,10.58,21.519,29.595,33.945,7.301,1.711,15.668,18.601,11.078,18.555,13.907,15.187,7.136,-0.659,19.314,18.641,6.145,0.269,3.581,26.249,14.225,9.078,0.1,15.593,5.113,13.416,10.951,-1.089,6.583,5.97,17.548,-7.686,1.701,9.505,15.091,13.746,-8.126,19.085,23.275,20.855,18.246,12.774,3.755,-5.582,8.56,25.052,20.149,7.999,7.506,11.29,4.414,4.226,18.522,1.132,19.165,12.002,23.436,21.486,9.633,14.26,10.436,0.13,8.58,-0.015,27.938,13.865,7.768,30.809,23.312,0.605,27.856,26.443,10.795,13.924,13.082,11.594,10.919,14.25,12.763,32.739,5.347,22.94,8.251,34.285,1.425,16.171,12.94,18.666,18.638,12.62,20.821,5.085,5.707,17.155,15.768,11.297,16.322,-0.022,13.492,20.288,-1.302,17.562,10.286,6.276,14.276,19.162,24.975,-0.332,17.628,-1.395,27.513,6.714,4.744,13.725,1.723,2.827,7.644,0.612,6.803,13.9,5.13,9.242,1.355,13.048,16.877,15.094,4.448,16.784,6.595,-0.854,11.493,14.58,10.086,-7.195,13.974,18.747,7.032,9.093,19.544,6.898,19.283,1.011,-5.972,-7.121,20.042,15.038,17.28,-7.947,13.661,24.049,18.46,19.251,3.053,21.429,25.257,14.231,4.696,7.303,-4.608,12.036,17.374,20.79,2.376,4.714,-0.482,20.03,7.332,12.288,3.456,4.228,9.709,19.443,11.237,25.891,7.603,2.896,-5.331,2.498,9.151,18.646,21.508,13.15,6.817,12.252],[26.302,22.832,11.777,14.812,13.148,12.504,5.678,0.909,10.526,21.421,29.53,33.758,7.25,1.591,15.604,18.722,11.014,18.701,14.05,15.147,7.241,-0.691,19.279,18.686,6.213,0.092,3.857,26.047,14.089,9.493,0.161,15.8,5.142,13.545,10.929,-1.238,6.422,6.056,17.466,-7.555,1.633,9.497,14.932,13.837,-8.154,19.274,23.203,20.764,18.355,12.81,3.922,-5.585,8.486,25.079,20.079,8.147,7.743,11.184,4.214,4.085,18.564,1.292,19.218,11.848,22.702,21.876,9.48,14.098,10.07,0.252,8.243,-0.111,28.094,13.925,7.427,30.638,23.42,0.498,27.741,26.263,10.623,13.784,12.807,11.561,10.852,14.361,13.102,33.134,5.274,22.709,8.547,34.761,1.59,16.228,13.54,18.714,18.13,12.307,20.624,5.038,6.466,17.65,15.823,11.102,16.23,0.744,13.873,20.407,-1.47,17.456,10.319,5.648,15.08,18.633,25.088,-0.522,17.787,-1.28,27.452,7.067,5.171,13.631,1.464,2.772,7.763,0.629,6.791,13.893,5.483,9.121,1.363,13.041,16.375,15.175,4.419,16.936,6.411,-1.641,11.68,14.266,10.293,-7.325,13.63,18.867,6.856,8.639,19.748,7.1,19.182,1.562,-5.74,-7.526,20.643,15.883,16.8,-7.715,14.014,23.155,18.124,19.411,3.054,21.426,25.654,13.952,5.072,7.346,-4.043,11.959,17.258,20.834,2.601,5.011,-0.437,19.845,6.835,12.589,3.602,3.722,9.69,19.481,11.332,25.538,7.508,2.701,-5.583,2.332,9.276,18.487,21.523,12.925,6.677,11.815],[26.294,22.686,11.843,14.572,13.493,12.416,5.623,0.872,10.519,21.24,29.372,33.634,7.218,1.43,15.593,18.59,11.034,18.945,14.277,15.163,7.541,-0.557,19.308,18.607,6.063,-0.003,3.999,25.766,13.945,9.795,0.179,15.865,5.331,13.71,11.098,-1.325,6.189,6.166,17.52,-7.495,1.54,9.34,14.745,13.885,-8.196,19.367,23.025,20.767,18.35,12.697,4.064,-5.437,8.382,25.094,20.179,8.27,7.762,11.17,4.051,4.01,18.579,1.266,19.222,11.831,22.632,21.517,9.745,13.975,10.331,0.05,8.118,0.558,28.126,13.646,7.324,29.89,22.858,0.278,27.649,26.233,10.626,13.927,12.772,11.74,11.373,14.495,13.226,34.094,4.994,22.863,8.724,34.455,2.067,16.651,13.182,18.254,18.829,11.883,20.722,5.208,6.132,17.461,15.89,11.112,16.494,0.929,14.096,20.264,-1.399,17.68,10.42,5.841,15.193,18.633,25.248,-0.207,17.709,-0.947,27.114,7.051,5.16,13.301,1.59,3.263,8.095,0.44,6.884,13.987,5.552,9.335,1.325,12.727,16.416,15.111,4.383,16.459,6.401,-2.001,11.889,14.167,10.442,-7.343,13.34,18.679,6.594,8.642,19.925,7.364,19.209,2.357,-5.789,-7.361,20.469,15.915,17.017,-8.137,13.613,23.234,17.95,19.088,2.89,21.405,25.866,14.173,4.874,7.251,-3.977,11.615,16.88,20.759,2.226,5.565,-0.182,19.582,6.94,12.675,3.314,3.659,9.829,19.893,11.144,24.762,7.507,3.073,-5.307,2.418,9.408,18.773,21.652,12.842,6.978,12.325],[26.399,22.664,11.945,14.364,13.683,12.513,5.668,0.777,10.737,21.054,29.132,33.709,7.162,1.273,15.631,18.433,11.084,19.061,14.42,15.201,7.694,-0.259,19.276,18.364,5.906,0.09,4.055,25.438,13.822,10.008,0.238,15.846,5.475,13.83,11.413,-1.416,5.961,6.25,17.565,-7.406,1.513,9.18,14.494,13.745,-8.235,19.339,22.824,20.756,18.338,12.399,4.214,-5.174,8.375,25.084,20.385,8.323,7.628,11.261,3.897,4.057,18.512,1.216,19.235,11.941,22.648,20.981,9.794,14.199,10.545,-0.039,8.291,0.36,28.214,13.137,7.221,29.616,23.008,0.837,27.309,25.983,10.672,14.111,12.821,12.139,11.727,14.851,13.109,34.236,5.103,22.389,8.427,33.575,1.346,16.993,13.083,18.806,18.866,11.478,20.72,5.289,6.351,17.168,16.196,11.818,16.614,0.751,14.368,20.216,-1.374,17.731,10.78,6.118,14.757,19.366,24.813,0.069,17.649,-1.02,26.691,6.727,5.246,13.376,1.533,3.19,8.161,0.341,7.087,13.942,5.76,9.653,1.129,13.478,16.714,15.069,4.606,16.62,6.196,-1.89,11.682,14.281,10.652,-7.769,13.867,18.785,6.29,8.794,20.074,7.295,19.126,2.617,-5.742,-6.899,20.268,15.312,17.467,-8.426,14.319,23.343,18.266,19.243,2.693,21.154,25.512,14.088,4.496,7.084,-4.465,11.308,16.976,20.944,2.103,5.151,-0.146,19.364,7.3,12.692,2.662,3.819,9.89,19.902,11.02,24.413,7.454,3.336,-5.018,2.261,9.117,18.692,21.691,13.115,6.958,12.871],[26.369,22.714,12.169,14.406,13.731,12.634,5.743,0.714,11.042,20.843,28.981,33.8,7.041,0.941,15.755,18.469,11.26,19.027,14.444,15.171,7.564,-0.034,19.172,18.161,5.872,0.186,4.135,25.112,13.908,10.044,0.254,15.811,5.426,13.922,11.703,-1.381,5.756,6.303,17.788,-7.111,1.507,9.184,14.38,13.724,-8.207,19.285,22.632,20.751,18.469,12.272,4.273,-4.94,8.401,25.022,20.46,8.354,7.413,11.347,3.708,4.035,18.531,1.307,19.237,12.116,22.566,20.821,9.786,14.062,10.532,-0.33,8.329,-0.049,28.247,13.081,7.254,29.488,23.558,0.427,26.997,26.337,10.786,14.154,13.149,12.568,11.593,15.08,13.534,33.552,5.191,21.784,8.056,34.053,1.249,16.462,14.044,19.152,17.908,11.286,20.525,5.621,6.589,17.253,16.179,11.867,16.202,0.803,14.249,20.171,-1.311,16.933,11.06,5.667,14.659,19.473,24.14,-0.044,17.694,-1.338,26.452,7.321,5.233,13.544,1.697,2.773,8.524,0.398,6.825,14.077,5.757,9.877,1.298,13.102,16.623,15.389,4.924,16.928,5.395,-1.822,11.973,14.178,10.817,-8.693,14.079,18.521,6.294,8.776,20.317,6.915,19.391,2.449,-5.325,-7.056,20.183,14.403,17.587,-8.815,13.958,23.155,18.448,19.483,2.723,20.771,25.001,13.597,4.942,7.271,-3.886,11.37,16.827,21.113,2.225,4.729,-0.135,19.562,7.619,12.604,2.468,3.878,9.767,19.453,10.776,24.393,7.377,3.274,-5.102,2.316,9.01,18.075,21.975,13.083,6.869,12.834],[26.268,22.854,12.389,14.625,13.713,12.747,5.837,0.581,11.019,20.699,28.91,33.818,6.88,0.545,15.811,18.348,11.419,18.972,14.483,14.986,7.523,0.046,19.08,17.999,5.94,0.293,4.169,24.812,14.153,9.984,0.114,15.903,5.289,13.973,11.922,-1.275,5.561,6.305,18.052,-6.855,1.496,9.232,14.292,13.686,-8.208,19.343,22.384,20.833,18.574,12.383,4.276,-4.806,8.244,24.91,20.535,8.419,7.362,11.421,3.486,3.911,18.523,1.452,19.182,12.161,22.561,21.108,10.347,13.899,10.794,-0.557,8.074,0.116,28.057,13.672,7.42,29.585,23.41,0.496,26.962,26.25,10.927,14.182,13.402,12.449,12.186,15.376,13.205,33.789,5.212,21.469,8.133,35.049,1.512,16.471,13.8,18.221,18.477,11.542,20.194,5.3,6.098,17.298,16.41,11.647,15.874,1.179,13.891,19.823,-1.141,16.373,10.899,5.15,14.972,18.962,23.861,0.383,17.434,-1.716,26.049,7.104,5.118,13.631,1.789,3.312,8.605,0.595,6.842,14.079,5.591,10.244,1.26,13.25,16.67,15.868,5.301,16.849,4.639,-1.241,12.45,13.893,10.803,-8.92,13.316,18.702,6.607,8.554,20.422,6.352,19.494,2.181,-5.215,-6.749,19.585,14.844,17.555,-9.071,13.872,22.913,18.386,19.863,2.882,20.534,25.125,14.073,4.8,6.938,-3.394,11.903,16.791,21.211,2.242,5.022,-0.066,20.028,7.358,12.754,2.439,3.816,9.77,19.505,10.861,24.164,7.236,3.275,-4.767,2.288,8.909,18.793,21.92,12.976,6.662,12.302],[26.232,22.975,12.614,14.89,13.707,12.725,5.871,0.502,10.883,20.678,28.88,33.857,6.959,0.342,15.782,18.319,11.392,18.859,14.49,14.77,7.512,0.173,18.948,17.621,5.939,0.344,4.191,24.543,14.357,9.918,-0.131,16.133,5.2,14.128,12.145,-0.98,5.343,6.31,18.255,-6.697,1.452,9.291,14.237,13.603,-8.118,19.552,22.237,20.857,18.645,12.724,4.217,-4.733,8.076,24.705,20.65,8.409,7.518,11.525,3.219,3.812,18.662,1.548,19.105,12.054,22.864,21.102,10.302,13.98,10.125,-0.156,8.005,0.273,28.049,14.019,7.699,29.596,23.264,0.371,26.933,25.348,10.788,14.315,12.918,12.176,12.306,15.032,13.201,34.547,5.294,21.631,8.253,34.956,1.105,16.895,13.285,17.747,18.518,12.272,20.375,4.69,6.601,17.137,16.354,11.799,15.549,1.187,13.628,20.073,-1.236,16.819,10.795,5.583,15.107,19.294,23.536,0.567,17.334,-1.872,25.541,6.42,5.023,13.842,1.788,2.91,8.423,0.777,6.87,14.257,5.546,10.273,0.946,13.716,16.58,15.663,5.585,17.277,5.03,-1.697,12.181,13.755,10.575,-8.743,12.943,19.255,6.736,8.284,20.255,5.592,19.244,2.068,-5.047,-6.147,19.611,15.668,17.648,-9.449,13.374,22.65,18.063,19.659,2.89,20.412,25.448,14.319,4.551,6.848,-3.666,12.747,16.964,21.619,2.437,4.918,0.332,20.213,7.213,13.125,2.043,3.905,9.848,20.029,11.049,23.861,7.062,3.131,-4.752,2.041,8.859,18.756,21.798,12.932,6.285,11.791],[26.177,23.011,12.666,15.041,13.628,12.606,5.949,0.488,10.708,20.721,28.789,33.851,7.195,0.345,15.919,18.498,11.464,18.837,14.406,14.582,7.563,0.375,19.01,17.166,5.862,0.37,4.077,24.12,14.33,9.842,-0.296,16.337,5.224,14.364,12.149,-0.719,5.068,6.34,18.452,-6.442,1.341,9.233,14.22,13.361,-8.074,19.701,22.19,20.682,18.671,12.92,4.097,-4.736,8.071,24.391,20.835,8.331,7.696,11.598,3.037,3.825,18.696,1.519,19.049,11.964,22.315,21.302,9.938,14.558,9.979,-0.463,8.25,-0.049,28.101,13.68,7.725,29.708,23.355,0.014,26.987,25.454,10.696,14.114,13.403,11.921,12.109,14.796,13.478,35.224,5.065,21.802,8.481,34.31,1.18,16.71,13.711,18.215,18.131,12.369,20.509,5.214,6.695,17.103,15.89,11.26,15.4,1.269,13.71,20.299,-1.065,16.75,10.527,6.151,14.9,19.759,23.607,0.598,17.674,-2.136,25.504,6.912,4.967,13.892,1.735,3.255,8.146,1.232,6.813,14.427,5.395,10.318,0.508,13.739,16.599,15.769,5.689,17.335,6.18,-1.528,12.701,14.106,10.401,-8.089,13.272,19.726,6.7,8.746,20.525,4.728,19.165,2.195,-4.933,-6.095,20.162,15.802,17.456,-9.115,13.718,22.062,18.385,19.413,2.804,20.369,25.356,14.279,4.806,6.95,-4.215,12.589,17.366,21.756,2.334,4.852,0.539,20.049,7.086,12.765,1.865,3.695,9.831,19.709,11.395,23.544,7.147,2.914,-4.822,2.218,9.271,17.883,22.037,12.901,6.553,12.138],[26.196,22.877,12.635,15.107,13.475,12.496,5.967,0.404,10.55,20.795,28.781,33.923,7.409,0.415,16.093,18.616,11.514,18.965,14.371,14.42,7.728,0.484,19.353,16.909,5.95,0.415,4.013,23.896,14.168,9.741,-0.261,16.401,5.265,14.605,12.058,-0.525,4.911,6.45,18.587,-6.231,1.235,9.098,14.332,13.13,-7.995,19.832,21.916,20.568,18.652,12.916,4.077,-4.701,8.214,24.022,20.999,8.218,7.746,11.607,3.008,4.021,18.4,1.35,18.963,11.916,22.324,21.447,9.429,14.749,10.511,-0.773,8.623,0.234,27.848,13.664,7.783,29.87,23.52,0.269,27.015,25.68,10.713,14.291,13.725,12.018,12.202,15.014,13.085,35.072,5.1,21.98,8.626,33.885,1.584,16.887,13.559,17.573,18.52,12.311,20.742,6.021,6.353,17.362,16.196,11.759,15.315,1.624,14.093,20.232,-1.078,16.29,10.179,6.02,14.877,19.804,23.681,0.678,17.852,-2.174,25.48,6.883,5.358,13.32,1.999,3.059,8.054,1.271,6.744,14.59,5.652,10.326,0.381,13.296,16.811,15.633,5.533,17.461,5.77,-0.945,12.939,13.976,10.416,-7.922,13.173,19.483,6.693,9.062,20.356,3.831,19.251,1.993,-4.594,-6.044,20.07,15.224,17.709,-8.394,13.839,21.85,18.537,19.215,2.622,20.257,24.925,14.529,4.65,6.776,-4.214,12.129,17.121,21.665,1.745,5.012,1.536,19.861,7.006,12.666,1.872,2.977,9.7,19.457,11.456,23.304,7.414,2.7,-5.129,2.355,9.435,18.025,22.363,12.913,7.134,12.688],[26.344,22.732,12.637,15.18,13.438,12.429,5.97,0.438,10.407,20.891,28.928,33.906,7.591,0.523,16.166,18.679,11.635,19.23,14.328,14.304,7.641,0.48,19.843,16.758,6.157,0.467,4.181,24.007,13.962,9.659,-0.163,16.353,5.211,14.657,11.861,-0.403,4.784,6.604,18.589,-6.14,1.195,9.038,14.431,12.858,-7.856,19.89,21.598,20.523,18.539,12.91,4.037,-4.708,8.395,23.718,21.014,8.244,7.643,11.569,3.091,4.295,18.102,1.094,18.903,11.997,22.887,21.528,9.367,14.972,10.478,-0.714,8.64,0.242,28.224,13.696,7.244,29.796,23.254,0.281,27.135,25.553,10.49,14.77,13.103,12.492,11.821,15.035,13.18,35.042,5.447,22.135,8.8,34.714,1.214,17.281,13.346,16.685,18.618,12.041,21.129,6.134,6.475,17.394,16.19,11.964,15.274,1.34,14.557,20.264,-0.926,16.036,9.952,6.12,15.002,19.503,22.919,0.735,18.069,-2.013,25.148,6.776,5.273,13.583,2.105,2.824,8.192,1.393,6.696,14.591,5.742,10.34,0.198,13.481,16.821,15.812,5.345,17.355,4.753,-1.052,12.238,13.726,10.538,-8.185,13.141,19.37,6.676,8.722,20.445,2.983,19.952,1.283,-4.507,-5.5,19.556,15.174,18.074,-7.894,13.395,21.205,18.541,19.544,2.779,19.909,24.196,14.639,4.392,7.058,-3.857,12.275,16.33,21.861,1.923,5.291,1.97,19.919,7.389,12.401,1.825,2.547,9.047,20.045,11.393,23.225,7.273,3.068,-5.069,2.599,9.213,18.351,22.288,13.167,6.683,12.917],[26.431,22.86,12.545,15.411,13.492,12.44,5.89,0.553,10.258,20.98,29.041,33.923,7.709,0.438,16.208,18.72,11.845,19.292,14.184,14.245,7.33,0.344,20.178,16.512,6.372,0.521,4.389,24.115,13.964,9.598,-0.139,16.274,5.085,14.621,11.525,-0.423,4.496,6.694,18.496,-6.097,1.125,9.06,14.44,12.683,-7.655,19.895,21.31,20.449,18.595,13.006,4.072,-4.688,8.505,23.517,20.972,8.463,7.427,11.619,3.261,4.584,17.889,0.993,19.033,12.053,22.1,21.566,9.587,14.657,10.096,-0.361,8.611,0.015,28.263,13.888,6.916,29.989,23.192,-0.029,27.309,26.006,10.488,14.682,12.756,12.286,11.71,15.209,13.325,34.909,6.065,22.55,8.909,34.902,1.45,16.932,13.693,17.156,18.488,11.528,21.77,5.407,6.866,17.469,15.998,11.482,14.769,1.085,14.493,20.312,-0.887,16.175,10.151,6.651,15.083,19.89,22.622,0.626,18.776,-1.943,25.019,6.824,5.519,13.518,1.897,3.513,8.346,1.462,6.691,14.647,5.644,9.694,-0.436,14.255,16.409,16.222,5.341,17.09,4.434,-0.967,11.864,13.931,10.674,-8.189,12.892,19.68,6.662,8.689,20.496,3.134,20.889,0.981,-4.777,-5.466,19.328,15.533,17.719,-8.247,12.795,20.557,19.006,19.853,2.836,19.678,23.505,14.111,4.566,7.447,-3.841,12.685,16.109,22.193,1.781,5.444,1.317,19.866,7.595,12.143,2.219,2.603,9.047,20.236,11.41,23.633,7.319,3.314,-5.138,2.905,9.07,18.334,21.777,12.966,6.362,12.416],[26.478,23.013,12.385,15.643,13.4,12.436,5.77,0.63,10.072,21.073,29.176,33.896,7.824,0.346,16.153,18.705,11.841,19.232,14.107,14.161,7.075,0.101,20.435,16.329,6.552,0.614,4.648,24.176,14.065,9.576,-0.344,16.151,5.029,14.67,11.199,-0.448,4.147,6.746,18.399,-6.102,1.009,9.1,14.542,12.516,-7.416,19.978,20.905,20.439,18.661,13.119,4.27,-4.587,8.62,23.396,20.888,8.72,7.3,11.737,3.379,4.852,17.759,1.128,19.158,11.798,22.246,21.599,9.753,14.737,9.81,-0.152,8.816,-0.028,28.258,14.531,7.241,30.242,23.958,0.483,27.356,26.064,10.65,14.504,13.192,11.918,11.997,14.955,12.795,35.607,6.085,22.501,9.041,34.361,1.495,16.732,13.142,17.11,18.768,11.646,21.707,5.245,6.673,17.424,15.939,12.259,14.426,1.349,14.118,20.361,-1.151,15.996,10.092,6.623,15.134,20.124,23.143,0.621,18.855,-1.94,25.307,6.479,5.597,13.429,1.841,3.651,8.899,1.323,6.775,14.277,5.31,9.317,-0.875,14.31,16.053,16.575,5.436,16.769,5.107,-1.322,11.532,13.997,10.791,-7.938,12.917,19.605,6.944,9.131,20.284,3.138,20.869,0.875,-4.635,-5.755,19.364,15.438,17.587,-8.669,12.917,20.897,19.56,19.433,2.661,19.514,23.316,14.402,4.562,7.445,-3.899,12.796,16.243,21.944,1.524,5.803,0.981,20.303,7.164,12.84,2.202,3.166,9.797,19.846,11.387,23.901,7.502,2.853,-5.395,3.025,8.913,17.827,22.099,13.061,6.637,11.668],[26.497,23.324,12.327,15.882,13.166,12.353,5.628,0.792,9.978,21.018,29.327,34.073,7.93,0.306,16.048,18.741,11.791,19.228,13.951,14.022,7.072,-0.026,20.525,16.075,6.574,0.782,4.866,24.276,14.18,9.63,-0.64,15.838,5.131,14.864,11.045,-0.645,3.822,6.789,18.26,-6.199,0.948,9.111,14.649,12.434,-7.214,20.098,20.685,20.476,18.57,13.231,4.354,-4.414,8.71,23.391,20.849,8.761,7.413,11.736,3.351,5.058,17.665,1.363,19.141,11.731,22.484,21.854,8.87,15.01,9.759,-0.28,8.995,0.008,28.28,14.728,7.423,30.241,23.86,1.147,27.525,25.743,10.419,14.535,13.075,11.761,11.943,14.681,13.023,35.912,5.828,22.441,8.988,33.585,1.209,17.019,12.927,16.616,18.702,12.125,21.477,5.655,5.966,17.562,15.835,11.767,14.655,1.201,13.626,20.166,-0.817,16.134,9.807,6.44,15.087,19.967,23.625,0.663,18.63,-2.181,25.944,5.998,5.853,13.636,2.355,3.416,9.268,1.255,6.643,14.129,5.256,9.239,-1.381,13.863,16.152,16.493,5.671,16.611,5.243,-1.514,11.495,14.159,10.667,-8.072,13.049,19.223,7.076,9.441,20.423,3.052,20.579,0.867,-4.532,-5.631,19.612,15.277,17.868,-8.419,13.209,20.551,19.253,19.426,2.537,18.944,23.327,14.936,4.7,7.509,-3.909,12.952,16.321,21.469,1.755,6.034,1.547,20.717,7.19,12.285,2.147,3.962,9.755,19.752,11.937,23.429,7.553,3.061,-5.07,3.249,8.906,17.446,22.364,12.524,6.826,11.93],[26.406,23.667,12.389,15.908,12.872,12.191,5.594,1.092,9.813,20.884,29.464,34.198,8.045,0.305,16.034,18.736,11.716,19.218,13.833,13.832,7.191,-0.061,20.412,15.677,6.327,1.066,4.97,24.464,14.337,9.704,-0.869,15.482,5.264,15.057,11.26,-0.874,3.556,6.833,18.105,-6.304,1.111,9.072,14.726,12.641,-7.122,20.198,20.615,20.592,18.471,13.462,4.488,-4.172,8.784,23.398,20.842,8.494,7.571,11.667,3.235,5.185,17.532,1.577,19.108,11.655,22.517,21.725,8.678,15.493,10.022,-0.683,9.312,0.227,28.156,14.231,6.844,30.282,23.718,0.864,27.635,25.987,10.372,14.457,12.518,11.833,11.613,14.606,13.072,36.109,5.357,22.243,9.107,34.024,1.364,17.05,12.982,17.092,18.443,12.377,21.802,5.652,6.432,17.673,15.66,11.33,14.165,1.094,13.222,20.351,-0.228,15.379,9.642,6.636,15.132,19.925,23.888,0.527,18.791,-2.312,26.13,5.89,6.247,13.457,2.646,3.697,9.4,0.856,6.734,13.604,5.812,9.563,-1.71,13.746,16.242,16.748,5.623,16.406,4.971,-1.565,11.352,13.682,10.652,-8.128,12.607,18.697,6.762,9.477,20.266,2.454,20.315,0.65,-4.778,-5.781,19.803,15.192,18.131,-7.64,12.632,20.36,18.757,19.47,2.663,18.978,23.521,14.966,4.942,7.652,-3.821,13.021,15.792,21.737,2.272,6.105,1.631,20.512,7.553,11.753,2.159,4.491,9.414,19.827,12.291,23.091,7.503,3.26,-5.193,3.401,9.267,17.72,21.988,13.095,6.573,12.728],[26.301,23.831,12.404,15.632,12.626,12.099,5.537,1.186,9.585,20.696,29.539,34.22,8.287,0.394,16.023,18.733,11.613,19.2,13.844,13.563,7.399,0.056,20.51,15.449,6.212,1.386,5.16,24.648,14.304,9.828,-0.92,15.172,5.543,15.276,11.385,-1.025,3.244,6.819,17.883,-6.401,1.263,9.041,14.66,12.763,-7.07,20.228,20.682,20.743,18.434,13.607,4.672,-4.002,8.86,23.388,20.814,8.219,7.522,11.675,3.267,5.207,17.238,1.786,19.076,11.716,22.868,21.004,9.492,15.662,9.731,-0.772,9.466,1.199,28.138,14.283,6.782,30.685,24.242,0.638,27.765,25.784,10.354,14.437,12.895,11.597,12.014,14.241,12.606,35.981,5.737,22.228,9.349,34.393,1.299,17.008,13.196,16.68,18.683,12.414,21.631,5.349,6.64,17.276,15.716,11.784,13.62,0.702,13.225,20.564,-0.242,15.495,9.654,5.985,15.004,20.087,23.809,0.345,18.976,-2.487,25.881,6.053,6.04,13.616,2.783,4.107,8.963,0.791,6.962,13.291,5.864,9.582,-1.504,14.262,15.588,16.897,5.588,16.215,4.73,-1.883,11.243,13.297,10.816,-8.227,13.289,18.415,6.661,9.086,19.99,1.972,19.937,0.651,-4.995,-5.888,19.48,15.444,17.67,-7.067,13.067,20.774,18.767,19.661,2.954,18.954,23.757,14.99,4.421,7.671,-3.905,13.003,15.544,22.026,1.959,6.273,1.277,19.372,7.272,12.132,1.925,4.119,9.384,20.231,12.026,23.56,7.854,3.733,-5.075,3.534,9.271,18.097,21.963,13.279,6.963,12.216],[26.082,23.949,12.51,15.418,12.538,12.144,5.655,1.151,9.507,20.458,29.655,33.933,8.607,0.476,16.06,18.888,11.678,19.111,14.091,13.254,7.458,0.156,20.661,15.442,6.12,1.539,5.371,24.615,14.162,9.998,-0.718,14.835,5.761,15.518,11.279,-1.149,2.949,6.736,17.718,-6.492,1.254,8.984,14.544,12.964,-7.0,20.198,20.924,20.712,18.335,13.624,4.765,-4.07,8.917,23.442,20.836,8.083,7.462,11.624,3.419,5.373,17.145,1.901,18.997,12.034,22.802,20.444,8.73,15.031,9.19,-0.348,9.471,0.993,27.747,14.547,7.052,30.778,24.582,1.109,28.035,25.608,10.297,14.423,12.691,11.218,12.182,14.124,12.743,35.72,5.821,22.131,9.636,34.063,1.137,16.839,13.053,16.687,18.609,11.911,21.642,5.376,6.912,17.454,16.079,11.59,13.762,0.902,13.205,20.486,-0.031,15.729,9.739,6.002,14.777,20.149,23.492,1.117,18.876,-2.272,26.386,6.295,6.368,13.433,2.981,4.169,8.495,0.581,7.376,13.067,5.922,9.335,-1.268,14.827,15.02,17.432,5.44,15.856,4.247,-1.694,11.767,13.715,10.768,-8.075,13.124,18.199,6.635,8.513,20.146,1.428,19.902,1.2,-5.011,-5.836,19.792,14.971,17.361,-7.719,12.626,20.925,18.901,19.563,3.025,19.116,24.024,14.83,5.191,7.649,-3.791,13.155,15.588,21.585,2.353,5.925,1.168,18.897,6.974,12.131,2.043,3.81,8.986,19.777,11.836,23.893,7.952,3.317,-4.895,3.466,8.945,17.328,22.028,12.829,6.891,12.173],[25.683,24.013,12.624,15.444,12.514,12.303,5.924,1.154,9.337,20.3,29.794,33.698,8.789,0.525,16.091,19.044,11.757,19.036,14.225,12.998,7.342,0.291,20.678,15.48,6.105,1.589,5.614,24.526,14.041,10.113,-0.309,14.496,5.911,15.759,11.171,-1.394,2.725,6.582,17.641,-6.587,1.181,8.833,14.321,12.938,-7.002,20.092,21.202,20.666,18.335,13.548,4.808,-4.21,8.873,23.645,20.759,8.026,7.359,11.643,3.709,5.442,17.282,1.988,18.918,12.157,22.758,20.611,8.22,15.145,9.67,-0.443,9.397,0.214,27.634,13.85,7.496,30.443,24.614,0.956,27.933,25.529,10.456,14.639,12.371,11.187,12.216,14.195,13.351,35.654,6.101,21.91,9.801,33.282,0.854,16.841,13.124,16.699,18.852,11.358,21.464,5.433,6.476,17.695,16.204,12.069,13.616,1.241,13.193,20.426,0.31,15.626,9.979,6.343,14.217,20.024,23.287,1.284,18.856,-1.867,26.278,6.507,6.894,13.171,3.218,4.197,8.364,0.45,7.281,12.597,5.997,9.347,-1.153,15.115,15.097,17.505,5.454,15.909,3.424,-1.567,11.939,13.758,10.539,-7.884,12.999,18.183,6.599,8.229,20.083,0.945,20.805,1.169,-5.171,-6.036,20.117,14.74,17.411,-7.959,12.572,21.035,19.058,19.313,2.901,19.476,24.167,14.775,5.416,7.808,-3.618,12.49,15.626,21.217,3.095,6.295,1.58,19.583,6.876,12.687,2.229,4.041,8.769,19.361,12.221,23.613,7.656,3.34,-5.316,3.597,8.848,17.494,22.188,13.253,6.712,12.118],[25.402,24.029,12.636,15.553,12.516,12.402,6.09,1.035,9.219,20.546,29.642,33.717,8.836,0.557,16.163,19.156,11.904,18.983,14.13,12.712,7.187,0.362,20.496,15.37,6.189,1.724,5.793,24.375,13.948,10.161,0.018,14.248,5.928,15.791,11.208,-1.665,2.545,6.522,17.672,-6.678,1.126,8.548,14.157,12.704,-6.999,20.124,21.446,20.751,18.435,13.458,4.785,-4.258,8.904,23.908,20.589,7.978,7.299,11.54,4.084,5.384,17.506,2.163,19.068,12.192,23.427,20.906,8.847,15.539,9.659,-0.821,9.712,0.501,27.114,13.885,7.498,30.525,24.018,1.334,27.85,25.058,10.715,14.752,12.865,11.269,12.003,14.23,13.272,35.576,5.905,21.899,10.003,33.421,0.713,16.879,13.537,16.527,19.013,11.011,21.573,5.45,6.605,17.313,16.041,11.874,13.325,1.177,13.194,20.884,0.324,15.532,10.188,5.749,13.646,20.06,23.862,1.243,18.76,-1.309,25.947,6.37,6.987,13.591,3.162,4.564,8.441,0.121,7.208,12.524,6.477,9.421,-0.862,14.635,14.972,17.514,5.289,15.96,2.478,-2.123,11.47,12.898,9.898,-8.198,13.502,18.023,6.663,8.643,20.164,0.777,21.152,0.823,-5.248,-6.215,19.739,14.6,17.869,-7.512,12.958,21.144,18.981,19.563,2.632,19.867,24.247,14.817,5.116,7.846,-3.954,11.976,15.934,21.44,2.557,6.699,2.004,19.906,6.984,12.489,2.709,4.4,8.541,19.531,12.108,23.52,7.813,3.975,-5.025,3.845,9.064,18.2,21.944,13.033,6.693,12.184],[25.183,23.97,12.527,15.793,12.461,12.275,5.964,1.028,9.304,20.882,29.296,33.928,8.972,0.643,16.261,19.368,11.962,18.936,14.185,12.479,7.15,0.38,20.301,15.261,6.22,1.846,5.734,24.314,13.957,10.168,0.25,14.189,5.904,15.559,11.316,-1.932,2.355,6.602,17.795,-6.682,1.115,8.218,13.976,12.665,-6.874,20.33,21.77,20.721,18.628,13.292,4.672,-4.2,9.029,24.165,20.484,7.969,7.458,11.337,4.322,5.346,17.808,2.266,19.228,11.994,23.475,21.144,8.449,15.7,9.385,-0.412,9.683,0.987,27.132,14.291,6.988,30.469,24.444,1.669,27.635,24.73,10.736,14.775,12.24,11.335,11.545,14.134,12.848,35.683,5.796,22.242,10.285,33.949,0.755,16.924,13.329,16.305,19.068,11.271,21.669,5.362,6.941,17.207,15.987,11.726,12.841,0.848,13.08,20.985,0.202,15.599,10.436,5.844,13.556,19.729,23.765,1.384,18.679,-1.011,26.094,6.137,7.023,13.151,3.227,5.136,8.664,-0.079,6.862,12.421,6.457,9.398,-0.732,14.663,14.72,17.33,5.8,16.05,2.087,-2.258,11.241,13.064,9.563,-8.647,13.18,18.298,6.306,8.314,19.865,0.725,20.322,1.064,-5.204,-6.053,19.486,14.266,18.086,-7.356,12.269,20.705,18.935,19.548,2.627,20.53,24.291,14.704,5.385,7.76,-3.773,12.101,16.097,21.114,2.339,6.393,2.442,19.741,6.72,12.123,2.863,5.009,8.774,20.27,11.853,23.869,7.89,3.719,-5.089,3.513,8.957,18.082,21.41,13.051,6.679,12.159],[25.067,23.884,12.28,16.012,12.294,12.061,5.677,1.085,9.187,20.988,29.137,34.123,9.135,0.729,16.394,19.53,12.0,18.875,14.195,12.24,7.184,0.46,20.234,15.304,6.319,1.862,5.711,24.475,13.855,10.138,0.38,14.269,5.832,15.291,11.241,-2.134,2.162,6.794,17.877,-6.644,1.277,7.845,13.852,12.627,-6.821,20.507,21.945,20.7,18.679,13.123,4.595,-4.067,8.981,24.402,20.457,7.926,7.516,11.144,4.442,5.288,17.997,2.334,19.393,11.669,22.828,20.981,8.571,14.984,9.446,-0.151,9.379,0.866,26.763,14.781,7.197,29.946,24.777,1.268,27.457,24.631,10.398,14.934,12.293,11.19,12.257,14.024,12.699,35.939,6.205,22.605,10.15,34.152,1.188,17.264,13.278,16.285,19.569,12.028,21.56,5.35,6.482,17.246,16.045,11.879,12.908,0.895,12.883,20.966,0.324,15.907,10.772,6.182,13.827,19.774,23.336,1.08,18.594,-0.81,26.165,6.228,6.806,13.177,3.306,4.293,8.867,-0.338,6.793,12.28,5.603,9.254,-0.614,14.606,14.687,17.211,6.033,16.046,2.311,-2.215,12.059,13.592,9.682,-8.014,12.985,18.241,6.4,7.336,20.359,0.658,19.888,1.268,-5.335,-5.924,19.68,14.241,18.15,-7.436,12.196,20.748,19.256,19.685,3.044,20.835,24.491,14.499,4.839,7.768,-3.283,12.558,16.297,21.009,3.149,6.011,2.281,19.674,7.07,12.131,2.991,5.335,9.141,19.764,11.857,24.13,8.076,3.101,-4.735,3.482,9.03,18.168,21.724,12.795,6.7,12.059],[24.993,23.71,12.246,15.871,12.175,11.871,5.54,0.954,9.062,20.995,29.208,34.176,9.111,0.885,16.63,19.57,12.199,18.802,14.111,12.214,7.198,0.454,20.361,15.545,6.438,1.747,5.529,24.721,13.699,10.169,0.461,14.295,5.606,15.083,11.318,-2.244,1.965,6.991,17.907,-6.685,1.474,7.471,13.86,12.631,-6.72,20.679,21.856,20.761,18.826,13.095,4.607,-3.84,8.796,24.507,20.544,7.788,7.414,11.12,4.571,5.389,18.148,2.447,19.435,11.467,23.219,20.557,8.692,14.776,8.811,-0.201,9.949,0.507,26.887,14.81,6.954,30.196,24.01,1.074,27.472,24.743,10.152,14.909,12.033,11.073,11.755,14.014,12.866,36.136,6.083,22.448,10.006,34.209,1.237,17.504,13.198,16.841,19.421,12.094,21.635,5.583,5.98,17.599,16.016,11.904,12.859,1.173,12.502,21.402,0.462,15.737,10.702,6.517,13.531,19.825,23.466,1.21,18.74,-0.765,26.262,6.511,6.987,13.348,3.445,4.208,8.88,-0.455,6.886,12.5,6.027,9.358,-0.35,14.188,15.023,16.853,6.267,16.082,3.088,-2.673,11.984,12.842,9.278,-7.251,12.766,18.09,7.12,6.87,20.622,0.442,20.277,1.371,-5.447,-5.938,19.937,14.418,18.332,-8.231,12.653,21.362,19.414,19.561,3.208,20.539,24.659,14.516,4.645,7.424,-3.776,12.834,16.607,20.818,3.521,5.813,1.68,20.207,7.256,11.708,3.034,5.084,9.439,19.265,11.603,24.529,7.929,3.372,-4.224,3.506,9.088,18.478,22.069,12.383,6.341,11.463],[25.214,23.677,12.261,15.606,12.23,11.816,5.632,0.78,8.91,20.837,29.347,34.358,9.093,1.025,16.803,19.44,12.459,18.858,14.023,12.166,7.121,0.446,20.574,15.845,6.563,1.679,5.409,24.764,13.573,10.127,0.514,14.355,5.519,14.82,11.446,-2.369,1.796,7.247,17.859,-6.86,1.443,7.164,13.711,12.723,-6.547,20.808,21.987,20.779,19.019,13.105,4.785,-3.782,8.517,24.574,20.624,7.609,7.193,11.152,4.712,5.474,18.402,2.482,19.394,11.335,23.175,20.798,7.963,15.374,9.427,-0.245,9.627,0.266,26.95,14.262,6.574,30.495,24.106,1.155,27.583,24.798,10.126,15.403,11.917,10.911,11.426,13.83,12.655,36.049,5.714,22.021,10.224,34.248,0.894,17.62,12.956,16.764,19.13,11.806,21.822,5.599,6.43,17.347,15.789,11.95,13.08,0.721,11.964,21.074,0.244,16.209,10.315,6.346,13.61,19.502,23.73,1.556,18.983,-0.988,26.488,6.436,6.875,13.097,3.227,4.438,8.797,-0.634,6.617,12.537,6.333,9.539,-0.229,14.114,15.259,16.638,6.585,16.018,3.461,-2.356,11.684,12.333,8.886,-7.084,12.475,18.295,7.232,6.99,20.867,0.616,20.8,1.15,-5.345,-6.153,20.264,14.366,18.083,-8.091,12.557,21.187,19.683,19.368,2.801,20.581,24.612,14.476,4.809,7.267,-3.517,12.554,16.85,21.068,3.4,6.216,1.297,20.331,7.55,11.624,3.196,5.032,9.378,19.817,11.524,24.209,7.501,3.5,-4.682,3.926,8.682,18.547,21.821,12.669,6.114,11.283],[25.4,23.749,12.2,15.388,12.212,11.853,5.722,0.714,8.73,20.592,29.292,34.51,9.145,1.06,17.045,19.2,12.623,18.913,13.92,12.174,7.057,0.454,20.745,16.086,6.591,1.764,5.36,24.782,13.448,9.984,0.473,14.463,5.576,14.661,11.446,-2.363,1.73,7.534,17.772,-7.02,1.094,6.984,13.458,12.772,-6.323,20.817,22.19,20.83,19.114,12.997,4.904,-3.928,8.46,24.555,20.556,7.597,6.8,11.088,4.891,5.605,18.625,2.433,19.382,11.351,23.11,20.622,8.168,16.052,9.39,-0.191,9.712,0.605,27.258,14.294,7.046,29.962,24.297,0.636,27.561,25.538,10.598,15.571,12.432,10.832,12.177,13.822,12.328,36.167,5.03,21.88,10.256,34.667,0.725,17.547,13.19,16.939,19.158,12.181,21.814,5.7,6.799,17.102,15.684,12.016,12.909,1.062,12.185,20.722,0.03,16.273,10.422,6.399,13.275,19.158,23.738,1.285,19.203,-1.267,26.64,6.322,6.097,13.005,2.814,4.35,8.402,-0.817,5.995,12.589,6.487,9.514,0.256,13.837,14.95,16.262,6.671,15.98,3.257,-2.073,12.074,12.281,8.651,-7.434,12.837,18.289,6.596,7.099,20.875,0.929,20.988,1.288,-5.529,-6.562,20.149,13.974,18.227,-7.377,12.689,21.092,19.771,19.691,2.578,20.994,24.525,14.501,5.427,7.12,-3.455,12.38,16.899,21.062,3.298,6.869,1.498,19.932,7.065,11.914,3.55,5.116,9.449,20.657,11.878,24.209,7.521,3.276,-4.616,3.899,8.56,18.761,21.654,12.284,6.43,11.771],[25.639,23.856,12.291,15.322,12.12,11.935,5.583,0.712,8.734,20.321,29.041,34.71,9.094,1.035,17.244,19.014,12.705,18.874,13.934,12.125,7.124,0.517,20.802,16.3,6.531,1.802,5.248,24.989,13.503,9.84,0.321,14.431,5.669,14.507,11.569,-2.301,1.635,7.722,17.718,-7.153,0.698,6.891,13.23,12.9,-6.131,20.751,22.312,20.971,19.102,12.929,4.934,-4.184,8.676,24.467,20.259,7.559,6.502,11.097,5.126,5.697,18.791,2.237,19.366,11.409,23.684,20.311,8.018,16.239,8.848,-0.116,9.859,0.611,27.493,14.305,7.271,29.871,24.352,1.038,27.403,25.607,10.177,15.641,12.419,10.808,12.078,13.805,12.761,36.554,5.787,21.791,10.261,34.711,0.955,17.866,13.266,17.35,18.843,12.339,21.652,5.926,6.135,17.108,15.675,12.476,12.583,1.441,12.361,20.861,0.285,16.222,10.516,6.835,13.322,19.314,23.638,1.328,19.616,-1.561,26.691,6.158,6.365,12.852,3.338,3.963,8.022,-0.877,6.339,12.803,6.304,9.703,1.011,13.743,14.846,16.288,7.174,15.941,3.324,-1.985,11.84,12.169,8.763,-7.411,13.293,18.213,6.505,6.659,20.905,1.483,21.214,0.933,-5.811,-6.615,19.896,13.606,18.798,-7.114,12.595,21.27,19.375,19.761,2.172,21.274,24.173,14.399,5.282,7.344,-3.982,12.077,17.286,20.616,3.207,6.807,2.198,19.755,6.778,11.969,3.341,5.654,9.071,20.8,11.412,24.865,7.825,3.567,-3.949,4.027,8.124,18.75,21.66,12.181,5.851,12.054],[25.812,24.116,12.427,15.393,12.078,11.829,5.565,0.744,8.791,20.019,28.814,34.916,9.009,1.001,17.352,18.942,12.74,18.846,14.234,11.928,7.106,0.626,20.785,16.46,6.543,1.904,5.206,25.21,13.556,9.688,0.334,14.321,5.719,14.433,11.674,-2.377,1.639,7.883,17.697,-7.246,0.355,6.962,13.121,13.057,-6.044,20.685,22.434,21.092,19.104,12.828,4.902,-4.387,8.925,24.583,19.847,7.437,6.443,11.13,5.373,5.708,18.872,2.061,19.222,11.437,23.397,20.269,7.682,15.796,9.173,-0.285,10.007,0.502,27.494,14.342,6.552,30.082,24.675,1.635,27.161,25.35,10.169,15.758,12.246,10.647,11.619,13.542,12.981,36.63,6.516,21.448,10.052,34.687,1.588,18.153,13.075,17.462,18.629,12.556,21.829,5.898,5.984,17.405,16.055,12.386,12.851,0.737,12.449,20.714,0.409,16.913,10.346,6.578,13.205,19.928,23.862,1.401,19.772,-1.606,26.354,6.174,6.668,12.747,3.363,3.795,8.055,-0.71,6.804,12.719,5.974,10.146,0.891,13.978,15.13,16.233,7.343,15.926,3.326,-1.832,12.222,11.969,8.873,-7.222,13.397,18.236,6.597,6.214,20.957,1.5,21.056,0.333,-5.8,-6.457,20.089,13.552,18.675,-7.249,12.542,21.112,19.573,19.874,1.855,21.37,23.731,14.116,5.073,7.528,-4.216,12.126,18.043,20.553,2.689,6.683,2.486,19.926,6.931,11.528,3.663,5.754,8.478,20.918,11.238,24.714,8.095,3.725,-4.514,3.869,7.813,18.107,21.273,12.209,5.644,11.916],[25.668,24.34,12.561,15.61,11.954,11.851,5.613,0.764,8.751,19.689,28.819,35.073,8.948,1.191,17.434,18.922,12.797,19.041,14.507,11.774,6.976,0.639,20.753,16.611,6.493,1.993,5.165,25.228,13.569,9.662,0.433,14.22,5.645,14.436,11.756,-2.445,1.605,7.939,17.766,-7.314,0.012,7.019,13.174,13.147,-6.137,20.729,22.4,21.075,19.064,12.83,4.929,-4.505,8.892,24.785,19.51,7.328,6.534,11.144,5.53,5.691,18.821,1.893,19.274,11.368,23.592,20.357,8.294,14.931,9.079,0.132,10.014,0.588,27.218,14.289,6.51,29.641,24.564,0.698,27.111,25.939,10.14,15.655,11.847,10.787,11.878,13.57,12.698,36.824,6.575,20.817,10.018,35.073,1.436,18.136,13.795,17.366,18.701,12.339,22.235,6.047,6.274,17.983,16.481,12.341,12.851,1.126,12.295,20.687,0.308,16.876,10.585,6.951,12.776,20.062,23.924,1.513,19.356,-1.365,26.683,6.343,6.718,12.757,3.32,4.055,7.942,-0.89,7.085,12.547,5.706,9.955,0.692,13.737,15.377,16.313,7.278,15.957,3.316,-2.203,12.295,11.612,8.834,-7.001,13.681,17.751,7.032,6.995,20.945,1.514,20.531,0.239,-6.099,-6.547,20.615,13.513,18.3,-7.37,12.804,21.147,19.936,19.696,1.618,21.372,24.283,14.282,5.137,7.67,-4.175,12.423,18.123,20.386,1.839,6.668,2.439,19.802,6.953,11.299,3.887,5.54,8.043,20.578,11.592,24.584,7.745,3.479,-5.633,3.84,8.201,18.425,20.892,12.151,6.229,11.872],[25.575,24.337,12.622,15.784,11.88,11.837,5.783,0.585,8.702,19.378,29.041,35.257,8.92,1.54,17.484,19.003,12.853,19.378,14.611,11.799,6.913,0.628,20.626,16.542,6.512,1.929,5.264,25.16,13.502,9.776,0.396,14.143,5.455,14.446,11.834,-2.563,1.463,7.976,17.748,-7.5,-0.153,6.951,13.217,13.181,-6.297,20.811,22.311,21.117,18.944,13.002,5.065,-4.578,8.658,24.947,19.39,7.22,6.816,11.251,5.535,5.661,18.807,1.682,19.473,11.232,23.975,20.019,8.437,14.429,9.32,0.3,9.612,0.328,27.32,15.18,6.973,29.806,24.681,0.751,27.235,25.884,10.64,15.839,12.078,10.624,12.425,13.575,12.333,36.944,5.586,20.538,10.335,35.337,0.872,17.825,14.107,17.625,19.087,12.122,22.051,5.892,6.068,18.455,16.416,12.704,12.587,1.25,12.115,20.779,0.477,16.514,10.813,7.054,12.957,20.211,24.211,1.428,19.237,-1.471,26.844,6.74,6.107,13.03,3.381,4.139,7.992,-0.958,7.05,12.335,5.887,10.133,1.06,13.607,15.082,16.277,7.098,15.898,3.291,-2.474,12.017,11.796,8.738,-7.131,13.899,17.861,7.247,7.265,20.74,1.556,20.978,-0.037,-6.277,-6.876,20.684,13.702,18.261,-7.64,12.478,21.49,19.539,19.59,1.301,20.989,24.864,14.471,5.155,7.576,-4.379,12.598,17.18,19.858,1.515,6.927,2.551,19.645,6.482,11.532,3.838,5.604,8.168,20.826,11.469,24.963,7.466,3.619,-5.073,4.076,8.311,18.676,20.617,12.342,6.063,11.702],[25.552,24.281,12.676,15.93,11.815,11.786,5.862,0.332,8.708,19.117,29.265,35.311,8.967,1.529,17.535,19.211,12.906,19.804,14.684,11.919,6.908,0.581,20.522,16.376,6.606,1.839,5.327,25.197,13.397,9.97,0.336,14.009,5.289,14.445,11.929,-2.771,1.326,7.999,17.668,-7.717,-0.208,6.806,13.273,13.184,-6.471,20.928,22.358,21.17,18.826,13.052,5.208,-4.507,8.458,25.128,19.284,7.176,7.055,11.413,5.713,5.597,18.649,1.521,19.678,11.308,23.496,19.59,8.198,14.046,9.144,0.06,9.795,0.545,27.294,16.351,7.593,30.146,24.316,1.003,27.625,25.358,10.44,15.785,12.483,10.454,12.315,13.309,12.606,37.124,5.391,20.488,10.547,35.216,1.407,18.036,13.588,16.997,18.96,12.659,21.659,6.101,6.353,18.65,16.382,12.251,12.746,1.006,11.948,20.928,0.19,16.271,10.943,6.455,13.028,20.469,23.877,1.173,18.803,-1.582,26.782,7.04,6.389,13.405,3.019,4.01,8.308,-1.051,6.223,12.285,5.9,10.569,1.105,13.949,14.602,16.186,7.184,15.912,3.05,-2.25,12.19,11.963,8.647,-7.074,13.563,18.54,7.393,6.476,20.642,1.133,20.789,-0.131,-6.134,-7.12,20.829,13.667,18.245,-8.024,12.488,21.639,19.615,19.807,1.227,20.78,24.667,14.402,5.447,7.343,-4.693,12.399,17.017,19.658,1.398,6.929,2.987,20.101,6.46,11.58,4.006,6.12,8.025,20.959,11.519,25.048,7.308,4.033,-4.018,3.921,8.515,18.464,20.802,11.867,5.945,11.906],[25.515,24.018,12.706,16.153,11.758,11.812,5.94,0.284,8.672,19.014,29.426,35.097,9.056,1.344,17.567,19.406,12.903,20.269,14.682,11.912,6.994,0.486,20.337,16.344,6.672,1.606,5.361,25.215,13.424,10.251,0.286,13.827,5.073,14.327,12.039,-2.957,1.235,8.018,17.752,-7.811,-0.286,6.684,13.102,13.096,-6.49,21.043,22.471,21.153,18.693,13.013,5.383,-4.371,8.444,25.173,19.172,7.149,7.113,11.545,6.095,5.452,18.564,1.552,19.761,11.49,23.65,19.642,7.96,14.586,9.245,0.074,10.15,0.122,27.368,16.502,7.333,30.129,24.613,0.252,27.578,25.271,10.068,15.85,12.804,10.377,12.131,13.253,13.0,36.745,6.16,20.431,10.335,35.091,1.525,18.453,13.654,17.058,18.78,12.787,21.16,6.45,6.492,18.665,16.55,12.609,12.267,1.253,11.838,21.243,-0.029,15.976,10.954,6.738,12.812,20.793,23.823,1.161,18.669,-1.364,26.694,6.845,6.769,13.622,3.134,3.957,8.386,-1.567,5.333,11.879,5.582,10.275,0.778,14.176,14.46,16.227,7.412,16.068,3.005,-2.372,12.613,12.001,8.556,-6.798,13.561,18.639,7.538,5.747,20.594,0.699,21.107,0.342,-6.342,-7.446,20.723,13.444,18.243,-8.121,12.769,21.816,19.498,19.643,1.111,20.9,24.451,14.08,5.778,7.52,-4.573,12.357,16.948,19.653,1.258,6.721,2.914,20.605,6.712,11.536,4.241,6.506,8.24,21.01,11.356,25.231,7.255,3.782,-4.295,3.715,8.649,18.022,20.793,12.367,6.157,12.454],[25.59,23.948,12.685,16.342,11.813,11.947,5.935,0.266,8.625,19.146,29.362,34.771,9.077,1.391,17.579,19.435,12.935,20.547,14.654,11.687,7.105,0.391,20.232,16.373,6.728,1.562,5.353,25.173,13.551,10.343,0.227,13.627,4.768,14.105,12.099,-3.117,1.248,8.066,17.884,-7.883,-0.387,6.577,12.839,13.038,-6.352,21.017,22.591,20.999,18.613,12.951,5.506,-4.261,8.66,25.038,19.0,7.157,7.074,11.666,6.369,5.434,18.436,1.721,19.719,11.688,23.395,19.664,8.411,14.911,9.324,0.123,9.985,-0.159,27.321,15.893,7.191,30.028,24.533,0.702,27.717,25.785,10.32,16.042,13.055,10.687,12.565,13.336,12.906,36.42,6.836,20.565,10.004,35.081,1.28,18.515,14.07,17.521,19.292,12.202,21.456,6.11,6.307,18.912,16.41,12.806,12.413,0.708,12.168,21.3,0.076,16.372,11.384,7.358,12.364,20.688,24.106,0.86,18.639,-1.633,26.714,6.338,6.728,13.447,3.157,4.113,8.694,-1.596,5.541,11.871,5.271,10.256,0.763,13.857,14.601,15.982,7.499,16.369,3.018,-2.683,12.593,11.506,8.459,-6.523,13.446,18.645,7.35,5.898,20.441,1.191,21.383,0.169,-6.396,-7.418,20.178,13.315,18.042,-7.872,12.633,21.952,19.815,19.801,1.03,21.159,24.583,14.135,5.544,7.412,-4.331,12.711,17.098,19.628,0.999,6.434,3.02,19.891,6.573,11.438,4.581,6.366,8.736,21.406,11.132,25.291,7.657,4.016,-4.892,3.702,8.822,17.811,20.427,12.744,6.418,12.403],[25.83,24.077,12.795,16.225,11.982,12.064,6.0,0.257,8.667,19.251,29.309,34.502,8.904,1.537,17.687,19.34,12.955,20.569,14.72,11.387,7.156,0.165,20.369,16.437,6.702,1.66,5.299,25.183,13.726,10.341,0.13,13.62,4.461,13.88,12.218,-3.14,1.39,8.17,17.986,-7.939,-0.356,6.473,12.643,12.97,-6.243,20.972,22.701,20.844,18.569,12.891,5.532,-4.205,8.934,24.835,18.743,7.167,7.114,11.819,6.462,5.433,18.359,2.062,19.614,11.791,23.624,19.757,8.453,14.78,8.924,0.249,9.782,0.236,27.358,16.02,7.191,29.882,24.325,0.775,27.331,25.607,10.503,16.021,12.613,10.547,12.9,13.469,12.815,36.143,6.392,20.69,10.386,34.906,1.549,17.997,13.93,17.078,19.267,12.408,21.928,5.983,6.211,19.131,16.614,12.509,12.396,0.6,12.533,21.117,0.189,16.765,11.724,7.252,12.336,20.356,24.381,0.639,19.014,-1.716,26.854,6.614,6.418,13.19,3.065,4.332,9.06,-1.379,5.918,11.902,4.77,10.556,0.214,13.28,14.628,15.706,7.717,16.266,2.761,-3.288,12.291,11.228,8.333,-6.499,12.794,18.949,6.994,6.36,20.378,1.699,20.674,-0.068,-6.486,-7.148,20.221,12.944,17.824,-7.738,12.647,22.106,19.77,19.55,1.097,21.321,25.005,14.251,5.471,7.642,-4.025,12.925,17.293,19.11,0.976,6.675,3.391,19.323,6.601,11.788,4.683,6.401,8.989,21.464,11.34,25.043,8.001,3.966,-4.955,3.747,8.625,17.748,20.276,12.292,6.456,11.951],[26.008,24.21,12.991,16.155,12.123,12.111,5.943,0.342,8.65,19.229,29.198,34.382,8.764,1.679,17.775,19.155,12.907,20.437,14.973,11.228,7.21,-0.044,20.584,16.458,6.609,1.775,5.159,25.315,13.777,10.393,-0.129,13.694,4.192,13.684,12.344,-3.146,1.566,8.312,17.997,-7.888,-0.143,6.39,12.526,12.798,-6.236,20.746,22.822,20.759,18.431,12.906,5.535,-4.187,9.057,24.737,18.514,7.188,7.078,11.886,6.551,5.458,18.34,2.465,19.516,11.75,23.907,20.104,7.777,14.588,9.392,0.266,9.253,-0.055,27.592,16.112,7.594,29.86,24.748,0.214,27.521,26.205,10.283,16.013,12.179,10.654,12.594,13.446,13.037,36.078,5.453,20.577,10.285,34.287,1.808,17.887,13.723,17.086,18.792,12.92,21.645,6.487,6.289,18.863,16.576,12.945,11.918,1.021,13.108,20.955,0.206,17.031,11.559,7.412,12.42,20.537,24.123,0.845,19.116,-1.748,26.869,6.834,6.387,13.216,3.02,4.271,8.95,-1.435,5.909,11.947,4.165,10.8,0.454,13.303,14.547,15.525,7.862,16.276,2.283,-2.883,12.35,10.874,8.259,-6.213,12.234,19.004,6.837,6.001,20.312,1.846,21.269,-0.012,-6.857,-6.94,20.228,12.773,18.011,-7.951,12.814,21.937,19.803,19.399,1.391,21.307,24.39,14.285,5.646,8.036,-4.289,12.534,17.28,18.632,1.663,6.896,3.798,19.658,6.419,11.957,4.711,6.923,9.009,21.357,11.536,24.516,7.899,3.77,-4.467,3.846,8.497,17.594,20.203,12.318,6.542,12.438],[26.182,24.342,13.034,16.206,12.209,12.097,5.819,0.321,8.575,19.122,29.137,34.281,8.676,1.716,17.708,18.971,13.009,20.23,15.212,11.286,7.281,0.009,20.751,16.42,6.663,1.806,4.988,25.357,13.76,10.4,-0.26,13.775,4.001,13.571,12.335,-3.091,1.576,8.43,18.111,-7.881,0.231,6.288,12.544,12.613,-6.329,20.682,22.741,20.741,18.307,13.045,5.531,-4.18,8.911,24.631,18.468,7.228,6.964,11.819,6.75,5.463,18.258,2.936,19.613,11.684,23.691,19.738,7.792,14.479,9.094,0.305,9.54,-0.215,28.077,16.137,7.328,30.044,24.745,0.214,27.268,26.241,10.226,15.939,12.327,10.884,13.02,13.533,13.024,36.041,5.716,20.498,9.932,34.529,1.969,18.359,14.24,17.469,18.734,12.634,21.746,6.201,6.29,18.66,16.863,12.586,11.796,0.778,13.52,20.817,0.245,16.803,11.666,7.273,12.209,20.759,24.549,0.568,18.874,-2.201,27.035,6.351,6.461,13.274,3.206,4.072,8.865,-1.712,5.2,12.007,3.775,10.551,0.435,13.545,14.49,15.396,7.923,16.231,2.852,-2.701,12.967,10.955,8.074,-5.43,12.173,18.393,7.424,5.543,20.066,2.001,21.271,-0.071,-6.827,-6.985,19.941,12.697,17.929,-8.07,12.55,21.837,19.189,19.62,1.549,21.63,23.987,14.336,5.44,7.894,-4.458,12.706,17.258,18.991,2.62,6.662,3.558,19.83,6.352,11.723,4.878,6.959,9.1,21.188,11.34,24.714,7.653,4.292,-4.107,3.816,8.678,17.112,20.065,12.454,6.328,12.886],[26.353,24.398,13.063,16.26,12.13,12.116,5.722,0.259,8.414,18.946,29.027,34.259,8.708,1.763,17.592,18.896,12.995,19.951,15.446,11.385,7.182,0.148,20.819,16.213,6.712,1.629,4.956,25.391,13.751,10.402,-0.381,13.857,3.787,13.589,12.332,-3.117,1.654,8.532,18.15,-7.965,0.497,6.229,12.78,12.427,-6.36,20.638,22.641,20.786,18.243,13.229,5.509,-4.049,8.585,24.513,18.66,7.235,6.968,11.751,6.877,5.442,18.108,3.293,19.769,11.521,23.816,19.075,8.303,14.519,8.92,0.317,9.672,0.349,27.795,16.29,7.157,29.756,24.633,-0.02,27.543,25.641,10.308,15.766,12.871,11.0,13.151,13.739,12.866,36.046,6.246,20.466,9.984,34.755,2.049,18.329,14.457,17.237,18.558,12.747,21.952,5.602,6.375,18.96,17.015,12.593,12.296,0.679,13.393,20.709,0.418,16.379,11.435,7.254,11.868,21.168,24.525,0.415,19.21,-2.084,27.024,6.124,6.167,13.276,2.99,4.1,8.867,-1.393,4.599,12.08,4.786,10.517,0.264,13.422,14.622,15.334,8.098,16.341,3.352,-2.776,12.854,11.235,7.939,-5.23,12.717,18.321,7.482,5.415,20.112,2.038,20.7,0.937,-6.5,-6.984,19.808,12.921,17.536,-7.744,12.57,21.855,19.435,19.999,1.329,21.29,24.752,14.289,5.399,7.498,-4.137,12.603,17.305,19.356,2.686,6.473,3.81,20.05,6.709,12.091,5.071,7.053,8.934,21.49,11.477,25.285,7.419,4.044,-4.529,3.769,8.594,16.725,19.989,12.386,5.945,12.304],[26.299,24.39,13.156,16.357,12.01,12.231,5.703,0.257,8.27,18.774,28.918,34.31,8.757,1.887,17.61,18.814,12.851,19.773,15.654,11.482,7.021,0.196,20.826,15.786,6.712,1.415,4.926,25.395,13.758,10.414,-0.38,13.98,3.809,13.599,12.33,-3.139,1.81,8.6,18.137,-7.896,0.642,6.185,13.045,12.346,-6.179,20.588,22.636,20.942,18.297,13.31,5.301,-3.968,8.262,24.703,18.882,7.158,7.015,11.674,6.824,5.493,17.884,3.512,19.956,11.445,23.422,19.417,8.107,14.755,8.965,0.542,9.582,0.048,28.035,16.194,7.193,29.728,24.2,0.199,27.272,26.322,10.33,16.074,13.332,10.873,12.566,13.649,12.799,35.926,5.779,20.012,10.111,34.422,2.122,17.772,14.795,16.667,18.277,12.491,22.345,5.871,6.265,19.127,17.136,12.904,12.287,1.085,12.931,20.506,-0.059,16.413,11.041,7.425,11.534,21.298,23.941,1.057,19.487,-2.262,26.604,6.326,6.269,13.339,2.751,4.464,9.371,-1.366,4.604,12.338,4.974,10.801,-0.189,13.555,14.784,15.368,7.938,16.428,3.474,-3.067,12.696,11.414,7.789,-5.213,13.29,18.688,7.59,5.768,20.136,1.969,20.735,1.446,-6.564,-6.97,20.205,13.224,17.567,-7.903,12.16,21.442,20.004,19.581,1.354,21.404,24.589,14.186,5.51,7.144,-4.155,12.113,17.251,19.587,2.461,6.488,4.329,19.854,6.863,11.728,5.129,7.544,8.783,21.745,11.589,24.867,7.338,3.425,-4.559,3.798,8.744,16.765,20.386,12.329,6.037,11.308],[26.38,24.194,13.138,16.388,11.928,12.233,5.574,0.34,8.217,18.695,28.817,34.266,8.796,2.013,17.714,18.553,12.707,19.763,15.785,11.445,7.051,0.261,20.905,15.435,6.718,1.218,4.895,25.314,13.717,10.502,-0.462,14.083,3.887,13.635,12.346,-3.07,1.959,8.624,18.099,-7.681,0.681,6.258,13.103,12.232,-5.879,20.671,22.656,21.08,18.436,13.172,5.001,-4.11,8.127,24.817,19.059,7.053,7.004,11.559,6.71,5.566,17.786,3.677,20.106,11.512,23.931,19.584,7.575,14.998,8.772,0.815,9.384,-0.575,27.873,16.545,7.038,29.532,24.569,0.254,27.102,26.716,10.397,16.011,13.191,10.362,12.736,13.195,13.053,36.079,5.358,19.532,10.336,34.123,2.289,17.978,15.366,16.359,18.676,12.754,22.426,6.516,6.096,18.869,17.562,12.342,12.258,1.12,12.911,20.302,-0.355,16.29,10.99,7.596,11.894,21.186,23.794,1.05,19.36,-2.172,26.542,6.154,6.376,13.642,2.559,4.047,9.341,-1.601,5.167,12.462,4.387,10.862,0.059,13.514,14.995,15.389,7.872,16.357,3.09,-2.683,12.401,11.584,8.128,-5.088,13.318,18.49,7.713,5.543,20.281,2.582,20.89,0.709,-6.407,-6.928,20.906,13.305,18.175,-7.671,12.502,21.417,19.258,19.86,1.934,21.844,24.065,14.338,5.211,7.066,-4.384,11.63,16.974,19.275,2.841,6.756,4.144,19.792,6.906,11.444,4.914,7.589,8.512,21.988,11.476,24.846,6.746,3.726,-4.328,3.859,8.549,16.754,20.727,12.418,6.409,11.345],[26.44,24.147,13.009,16.358,11.804,12.231,5.342,0.338,8.174,18.598,28.687,33.989,8.74,2.15,17.529,18.3,12.725,19.814,16.04,11.434,7.167,0.281,21.013,15.402,6.767,1.066,4.775,25.248,13.703,10.631,-0.58,14.187,4.026,13.712,12.411,-2.919,2.033,8.551,18.019,-7.53,0.561,6.365,13.116,12.066,-5.556,20.665,22.834,21.37,18.718,12.901,4.836,-4.339,8.004,24.66,19.252,7.003,6.903,11.377,6.645,5.674,17.844,3.87,20.404,11.576,23.576,19.098,7.729,14.809,8.713,0.438,9.579,-0.221,27.767,16.286,6.708,29.293,24.613,-0.206,26.876,26.57,10.402,15.787,13.102,10.27,13.23,13.144,13.145,35.901,5.701,19.667,9.959,34.093,2.35,18.486,15.382,16.576,18.425,12.601,22.108,6.537,6.392,18.856,17.622,12.001,11.991,0.991,13.324,20.082,-0.296,15.768,11.041,7.625,12.389,21.175,24.447,0.345,19.533,-2.302,26.856,6.112,6.314,13.143,2.609,4.055,9.294,-1.484,5.622,12.712,3.543,10.757,0.152,13.2,14.609,15.607,7.899,16.268,3.225,-2.202,12.138,11.79,8.046,-4.887,13.32,17.937,7.946,5.46,20.547,2.895,21.284,0.439,-6.212,-6.727,20.56,13.53,18.211,-7.218,12.585,21.915,19.171,20.317,2.188,21.331,24.763,14.313,4.819,7.256,-4.319,11.449,17.213,19.247,2.948,6.744,3.886,20.33,6.621,12.027,4.889,7.251,8.816,22.247,11.307,24.721,6.594,4.012,-4.943,4.087,8.413,16.861,20.879,12.384,6.163,12.276],[26.535,24.189,12.958,16.228,11.805,12.266,5.279,0.204,8.182,18.476,28.556,33.798,8.609,2.252,17.197,18.231,12.722,20.0,16.24,11.664,7.288,0.266,21.107,15.532,6.866,0.96,4.638,25.322,13.75,10.815,-0.709,14.297,3.997,13.731,12.495,-2.694,2.164,8.5,17.926,-7.546,0.335,6.423,13.166,12.023,-5.349,20.719,22.91,21.558,18.893,12.616,4.85,-4.65,7.97,24.427,19.53,6.97,6.712,11.234,6.623,5.784,17.968,4.014,20.757,11.649,23.508,19.444,8.16,14.605,8.528,0.622,9.483,0.253,27.907,16.091,6.595,29.451,24.049,-0.18,26.864,25.979,10.377,15.762,13.13,10.418,12.753,13.42,12.941,35.631,5.718,19.631,9.951,33.93,2.641,17.596,15.62,16.693,18.111,12.693,22.261,5.664,6.557,18.943,17.763,12.716,11.72,0.534,12.891,20.018,-0.408,15.578,11.041,7.082,11.812,20.665,24.466,0.525,19.365,-2.557,26.5,6.078,6.136,12.659,2.527,4.352,9.14,-1.131,5.395,12.758,4.052,10.742,-0.147,13.32,14.705,15.533,8.13,16.211,3.776,-2.122,12.297,11.733,8.245,-4.421,12.877,17.699,7.675,5.459,20.773,2.564,20.844,0.718,-6.304,-6.46,20.547,13.449,18.141,-7.231,12.038,22.332,19.573,20.102,1.875,21.223,24.51,13.908,5.057,7.212,-4.442,11.804,17.084,19.675,3.108,6.67,4.394,20.934,6.583,11.792,4.965,6.621,8.782,22.595,11.054,24.147,6.895,3.457,-5.266,3.977,8.538,17.298,20.956,12.407,5.837,12.376],[26.575,24.155,12.931,16.102,11.89,12.257,5.352,0.098,8.304,18.452,28.448,33.715,8.738,2.426,16.933,18.205,12.75,20.294,16.428,11.725,7.318,0.255,21.032,15.573,6.673,0.909,4.382,25.288,13.724,10.824,-0.787,14.316,3.996,13.642,12.534,-2.393,2.465,8.535,17.853,-7.571,0.085,6.49,13.172,12.009,-5.175,20.759,22.807,21.43,18.818,12.272,4.925,-5.015,8.136,24.115,19.722,6.801,6.548,11.126,6.59,5.719,18.043,4.255,21.036,11.682,23.876,19.52,7.929,14.486,8.361,0.851,9.273,-0.031,28.096,16.089,6.612,29.375,24.261,-0.218,27.041,26.21,10.492,15.364,13.041,10.856,12.5,13.61,13.21,35.44,5.602,19.521,10.237,33.833,2.767,16.72,15.999,16.432,18.491,12.508,22.324,5.901,6.288,19.02,18.208,12.395,12.562,1.009,12.487,19.91,-0.442,15.804,11.392,7.708,12.223,20.279,24.0,1.058,19.427,-2.33,26.678,6.468,6.02,12.955,2.234,4.108,9.184,-0.946,4.8,12.939,4.728,10.894,-0.347,13.56,15.291,15.467,7.886,16.174,4.094,-2.168,12.583,11.646,8.368,-4.386,12.132,17.892,7.271,6.208,20.721,2.334,20.816,0.712,-6.431,-6.557,21.186,13.682,18.521,-6.913,12.148,22.411,19.342,20.171,1.363,21.354,23.303,13.571,5.541,7.141,-4.878,12.163,16.82,20.258,3.324,6.95,4.646,20.801,6.764,11.864,4.862,6.441,8.505,22.796,10.762,24.759,6.742,3.335,-4.872,4.091,8.297,17.249,21.082,12.416,5.683,11.904],[26.566,24.186,12.918,16.037,12.016,12.318,5.525,0.02,8.445,18.551,28.406,33.678,8.882,2.616,16.809,18.15,12.567,20.531,16.702,11.844,7.272,0.334,20.826,15.454,6.662,0.931,4.129,25.253,13.721,10.667,-0.694,14.382,4.053,13.586,12.555,-2.288,2.643,8.629,17.765,-7.446,-0.115,6.611,13.229,11.983,-4.943,20.736,22.545,21.411,18.743,12.03,5.062,-5.147,8.33,24.003,19.664,6.571,6.419,11.077,6.472,5.669,17.948,4.539,21.102,11.558,23.875,19.597,7.648,14.307,8.65,0.897,9.262,0.236,28.142,16.046,6.693,28.978,24.196,-0.442,26.637,26.729,10.546,15.038,12.92,10.57,12.896,13.595,13.309,35.553,5.921,19.39,10.329,33.782,2.547,17.462,16.189,16.067,18.459,12.461,21.997,5.793,5.837,19.081,18.473,12.388,12.615,1.529,12.624,19.782,-0.548,15.928,11.589,7.969,12.592,20.846,24.218,0.72,19.087,-2.482,26.873,6.974,5.955,13.094,2.37,3.75,8.837,-0.788,4.647,12.733,4.913,11.186,-0.421,12.817,15.344,15.538,8.26,16.168,4.425,-1.738,12.466,11.637,8.369,-4.143,12.029,17.757,6.896,7.143,20.518,2.874,21.075,0.83,-6.148,-6.504,21.354,13.507,18.395,-6.794,11.916,22.006,19.108,19.873,0.971,20.96,23.442,13.304,5.398,7.116,-5.294,12.306,17.041,20.312,3.691,6.924,4.795,20.729,6.504,11.799,4.914,6.792,8.251,22.969,10.223,24.393,7.177,3.512,-5.596,4.168,8.049,17.668,21.17,12.431,5.994,10.781],[26.704,24.219,12.963,16.073,12.058,12.452,5.792,-0.025,8.564,18.663,28.42,33.729,8.737,2.651,16.823,18.171,12.457,20.64,16.862,11.983,7.14,0.395,20.518,15.205,6.807,0.914,4.061,25.336,13.773,10.465,-0.599,14.383,3.987,13.499,12.517,-2.336,2.698,8.714,17.544,-7.199,-0.212,6.886,13.34,11.812,-4.77,20.704,22.197,21.568,18.688,11.883,5.168,-5.343,8.302,24.175,19.539,6.342,6.366,10.897,6.445,5.61,17.912,4.827,21.087,11.338,23.374,19.707,7.766,14.339,9.341,0.81,9.347,-0.051,27.983,16.311,7.039,28.602,24.409,-0.291,26.722,26.301,10.608,15.542,13.23,10.61,12.917,13.782,13.579,35.532,6.215,19.371,10.219,33.826,2.699,17.961,16.864,16.283,17.969,12.689,21.6,6.205,5.877,19.149,18.548,11.912,12.355,1.162,12.319,19.959,-0.516,15.705,11.165,7.922,12.573,21.873,24.207,0.699,18.882,-2.443,26.699,6.707,5.634,12.986,2.305,3.717,8.721,-1.05,5.133,12.615,4.589,11.62,0.222,12.738,14.923,15.296,8.624,15.731,3.958,-1.685,12.418,11.711,8.521,-3.699,12.432,17.842,7.058,7.002,20.591,3.543,20.97,-0.092,-5.963,-6.196,20.833,13.738,18.038,-6.52,12.092,21.594,19.168,20.127,1.098,20.79,23.999,13.214,5.01,7.585,-4.9,12.239,16.825,19.754,3.851,6.848,5.141,21.097,5.944,11.783,5.085,7.382,8.231,22.829,10.45,24.351,7.078,3.625,-6.027,4.008,8.196,17.309,20.956,12.155,5.85,10.753],[26.86,24.254,13.004,16.244,12.198,12.62,6.006,-0.039,8.75,18.765,28.514,33.83,8.453,2.7,17.006,18.28,12.531,20.699,16.87,12.122,7.051,0.348,20.242,15.027,7.007,0.85,4.17,25.433,13.702,10.254,-0.556,14.299,3.817,13.439,12.499,-2.438,2.683,8.792,17.343,-7.067,-0.392,7.161,13.493,11.622,-4.583,20.712,21.906,21.624,18.599,11.954,5.118,-5.574,8.137,24.393,19.372,6.168,6.303,10.735,6.537,5.556,17.924,5.087,21.176,11.117,23.136,19.679,7.556,14.706,9.442,1.202,9.362,-0.158,27.941,16.47,7.07,28.915,24.125,-0.495,26.68,26.245,10.887,15.317,13.452,11.058,12.608,14.002,13.575,35.615,6.377,19.436,9.724,33.713,3.304,17.479,17.75,16.151,18.025,12.273,21.566,6.429,6.033,19.648,18.422,11.883,12.392,0.79,12.305,19.902,-0.536,15.173,10.716,7.661,12.344,22.027,24.214,0.933,18.619,-2.3,26.558,6.2,5.653,13.086,2.17,4.063,8.578,-0.918,5.01,12.48,4.594,11.88,0.149,13.056,14.611,15.24,8.563,15.782,3.522,-1.993,11.995,11.863,9.026,-3.877,12.645,17.615,7.294,6.586,20.439,3.971,20.665,-0.621,-6.191,-5.902,20.777,14.253,18.113,-6.329,11.796,21.334,19.097,20.438,1.405,20.346,24.284,13.611,5.748,7.915,-4.844,11.833,16.9,19.647,3.841,6.629,5.57,21.112,5.662,11.657,4.928,6.987,8.026,22.811,10.659,24.388,6.63,4.0,-5.609,3.788,8.164,16.741,20.829,12.145,5.503,11.005],[27.018,24.184,13.027,16.459,12.394,12.692,6.04,-0.012,8.903,18.786,28.496,33.879,8.226,2.962,17.009,18.424,12.573,20.717,16.933,12.286,6.908,0.174,20.042,14.939,7.174,0.775,4.455,25.452,13.582,10.019,-0.655,14.162,3.812,13.476,12.482,-2.518,2.689,8.743,17.167,-7.104,-0.631,7.287,13.701,11.412,-4.433,20.657,21.633,21.545,18.577,12.251,5.016,-5.704,8.103,24.594,19.247,6.064,6.149,10.635,6.609,5.484,17.952,5.36,21.283,11.007,23.363,19.542,7.26,14.813,9.438,1.076,9.075,0.074,28.295,16.179,7.235,29.183,24.204,-0.369,26.657,26.675,10.85,15.556,13.153,10.858,12.539,13.885,13.661,35.722,6.129,19.994,9.396,33.913,3.492,17.179,17.681,15.745,18.132,12.435,21.439,6.35,6.258,19.944,18.265,12.488,13.055,1.152,12.466,19.362,-0.724,15.569,10.474,7.322,12.116,22.229,24.333,0.891,18.504,-2.485,26.9,6.786,5.847,12.88,2.099,4.441,8.484,-0.881,5.065,12.583,4.311,11.838,-0.357,13.095,14.551,15.328,8.635,16.269,3.592,-2.143,11.826,12.086,9.091,-4.067,12.552,17.273,8.198,6.595,20.312,3.815,20.008,-0.372,-6.189,-5.882,20.868,13.805,18.241,-6.326,11.972,21.312,19.414,20.245,1.095,20.031,24.014,13.806,6.086,7.328,-5.348,11.171,17.407,19.708,4.419,6.47,5.557,21.244,5.921,11.446,4.941,6.429,7.849,22.924,10.835,24.412,7.02,4.277,-5.297,3.735,7.828,16.513,20.826,12.013,5.512,11.23],[27.206,24.139,13.035,16.441,12.376,12.626,5.904,0.007,9.115,18.717,28.398,33.838,8.091,3.241,16.963,18.469,12.642,20.795,16.974,12.535,6.907,-0.005,19.903,15.059,7.413,0.793,4.832,25.528,13.439,9.92,-0.84,13.981,3.848,13.464,12.442,-2.462,2.72,8.713,17.05,-7.125,-0.809,7.265,13.783,11.276,-4.403,20.491,21.499,21.336,18.634,12.606,4.949,-5.801,8.223,24.832,19.204,6.019,5.983,10.493,6.565,5.368,17.892,5.579,21.369,11.025,22.884,19.408,7.598,14.898,9.145,1.454,8.772,-0.236,28.375,16.385,7.416,28.645,24.191,-0.195,27.087,26.708,10.816,15.465,13.132,10.726,12.681,13.993,13.518,35.399,5.988,20.122,9.662,34.208,3.178,17.397,16.933,15.859,18.5,12.845,21.232,5.878,6.121,19.983,18.59,12.173,12.737,1.389,12.624,18.996,-0.589,15.926,10.429,7.371,12.824,21.991,24.187,0.511,18.607,-2.663,26.841,7.07,5.905,12.515,2.353,4.601,8.216,-0.817,5.306,12.578,4.398,11.365,-0.162,13.397,14.666,15.272,8.846,15.82,3.959,-2.265,11.866,12.762,9.059,-3.708,12.385,17.191,8.65,6.935,20.587,3.231,20.554,0.09,-5.982,-6.203,21.052,13.792,17.991,-6.193,11.998,21.334,19.019,19.884,0.441,20.05,23.871,13.855,5.213,7.291,-5.474,11.517,17.63,19.628,4.584,6.531,5.609,21.233,6.388,11.935,5.639,5.886,7.788,23.037,11.43,25.006,7.065,3.596,-5.892,3.735,7.765,16.283,20.71,11.874,5.438,11.208],[27.331,24.115,13.035,16.266,12.368,12.51,5.676,-0.067,9.4,18.629,28.2,33.759,8.111,3.421,16.895,18.458,12.663,20.864,16.99,12.751,7.108,-0.117,19.976,15.291,7.521,0.881,5.12,25.583,13.265,10.05,-0.861,13.827,3.95,13.524,12.343,-2.349,2.715,8.711,16.858,-6.906,-0.892,7.238,13.893,11.293,-4.394,20.358,21.528,21.246,18.703,12.877,4.763,-5.995,8.394,24.982,19.082,6.022,5.842,10.481,6.363,5.254,17.617,5.669,21.483,11.147,23.118,19.591,8.056,14.973,9.143,1.78,8.873,-0.421,28.167,16.324,7.348,28.5,24.098,-0.483,26.637,26.807,10.671,15.193,13.206,10.728,12.83,13.851,13.239,35.505,5.924,19.766,9.661,33.813,3.624,18.021,16.578,15.991,18.767,12.718,20.919,6.366,6.11,19.989,18.674,11.905,13.036,1.306,12.085,19.12,-0.452,15.821,10.742,8.307,13.407,21.477,24.228,0.135,18.568,-2.698,26.873,6.556,6.349,12.394,2.379,4.83,8.398,-1.027,4.795,12.297,4.651,10.631,-0.024,13.147,14.636,15.384,9.103,15.276,4.317,-1.838,12.444,12.971,8.867,-3.574,12.215,17.104,8.844,7.107,20.475,2.728,20.644,-0.488,-5.857,-6.074,20.639,13.85,17.692,-6.276,11.5,21.058,18.656,19.512,0.872,19.822,24.292,14.484,5.339,7.42,-5.608,11.923,17.084,19.841,4.397,6.114,5.633,21.029,6.069,11.496,6.067,5.685,7.721,23.285,11.457,25.563,7.182,3.321,-6.169,3.412,7.836,16.24,20.48,12.362,5.223,10.826],[27.401,24.096,13.011,16.243,12.525,12.258,5.554,-0.166,9.624,18.647,27.969,33.778,8.161,3.503,16.889,18.536,12.426,20.842,16.887,12.906,7.365,-0.156,20.004,15.377,7.656,0.948,5.299,25.542,13.055,10.318,-0.88,13.729,3.901,13.636,12.234,-2.224,2.682,8.798,16.546,-6.541,-0.899,7.197,14.107,11.319,-4.503,20.344,21.573,21.238,18.639,13.078,4.865,-6.231,8.259,24.939,18.965,6.0,5.754,10.576,6.194,5.156,17.243,5.631,21.657,11.127,23.011,19.573,8.169,14.536,9.818,1.999,8.959,-0.494,28.297,16.252,6.942,28.448,24.555,-0.813,26.247,26.757,10.337,15.07,13.103,10.946,12.853,14.035,13.429,35.635,6.057,19.413,9.472,33.866,4.454,17.723,16.614,16.219,18.409,12.67,21.268,6.901,6.509,19.6,18.572,12.063,13.269,0.926,11.636,19.37,-0.631,15.708,10.816,8.342,13.569,21.303,24.248,0.394,18.425,-2.66,26.954,6.748,6.339,12.471,2.467,5.028,8.543,-0.461,5.158,11.997,4.574,10.405,-0.224,13.119,14.543,15.496,9.173,15.332,4.539,-2.066,12.718,12.602,8.873,-3.648,11.945,16.78,8.836,7.854,20.238,2.601,20.395,-1.241,-5.417,-5.566,20.388,13.884,17.355,-6.274,11.905,21.364,18.754,19.963,1.009,20.09,24.426,14.708,5.332,7.459,-5.657,11.937,16.845,19.847,4.43,6.147,5.762,21.141,5.431,11.929,5.47,5.578,7.869,23.437,11.997,25.252,6.896,3.81,-6.16,3.366,7.482,16.45,20.067,12.566,5.159,10.506],[27.49,24.058,13.004,16.334,12.754,12.181,5.532,-0.296,9.719,18.677,27.825,34.033,8.067,3.609,16.885,18.622,12.154,20.773,16.71,12.852,7.654,-0.135,19.968,15.305,7.824,1.046,5.299,25.445,12.986,10.343,-1.054,13.784,3.782,13.716,12.175,-2.11,2.789,8.956,16.303,-6.22,-0.92,7.552,14.206,11.379,-4.574,20.431,21.696,21.311,18.453,13.261,5.229,-6.343,8.031,24.847,18.886,5.984,5.695,10.633,5.965,5.128,17.072,5.535,21.744,11.125,23.074,19.357,8.099,14.838,10.133,1.737,8.872,-0.577,28.102,16.31,7.061,28.467,24.088,-0.722,26.261,26.646,10.396,15.28,13.259,11.436,12.839,14.302,13.126,35.803,5.857,19.784,9.569,34.093,4.118,16.81,16.969,16.0,18.17,11.711,21.468,6.589,6.727,19.561,18.069,12.47,12.858,0.725,12.024,19.839,-0.494,15.927,10.95,7.888,13.078,21.112,23.951,0.815,18.589,-2.857,26.675,7.085,6.388,12.206,2.495,5.305,8.714,-0.405,5.272,12.126,4.288,10.346,-0.382,13.674,14.446,15.568,9.442,15.596,4.366,-2.298,12.753,12.543,9.279,-3.589,11.239,15.368,8.396,6.936,20.202,2.589,20.57,-1.206,-5.137,-5.258,20.378,14.112,17.504,-6.48,12.174,21.393,19.222,20.058,0.734,19.959,23.559,14.859,5.144,7.597,-5.556,11.699,16.577,19.853,4.328,6.322,6.234,21.572,5.427,11.871,4.8,5.391,7.815,23.491,12.217,24.685,6.546,3.928,-6.608,3.293,7.534,16.166,20.178,12.476,5.102,11.089],[27.566,23.927,13.112,16.422,13.068,12.366,5.524,-0.469,9.75,18.806,27.784,34.261,8.036,3.455,16.75,18.595,11.902,20.785,16.529,12.618,7.61,-0.113,19.973,15.202,7.857,1.157,5.229,25.33,13.013,10.163,-1.327,13.98,3.653,13.822,12.194,-2.144,2.946,9.172,16.122,-6.058,-0.999,7.856,14.108,11.406,-4.512,20.574,21.728,21.315,18.324,13.491,5.508,-6.309,7.989,24.584,18.971,6.009,5.635,10.657,5.635,5.099,16.968,5.611,21.825,11.147,23.198,19.407,8.173,15.408,9.978,1.712,8.638,-0.47,28.19,16.488,7.151,28.462,24.22,-0.782,26.275,26.931,10.7,15.188,13.121,11.28,12.797,14.268,12.813,35.946,5.376,20.313,9.66,34.578,3.752,17.323,17.172,15.629,18.233,12.054,21.207,6.428,6.754,19.456,17.802,11.974,12.875,1.215,11.953,20.353,-0.144,16.205,11.27,8.271,12.342,20.769,23.857,0.856,18.662,-3.154,26.46,7.607,6.3,11.79,2.532,4.662,8.588,-0.387,4.93,12.436,4.397,10.477,-0.543,13.741,14.313,15.603,9.35,15.277,3.861,-1.919,12.481,12.994,9.78,-3.544,11.082,14.654,7.937,7.131,20.115,3.012,20.148,-0.623,-5.34,-5.331,20.583,14.141,17.824,-6.269,12.149,21.043,19.088,19.636,0.79,20.123,23.241,14.895,5.782,7.256,-5.941,11.928,16.329,19.649,4.771,6.401,6.265,21.381,5.635,11.417,4.924,4.816,7.845,23.452,12.024,24.813,6.853,3.918,-6.605,3.403,7.467,16.023,20.34,12.397,5.233,11.485],[27.785,23.824,13.203,16.627,13.15,12.597,5.449,-0.636,9.797,19.06,27.821,34.253,8.05,3.213,16.611,18.623,11.847,20.759,16.368,12.491,7.579,0.035,19.831,15.254,7.969,1.278,5.048,25.223,12.897,10.05,-1.651,14.156,3.597,13.868,12.304,-2.138,3.131,9.292,15.909,-6.247,-0.939,7.775,14.105,11.386,-4.332,20.567,21.607,21.159,18.405,13.673,5.686,-6.142,8.185,24.333,19.092,6.007,5.619,10.844,5.292,5.075,16.906,5.76,21.831,11.032,22.976,19.592,8.25,14.973,9.659,1.428,8.773,-0.817,28.304,16.611,7.334,28.309,24.12,-1.054,26.429,26.727,10.728,14.764,13.356,11.537,12.853,14.668,13.268,36.016,5.639,20.352,9.343,34.515,3.49,17.727,17.069,16.124,17.935,12.345,21.02,7.103,6.379,19.544,17.843,11.283,13.301,1.582,11.913,20.372,-0.156,15.712,10.813,8.429,12.642,20.656,23.86,0.493,18.545,-3.406,26.441,7.473,6.267,11.673,2.956,4.633,8.57,-0.89,4.865,12.559,4.076,10.89,-0.741,13.779,14.832,15.776,9.372,15.004,3.31,-1.822,11.367,12.732,9.712,-3.596,11.933,14.681,7.778,8.049,20.126,3.17,20.847,-0.828,-5.248,-5.328,20.65,14.026,17.5,-5.88,12.153,21.023,19.024,19.526,0.874,20.303,22.814,15.071,5.99,7.139,-6.445,12.071,15.956,19.816,4.92,6.148,6.443,21.374,5.628,12.011,5.008,4.384,7.866,23.488,12.102,25.135,7.004,3.881,-6.019,3.451,7.454,15.868,20.665,12.162,5.448,10.76],[28.057,23.702,13.194,16.675,13.158,12.749,5.511,-0.809,9.896,19.211,27.853,34.016,8.055,2.978,16.389,18.649,11.855,20.737,16.3,12.648,7.616,0.201,19.673,15.489,8.161,1.251,4.94,25.127,12.749,10.022,-1.908,14.325,3.562,14.12,12.261,-2.171,3.257,9.249,15.787,-6.489,-0.949,7.47,14.023,11.351,-4.171,20.583,21.62,21.021,18.505,13.618,5.832,-5.908,8.423,24.043,19.282,5.961,5.683,10.934,5.097,5.046,16.709,6.027,21.855,10.966,23.073,19.639,8.168,15.242,9.975,1.105,9.052,-0.734,28.224,16.563,7.082,28.608,24.19,-1.454,26.197,26.706,11.1,14.842,13.679,11.959,13.125,14.67,14.018,35.706,5.375,19.985,9.419,34.002,3.252,17.327,16.515,16.377,17.681,12.315,20.85,7.272,6.375,19.686,17.897,11.66,12.795,1.947,12.002,20.51,-0.319,15.622,10.672,8.508,13.748,20.838,23.803,0.334,18.357,-3.719,26.713,7.268,6.127,11.708,2.772,5.017,8.54,-0.63,5.031,12.591,4.184,11.735,-1.025,13.806,15.34,15.991,9.639,14.782,3.449,-1.998,10.925,12.484,9.109,-3.223,12.646,14.882,7.778,7.406,20.162,2.967,20.973,-1.439,-5.335,-5.511,20.264,14.043,17.232,-5.937,12.342,21.198,18.989,19.386,0.867,19.973,23.21,15.154,5.68,7.823,-6.35,12.447,16.702,19.987,4.317,6.05,6.251,21.68,5.958,12.195,4.428,4.211,7.78,23.407,12.795,24.749,7.026,4.036,-6.352,3.261,7.612,16.331,20.752,11.883,5.096,10.406],[28.275,23.608,13.224,16.524,13.232,12.803,5.545,-0.938,10.003,19.171,27.825,33.752,8.081,2.653,16.195,18.593,12.062,20.746,16.375,12.953,7.553,0.396,19.601,15.624,8.336,0.977,5.076,25.097,12.607,9.991,-2.05,14.505,3.554,14.531,12.231,-2.22,3.27,9.192,15.834,-6.628,-1.25,7.102,13.873,11.374,-4.152,20.625,21.904,20.815,18.558,13.487,5.928,-5.917,8.671,23.852,19.436,5.998,5.751,10.913,4.976,4.969,16.501,6.219,22.027,11.004,22.774,19.959,8.391,15.933,10.054,0.963,8.982,-0.571,28.692,16.68,7.432,28.497,24.144,-1.63,26.054,27.005,11.509,14.714,13.779,11.49,12.547,14.608,14.276,35.461,5.205,20.498,9.466,34.078,3.564,16.854,15.97,16.385,18.394,11.919,20.649,7.29,7.055,20.038,17.979,11.67,12.431,2.026,11.822,20.356,-0.504,16.065,10.869,8.627,13.637,21.382,23.901,0.651,18.108,-3.705,26.706,7.92,6.113,11.712,2.21,5.262,8.429,-0.479,5.08,12.776,3.94,11.669,-0.879,13.995,15.272,16.397,9.116,14.602,4.157,-2.139,11.029,12.268,8.905,-3.126,12.746,15.084,7.958,6.799,19.761,2.63,20.224,-1.316,-5.554,-5.631,20.212,14.314,17.082,-5.945,11.929,21.147,19.008,19.302,0.588,20.299,23.563,14.774,5.431,8.403,-5.454,12.255,16.344,20.174,4.579,6.192,6.344,21.542,5.882,11.561,4.029,4.317,7.835,23.668,12.619,23.807,7.078,4.597,-6.646,3.091,7.519,16.918,20.724,12.203,5.112,11.045],[28.553,23.532,13.176,16.353,13.159,12.801,5.551,-1.001,10.067,19.434,27.809,33.662,7.99,2.341,16.207,18.567,12.166,20.916,16.56,13.276,7.561,0.599,19.518,15.667,8.519,0.597,5.372,25.13,12.416,9.816,-2.041,14.76,3.353,14.709,12.257,-2.283,3.198,9.034,15.975,-6.705,-1.54,6.963,13.846,11.353,-4.164,20.473,22.211,20.701,18.551,13.214,6.157,-5.968,8.891,23.619,19.469,6.058,5.875,10.937,4.766,4.811,16.266,6.402,22.184,11.024,23.102,20.037,8.671,15.203,9.78,0.621,8.585,-1.165,28.727,16.694,7.35,28.442,23.557,-1.451,25.956,27.476,11.618,14.359,13.81,11.751,12.583,14.535,14.065,35.223,5.386,20.426,9.555,34.331,3.495,17.104,15.608,16.339,18.923,11.866,20.374,7.626,7.102,20.272,18.291,12.134,13.249,2.058,11.418,20.21,-0.678,16.486,10.969,8.423,12.961,20.81,24.171,0.775,17.7,-3.778,26.358,7.626,6.379,11.631,2.294,5.293,8.452,-0.88,4.558,13.031,3.963,10.892,-1.026,14.567,14.919,16.636,9.098,14.913,4.649,-1.815,11.207,12.003,8.741,-3.303,13.047,15.188,8.015,7.005,19.453,2.646,20.39,-1.488,-5.529,-5.666,20.634,14.353,17.103,-5.904,11.871,21.723,19.063,18.812,0.264,20.771,23.888,14.644,5.329,8.581,-5.022,12.126,15.756,20.111,4.724,6.025,6.553,21.787,5.713,11.809,3.793,4.232,7.823,23.999,12.081,23.9,7.133,4.961,-6.471,3.152,7.745,16.847,20.994,12.377,5.623,11.444],[28.793,23.487,13.098,16.07,13.209,12.822,5.507,-1.003,10.092,19.745,27.832,33.786,7.936,2.196,16.453,18.682,12.027,21.099,16.746,13.463,7.587,0.646,19.398,15.669,8.409,0.487,5.614,25.283,12.255,9.742,-2.018,14.943,3.104,14.641,12.406,-2.359,3.151,8.806,16.041,-6.633,-1.677,7.004,13.893,11.445,-4.127,20.222,22.481,20.671,18.493,12.999,6.396,-5.874,8.856,23.507,19.459,6.088,6.143,11.034,4.51,4.668,16.113,6.411,22.234,11.167,23.266,19.81,8.743,15.335,9.553,0.54,8.561,-1.187,28.365,16.404,7.277,28.298,23.626,-1.43,26.182,28.148,11.257,14.741,13.686,11.786,13.39,14.718,13.735,35.502,5.101,20.219,9.514,34.03,2.73,17.389,15.342,16.267,18.715,12.483,20.002,7.205,6.663,20.818,18.322,12.213,13.289,2.035,11.24,19.888,-0.896,16.206,10.724,8.883,13.561,20.526,23.928,0.421,17.889,-3.873,26.53,7.126,6.547,11.329,2.28,5.147,8.319,-0.869,4.301,13.308,4.036,10.788,-1.49,14.085,15.24,16.605,9.127,15.396,4.755,-1.945,12.289,12.101,8.502,-2.971,12.851,15.174,7.772,7.056,18.8,2.682,20.254,-2.0,-5.61,-5.531,20.532,14.312,17.507,-5.819,11.552,21.988,18.531,18.794,0.01,20.797,23.894,14.227,5.755,8.887,-5.61,12.362,15.558,19.804,5.195,5.75,6.521,22.037,5.792,12.068,3.472,3.826,7.883,23.908,11.764,24.172,7.196,5.236,-6.288,2.964,8.032,15.909,20.777,12.345,5.415,11.319],[28.896,23.482,13.068,15.822,13.287,12.82,5.512,-0.968,10.118,19.708,27.912,33.993,8.137,2.134,16.756,18.664,11.951,21.234,16.826,13.592,7.561,0.565,19.235,15.512,8.113,0.594,5.577,25.486,12.123,9.785,-2.09,15.061,2.861,14.56,12.86,-2.443,3.054,8.672,15.968,-6.542,-1.784,6.991,13.94,11.378,-4.041,19.951,22.611,20.731,18.473,12.762,6.539,-5.82,8.706,23.537,19.355,6.12,6.357,11.045,4.226,4.531,15.945,6.334,22.282,11.351,22.988,20.63,8.796,15.444,9.678,0.226,9.196,-0.478,29.051,16.281,7.146,28.453,23.535,-1.084,26.188,28.242,11.067,15.162,13.865,11.609,13.061,14.653,13.705,35.827,5.153,20.626,9.27,33.97,2.632,17.392,15.5,16.511,18.739,12.183,20.201,7.251,6.783,21.295,18.209,11.673,12.983,2.04,11.25,20.057,-1.02,15.789,10.315,8.499,14.328,21.406,24.269,0.216,18.239,-3.926,26.988,7.537,6.53,10.947,1.934,5.374,8.515,-0.82,4.126,13.406,3.67,10.978,-1.511,13.714,15.694,16.44,8.36,14.614,4.778,-2.188,13.124,12.263,8.505,-2.87,12.927,15.203,7.562,7.235,18.841,3.239,19.599,-2.347,-5.792,-5.34,20.235,14.355,17.338,-5.848,11.441,22.171,18.309,18.94,-0.025,20.962,23.94,14.207,5.695,8.877,-5.053,12.738,15.378,20.175,4.808,5.716,6.85,21.922,5.695,12.739,3.26,3.22,7.936,23.959,11.651,24.161,7.281,5.448,-6.001,2.731,8.199,15.265,20.525,12.162,5.401,11.226],[28.91,23.392,12.92,15.715,13.359,12.701,5.526,-0.773,10.254,19.675,28.03,34.176,8.385,2.113,16.811,18.707,11.86,21.334,16.894,13.64,7.704,0.444,19.074,15.309,7.931,0.579,5.384,25.742,12.036,9.754,-2.292,15.056,2.64,14.558,13.284,-2.42,3.067,8.56,15.817,-6.637,-1.867,7.001,13.927,11.191,-4.002,19.75,22.637,20.7,18.542,12.621,6.558,-5.644,8.713,23.676,19.289,6.109,6.486,11.041,3.954,4.52,15.877,6.197,22.273,11.47,23.431,20.581,9.037,15.336,10.253,0.324,9.249,-0.45,29.087,15.948,7.379,28.805,23.771,-1.076,26.206,27.82,11.04,15.205,13.359,11.915,12.993,14.601,14.26,35.991,5.446,20.422,9.785,34.256,3.141,17.686,15.62,16.429,18.25,12.333,20.264,7.327,6.766,21.627,18.353,11.559,13.254,1.926,11.477,19.641,-0.966,16.01,10.315,7.983,14.347,21.96,24.713,0.282,18.479,-4.056,27.15,7.606,6.321,10.484,2.174,5.722,8.377,-0.871,4.03,13.351,3.305,11.542,-1.273,13.984,15.715,16.339,8.551,14.627,4.722,-2.682,13.098,12.341,8.757,-3.109,12.752,15.165,7.317,7.216,19.507,3.312,19.674,-2.129,-5.691,-5.167,20.315,14.934,16.893,-5.758,11.545,22.253,18.913,18.864,0.004,21.048,24.072,14.159,5.416,8.551,-4.5,12.625,14.909,20.331,4.872,5.753,6.51,21.683,5.621,12.624,3.126,2.837,7.875,24.072,11.62,24.296,6.986,5.834,-6.049,2.703,8.432,15.179,20.429,12.488,5.894,10.873],[28.753,23.432,12.71,15.498,13.45,12.621,5.659,-0.48,10.507,19.653,28.146,34.257,8.524,2.31,16.788,18.711,11.932,21.466,17.1,13.593,7.996,0.291,18.969,15.363,7.846,0.545,5.228,25.997,11.954,9.657,-2.532,14.97,2.496,14.523,13.265,-2.374,3.116,8.468,15.783,-6.788,-1.893,7.139,13.969,11.114,-4.019,19.771,22.673,20.549,18.571,12.619,6.551,-5.328,8.821,23.925,19.335,6.028,6.54,11.012,3.701,4.643,15.842,6.068,22.116,11.605,23.247,19.972,8.849,15.689,10.732,0.502,8.817,-0.651,29.042,16.422,7.435,28.597,23.402,-1.431,26.362,27.843,11.403,15.217,12.923,11.803,12.973,14.808,14.335,35.919,5.169,20.387,10.041,34.556,3.137,17.841,15.57,15.991,18.11,11.907,19.582,7.038,6.848,21.941,18.506,11.782,13.63,2.049,11.766,19.07,-0.594,15.902,10.752,8.604,14.141,21.792,24.675,0.243,18.694,-4.297,27.352,7.149,6.277,10.27,2.328,5.112,8.435,-0.888,3.859,13.197,3.472,11.939,-1.541,13.943,15.602,16.414,8.813,15.068,4.836,-2.533,13.53,12.174,8.933,-2.913,12.617,14.825,7.416,6.674,20.045,2.987,19.646,-2.179,-5.596,-5.981,20.222,14.515,17.295,-5.74,11.241,22.38,18.6,18.836,-0.356,20.944,23.612,13.927,4.952,9.32,-5.235,11.727,14.953,20.508,4.759,5.891,6.486,21.671,5.595,11.982,2.781,2.446,7.797,23.89,11.82,24.39,6.939,6.304,-6.227,2.973,8.355,15.566,20.443,12.997,6.184,10.977],[28.514,23.501,12.536,15.357,13.41,12.77,5.762,-0.379,10.652,19.507,28.26,34.219,8.447,2.49,16.764,18.695,12.136,21.672,17.33,13.528,8.115,0.18,18.935,15.524,7.816,0.54,5.081,26.221,11.909,9.755,-2.765,14.925,2.444,14.384,13.123,-2.334,3.172,8.536,15.802,-7.088,-1.946,7.265,13.986,11.078,-4.042,19.872,22.736,20.47,18.49,12.54,6.489,-5.207,9.169,24.148,19.579,5.855,6.478,10.915,3.4,4.809,15.859,5.901,21.934,11.729,23.169,20.469,8.953,15.119,10.633,0.695,9.196,-0.354,28.869,16.55,7.45,28.928,23.41,-0.859,26.32,27.949,11.195,15.057,12.989,11.814,12.68,14.722,14.235,35.883,5.139,20.122,9.783,34.459,3.429,17.422,15.898,16.363,18.157,12.021,19.094,7.502,6.973,21.986,18.894,11.922,13.312,1.988,11.829,18.611,-0.952,16.119,10.583,8.376,13.927,21.272,24.73,0.176,18.421,-4.629,27.445,7.723,6.276,10.148,2.08,5.042,8.305,-0.932,3.68,13.129,3.639,11.282,-2.268,13.804,15.392,16.227,8.369,14.872,4.483,-2.394,13.297,12.329,9.079,-3.07,12.863,14.921,7.595,6.81,20.214,2.772,19.195,-2.21,-5.781,-6.231,19.913,13.967,18.116,-5.828,11.141,22.373,18.542,18.848,-0.206,20.996,23.425,14.178,5.064,9.658,-4.842,11.225,15.163,20.76,4.72,6.282,6.324,21.528,5.301,12.452,2.551,2.33,7.699,23.784,12.136,24.79,7.56,6.357,-5.738,3.172,8.325,15.446,20.525,12.816,6.304,11.245],[28.367,23.509,12.44,15.236,13.221,13.018,5.743,-0.332,10.634,19.399,28.449,34.218,8.431,2.629,16.6,18.608,12.252,21.899,17.397,13.379,8.069,0.209,18.995,15.642,7.907,0.385,5.075,26.447,11.895,9.832,-2.948,15.001,2.552,14.122,12.84,-2.297,3.108,8.656,15.801,-7.236,-2.019,7.339,14.001,11.087,-4.11,19.848,22.86,20.483,18.445,12.447,6.538,-5.119,9.673,24.34,19.737,5.654,6.541,10.7,3.22,4.978,15.891,5.799,21.815,11.791,23.271,20.482,9.153,14.563,9.958,0.841,9.529,-0.452,28.428,15.954,7.417,28.894,23.686,-0.842,26.689,27.347,11.188,14.941,12.838,11.825,12.733,14.563,13.875,36.134,5.432,20.235,9.547,34.093,3.43,17.507,16.564,16.798,18.095,13.039,19.224,7.304,7.052,21.764,19.173,12.383,13.038,2.053,11.526,18.642,-1.011,16.377,10.186,7.92,13.842,20.819,24.896,-0.249,17.464,-4.786,27.47,7.894,6.021,10.251,2.011,5.398,8.423,-0.627,3.651,13.401,3.39,11.099,-2.032,13.461,15.255,15.964,8.703,14.819,4.305,-2.182,12.731,12.371,9.232,-3.587,12.357,15.056,7.277,7.515,20.259,2.726,19.321,-2.227,-6.015,-5.98,20.354,13.943,18.388,-5.963,11.45,22.633,18.637,18.755,-0.133,21.239,24.007,13.972,5.263,10.192,-4.64,11.849,15.141,20.692,4.42,6.149,6.21,21.644,5.443,12.929,2.438,1.768,7.441,23.594,11.745,25.263,7.834,5.759,-5.226,3.129,8.268,14.982,20.903,12.921,5.912,10.992],[28.125,23.548,12.453,14.987,13.016,13.275,5.649,-0.342,10.516,19.157,28.704,34.219,8.495,2.702,16.492,18.543,12.421,22.08,17.303,13.15,8.01,0.254,19.096,15.823,7.923,0.263,5.174,26.554,11.852,9.803,-2.873,15.083,2.643,13.797,12.565,-2.136,2.988,8.735,15.798,-7.183,-2.004,7.5,13.986,10.944,-4.286,19.785,22.999,20.626,18.551,12.263,6.462,-4.862,10.072,24.64,19.773,5.522,6.572,10.535,3.002,4.992,15.848,5.763,21.807,11.93,23.635,19.925,9.228,14.91,9.758,0.964,9.383,-0.082,29.054,15.896,7.24,28.906,23.239,-1.389,26.812,27.542,11.405,14.721,12.897,11.554,12.465,14.425,13.784,35.983,5.531,20.321,9.909,34.023,3.343,17.586,16.984,16.729,17.88,12.575,19.314,7.184,6.827,21.465,19.041,12.056,12.812,1.809,11.286,18.957,-0.917,15.816,10.481,8.782,13.603,20.984,25.148,-0.561,17.29,-4.568,27.998,7.558,6.08,10.753,2.004,5.053,8.196,-0.67,4.11,13.597,3.516,10.95,-1.732,13.383,15.821,15.62,8.926,14.476,4.138,-1.944,12.059,12.991,9.198,-3.438,12.248,15.402,6.976,7.524,20.345,3.018,19.699,-2.486,-5.919,-6.468,20.076,14.748,17.983,-6.021,11.616,22.889,18.369,19.052,-0.237,21.314,24.625,13.826,5.575,10.589,-4.829,12.351,15.275,20.305,4.371,6.127,6.241,21.776,5.424,12.962,2.476,1.74,7.357,23.446,11.547,25.608,8.265,4.973,-5.928,3.237,8.352,14.676,20.955,12.671,6.178,10.548],[28.075,23.595,12.505,14.829,12.827,13.334,5.554,-0.324,10.439,18.779,28.872,34.171,8.621,2.737,16.405,18.544,12.305,22.255,16.983,12.89,7.914,0.296,19.258,15.928,7.905,0.208,5.159,26.645,11.852,9.702,-2.624,15.256,2.763,13.553,12.414,-1.982,2.836,8.749,15.82,-7.303,-1.935,7.567,14.193,10.731,-4.508,19.807,23.17,20.765,18.729,12.146,6.227,-4.718,10.197,25.025,19.744,5.515,6.661,10.457,2.822,4.917,15.848,5.773,21.902,11.981,23.531,19.559,9.015,14.839,10.038,0.887,9.174,-0.104,28.71,15.75,7.285,29.139,23.42,-1.375,27.227,27.507,12.065,15.044,12.974,11.593,12.22,14.469,14.395,35.932,5.258,19.874,10.157,34.265,3.429,17.497,17.01,17.072,18.316,12.621,19.408,7.543,6.722,21.301,18.606,11.971,12.401,1.359,10.908,19.193,-1.045,16.291,10.441,8.53,13.132,21.406,25.203,-0.746,17.434,-4.344,27.87,7.568,6.639,11.26,1.8,5.067,8.021,-0.455,4.277,13.48,3.558,11.091,-1.77,13.02,15.895,15.404,8.97,14.492,4.396,-1.656,11.406,13.188,9.25,-3.243,11.84,15.393,6.945,7.586,20.42,2.84,19.697,-2.21,-6.088,-6.193,20.023,15.202,17.821,-6.138,11.424,22.8,18.21,19.237,-0.115,21.508,25.333,13.73,5.79,10.754,-4.79,12.063,15.372,19.922,4.362,6.399,6.735,22.12,4.969,12.906,1.976,1.759,7.342,23.552,11.93,25.546,8.302,4.612,-6.097,3.339,8.395,14.554,21.24,12.582,6.602,10.438],[28.161,23.647,12.476,14.742,12.641,13.503,5.541,-0.229,10.407,18.397,28.954,34.3,8.689,2.696,16.382,18.648,12.13,22.37,16.651,12.663,7.842,0.206,19.319,16.068,7.658,0.186,5.006,26.592,11.83,9.513,-2.456,15.385,2.872,13.38,12.482,-1.852,2.802,8.695,15.951,-7.607,-1.875,7.533,14.465,10.461,-4.665,19.861,23.24,20.816,19.037,12.31,6.131,-4.622,10.082,25.388,19.708,5.537,6.787,10.416,2.622,4.98,15.807,5.884,21.949,11.901,23.464,19.583,8.714,14.068,10.162,0.863,9.445,-0.3,28.125,15.555,7.293,29.288,23.461,-0.56,27.485,27.707,12.12,14.905,12.603,11.897,12.586,14.509,14.977,36.121,5.114,19.397,9.93,34.332,3.37,17.501,16.437,17.064,18.603,12.271,19.693,7.443,6.93,21.401,18.502,12.264,12.504,1.455,11.063,19.506,-1.129,16.435,10.359,7.883,12.669,22.343,25.086,-0.666,18.32,-4.226,27.472,7.066,6.515,11.501,1.896,5.303,7.946,-0.307,4.099,13.533,3.602,11.306,-1.494,12.687,15.731,15.273,8.804,15.213,4.188,-1.566,11.682,13.387,9.156,-3.302,11.367,15.207,6.87,7.735,20.515,2.545,19.698,-1.681,-6.296,-6.202,20.206,15.092,17.795,-6.194,11.46,22.922,18.192,19.371,0.036,21.54,26.375,13.895,5.419,10.676,-4.774,11.142,15.317,20.086,4.69,6.239,6.984,22.734,4.662,12.885,1.095,1.857,7.38,23.51,11.287,25.751,8.376,4.574,-5.627,3.218,8.445,15.033,21.349,12.949,6.963,10.646],[28.25,23.74,12.494,14.61,12.565,13.611,5.616,-0.045,10.298,18.179,28.909,34.577,8.639,2.552,16.346,18.757,12.062,22.499,16.56,12.482,7.783,0.1,19.435,16.158,7.258,0.204,4.861,26.403,11.834,9.445,-2.341,15.297,2.867,13.146,12.726,-1.809,2.806,8.517,16.267,-7.835,-1.801,7.416,14.624,10.284,-4.646,19.894,23.164,20.853,19.284,12.435,6.137,-4.498,10.045,25.81,19.67,5.485,6.909,10.288,2.321,5.011,15.823,6.083,21.977,11.905,23.732,19.318,8.418,13.721,10.529,0.743,9.731,-0.203,28.856,15.535,7.354,28.713,23.635,-0.316,27.636,27.75,12.067,14.571,12.789,11.873,12.495,14.246,14.743,36.381,5.339,19.325,9.829,34.395,3.229,17.355,15.308,16.853,18.767,12.779,19.923,7.135,7.052,21.467,18.36,11.919,12.492,1.673,11.254,20.027,-1.172,16.351,10.126,7.953,13.215,23.291,25.074,-0.803,18.556,-4.022,27.683,6.747,5.73,11.233,1.799,4.886,8.076,-0.138,3.982,13.794,3.999,11.211,-1.675,13.003,15.983,14.925,8.865,15.197,3.895,-1.696,11.882,13.08,9.327,-3.727,11.404,15.645,7.267,7.421,20.84,2.897,19.678,-1.699,-6.386,-6.937,20.482,15.1,18.305,-6.228,10.832,23.041,18.409,19.109,0.028,21.46,26.812,14.035,5.007,10.73,-5.104,11.114,15.594,20.846,4.531,5.999,6.302,22.385,4.854,12.587,0.984,2.095,7.348,23.469,11.602,26.086,8.275,4.925,-5.511,3.205,8.592,15.536,20.713,12.777,7.184,10.619],[28.49,23.907,12.632,14.44,12.518,13.572,5.602,0.136,10.253,18.102,28.824,34.878,8.55,2.352,16.247,18.732,12.046,22.682,16.498,12.328,7.684,-0.002,19.66,16.143,7.017,0.247,4.618,26.311,11.911,9.527,-2.244,15.144,2.816,12.981,12.741,-1.742,2.746,8.442,16.641,-7.89,-1.767,7.316,14.545,10.15,-4.502,19.992,23.06,20.879,19.53,12.519,6.33,-4.543,10.134,26.273,19.576,5.323,7.113,10.254,2.091,4.968,16.108,6.0,21.936,11.812,23.734,18.915,8.538,14.04,10.516,0.535,9.446,0.102,29.287,15.517,7.499,28.657,23.62,-0.557,26.982,27.395,11.76,14.721,12.462,11.423,12.778,14.267,14.684,36.758,5.345,19.45,9.7,34.651,3.244,17.229,15.148,17.468,19.458,13.07,20.165,6.545,7.006,21.67,18.165,11.758,12.373,1.807,11.112,19.973,-1.186,16.581,10.181,6.986,13.424,23.971,24.886,-0.744,18.21,-3.958,27.538,7.055,6.015,10.71,1.76,4.664,8.189,0.154,4.308,13.594,3.731,11.062,-1.493,12.824,16.005,14.837,8.381,15.017,3.957,-2.029,12.417,12.761,8.864,-3.926,11.801,16.187,7.849,7.247,20.993,2.924,19.276,-1.962,-6.499,-7.007,20.571,15.114,18.887,-6.014,10.781,22.577,18.538,19.147,-0.017,21.515,26.105,13.651,5.101,10.576,-4.719,11.687,15.437,20.27,4.685,6.132,6.439,21.64,5.235,12.42,0.22,1.856,6.914,23.546,12.256,25.907,8.35,5.138,-5.342,3.248,8.808,15.425,20.777,13.079,6.933,10.125],[28.678,23.979,12.798,14.333,12.48,13.413,5.313,0.194,10.373,18.179,28.69,35.081,8.436,2.28,16.221,18.602,12.043,22.887,16.488,12.349,7.648,-0.017,19.882,16.259,6.906,0.297,4.562,26.251,11.923,9.662,-2.105,14.958,2.835,12.984,12.523,-1.74,2.544,8.419,16.883,-7.822,-1.862,7.201,14.325,10.184,-4.308,19.992,22.898,20.907,19.782,12.605,6.643,-4.487,10.228,26.356,19.387,5.101,7.251,10.388,1.767,5.01,16.512,5.809,21.717,11.776,23.816,18.836,8.576,13.642,10.328,0.482,9.311,0.068,29.442,15.188,7.235,29.24,23.786,-0.109,26.828,27.834,11.957,14.703,11.852,11.286,13.212,13.972,14.947,36.911,5.087,19.525,9.811,34.734,2.864,17.236,15.508,17.321,19.65,12.331,20.389,6.606,6.252,21.785,18.105,11.873,12.255,1.746,11.279,19.904,-1.054,16.152,10.741,7.332,12.574,24.474,24.949,-0.743,18.33,-3.969,27.18,7.412,5.983,10.439,1.935,4.611,8.176,0.063,4.416,13.063,3.374,10.531,-1.174,12.502,15.571,14.863,8.396,15.523,3.802,-1.795,12.743,12.442,8.784,-3.495,11.559,16.179,8.01,7.52,20.927,2.383,19.493,-1.959,-6.471,-6.804,20.33,14.691,19.415,-6.135,10.729,22.651,18.467,19.445,-0.128,21.236,25.778,13.842,5.55,10.239,-4.499,11.291,15.717,19.874,4.313,6.422,6.444,21.658,5.387,12.276,0.318,1.937,6.706,23.491,11.84,26.154,8.432,5.623,-5.577,3.35,9.114,15.118,20.977,13.494,6.539,10.18],[28.757,24.051,12.95,14.198,12.355,13.296,4.971,0.209,10.449,18.248,28.676,35.081,8.362,2.224,16.23,18.532,11.903,23.09,16.567,12.384,7.59,-0.032,20.043,16.393,6.985,0.46,4.696,26.247,11.818,9.824,-1.892,14.639,2.742,13.002,12.202,-1.796,2.22,8.482,17.059,-7.692,-1.954,7.179,14.026,10.261,-4.167,19.88,22.709,21.018,20.015,12.5,6.983,-4.449,10.245,26.231,19.242,4.977,7.258,10.343,1.605,5.229,16.845,5.63,21.471,11.963,23.6,19.292,8.644,13.802,10.587,0.42,9.323,-0.307,29.666,15.011,6.794,29.172,23.95,0.094,26.894,28.544,12.011,14.564,12.061,11.11,12.478,13.981,14.659,36.845,4.833,19.406,9.744,34.845,2.576,16.985,15.703,17.254,19.357,12.406,20.391,7.133,6.111,22.255,18.308,11.674,12.276,1.8,11.411,19.713,-1.124,16.497,11.017,7.861,11.967,24.676,24.919,-0.56,18.924,-3.578,27.119,7.205,5.582,10.538,1.849,4.529,8.361,-0.234,4.15,12.842,3.429,10.496,-1.16,12.99,15.307,14.802,8.923,15.954,3.836,-1.251,11.696,12.265,8.551,-3.372,11.605,16.204,7.806,7.59,20.665,2.06,20.019,-1.982,-6.412,-6.501,20.108,14.446,19.938,-5.923,10.778,22.798,18.395,19.537,-0.063,21.075,26.224,14.152,5.768,10.75,-4.67,11.685,16.218,19.992,3.953,6.217,6.418,21.864,4.731,12.641,0.157,1.63,6.541,22.993,11.825,26.331,8.387,5.839,-5.154,3.393,9.048,15.323,20.584,12.955,6.713,10.573],[28.895,24.076,12.911,14.227,12.328,13.233,4.834,0.197,10.479,18.308,28.677,35.001,8.318,2.148,16.286,18.425,11.698,23.365,16.645,12.482,7.544,0.017,20.205,16.534,7.219,0.594,4.723,26.305,11.727,9.974,-1.629,14.358,2.532,13.165,11.793,-1.8,1.96,8.723,17.299,-7.481,-2.006,7.113,13.765,10.347,-4.127,19.689,22.619,21.101,20.16,12.403,7.143,-4.474,10.272,26.089,19.218,4.912,7.247,10.229,1.51,5.319,17.042,5.497,21.291,11.992,23.601,19.573,8.758,13.947,10.783,0.331,9.495,-0.579,29.349,15.01,6.643,28.205,23.986,-0.309,27.083,27.904,11.62,14.59,12.941,11.097,12.55,13.925,14.334,36.816,4.852,19.261,9.319,34.617,2.903,16.717,16.023,17.398,19.51,12.254,20.438,6.684,6.522,22.695,18.412,11.73,11.965,1.689,11.224,19.6,-1.058,16.65,10.708,7.073,12.114,24.774,24.714,-0.467,19.066,-3.382,27.098,6.76,5.882,10.606,1.867,5.077,8.382,-0.203,3.735,12.714,3.746,10.346,-0.785,13.227,15.309,14.954,8.608,15.968,3.589,-1.445,11.055,12.212,8.347,-3.722,11.998,16.26,7.806,7.505,20.682,1.845,19.998,-1.99,-6.498,-6.329,20.539,14.376,20.323,-5.98,10.697,22.258,18.889,19.53,-0.051,20.967,27.07,13.723,6.346,11.258,-4.787,11.406,15.922,20.138,4.22,6.485,6.289,21.735,4.677,12.696,0.248,1.251,6.567,22.842,11.868,25.967,8.579,5.939,-4.575,3.48,8.921,16.025,20.251,12.987,7.193,10.373],[28.87,24.06,12.889,14.459,12.385,13.118,4.915,0.025,10.637,18.421,28.532,34.846,8.253,2.199,16.298,18.375,11.585,23.575,16.666,12.522,7.605,0.074,20.368,16.672,6.995,0.663,4.89,26.359,11.643,9.793,-1.363,14.169,2.435,13.434,11.536,-1.81,1.785,8.828,17.533,-7.34,-2.118,6.925,13.771,10.4,-4.153,19.598,22.448,21.169,20.244,12.397,7.111,-4.481,10.237,26.109,19.21,4.888,7.317,10.007,1.404,5.352,17.183,5.647,21.069,11.873,23.643,19.458,8.778,13.649,10.485,0.344,9.456,-0.479,29.591,15.311,6.767,28.245,23.956,-0.383,27.097,27.905,11.226,14.716,12.724,11.355,12.462,14.059,13.899,36.697,5.091,19.402,9.217,34.403,2.899,16.993,15.886,17.269,19.24,12.011,20.682,7.136,6.536,23.295,18.537,11.724,12.26,1.921,11.406,19.777,-0.797,16.762,10.791,7.868,12.427,24.629,24.961,-0.356,18.884,-3.225,27.052,6.595,5.873,10.503,2.1,4.461,8.293,-0.01,3.401,12.955,3.237,10.112,-0.668,12.859,15.432,15.313,8.851,16.102,3.273,-2.191,10.939,12.125,8.531,-4.321,12.152,16.671,8.335,7.26,21.219,1.905,19.414,-2.416,-6.262,-5.996,21.046,14.27,20.407,-5.839,10.816,22.088,18.611,19.587,-0.206,20.965,27.066,13.874,6.809,11.31,-5.0,11.178,15.888,20.047,3.92,6.63,6.142,21.184,5.033,12.171,0.146,1.763,6.54,22.789,11.389,25.737,8.625,6.115,-4.224,3.685,8.866,16.468,20.68,12.639,7.237,9.895],[28.915,24.028,12.94,14.671,12.49,12.781,4.976,-0.194,10.682,18.537,28.441,34.733,8.076,2.2,16.309,18.393,11.635,23.688,16.602,12.456,7.637,0.225,20.418,16.681,6.702,0.644,5.015,26.434,11.636,9.389,-1.212,14.268,2.451,13.565,11.569,-1.936,1.773,8.897,17.646,-7.096,-2.389,6.763,14.006,10.405,-4.229,19.53,22.304,21.198,20.283,12.339,7.052,-4.486,10.172,26.229,19.257,4.936,7.285,9.788,1.328,5.452,17.392,5.916,20.906,11.679,23.468,19.768,8.976,14.417,10.376,0.502,9.235,-0.44,29.405,15.666,6.739,28.633,23.859,-0.129,26.6,28.281,11.122,14.566,12.635,11.799,12.366,14.117,13.974,36.535,5.135,19.528,9.428,34.621,3.22,17.165,15.664,17.093,18.956,12.023,20.765,6.226,6.588,23.376,18.177,11.614,12.267,2.023,11.718,19.709,-0.779,16.853,10.813,7.079,13.143,24.605,24.983,-0.155,19.311,-2.834,27.322,7.324,6.241,9.959,2.238,4.369,8.069,-0.208,3.952,12.779,3.161,10.058,-0.749,12.939,15.245,15.396,9.034,16.141,3.152,-1.912,11.124,12.125,8.516,-4.536,12.055,17.133,8.406,7.059,21.737,1.677,19.633,-2.86,-5.965,-5.842,21.01,14.162,20.592,-5.859,10.985,22.16,18.078,19.985,-0.514,20.813,26.659,14.102,6.973,10.613,-4.424,11.21,16.41,19.908,4.101,6.34,6.178,20.42,5.235,12.171,0.466,1.716,6.481,22.2,11.592,25.972,8.355,5.786,-4.502,3.629,8.967,16.367,20.853,12.872,6.862,10.098],[29.138,23.962,13.0,14.984,12.768,12.487,4.949,-0.283,10.615,18.749,28.295,34.773,7.99,2.157,16.309,18.435,11.719,23.722,16.352,12.347,7.692,0.45,20.415,16.48,6.361,0.568,5.083,26.526,11.621,9.152,-1.123,14.406,2.566,13.582,11.681,-1.95,1.646,8.934,17.722,-6.824,-2.639,6.692,14.271,10.417,-4.378,19.519,22.364,21.278,20.326,12.301,6.879,-4.509,10.044,26.266,19.282,5.096,6.96,9.86,1.368,5.382,17.612,6.055,20.786,11.711,23.428,19.607,8.871,14.42,10.655,1.033,9.278,-0.073,29.256,15.581,6.777,28.81,24.118,-0.444,26.357,27.878,10.91,14.497,13.052,11.466,12.514,14.225,13.894,36.607,5.044,19.187,8.992,34.664,3.582,17.22,15.831,17.057,18.437,12.295,20.492,5.862,6.667,22.96,18.132,11.514,12.46,2.318,11.923,19.811,-1.058,16.651,10.27,7.045,13.535,24.608,24.85,0.069,19.973,-2.948,27.38,7.624,6.009,9.849,2.112,4.606,8.202,-0.449,4.03,12.701,3.243,9.961,-0.555,13.288,15.181,15.401,8.402,16.168,3.222,-1.616,11.256,12.472,8.512,-4.732,11.946,16.988,8.106,6.636,21.735,1.931,19.484,-2.994,-5.953,-5.589,20.665,14.797,21.169,-5.917,11.095,21.953,18.083,19.911,-0.775,20.717,26.857,13.616,7.275,10.41,-4.486,10.964,16.965,19.969,4.739,6.363,6.274,20.164,5.218,12.38,0.778,1.089,6.308,22.037,11.96,26.57,8.143,5.437,-5.218,3.506,8.814,16.489,20.506,12.988,6.422,9.918],[29.281,23.889,13.066,15.21,13.019,12.345,4.957,-0.3,10.613,18.761,28.136,34.854,8.098,2.136,16.303,18.563,11.79,23.688,16.082,12.328,7.65,0.833,20.413,16.143,6.177,0.53,4.919,26.534,11.636,9.087,-1.139,14.474,2.614,13.622,11.749,-1.837,1.424,8.885,17.722,-6.708,-2.764,6.765,14.485,10.541,-4.509,19.461,22.433,21.264,20.516,12.309,6.616,-4.741,9.782,26.315,19.222,5.275,6.504,9.983,1.462,5.16,17.86,6.028,20.623,11.833,23.557,19.776,8.684,14.106,10.859,1.815,9.25,0.206,29.552,15.307,6.791,28.62,23.648,-0.813,26.365,28.405,10.688,14.767,12.79,11.677,12.925,14.459,13.602,36.678,4.984,19.449,9.408,34.34,3.799,17.025,16.287,17.116,17.581,11.928,20.207,6.243,7.204,22.752,17.983,11.674,12.428,2.593,12.389,19.874,-1.105,16.531,10.68,7.464,13.083,24.263,25.038,-0.008,19.69,-2.77,27.456,6.672,5.98,9.762,1.642,4.606,8.128,-0.201,3.699,13.037,3.283,10.4,-0.271,13.372,15.455,15.479,8.597,16.114,3.142,-1.511,11.145,12.729,8.408,-4.735,12.18,17.078,7.704,6.675,21.179,1.806,19.425,-2.913,-5.961,-5.357,20.891,15.26,21.66,-6.259,10.761,22.658,18.408,19.835,-0.869,20.817,27.208,13.933,7.239,10.478,-4.624,10.795,16.667,20.111,4.486,6.431,6.449,20.735,5.461,12.595,1.237,0.896,6.406,22.136,11.818,26.328,8.009,5.106,-5.174,3.481,8.338,16.955,20.584,12.885,6.031,10.056],[29.45,23.82,13.126,15.063,13.217,12.275,5.095,-0.324,10.706,18.742,28.078,34.781,8.328,2.174,16.377,18.569,11.872,23.651,16.009,12.36,7.459,1.225,20.324,15.901,6.304,0.393,4.652,26.555,11.638,9.137,-1.154,14.549,2.448,13.588,11.87,-1.633,1.136,8.874,17.713,-6.702,-2.64,6.912,14.482,10.705,-4.488,19.458,22.665,21.144,20.681,12.468,6.277,-5.089,9.523,26.324,19.138,5.509,6.114,10.04,1.642,4.945,18.067,5.914,20.535,11.948,23.169,19.894,9.098,14.609,10.444,1.725,9.068,-0.137,29.595,15.703,6.847,28.426,23.768,-0.151,26.181,28.22,10.555,14.703,13.149,11.859,13.159,14.761,13.447,36.658,5.046,19.815,9.8,34.545,3.858,17.012,16.283,16.938,17.48,12.343,20.432,5.854,6.478,22.984,17.466,11.809,12.181,2.886,12.779,20.07,-1.151,16.367,10.769,7.135,12.317,23.956,25.038,0.221,18.945,-2.544,27.447,7.038,5.975,10.016,1.972,4.574,7.848,0.241,3.762,13.172,3.413,10.519,-0.441,13.19,15.314,15.4,9.075,16.188,2.961,-1.798,10.928,12.538,8.579,-4.167,12.528,17.03,7.642,7.03,21.075,1.081,19.689,-3.228,-5.633,-5.41,21.219,14.919,22.27,-6.316,10.674,22.548,18.166,20.172,-0.852,20.951,27.407,13.987,7.224,10.359,-4.9,11.298,16.745,19.885,4.127,6.152,6.25,20.579,5.412,12.549,0.759,1.585,6.787,21.98,11.446,25.891,7.77,5.096,-4.675,3.309,7.691,17.389,20.743,12.74,5.636,10.278],[29.609,23.709,13.304,15.03,13.297,12.273,5.221,-0.207,10.808,18.836,28.07,34.549,8.294,2.163,16.389,18.517,12.166,23.622,16.06,12.379,7.226,1.38,20.167,15.907,6.305,0.327,4.528,26.559,11.669,9.119,-1.039,14.524,2.317,13.498,11.94,-1.55,0.914,9.0,17.734,-6.718,-2.403,7.101,14.265,10.799,-4.251,19.57,22.767,21.088,20.851,12.561,6.004,-5.346,9.374,26.326,19.074,5.756,5.87,10.257,1.859,4.821,18.202,5.765,20.472,11.961,23.418,20.105,9.189,14.368,10.485,1.573,9.091,-0.438,29.432,15.665,7.104,28.386,23.662,-0.359,26.161,28.607,10.45,14.508,13.387,12.206,12.611,15.072,13.313,36.33,5.033,19.405,9.667,34.519,3.684,17.047,15.583,16.441,18.013,12.066,20.714,5.705,5.646,22.815,17.677,12.164,11.88,3.18,12.882,19.64,-1.203,16.521,10.558,7.241,11.88,23.915,24.982,0.676,18.958,-2.648,27.495,7.318,5.804,10.006,1.842,4.553,7.957,0.256,3.622,13.055,3.045,10.924,-0.919,13.073,15.609,15.354,8.756,16.298,2.662,-1.85,10.75,12.645,8.758,-3.778,12.273,16.905,8.17,7.193,20.948,0.317,19.493,-3.444,-5.985,-5.475,20.168,14.426,22.683,-6.103,11.5,22.796,18.246,19.838,-0.641,21.39,27.657,14.019,7.401,10.504,-5.406,11.771,16.959,19.828,4.265,5.999,6.114,19.585,5.052,12.675,0.341,1.887,7.377,21.623,11.675,25.95,7.704,4.68,-4.67,3.031,7.365,17.247,20.512,13.004,5.406,10.51],[29.696,23.583,13.355,15.161,13.35,12.24,5.303,-0.146,10.901,18.89,28.081,34.281,8.09,2.009,16.417,18.466,12.39,23.585,16.077,12.202,6.99,1.237,20.001,15.88,6.136,0.27,4.496,26.639,11.698,9.069,-1.045,14.487,2.335,13.434,11.904,-1.674,0.712,9.183,17.722,-6.724,-2.301,7.259,14.076,10.943,-4.058,19.554,22.83,20.869,21.03,12.599,5.751,-5.479,9.522,26.36,19.013,5.944,5.89,10.626,2.076,4.663,18.168,5.631,20.325,11.965,23.277,20.033,9.005,14.092,10.962,1.983,9.193,0.187,29.67,15.22,6.944,28.56,23.614,-0.268,26.336,28.593,10.428,14.969,13.418,12.212,12.894,14.965,13.326,35.969,5.15,19.552,9.432,34.23,3.354,16.99,15.427,16.657,18.345,12.69,20.831,6.178,6.014,22.2,17.971,12.181,12.548,2.952,12.726,19.759,-1.266,16.241,10.562,6.902,12.259,24.17,25.303,1.274,19.312,-2.265,27.657,6.392,5.632,10.132,1.533,4.155,7.993,0.039,3.692,13.041,2.786,11.097,-0.535,13.077,15.574,15.261,9.137,16.247,2.589,-1.357,10.954,12.19,9.106,-3.458,12.04,16.82,8.987,7.063,20.682,-0.213,19.676,-3.139,-6.036,-5.384,19.931,14.236,22.796,-5.648,12.15,22.936,18.316,19.962,-0.58,21.024,27.727,14.183,7.138,9.819,-5.389,11.444,17.214,19.85,4.235,5.969,6.157,19.578,5.501,12.637,0.554,1.769,7.698,21.522,12.308,26.378,7.699,4.328,-4.79,2.825,7.514,16.843,20.409,13.126,5.523,10.974],[29.676,23.58,13.389,15.306,13.389,12.137,5.339,-0.047,11.068,18.875,28.149,34.098,7.972,1.85,16.577,18.515,12.498,23.534,15.945,12.081,6.871,1.12,19.955,15.601,5.807,0.23,4.421,26.877,11.878,9.004,-1.137,14.502,2.472,13.421,11.869,-1.795,0.609,9.363,17.627,-6.622,-2.311,7.336,14.037,11.144,-4.016,19.437,22.816,20.782,21.1,12.68,5.573,-5.3,9.692,26.323,18.952,6.129,6.164,10.942,2.295,4.557,18.006,5.516,20.279,11.999,22.943,19.666,9.262,14.725,10.887,1.55,8.742,0.182,29.876,15.813,6.811,28.74,22.898,-0.146,26.237,28.451,10.554,14.869,13.349,11.887,13.319,14.936,13.555,35.941,5.158,19.951,9.346,34.141,3.567,17.354,15.762,16.573,17.911,12.428,20.484,6.115,6.24,22.117,17.609,12.429,12.06,2.936,12.369,20.017,-1.289,16.109,10.705,6.998,12.521,23.824,25.098,0.879,18.641,-2.3,27.648,5.921,5.567,10.19,1.692,4.06,8.122,-0.183,3.779,12.923,3.132,11.004,-0.481,13.224,14.898,15.144,9.1,16.41,2.1,-1.523,11.095,12.369,9.03,-3.032,11.886,16.535,9.095,7.014,20.941,-0.479,19.81,-2.413,-5.584,-5.313,19.964,14.361,22.422,-5.613,12.121,22.897,18.315,19.723,-0.54,21.132,27.517,14.121,6.827,10.152,-4.745,11.728,17.263,19.737,4.143,5.709,6.22,19.829,5.794,12.464,0.719,1.762,7.892,21.838,11.809,27.151,7.923,3.91,-5.702,2.916,7.633,16.86,20.588,12.935,5.719,10.986],[29.605,23.476,13.543,15.668,13.386,12.025,5.347,-0.01,11.024,18.833,28.178,34.064,7.963,1.86,16.735,18.568,12.419,23.372,15.783,12.077,6.812,1.103,19.919,15.247,5.55,0.152,4.353,27.064,11.989,8.932,-1.287,14.399,2.631,13.551,11.939,-1.988,0.528,9.404,17.417,-6.45,-2.191,7.194,14.283,11.206,-4.101,19.414,22.78,20.699,21.109,12.703,5.456,-5.041,9.842,26.253,18.961,6.361,6.5,11.053,2.317,4.536,17.801,5.508,20.39,12.008,23.401,19.805,9.306,14.973,10.789,1.197,8.491,0.27,29.644,16.132,7.227,28.655,23.349,-0.222,26.25,28.723,10.288,15.201,13.315,11.794,12.809,14.901,13.293,35.932,5.117,19.541,9.517,33.774,3.473,17.726,16.066,16.346,17.609,12.248,20.07,5.1,6.007,22.141,17.471,12.23,11.862,2.897,11.981,20.035,-1.201,16.132,10.458,6.902,12.159,23.863,25.24,0.592,18.298,-2.729,27.673,6.23,5.533,10.845,1.763,4.469,8.316,-0.167,4.218,13.172,3.284,10.488,-1.007,13.329,15.235,15.398,8.744,16.416,2.223,-2.129,11.244,12.894,9.05,-3.034,12.149,16.171,8.336,7.047,21.238,-0.496,19.293,-2.264,-5.675,-5.256,20.304,15.045,21.555,-5.767,12.084,22.767,18.231,19.577,-0.473,21.09,27.434,14.4,6.769,11.043,-4.674,12.291,16.765,19.498,4.179,5.924,6.075,20.343,5.447,12.806,0.672,2.183,7.769,21.57,11.851,27.298,8.012,3.969,-5.45,2.933,7.952,16.941,20.555,12.853,5.871,11.383],[29.585,23.44,13.487,16.02,13.401,11.875,5.42,0.009,10.769,18.729,28.162,33.943,8.118,2.033,16.752,18.618,12.285,23.133,15.813,12.121,6.773,1.102,19.786,15.168,5.338,0.052,4.34,27.206,11.986,8.85,-1.544,14.373,2.803,13.896,11.907,-2.203,0.469,9.261,17.124,-6.327,-1.986,6.978,14.635,11.207,-4.248,19.536,22.81,20.555,20.972,12.89,5.354,-4.821,9.985,26.25,18.866,6.555,6.795,10.922,2.276,4.561,17.639,5.556,20.507,11.995,23.21,20.074,9.05,14.79,10.416,1.355,9.146,0.549,29.73,15.851,7.174,28.943,23.926,-0.141,26.436,28.672,10.172,15.199,13.66,12.184,13.07,15.053,12.804,35.67,5.143,19.282,9.455,34.336,3.334,17.558,15.847,15.987,17.358,12.213,20.516,5.139,5.818,22.011,17.576,12.041,12.217,2.951,12.291,19.91,-1.299,15.798,10.382,6.362,11.833,24.114,25.705,0.586,18.858,-2.965,27.812,6.422,5.752,11.445,1.589,4.51,8.061,-0.34,4.273,12.957,3.301,10.753,-0.848,13.329,15.224,15.731,9.282,15.888,2.347,-2.331,10.962,12.95,8.674,-3.365,12.393,16.045,8.001,6.942,21.596,-0.038,19.527,-2.652,-5.499,-5.162,20.21,15.553,20.973,-6.014,12.168,22.556,18.469,19.538,-0.286,21.152,27.622,14.474,6.955,10.853,-4.885,12.164,16.616,19.534,4.365,5.695,5.896,20.131,5.449,12.944,0.514,2.535,8.087,21.505,12.047,26.176,8.511,4.142,-4.567,2.797,8.564,16.545,20.375,12.961,6.118,11.812],[29.595,23.51,13.353,16.146,13.512,11.732,5.493,0.052,10.435,18.771,28.311,33.84,8.376,2.261,16.583,18.65,12.127,22.943,15.983,12.201,6.715,1.213,19.761,15.226,5.281,0.026,4.359,27.223,11.952,8.774,-1.83,14.276,2.894,14.189,11.876,-2.267,0.373,9.122,16.902,-6.225,-1.756,6.746,14.814,11.315,-4.396,19.722,22.904,20.425,20.748,13.096,5.34,-4.664,10.131,26.112,18.799,6.732,7.068,10.749,2.319,4.581,17.523,5.589,20.548,11.964,23.295,19.459,8.677,14.939,9.934,1.56,9.116,-0.145,29.856,15.773,7.163,28.798,23.394,-0.288,26.481,28.826,9.915,14.966,13.638,12.652,13.397,15.222,12.643,35.625,5.333,19.167,9.697,34.124,3.664,17.297,15.522,16.148,17.985,12.303,20.924,5.149,5.793,21.697,17.663,12.168,12.324,2.988,13.107,19.493,-1.627,15.899,10.601,6.251,11.724,23.697,25.669,0.655,18.596,-2.828,28.255,6.162,5.914,11.935,1.291,4.307,8.035,-0.434,4.207,12.689,3.372,11.209,-1.187,13.756,14.94,16.062,9.493,15.393,2.199,-2.623,10.647,13.328,8.44,-3.891,12.409,16.165,7.909,6.829,21.694,0.263,19.933,-2.955,-5.755,-4.823,20.004,15.636,20.647,-6.206,11.905,22.985,18.513,19.068,-0.162,21.431,27.076,14.436,6.913,10.62,-4.672,12.289,17.135,19.494,4.081,5.777,6.001,19.608,6.015,12.386,0.669,2.402,8.388,21.841,12.192,26.118,8.379,4.12,-4.591,2.899,8.941,16.02,20.452,13.512,6.325,11.18],[29.452,23.619,13.249,16.22,13.658,11.576,5.646,-0.068,10.144,18.972,28.525,33.817,8.414,2.456,16.307,18.686,12.181,22.842,16.048,12.26,6.607,1.352,19.826,15.357,5.397,0.013,4.404,27.161,12.011,8.78,-2.044,14.109,2.754,14.174,12.025,-2.394,0.284,9.063,16.753,-6.112,-1.636,6.727,14.874,11.597,-4.493,19.761,23.33,20.241,20.528,13.118,5.35,-4.641,10.146,25.801,18.809,6.795,7.284,10.56,2.322,4.679,17.374,5.52,20.48,11.945,23.24,19.886,8.515,15.136,9.979,1.642,8.985,0.054,29.992,16.136,7.07,28.586,23.174,-0.153,26.916,28.439,9.841,14.795,13.658,12.571,12.566,15.525,12.891,35.529,5.229,19.841,10.057,33.182,3.849,17.061,15.349,16.68,18.485,11.829,20.812,5.311,5.959,21.378,18.045,11.858,11.969,3.101,13.181,19.833,-1.455,15.996,10.374,6.243,11.921,23.832,25.64,0.884,18.217,-3.365,28.336,5.821,5.86,12.215,1.565,4.657,7.883,-0.669,4.374,12.58,3.267,10.859,-1.31,14.353,14.81,15.947,8.773,15.424,2.058,-2.277,10.844,13.383,8.588,-4.248,12.272,15.959,7.99,6.577,21.288,-0.253,19.875,-2.62,-5.589,-4.667,20.371,15.577,20.486,-6.093,12.415,23.195,18.413,18.828,-0.011,21.444,26.734,14.719,6.895,11.078,-4.424,12.091,17.152,19.183,3.994,5.982,5.991,20.0,6.19,12.51,1.026,2.53,8.417,21.851,12.108,26.374,8.324,4.109,-4.837,3.079,9.12,15.666,20.487,13.469,6.722,10.746],[29.216,23.694,13.065,16.325,13.854,11.421,5.588,-0.06,10.097,19.309,28.561,33.701,8.239,2.495,16.195,18.632,12.239,22.775,16.011,12.151,6.521,1.513,19.861,15.466,5.534,0.125,4.543,27.184,12.153,8.595,-2.18,13.967,2.651,14.096,12.067,-2.486,0.238,8.987,16.623,-6.07,-1.705,6.946,14.819,11.921,-4.413,19.621,23.63,20.189,20.37,13.112,5.54,-4.559,10.257,25.593,18.764,6.735,7.261,10.384,2.355,4.908,17.166,5.385,20.387,11.974,24.055,19.818,8.363,15.184,10.088,1.825,8.9,0.344,29.681,16.287,7.504,29.19,23.633,-0.058,27.148,28.304,9.895,14.513,13.554,12.561,12.513,15.34,12.963,35.654,5.431,20.296,9.854,33.038,3.892,17.089,15.79,16.769,18.88,11.847,20.588,5.49,5.942,22.085,17.872,11.989,12.262,3.261,12.355,19.981,-0.985,15.89,10.328,6.07,12.625,24.066,25.621,0.79,18.37,-3.896,27.971,5.842,5.958,12.067,1.845,4.709,7.87,-0.666,4.175,12.434,2.972,10.454,-1.234,13.832,14.513,15.993,8.702,15.391,1.872,-2.692,11.937,13.652,8.71,-4.219,12.891,15.606,8.148,6.526,20.995,-0.629,19.545,-2.078,-5.37,-4.682,20.541,15.629,20.604,-6.055,12.961,23.288,18.44,18.85,0.171,22.02,26.421,14.727,6.416,11.379,-4.504,11.527,16.709,19.145,4.137,5.957,5.999,20.381,5.919,13.059,0.817,2.539,8.394,21.621,11.745,26.014,8.513,3.94,-5.307,3.156,9.079,15.529,20.477,12.931,7.386,11.262],[29.017,23.911,12.932,16.39,14.128,11.394,5.454,0.135,10.076,19.54,28.606,33.701,8.056,2.487,16.343,18.549,12.04,22.776,15.887,12.112,6.544,1.604,19.897,15.322,5.605,0.381,4.691,27.276,12.259,8.366,-2.296,13.726,2.682,14.051,12.07,-2.7,0.215,8.941,16.412,-6.161,-1.826,7.07,14.742,12.32,-4.264,19.484,23.716,20.282,20.276,13.088,5.651,-4.464,10.559,25.456,18.748,6.642,7.102,10.395,2.456,5.107,16.925,5.241,20.279,12.022,23.858,20.149,8.512,14.96,9.485,1.664,8.881,0.372,29.294,16.45,7.141,29.498,23.925,-0.745,26.884,28.289,9.685,14.69,13.073,12.546,12.865,15.504,12.332,35.612,5.359,19.974,9.29,33.9,3.819,17.381,15.97,16.691,19.063,11.964,20.63,5.536,5.607,22.334,17.597,12.273,12.089,3.478,12.098,19.91,-1.147,15.927,9.888,6.113,13.022,24.192,25.845,1.105,18.942,-3.692,28.133,6.208,6.14,11.815,1.796,4.471,7.848,-0.873,4.114,12.46,3.047,10.56,-1.297,13.519,14.879,15.851,9.174,15.036,2.02,-3.199,12.025,14.005,8.853,-4.084,13.466,15.543,8.01,7.31,20.925,-0.641,19.243,-2.191,-5.511,-4.617,20.295,15.918,20.535,-6.059,13.046,23.371,18.119,18.847,-0.047,22.19,26.98,14.659,6.477,11.303,-4.073,11.517,16.731,19.65,4.013,6.334,6.148,20.159,5.748,12.907,0.693,2.164,8.324,21.874,12.213,25.593,8.723,4.039,-4.732,3.306,8.908,15.412,20.126,13.019,6.663,11.363],[28.907,24.115,12.724,16.417,14.245,11.409,5.299,0.352,9.946,19.598,28.622,33.892,7.963,2.44,16.505,18.451,11.788,22.95,15.731,12.164,6.686,1.674,20.059,15.186,5.617,0.551,4.678,27.344,12.336,8.236,-2.419,13.552,2.675,13.936,12.116,-2.911,0.29,8.976,16.143,-6.148,-1.925,7.205,14.737,12.607,-4.201,19.364,23.664,20.334,20.137,13.135,5.681,-4.179,10.907,25.329,18.657,6.543,6.814,10.613,2.45,5.256,16.956,5.21,20.24,12.046,23.695,20.142,8.551,14.939,9.433,1.399,8.965,0.644,29.804,16.523,6.858,29.013,24.041,-0.387,26.79,28.463,9.638,14.891,13.503,13.209,12.795,16.12,11.947,35.558,4.953,20.125,9.195,34.129,3.828,17.466,15.097,16.129,19.39,11.737,20.859,5.595,5.924,22.07,17.519,11.774,12.352,3.42,12.664,19.267,-1.159,15.888,9.756,6.649,12.766,24.204,26.219,1.587,18.46,-3.002,28.524,6.387,5.755,11.391,2.008,4.907,7.733,-1.012,4.041,12.089,3.368,10.603,-1.296,13.777,14.845,15.746,8.694,14.892,2.144,-2.619,11.244,14.198,8.964,-4.11,13.655,15.268,7.988,7.254,21.175,-0.399,19.456,-2.836,-5.467,-5.004,20.445,15.904,20.225,-5.982,12.879,23.268,18.006,18.599,-0.377,21.858,26.981,14.716,6.487,11.422,-3.974,11.991,16.741,19.558,3.944,6.42,5.584,19.94,6.0,13.257,0.777,2.432,8.172,21.759,12.048,25.613,9.083,3.823,-4.574,3.622,8.458,15.286,19.946,12.96,5.784,10.784],[29.079,24.224,12.658,16.416,14.369,11.411,5.207,0.589,9.824,19.502,28.55,33.993,7.948,2.441,16.477,18.351,11.506,23.181,15.447,12.371,6.869,1.771,20.195,15.259,5.676,0.565,4.68,27.345,12.412,8.165,-2.436,13.49,2.614,14.029,12.073,-2.85,0.38,9.016,15.898,-6.129,-2.042,7.228,14.777,12.629,-4.311,19.429,23.545,20.315,19.901,13.208,5.6,-3.829,11.165,25.188,18.542,6.448,6.478,10.737,2.379,5.387,17.109,5.258,20.219,12.028,24.27,19.737,8.073,15.278,9.805,1.507,8.794,0.8,29.42,16.732,7.052,28.982,24.036,0.358,26.755,28.046,9.774,14.68,12.989,13.403,12.565,15.983,12.592,35.852,5.031,20.414,9.466,33.66,3.467,17.253,14.654,16.132,19.867,11.558,20.821,5.756,6.182,22.014,17.313,11.548,12.416,3.593,12.959,18.943,-0.833,15.841,9.861,6.726,11.837,24.247,26.041,1.589,18.509,-3.314,28.509,6.036,5.839,11.192,2.194,4.655,7.318,-1.07,3.727,11.972,3.435,11.287,-1.545,13.924,14.18,15.876,8.2,14.782,2.103,-2.923,10.823,13.857,9.083,-4.243,13.73,14.865,7.83,6.725,21.205,0.485,19.814,-3.1,-5.364,-4.866,21.035,15.7,20.365,-5.915,13.029,23.299,18.227,18.856,-0.287,21.729,26.559,14.546,6.524,11.881,-3.779,12.208,17.268,18.685,4.112,6.301,5.693,20.048,6.338,13.423,0.598,2.343,7.878,21.549,11.709,25.625,9.378,3.907,-5.115,3.563,8.152,15.3,20.275,12.794,5.791,11.265],[29.12,24.334,12.654,16.609,14.403,11.474,5.371,0.85,9.782,19.209,28.444,33.942,7.786,2.621,16.225,18.346,11.335,23.255,15.126,12.441,6.964,1.906,20.3,15.467,5.71,0.558,4.764,27.164,12.478,7.989,-2.639,13.419,2.548,14.278,12.086,-2.861,0.481,8.975,15.77,-6.044,-2.158,7.1,14.689,12.596,-4.494,19.73,23.627,20.457,19.764,13.11,5.513,-3.615,11.26,25.015,18.589,6.474,6.124,10.716,2.194,5.489,17.183,5.343,20.262,11.969,24.043,19.807,8.002,15.316,9.785,2.007,8.746,0.987,29.34,16.661,7.046,29.193,24.371,0.127,26.811,28.022,10.271,14.438,13.188,13.15,12.28,16.043,13.201,35.859,5.273,20.122,9.194,33.869,3.377,17.121,14.192,17.006,19.616,11.273,20.736,6.209,6.045,22.243,16.824,11.784,12.549,3.679,12.836,19.354,-1.025,15.908,9.821,6.753,11.59,24.185,25.527,1.332,18.748,-4.09,28.092,6.198,6.217,11.014,2.039,4.769,7.447,-1.125,4.013,11.775,3.181,11.348,-1.142,14.069,14.039,16.132,8.504,14.625,2.091,-3.178,10.827,13.781,8.964,-4.748,13.638,14.875,7.94,6.989,20.935,1.062,19.745,-3.255,-5.466,-4.766,20.595,15.57,20.331,-5.961,13.582,23.33,18.13,19.015,-0.402,21.924,26.24,14.819,6.618,12.316,-3.425,12.142,17.672,18.515,3.756,6.517,6.206,19.916,6.18,12.867,0.692,2.09,7.58,21.643,12.0,26.034,9.951,3.773,-4.613,3.808,7.827,15.496,20.378,13.12,6.238,11.549],[28.967,24.456,12.678,16.824,14.326,11.574,5.558,0.875,9.851,18.914,28.453,33.916,7.452,2.904,15.98,18.415,11.429,23.146,14.892,12.356,6.907,1.922,20.312,15.716,5.947,0.549,4.941,26.786,12.442,7.92,-2.893,13.21,2.623,14.445,12.094,-2.989,0.557,8.993,15.88,-5.974,-2.33,6.983,14.646,12.66,-4.705,19.876,23.925,20.584,19.786,13.114,5.406,-3.522,11.349,24.977,18.785,6.617,6.033,10.737,2.032,5.624,17.287,5.452,20.291,11.885,24.448,19.555,8.438,15.304,9.315,2.337,8.561,1.047,29.252,16.414,7.35,28.954,24.278,-0.501,26.783,28.385,10.23,14.206,13.618,13.31,12.562,16.205,13.218,35.61,5.371,19.547,8.588,34.105,3.427,16.861,14.241,17.353,19.272,11.287,20.76,5.535,6.486,22.771,16.834,11.573,12.069,3.561,12.797,19.844,-1.017,16.077,9.73,6.601,12.56,24.521,25.491,1.501,18.744,-4.246,27.693,6.761,5.746,10.965,1.935,5.112,7.26,-1.256,4.271,11.881,2.761,11.007,-1.647,14.187,14.424,16.363,8.477,14.647,1.957,-2.628,10.94,13.515,8.591,-5.181,13.126,15.015,7.902,7.064,20.93,1.118,19.785,-2.774,-5.74,-4.735,20.237,15.643,20.227,-6.301,13.438,23.648,18.493,18.993,-0.485,22.346,25.916,14.877,6.707,12.18,-3.771,12.192,17.372,19.544,3.948,6.704,6.131,20.274,6.434,12.385,0.355,1.613,7.61,21.775,11.751,25.701,9.893,4.005,-4.427,3.874,7.834,15.506,20.236,13.068,5.822,10.878],[28.904,24.563,12.834,16.772,14.319,11.515,5.731,0.592,9.905,18.885,28.407,33.887,7.175,3.152,15.988,18.411,11.411,23.154,14.927,12.18,6.984,1.885,20.338,15.955,6.246,0.568,5.115,26.392,12.288,8.102,-3.01,13.15,2.692,14.296,11.995,-3.026,0.613,8.953,16.134,-5.956,-2.292,6.914,14.61,12.618,-4.996,19.916,24.286,20.607,19.837,13.115,5.278,-3.565,11.401,24.922,19.019,6.808,6.228,10.773,1.797,5.724,17.414,5.522,20.284,11.623,24.44,19.508,8.536,15.077,9.119,2.548,8.097,0.923,28.944,16.374,7.449,29.262,24.436,-0.266,26.786,27.956,10.163,14.154,13.284,13.62,12.831,15.951,12.837,35.715,5.694,19.585,8.642,33.867,3.522,16.539,14.374,17.232,19.104,11.859,20.562,5.631,6.06,22.46,16.643,11.465,12.662,3.741,12.471,19.342,-0.87,15.906,9.537,6.96,13.299,24.699,25.57,1.521,18.653,-4.056,27.516,6.459,5.786,10.644,2.14,4.873,7.098,-1.331,4.2,11.954,2.774,10.251,-1.804,13.755,14.502,16.227,8.726,14.999,1.91,-2.696,11.85,13.315,8.545,-5.318,12.728,15.043,7.852,6.888,21.281,0.64,19.878,-2.593,-5.522,-4.745,20.633,15.709,20.303,-6.587,13.037,23.999,18.405,18.977,-0.519,22.608,26.393,14.46,6.709,11.768,-3.967,12.283,17.165,20.099,4.177,6.549,5.681,20.546,6.402,12.748,0.147,1.572,7.776,21.834,11.809,24.934,9.72,3.773,-4.361,3.927,7.988,15.65,20.149,12.67,5.446,11.039],[28.854,24.545,13.015,16.522,14.318,11.369,5.88,0.316,9.84,19.056,28.298,33.893,7.187,3.295,16.144,18.167,11.269,23.265,15.079,12.1,7.011,1.889,20.34,16.049,6.548,0.654,5.117,26.116,12.07,8.47,-2.911,13.336,2.641,13.928,11.908,-3.027,0.569,8.937,16.366,-5.933,-2.025,6.938,14.506,12.427,-5.25,19.941,24.472,20.621,19.841,12.933,5.173,-3.717,11.427,24.887,19.185,6.931,6.447,10.779,1.596,5.724,17.508,5.369,20.346,11.419,24.844,19.518,8.115,14.788,9.781,2.579,7.736,0.896,29.529,16.604,7.743,29.255,24.72,-0.27,26.59,27.64,9.814,14.338,13.318,13.431,13.033,16.202,12.903,35.606,5.568,20.026,8.832,33.849,3.807,16.88,14.069,17.042,19.587,11.115,20.44,6.05,6.1,22.162,16.985,11.329,12.27,3.716,12.135,19.203,-0.955,16.305,9.664,7.526,12.552,24.552,25.565,1.299,18.708,-4.236,27.723,6.711,6.044,10.545,2.174,4.977,7.729,-1.044,4.109,11.813,3.143,10.16,-1.684,13.525,14.249,15.83,9.355,15.235,2.265,-3.469,12.033,12.93,8.655,-5.621,12.749,15.201,7.398,7.149,21.117,0.384,19.927,-2.661,-4.955,-5.146,20.977,15.608,20.811,-6.799,12.99,23.963,18.282,19.018,-0.116,22.814,26.511,14.644,6.244,11.686,-3.675,11.991,17.31,19.871,3.895,6.448,5.57,20.023,6.481,12.83,-0.066,1.46,8.226,21.4,12.033,25.009,9.589,3.436,-3.869,3.932,8.315,15.825,20.566,12.24,5.936,11.467],[28.84,24.553,13.269,16.371,14.402,11.187,6.088,0.198,9.786,19.17,28.278,33.976,7.253,3.368,16.336,18.097,11.054,23.418,15.232,11.85,7.063,1.843,20.287,15.981,6.945,0.676,5.127,26.021,11.839,8.768,-2.702,13.496,2.69,13.665,11.945,-3.144,0.576,8.989,16.54,-5.874,-1.749,7.061,14.213,12.254,-5.446,19.975,24.466,20.594,19.783,12.857,5.042,-3.799,11.359,24.83,19.34,6.981,6.635,10.756,1.425,5.636,17.488,5.206,20.279,11.449,25.015,19.748,8.001,14.678,10.02,2.831,8.144,0.722,29.276,16.216,7.69,28.472,24.419,-0.825,26.464,27.718,9.908,14.594,13.698,12.911,12.937,16.028,12.687,35.685,5.099,19.936,8.641,34.258,3.727,17.263,14.113,17.426,19.294,10.673,21.037,5.977,6.651,22.528,16.944,11.277,12.103,3.679,12.409,18.672,-0.847,16.343,10.527,7.627,11.804,24.124,25.382,1.502,18.843,-3.74,27.504,6.464,5.78,10.156,2.104,5.135,7.953,-1.322,4.288,12.115,3.237,10.137,-1.75,13.461,14.414,15.472,9.283,15.256,2.45,-3.209,11.604,12.933,8.814,-6.242,13.365,15.699,7.188,6.912,20.784,0.03,19.926,-2.707,-5.105,-5.662,21.167,15.437,21.103,-6.906,13.003,24.284,18.507,19.193,0.12,22.763,26.609,14.628,6.056,12.03,-3.611,11.943,17.267,19.444,3.487,6.482,5.703,20.213,6.835,12.423,-0.442,1.434,8.754,21.267,11.794,25.356,9.551,3.461,-4.065,3.803,8.48,15.863,21.094,12.609,6.199,11.175],[28.736,24.595,13.58,16.242,14.303,11.064,6.138,0.104,9.893,19.182,28.295,34.19,7.2,3.459,16.426,18.014,10.933,23.485,15.259,11.599,7.168,1.853,20.339,15.895,7.258,0.626,5.201,26.062,11.624,9.006,-2.606,13.683,2.992,13.565,12.014,-3.266,0.568,9.008,16.669,-5.926,-1.667,7.005,13.865,12.195,-5.661,20.091,24.38,20.644,19.693,12.901,4.832,-3.829,11.169,24.819,19.45,7.036,6.621,10.792,1.322,5.542,17.442,5.102,20.187,11.808,24.559,19.447,8.346,14.949,9.312,2.765,8.593,0.394,29.234,15.758,7.802,28.264,24.525,-1.001,26.587,27.898,9.776,14.587,13.546,13.627,13.052,16.081,12.695,35.978,5.244,20.098,8.292,33.957,3.829,17.245,14.616,17.209,19.155,10.977,21.049,6.601,6.282,22.629,17.201,11.242,11.371,3.554,12.311,18.645,-0.868,16.277,10.748,7.739,11.963,24.565,25.302,1.747,18.969,-3.412,26.975,6.073,6.007,10.029,2.091,5.013,8.211,-1.847,4.411,12.482,3.464,10.616,-1.366,13.131,14.95,15.353,9.15,15.616,2.371,-2.794,11.29,12.557,8.764,-6.576,13.395,15.589,7.263,6.566,20.282,0.154,19.836,-2.136,-5.378,-5.353,21.121,15.245,21.156,-6.837,13.065,24.599,18.501,18.844,0.213,22.549,26.204,14.649,6.557,12.142,-3.886,12.014,16.881,19.701,3.803,6.485,5.811,20.332,6.735,12.009,-0.312,1.195,8.764,21.767,11.507,25.052,9.4,3.559,-4.807,3.86,8.489,16.012,21.108,12.69,6.039,10.993],[28.657,24.662,13.844,16.171,14.228,11.095,6.043,-0.044,10.017,19.087,28.349,34.384,7.139,3.573,16.267,17.93,11.006,23.517,15.318,11.468,7.142,1.879,20.441,15.872,7.457,0.648,5.278,26.17,11.372,9.18,-2.626,13.853,3.315,13.571,12.302,-3.282,0.545,8.987,16.769,-5.975,-1.547,6.72,13.569,12.189,-5.865,20.208,24.196,20.776,19.554,12.792,4.741,-3.979,10.943,24.654,19.442,6.929,6.507,10.84,1.345,5.485,17.402,5.134,20.242,12.076,24.754,19.277,8.681,14.625,9.18,2.648,8.357,0.584,29.144,15.505,7.986,29.035,24.606,-0.588,26.459,27.994,9.442,14.462,14.001,13.879,13.633,15.997,12.345,36.073,5.453,20.142,8.494,34.428,4.035,17.062,14.522,17.058,18.911,10.81,20.396,6.167,5.771,22.655,17.232,11.565,11.59,3.703,12.215,19.286,-0.958,16.481,10.881,7.459,11.572,24.88,25.06,1.486,18.905,-3.562,27.341,6.785,6.067,9.669,2.255,4.548,8.537,-1.459,4.66,12.548,4.028,10.957,-1.148,13.044,14.771,15.429,9.538,15.734,2.236,-3.226,11.428,11.976,8.266,-6.507,12.955,15.424,7.552,7.047,20.097,0.442,20.071,-1.818,-5.341,-4.803,20.669,14.938,20.931,-7.429,13.116,24.293,18.514,18.898,0.197,22.462,26.191,14.774,6.262,11.558,-4.055,11.899,16.894,20.061,3.881,6.437,5.582,20.174,6.6,12.885,-0.057,0.797,8.809,21.685,11.843,25.235,9.412,3.664,-4.653,3.718,8.371,16.188,20.887,12.74,6.248,10.863],[28.76,24.802,14.12,16.068,14.242,11.139,5.986,-0.081,10.082,18.929,28.549,34.478,7.272,3.685,16.021,18.032,11.107,23.606,15.346,11.392,7.128,1.857,20.382,15.865,7.349,0.782,5.223,26.352,11.095,9.318,-2.693,13.839,3.449,13.684,12.757,-3.256,0.562,9.057,16.871,-5.884,-1.409,6.442,13.344,12.14,-6.133,20.175,23.949,20.83,19.363,12.689,4.729,-4.193,10.705,24.536,19.3,6.815,6.465,10.837,1.352,5.435,17.395,5.319,20.313,12.277,24.832,19.595,8.448,14.547,10.107,2.46,7.976,0.83,28.849,16.061,7.695,29.28,24.56,-0.913,26.76,27.461,9.558,14.246,14.002,13.451,14.014,16.089,12.289,36.41,5.571,19.609,8.657,34.712,4.065,16.567,14.773,17.324,18.179,11.409,20.818,6.551,5.748,23.03,17.125,11.628,11.231,3.726,11.891,19.457,-0.707,15.865,10.965,7.907,11.356,24.813,25.398,1.279,18.87,-3.628,27.793,6.869,5.791,9.45,2.273,4.593,8.426,-1.228,4.23,12.629,4.607,11.032,-1.482,13.494,14.853,15.441,9.098,15.801,1.886,-3.47,12.17,11.656,8.142,-6.366,12.78,15.806,7.458,6.805,20.37,0.673,20.607,-1.595,-4.884,-5.031,20.498,14.129,20.485,-7.735,12.758,23.696,18.837,19.495,0.369,22.132,26.141,14.423,6.264,10.941,-4.327,12.135,17.483,19.887,3.698,6.69,5.519,20.254,6.098,13.653,-0.039,0.841,8.567,21.126,11.875,25.088,9.356,3.584,-3.866,3.75,8.276,15.884,20.899,13.015,5.991,11.134],[28.856,24.858,14.291,16.148,14.346,11.205,5.988,0.018,10.126,18.786,28.76,34.557,7.416,3.615,15.837,17.958,11.211,23.795,15.301,11.193,7.103,1.815,20.414,15.791,7.346,0.968,4.959,26.443,10.84,9.31,-2.792,13.701,3.329,13.8,13.104,-3.312,0.516,8.914,17.067,-5.804,-1.297,6.287,13.276,12.033,-6.308,20.225,23.601,20.843,19.244,12.65,4.867,-4.184,10.485,24.664,19.243,6.657,6.445,10.896,1.276,5.394,17.429,5.536,20.345,12.482,24.841,19.178,8.309,14.301,10.528,2.751,8.304,0.425,29.458,15.86,7.885,29.324,24.981,-1.383,26.906,27.771,9.875,13.966,14.008,13.074,14.477,15.952,12.677,36.493,5.796,19.581,8.905,34.361,4.055,16.195,15.124,16.957,17.821,11.297,20.965,6.312,5.978,22.839,17.273,11.435,11.328,3.554,11.441,19.882,-0.607,15.958,11.0,8.002,11.598,24.995,25.735,1.518,19.069,-3.901,27.867,6.583,6.157,9.09,2.353,5.102,8.745,-1.365,4.279,12.618,4.203,11.334,-1.359,13.46,14.75,15.776,8.953,16.221,1.68,-3.318,13.163,11.406,8.031,-6.658,13.216,15.894,7.101,5.977,20.745,1.035,20.052,-1.331,-4.847,-5.45,21.04,13.999,19.715,-7.94,12.585,23.448,18.611,19.593,0.532,22.116,26.254,14.381,6.547,11.055,-4.66,12.051,17.654,19.343,3.926,6.695,5.59,20.108,5.937,13.851,-0.265,1.241,8.504,20.96,11.487,24.62,8.916,3.498,-3.683,3.96,8.269,15.734,20.852,13.171,5.964,11.554],[29.032,24.978,14.398,16.131,14.43,11.287,6.039,-0.068,10.228,18.665,28.844,34.575,7.56,3.543,15.729,17.791,11.26,23.874,15.366,11.008,6.995,1.807,20.552,15.677,7.39,1.187,4.845,26.549,10.634,9.334,-2.824,13.517,3.188,13.834,13.489,-3.347,0.445,8.531,17.354,-5.772,-1.317,6.094,13.336,12.03,-6.467,20.092,23.385,20.82,19.125,12.597,5.09,-4.11,10.269,24.737,19.155,6.502,6.509,11.073,1.349,5.303,17.431,5.791,20.248,12.585,24.509,19.036,8.568,14.677,10.303,2.776,8.892,0.343,29.468,16.059,7.823,29.317,24.916,-0.632,27.005,28.329,10.184,13.992,14.237,13.08,14.098,15.969,13.006,36.321,5.6,19.83,8.829,34.412,4.055,16.728,14.9,17.032,17.951,10.731,20.807,6.072,6.312,22.925,17.416,11.98,11.006,3.479,11.347,19.409,-0.523,16.027,11.065,7.765,11.904,25.067,25.226,1.892,19.057,-3.994,27.337,6.608,5.58,8.856,2.563,4.895,8.528,-1.511,4.453,12.32,3.624,11.835,-1.358,13.071,14.325,15.765,9.233,16.19,1.393,-3.406,13.249,11.485,7.94,-7.082,13.137,16.001,6.97,5.968,20.811,1.303,19.707,-1.283,-5.437,-5.673,21.727,13.946,19.42,-7.764,12.977,23.564,18.49,19.347,0.565,21.547,26.428,14.471,6.724,11.231,-4.292,12.311,17.53,19.512,4.245,6.841,5.995,20.463,6.404,14.024,-0.499,1.33,8.393,21.414,11.54,25.392,8.516,3.78,-4.156,3.919,8.269,15.695,20.715,12.84,6.381,11.342],[29.285,25.055,14.349,16.173,14.529,11.411,6.071,-0.201,10.395,18.679,28.801,34.502,7.591,3.599,15.751,17.584,11.414,23.819,15.458,10.805,6.781,1.908,20.685,15.632,7.358,1.37,4.822,26.585,10.529,9.376,-2.812,13.242,3.154,13.708,13.849,-3.306,0.361,8.235,17.487,-5.915,-1.492,6.013,13.325,12.142,-6.548,19.896,23.271,20.839,18.98,12.66,5.321,-4.096,9.971,24.863,18.996,6.511,6.632,11.247,1.503,5.116,17.381,6.095,20.304,12.533,24.279,19.21,9.062,14.855,9.644,2.568,8.876,0.513,28.977,16.234,7.822,28.912,24.734,-0.346,27.029,28.333,10.253,14.081,14.434,13.131,13.822,16.263,12.966,36.326,5.424,19.912,8.474,34.699,4.259,17.025,14.948,17.052,18.128,11.252,20.918,6.611,6.646,23.165,17.409,12.008,10.768,3.803,11.274,19.057,-0.267,15.794,11.053,7.523,11.789,24.805,25.108,1.686,19.428,-3.546,27.827,6.806,5.671,8.711,2.486,4.505,8.349,-1.579,4.024,12.044,3.843,12.161,-1.402,13.127,14.366,15.4,8.804,16.274,1.52,-3.206,13.052,11.65,7.726,-6.652,12.736,16.461,6.801,6.111,20.563,1.087,20.274,-1.621,-4.86,-5.573,21.864,13.608,19.551,-7.872,13.065,23.428,18.139,19.558,0.261,21.529,26.261,14.497,6.992,10.988,-4.38,12.44,17.333,19.718,4.701,6.581,5.882,20.14,6.395,14.246,-0.19,1.52,8.234,21.159,11.781,25.638,8.259,4.171,-4.635,3.709,8.335,15.853,20.295,12.951,6.516,11.16],[29.377,24.924,14.127,16.345,14.57,11.578,6.186,-0.243,10.419,18.746,28.616,34.408,7.525,3.619,15.851,17.452,11.623,23.649,15.56,10.684,6.592,2.094,20.89,15.628,7.348,1.383,4.848,26.656,10.465,9.364,-2.72,12.99,3.112,13.602,13.955,-3.059,0.322,8.095,17.553,-6.084,-1.71,6.026,13.176,12.285,-6.453,19.801,23.194,21.013,18.977,12.869,5.57,-4.284,9.68,24.99,18.846,6.522,6.749,11.259,1.737,4.86,17.334,6.248,20.391,12.497,24.663,19.241,8.868,14.633,10.0,2.672,8.75,0.568,29.543,15.907,8.052,28.979,24.895,-1.065,26.711,28.19,10.117,13.993,14.317,13.572,14.778,16.218,13.178,36.16,5.69,19.651,8.775,34.767,4.442,16.651,14.976,16.849,18.005,11.397,20.986,6.935,6.485,23.206,17.278,11.65,10.66,3.98,11.298,18.685,-0.209,15.928,11.156,7.163,10.869,25.01,25.484,1.682,19.699,-3.315,28.121,6.563,5.918,8.745,2.658,4.334,8.841,-1.367,3.942,12.089,4.316,12.344,-1.659,13.203,14.48,15.542,8.609,16.492,1.86,-3.081,13.737,11.526,7.583,-6.55,12.797,16.429,6.399,6.332,20.356,0.455,20.24,-1.947,-4.868,-5.686,21.534,13.255,18.965,-7.946,13.027,23.105,18.195,19.955,-0.024,21.678,26.546,14.683,7.152,10.54,-4.596,12.086,16.845,19.364,4.674,6.224,6.196,20.21,6.274,14.122,0.325,1.509,8.36,21.21,12.012,25.305,7.858,4.264,-4.683,3.436,8.592,16.107,20.276,12.912,6.294,11.62],[29.371,24.584,14.113,16.368,14.475,11.675,6.445,-0.319,10.445,18.605,28.288,34.391,7.65,3.647,15.951,17.276,11.498,23.392,15.595,10.715,6.487,2.298,21.125,15.596,7.284,1.234,4.947,26.878,10.502,9.448,-2.634,12.902,2.979,13.618,14.045,-2.762,0.335,7.95,17.612,-6.084,-1.852,6.091,12.945,12.432,-6.266,19.877,23.192,21.254,19.103,12.977,5.741,-4.563,9.423,24.991,18.909,6.653,6.93,11.212,2.027,4.754,17.314,6.272,20.438,12.462,24.425,19.345,8.494,14.632,10.892,2.458,8.614,0.383,29.937,15.95,8.169,29.186,25.21,-1.35,26.539,28.45,10.271,14.148,13.522,13.66,14.483,16.207,12.961,35.816,5.695,19.652,9.073,34.671,4.229,16.333,15.087,16.745,17.638,11.978,21.32,6.271,5.61,23.277,17.437,11.936,10.476,4.056,11.114,18.937,-0.299,15.893,11.264,8.079,10.052,24.98,25.506,1.954,19.545,-3.325,27.758,6.624,5.623,8.673,2.843,4.074,8.484,-0.987,3.789,11.625,4.221,12.197,-1.32,13.346,13.868,15.406,8.597,16.398,1.979,-2.532,14.558,11.243,7.914,-6.771,13.054,16.408,6.367,5.905,20.094,0.09,19.857,-2.284,-5.361,-5.74,21.26,13.072,18.238,-7.702,12.92,22.9,18.283,19.897,0.038,21.487,26.662,14.708,7.393,9.869,-4.717,12.361,16.812,19.305,4.723,5.733,6.13,20.616,5.825,13.917,0.732,1.803,8.337,21.709,11.961,25.483,7.67,4.353,-4.618,3.05,8.776,16.166,20.393,12.902,6.292,11.798],[29.357,24.141,14.144,16.208,14.322,11.694,6.535,-0.484,10.511,18.444,28.053,34.409,7.854,3.549,16.02,17.083,11.276,23.169,15.633,10.871,6.391,2.386,21.306,15.547,7.23,1.071,4.948,27.077,10.507,9.484,-2.522,12.821,2.808,13.598,14.01,-2.491,0.415,7.99,17.594,-5.904,-1.89,6.098,12.802,12.647,-6.101,20.102,23.118,21.458,19.23,12.932,5.842,-4.849,9.199,25.046,19.193,6.786,7.211,11.269,2.306,4.639,17.307,6.201,20.471,12.464,23.516,19.13,8.724,14.706,10.711,2.312,8.879,0.282,30.033,16.404,8.315,28.642,25.082,-0.738,26.168,28.634,10.052,14.232,13.779,13.216,13.656,16.164,12.979,36.058,5.983,19.741,9.046,34.733,4.359,16.275,15.293,16.466,17.346,11.095,21.687,5.985,5.015,22.729,17.559,11.74,10.765,4.296,10.947,18.597,-0.603,15.985,11.305,7.759,9.722,24.262,25.46,2.064,19.802,-3.039,28.341,6.546,6.257,8.74,2.329,3.91,8.605,-0.713,3.951,11.237,3.808,12.46,-1.217,13.15,13.758,15.417,8.108,16.318,2.183,-2.266,15.143,10.957,7.94,-6.929,13.074,16.362,6.394,5.446,20.156,0.253,20.198,-2.494,-5.417,-5.118,21.684,12.987,17.856,-7.439,12.797,22.849,18.49,19.875,-0.076,21.426,26.664,14.51,7.395,9.481,-5.035,12.238,17.386,19.563,4.8,5.759,5.893,20.596,5.723,14.303,0.931,1.849,8.569,21.972,11.591,25.711,7.454,4.661,-4.681,3.05,8.92,16.011,20.832,12.562,6.641,11.757],[29.541,23.718,14.158,16.064,14.255,11.563,6.471,-0.463,10.474,18.457,27.959,34.561,8.017,3.278,16.066,16.874,11.028,22.982,15.642,11.063,6.252,2.372,21.398,15.456,7.115,0.955,4.845,27.201,10.499,9.445,-2.506,12.672,2.646,13.591,13.875,-2.494,0.603,7.95,17.559,-5.661,-1.908,6.027,12.78,12.884,-6.069,20.364,22.928,21.676,19.334,12.748,5.78,-5.089,9.071,25.407,19.398,6.853,7.453,11.409,2.422,4.565,17.343,6.102,20.478,12.446,23.551,19.343,8.956,14.614,10.241,2.738,9.377,0.165,29.992,16.285,7.92,28.2,24.677,-0.944,26.147,28.18,9.921,14.402,14.153,13.209,14.11,16.129,13.088,36.374,5.926,19.04,8.965,34.764,4.537,16.434,14.953,16.7,17.435,10.896,21.702,6.742,4.592,22.523,17.628,11.509,10.846,4.223,11.189,18.562,-0.594,15.765,11.301,7.566,10.233,23.887,25.892,2.068,20.058,-2.697,28.483,6.133,6.167,8.568,2.086,4.485,8.596,-0.682,4.013,11.696,3.522,12.276,-1.291,13.03,14.198,15.262,8.511,16.531,2.292,-2.438,15.14,11.066,7.919,-6.518,12.974,16.598,6.302,5.505,20.197,0.86,20.883,-2.196,-4.709,-5.021,22.331,13.072,17.672,-7.465,13.058,22.829,18.886,20.195,-0.156,21.303,26.696,14.608,7.531,9.457,-5.553,12.457,16.983,20.212,4.521,6.036,5.816,20.384,6.013,14.173,0.772,2.067,8.618,21.646,11.831,25.971,7.21,4.865,-5.163,3.122,9.214,16.004,20.642,12.455,6.806,11.927],[29.789,23.554,14.248,15.943,14.362,11.391,6.261,-0.366,10.435,18.416,28.009,34.746,8.001,3.052,16.181,16.791,10.941,22.81,15.595,11.156,6.018,2.376,21.409,15.442,7.117,1.015,4.662,27.224,10.488,9.338,-2.609,12.656,2.571,13.643,13.701,-2.539,0.874,7.873,17.774,-5.421,-2.019,6.001,12.918,13.104,-6.155,20.538,22.864,21.896,19.288,12.643,5.674,-5.339,9.051,25.808,19.466,6.804,7.532,11.491,2.43,4.623,17.385,6.021,20.455,12.347,23.33,19.294,8.821,14.178,10.032,2.61,9.266,0.092,30.175,15.93,8.095,28.495,24.283,-1.192,26.149,29.129,9.963,14.356,14.154,13.476,14.456,16.021,12.844,36.387,5.516,19.568,9.047,34.981,4.164,16.501,14.931,16.739,17.525,11.113,21.687,6.826,4.486,23.103,17.441,11.755,10.748,3.991,11.201,18.102,-0.62,15.347,11.179,7.25,11.665,24.307,25.697,1.882,19.858,-3.148,28.299,5.882,5.774,8.741,2.237,5.301,8.426,-0.69,3.707,11.871,3.591,11.901,-1.822,12.914,14.042,15.597,8.455,16.279,2.45,-2.605,14.653,11.308,7.743,-5.941,13.104,16.703,6.235,6.185,20.273,1.323,20.939,-2.254,-4.432,-5.424,22.373,12.927,17.883,-7.702,13.46,22.574,18.97,20.663,-0.169,21.289,27.196,14.481,7.346,9.589,-5.174,12.414,16.823,20.094,4.519,5.976,5.651,20.049,6.497,13.555,0.75,2.04,8.686,21.62,12.029,26.36,7.268,4.583,-5.937,2.987,9.396,16.027,20.551,12.944,6.969,12.498],[29.929,23.47,14.347,15.739,14.568,11.227,6.122,-0.36,10.502,18.446,28.194,34.827,7.982,2.923,16.201,16.699,11.048,22.882,15.496,11.27,5.77,2.295,21.414,15.511,7.209,1.154,4.501,27.292,10.562,9.15,-2.823,12.661,2.579,13.702,13.501,-2.364,1.153,7.75,18.041,-5.285,-2.159,6.002,13.101,13.31,-6.284,20.601,22.789,22.009,19.059,12.693,5.53,-5.603,9.105,26.0,19.401,6.784,7.561,11.52,2.45,4.613,17.375,5.95,20.368,12.225,22.658,19.657,8.66,13.94,10.401,2.025,8.924,0.506,30.154,15.943,7.905,28.856,24.258,-0.836,26.405,29.016,9.851,14.478,13.674,13.501,14.127,16.408,12.865,36.328,5.264,19.511,8.937,35.432,3.836,16.308,15.147,16.363,17.332,10.725,21.416,6.072,4.19,23.23,17.283,11.768,11.171,4.14,10.806,18.098,-0.37,15.97,10.953,7.353,12.495,24.179,25.591,1.819,19.861,-3.841,27.989,5.926,5.724,8.707,2.711,5.072,8.597,-0.559,3.418,11.609,3.893,11.707,-2.097,13.193,14.14,15.666,7.816,16.646,2.785,-2.344,13.382,11.37,7.628,-5.52,13.522,17.213,6.311,6.362,20.344,1.373,20.797,-2.942,-4.882,-5.228,22.445,12.891,18.633,-7.897,13.686,22.919,18.875,20.813,-0.239,21.242,27.485,14.445,7.044,9.939,-4.977,12.292,17.153,19.857,4.657,5.704,5.996,20.736,6.479,13.36,0.984,2.373,8.475,21.984,11.563,26.386,7.509,4.449,-6.38,2.952,9.364,16.104,21.031,13.399,7.028,12.697],[29.728,23.329,14.334,15.661,14.732,11.073,6.025,-0.153,10.616,18.541,28.339,34.863,8.008,2.812,16.147,16.555,11.105,23.114,15.371,11.428,5.558,2.275,21.359,15.627,7.283,1.38,4.246,27.298,10.688,9.005,-3.11,12.663,2.569,13.654,13.173,-2.019,1.397,7.574,18.278,-5.245,-2.326,6.071,13.131,13.519,-6.263,20.688,22.667,21.972,18.786,12.802,5.432,-5.836,9.308,25.938,19.39,6.799,7.425,11.553,2.636,4.479,17.374,5.909,20.436,12.242,22.468,19.54,8.917,13.895,10.54,1.74,9.297,0.686,30.563,15.86,7.759,28.772,24.669,-1.141,26.791,28.514,9.733,14.509,14.437,13.695,14.292,16.586,12.808,36.381,5.602,19.152,8.973,35.463,4.055,16.268,15.096,16.595,16.88,10.999,21.279,6.129,3.979,22.965,17.321,11.831,11.229,4.064,10.917,18.125,-0.123,16.341,10.901,7.502,12.014,24.188,25.756,1.84,20.231,-3.709,28.336,5.942,5.964,8.974,2.454,4.553,8.071,-0.203,3.48,11.429,3.962,11.637,-2.1,13.323,13.986,15.656,8.139,17.072,3.239,-2.149,12.738,11.33,7.618,-5.355,13.512,17.772,6.045,5.676,20.248,1.26,20.918,-2.892,-4.719,-5.11,22.358,13.302,19.04,-7.915,13.909,22.945,19.088,20.558,-0.372,21.419,27.179,14.427,7.16,10.288,-5.2,12.304,16.853,20.023,4.496,5.679,6.051,20.827,5.97,13.799,1.058,2.342,8.612,21.91,11.584,26.534,7.512,4.437,-6.325,2.663,9.305,15.997,20.696,12.816,6.848,12.563],[29.477,23.221,14.45,15.554,14.825,10.963,6.047,0.036,10.505,18.516,28.315,34.908,8.052,2.827,16.155,16.336,11.182,23.26,15.343,11.548,5.276,2.332,21.362,15.765,7.341,1.545,3.958,27.334,10.836,8.877,-3.278,12.703,2.508,13.714,12.908,-1.896,1.606,7.475,18.41,-5.207,-2.379,6.134,12.994,13.656,-6.016,20.847,22.687,21.886,18.597,13.091,5.416,-5.981,9.575,25.918,19.482,6.87,7.229,11.565,2.831,4.336,17.33,5.866,20.468,12.313,22.544,19.369,8.776,14.667,10.723,2.07,9.695,0.699,29.591,16.246,7.634,28.974,24.935,-0.914,26.461,28.649,9.798,14.294,14.276,14.013,14.019,16.411,12.533,36.596,5.88,19.543,8.913,34.854,3.849,16.332,14.719,16.662,16.878,10.804,21.159,6.934,3.669,22.992,17.102,11.69,11.2,4.144,11.478,17.743,-0.148,15.714,10.653,7.524,11.169,24.751,25.655,2.135,20.038,-3.856,28.437,5.814,5.678,8.956,2.418,3.855,8.047,-0.204,3.981,11.882,3.265,11.247,-2.381,13.025,13.937,15.633,8.197,16.766,3.418,-1.692,12.632,11.337,8.029,-5.734,13.451,18.057,5.894,5.615,20.451,1.359,21.113,-2.572,-4.659,-5.651,22.252,13.435,18.431,-7.728,13.958,22.736,19.282,20.454,-0.515,21.148,27.137,14.823,6.966,9.991,-5.457,12.683,16.833,20.449,4.339,5.727,6.051,21.001,5.792,14.114,1.145,2.336,8.517,21.958,12.067,26.35,7.74,4.218,-5.75,2.774,9.071,15.983,20.797,11.926,6.567,12.166],[29.14,23.228,14.42,15.563,14.893,10.892,6.148,0.107,10.355,18.529,28.193,34.892,8.105,3.061,16.042,16.236,11.192,23.314,15.39,11.592,4.822,2.519,21.425,15.824,7.455,1.597,3.616,27.366,10.905,8.739,-3.352,12.861,2.499,13.753,12.743,-2.007,1.739,7.456,18.284,-5.292,-2.274,6.292,12.851,13.633,-5.913,21.015,22.804,22.06,18.511,13.531,5.444,-6.006,9.762,26.031,19.649,6.982,6.924,11.472,2.834,4.326,17.275,5.871,20.503,12.212,22.711,19.654,8.641,14.549,10.244,2.505,9.268,1.07,29.476,16.413,7.778,28.974,24.258,-0.403,26.385,28.408,9.813,14.278,14.135,14.013,14.105,16.73,12.703,36.658,5.391,19.569,8.994,35.056,4.164,16.398,14.711,16.862,17.122,10.636,21.071,6.329,3.676,22.847,17.163,11.501,11.475,4.181,11.885,17.273,-0.114,15.981,10.531,7.782,10.727,24.48,25.554,2.184,19.955,-4.428,27.883,5.602,5.311,9.209,2.806,3.717,8.197,-0.304,4.003,11.936,2.803,11.043,-2.515,13.346,14.556,15.581,7.63,16.797,3.507,-1.8,12.4,11.511,8.125,-5.775,13.606,17.842,5.946,5.922,20.333,1.807,21.234,-2.819,-4.807,-5.278,22.216,12.874,18.21,-7.585,14.05,22.6,19.341,20.449,-0.411,20.909,27.021,15.296,6.908,9.618,-5.724,12.613,17.308,20.404,4.663,5.447,5.692,20.851,5.835,13.993,1.113,2.605,8.596,22.156,12.54,26.564,7.977,4.132,-6.068,2.612,8.767,15.776,21.263,12.18,6.242,12.053],[29.002,23.204,14.25,15.592,15.089,10.994,6.097,0.246,10.209,18.778,28.189,34.837,8.072,3.405,15.992,16.306,11.08,23.294,15.62,11.604,4.316,2.717,21.416,15.919,7.48,1.75,3.398,27.254,11.026,8.774,-3.378,13.098,2.503,13.759,12.549,-2.094,1.803,7.432,18.156,-5.349,-2.19,6.506,12.805,13.463,-5.976,21.03,22.797,22.147,18.52,13.912,5.394,-6.04,9.869,26.092,19.808,7.124,6.63,11.301,2.833,4.232,17.168,5.898,20.608,11.989,23.016,19.62,8.576,14.159,9.969,2.745,9.08,0.891,29.98,15.984,7.948,28.554,23.678,-0.846,26.415,28.4,9.915,14.245,14.073,14.139,14.336,16.891,12.762,36.476,5.485,19.479,9.299,35.269,4.173,16.222,14.531,16.855,17.185,10.872,21.232,6.213,3.33,22.904,17.434,11.757,11.463,4.5,11.941,16.993,0.096,16.304,10.402,7.428,11.348,24.109,25.401,2.046,20.095,-4.192,28.383,5.644,4.794,9.206,2.724,3.868,7.609,-0.321,3.923,11.779,3.42,10.973,-2.777,13.517,14.602,15.578,7.328,16.68,3.262,-2.192,12.148,11.285,8.271,-5.4,13.528,17.464,6.198,5.655,19.939,2.381,21.351,-2.976,-4.186,-5.355,22.545,12.305,18.529,-7.721,14.134,22.98,19.327,20.742,-0.399,21.275,27.153,15.507,6.863,9.733,-5.516,12.076,17.173,19.747,4.649,5.56,5.514,20.462,5.943,13.486,1.145,2.759,8.713,22.121,12.417,26.542,8.136,4.36,-6.576,2.549,8.522,15.628,21.228,12.457,5.986,12.07],[29.227,23.08,14.106,15.506,15.257,11.247,6.015,0.321,10.066,18.983,28.21,34.778,7.999,3.604,16.091,16.339,10.986,23.174,15.902,11.625,3.875,2.72,21.397,16.006,7.458,2.04,3.293,27.201,11.058,8.771,-3.359,13.258,2.709,13.776,12.248,-2.15,1.76,7.53,18.014,-5.126,-2.279,6.54,12.716,13.152,-6.051,20.813,22.798,22.01,18.589,14.008,5.257,-6.141,9.964,26.029,19.842,7.221,6.555,11.101,2.93,4.194,17.128,5.913,20.69,11.633,22.905,19.905,8.36,14.088,10.179,2.547,9.466,0.887,29.207,15.239,7.794,28.452,23.692,-0.742,26.535,27.897,9.964,14.295,13.781,14.391,13.78,17.113,12.788,36.115,5.448,20.068,8.922,35.15,4.455,15.979,14.987,16.631,17.112,10.812,21.749,6.811,3.218,23.443,17.771,11.974,11.804,4.368,12.068,17.594,0.164,16.204,10.502,7.499,12.246,24.693,25.518,2.656,19.911,-4.062,28.29,5.193,4.946,9.396,2.487,3.897,7.79,-0.522,3.701,11.979,4.025,10.91,-2.622,13.859,14.515,15.562,7.584,16.634,3.22,-2.005,11.602,10.897,8.219,-5.35,13.231,17.11,6.126,5.789,19.955,2.6,20.943,-2.762,-4.605,-5.292,23.057,13.028,18.668,-7.754,13.558,23.036,19.223,20.912,-0.387,21.233,27.471,15.492,7.084,10.228,-5.358,12.117,16.694,20.21,4.392,5.515,6.257,20.613,6.161,12.747,1.286,2.573,8.921,22.333,12.685,26.327,8.106,4.322,-6.049,2.608,8.35,15.83,21.487,12.733,6.011,11.781],[29.296,22.962,13.801,15.245,15.282,11.529,5.902,0.387,10.082,19.107,28.245,34.712,7.863,3.564,16.167,16.419,10.89,23.282,16.042,11.81,3.644,2.602,21.346,16.055,7.514,2.183,3.449,27.199,11.211,8.764,-3.204,13.332,2.975,13.884,11.937,-2.039,1.722,7.761,17.896,-4.905,-2.289,6.452,12.728,12.715,-6.132,20.5,22.668,22.002,18.645,13.877,5.182,-6.248,9.985,25.849,20.025,7.289,6.539,10.952,2.947,4.322,17.193,5.875,20.803,11.335,22.09,19.98,8.295,14.459,10.124,2.546,9.022,1.011,29.61,15.333,7.587,29.123,23.798,-0.673,26.511,28.545,10.067,14.434,14.021,14.715,13.283,17.076,13.02,36.445,5.407,20.103,8.777,34.961,4.636,16.079,15.887,16.86,16.747,11.197,22.016,6.794,3.172,23.349,17.925,11.548,11.542,4.107,11.945,18.019,0.317,16.267,10.552,7.265,12.711,24.793,25.447,3.124,20.173,-4.42,27.934,4.143,5.248,9.374,2.689,3.321,8.127,-0.344,4.123,12.205,3.77,10.554,-2.213,13.693,14.567,15.786,8.255,16.762,3.071,-1.994,11.284,10.857,8.12,-5.635,12.888,17.153,5.981,6.007,20.434,2.248,20.571,-2.666,-4.318,-4.826,22.616,13.302,18.59,-7.714,13.434,22.812,18.752,20.423,-0.409,21.181,27.108,15.612,6.959,10.768,-5.167,12.098,16.644,20.918,4.832,5.361,6.245,20.78,6.324,12.609,1.214,2.84,9.111,22.454,12.754,26.454,8.208,4.542,-5.684,2.541,8.274,15.547,21.454,12.286,6.585,11.414],[29.417,22.829,13.558,14.992,15.251,11.818,5.716,0.462,10.264,19.085,28.407,34.709,7.738,3.424,16.126,16.488,10.782,23.491,16.302,12.04,3.463,2.51,21.401,16.086,7.439,2.183,3.507,27.22,11.305,8.726,-3.012,13.397,3.142,14.132,11.702,-1.849,1.612,7.962,17.941,-4.804,-2.123,6.378,12.779,12.292,-6.204,20.276,22.415,21.906,18.743,13.724,5.134,-6.179,9.988,25.625,20.402,7.328,6.568,10.859,2.998,4.535,17.111,5.805,20.918,11.272,21.84,20.198,8.831,14.24,9.675,3.018,8.899,1.065,29.498,15.59,7.505,29.441,23.619,-0.915,26.809,28.394,10.281,14.545,13.796,14.64,12.81,17.111,13.313,36.606,5.52,19.593,8.905,34.451,4.202,16.114,15.803,17.224,16.821,11.242,21.733,6.638,3.103,22.921,18.226,10.851,11.774,4.101,12.019,18.164,0.422,16.33,10.583,7.247,12.721,24.677,25.581,2.603,19.907,-4.184,28.081,3.785,5.546,9.949,2.994,3.51,8.382,-0.075,4.651,12.055,3.575,10.337,-2.097,13.405,14.615,15.876,8.811,16.095,2.861,-2.073,11.573,11.038,8.237,-5.801,12.749,18.046,6.324,5.489,20.586,2.128,20.641,-2.391,-3.658,-5.217,21.798,12.973,18.464,-8.019,13.351,22.782,18.472,20.565,-0.343,21.194,26.937,15.556,6.995,11.178,-5.451,12.04,17.106,20.579,4.793,5.293,5.77,20.953,6.663,12.55,1.284,3.07,9.265,22.236,12.619,26.282,8.263,4.586,-6.387,2.664,8.44,15.443,21.543,11.678,5.942,10.668],[29.485,22.675,13.347,14.84,15.224,12.023,5.595,0.613,10.469,18.993,28.569,34.66,7.819,3.365,16.06,16.61,10.654,23.602,16.516,12.234,3.268,2.472,21.385,16.042,7.253,2.129,3.462,27.138,11.449,8.667,-2.932,13.406,3.229,14.264,11.67,-2.077,1.405,8.164,17.981,-4.804,-1.858,6.342,12.649,12.109,-6.238,20.264,22.28,21.716,18.885,13.584,5.15,-6.052,10.08,25.765,20.643,7.416,6.382,10.774,3.104,4.711,16.982,5.608,21.007,11.344,22.133,19.848,8.979,13.734,9.675,2.902,9.243,1.012,29.472,15.468,7.498,29.286,23.814,-0.764,26.724,28.671,10.688,14.384,13.945,14.456,13.027,17.086,13.602,36.311,5.393,19.827,8.784,34.626,4.329,15.761,15.729,16.997,17.062,11.046,21.647,6.48,2.935,23.008,18.427,10.599,12.323,4.061,12.049,17.9,0.298,16.789,10.524,7.364,12.609,24.405,25.549,2.036,19.585,-3.875,28.195,3.865,5.207,10.648,2.798,4.022,8.159,-0.424,4.527,12.404,4.018,10.171,-2.274,14.071,14.849,16.165,8.058,16.253,2.852,-1.648,11.63,11.368,8.036,-6.478,12.804,18.298,6.972,5.374,20.594,2.245,20.832,-2.098,-4.156,-4.865,21.702,13.032,18.426,-7.996,12.823,22.78,18.691,20.061,0.043,20.829,27.198,15.226,6.758,11.117,-5.372,12.033,17.044,20.659,4.339,5.448,6.054,20.893,6.779,12.818,1.557,2.756,9.276,22.249,12.453,26.024,8.306,4.387,-6.681,2.89,8.178,15.31,22.296,11.451,5.63,10.072],[29.585,22.739,13.239,14.641,15.163,12.093,5.657,0.891,10.54,19.061,28.531,34.593,7.98,3.436,15.987,16.671,10.514,23.483,16.568,12.416,3.052,2.427,21.342,16.043,7.057,1.943,3.34,27.066,11.687,8.585,-3.042,13.452,3.246,14.33,11.772,-2.423,1.264,8.249,17.953,-4.888,-1.471,6.364,12.552,12.27,-6.271,20.432,22.29,21.559,19.057,13.578,5.147,-6.003,10.273,25.95,20.698,7.461,6.082,10.701,3.009,4.803,16.807,5.472,21.223,11.449,22.278,19.728,8.562,13.876,10.54,2.614,9.161,0.994,29.64,15.641,7.472,29.713,23.553,-0.477,26.731,28.433,11.401,14.285,13.346,14.641,12.86,16.999,13.779,36.234,5.186,20.371,8.576,35.299,4.111,15.987,15.776,16.754,17.326,10.928,21.628,6.275,2.48,23.267,18.472,11.079,12.112,3.987,12.142,18.167,0.08,16.578,10.403,7.161,12.578,24.955,25.224,2.179,19.618,-3.918,27.505,4.198,4.773,10.945,2.505,3.948,7.981,-0.75,4.339,12.521,4.162,10.29,-2.283,14.147,14.897,16.3,8.042,16.303,2.334,-2.341,11.108,11.161,8.265,-6.694,12.749,17.775,7.158,5.327,20.695,2.01,20.777,-1.764,-4.167,-4.989,21.885,12.784,19.044,-7.947,12.796,22.6,18.703,19.849,0.257,20.795,26.854,15.098,6.994,10.343,-5.157,12.006,16.385,21.18,4.153,5.769,5.945,20.806,6.487,13.107,1.268,3.013,9.288,22.464,12.164,26.812,8.423,4.506,-6.061,2.97,7.815,15.312,22.209,11.77,5.663,10.243],[29.573,23.065,13.233,14.424,15.151,12.196,5.679,0.996,10.542,19.304,28.679,34.73,7.945,3.591,15.972,16.757,10.446,23.241,16.494,12.489,2.942,2.354,21.266,15.918,6.848,1.694,3.055,26.897,11.853,8.532,-3.239,13.587,3.304,14.213,11.846,-2.631,1.206,8.299,17.68,-4.905,-1.127,6.462,12.414,12.547,-6.251,20.539,22.335,21.496,19.265,13.705,5.173,-6.002,10.307,25.954,20.609,7.346,5.855,10.64,2.71,4.874,16.643,5.409,21.311,11.646,22.532,19.925,8.575,14.104,10.669,2.828,9.189,1.468,29.283,15.564,7.554,29.447,23.246,-0.123,26.893,28.521,11.743,14.239,13.6,14.271,12.469,16.992,13.845,36.587,5.503,20.422,8.835,35.039,4.833,16.254,15.742,17.134,17.49,10.627,21.858,5.781,2.224,23.147,18.401,10.898,12.515,3.756,12.41,18.277,-0.108,15.932,10.333,7.364,12.922,24.825,25.085,2.749,20.111,-4.417,27.626,4.061,4.925,10.561,2.236,3.248,7.99,-0.826,4.506,12.345,3.826,10.623,-2.374,13.924,14.545,16.048,8.352,16.293,1.848,-2.668,11.029,10.799,8.202,-6.157,13.002,17.048,6.836,5.444,20.895,1.971,20.718,-1.123,-3.985,-5.025,21.639,12.796,19.15,-8.036,13.471,22.755,18.907,20.556,0.667,20.755,27.453,15.471,6.922,10.049,-5.21,12.092,16.082,21.152,4.497,5.839,6.02,21.763,6.565,13.14,0.983,2.911,9.286,22.608,12.289,26.854,8.912,4.475,-5.767,3.086,7.547,15.337,21.837,12.078,5.639,10.62],[29.519,23.423,13.229,14.284,15.119,12.287,5.684,0.983,10.658,19.514,28.825,34.891,7.839,3.86,15.942,16.921,10.242,23.072,16.449,12.591,2.889,2.323,21.261,15.748,6.659,1.569,2.796,26.7,11.895,8.599,-3.395,13.753,3.46,14.103,11.917,-2.683,1.171,8.263,17.341,-4.829,-0.872,6.577,12.364,12.708,-6.244,20.523,22.369,21.479,19.383,13.885,5.143,-5.947,10.265,25.916,20.362,7.298,5.785,10.592,2.415,4.975,16.643,5.448,21.322,11.86,23.272,20.141,9.049,13.71,9.992,3.095,9.329,1.716,29.624,15.08,7.443,29.276,23.755,-0.326,27.089,28.248,12.015,14.27,13.933,14.135,13.073,17.012,13.978,36.849,5.779,20.165,8.845,34.226,4.762,16.122,16.005,16.812,17.428,10.633,22.008,5.451,2.695,23.106,18.173,10.678,12.511,3.786,12.617,18.356,-0.204,16.313,10.344,7.581,13.224,24.707,25.132,2.461,19.753,-4.439,28.003,3.652,4.618,10.228,2.252,2.58,8.344,-0.81,4.906,12.341,3.989,10.7,-2.501,13.829,14.773,15.884,8.778,16.123,2.25,-2.737,11.534,10.688,8.268,-6.173,12.765,16.692,6.464,5.608,21.041,1.955,20.544,-0.481,-3.936,-4.795,21.715,12.663,18.878,-7.82,13.92,22.596,18.932,20.136,0.821,20.911,27.44,15.59,6.974,10.082,-5.018,11.982,16.329,20.857,4.296,5.871,5.469,21.615,6.499,13.12,0.706,2.226,8.98,22.699,12.896,25.857,8.997,4.289,-6.436,3.183,7.467,14.955,21.938,12.73,5.736,10.789],[29.533,23.794,13.44,14.188,15.114,12.444,5.754,0.88,10.748,19.502,28.902,34.589,7.785,4.065,15.94,17.151,9.929,23.179,16.484,12.624,2.955,2.323,21.22,15.823,6.571,1.561,2.606,26.541,11.891,8.852,-3.378,13.871,3.681,14.151,12.068,-2.563,1.175,8.156,17.125,-4.677,-0.614,6.7,12.434,12.594,-6.276,20.33,22.394,21.363,19.361,14.041,5.067,-5.901,10.212,25.628,20.125,7.233,6.016,10.524,2.08,5.111,16.66,5.339,21.342,12.053,22.956,19.994,9.141,13.648,10.548,3.249,9.115,0.953,29.414,14.701,7.599,29.564,24.829,-0.507,27.079,28.287,11.454,14.274,13.21,14.221,12.869,16.823,13.959,36.518,5.392,20.704,8.359,34.814,4.594,16.069,15.906,17.095,17.159,10.775,21.693,5.618,2.524,22.5,18.42,10.913,12.232,3.984,12.749,18.16,-0.293,15.964,10.722,7.304,13.403,24.777,25.09,1.878,19.462,-4.539,27.495,3.15,4.409,10.064,2.676,2.401,7.944,-0.811,5.025,12.559,4.475,10.854,-2.325,14.152,15.318,15.953,8.503,15.441,2.708,-2.435,11.981,10.836,8.403,-6.466,12.852,16.886,6.739,5.642,20.77,1.845,20.709,-0.644,-3.911,-4.958,21.785,12.595,19.058,-8.091,13.559,22.107,18.659,19.627,1.15,21.087,27.096,15.782,6.759,10.259,-4.848,11.968,16.609,20.429,4.164,6.19,5.459,21.015,6.41,13.182,0.587,2.057,9.049,22.291,13.278,25.819,8.392,4.4,-6.661,3.21,7.779,15.075,21.725,12.284,5.782,10.879],[29.536,23.943,13.522,14.154,15.028,12.503,5.72,0.663,10.864,19.454,29.043,34.422,7.655,4.095,15.915,17.313,9.685,23.329,16.492,12.497,3.038,2.303,20.962,15.964,6.576,1.536,2.701,26.507,11.879,9.119,-3.228,13.928,4.008,14.258,12.33,-2.466,1.152,8.128,17.084,-4.566,-0.382,6.762,12.5,12.433,-6.488,20.168,22.217,21.077,19.33,14.271,4.967,-5.868,10.056,25.34,19.96,7.163,6.387,10.571,1.939,5.299,16.504,5.155,21.268,12.06,22.811,19.828,9.031,13.532,10.872,3.193,8.686,0.197,29.486,15.4,7.575,29.456,24.521,-0.7,27.546,28.619,10.929,14.414,13.656,14.408,12.594,16.963,14.088,36.037,5.178,20.873,8.534,34.804,5.019,16.107,15.462,16.897,17.088,10.893,21.869,6.219,2.191,22.498,18.256,10.628,12.972,3.82,12.507,18.498,-0.219,16.246,10.766,6.797,13.086,24.491,24.784,1.954,19.287,-4.427,27.116,3.185,4.54,10.186,2.364,2.445,7.89,-0.715,5.073,13.049,4.346,10.852,-2.078,14.428,15.113,16.037,8.169,15.477,2.612,-2.413,11.5,11.089,8.564,-6.606,13.024,17.037,6.716,6.143,20.65,1.754,20.607,-0.629,-3.979,-5.25,21.732,13.064,18.951,-7.968,12.859,22.6,18.671,19.633,1.519,21.267,26.66,16.035,6.762,10.714,-4.644,12.027,16.655,20.343,4.116,5.973,5.4,21.207,6.512,13.468,0.179,2.37,9.009,22.473,12.958,26.28,8.248,3.952,-6.085,3.51,8.163,15.223,21.212,11.906,5.793,10.891],[29.621,23.766,13.67,14.15,14.929,12.505,5.5,0.265,10.978,19.409,29.219,34.394,7.54,3.978,15.908,17.452,9.529,23.39,16.367,12.373,3.093,2.21,20.716,16.008,6.711,1.432,2.91,26.451,11.925,9.17,-3.115,14.007,4.317,14.44,12.434,-2.695,1.033,8.223,17.255,-4.663,-0.257,6.999,12.542,12.257,-6.678,20.146,22.131,20.737,19.234,14.479,4.805,-5.704,10.013,25.418,19.868,7.123,6.754,10.738,2.024,5.427,16.464,5.038,21.244,11.884,23.439,20.154,9.377,13.59,10.434,2.915,8.646,0.691,29.956,15.512,7.312,29.571,24.527,-0.784,27.486,28.272,11.079,14.678,14.097,14.596,12.956,16.739,13.893,36.225,5.716,20.592,8.492,34.222,4.674,16.047,15.465,16.793,17.698,10.833,21.647,6.645,2.733,22.942,18.206,10.117,12.567,3.888,12.12,18.826,-0.381,16.595,10.895,6.278,12.542,24.806,24.701,2.409,19.394,-4.157,27.44,3.395,4.751,10.332,2.158,2.676,7.975,-0.876,5.502,12.668,4.565,11.467,-2.003,14.289,14.947,16.113,8.77,16.206,2.431,-2.793,11.343,11.082,8.735,-6.753,12.37,16.388,6.511,5.992,20.741,1.832,20.148,0.242,-3.83,-4.773,21.748,13.584,18.874,-8.414,12.765,23.058,18.677,19.267,1.456,20.691,26.663,16.227,6.45,10.688,-5.034,12.138,15.905,20.43,3.741,6.139,5.212,20.899,6.71,13.141,0.114,2.344,8.861,22.55,13.274,25.876,8.252,3.597,-6.079,3.572,8.576,14.834,21.421,12.3,5.911,10.965],[29.719,23.78,13.959,14.148,14.713,12.486,5.428,0.036,11.071,19.35,29.307,34.324,7.703,3.691,15.958,17.657,9.394,23.543,16.307,12.199,3.197,2.286,20.529,15.919,6.911,1.39,2.965,26.337,11.965,9.059,-3.169,13.951,4.597,14.601,12.507,-3.031,0.871,8.37,17.306,-4.784,-0.121,7.193,12.718,11.906,-6.93,20.118,22.241,20.611,19.182,14.619,4.643,-5.552,9.996,25.587,20.033,7.19,7.021,10.935,1.999,5.417,16.47,4.937,21.161,11.63,23.376,20.07,9.379,13.611,10.822,2.778,8.846,1.015,29.852,14.738,6.899,29.571,24.526,-1.403,27.521,28.424,11.134,14.483,14.239,14.507,13.962,16.553,13.85,36.149,5.576,20.539,8.243,34.269,4.569,16.088,15.556,17.169,18.213,10.729,21.196,6.604,3.068,22.595,18.15,9.797,11.908,4.003,12.451,18.725,-0.513,16.346,10.677,6.539,12.147,25.132,24.886,2.027,19.314,-4.229,27.288,3.861,4.723,10.484,2.129,2.768,8.138,-1.267,5.922,12.692,4.598,11.429,-2.307,14.669,15.118,16.462,8.67,16.202,2.311,-3.196,11.424,10.921,8.977,-6.669,12.534,15.997,6.937,5.842,20.697,1.593,20.14,0.79,-4.177,-4.831,21.509,13.373,18.806,-8.394,13.035,22.455,18.597,19.609,1.083,20.71,26.959,16.258,6.365,10.404,-4.956,12.128,15.568,20.495,3.963,6.397,5.665,20.779,6.326,12.806,0.226,2.372,8.971,22.235,13.606,25.646,8.787,3.558,-6.28,3.524,8.941,15.149,21.612,12.368,6.589,10.763],[29.812,23.969,14.344,13.997,14.437,12.409,5.357,-0.081,11.115,19.391,29.367,34.345,8.057,3.489,16.057,17.777,9.244,23.526,16.366,11.954,3.466,2.416,20.413,15.831,7.192,1.342,2.832,26.262,12.012,8.936,-3.408,13.87,4.825,14.676,12.459,-3.287,0.666,8.451,17.054,-4.739,-0.063,7.212,12.915,11.695,-7.12,20.018,22.379,20.697,19.246,14.587,4.63,-5.413,10.029,25.619,20.13,7.216,7.028,11.108,1.83,5.245,16.588,4.94,20.988,11.628,23.016,19.955,9.229,13.945,11.121,2.689,8.995,0.888,30.116,14.5,7.235,29.409,24.573,-0.915,27.673,28.645,11.027,14.241,14.369,14.043,14.697,16.31,13.936,36.066,5.079,20.706,8.503,34.431,4.496,16.473,15.648,16.971,18.5,10.469,21.183,6.452,2.508,22.597,18.088,10.03,12.412,4.303,12.967,19.0,-0.305,15.951,10.238,6.992,12.298,24.839,24.867,1.755,18.755,-4.381,26.95,4.201,4.627,10.352,2.303,2.871,8.383,-1.618,5.829,12.69,4.673,10.944,-1.988,15.019,14.903,16.464,8.744,15.75,2.167,-3.544,11.754,11.135,8.888,-6.637,12.416,15.906,6.836,6.101,20.57,0.999,20.412,0.765,-3.981,-4.568,21.686,13.142,18.276,-8.255,12.602,22.496,18.518,19.773,1.313,21.183,26.991,16.196,6.348,10.709,-4.527,12.517,16.251,20.317,4.261,6.291,5.737,20.543,6.244,12.493,0.031,2.435,8.782,22.241,13.164,26.188,8.58,3.759,-6.042,3.546,8.844,15.211,21.783,12.284,6.941,10.594],[29.929,24.098,14.608,13.887,14.241,12.297,5.363,0.062,11.019,19.539,29.425,34.402,8.309,3.459,16.13,17.824,9.189,23.303,16.446,11.912,3.66,2.483,20.432,15.782,7.562,1.298,2.834,26.357,12.077,8.908,-3.362,13.73,4.909,14.65,12.263,-3.487,0.427,8.452,16.713,-4.378,0.027,7.049,12.932,11.671,-7.013,19.945,22.544,20.78,19.385,14.288,4.64,-5.275,10.069,25.628,19.98,7.008,6.821,11.291,1.794,4.959,16.755,5.069,20.88,11.811,23.248,19.909,9.306,13.694,10.78,2.91,9.213,0.515,29.853,14.702,7.052,29.292,24.615,-0.744,27.925,28.683,11.103,14.419,14.861,14.314,14.535,15.941,13.726,36.195,4.764,21.002,8.868,34.65,4.711,16.679,15.451,16.752,18.34,10.156,20.809,6.474,2.817,22.37,18.288,10.244,12.228,4.221,12.796,19.215,-0.534,16.276,10.092,7.247,12.789,24.32,24.781,2.059,19.086,-4.466,27.291,4.165,4.663,10.45,2.177,2.872,8.218,-1.698,5.54,12.222,5.16,10.948,-2.104,14.525,14.966,16.349,8.739,15.76,2.07,-3.316,11.842,11.513,8.851,-7.136,12.108,16.016,6.868,6.372,20.239,0.891,20.312,0.61,-3.937,-4.446,22.085,12.894,18.249,-8.583,12.177,22.879,18.324,19.402,1.647,21.024,26.379,15.995,6.488,10.732,-4.344,12.68,16.486,20.315,3.687,6.332,5.547,19.951,6.649,12.661,-0.098,2.251,8.701,22.028,13.095,25.972,8.362,3.695,-5.779,3.278,8.558,15.187,21.5,12.706,6.238,10.703],[29.993,23.988,14.738,13.86,14.132,12.174,5.415,0.19,10.809,19.658,29.4,34.57,8.349,3.498,16.189,17.814,9.254,22.927,16.261,12.038,3.809,2.552,20.412,15.797,7.956,1.198,3.089,26.589,12.162,8.889,-3.025,13.524,4.832,14.573,12.234,-3.474,0.298,8.474,16.761,-4.092,0.178,6.875,12.781,11.746,-6.756,19.86,22.661,20.861,19.564,14.073,4.601,-5.129,9.959,25.596,19.75,6.786,6.501,11.449,1.72,4.825,16.786,5.113,20.767,11.929,23.602,19.905,9.161,12.943,10.258,3.058,9.168,0.126,30.081,15.08,7.142,29.395,24.624,-0.832,27.921,28.484,11.034,14.699,14.985,14.885,13.844,15.652,13.544,36.308,4.841,21.197,8.789,34.475,4.553,16.523,15.627,16.885,18.029,9.938,21.022,6.678,3.17,22.703,18.071,10.241,12.268,3.77,12.488,19.168,-0.591,16.518,10.42,7.733,13.073,24.466,24.966,2.616,18.887,-4.175,27.496,4.217,4.806,10.768,1.766,2.976,7.43,-2.401,6.121,12.159,5.21,11.058,-2.441,14.031,14.671,16.314,8.08,15.627,1.913,-2.847,11.361,11.035,8.757,-7.503,12.471,15.492,7.127,6.032,19.912,0.83,19.846,0.35,-3.764,-4.278,21.453,13.17,18.575,-8.158,11.932,23.129,18.637,19.227,1.959,21.217,26.113,15.851,6.304,11.062,-4.532,12.484,16.436,20.48,3.569,5.864,5.623,20.451,6.209,12.887,0.22,2.477,8.624,21.961,13.049,25.765,8.491,3.651,-5.537,3.021,8.35,15.073,21.165,12.496,5.788,10.953],[29.939,23.763,14.758,13.871,14.121,12.039,5.606,0.186,10.619,19.769,29.398,34.705,8.296,3.511,16.307,17.707,9.278,22.695,15.942,12.138,3.938,2.665,20.375,15.815,8.326,1.132,3.44,26.78,12.267,8.718,-2.564,13.294,4.71,14.388,12.382,-3.364,0.202,8.503,16.772,-3.939,0.381,6.941,12.536,11.781,-6.525,19.803,22.884,20.911,19.725,13.995,4.438,-4.93,9.701,25.468,19.635,6.571,6.176,11.503,1.721,4.741,16.683,4.939,20.687,11.945,23.109,20.233,8.854,12.902,10.542,2.962,9.301,-0.541,30.267,14.762,7.423,29.522,24.683,-0.434,27.705,28.778,10.59,14.947,14.666,14.315,13.457,15.501,13.539,36.463,4.874,21.165,8.629,34.634,4.517,16.088,15.44,17.328,17.772,10.435,21.509,7.233,2.685,22.477,17.798,10.297,12.463,3.558,12.351,19.058,-0.549,16.058,10.234,8.326,13.07,24.066,25.262,2.702,18.903,-3.9,27.62,4.707,5.185,10.789,1.904,3.704,7.422,-2.752,5.804,12.607,4.687,11.526,-1.942,14.032,14.406,16.194,8.26,15.95,1.681,-2.951,11.077,10.98,8.725,-6.852,12.927,15.487,6.981,5.798,20.617,0.486,20.022,0.381,-3.797,-3.933,21.323,13.354,19.077,-8.099,12.035,22.585,18.794,19.312,1.88,21.403,26.598,15.626,6.271,11.347,-4.273,12.478,16.357,20.53,3.825,5.672,5.882,20.577,5.673,12.758,-0.044,2.475,8.352,22.011,12.567,25.859,8.327,3.666,-5.778,3.045,7.779,15.022,20.927,12.141,6.053,11.296],[29.863,23.55,14.728,13.952,14.151,11.874,5.833,0.019,10.611,19.844,29.481,34.76,8.354,3.437,16.342,17.534,9.335,22.565,15.776,12.208,3.914,2.773,20.436,15.837,8.681,1.143,3.664,26.85,12.34,8.422,-2.129,13.276,4.473,14.179,12.566,-3.277,0.04,8.413,16.714,-3.927,0.427,7.068,12.449,11.643,-6.26,19.91,23.058,20.901,20.05,13.883,4.266,-4.762,9.372,25.431,19.705,6.337,6.007,11.439,1.736,4.65,16.573,4.813,20.591,11.815,23.053,20.244,9.008,13.944,10.869,2.885,9.313,-0.885,30.143,14.113,7.45,29.672,24.647,-0.257,27.815,28.919,10.485,14.769,14.258,13.546,13.679,15.88,13.459,36.653,5.677,21.109,9.007,34.781,4.42,16.659,15.049,17.245,17.473,10.59,21.75,8.014,3.108,21.873,17.642,10.178,12.442,3.58,12.594,18.975,-0.649,16.06,10.203,7.909,12.861,24.141,25.655,2.325,19.332,-3.2,27.664,5.106,5.293,10.664,2.331,4.112,7.508,-2.621,5.318,11.818,4.669,11.734,-1.059,14.263,14.261,15.981,8.345,15.759,1.725,-3.067,11.266,11.051,8.898,-6.163,12.628,15.763,6.872,6.138,20.896,0.469,20.272,1.274,-4.179,-3.951,22.016,13.28,19.159,-8.103,12.442,22.679,18.598,19.269,1.885,21.715,26.283,15.263,6.01,11.005,-3.878,12.591,16.175,20.507,3.439,5.789,5.849,19.992,5.613,12.962,0.08,2.288,8.174,21.785,12.425,25.473,8.355,3.519,-5.684,2.987,7.205,14.905,20.685,12.152,6.097,11.904],[29.843,23.526,14.684,14.075,14.271,11.863,6.233,-0.258,10.667,19.862,29.522,34.804,8.52,3.34,16.374,17.378,9.378,22.479,15.731,12.316,3.966,2.796,20.591,15.83,8.828,1.233,3.731,26.828,12.332,8.191,-1.725,13.302,4.182,14.089,12.654,-3.194,-0.005,8.202,16.74,-4.159,0.551,7.141,12.59,11.413,-6.018,20.013,23.296,20.898,20.378,13.731,4.097,-4.602,9.257,25.334,19.71,6.223,5.905,11.376,1.733,4.567,16.517,4.808,20.363,11.72,23.169,20.073,9.062,13.824,10.384,2.623,9.475,-0.889,30.019,14.675,7.269,29.467,24.335,-0.702,27.881,28.478,10.928,14.632,14.177,13.314,14.191,15.973,13.307,36.645,5.619,21.193,8.926,34.536,4.171,16.641,15.042,16.903,17.596,10.147,21.893,8.155,3.264,21.785,17.36,10.48,12.674,3.403,12.9,18.98,-0.323,16.866,9.954,7.651,12.443,24.212,25.447,2.235,19.178,-2.701,27.954,4.724,5.542,10.748,2.181,3.76,7.191,-2.426,5.638,11.992,4.483,11.384,-0.822,14.163,14.62,15.878,7.641,15.605,1.722,-3.036,11.709,10.888,9.033,-6.026,12.084,15.742,6.789,6.457,21.027,0.284,20.196,1.843,-3.798,-4.014,21.898,12.694,19.064,-7.789,12.659,23.415,18.542,19.366,1.448,21.808,25.536,15.204,5.731,10.072,-4.025,12.534,16.011,20.627,3.302,5.891,5.373,20.477,5.498,13.114,-0.002,2.242,8.133,21.469,12.567,25.823,8.109,3.329,-5.203,2.904,7.441,14.89,21.129,12.366,5.848,12.317],[29.746,23.653,14.698,14.254,14.393,11.99,6.553,-0.609,10.572,19.779,29.389,34.614,8.609,3.21,16.487,17.333,9.327,22.478,15.755,12.317,4.072,2.695,20.814,15.953,8.787,1.367,3.74,26.801,12.252,7.991,-1.467,13.446,4.013,14.1,12.656,-3.082,-0.008,7.882,16.773,-4.416,0.678,7.195,12.655,11.218,-5.86,20.106,23.463,20.876,20.617,13.698,3.952,-4.463,9.249,25.171,19.843,6.209,5.909,11.296,1.664,4.543,16.529,4.689,20.217,11.77,22.839,20.445,8.987,13.106,10.32,2.344,9.621,-1.151,29.979,14.816,7.908,29.436,24.876,-0.708,27.852,28.386,10.956,14.789,14.463,13.308,14.127,16.175,13.646,36.388,5.322,21.146,9.015,34.796,4.515,16.312,14.761,17.285,17.919,10.175,21.999,7.915,3.402,21.79,17.636,10.732,12.424,3.851,12.631,18.793,-0.264,16.429,9.761,7.854,12.973,23.941,25.451,2.418,19.101,-2.548,28.35,3.585,5.522,10.904,2.05,3.843,7.049,-2.319,5.516,12.442,4.242,11.114,-1.136,13.874,14.955,15.787,7.442,15.601,1.62,-3.135,11.943,11.111,8.991,-6.38,12.026,15.706,6.421,6.092,21.367,0.29,20.277,1.537,-3.712,-3.981,21.481,12.391,19.353,-7.468,12.182,24.008,18.792,19.36,1.965,21.641,25.814,15.474,5.235,9.149,-4.233,12.308,16.04,20.506,3.719,5.609,5.247,20.561,5.525,13.049,-0.165,2.171,7.983,21.353,12.988,25.771,8.438,3.293,-5.002,2.837,7.594,14.966,21.212,12.393,5.512,12.445],[29.6,23.86,14.659,14.313,14.455,12.061,6.743,-0.884,10.383,19.675,29.187,34.468,8.619,3.077,16.623,17.369,9.268,22.466,15.763,12.134,4.101,2.682,21.057,16.083,8.79,1.514,3.775,26.913,12.139,7.907,-1.455,13.729,3.94,14.157,12.643,-2.931,0.017,7.548,16.884,-4.57,0.689,7.056,12.706,11.11,-5.809,20.24,23.547,20.739,20.811,13.955,3.855,-4.251,9.223,25.033,19.907,6.187,5.94,11.269,1.576,4.453,16.59,4.613,20.252,11.831,22.924,20.415,8.883,13.604,10.116,2.52,9.348,-1.617,30.119,15.016,8.31,29.407,25.056,-0.275,27.63,28.744,11.103,15.193,14.721,13.922,13.762,16.287,13.773,36.263,5.868,21.023,8.804,34.308,4.288,15.942,15.013,17.341,17.938,10.621,21.57,7.267,3.226,21.867,17.457,10.17,12.421,3.839,12.48,18.901,-0.24,16.178,9.59,8.143,13.264,24.162,25.469,2.187,19.568,-2.396,27.941,2.973,5.58,10.704,2.368,3.919,6.999,-1.835,5.276,12.398,4.594,11.215,-0.988,13.869,14.776,15.962,7.132,16.025,1.433,-3.435,11.919,11.222,8.939,-6.834,12.385,15.625,6.136,6.291,20.814,0.618,20.703,1.268,-4.335,-4.491,21.469,12.233,20.364,-6.937,11.612,24.034,18.898,19.62,2.215,21.907,25.742,15.705,5.523,8.984,-4.142,12.124,16.033,20.876,3.113,5.595,5.219,19.936,5.723,12.967,0.004,1.947,8.081,21.642,12.737,25.372,8.14,3.117,-5.413,2.781,7.774,15.363,20.867,12.324,5.543,12.023],[29.557,24.079,14.485,14.446,14.552,12.106,6.906,-0.859,10.205,19.595,29.027,34.425,8.414,3.077,16.684,17.443,9.199,22.311,15.774,12.054,4.04,2.759,21.232,16.095,8.749,1.722,3.914,27.064,12.067,7.913,-1.587,13.987,3.923,14.305,12.573,-2.749,0.099,7.225,17.18,-4.771,0.564,6.853,12.7,11.02,-5.679,20.388,23.569,20.62,20.788,14.296,3.839,-4.088,9.081,24.76,19.667,6.172,6.012,11.217,1.488,4.357,16.668,4.536,20.295,11.789,22.92,19.999,8.567,13.921,9.784,2.663,9.486,-1.294,29.66,15.073,8.303,29.057,25.083,-0.464,27.264,28.818,11.052,14.936,14.432,14.608,13.94,16.384,13.717,36.283,6.006,20.88,8.578,34.407,4.125,16.61,15.189,17.259,18.013,10.625,21.757,7.574,3.162,22.373,17.556,9.954,11.885,3.45,12.597,19.026,-0.047,16.817,9.304,8.354,13.041,23.935,25.749,2.468,19.429,-2.193,27.544,3.17,5.812,10.699,2.512,3.977,6.721,-1.457,5.081,12.537,4.866,11.658,-0.644,14.286,15.118,16.168,6.795,16.139,1.592,-3.552,11.508,11.023,8.69,-6.743,12.438,15.983,5.799,6.536,21.539,0.913,21.084,1.19,-4.431,-5.079,21.175,12.509,20.578,-7.035,11.59,23.495,19.01,19.416,1.441,22.07,25.783,15.488,5.538,9.097,-3.662,12.505,16.012,21.119,2.755,5.44,5.12,20.386,5.633,12.725,-0.304,1.63,8.064,21.439,12.653,25.623,7.757,3.18,-5.184,2.817,7.828,15.69,20.81,12.631,5.687,10.926],[29.439,24.204,14.258,14.656,14.706,12.167,7.0,-0.579,10.016,19.516,28.87,34.548,8.281,3.184,16.733,17.608,9.208,22.302,15.862,11.985,4.005,2.914,21.375,16.198,8.698,1.912,4.011,27.181,12.078,7.855,-1.68,14.183,3.787,14.615,12.539,-2.618,0.201,7.021,17.364,-5.041,0.278,6.766,12.632,10.938,-5.605,20.722,23.45,20.437,20.759,14.487,3.788,-3.902,8.814,24.441,19.442,6.041,6.031,11.013,1.414,4.328,16.75,4.439,20.284,11.684,23.031,20.182,8.62,13.798,9.876,2.749,9.013,-0.971,29.322,15.314,8.51,29.26,25.487,-1.119,27.052,28.792,10.594,14.861,14.228,14.259,14.261,16.629,13.45,36.217,6.059,20.636,8.555,34.728,4.214,17.148,15.37,17.345,17.438,10.315,22.509,7.887,3.203,21.691,17.499,10.193,11.998,3.424,12.68,19.114,0.107,16.949,8.802,8.504,12.564,24.057,26.229,2.858,19.702,-2.385,27.477,4.004,5.662,10.542,2.565,4.085,6.713,-0.905,4.78,12.563,4.83,11.786,-0.758,14.978,15.3,16.112,7.038,16.061,1.522,-3.424,10.973,10.969,8.661,-5.903,12.13,16.572,5.31,6.039,21.101,0.698,21.087,1.596,-4.584,-4.737,21.203,12.743,19.806,-7.284,11.975,23.146,19.052,19.182,1.296,21.779,25.79,15.861,5.074,9.021,-3.428,12.739,16.02,20.404,3.302,5.416,5.077,20.449,5.626,12.426,-0.37,1.382,7.843,21.735,12.937,25.504,7.547,3.644,-4.845,2.767,7.966,15.732,20.653,12.956,5.584,10.7],[29.281,24.361,14.019,14.766,14.663,12.171,7.091,-0.315,9.973,19.559,28.774,34.687,8.24,3.317,16.84,17.767,9.299,22.361,16.035,11.794,4.069,3.06,21.545,16.413,8.669,2.087,3.925,27.207,12.091,7.752,-1.791,14.275,3.56,14.892,12.549,-2.487,0.087,7.0,17.369,-5.145,0.111,6.695,12.631,10.978,-5.713,21.086,23.294,20.312,20.614,14.472,3.843,-3.723,8.489,24.152,19.366,5.867,6.02,10.858,1.38,4.475,16.842,4.401,20.231,11.579,22.959,20.231,8.626,14.096,9.348,2.915,9.344,-1.233,29.605,15.162,8.44,28.958,25.101,-0.454,26.989,28.517,10.658,15.083,14.728,13.585,13.848,16.469,13.074,36.444,6.152,20.665,8.403,34.74,3.972,16.816,15.521,17.636,16.856,10.353,22.998,8.194,3.446,21.643,17.821,10.643,12.463,3.605,12.903,19.389,0.236,16.433,8.258,7.726,12.436,24.129,25.669,2.728,20.207,-2.568,27.736,4.405,5.566,10.531,2.714,4.219,7.314,-0.852,4.858,12.633,4.531,11.645,-0.737,14.991,15.241,16.762,7.046,15.96,1.518,-3.103,11.142,10.845,8.588,-4.924,12.057,16.552,5.517,5.677,21.149,0.686,21.296,1.094,-4.694,-4.493,20.986,12.559,19.276,-7.524,11.979,22.99,19.413,19.154,1.374,21.703,25.301,16.178,5.557,8.334,-3.371,12.339,16.402,19.583,3.473,5.195,5.284,20.672,5.246,12.339,-0.304,1.441,7.721,21.542,13.61,24.925,7.35,3.754,-5.14,2.732,7.78,15.673,21.054,12.729,5.764,10.942],[29.135,24.352,13.797,14.795,14.278,12.107,7.195,-0.129,9.93,19.846,28.704,34.885,8.257,3.483,16.925,17.763,9.551,22.484,16.074,11.674,4.241,3.122,21.765,16.552,8.683,2.262,3.767,26.988,12.223,7.657,-1.814,14.272,3.402,15.019,12.539,-2.46,-0.161,7.179,17.283,-4.887,0.065,6.594,12.554,11.011,-5.952,21.355,23.17,20.251,20.509,14.317,4.038,-3.725,8.021,23.955,19.376,5.699,6.058,10.867,1.461,4.629,16.921,4.376,20.265,11.475,23.167,20.407,8.586,14.384,9.178,2.554,9.37,-1.06,29.377,15.323,8.075,28.444,25.312,-0.056,26.932,28.225,10.926,15.392,14.59,14.045,13.432,16.073,13.04,36.751,6.157,20.982,8.467,34.498,4.16,16.614,15.54,17.897,16.85,10.482,23.257,7.952,3.557,22.459,17.622,10.774,11.568,3.542,12.618,19.272,0.68,16.532,8.075,7.656,12.5,23.931,25.714,2.922,20.292,-2.161,27.38,4.131,5.534,10.791,3.013,4.078,7.769,-1.5,4.679,12.776,4.32,11.143,-0.631,14.354,15.413,16.79,6.552,16.119,1.601,-3.113,11.608,10.908,8.403,-4.745,12.462,16.184,5.859,6.016,21.322,0.219,21.538,0.356,-4.534,-5.022,20.711,12.457,18.997,-7.582,11.987,23.012,19.963,19.193,1.271,21.461,25.066,16.041,5.848,8.354,-3.217,11.875,16.719,20.225,3.504,5.774,5.292,20.711,4.78,12.807,-0.232,1.194,7.522,21.602,13.369,25.13,7.211,3.79,-4.901,3.287,7.778,15.981,20.929,12.092,5.738,11.426],[29.023,24.477,13.639,14.874,14.13,12.02,7.113,-0.021,9.864,20.101,28.593,35.084,8.267,3.473,17.06,17.674,9.902,22.803,15.952,11.542,4.394,3.113,21.997,16.581,8.785,2.538,3.698,26.586,12.314,7.64,-1.698,14.247,3.311,14.925,12.467,-2.568,-0.331,7.412,17.218,-4.68,0.094,6.548,12.327,11.054,-6.095,21.532,23.09,20.219,20.403,14.107,4.098,-3.723,7.675,23.944,19.465,5.486,6.007,10.939,1.566,4.82,16.943,4.368,20.366,11.567,23.208,20.439,8.402,13.984,9.529,2.561,9.423,-0.647,29.222,15.588,8.588,28.721,25.364,-0.283,26.91,28.47,11.052,15.38,14.269,13.756,13.128,15.457,13.105,36.824,6.766,21.224,8.802,34.801,4.524,16.744,15.376,17.723,17.017,10.682,22.91,7.46,3.77,22.619,17.789,10.895,11.612,3.512,12.481,18.747,0.752,17.02,8.272,8.41,12.499,24.566,25.411,2.998,20.305,-1.908,27.016,3.768,5.381,11.001,3.083,3.574,7.172,-1.95,4.405,12.737,4.61,11.068,-0.437,14.58,15.541,16.737,6.647,15.985,1.359,-3.205,11.662,10.761,8.413,-5.105,12.503,16.109,5.953,6.136,20.762,-0.028,21.541,0.28,-4.44,-4.827,20.678,12.472,18.995,-7.821,11.732,23.345,20.097,19.066,1.417,21.623,24.941,15.644,5.853,8.383,-3.186,12.429,17.081,20.936,3.322,6.182,4.934,20.416,5.097,12.341,-0.069,0.872,7.207,21.451,12.728,24.898,6.653,4.175,-4.64,3.309,7.663,16.439,20.316,10.632,5.786,11.089],[29.084,24.661,13.523,14.92,14.127,11.99,7.181,-0.045,9.843,20.118,28.507,35.277,8.34,3.417,17.136,17.604,10.25,23.216,15.809,11.546,4.468,3.111,22.063,16.592,8.848,2.82,3.677,26.171,12.357,7.621,-1.557,14.264,3.407,14.919,12.304,-2.756,-0.4,7.647,17.164,-4.745,0.215,6.554,12.077,11.052,-6.136,21.526,23.18,20.249,20.226,13.948,4.059,-3.705,7.451,23.913,19.618,5.323,5.878,11.053,1.558,5.048,17.005,4.37,20.43,11.557,23.467,20.255,8.402,13.855,9.459,2.518,9.434,-0.283,29.212,15.368,8.634,28.735,25.313,-0.368,26.603,28.117,10.808,15.382,14.05,13.112,13.143,15.348,13.106,36.955,6.055,21.37,8.897,35.675,4.432,16.832,15.047,17.443,16.765,10.797,22.529,7.615,3.691,22.815,17.48,11.249,11.994,3.658,13.008,19.28,0.91,17.214,8.464,9.08,11.882,24.692,24.946,3.159,20.255,-2.021,26.818,3.604,5.542,10.923,3.104,3.707,6.139,-1.804,4.253,12.709,4.657,11.208,-0.37,15.104,15.266,16.628,7.098,15.821,0.998,-3.251,11.076,10.217,8.401,-6.124,12.369,16.239,6.182,5.627,20.722,0.232,21.869,0.801,-4.449,-4.363,20.661,12.126,19.488,-7.933,11.812,23.62,19.717,18.998,1.513,21.418,25.047,15.192,5.76,7.798,-3.371,12.902,17.292,21.21,2.929,6.162,5.145,20.556,5.315,11.84,0.259,0.785,7.12,21.709,12.316,24.955,6.382,4.317,-4.915,3.419,7.719,16.367,20.109,9.943,5.676,10.519],[29.151,24.846,13.351,14.883,14.107,11.987,7.216,-0.051,9.799,20.092,28.362,35.514,8.471,3.401,17.12,17.658,10.514,23.613,15.605,11.663,4.487,3.218,21.942,16.599,8.77,2.988,3.83,26.134,12.47,7.514,-1.453,14.291,3.604,15.081,11.963,-2.857,-0.377,7.729,17.133,-4.933,0.337,6.591,11.936,10.939,-6.159,21.357,23.013,20.416,20.187,13.827,3.896,-3.807,7.338,23.943,19.604,5.283,5.769,11.065,1.55,5.228,17.065,4.381,20.462,11.556,23.468,20.075,8.353,14.178,9.447,2.538,9.463,-0.673,29.222,14.997,8.608,28.42,25.766,-0.165,26.576,27.913,10.809,15.493,14.052,13.392,13.421,15.897,13.189,37.234,6.24,21.305,8.965,35.701,4.28,17.063,15.494,17.896,16.458,11.124,22.683,8.608,3.449,23.155,17.252,11.711,11.663,3.844,13.165,19.356,1.142,17.076,8.415,8.483,11.278,24.505,24.633,3.316,20.225,-2.313,26.466,3.546,5.443,11.004,3.304,4.251,5.951,-2.005,4.765,12.652,4.862,11.381,-0.186,14.804,15.06,16.841,7.09,15.747,0.882,-3.294,10.309,10.39,8.199,-6.963,12.403,16.268,6.41,5.507,21.277,0.692,22.184,0.948,-4.586,-4.726,20.282,11.32,19.287,-7.626,12.056,23.006,19.892,18.981,1.492,21.226,25.093,14.991,5.264,6.891,-3.472,12.644,17.32,21.091,3.063,5.892,5.463,20.865,5.073,11.673,0.17,0.606,6.991,21.527,12.367,24.687,6.206,4.55,-4.815,3.889,7.095,15.943,20.7,9.715,5.473,10.814],[29.126,25.033,13.253,14.764,14.225,12.132,7.215,-0.073,9.792,20.108,28.206,35.661,8.576,3.372,17.138,17.657,10.681,23.863,15.533,11.583,4.521,3.448,21.789,16.664,8.562,2.968,4.164,26.182,12.563,7.321,-1.335,14.296,3.888,15.269,11.699,-2.865,-0.244,7.47,17.034,-5.238,0.342,6.632,12.026,10.925,-6.282,21.336,22.537,20.51,20.301,13.734,3.639,-3.903,7.136,23.879,19.566,5.261,5.672,11.059,1.535,5.306,17.076,4.475,20.406,11.48,23.957,20.291,8.357,14.014,9.484,3.041,10.164,-1.161,29.292,14.942,8.733,28.444,25.543,-0.273,26.412,28.391,10.49,15.366,14.413,13.656,12.914,15.943,13.287,37.401,7.16,21.075,9.142,35.422,4.268,17.153,15.626,17.93,16.448,11.552,22.965,9.157,3.629,23.146,17.226,11.358,11.864,3.81,13.143,19.281,1.162,16.891,8.815,7.926,12.157,25.184,25.088,3.349,20.134,-2.388,26.592,3.952,5.848,11.302,3.555,4.085,6.215,-2.563,5.124,12.749,5.04,10.931,-0.199,14.519,15.294,16.906,7.141,15.587,1.16,-3.254,10.278,10.986,8.398,-6.494,12.365,16.33,6.114,5.715,21.101,0.639,21.518,1.025,-4.932,-5.061,20.392,10.881,19.38,-8.039,11.804,23.019,19.885,19.364,1.83,21.051,25.178,15.265,4.987,6.581,-3.653,11.959,17.257,20.463,3.289,6.208,5.528,20.593,5.013,12.441,0.099,0.55,6.954,21.304,12.257,24.584,6.565,4.711,-4.789,3.623,6.925,15.755,21.064,9.735,5.225,10.889],[29.207,25.136,13.331,14.636,14.349,12.296,7.351,-0.258,9.871,20.158,28.109,35.649,8.82,3.521,17.065,17.668,10.743,24.068,15.608,11.537,4.627,3.585,21.674,16.81,8.333,2.862,4.497,26.188,12.655,7.23,-1.284,14.355,4.221,15.305,11.551,-2.92,-0.072,7.121,16.95,-5.571,0.363,6.797,12.21,10.947,-6.43,21.35,22.234,20.606,20.456,13.607,3.503,-4.015,7.024,23.748,19.447,5.297,5.651,10.979,1.529,5.365,17.074,4.519,20.205,11.452,24.132,20.791,8.447,13.109,9.352,2.817,10.057,-0.847,29.423,14.79,8.495,28.274,25.661,-0.367,26.429,28.242,10.489,15.435,14.32,13.497,12.098,16.183,13.368,37.446,6.935,20.966,9.104,35.515,4.197,16.546,15.55,17.775,16.312,11.838,22.831,8.728,3.941,23.308,17.267,11.105,11.812,4.063,12.917,19.299,1.025,16.91,8.991,8.019,12.237,25.058,24.72,3.772,20.131,-2.097,26.67,4.362,6.302,11.269,3.744,4.493,6.466,-2.705,5.218,12.951,4.846,10.23,-0.145,14.944,15.465,16.866,7.069,15.65,1.413,-3.329,10.538,11.219,8.497,-5.664,12.497,16.073,5.634,6.03,21.4,0.366,21.279,1.258,-5.061,-6.005,20.959,10.799,19.032,-8.325,11.105,22.886,19.55,19.067,1.809,20.921,24.825,15.209,4.563,6.698,-3.612,12.486,17.695,20.16,3.208,6.67,5.171,20.738,5.089,12.86,0.055,0.939,6.919,21.443,12.694,24.51,6.075,4.593,-5.062,3.815,6.988,15.82,20.828,9.817,4.919,10.69],[29.322,25.187,13.409,14.469,14.477,12.443,7.315,-0.469,9.987,20.287,27.949,35.67,8.997,3.657,16.829,17.667,10.896,24.173,15.78,11.337,4.788,3.543,21.586,16.86,8.106,2.819,4.87,26.034,12.609,7.221,-1.291,14.423,4.429,15.265,11.462,-3.02,0.055,7.006,16.89,-5.851,0.464,6.897,12.153,10.778,-6.299,21.289,22.176,20.696,20.582,13.486,3.402,-4.187,6.931,23.584,19.231,5.382,5.704,11.064,1.563,5.436,17.092,4.523,20.049,11.358,24.298,20.321,8.676,13.353,9.325,2.448,10.297,-1.049,29.601,14.95,8.878,28.449,26.156,-0.504,26.246,27.968,10.707,15.434,13.986,13.547,11.915,16.239,13.161,37.419,6.269,21.18,9.447,35.563,4.266,16.41,15.389,17.795,16.603,11.499,22.69,8.722,4.172,23.23,17.342,10.937,11.712,4.431,13.198,19.201,0.967,17.422,9.054,7.459,12.176,25.084,24.476,3.382,19.923,-2.0,26.672,4.476,6.498,11.394,3.287,4.808,6.721,-2.313,5.536,13.002,5.348,10.023,-0.084,14.824,15.397,17.081,6.347,15.722,1.543,-3.383,10.623,10.947,8.638,-5.824,12.507,15.851,5.643,6.413,21.664,0.47,21.601,1.532,-5.146,-6.314,21.282,11.171,18.974,-8.095,11.357,22.253,19.765,19.161,1.462,20.526,24.506,14.793,4.761,6.536,-3.07,12.851,18.167,20.559,3.123,7.051,5.348,20.431,5.485,12.769,-0.053,1.264,6.985,21.228,12.599,24.191,6.127,4.258,-5.028,4.199,6.9,16.237,20.365,10.162,4.748,11.088],[29.419,25.372,13.402,14.463,14.566,12.372,7.235,-0.751,10.104,20.406,27.767,35.858,9.124,3.647,16.714,17.704,11.048,24.113,15.784,11.186,4.913,3.439,21.554,16.925,7.87,2.712,5.09,25.757,12.526,7.223,-1.353,14.521,4.649,15.242,11.467,-3.082,0.069,6.949,16.862,-6.016,0.566,6.863,11.968,10.658,-6.055,21.268,22.095,20.831,20.64,13.169,3.383,-4.196,6.854,23.344,19.151,5.555,5.879,11.315,1.502,5.6,17.177,4.747,20.003,11.324,24.184,20.397,8.903,13.601,9.213,2.483,10.163,-1.584,29.6,15.095,8.73,28.57,26.186,-0.701,26.055,28.331,10.828,14.856,14.324,13.693,12.154,16.149,13.901,37.596,6.117,21.503,9.817,35.527,4.463,16.683,15.206,17.701,16.582,11.375,22.083,8.705,4.246,23.318,17.468,11.087,11.197,3.731,13.208,19.317,0.901,17.182,8.974,7.446,12.174,25.576,24.757,2.908,19.738,-2.215,26.506,4.718,6.747,11.276,3.325,5.022,6.675,-1.901,5.444,12.841,6.068,10.526,0.027,14.666,15.283,17.094,6.424,15.559,1.63,-3.741,10.37,10.3,8.691,-5.993,11.844,15.949,6.028,5.965,21.875,0.743,21.728,1.557,-5.459,-5.502,21.527,11.665,19.63,-7.871,11.704,22.107,19.656,19.384,1.802,20.428,24.752,14.828,4.931,6.086,-3.274,12.689,18.427,20.698,3.489,6.758,5.435,20.229,5.766,12.677,-0.232,1.298,7.061,21.189,12.175,24.218,6.08,4.066,-5.143,4.036,6.261,16.678,20.013,9.799,4.652,10.655],[29.595,25.594,13.453,14.436,14.566,12.277,7.26,-1.097,10.135,20.499,27.641,35.82,9.231,3.658,16.671,17.799,11.262,23.968,15.593,11.084,4.896,3.197,21.452,17.19,7.62,2.535,5.155,25.526,12.346,7.216,-1.403,14.522,4.874,15.253,11.579,-3.107,0.025,7.021,16.867,-6.107,0.78,6.639,11.718,10.546,-5.852,21.234,22.064,20.99,20.775,12.963,3.373,-4.21,6.805,23.289,19.147,5.774,5.866,11.313,1.399,5.677,17.354,5.088,20.132,11.373,24.133,21.118,9.06,13.345,9.039,2.88,10.474,-1.407,29.603,14.994,8.827,28.115,26.093,-1.051,25.746,28.671,11.1,14.895,14.288,13.761,13.243,16.304,13.962,37.562,6.368,21.684,9.777,35.982,4.584,16.851,15.043,18.134,16.533,11.761,22.018,8.775,4.06,23.505,17.354,10.723,11.425,3.558,13.064,19.405,0.787,16.711,9.06,7.821,11.661,25.505,24.365,3.067,19.656,-2.143,26.278,5.343,6.854,11.034,3.743,5.31,6.471,-2.158,5.688,13.059,5.801,10.944,-0.142,14.697,15.577,16.742,6.331,15.614,1.285,-4.028,9.805,10.177,8.388,-6.179,11.523,16.014,5.883,5.853,21.954,0.867,21.504,1.358,-5.538,-4.763,21.566,11.84,19.96,-7.258,11.706,22.274,19.475,19.636,2.223,20.349,24.585,14.346,4.884,5.754,-3.754,12.705,18.372,20.158,3.468,6.78,5.897,20.699,5.841,12.304,-0.146,1.28,7.521,21.501,11.411,24.14,5.627,4.029,-5.101,3.971,5.955,16.51,20.332,9.561,5.062,10.764],[29.844,25.737,13.673,14.259,14.515,12.209,7.362,-1.295,10.071,20.561,27.387,35.756,9.362,3.717,16.794,17.874,11.489,23.771,15.385,10.891,4.683,2.957,21.359,17.513,7.447,2.451,5.186,25.315,12.178,7.217,-1.394,14.431,5.063,15.292,11.58,-3.162,-0.134,7.183,16.914,-6.13,1.006,6.536,11.426,10.497,-5.698,21.188,22.051,21.096,21.068,12.89,3.309,-4.192,6.652,23.339,19.115,6.012,5.75,11.138,1.441,5.667,17.406,5.355,20.456,11.34,24.495,20.585,8.749,13.508,8.933,3.198,10.372,-1.573,29.563,14.272,8.976,27.773,26.369,-1.345,25.711,28.951,11.207,15.072,14.219,13.83,13.913,16.289,13.742,37.596,6.547,22.005,10.067,35.785,4.684,16.927,15.278,17.92,16.617,11.797,22.368,8.619,4.109,23.022,17.174,11.486,11.37,3.853,12.751,19.316,0.623,17.606,8.959,7.739,11.825,24.853,23.746,2.362,19.741,-2.08,26.023,5.649,6.762,10.952,3.345,5.36,6.449,-2.273,6.037,13.113,5.495,11.25,-0.573,14.586,15.843,16.875,6.976,15.775,1.227,-4.222,9.963,10.085,8.234,-5.958,11.995,15.885,5.707,5.76,21.964,0.841,21.128,1.584,-5.897,-4.805,21.415,12.201,19.508,-6.869,11.651,22.463,19.634,19.894,2.559,20.3,24.424,13.886,4.495,5.968,-3.456,12.773,18.31,20.064,3.671,7.122,6.043,20.61,6.01,12.012,-0.037,0.791,7.627,21.3,11.497,24.127,5.657,4.308,-4.952,4.211,6.097,16.418,20.39,9.874,5.307,10.869],[30.055,25.903,14.063,13.965,14.471,12.143,7.403,-1.364,9.833,20.529,27.13,35.765,9.553,3.649,16.984,17.859,11.83,23.615,15.347,10.837,4.414,2.784,21.394,17.761,7.258,2.189,5.211,24.993,12.08,7.27,-1.411,14.285,5.158,15.21,11.611,-3.293,-0.317,7.412,16.965,-6.162,1.261,6.645,11.186,10.674,-5.637,21.159,22.064,21.05,21.149,12.962,3.217,-4.053,6.599,23.422,19.056,6.166,5.691,11.036,1.444,5.58,17.293,5.588,20.614,11.289,24.693,20.221,8.787,12.952,9.021,3.101,10.732,-1.566,30.013,14.164,8.461,27.691,26.693,-1.252,25.32,29.375,10.68,15.369,14.507,13.649,13.369,16.12,13.636,37.474,6.694,22.178,10.366,35.516,4.736,16.537,15.217,18.391,16.687,11.821,22.479,8.491,3.877,22.623,17.009,11.715,10.688,3.315,12.873,19.372,0.716,18.478,8.936,7.671,11.818,24.739,23.451,2.822,19.646,-2.304,25.801,5.421,6.68,11.093,3.121,5.735,6.415,-2.144,5.771,12.827,6.205,10.832,-0.536,15.101,15.601,17.007,7.309,15.948,1.097,-4.285,10.206,9.72,8.414,-5.34,12.069,15.795,5.904,5.758,21.712,0.504,21.255,2.201,-5.869,-4.902,21.442,12.357,19.471,-6.611,11.688,22.555,19.552,19.878,2.491,20.473,24.683,14.285,4.317,6.274,-3.21,12.485,18.312,20.51,3.788,7.182,5.851,20.744,5.986,12.306,0.539,0.417,7.548,21.576,12.169,24.338,5.451,4.423,-5.011,4.496,6.211,16.539,19.948,10.189,4.947,10.543],[30.256,26.059,14.395,13.58,14.41,12.03,7.391,-1.385,9.735,20.476,26.883,35.868,9.758,3.578,17.047,17.826,12.226,23.498,15.422,10.896,4.198,2.728,21.524,18.065,7.052,1.981,5.374,24.704,12.099,7.448,-1.523,14.084,5.232,15.142,11.558,-3.445,-0.449,7.564,16.962,-6.216,1.493,6.741,11.018,10.869,-5.6,21.137,22.098,20.958,20.962,13.162,3.189,-3.874,6.702,23.494,19.115,6.299,5.574,10.869,1.4,5.545,17.162,5.71,20.595,11.362,24.497,20.959,9.16,12.725,8.877,2.506,10.505,-1.221,30.206,14.413,8.242,27.686,26.798,-1.081,25.12,29.518,10.347,15.368,14.898,13.239,12.859,16.065,12.999,37.769,5.92,21.799,10.776,35.559,4.628,17.031,14.871,18.219,16.421,12.734,22.399,8.355,3.397,23.109,17.22,11.114,11.234,2.793,12.816,19.335,0.147,17.979,8.911,7.757,11.799,25.203,23.69,2.486,19.677,-2.004,25.683,4.601,6.998,11.161,3.067,5.93,6.404,-2.109,5.824,12.449,6.271,10.368,0.016,14.76,15.06,16.845,7.083,15.85,0.812,-4.192,10.279,9.605,8.437,-5.164,11.949,15.943,6.214,6.101,21.891,0.361,21.49,2.404,-5.171,-4.889,21.253,12.457,19.788,-6.576,11.77,22.512,19.749,19.859,2.748,20.895,24.641,14.787,4.134,6.244,-3.401,12.119,18.397,20.599,3.952,7.063,5.777,21.202,6.018,12.467,0.284,0.73,7.15,21.708,12.347,24.266,5.174,4.483,-4.97,3.998,5.851,16.467,19.677,10.608,4.481,11.093],[30.44,26.079,14.619,13.19,14.292,11.978,7.176,-1.314,9.842,20.471,26.703,36.131,9.802,3.569,17.072,17.752,12.668,23.541,15.543,11.192,3.977,2.649,21.593,18.147,6.846,1.876,5.691,24.494,12.256,7.67,-1.564,13.829,5.264,15.006,11.37,-3.496,-0.459,7.527,16.975,-6.239,1.688,6.758,10.891,11.019,-5.61,21.107,22.267,20.812,20.842,13.423,3.202,-3.792,6.845,23.369,19.206,6.351,5.206,10.706,1.303,5.533,17.094,5.684,20.544,11.442,24.516,20.722,9.025,12.673,8.602,2.143,10.723,-1.656,30.283,14.536,8.413,27.791,27.059,-0.972,24.976,29.842,10.195,15.257,14.843,13.179,13.228,15.924,12.639,37.472,5.582,21.788,10.788,35.848,4.582,17.46,14.839,18.571,16.363,12.748,22.72,8.116,2.791,22.988,17.307,12.022,11.638,3.293,12.57,19.044,0.029,17.531,8.944,7.451,12.267,25.057,23.833,1.82,19.963,-1.852,25.901,4.174,7.207,11.12,2.934,5.9,6.945,-2.174,5.84,12.517,6.222,10.098,0.204,14.255,14.764,16.796,6.974,15.887,0.928,-4.219,10.221,9.891,8.551,-5.488,11.931,15.921,6.242,6.047,22.192,0.507,21.253,2.379,-5.324,-4.829,21.501,12.465,19.772,-6.211,12.065,22.791,19.453,20.008,3.133,20.542,24.68,14.832,4.254,5.878,-3.678,12.125,18.375,20.601,3.801,6.941,6.086,20.52,6.374,12.596,-0.154,1.385,7.046,21.287,12.239,24.041,5.571,4.279,-4.391,3.997,5.478,16.07,20.016,11.255,4.192,11.157],[30.564,26.135,14.767,12.819,14.153,11.988,6.889,-1.235,9.833,20.404,26.698,36.354,9.83,3.596,17.073,17.776,13.088,23.625,15.623,11.587,3.664,2.524,21.555,17.957,6.579,1.797,5.865,24.421,12.394,7.939,-1.555,13.761,5.316,14.748,11.148,-3.476,-0.266,7.36,17.06,-6.271,1.806,6.734,10.778,11.109,-5.702,20.876,22.492,20.77,20.93,13.496,3.16,-3.746,6.911,23.162,19.247,6.357,4.734,10.698,1.153,5.523,17.137,5.601,20.319,11.613,24.541,20.113,8.895,12.649,8.785,2.38,10.838,-2.01,30.225,14.557,8.23,27.858,26.964,-1.152,25.077,30.595,10.299,15.376,14.663,13.349,13.886,15.852,13.098,38.238,5.473,22.232,10.802,35.779,4.488,17.112,14.908,18.504,16.032,12.359,22.628,8.124,3.213,22.689,17.46,12.776,11.605,3.463,12.91,19.049,0.145,18.242,8.986,7.288,12.915,25.23,23.669,2.45,19.912,-1.972,25.649,4.736,7.626,11.316,2.947,5.93,7.384,-2.587,6.011,12.193,6.322,10.162,0.133,14.998,14.909,16.337,6.888,16.134,1.025,-4.282,10.024,10.328,8.487,-5.989,12.196,15.76,5.596,5.896,21.801,0.721,20.883,2.361,-5.747,-4.853,21.602,12.426,19.744,-5.409,12.188,22.85,19.435,19.735,3.201,20.757,24.56,14.928,4.384,5.911,-3.223,12.15,18.358,20.523,4.039,7.153,6.057,20.416,6.056,12.516,0.229,1.917,7.248,21.344,12.058,23.745,6.045,4.324,-4.525,4.496,5.265,15.885,20.394,11.82,3.746,10.618],[30.684,26.286,14.902,12.517,14.12,12.1,6.552,-1.22,9.79,20.427,26.888,36.576,10.006,3.76,17.101,17.779,13.31,23.553,15.534,12.025,3.565,2.533,21.358,17.785,6.429,1.84,5.923,24.392,12.493,8.121,-1.548,13.89,5.424,14.529,11.073,-3.602,-0.012,6.947,17.109,-6.263,1.795,6.694,10.739,11.14,-5.848,20.641,22.639,20.728,20.91,13.366,3.21,-3.659,6.96,23.005,19.152,6.266,4.262,10.708,1.215,5.634,17.261,5.579,20.178,11.809,24.913,20.354,8.643,12.726,8.87,2.775,10.996,-1.608,29.845,14.242,7.82,27.552,27.136,-1.192,25.043,31.142,10.45,15.348,14.573,13.28,14.328,15.88,13.42,38.32,5.513,22.062,11.186,36.329,4.56,17.083,15.073,18.495,16.169,12.927,22.354,7.942,3.169,23.233,17.435,12.767,11.771,2.835,13.256,19.263,0.065,17.769,9.302,7.087,12.902,25.007,23.253,2.249,19.598,-1.856,25.267,4.727,7.586,11.642,2.894,5.986,7.471,-2.562,6.352,12.147,5.82,10.266,-0.308,14.64,14.829,16.052,7.357,16.13,1.245,-4.657,9.627,10.803,8.523,-6.222,11.8,16.062,5.424,5.649,22.027,0.824,21.006,2.058,-5.885,-4.756,21.522,12.534,20.32,-4.813,12.199,23.054,19.476,19.738,3.18,21.019,24.34,14.773,4.252,6.259,-3.268,11.998,18.601,20.568,4.091,7.34,5.838,20.663,6.017,12.204,-0.196,2.061,7.835,21.488,12.21,23.643,5.982,4.267,-4.879,4.229,4.723,15.989,20.017,12.742,3.143,10.848],[30.757,26.57,15.055,12.267,14.154,12.332,6.379,-1.223,9.73,20.432,26.948,36.648,10.324,3.904,17.002,17.84,13.336,23.599,15.293,12.331,3.563,2.551,21.152,17.792,6.353,1.866,5.834,24.353,12.697,8.254,-1.513,14.047,5.506,14.344,11.076,-3.791,0.131,6.571,17.152,-6.241,1.646,6.64,10.927,11.045,-5.94,20.748,22.644,20.729,20.987,13.211,3.334,-3.634,7.043,22.951,18.95,6.241,3.753,10.725,1.312,5.786,17.37,5.565,20.28,11.957,24.98,20.503,8.742,12.902,8.771,3.279,11.394,-1.312,29.8,13.643,7.562,27.91,27.535,-1.122,25.158,30.941,10.681,15.382,14.942,13.224,13.85,15.814,13.277,38.3,4.954,22.055,11.287,36.702,4.987,16.93,15.165,18.437,16.828,12.818,22.173,7.765,2.809,23.024,17.182,12.64,12.66,2.715,13.086,19.362,0.254,17.284,9.131,6.819,12.59,25.112,23.183,2.002,19.643,-2.172,24.852,4.234,7.548,11.407,2.911,5.798,7.297,-2.561,6.258,12.348,5.539,10.14,-0.634,14.094,14.975,16.079,7.335,16.023,1.387,-5.223,9.689,10.491,8.448,-5.958,11.41,16.091,5.511,5.889,21.799,1.159,20.987,2.011,-5.389,-4.967,21.732,12.758,19.503,-5.12,12.253,23.191,18.984,19.662,3.115,20.976,24.326,14.684,4.223,6.28,-3.519,11.611,18.915,20.17,4.041,7.161,5.651,20.551,6.198,12.829,-0.112,1.5,7.938,21.559,11.973,23.874,5.509,4.288,-4.559,4.33,4.758,16.403,19.769,13.153,2.502,11.232],[30.779,26.759,15.074,11.96,14.221,12.459,6.324,-1.243,9.653,20.375,27.03,36.557,10.58,3.994,16.814,18.113,13.179,23.697,15.177,12.511,3.527,2.499,21.084,17.886,6.185,1.872,5.694,24.255,12.807,8.319,-1.577,14.178,5.506,14.265,10.964,-4.037,0.159,6.498,17.136,-6.255,1.472,6.693,11.173,10.89,-6.091,20.953,22.555,20.882,20.994,13.055,3.444,-3.694,7.028,23.091,18.804,6.282,3.466,10.731,1.324,5.915,17.513,5.55,20.404,12.16,25.008,19.983,8.84,13.14,8.949,3.58,11.435,-1.499,30.005,13.116,7.468,28.129,27.69,-1.37,25.276,30.675,10.898,15.095,14.564,13.099,13.59,15.836,13.269,38.391,5.0,22.122,11.459,36.249,5.283,16.665,14.705,18.357,16.474,13.167,22.137,7.932,2.804,22.893,17.029,12.417,12.761,2.659,13.419,19.405,0.109,18.247,9.172,6.563,12.545,25.382,23.506,2.562,19.493,-2.258,24.726,4.291,7.375,11.817,3.053,5.844,7.335,-2.643,6.191,12.591,6.053,10.054,-0.427,13.757,15.14,16.048,6.728,16.309,1.388,-5.438,10.077,9.997,8.478,-5.499,11.448,15.911,4.757,6.069,21.596,0.983,20.729,2.294,-5.385,-5.041,21.658,12.71,19.427,-5.851,12.39,22.949,19.652,19.467,2.715,20.912,24.455,14.73,4.45,6.636,-3.229,11.737,18.729,20.044,3.731,7.605,5.787,20.52,6.491,13.098,-0.013,1.106,7.747,21.54,12.106,23.722,5.588,4.777,-4.4,4.789,4.528,16.804,20.035,13.271,2.111,10.864],[30.861,26.748,14.861,11.691,14.268,12.5,6.518,-1.289,9.7,20.224,27.205,36.348,10.726,4.18,16.995,18.391,13.049,23.687,15.113,12.607,3.544,2.329,21.077,18.13,6.093,2.121,5.621,24.178,12.746,8.332,-1.729,14.37,5.534,14.218,10.738,-4.235,0.058,6.505,17.044,-6.396,1.359,6.871,11.426,10.714,-6.383,20.984,22.53,21.036,20.902,13.007,3.676,-3.768,6.986,23.246,18.838,6.329,3.391,10.775,1.269,6.154,17.781,5.514,20.384,12.416,25.007,19.86,8.695,12.821,8.855,3.121,11.622,-1.892,30.084,12.816,7.431,27.908,27.352,-1.83,25.398,30.762,10.799,15.328,14.771,13.523,13.599,15.916,13.774,38.196,5.162,21.895,11.682,35.683,5.05,16.667,14.56,18.594,16.629,12.904,22.309,7.728,2.809,23.161,16.898,13.029,12.167,2.729,12.98,19.527,0.293,18.015,9.712,6.304,12.776,25.152,23.467,1.975,19.6,-1.942,24.812,4.66,7.379,11.802,3.296,5.776,7.165,-2.931,6.022,12.875,5.933,9.541,-0.093,13.392,15.284,15.684,6.514,15.986,1.756,-5.588,9.988,9.714,8.736,-5.604,11.109,15.894,4.894,5.824,22.217,0.418,20.969,2.237,-5.594,-5.1,21.834,12.187,19.933,-6.353,11.913,22.691,19.703,19.835,2.612,20.637,24.808,14.683,4.566,6.344,-3.303,11.972,18.397,20.165,3.844,7.794,6.042,20.936,6.506,12.733,-0.104,1.171,7.974,21.401,11.907,23.709,5.814,4.922,-4.614,5.024,4.186,17.338,19.89,13.322,1.996,10.456],[30.954,26.573,14.523,11.566,14.303,12.339,6.794,-1.454,9.803,19.943,27.415,36.135,10.768,4.2,17.365,18.523,13.156,23.63,15.121,12.538,3.691,2.119,21.119,18.196,6.045,2.406,5.586,24.084,12.57,8.244,-1.778,14.57,5.484,14.095,10.636,-4.297,0.005,6.612,16.969,-6.649,1.333,7.025,11.515,10.437,-6.629,20.971,22.603,21.094,20.973,12.929,3.864,-3.84,6.966,23.359,18.967,6.258,3.429,10.848,1.165,6.36,17.981,5.529,20.191,12.667,24.986,20.04,8.601,11.759,8.879,2.945,11.455,-1.996,29.867,12.938,7.651,27.782,27.353,-1.484,25.659,30.935,11.164,15.715,14.617,13.334,13.102,15.768,13.683,37.992,5.491,21.661,11.792,35.474,5.307,17.131,15.01,18.663,17.387,12.306,22.241,7.717,3.19,23.307,16.889,12.976,12.072,2.307,12.334,19.661,0.706,17.609,9.893,6.229,13.165,25.399,23.474,1.956,19.596,-2.393,25.282,4.453,7.263,11.606,3.29,5.505,7.251,-2.989,6.292,13.186,5.787,9.488,0.01,14.143,15.597,15.818,6.33,15.746,1.423,-5.575,9.692,9.88,8.775,-5.733,11.257,16.094,5.469,5.95,21.734,0.812,20.934,1.899,-5.663,-5.412,21.91,11.717,19.565,-6.827,11.693,22.703,19.285,20.107,2.862,20.792,24.825,14.512,4.777,5.854,-3.728,11.795,19.029,20.176,3.921,7.849,6.439,20.805,6.645,12.177,-0.054,1.216,7.895,21.568,11.992,24.022,5.722,5.028,-4.575,5.185,4.229,18.268,19.896,14.04,1.786,10.876],[31.025,26.442,14.196,11.475,14.244,11.97,7.046,-1.606,9.885,19.662,27.562,35.954,10.643,4.192,17.607,18.613,13.303,23.518,15.256,12.316,3.856,1.994,21.195,18.043,5.977,2.55,5.532,24.045,12.287,8.133,-1.657,14.768,5.368,14.132,10.5,-4.271,0.063,6.833,17.003,-6.86,1.339,7.142,11.479,10.29,-6.662,20.903,22.683,21.103,20.936,13.007,3.975,-3.932,6.956,23.456,19.082,6.053,3.386,10.9,1.103,6.506,18.235,5.587,19.99,12.895,25.182,19.566,8.625,11.296,9.153,2.892,11.224,-1.93,29.636,13.166,8.022,27.982,27.568,-1.283,26.013,31.148,10.545,15.844,13.675,12.913,12.86,15.677,13.563,37.782,5.66,21.419,11.917,35.835,5.605,17.618,15.017,18.052,17.695,12.435,22.086,7.518,3.531,23.048,17.129,12.533,12.676,2.028,13.161,20.134,0.76,17.965,9.41,6.791,13.4,25.42,23.221,2.765,19.39,-2.634,25.623,4.461,7.339,11.78,3.623,5.423,7.204,-2.827,6.448,13.782,6.316,9.428,-0.006,14.049,15.643,15.802,6.612,15.808,1.303,-5.602,9.649,10.288,9.013,-5.73,10.886,16.08,5.26,6.345,21.24,0.869,20.955,1.908,-5.912,-5.761,21.574,11.7,19.452,-7.375,11.916,23.024,19.923,19.862,2.913,21.024,24.918,13.815,4.812,6.106,-3.618,11.769,19.491,20.267,3.97,8.095,6.206,20.392,6.416,11.971,-0.126,1.296,7.508,21.39,11.616,24.075,6.02,5.52,-4.539,5.245,4.524,18.751,20.262,14.49,2.299,11.392],[31.112,26.525,13.969,11.355,14.082,11.62,7.243,-1.593,9.923,19.513,27.578,35.9,10.531,4.174,17.68,18.79,13.3,23.332,15.428,12.134,4.037,2.079,21.19,17.779,5.974,2.66,5.582,23.998,12.198,8.051,-1.388,15.012,5.401,14.075,10.241,-4.297,0.005,7.008,16.989,-6.848,1.31,7.269,11.41,10.46,-6.543,21.023,22.801,21.053,20.687,12.896,4.13,-4.055,7.193,23.561,19.183,5.806,3.43,11.02,1.097,6.571,18.549,5.568,19.906,12.904,24.96,19.308,8.458,11.579,9.312,3.065,11.276,-1.913,29.675,13.031,8.587,28.115,27.387,-1.682,26.334,31.025,9.973,16.025,13.902,13.129,13.194,15.339,12.654,37.663,5.717,21.243,11.593,36.053,5.619,17.887,14.642,18.127,17.102,12.883,22.44,7.427,3.293,22.723,17.267,12.905,12.737,2.402,13.359,20.098,0.77,18.104,8.904,6.739,13.256,24.987,23.305,2.191,19.726,-2.172,25.73,4.43,7.384,11.356,3.731,5.341,7.105,-2.735,5.944,13.924,6.215,9.213,-0.182,14.048,15.552,15.857,7.115,15.792,1.578,-5.524,9.151,10.699,9.036,-6.333,10.516,16.651,5.253,6.376,21.56,0.653,21.124,2.247,-5.845,-5.668,21.84,11.725,19.626,-7.113,11.627,22.881,19.643,19.575,2.642,21.095,25.088,14.192,4.904,6.338,-3.693,11.888,19.061,20.241,3.885,8.057,6.191,20.191,6.114,11.689,-0.096,1.226,7.591,21.215,11.712,23.854,6.01,5.201,-4.447,5.307,4.517,18.485,20.054,14.488,2.51,11.121],[31.168,26.607,13.95,11.289,13.838,11.44,7.365,-1.568,9.918,19.502,27.547,35.974,10.456,4.091,17.721,18.803,13.355,23.067,15.386,11.905,4.163,2.249,21.283,17.574,5.993,2.604,5.663,24.013,12.167,7.898,-1.089,15.279,5.473,14.081,10.023,-4.333,-0.013,7.021,16.977,-6.626,1.268,7.367,11.367,10.508,-6.387,21.201,22.836,21.056,20.396,12.846,4.184,-4.133,7.496,23.628,19.177,5.707,3.57,11.163,1.068,6.457,18.752,5.463,19.887,12.767,25.142,19.61,8.223,12.072,9.745,3.452,11.091,-2.062,29.979,12.722,8.387,28.448,27.259,-1.386,25.97,30.995,9.448,16.001,14.046,12.811,12.47,15.339,11.56,37.732,6.2,21.029,11.739,35.878,5.345,18.387,15.128,18.058,16.961,13.082,22.739,7.609,3.613,22.58,17.044,13.227,12.568,2.247,12.667,19.316,0.875,17.501,9.382,6.374,13.151,24.717,23.484,2.03,19.895,-1.853,25.707,4.943,7.505,11.675,3.615,5.395,6.826,-2.763,5.375,13.723,6.248,9.045,0.059,13.536,15.539,15.58,7.239,15.608,1.417,-5.5,8.905,10.701,9.004,-7.162,11.172,16.848,5.543,6.203,21.69,0.589,21.094,2.33,-5.721,-5.226,21.712,11.508,19.339,-6.352,11.616,22.971,19.946,19.753,2.167,20.968,25.154,14.482,4.918,6.6,-3.924,12.037,19.08,20.613,3.712,8.037,6.316,20.623,5.913,11.292,-0.186,1.098,7.206,21.329,11.913,23.817,6.029,4.828,-4.434,5.088,4.814,18.516,20.145,14.214,2.5,11.044],[31.242,26.657,13.888,11.365,13.636,11.318,7.438,-1.495,9.837,19.505,27.54,36.051,10.498,3.871,17.78,18.695,13.55,22.84,15.215,11.831,4.302,2.448,21.363,17.41,6.068,2.551,5.699,24.122,12.137,7.771,-0.793,15.346,5.433,14.003,9.946,-4.312,-0.027,6.803,17.057,-6.331,1.188,7.391,11.373,10.453,-6.315,21.351,22.84,21.153,20.199,13.018,4.141,-4.208,7.636,23.618,19.171,5.597,3.762,11.232,0.985,6.284,18.839,5.324,19.981,12.613,25.534,19.559,8.089,12.116,10.218,4.161,11.27,-2.213,29.891,12.638,8.501,28.125,27.006,-1.062,25.768,31.588,9.377,16.05,14.545,12.166,12.158,15.05,12.143,37.939,6.562,20.94,11.531,35.612,5.097,18.081,14.944,17.89,17.072,12.604,22.758,7.789,3.859,22.554,17.007,13.489,11.766,1.913,12.451,19.353,0.772,17.261,9.222,6.267,12.967,24.513,23.565,2.718,19.939,-2.003,25.821,5.262,7.447,11.619,3.449,5.666,6.566,-2.902,5.743,14.038,6.272,8.597,0.74,13.279,15.969,15.572,6.557,15.609,1.346,-5.492,9.255,10.162,9.047,-7.282,11.014,16.346,5.291,6.386,20.952,0.772,21.201,2.404,-5.399,-5.258,21.569,12.149,19.116,-6.11,12.008,22.943,20.421,19.706,1.566,21.18,25.416,14.765,4.877,7.068,-4.17,12.139,19.381,20.505,3.697,7.789,6.246,20.698,6.201,10.887,-0.235,0.884,7.16,21.236,11.863,23.786,6.282,4.763,-4.613,4.997,4.845,19.075,20.093,13.356,2.844,11.42],[31.378,26.715,13.849,11.475,13.522,11.379,7.574,-1.357,9.684,19.442,27.549,36.006,10.512,3.619,17.768,18.613,13.682,22.661,15.068,11.781,4.514,2.574,21.358,17.346,6.131,2.681,5.677,24.277,12.018,7.641,-0.576,15.228,5.386,13.881,9.981,-4.342,-0.033,6.35,17.065,-6.204,1.071,7.432,11.449,10.526,-6.294,21.496,22.928,21.254,20.029,13.417,4.075,-4.361,7.76,23.589,19.214,5.612,3.917,11.271,0.873,6.2,18.907,5.25,19.982,12.419,25.195,19.484,8.119,11.806,10.01,4.359,11.335,-1.797,29.89,13.106,8.975,27.343,27.114,-1.113,25.744,31.481,9.926,16.272,13.991,12.202,12.544,14.64,12.917,37.887,6.419,21.088,11.583,35.568,5.12,17.754,14.382,18.1,16.846,12.521,22.415,7.884,3.698,22.286,16.747,13.405,11.136,2.558,13.028,19.925,0.835,17.75,8.612,6.633,13.185,24.049,23.95,2.716,19.554,-1.54,25.796,4.802,7.495,11.402,3.513,5.407,6.983,-2.61,6.312,13.975,5.966,8.428,0.953,13.494,16.66,15.738,6.539,15.656,1.166,-5.338,9.324,10.226,9.205,-6.928,10.584,16.416,4.9,6.357,20.412,1.149,21.539,2.068,-5.008,-5.24,21.994,12.14,18.968,-6.451,11.684,22.782,20.001,19.827,1.339,21.068,25.092,14.819,4.958,7.069,-4.251,12.494,19.401,20.387,3.526,7.704,6.23,20.466,6.206,10.622,-0.018,0.793,6.967,21.285,11.822,23.932,6.265,4.679,-4.328,5.184,4.717,19.32,19.866,13.171,3.095,11.08],[31.546,26.69,13.761,11.472,13.565,11.54,7.621,-1.129,9.571,19.365,27.418,35.867,10.444,3.367,17.763,18.454,13.708,22.397,15.143,11.623,4.563,2.445,21.224,17.542,6.236,2.927,5.592,24.529,11.898,7.657,-0.323,15.183,5.461,13.871,9.927,-4.33,0.055,6.214,17.038,-6.211,0.892,7.486,11.446,10.535,-6.301,21.5,22.966,21.31,19.797,13.813,4.0,-4.41,7.803,23.537,19.202,5.623,4.027,11.311,0.786,6.213,19.002,5.168,19.807,12.264,25.137,19.315,7.856,11.722,9.395,3.997,11.277,-1.553,30.39,13.107,9.003,27.322,27.686,-1.081,25.772,31.1,10.105,16.021,13.279,12.085,12.663,14.836,12.82,37.56,6.374,20.795,11.859,36.026,4.722,17.998,14.836,17.627,17.013,12.883,22.185,7.586,4.206,22.014,16.702,13.061,11.689,2.904,13.008,20.014,0.982,17.746,8.997,6.669,13.343,23.886,23.97,2.754,19.665,-1.421,26.185,4.562,7.383,11.424,3.809,5.228,6.68,-2.688,5.98,13.881,6.26,8.56,0.949,14.287,16.385,15.532,6.379,15.999,1.264,-5.317,9.156,10.65,9.248,-6.277,11.069,16.372,4.728,6.657,20.736,0.964,21.508,2.002,-4.888,-5.341,21.972,11.476,19.031,-6.603,11.552,23.015,20.45,20.414,1.763,21.106,24.837,14.956,4.722,6.839,-4.306,12.39,19.41,20.707,3.39,7.992,6.061,20.614,6.452,10.552,-0.281,1.049,7.091,21.226,12.489,24.199,6.349,4.477,-4.897,5.107,4.947,18.946,19.957,13.237,3.115,11.281],[31.685,26.7,13.657,11.29,13.697,11.599,7.417,-0.955,9.458,19.192,27.317,35.769,10.521,3.068,17.715,18.346,13.675,22.167,15.544,11.59,4.491,2.18,21.084,17.711,6.228,3.186,5.521,24.761,11.747,7.752,-0.092,15.187,5.681,13.987,9.832,-4.323,0.068,6.338,17.121,-6.165,0.872,7.507,11.291,10.607,-6.191,21.597,22.902,21.27,19.648,14.016,3.946,-4.469,7.68,23.585,19.182,5.704,4.178,11.504,0.746,6.289,19.048,4.985,19.657,12.158,25.385,18.956,7.738,11.613,9.426,3.7,11.173,-1.726,30.569,12.788,8.95,27.891,27.584,-0.496,25.463,31.493,10.007,15.905,13.376,12.462,12.582,15.229,12.482,37.523,6.262,20.86,11.534,35.851,4.445,17.961,15.196,17.973,16.816,13.358,22.289,7.744,4.445,22.068,17.046,12.811,11.924,2.528,12.61,19.693,1.499,17.929,9.213,6.626,13.08,23.941,23.735,2.755,19.469,-1.552,26.596,4.788,7.386,11.666,4.233,5.015,6.752,-2.749,6.023,13.793,6.617,8.944,0.895,14.157,15.825,15.693,6.388,15.943,1.612,-5.797,8.927,10.228,9.331,-6.168,11.101,16.276,4.714,7.08,20.88,0.56,21.225,1.919,-5.02,-5.387,21.896,11.322,18.724,-6.304,11.461,22.856,20.251,20.281,1.948,21.338,25.113,15.494,5.283,7.049,-4.053,12.281,19.018,20.741,3.355,7.871,5.938,20.324,6.023,10.628,-0.216,0.466,7.251,21.014,12.951,24.125,6.232,4.236,-5.333,4.985,5.26,18.935,19.749,13.338,3.255,11.568],[31.802,26.739,13.591,11.087,13.986,11.548,7.183,-0.958,9.412,19.055,27.355,35.778,10.681,2.851,17.598,18.226,13.649,22.056,15.963,11.576,4.472,1.947,21.08,17.859,6.207,3.488,5.504,24.788,11.614,7.822,0.085,14.991,6.135,14.119,9.856,-4.331,0.011,6.325,17.114,-6.069,0.874,7.59,11.169,10.661,-5.978,21.699,22.836,21.068,19.585,14.013,4.012,-4.533,7.503,23.683,19.056,5.79,4.358,11.727,0.758,6.293,18.972,4.87,19.619,12.066,25.337,19.334,7.666,10.814,9.472,3.504,11.404,-1.753,30.226,12.727,8.663,28.228,27.17,-0.319,25.526,31.7,9.776,15.998,13.9,12.786,12.38,15.304,12.628,37.574,5.811,20.734,11.622,35.471,4.299,17.688,15.383,18.187,16.356,13.04,22.446,7.733,4.159,21.332,17.383,13.274,12.156,2.162,12.651,19.503,1.754,17.862,9.136,6.73,12.87,23.803,24.059,2.265,19.541,-1.536,26.546,4.669,7.324,11.222,4.363,5.107,6.757,-2.997,6.335,13.501,6.581,8.945,0.88,14.008,16.127,15.923,7.131,15.697,1.676,-5.946,8.658,9.872,9.418,-6.872,11.107,16.243,5.123,6.829,20.286,0.52,21.531,2.049,-4.776,-5.104,22.088,11.361,18.45,-6.148,11.804,22.35,20.236,19.95,1.754,21.042,25.274,15.458,5.111,7.328,-4.231,12.909,18.79,20.735,3.265,7.726,5.907,20.405,5.738,10.895,-0.507,-0.033,7.54,20.917,12.882,24.04,5.84,4.368,-4.641,4.975,5.152,19.362,19.59,13.492,3.829,11.311],[31.872,26.7,13.548,10.908,14.236,11.409,7.016,-1.105,9.426,19.132,27.501,35.835,10.831,2.722,17.501,18.068,13.664,21.897,15.98,11.531,4.461,1.753,21.228,17.927,6.141,3.634,5.532,24.726,11.468,7.836,0.162,14.786,6.494,14.325,9.932,-4.269,-0.066,6.505,16.846,-5.967,0.775,7.628,11.053,10.743,-5.899,21.755,22.732,20.927,19.527,13.87,4.074,-4.509,7.46,23.667,18.984,5.899,4.506,11.824,0.615,6.124,18.875,4.976,19.885,12.06,25.017,19.608,7.782,10.346,9.436,3.232,11.47,-1.588,30.49,12.859,8.265,27.978,27.324,-0.746,25.703,31.231,10.115,15.99,14.226,13.027,12.311,15.581,12.825,37.595,5.593,20.575,12.064,35.635,4.197,17.663,15.529,17.953,16.457,12.723,22.725,7.796,4.016,21.008,17.463,13.259,11.934,2.005,12.644,19.063,1.74,17.648,8.822,6.646,13.027,23.306,24.399,2.506,19.672,-1.274,26.577,4.858,7.379,10.918,4.629,5.309,6.677,-2.998,6.996,13.383,6.556,8.939,1.081,14.144,16.34,16.179,6.591,15.605,1.189,-5.778,8.808,10.258,9.339,-6.389,10.706,16.097,5.22,6.66,20.315,0.797,21.939,2.207,-4.663,-5.337,21.681,11.78,18.447,-6.163,12.336,22.68,20.629,19.375,1.259,21.012,24.944,15.253,4.48,7.187,-4.784,12.605,19.105,20.44,3.263,7.872,5.974,20.758,6.096,11.522,-0.743,0.338,7.657,21.308,12.376,24.145,5.646,4.917,-4.088,5.494,4.986,19.206,19.575,12.832,4.085,11.687],[31.982,26.66,13.568,10.725,14.46,11.399,6.882,-1.258,9.503,19.316,27.492,35.949,10.953,2.589,17.481,18.021,13.582,21.683,15.943,11.541,4.478,1.65,21.383,17.787,6.042,3.621,5.681,24.835,11.195,7.751,0.181,14.68,6.721,14.51,10.075,-4.094,-0.268,6.735,16.616,-6.008,0.594,7.672,11.009,10.921,-5.807,21.92,22.719,20.697,19.446,13.717,4.089,-4.366,7.457,23.484,18.992,6.099,4.583,11.699,0.471,6.002,18.78,5.101,20.345,12.076,25.108,19.368,7.963,10.725,9.855,3.252,11.549,-1.882,31.287,12.459,8.109,27.81,27.345,-1.088,25.573,31.363,9.888,16.006,13.537,13.025,12.295,15.863,13.029,37.412,5.479,20.971,12.093,35.756,4.036,17.37,15.497,18.419,16.547,12.778,22.602,7.607,4.145,21.513,17.238,12.889,11.134,2.232,12.494,19.263,1.916,17.704,8.622,6.518,12.98,23.475,23.886,2.926,19.689,-0.996,26.69,5.029,7.414,11.451,4.715,5.539,7.018,-2.615,7.393,13.373,6.477,9.304,1.3,14.074,16.07,16.382,6.371,15.461,0.725,-5.616,8.812,10.175,8.989,-5.849,10.653,15.614,5.219,6.747,20.406,0.785,21.701,2.158,-4.512,-5.585,21.336,11.389,18.946,-6.537,12.283,22.745,20.474,19.362,0.909,21.045,24.768,14.791,5.042,7.126,-4.709,12.743,19.668,20.253,3.529,7.863,5.954,20.582,6.27,10.901,-0.508,0.441,7.665,21.761,12.117,24.153,6.005,4.998,-4.812,5.41,5.189,18.916,18.863,12.44,4.144,12.067],[32.281,26.664,13.582,10.582,14.554,11.554,6.718,-1.411,9.647,19.385,27.323,36.024,11.057,2.52,17.502,18.073,13.353,21.786,15.916,11.414,4.56,1.739,21.437,17.759,6.012,3.564,5.886,24.949,10.949,7.703,0.26,14.588,6.815,14.558,10.16,-3.88,-0.491,6.823,16.488,-6.205,0.527,7.761,10.884,11.084,-5.681,21.96,22.704,20.476,19.447,13.584,4.076,-4.237,7.474,23.365,18.782,6.276,4.672,11.578,0.38,6.04,18.626,5.157,20.691,11.951,25.49,19.611,8.416,11.007,10.476,3.407,11.565,-2.383,30.73,12.127,8.423,27.864,27.273,-1.241,25.526,31.831,9.81,15.858,13.343,13.744,12.197,16.155,12.817,37.633,5.461,21.072,11.8,35.985,3.922,17.666,15.824,17.7,16.498,12.882,22.185,7.599,4.254,21.669,17.214,13.24,11.106,2.384,12.069,19.706,1.776,17.51,8.813,6.49,12.891,23.328,23.782,2.473,19.62,-1.138,26.695,4.756,7.783,11.383,4.498,5.585,6.834,-2.534,7.488,13.289,6.691,9.154,1.107,14.656,15.6,16.464,6.928,15.535,1.032,-5.48,9.15,10.055,9.166,-6.259,10.898,15.805,5.273,6.645,20.044,0.368,21.741,1.624,-4.85,-5.774,21.15,11.187,18.837,-6.677,12.369,22.178,20.738,19.437,1.356,21.058,24.619,14.629,5.163,6.895,-3.628,12.737,19.759,20.241,3.591,7.484,5.927,21.224,6.408,10.721,-0.377,0.128,8.04,21.749,11.914,24.201,5.93,4.815,-4.82,4.659,5.349,19.051,18.684,12.607,4.023,11.646],[32.465,26.563,13.678,10.512,14.471,11.779,6.656,-1.587,9.821,19.388,27.056,36.162,11.05,2.568,17.539,18.128,13.282,22.014,15.889,11.256,4.547,1.867,21.259,17.6,6.052,3.402,6.027,25.082,10.789,7.691,0.345,14.452,6.839,14.575,10.137,-3.778,-0.553,6.929,16.553,-6.522,0.687,7.81,10.702,11.249,-5.622,22.059,22.566,20.36,19.395,13.397,3.908,-4.003,7.393,23.428,18.655,6.522,4.721,11.494,0.332,6.038,18.482,5.117,20.865,11.929,25.681,19.493,8.974,11.081,10.76,3.423,11.793,-2.454,30.766,11.776,8.376,28.142,27.714,-1.41,25.288,32.507,9.995,15.861,13.643,14.265,12.3,16.328,12.357,38.095,5.498,21.172,11.738,35.857,3.741,17.62,15.791,18.099,16.598,12.975,22.437,7.832,4.264,21.688,17.107,12.515,11.455,2.543,12.081,19.588,1.597,18.053,8.974,6.547,12.867,23.402,24.352,2.354,19.607,-1.325,26.936,4.72,7.826,10.586,4.53,5.46,6.466,-2.538,7.44,13.131,6.655,9.428,0.483,14.701,15.049,16.375,6.717,15.103,1.1,-5.283,9.007,10.273,9.358,-6.472,11.219,15.886,5.592,6.665,20.295,-0.262,22.002,1.865,-5.404,-5.805,20.952,11.426,18.309,-6.184,12.379,22.344,20.685,19.351,1.445,20.952,24.659,14.385,4.93,6.727,-4.052,12.307,19.169,19.991,3.363,7.541,6.278,21.926,6.451,10.874,-0.74,-0.228,8.323,21.94,12.893,24.312,5.899,4.798,-4.376,4.687,5.473,19.222,19.021,12.619,3.97,11.381],[32.683,26.452,13.886,10.464,14.337,11.845,6.657,-1.775,9.95,19.448,26.871,36.393,10.936,2.657,17.621,18.063,13.309,22.246,15.86,11.342,4.42,1.986,21.123,17.515,6.159,3.211,5.907,25.406,10.813,7.603,0.328,14.226,6.845,14.485,10.092,-3.817,-0.573,7.113,16.584,-6.814,0.876,7.797,10.732,11.319,-5.554,22.247,22.496,20.323,19.271,13.33,3.711,-3.885,7.251,23.539,18.918,6.812,4.731,11.335,0.222,6.025,18.336,5.078,20.992,11.917,25.664,19.417,9.19,10.788,10.734,3.38,11.792,-2.265,31.045,11.983,8.211,27.829,27.581,-1.707,24.861,32.054,10.014,15.86,13.959,13.506,12.144,15.891,12.734,38.267,5.55,21.303,11.94,35.848,4.082,17.682,15.332,18.588,16.545,12.708,22.392,7.748,3.777,21.523,17.043,12.825,11.288,2.625,11.958,19.344,1.626,17.963,8.466,6.651,12.893,23.898,24.358,2.569,19.272,-0.847,27.282,5.083,7.835,11.073,4.553,5.337,6.684,-2.375,7.473,13.066,6.418,9.313,0.448,13.949,15.1,16.258,6.503,15.577,0.979,-5.27,8.828,9.889,9.071,-6.349,11.322,15.742,5.802,6.74,20.461,-0.142,21.741,2.435,-5.636,-5.905,21.141,11.132,18.334,-6.017,12.333,22.68,20.679,18.721,1.116,20.667,25.05,14.199,4.601,6.727,-3.926,12.237,19.142,19.346,3.422,7.823,6.109,21.635,6.602,10.796,-0.65,-0.28,8.5,21.882,13.327,24.346,5.918,4.713,-4.564,5.321,5.316,18.853,19.582,12.964,4.058,11.617],[32.703,26.399,14.178,10.505,14.211,11.801,6.689,-1.938,9.974,19.56,26.758,36.515,10.929,2.864,17.719,17.941,13.363,22.46,15.772,11.467,4.321,2.077,21.003,17.673,6.304,3.096,5.655,25.632,10.961,7.373,0.374,14.063,6.892,14.235,10.04,-3.965,-0.55,7.221,16.499,-7.099,1.005,7.645,10.738,11.217,-5.566,22.248,22.48,20.282,19.183,13.375,3.531,-3.885,7.138,23.693,19.18,7.039,4.783,11.195,0.122,6.175,18.111,5.009,21.067,11.915,25.498,19.939,9.253,10.44,10.922,3.049,11.598,-2.912,31.77,11.75,8.274,27.351,26.937,-1.53,25.04,31.94,10.085,16.042,14.254,12.848,12.637,15.391,13.275,38.251,5.269,21.079,11.769,36.161,4.598,17.879,15.326,18.117,16.395,13.031,21.954,7.758,3.561,21.857,17.234,13.36,11.661,2.092,12.206,19.088,1.482,17.52,8.648,6.88,12.994,23.867,24.657,2.719,19.406,-0.834,27.394,4.975,7.446,11.004,4.392,5.377,6.842,-2.444,7.342,12.826,6.995,8.942,0.954,14.015,15.285,16.111,6.752,15.745,0.901,-4.881,8.925,9.938,9.301,-5.986,11.296,15.579,6.086,6.543,20.223,0.401,21.894,2.058,-5.651,-6.286,21.116,11.338,18.868,-6.074,12.544,22.701,20.804,18.833,1.489,20.654,24.728,14.087,4.278,6.788,-3.493,12.201,19.429,19.826,3.528,7.824,5.737,21.204,6.888,10.77,-0.634,0.165,8.793,22.028,12.85,24.554,5.42,4.475,-4.558,5.137,5.332,18.306,20.262,13.43,4.097,11.298],[32.692,26.287,14.506,10.483,14.101,11.965,6.623,-2.074,10.001,19.675,26.694,36.393,10.909,3.053,17.763,18.012,13.512,22.606,15.761,11.673,4.206,2.163,20.99,17.767,6.33,3.06,5.452,25.719,11.07,7.268,0.486,14.072,7.086,14.049,9.985,-4.103,-0.411,7.279,16.349,-7.364,1.057,7.401,10.728,11.066,-5.637,22.091,22.541,20.299,19.118,13.435,3.319,-3.871,7.006,23.778,19.411,7.235,4.881,11.172,0.21,6.3,17.868,4.932,21.188,12.028,24.998,19.796,9.056,10.704,10.659,3.105,11.875,-3.055,31.643,11.831,8.196,27.384,26.862,-1.173,24.719,31.701,10.185,16.387,14.306,12.842,13.064,15.308,13.09,38.143,5.369,21.136,11.672,36.353,4.746,17.807,15.616,18.554,16.333,12.849,21.792,7.907,3.988,22.44,17.158,12.813,11.421,1.378,12.317,18.078,1.308,18.081,8.721,7.366,13.12,24.079,24.777,2.471,19.256,-1.166,27.498,4.586,7.259,10.807,4.129,5.117,6.146,-2.445,7.223,12.617,7.218,9.15,1.268,13.99,15.283,15.826,6.966,15.473,0.876,-4.439,8.851,10.314,8.942,-6.108,11.266,15.377,6.113,6.305,20.107,0.38,21.968,1.795,-5.951,-6.791,21.215,11.432,18.932,-6.383,12.347,22.498,20.843,18.805,1.563,21.038,24.737,14.576,4.534,7.053,-3.766,12.168,19.185,20.537,3.313,7.785,5.996,21.145,6.828,11.4,-0.843,0.467,8.935,21.987,12.301,24.855,5.227,4.104,-4.629,4.772,5.473,17.798,20.49,13.937,4.488,11.251],[32.626,25.982,14.756,10.5,14.107,12.154,6.545,-2.039,10.074,19.638,26.532,36.24,10.896,3.16,17.83,18.133,13.405,22.755,15.742,11.812,4.07,2.183,21.099,17.959,6.335,2.97,5.305,25.76,11.039,7.315,0.61,14.196,7.358,13.951,10.038,-4.137,-0.323,7.349,16.183,-7.658,1.101,7.168,10.715,10.992,-5.672,21.978,22.72,20.339,19.028,13.512,3.092,-3.957,6.89,23.869,19.557,7.44,5.132,11.315,0.375,6.209,17.553,4.817,21.314,12.397,25.057,19.15,8.52,11.483,9.744,3.829,11.475,-2.591,31.27,11.736,8.14,27.591,27.086,-1.471,24.793,31.724,10.196,16.839,14.23,12.763,13.389,15.276,12.705,38.094,5.39,21.558,12.047,35.781,4.393,17.337,15.661,18.273,16.402,12.813,22.114,7.909,3.658,21.993,17.013,12.815,11.803,1.018,12.013,17.645,1.298,18.24,8.255,7.008,13.1,24.469,24.616,2.466,19.137,-0.939,27.683,4.875,7.238,11.4,4.022,4.976,5.969,-2.824,7.574,12.927,6.487,9.093,1.318,13.913,14.878,15.635,7.043,15.354,1.017,-4.762,9.015,10.083,8.712,-6.633,10.972,15.314,6.282,6.211,20.474,0.424,21.478,2.005,-6.181,-7.148,21.522,11.708,18.251,-6.583,11.845,22.629,20.64,19.019,1.533,21.245,24.918,14.811,4.611,7.321,-3.237,11.904,18.71,20.923,3.038,7.869,5.631,21.3,7.186,12.123,-0.447,-0.084,8.529,21.977,12.244,25.025,5.079,3.603,-4.787,5.176,5.186,17.897,20.351,13.598,4.366,11.607],[32.397,25.665,14.965,10.555,14.093,12.193,6.424,-1.876,9.964,19.546,26.424,36.022,10.952,3.219,17.903,18.055,13.238,22.894,15.654,11.93,3.998,2.122,21.111,18.07,6.333,2.791,5.292,25.843,11.094,7.396,0.669,14.275,7.51,13.871,9.999,-4.209,-0.341,7.532,16.073,-7.925,1.189,7.036,10.702,10.938,-5.729,21.865,22.964,20.514,19.031,13.579,2.772,-3.924,6.839,23.873,19.57,7.554,5.406,11.463,0.347,6.112,17.256,4.642,21.36,12.89,25.089,19.435,8.558,11.324,9.601,4.166,11.783,-2.869,31.672,12.084,8.117,27.702,26.848,-1.805,24.843,32.272,10.301,16.532,14.47,12.728,13.418,15.576,12.94,37.771,5.358,21.266,11.75,35.757,4.043,17.588,15.344,18.675,17.037,13.088,22.164,7.925,3.57,21.83,16.778,13.343,12.271,0.82,11.693,18.096,1.208,17.997,8.001,6.601,13.116,24.175,24.88,2.737,19.469,-0.024,27.613,4.684,7.079,10.871,4.276,4.859,6.795,-2.466,7.858,12.907,7.109,9.495,1.104,13.86,14.573,15.659,6.658,15.512,0.958,-5.34,9.724,10.106,8.666,-6.538,10.983,15.748,6.575,5.762,20.297,0.852,21.601,1.856,-6.418,-7.146,21.021,11.786,18.014,-6.667,12.018,23.111,20.722,19.413,2.168,21.236,24.87,14.47,4.207,6.767,-3.701,12.053,18.548,20.801,3.024,7.942,5.342,21.514,7.134,12.785,0.124,-0.492,8.577,21.973,12.168,24.898,5.235,3.081,-5.024,5.181,5.196,18.215,20.312,13.538,3.933,11.544],[32.214,25.424,15.018,10.763,14.147,12.187,6.345,-1.793,9.829,19.419,26.361,35.916,10.988,3.254,17.951,18.137,13.244,22.85,15.498,11.994,3.933,2.095,21.124,18.015,6.264,2.688,5.435,26.02,11.065,7.538,0.737,14.286,7.611,13.918,10.189,-4.25,-0.476,7.737,16.181,-8.028,1.29,6.984,10.696,10.954,-5.862,21.768,23.28,20.605,18.98,13.531,2.4,-3.856,6.8,23.726,19.432,7.567,5.542,11.523,0.138,6.085,17.137,4.67,21.309,13.382,24.754,19.593,8.949,10.656,9.534,4.378,11.617,-2.753,32.244,12.141,8.005,27.857,25.843,-1.088,24.731,32.253,10.693,16.222,15.156,12.808,13.449,15.344,13.702,37.576,5.151,20.675,11.711,36.043,3.782,17.869,14.931,18.983,16.421,12.753,22.07,7.781,3.153,22.734,16.615,12.988,11.994,0.895,11.775,18.538,0.997,18.444,8.441,7.13,12.992,24.209,25.272,2.489,19.439,0.375,27.805,4.367,7.272,11.261,3.881,4.893,6.367,-2.607,7.322,12.768,7.691,9.126,1.032,13.341,14.554,15.679,6.781,15.741,0.675,-5.078,8.921,9.945,8.581,-5.686,11.064,15.376,6.299,5.994,20.109,0.368,21.806,1.367,-6.557,-7.226,21.077,11.412,18.169,-6.569,12.354,23.329,20.651,20.084,1.965,21.391,24.781,13.998,4.018,6.297,-4.049,12.47,18.317,20.626,3.163,7.649,5.555,21.24,7.26,13.806,-0.176,0.187,9.116,22.066,12.218,24.759,5.549,2.912,-5.072,4.917,5.519,18.039,20.583,13.817,4.444,11.387],[32.155,25.158,15.024,10.868,14.13,12.352,6.246,-1.697,9.623,19.133,26.402,35.969,11.01,3.363,17.998,18.174,13.25,22.784,15.382,11.704,3.772,2.094,21.213,17.988,6.304,2.56,5.686,26.161,11.069,7.656,0.953,14.115,7.641,14.084,10.193,-4.348,-0.796,7.745,16.394,-7.956,1.309,7.029,10.62,11.0,-6.017,21.583,23.566,20.591,18.849,13.354,2.21,-3.809,6.738,23.677,19.268,7.648,5.655,11.554,-0.029,6.048,17.119,4.908,21.167,13.799,24.28,19.507,9.357,11.349,10.025,4.238,11.295,-2.618,32.115,12.62,7.807,27.412,25.187,-0.514,24.802,32.035,11.164,16.185,15.464,12.622,13.217,15.472,14.148,37.674,5.192,20.429,11.799,35.591,3.63,18.149,15.146,18.392,16.339,12.558,21.827,7.744,3.545,22.264,16.401,13.223,12.013,0.922,11.913,18.788,0.886,18.548,8.633,7.345,12.799,24.409,25.334,2.148,19.411,0.078,28.108,4.665,7.45,11.309,3.631,5.392,6.622,-2.782,7.49,13.152,8.066,9.468,0.877,13.741,14.939,15.984,7.388,15.339,0.667,-4.647,9.063,9.755,8.76,-5.685,11.089,15.333,6.31,5.966,20.384,-0.254,21.586,1.23,-6.671,-7.322,21.568,11.443,18.511,-6.268,12.061,23.476,20.041,20.502,1.18,21.891,24.496,13.851,3.78,6.333,-3.534,12.472,18.327,20.251,3.122,7.636,5.309,21.031,7.607,14.802,-0.513,0.351,9.465,21.876,11.785,24.769,5.573,2.548,-4.641,4.793,5.517,17.646,20.234,14.354,4.831,11.664],[32.186,24.832,14.921,11.137,14.095,12.585,6.164,-1.609,9.48,18.926,26.472,35.937,11.001,3.476,18.035,18.124,13.209,22.783,15.396,11.324,3.756,1.955,21.314,17.99,6.366,2.457,5.856,26.076,11.182,7.832,1.086,13.939,7.682,14.31,10.239,-4.484,-1.085,7.688,16.412,-7.819,1.03,7.101,10.608,10.913,-6.117,21.25,23.691,20.569,18.803,13.107,2.171,-3.708,6.72,23.821,19.014,7.854,5.69,11.6,-0.074,5.982,17.14,5.16,20.911,14.15,25.039,19.212,9.307,11.644,10.97,3.947,11.732,-2.432,31.404,12.657,7.756,26.95,24.776,-0.826,24.678,31.791,11.636,16.224,15.657,12.911,13.307,15.394,14.385,37.79,5.328,20.512,11.805,35.609,3.397,18.232,15.024,18.201,16.648,12.944,21.742,7.664,3.405,21.801,16.191,14.062,11.837,1.41,12.052,19.19,0.906,18.176,8.505,7.032,12.764,24.377,25.62,2.153,19.427,-0.118,27.894,4.798,7.714,10.69,4.015,5.95,7.112,-2.631,7.948,12.866,7.906,9.32,1.297,14.12,15.346,16.114,8.109,15.812,0.491,-4.588,8.981,9.724,8.609,-6.146,11.521,15.689,6.445,5.852,20.419,-0.162,21.438,1.569,-6.506,-6.919,21.257,11.433,18.584,-6.488,12.051,23.506,19.902,20.612,1.814,21.912,24.199,13.845,3.856,6.851,-3.378,12.628,18.626,20.086,3.454,7.808,5.537,21.159,7.95,15.135,-0.544,-0.315,9.386,21.534,11.353,24.821,4.968,2.142,-4.483,4.98,5.444,17.656,20.103,14.695,4.879,11.514],[32.191,24.605,14.888,11.428,14.126,12.743,6.163,-1.56,9.338,18.979,26.416,35.944,11.025,3.422,18.006,17.993,13.344,22.84,15.564,11.16,3.769,1.694,21.3,17.978,6.308,2.406,6.053,25.887,11.308,8.11,1.04,13.83,7.813,14.425,10.227,-4.517,-1.132,7.719,16.413,-7.612,0.672,6.991,10.599,10.829,-6.18,20.942,23.701,20.583,18.936,12.863,2.126,-3.59,6.684,24.051,18.878,8.045,5.585,11.63,-0.095,5.948,17.118,5.512,20.652,14.453,25.241,18.718,9.133,11.395,11.186,4.394,11.483,-2.639,30.936,12.807,7.894,27.293,24.839,-0.619,24.764,31.703,11.822,16.33,15.665,12.749,13.354,15.7,14.528,37.738,5.587,20.814,11.871,35.597,3.547,18.181,14.713,18.573,16.747,13.379,22.512,7.826,3.149,22.007,16.303,13.431,11.432,2.162,12.186,19.653,0.904,18.073,8.702,6.692,12.358,24.229,25.441,2.655,19.666,0.296,27.719,4.659,7.883,11.404,3.944,5.68,6.671,-2.606,7.64,12.761,7.755,9.505,1.248,13.842,15.118,16.262,7.755,15.75,0.05,-5.067,8.959,9.714,8.527,-5.99,11.194,15.371,6.901,6.008,20.045,-0.301,21.069,1.475,-6.146,-6.67,20.513,11.527,17.75,-6.679,12.168,23.535,20.19,19.95,1.679,22.157,24.256,13.757,3.946,7.444,-3.24,12.86,18.321,20.011,3.609,7.78,6.103,20.623,8.65,15.091,-0.521,-0.018,9.574,21.417,11.002,24.711,4.955,1.985,-4.977,5.207,5.69,17.939,20.079,15.23,4.482,11.437],[32.226,24.487,14.974,11.592,14.103,12.773,6.238,-1.504,9.073,19.095,26.308,36.025,11.094,3.328,17.954,17.954,13.567,22.788,15.925,11.041,3.791,1.508,21.388,18.008,6.181,2.35,6.175,25.753,11.519,8.372,0.97,13.782,7.853,14.384,10.2,-4.366,-1.091,7.854,16.363,-7.459,0.361,6.781,10.585,10.761,-6.162,20.79,23.774,20.453,19.009,12.726,1.994,-3.537,6.758,24.284,19.01,8.281,5.322,11.593,0.01,5.995,16.822,5.683,20.495,14.651,24.523,19.001,9.034,11.19,10.815,4.657,11.15,-2.344,30.935,13.076,8.048,27.916,25.323,-0.895,24.953,31.451,11.729,16.583,15.425,12.723,13.228,15.632,14.558,37.785,5.69,20.868,11.968,35.502,3.814,17.793,14.846,18.72,16.563,12.735,22.529,7.837,3.291,22.439,16.526,13.343,11.329,2.725,12.214,19.468,0.814,18.15,9.202,6.778,12.512,24.349,24.684,2.209,19.48,0.307,27.583,4.521,8.028,11.888,3.604,5.705,7.381,-2.8,7.163,12.649,8.293,9.64,0.732,13.882,14.406,16.192,7.134,15.085,0.047,-5.358,8.835,9.762,8.533,-6.11,11.085,15.344,6.944,5.765,20.369,-0.397,20.998,0.995,-6.126,-6.661,20.806,11.673,17.438,-6.268,12.132,23.602,19.881,19.295,0.95,21.985,24.524,13.122,3.644,7.456,-3.091,12.967,18.202,20.223,4.062,7.678,6.405,19.999,9.21,15.008,-0.315,0.275,9.424,21.166,10.926,24.964,4.896,2.169,-4.925,5.001,5.673,17.812,20.01,15.55,4.376,11.628],[32.131,24.375,14.97,11.629,14.036,12.647,6.371,-1.397,8.753,18.997,26.363,36.107,11.155,3.325,17.829,17.98,13.68,22.714,16.346,10.963,3.817,1.328,21.504,18.054,6.104,2.263,6.188,25.552,11.739,8.572,0.809,13.685,7.8,14.442,10.194,-4.156,-1.119,7.957,16.248,-7.526,0.274,6.578,10.674,10.699,-6.125,20.706,23.654,20.332,19.123,12.703,1.733,-3.53,6.923,24.486,19.298,8.41,5.084,11.539,0.283,6.039,16.467,5.817,20.385,14.759,24.347,19.516,9.035,11.088,10.135,4.486,11.571,-2.449,31.616,13.338,8.116,27.916,25.505,-1.204,24.914,31.597,11.612,16.332,15.424,12.954,13.245,15.211,14.369,37.745,5.723,20.465,12.19,36.065,4.264,17.972,15.208,18.62,16.318,12.966,21.778,7.277,3.598,22.181,16.814,13.801,11.658,2.975,12.434,19.107,0.689,18.311,9.45,6.965,12.57,24.197,24.752,1.598,19.631,-0.024,27.361,4.659,8.015,11.626,3.82,6.258,7.996,-2.333,7.23,12.414,7.798,9.376,0.773,13.567,14.197,16.025,7.566,15.91,0.104,-4.875,8.868,9.719,8.205,-6.284,11.264,15.75,7.074,5.247,20.333,0.037,21.166,0.184,-6.417,-6.329,21.134,11.607,17.814,-6.329,12.075,24.05,19.991,18.76,0.987,21.784,24.995,13.152,3.346,6.669,-2.93,12.902,17.93,20.619,4.156,7.771,6.172,20.066,9.931,14.883,-0.438,0.032,9.071,21.311,10.811,24.877,5.27,2.3,-4.581,4.81,5.374,17.525,20.024,15.839,3.942,12.052],[32.026,24.207,14.941,11.574,14.057,12.492,6.495,-1.345,8.461,18.577,26.483,36.218,11.257,3.406,17.715,18.142,13.702,22.657,16.587,11.023,3.84,1.125,21.365,18.09,6.036,2.258,6.199,25.442,11.927,8.745,0.624,13.629,7.589,14.449,10.257,-3.842,-1.113,8.143,16.414,-7.655,0.372,6.373,10.747,10.659,-6.246,20.72,23.434,20.314,19.196,12.744,1.417,-3.437,7.078,24.587,19.535,8.501,4.902,11.658,0.548,6.055,16.305,5.925,20.376,14.733,24.571,19.166,8.992,11.31,9.4,4.063,12.17,-2.522,31.759,13.451,8.15,27.793,25.28,-0.66,24.878,31.516,11.368,15.886,16.121,13.178,13.189,14.654,14.217,37.97,5.885,20.239,11.882,36.008,4.796,18.022,15.626,18.795,16.252,13.606,22.331,7.472,3.295,21.892,17.589,14.23,11.65,2.673,12.508,19.033,0.878,18.274,9.345,6.88,12.187,24.076,25.166,1.659,19.599,-0.428,27.101,4.878,7.964,11.698,3.912,6.271,7.499,-2.058,7.406,12.473,7.103,9.218,0.725,13.825,14.082,16.273,7.94,16.127,-0.057,-4.077,9.233,9.777,7.842,-5.828,10.892,15.252,7.295,5.309,20.598,-0.007,21.017,-0.11,-6.527,-6.339,20.898,11.613,18.597,-6.61,11.277,23.493,19.788,18.53,0.842,21.62,25.238,13.631,3.148,6.626,-3.553,12.627,17.066,20.842,4.236,7.804,5.811,20.438,10.148,15.002,-0.493,0.208,8.991,21.16,10.898,25.057,5.651,1.447,-4.213,4.86,5.274,17.547,20.622,16.395,3.561,12.288],[31.842,23.996,14.943,11.592,14.029,12.444,6.583,-1.185,8.197,18.298,26.6,36.405,11.317,3.537,17.591,18.306,13.729,22.647,16.712,11.132,3.846,0.945,21.182,18.108,5.925,2.33,6.189,25.523,12.072,8.779,0.471,13.503,7.212,14.305,10.379,-3.46,-1.215,8.399,16.672,-7.703,0.44,6.308,10.689,10.451,-6.466,20.829,23.108,20.339,19.334,12.833,1.123,-3.317,7.291,24.6,19.761,8.545,4.724,11.932,0.778,6.051,16.202,5.844,20.408,14.777,24.807,18.406,8.689,11.584,9.272,3.975,12.087,-2.385,31.506,13.369,8.475,27.711,24.537,-0.754,24.943,31.301,11.279,15.769,16.209,13.504,13.377,14.458,14.256,37.906,5.847,20.112,11.844,35.622,4.909,18.06,15.865,18.846,16.8,13.557,22.679,7.697,2.999,21.946,18.202,14.183,11.341,2.005,12.59,19.481,0.917,18.379,9.368,6.261,12.083,24.4,24.882,1.921,19.39,-0.338,27.369,4.505,7.954,11.937,3.845,6.202,7.726,-2.059,6.727,12.274,7.338,9.124,0.367,13.888,14.833,16.037,8.142,15.525,0.012,-3.338,10.002,9.947,8.001,-6.21,10.808,15.72,7.181,5.117,20.712,-0.502,20.788,-0.235,-6.548,-6.768,21.173,11.397,18.507,-6.03,11.282,22.921,19.441,18.544,0.447,21.377,25.554,13.936,3.04,7.222,-4.178,12.636,16.826,20.522,4.049,7.808,6.155,20.577,9.981,15.088,-0.346,0.728,9.283,21.199,11.398,25.151,5.757,0.638,-4.305,5.297,5.047,17.697,21.126,16.556,3.528,12.298],[31.552,23.787,14.787,11.718,14.022,12.366,6.736,-0.953,8.055,18.409,26.744,36.523,11.284,3.669,17.514,18.514,13.77,22.788,16.805,11.11,3.675,0.751,21.201,18.107,5.662,2.301,6.236,25.608,12.148,8.796,0.368,13.51,6.764,13.984,10.571,-3.29,-1.491,8.595,16.768,-7.671,0.356,6.42,10.576,10.238,-6.495,20.902,22.808,20.451,19.27,12.948,1.042,-3.339,7.53,24.722,19.737,8.549,4.485,12.151,0.924,6.071,16.175,5.839,20.448,14.905,24.453,18.827,8.092,11.522,9.345,4.009,11.695,-2.221,31.474,13.54,8.546,28.049,24.142,-0.948,25.238,31.369,11.298,15.691,15.96,13.557,13.354,14.397,14.163,38.073,5.904,20.008,12.301,36.53,4.942,17.618,16.108,18.648,17.087,13.065,22.162,7.413,3.465,22.144,18.483,13.551,11.682,1.33,12.543,20.011,0.784,18.376,9.33,5.632,12.652,24.234,24.596,2.001,19.469,-0.183,27.384,4.388,7.922,11.774,3.774,6.254,7.374,-1.729,6.347,12.549,6.885,9.311,0.379,13.591,14.903,15.421,8.501,15.813,-0.116,-2.872,9.906,9.524,8.172,-6.774,10.818,15.889,7.168,5.246,20.789,-0.542,21.036,-0.269,-6.078,-6.763,21.317,11.563,18.443,-6.338,11.672,22.53,19.801,18.622,1.315,21.278,25.358,14.143,2.862,7.602,-4.229,13.169,17.053,20.045,3.97,7.886,6.196,20.186,9.446,14.721,0.202,0.665,9.638,21.345,11.739,24.98,5.736,0.905,-4.381,5.259,5.165,17.715,21.256,16.599,4.496,12.495],[31.31,23.59,14.693,11.907,14.026,12.222,6.951,-0.921,7.964,18.571,27.092,36.655,11.23,3.713,17.377,18.622,13.689,22.92,16.933,11.207,3.483,0.572,21.312,18.036,5.358,2.222,6.336,25.55,12.243,8.781,0.347,13.633,6.433,13.773,10.781,-3.313,-1.763,8.747,16.692,-7.419,0.273,6.546,10.534,10.186,-6.426,20.978,22.665,20.61,19.198,12.991,1.125,-3.529,7.677,24.99,19.382,8.452,4.337,12.371,0.945,6.117,16.372,5.868,20.432,14.922,23.766,19.314,7.616,11.277,9.503,4.203,11.551,-2.028,31.557,13.547,8.657,28.313,24.372,-0.437,25.5,31.443,11.124,16.088,15.612,13.182,13.174,14.605,13.976,38.277,5.916,20.203,12.356,36.985,4.928,17.451,16.019,18.82,17.284,12.798,22.305,7.042,3.621,22.496,18.602,14.119,11.776,0.786,12.06,20.359,0.661,17.934,9.218,5.611,12.162,24.416,24.419,1.668,19.608,-0.374,27.281,4.629,7.891,11.735,3.545,6.074,7.377,-1.633,6.548,12.549,6.428,9.537,0.544,13.358,14.343,15.501,8.454,16.009,-0.824,-3.258,9.533,9.561,8.286,-6.597,10.711,15.47,7.319,5.589,20.274,-0.558,21.037,-0.087,-6.095,-6.419,21.493,11.081,18.399,-6.793,11.411,22.948,20.049,18.959,1.549,20.737,25.438,14.181,2.776,7.542,-4.154,13.046,17.495,19.891,4.039,7.906,6.058,20.038,9.07,15.025,0.359,0.406,9.585,21.539,11.777,25.263,5.946,1.504,-4.058,5.211,5.293,17.367,20.825,16.545,4.945,13.153],[31.212,23.479,14.618,11.974,13.931,12.124,7.219,-1.026,7.948,18.668,27.461,36.631,11.156,3.684,17.324,18.676,13.651,23.025,17.083,11.161,3.38,0.428,21.363,17.904,5.345,2.167,6.376,25.362,12.324,8.87,0.434,13.677,6.241,13.77,10.796,-3.441,-1.867,8.673,16.61,-7.047,0.236,6.716,10.387,10.116,-6.447,21.08,22.611,20.789,19.172,12.909,1.055,-3.796,7.716,25.385,19.058,8.344,4.248,12.595,0.825,6.261,16.573,5.787,20.456,14.841,22.886,18.997,7.358,11.692,9.51,4.305,11.957,-1.804,31.684,13.749,9.01,28.689,24.397,-0.296,25.652,31.486,11.102,15.758,15.906,12.743,13.442,14.533,13.794,38.476,6.135,20.131,11.971,36.187,5.199,17.515,15.811,18.715,17.312,13.274,22.67,7.035,2.972,22.355,18.525,14.206,11.999,0.731,12.82,20.075,0.446,18.329,9.278,5.888,12.108,24.749,24.883,1.094,19.697,-0.543,27.05,4.417,7.847,11.902,3.505,6.171,7.765,-1.604,6.484,12.31,6.816,9.793,0.445,12.872,14.072,15.639,8.799,16.167,-0.967,-3.692,9.877,9.704,8.337,-6.219,10.979,15.605,7.594,5.371,20.349,-0.986,21.156,0.312,-6.036,-6.052,21.831,11.268,18.18,-6.417,11.351,23.124,19.946,19.224,0.371,20.892,26.064,14.258,2.686,7.12,-3.953,12.564,17.75,19.558,3.964,7.96,6.239,20.265,9.014,15.364,0.328,0.842,8.998,21.503,11.688,25.503,6.273,1.394,-4.204,5.14,5.02,17.662,20.302,16.407,4.07,13.782],[31.392,23.363,14.841,12.046,13.722,12.208,7.62,-1.186,8.02,18.501,27.462,36.41,11.187,3.751,17.409,18.585,13.827,23.04,17.166,11.127,3.27,0.24,21.389,17.811,5.547,2.119,6.348,25.114,12.572,9.064,0.587,13.628,6.139,13.697,10.801,-3.551,-1.935,8.587,16.704,-6.638,0.209,6.739,10.293,10.062,-6.566,21.101,22.723,20.942,19.207,12.799,0.974,-3.947,7.715,25.79,19.049,8.313,4.055,12.743,0.817,6.413,16.708,5.716,20.534,14.669,22.86,19.106,7.196,11.822,9.527,3.91,11.943,-2.243,31.34,13.842,9.275,29.01,24.269,-0.658,26.003,31.414,11.017,15.53,16.163,12.855,13.324,13.917,13.855,38.261,6.25,19.999,11.814,35.88,5.509,17.801,15.793,18.736,17.133,13.258,22.404,7.275,2.433,22.386,18.532,13.361,11.7,1.127,12.812,20.257,0.389,17.926,9.534,5.854,12.642,24.703,24.794,0.865,19.724,-0.447,26.782,4.04,7.924,11.691,3.565,6.17,7.536,-1.724,6.195,12.303,6.625,9.631,0.514,12.989,14.136,15.453,8.712,15.554,-0.49,-3.334,9.846,9.083,8.505,-6.123,10.721,16.159,6.96,5.651,20.785,-0.953,21.144,0.457,-5.137,-5.757,22.033,11.186,18.37,-6.571,11.346,23.121,19.663,19.361,0.399,20.828,26.682,14.235,2.694,6.986,-4.439,12.681,17.551,19.288,3.888,8.086,6.09,20.406,9.047,15.213,-0.271,0.521,9.048,21.394,11.507,25.627,6.3,0.769,-5.196,5.129,5.069,17.662,20.409,16.213,3.605,14.124],[31.566,23.212,15.075,12.111,13.516,12.277,7.924,-1.479,8.096,18.304,27.264,36.13,11.233,3.883,17.513,18.393,13.956,23.056,17.128,11.273,3.13,0.101,21.297,17.736,5.676,2.104,6.294,24.94,12.744,9.174,0.72,13.549,5.959,13.645,10.864,-3.436,-1.804,8.466,16.859,-6.19,0.171,6.584,10.25,10.057,-6.723,21.007,22.839,21.073,19.381,12.762,0.991,-4.143,7.677,26.139,19.081,8.473,3.785,12.844,0.654,6.474,16.813,5.628,20.561,14.455,23.665,18.701,7.225,11.597,9.697,3.91,11.488,-2.607,31.358,13.728,9.582,28.902,24.253,-0.532,26.087,31.189,11.007,15.908,16.553,12.908,13.377,13.784,13.979,37.808,6.693,19.916,12.435,36.387,5.55,18.17,16.211,18.528,16.999,13.059,22.464,7.22,2.66,22.487,18.784,13.698,11.586,1.479,12.407,19.978,0.416,17.514,9.821,5.902,12.284,24.814,23.84,0.906,19.564,-0.584,26.589,3.937,8.011,11.89,3.457,5.806,7.781,-1.793,6.221,12.3,6.812,10.098,0.739,13.329,14.089,15.369,8.194,15.776,-0.729,-2.992,9.421,9.207,8.438,-6.537,10.737,15.96,6.84,5.813,20.891,-1.073,21.012,-0.097,-4.988,-5.506,22.08,10.899,18.766,-7.046,10.565,22.77,19.735,19.706,0.945,21.141,26.586,14.177,2.744,7.456,-5.099,13.344,17.866,18.82,3.857,8.118,5.957,20.722,8.868,14.989,-0.464,0.447,9.354,21.262,11.117,25.589,5.942,0.828,-5.16,5.501,5.046,17.845,20.349,16.022,3.753,14.061],[31.63,23.191,15.237,12.221,13.409,12.163,8.218,-1.761,8.122,18.292,27.093,35.946,11.252,3.996,17.679,18.142,14.055,23.1,17.255,11.267,3.101,0.117,21.197,17.598,5.615,2.12,6.199,24.809,12.72,9.199,0.759,13.42,5.842,13.687,10.938,-3.125,-1.778,8.328,16.809,-6.107,0.041,6.475,10.311,9.913,-6.915,21.007,22.848,21.202,19.726,12.825,1.058,-4.308,7.618,26.343,18.96,8.655,3.516,12.99,0.492,6.465,16.962,5.537,20.649,14.286,24.05,18.057,7.5,11.741,9.743,4.282,11.379,-2.337,32.11,13.772,9.791,28.916,24.031,-0.976,26.004,30.873,11.097,16.17,16.495,12.536,13.988,13.76,13.823,37.725,7.039,19.97,12.441,36.079,5.607,17.501,16.232,17.991,16.831,13.363,22.303,7.062,2.951,22.361,18.466,14.5,12.32,1.088,13.037,19.749,0.435,18.024,9.597,6.664,12.182,24.597,23.828,1.054,19.637,-0.588,26.359,4.125,7.843,12.226,3.4,5.734,7.863,-1.426,6.02,12.21,6.794,10.628,1.058,12.918,14.436,15.55,8.144,16.69,-1.05,-3.191,9.394,9.34,8.148,-6.787,10.687,15.554,6.888,5.181,21.0,-0.633,20.924,-0.426,-4.855,-5.17,22.252,11.278,18.689,-6.627,10.934,23.165,19.973,19.875,0.476,21.184,26.562,13.812,2.874,7.228,-5.794,13.464,18.211,18.511,3.844,8.267,5.562,20.603,8.828,14.99,-0.225,0.253,9.614,21.474,11.18,25.656,6.029,0.956,-4.534,6.071,4.578,17.818,20.007,15.927,3.694,13.996],[31.645,23.265,15.474,12.425,13.376,11.98,8.371,-1.921,8.026,18.381,27.093,35.91,11.209,4.141,17.782,18.026,14.14,23.155,17.427,11.222,3.187,0.242,21.217,17.459,5.604,2.143,6.072,24.672,12.795,9.158,0.716,13.516,5.81,13.619,11.028,-2.809,-1.833,8.122,16.77,-6.106,-0.277,6.295,10.419,9.814,-6.984,21.062,22.881,21.289,20.112,12.846,1.173,-4.511,7.631,26.41,18.476,8.731,3.32,13.123,0.5,6.485,17.121,5.401,20.784,14.335,23.684,17.867,7.767,11.736,9.698,3.977,11.722,-2.015,32.825,14.262,10.245,28.828,24.204,-1.432,25.884,31.41,10.946,16.235,16.45,12.248,14.142,13.551,13.641,37.633,7.468,20.242,11.897,35.664,5.406,17.413,15.843,18.104,16.441,13.598,21.735,6.766,2.962,22.691,18.612,13.939,12.284,0.374,12.962,19.411,0.599,17.735,9.373,6.608,12.249,24.703,23.972,1.212,19.45,-0.254,26.417,4.026,7.736,12.271,3.559,5.793,7.708,-1.023,5.862,11.948,6.54,10.241,1.194,12.964,14.406,15.456,8.429,16.292,-0.827,-2.918,9.972,9.389,7.789,-6.728,10.653,15.492,7.436,5.028,21.021,-0.502,20.829,-0.312,-5.415,-5.321,22.249,11.128,18.819,-6.753,11.098,23.516,19.969,19.698,0.343,21.041,26.872,14.038,2.573,6.698,-5.578,13.36,18.466,19.071,3.601,8.318,5.55,20.248,9.184,14.911,-0.664,0.23,9.255,21.495,11.418,25.911,6.205,1.301,-4.532,6.098,4.231,17.845,19.739,15.889,3.101,14.077],[31.765,23.473,15.601,12.736,13.312,11.858,8.438,-2.001,7.889,18.354,27.164,35.902,11.161,4.209,17.793,17.966,13.929,23.343,17.529,11.145,3.253,0.364,21.212,17.348,5.534,2.216,6.032,24.721,12.937,9.001,0.719,13.683,5.667,13.522,11.113,-2.531,-1.824,8.034,16.702,-6.245,-0.608,6.092,10.347,9.716,-6.976,21.099,22.865,21.335,20.319,12.888,1.322,-4.575,7.706,26.427,18.019,8.733,3.049,13.218,0.453,6.562,17.31,5.234,20.849,14.396,22.764,18.704,7.656,11.879,9.463,3.775,11.509,-2.566,32.543,14.399,10.332,28.858,24.304,-1.105,25.998,31.773,10.643,15.918,17.038,12.42,14.062,13.867,13.57,37.557,7.674,20.119,12.117,36.183,5.36,17.998,15.968,18.196,16.65,13.289,21.739,6.934,2.612,22.781,18.701,13.843,11.717,0.244,12.776,19.397,0.574,17.657,9.493,5.893,12.363,25.021,24.202,1.257,19.418,-0.227,26.305,4.044,7.574,12.12,3.474,5.562,7.295,-0.761,6.032,12.231,6.79,10.15,0.413,13.35,14.015,15.342,8.684,16.265,-0.78,-2.501,10.226,9.646,7.915,-6.447,10.758,15.583,6.58,5.124,21.463,-1.026,21.28,-0.812,-5.057,-5.187,22.33,10.879,19.344,-7.16,10.722,23.249,19.854,19.593,0.215,21.177,26.807,14.319,2.961,7.024,-5.137,13.471,18.721,19.243,3.563,7.897,5.781,20.991,9.505,14.963,-0.152,0.059,8.76,21.311,11.597,25.987,6.318,1.868,-5.258,5.547,4.498,17.778,19.023,15.904,2.83,14.191],[31.899,23.538,15.683,12.998,13.231,11.8,8.521,-2.217,7.811,18.251,27.175,35.89,11.113,4.232,17.758,17.957,13.651,23.655,17.551,11.092,3.249,0.388,21.195,17.274,5.466,2.273,5.993,24.918,12.912,8.808,0.661,13.713,5.629,13.575,11.267,-2.381,-1.997,7.873,16.689,-6.236,-0.845,6.083,10.216,9.561,-6.95,21.245,22.731,21.513,20.346,12.995,1.634,-4.597,7.881,26.363,17.933,8.652,2.846,13.295,0.318,6.534,17.41,5.149,21.0,14.322,22.788,19.319,7.103,12.173,9.262,3.527,11.459,-2.238,31.909,14.626,10.096,29.142,24.687,-0.909,26.362,31.285,10.507,16.067,16.925,12.744,14.172,13.711,13.466,37.537,7.434,19.557,12.189,36.718,5.765,18.09,16.169,17.708,16.491,12.75,22.213,7.193,2.61,22.478,18.508,14.131,11.582,0.868,13.446,19.301,0.529,17.699,9.402,5.868,12.175,25.091,24.358,1.358,19.797,-0.444,26.444,4.132,7.383,12.065,3.449,5.783,7.161,-0.665,5.506,12.485,6.455,10.37,0.226,13.296,13.878,15.375,8.465,16.132,-0.633,-2.135,9.98,9.418,7.883,-6.572,10.703,15.995,6.166,5.094,22.033,-1.426,21.14,-1.067,-4.924,-5.446,22.643,10.966,19.364,-6.878,10.777,23.343,19.797,19.988,-0.328,20.958,26.674,14.541,3.218,7.428,-5.057,13.141,18.409,18.69,3.415,7.813,5.509,21.144,9.771,15.423,-0.2,-0.1,9.295,22.005,11.844,26.377,6.427,2.196,-5.132,5.036,4.384,17.935,18.962,15.658,2.871,14.788],[32.011,23.536,15.65,13.054,13.201,11.784,8.463,-2.475,7.769,18.118,27.193,35.9,11.069,4.26,17.751,17.918,13.35,23.958,17.5,11.087,3.177,0.449,21.222,17.232,5.671,2.263,5.971,25.066,12.813,8.639,0.561,13.732,5.676,13.622,11.461,-2.37,-2.238,7.619,16.818,-6.081,-0.994,6.108,10.059,9.528,-6.927,21.389,22.572,21.797,20.336,13.175,1.968,-4.55,8.064,26.353,18.001,8.635,2.787,13.344,0.172,6.35,17.455,5.028,21.236,14.311,23.793,19.035,6.734,12.681,8.778,3.748,11.42,-2.511,31.343,14.828,10.139,29.099,24.566,-0.972,26.558,30.947,10.465,16.02,16.718,12.641,14.059,13.511,13.457,37.478,7.53,19.579,11.804,36.265,6.073,17.806,16.216,17.727,16.374,12.705,22.255,7.054,3.152,23.068,18.177,13.823,11.521,1.135,13.086,19.262,0.585,17.547,9.11,6.512,11.894,25.71,24.003,1.078,19.46,-0.665,26.565,4.201,7.437,12.428,3.671,6.103,7.641,-0.583,5.51,12.279,6.5,10.692,0.906,12.901,14.485,15.208,8.163,16.262,-0.816,-2.615,10.197,9.002,7.653,-6.754,10.591,15.803,6.021,4.851,21.505,-1.422,20.881,-0.889,-4.547,-5.494,23.376,10.835,19.261,-7.175,10.505,23.344,20.127,20.354,0.085,20.75,26.692,14.743,3.478,7.429,-5.168,13.615,18.674,18.323,3.273,7.969,5.242,21.02,9.886,15.406,-0.765,-0.172,9.349,22.455,11.784,26.049,6.417,2.373,-5.136,5.21,4.254,18.317,19.308,15.505,2.666,14.806],[32.051,23.7,15.518,13.023,13.176,11.776,8.349,-2.846,7.693,18.134,27.188,35.785,10.984,4.428,17.736,17.837,13.015,24.097,17.358,11.047,3.135,0.49,21.33,17.257,6.071,2.265,6.041,25.08,12.718,8.59,0.579,13.808,5.835,13.517,11.675,-2.527,-2.347,7.392,16.825,-5.733,-1.003,5.996,9.779,9.536,-7.058,21.43,22.506,21.975,20.262,13.275,2.233,-4.408,8.127,26.383,18.107,8.65,2.852,13.348,0.0,6.209,17.611,4.907,21.474,14.283,24.111,18.533,6.794,12.554,8.672,4.026,11.286,-2.319,31.51,14.656,10.085,28.95,23.882,-1.293,26.244,31.467,10.696,15.992,16.682,12.596,14.042,13.425,13.44,37.425,7.783,19.84,11.717,35.701,6.139,17.649,15.773,18.289,16.279,12.584,21.47,7.157,3.335,23.65,18.549,13.369,11.642,0.67,12.232,18.994,0.751,17.224,9.061,6.953,11.9,25.606,23.708,0.986,19.756,-0.714,26.676,4.172,7.766,12.106,3.661,5.537,7.015,-0.689,6.101,12.243,6.988,10.417,0.576,12.978,14.768,15.187,7.746,16.14,-1.411,-2.473,10.846,9.216,7.817,-6.567,10.702,15.523,6.121,4.97,21.221,-1.266,21.66,-1.387,-4.635,-4.647,23.427,10.692,19.311,-6.644,10.469,22.986,20.076,20.746,0.354,20.813,26.433,14.906,3.75,7.636,-5.128,13.992,19.164,18.234,3.411,7.985,5.29,21.181,10.18,15.055,-0.368,-0.293,9.066,22.682,11.907,25.879,6.533,2.818,-5.587,5.601,4.195,18.008,19.299,15.729,2.8,14.597],[32.071,23.972,15.352,12.931,13.09,11.816,8.336,-3.053,7.661,18.237,27.043,35.585,10.817,4.662,17.637,17.537,12.7,24.137,17.274,11.049,3.243,0.499,21.43,17.284,6.295,2.267,6.135,25.066,12.455,8.467,0.444,13.8,6.159,13.402,11.699,-2.716,-2.419,7.428,16.71,-5.43,-1.047,5.956,9.538,9.637,-7.036,21.482,22.508,22.093,20.333,13.339,2.539,-4.25,8.159,26.334,18.076,8.665,2.956,13.385,-0.001,6.16,17.757,4.763,21.624,14.236,23.456,18.28,7.054,12.132,8.593,4.128,11.323,-1.803,32.493,14.828,9.993,28.948,23.58,-1.73,26.163,31.77,10.489,16.042,16.859,12.507,14.248,13.443,13.518,37.25,7.686,20.006,11.666,36.194,5.881,17.723,15.788,18.006,15.904,12.297,21.706,7.865,2.945,23.572,18.204,13.545,11.367,0.391,12.687,18.753,0.683,17.596,9.25,6.565,12.445,25.335,24.063,1.292,19.816,-0.476,26.487,4.14,7.783,11.733,3.536,5.262,6.764,-1.046,6.14,12.285,6.543,10.408,0.546,13.575,14.933,15.222,7.453,16.457,-1.201,-2.172,11.412,9.012,7.687,-6.839,11.043,15.546,5.78,5.03,21.602,-1.356,21.312,-1.014,-4.478,-4.257,23.397,10.188,18.994,-7.203,10.694,23.17,20.069,20.521,0.165,20.725,26.318,15.041,3.842,7.741,-5.044,13.016,18.998,18.821,2.856,7.995,5.308,21.452,10.01,15.31,-0.203,-0.403,9.145,23.295,12.153,26.541,6.715,3.511,-5.18,5.646,3.905,17.914,19.39,15.672,3.251,14.373],[32.161,24.184,15.414,12.984,12.963,11.74,8.374,-2.897,7.647,18.199,26.973,35.525,10.684,4.665,17.576,17.092,12.468,24.151,17.231,11.142,3.392,0.551,21.454,17.321,6.279,2.163,6.199,25.174,12.144,8.297,0.185,13.716,6.329,13.391,11.575,-2.716,-2.46,7.52,16.626,-5.393,-1.069,5.989,9.428,9.805,-7.024,21.449,22.576,22.12,20.514,13.507,2.898,-4.152,8.169,26.167,18.046,8.553,2.987,13.186,0.154,6.17,17.866,4.475,21.867,14.395,23.184,18.812,7.141,12.469,8.786,4.088,10.64,-2.284,32.846,14.726,9.745,28.763,24.149,-1.905,26.136,31.775,10.339,15.795,16.615,12.212,14.026,13.515,13.456,37.143,7.836,19.622,11.613,36.286,6.095,17.459,15.771,17.545,15.453,12.188,22.402,7.533,3.019,23.096,18.135,13.284,11.313,0.371,12.956,18.327,0.768,17.808,8.896,6.854,12.463,25.78,24.44,1.62,19.745,-0.277,26.555,4.573,7.825,11.634,3.768,5.59,6.994,-1.082,6.086,12.415,6.851,10.233,0.499,13.231,14.476,15.045,7.683,15.805,-0.826,-2.293,11.283,9.129,7.784,-6.707,11.057,15.677,6.122,5.079,21.945,-1.921,21.176,-1.036,-4.099,-4.667,23.481,10.137,19.177,-7.325,10.716,23.323,20.072,20.455,-0.144,20.697,27.001,15.16,4.085,8.002,-4.818,12.905,18.896,19.103,2.718,7.775,5.152,21.533,9.901,15.82,-0.284,-0.367,9.234,23.554,12.16,26.957,6.826,3.682,-4.031,5.213,4.275,17.833,19.011,15.18,2.969,14.638],[32.34,24.318,15.421,13.221,12.852,11.667,8.488,-2.88,7.666,18.038,26.947,35.488,10.569,4.594,17.55,16.615,12.328,24.085,17.165,11.234,3.636,0.537,21.448,17.299,6.16,2.124,6.291,25.407,11.94,8.188,0.02,13.581,6.382,13.385,11.357,-2.482,-2.438,7.627,16.547,-5.383,-1.167,6.129,9.516,9.879,-7.033,21.309,22.682,22.047,20.652,13.625,3.05,-4.129,8.173,26.059,18.137,8.415,2.959,12.939,0.394,6.132,17.885,4.212,22.123,14.536,23.619,19.202,7.137,12.755,9.083,3.524,10.517,-2.829,32.015,14.434,9.901,28.64,24.865,-1.092,26.23,31.759,10.345,15.935,16.537,12.352,13.708,13.13,13.242,36.908,8.041,19.108,11.386,35.75,6.298,17.412,15.685,17.853,15.306,11.991,22.322,7.462,3.191,23.19,18.545,13.19,11.626,0.983,12.096,17.887,0.548,17.187,8.397,7.28,12.416,25.786,24.306,1.499,19.595,-0.314,27.084,4.431,7.877,11.677,3.459,5.526,6.648,-0.733,6.257,12.174,7.161,10.084,0.423,12.86,14.286,15.024,7.576,15.846,-0.781,-2.214,10.364,9.159,7.914,-6.512,10.651,15.814,6.555,5.088,21.979,-1.985,21.443,-1.331,-4.507,-4.637,23.554,10.624,20.135,-6.827,10.905,23.281,20.119,20.745,0.064,20.968,27.247,15.281,4.649,7.909,-4.406,13.426,19.44,18.99,3.218,7.792,4.699,21.578,9.515,15.783,-0.388,0.146,9.17,23.864,12.138,26.467,6.8,3.522,-3.045,4.644,4.461,17.876,19.003,15.628,2.936,14.544],[32.478,24.444,15.245,13.406,12.792,11.857,8.651,-2.925,7.754,17.931,26.866,35.258,10.527,4.446,17.55,16.201,12.043,23.941,17.178,11.338,3.754,0.501,21.427,17.241,6.208,2.069,6.27,25.696,11.74,8.011,0.034,13.445,6.444,13.393,11.007,-2.21,-2.297,7.617,16.637,-5.362,-1.278,6.322,9.612,9.932,-6.972,21.276,22.855,22.009,20.847,13.505,3.036,-4.117,8.143,25.942,18.426,8.282,2.957,12.802,0.537,6.06,17.991,4.234,22.372,14.497,24.213,18.855,7.076,12.497,9.357,4.041,10.844,-3.074,31.68,14.628,10.379,28.789,24.84,-1.204,26.019,32.054,10.339,16.143,16.614,12.027,13.82,13.267,13.42,37.068,7.879,19.138,11.102,35.352,6.281,17.281,15.886,17.896,15.301,11.946,21.551,7.626,3.319,23.603,18.139,13.311,11.612,1.279,11.947,17.922,0.235,17.334,8.588,6.659,12.56,25.463,24.655,0.766,19.698,0.302,27.272,4.481,7.878,11.575,3.202,5.986,6.558,-0.524,6.339,12.025,7.032,10.083,0.654,12.752,13.874,15.228,7.634,16.209,-0.624,-1.993,9.883,8.8,8.064,-7.0,11.137,15.172,6.433,5.435,22.024,-1.943,21.269,-0.831,-4.155,-4.64,23.581,10.826,20.32,-7.1,10.877,23.174,19.826,20.99,0.137,20.938,27.068,15.277,4.295,7.769,-4.819,13.328,19.102,18.839,2.603,7.608,4.873,21.667,9.514,15.179,0.051,0.022,9.096,23.921,12.391,26.012,6.536,3.786,-2.719,4.688,4.414,18.398,19.581,16.098,2.982,14.151],[32.56,24.619,15.023,13.497,12.778,12.185,8.716,-3.031,7.963,18.007,26.766,35.131,10.566,4.313,17.459,16.077,11.667,23.867,17.244,11.413,3.651,0.395,21.394,17.263,6.269,1.993,6.21,26.062,11.494,7.873,0.218,13.228,6.459,13.433,10.724,-2.092,-2.123,7.512,16.617,-5.447,-1.283,6.552,9.602,10.071,-7.052,21.239,22.897,22.067,20.939,13.366,3.106,-4.211,8.007,25.943,18.878,8.156,3.18,12.734,0.475,5.973,18.074,4.477,22.6,14.387,24.296,18.155,6.811,12.691,9.292,4.193,11.044,-2.829,32.475,15.004,10.226,28.514,24.569,-1.237,25.704,32.36,10.717,16.111,16.394,12.005,13.727,13.392,13.846,36.787,8.257,19.612,11.06,34.388,6.101,16.876,15.545,17.626,14.889,12.065,21.827,7.81,3.317,23.279,17.635,12.904,11.349,0.79,12.65,17.543,0.278,17.43,8.777,6.619,12.876,25.567,24.842,0.065,19.602,1.017,27.073,4.83,7.958,11.401,3.43,6.023,6.501,-0.376,6.485,11.854,7.171,9.559,0.668,12.781,13.124,15.171,7.679,16.103,-0.689,-1.84,10.215,9.343,8.352,-6.967,11.387,15.758,5.98,5.817,21.878,-1.372,21.232,-0.859,-3.91,-4.499,23.71,10.273,19.809,-7.032,11.048,23.356,19.898,20.604,-0.086,21.234,26.361,15.19,3.37,7.893,-4.992,12.636,18.944,19.395,2.697,7.36,5.049,21.807,9.654,14.902,0.402,-0.342,8.897,24.178,12.318,26.177,6.377,3.679,-2.936,5.061,4.378,18.981,19.55,15.927,2.799,14.276],[32.84,24.868,14.746,13.576,12.867,12.457,8.723,-3.064,8.216,18.124,26.601,34.951,10.607,4.255,17.134,16.085,11.356,23.773,17.181,11.484,3.554,0.201,21.479,17.286,6.394,2.079,6.205,26.235,11.228,7.835,0.406,13.069,6.516,13.32,10.682,-2.159,-1.972,7.372,16.566,-5.544,-1.258,6.859,9.455,10.212,-7.073,21.183,22.908,22.044,20.838,13.245,3.23,-4.404,7.804,26.095,19.311,8.114,3.345,12.651,0.367,5.949,18.166,4.635,22.804,14.323,23.791,18.221,6.746,13.002,9.411,3.84,10.885,-2.72,32.796,15.271,10.262,28.311,25.067,-1.909,25.83,32.373,11.035,15.749,16.039,12.016,13.218,13.119,14.039,36.599,8.768,19.796,11.264,34.153,6.077,16.709,15.564,18.068,14.387,11.692,22.605,7.685,3.129,23.083,17.896,12.194,11.461,0.828,12.145,17.415,0.44,17.001,8.54,6.926,12.696,25.438,25.296,0.098,19.694,1.296,27.76,4.379,8.13,11.421,3.372,5.512,6.364,-0.477,6.383,11.798,7.023,9.264,0.674,13.414,13.087,15.131,7.667,15.681,-1.107,-1.846,9.922,8.977,8.671,-6.591,11.04,15.74,5.806,5.683,22.016,-0.668,21.015,-1.157,-4.402,-4.441,23.43,10.235,19.482,-7.026,11.246,23.248,20.02,20.41,0.131,21.038,26.258,14.962,3.801,7.516,-4.558,12.583,19.541,20.294,3.208,7.486,5.471,22.064,8.711,15.419,-0.122,-0.165,9.177,24.6,11.983,26.438,6.14,3.184,-2.956,5.086,4.249,18.893,19.85,15.513,3.406,14.456],[33.24,25.122,14.379,13.69,12.944,12.387,8.802,-3.163,8.319,18.108,26.476,34.741,10.673,4.212,16.742,16.205,11.034,23.59,17.177,11.57,3.53,0.071,21.705,17.209,6.441,2.197,6.164,26.335,10.993,7.843,0.512,12.976,6.544,13.208,10.713,-2.233,-1.944,7.252,16.565,-5.723,-1.127,7.005,9.196,10.301,-6.777,21.105,22.747,21.937,20.628,13.213,3.283,-4.475,7.485,26.266,19.717,8.021,3.455,12.636,0.319,6.012,18.422,4.669,22.942,14.396,23.945,18.621,6.922,12.995,9.617,4.128,10.496,-2.873,32.623,15.131,10.335,28.139,25.622,-2.083,25.56,32.599,11.212,15.435,15.848,11.959,13.081,13.251,14.018,36.621,8.449,19.555,10.435,34.441,6.019,16.672,15.778,17.979,14.449,11.487,22.5,7.815,3.006,22.911,17.961,12.25,11.526,1.146,11.503,17.136,0.584,16.986,8.304,6.966,12.785,25.426,25.522,0.406,19.898,1.171,27.891,4.303,7.845,11.247,3.507,5.574,6.543,-0.596,6.765,11.63,6.999,9.914,1.313,13.508,13.594,15.071,6.994,15.795,-1.201,-1.908,9.536,9.165,8.853,-6.647,11.261,15.105,6.012,6.317,21.927,-0.615,21.001,-0.778,-4.787,-4.96,23.399,10.441,19.866,-7.103,11.234,23.251,19.524,20.525,0.38,21.024,26.676,14.617,4.764,7.634,-4.608,12.583,20.223,20.77,3.29,7.606,5.903,22.163,8.921,16.0,-0.527,0.073,9.422,24.492,11.804,26.416,5.768,3.486,-2.905,4.867,4.613,18.175,19.888,15.338,3.362,14.286],[33.657,25.471,14.258,13.709,12.977,12.156,8.873,-3.334,8.232,17.983,26.342,34.775,10.611,4.234,16.429,16.336,10.838,23.385,17.24,11.714,3.599,0.104,21.858,17.004,6.381,2.315,6.008,26.394,10.791,7.879,0.584,12.955,6.522,13.209,10.586,-2.208,-1.985,7.179,16.576,-6.013,-0.858,7.177,9.051,10.556,-6.443,21.022,22.624,21.943,20.402,13.284,3.358,-4.434,7.282,26.365,20.079,7.981,3.599,12.62,0.293,6.109,18.659,4.713,22.967,14.481,24.475,18.892,7.356,12.845,9.563,4.192,10.388,-2.915,32.567,15.33,10.328,27.938,25.397,-2.058,25.078,32.291,11.282,14.726,15.598,12.342,12.903,12.961,13.921,36.521,8.249,19.377,10.258,34.499,6.024,16.54,15.737,17.406,14.58,11.287,22.217,8.061,3.397,23.118,17.711,12.515,11.581,0.974,11.733,17.358,0.555,17.42,8.437,6.749,13.031,25.234,25.198,0.491,20.129,0.972,27.292,4.42,7.395,11.205,3.535,5.864,6.671,-0.451,7.011,11.433,7.391,9.929,1.245,12.974,13.463,14.716,6.568,16.043,-0.877,-1.909,9.153,8.739,8.966,-6.538,12.096,15.208,6.191,6.581,21.53,-1.175,21.299,-0.591,-4.337,-5.175,23.535,10.198,19.897,-6.612,11.298,22.952,19.376,20.262,0.332,20.835,27.08,14.828,4.73,7.303,-4.67,13.146,20.095,20.363,3.157,7.581,5.115,21.979,9.274,15.595,-0.26,-0.21,8.787,24.47,11.734,26.482,5.462,3.818,-2.777,4.664,4.816,18.384,19.619,15.569,3.21,14.252],[33.849,25.797,14.354,13.796,13.095,11.987,8.822,-3.459,7.997,17.935,26.154,34.971,10.524,4.212,16.167,16.408,10.856,23.265,17.265,11.962,3.781,0.136,21.893,16.846,6.273,2.31,5.796,26.249,10.701,7.934,0.512,13.006,6.426,13.164,10.24,-2.095,-2.058,7.129,16.713,-6.033,-0.735,7.304,8.997,10.923,-6.205,21.018,22.563,22.054,20.044,13.373,3.291,-4.405,7.095,26.412,20.234,7.847,3.732,12.784,0.261,6.216,18.705,4.607,22.891,14.405,24.926,18.704,7.024,12.974,9.657,4.184,10.531,-3.111,33.297,15.493,10.51,27.889,25.401,-1.978,25.112,32.523,10.833,14.56,15.37,11.669,12.94,12.839,13.756,36.681,8.441,19.383,10.604,35.007,5.863,16.458,15.582,17.335,14.706,10.825,22.437,8.053,3.71,23.301,17.959,12.415,11.861,0.779,11.659,17.762,0.62,16.966,8.394,6.66,12.597,24.986,25.071,0.708,20.027,1.032,27.522,4.482,7.676,10.579,3.422,5.495,6.895,-0.468,6.764,11.569,7.344,9.161,1.608,13.0,12.959,14.949,7.094,15.778,-0.3,-1.702,9.319,8.754,8.968,-6.19,12.049,15.593,6.233,6.261,21.238,-1.806,21.511,-0.329,-4.574,-5.189,23.016,10.094,19.18,-6.169,11.711,22.292,19.49,20.308,0.517,20.852,27.135,15.236,4.322,7.038,-4.417,13.232,20.178,20.175,2.99,7.445,5.241,22.001,9.122,15.144,-0.271,-0.252,8.407,24.501,12.326,26.9,5.341,4.515,-2.743,4.638,4.791,19.448,20.244,15.788,2.909,14.294],[34.079,26.087,14.339,13.968,13.198,11.8,8.816,-3.382,7.82,17.941,26.042,35.2,10.382,4.111,16.09,16.315,10.931,23.131,17.349,12.146,4.041,0.19,21.768,16.786,6.178,2.231,5.647,26.077,10.579,7.946,0.51,13.038,6.378,13.22,9.968,-1.989,-2.059,7.253,16.931,-5.925,-0.693,7.235,9.018,11.005,-6.052,21.15,22.449,22.057,19.594,13.578,3.169,-4.367,6.99,26.443,20.252,7.552,3.799,12.961,0.26,6.264,18.828,4.515,22.839,14.285,24.94,18.095,6.343,13.521,8.9,4.082,10.609,-3.442,33.063,15.857,10.278,27.729,25.721,-1.74,24.946,32.838,10.704,14.353,15.631,11.619,12.812,13.201,13.463,36.905,8.437,19.628,10.954,35.675,5.798,16.374,15.83,17.463,15.095,11.155,22.973,7.895,3.537,22.507,17.98,12.235,11.953,0.582,11.634,17.855,0.613,16.513,8.464,6.416,13.069,24.838,24.879,0.823,20.018,1.206,27.597,4.734,7.285,10.026,3.509,4.846,6.243,-0.454,6.511,11.881,7.07,8.905,1.356,13.392,13.374,14.95,7.171,16.055,-0.336,-1.809,8.868,8.774,9.063,-5.94,12.157,15.705,6.031,6.201,21.165,-2.199,21.231,-0.484,-4.981,-5.196,23.403,10.388,18.661,-6.333,12.157,22.608,19.609,20.305,0.632,20.713,26.987,15.255,4.238,6.663,-4.746,12.842,20.137,21.072,3.219,7.416,5.768,22.172,8.866,15.358,-0.283,0.085,8.684,24.225,12.704,26.574,5.407,4.63,-2.698,5.064,4.494,19.659,20.594,15.734,3.418,14.596],[34.206,26.22,14.272,14.242,13.415,11.777,8.812,-3.085,7.603,17.932,26.062,35.349,10.207,3.979,16.099,16.123,10.959,22.823,17.487,12.377,4.223,0.227,21.622,16.912,6.117,2.179,5.391,25.87,10.373,7.787,0.589,13.209,6.301,13.343,9.838,-1.989,-2.056,7.434,17.006,-5.919,-0.602,7.137,8.996,10.992,-6.044,21.369,22.403,22.113,19.242,13.837,3.036,-4.398,6.879,26.495,20.304,7.402,3.773,13.05,0.402,6.249,18.924,4.507,22.79,14.422,24.739,17.907,6.046,14.129,8.45,3.805,10.469,-3.741,32.647,15.933,10.323,27.488,26.487,-1.387,24.781,33.523,10.372,14.606,15.493,12.325,12.864,13.065,13.293,36.827,8.263,19.74,10.847,35.85,5.854,15.823,16.029,17.182,15.188,11.428,22.615,7.779,3.404,22.287,17.868,12.47,11.717,0.583,10.92,17.879,0.518,17.006,8.404,6.486,13.268,24.71,24.671,0.895,19.794,1.283,27.109,5.117,6.876,10.811,3.138,4.818,6.388,-0.244,6.582,11.681,7.182,9.386,1.297,13.693,13.652,15.119,7.283,16.064,-0.458,-1.87,8.277,8.857,8.938,-6.075,12.189,16.034,5.862,6.253,20.66,-2.126,21.043,-0.966,-4.344,-5.378,23.789,10.392,18.719,-6.346,12.11,22.928,19.739,20.688,0.423,20.497,26.321,15.501,4.329,6.61,-5.137,12.801,20.205,21.399,3.09,7.778,5.696,22.248,7.883,15.584,-0.181,0.116,8.735,24.322,12.39,26.019,5.666,3.492,-2.528,5.258,4.735,19.546,20.576,15.285,3.747,14.73],[34.233,26.198,14.222,14.46,13.587,11.788,8.856,-2.758,7.38,17.902,26.181,35.305,10.068,3.829,16.198,15.972,10.986,22.53,17.639,12.557,4.291,0.205,21.471,17.228,6.224,2.207,5.055,25.611,10.152,7.676,0.676,13.377,6.202,13.526,9.887,-2.001,-2.013,7.583,16.908,-5.947,-0.721,7.08,8.953,10.985,-6.18,21.48,22.36,22.317,19.045,14.041,2.746,-4.494,6.705,26.449,20.385,7.269,3.637,13.083,0.533,6.322,19.017,4.628,22.755,14.703,24.663,18.189,6.28,13.861,8.71,3.815,10.52,-3.4,32.533,16.309,10.412,26.846,27.159,-1.254,24.915,34.359,10.206,14.844,15.409,12.442,12.645,13.409,13.254,37.08,7.691,19.647,10.458,35.512,5.604,15.486,16.178,17.39,14.929,11.199,22.168,7.927,3.857,22.517,17.951,12.082,11.634,1.274,10.98,17.835,0.356,16.946,7.994,6.794,12.843,24.283,24.353,1.099,19.678,1.647,26.957,4.706,6.618,10.867,2.857,4.862,6.665,-0.261,6.372,11.847,7.292,9.36,1.801,13.593,13.83,15.202,7.401,15.762,-0.83,-2.422,8.713,8.771,8.855,-6.004,12.209,15.606,6.269,6.1,20.268,-1.33,21.656,-0.721,-4.311,-5.428,23.593,10.415,18.355,-6.133,11.519,22.273,19.849,20.976,0.414,20.656,25.967,15.357,4.509,7.397,-4.848,13.178,20.49,20.846,2.928,7.817,5.05,22.422,7.622,16.0,-0.106,0.284,8.789,24.405,12.47,26.162,5.819,3.056,-2.678,5.17,5.06,19.496,20.59,15.521,3.552,14.652],[34.296,26.178,14.112,14.406,13.67,11.744,8.833,-2.436,7.264,17.935,26.178,35.267,9.963,3.642,16.351,15.882,10.941,22.291,17.843,12.556,4.22,0.233,21.419,17.57,6.394,2.433,4.772,25.267,9.988,7.615,0.801,13.495,6.114,13.658,10.114,-2.089,-1.867,7.756,16.646,-6.068,-0.92,7.003,9.02,10.983,-6.402,21.41,22.265,22.505,18.956,14.152,2.487,-4.589,6.833,26.306,20.441,7.162,3.502,13.094,0.497,6.492,19.258,4.811,22.881,15.039,25.124,18.502,6.591,13.63,8.801,3.865,10.416,-2.959,32.464,16.373,10.278,26.475,27.467,-1.564,25.094,34.701,10.612,15.189,15.211,12.018,12.771,13.653,13.347,37.097,8.03,19.48,10.308,34.947,5.143,15.595,16.27,17.883,14.525,11.02,22.341,8.118,3.976,22.164,18.519,12.226,11.913,1.649,11.126,17.407,0.456,17.531,7.853,6.743,12.598,24.017,24.149,0.982,19.607,1.875,26.843,4.987,6.354,9.691,3.151,4.627,6.249,-0.165,6.422,11.963,7.11,8.882,1.81,13.743,14.173,15.352,7.282,16.064,-0.876,-2.508,8.922,8.554,8.71,-6.011,12.491,15.32,6.619,6.125,20.327,-0.646,21.565,-0.56,-4.521,-5.54,23.586,9.904,17.817,-6.231,11.737,21.818,19.682,20.613,0.241,20.573,26.694,15.552,4.117,6.67,-4.315,13.681,20.694,20.304,3.254,7.435,5.485,21.869,7.774,16.258,0.213,0.056,8.892,24.571,12.807,25.883,5.756,2.865,-2.709,4.934,4.641,19.687,20.73,16.172,3.395,14.14],[34.364,26.235,14.036,14.2,13.683,11.798,8.689,-2.227,7.261,18.036,26.068,35.181,9.83,3.429,16.602,15.794,10.881,22.056,18.127,12.438,4.104,0.229,21.338,17.872,6.456,2.72,4.612,24.914,9.752,7.486,0.864,13.478,5.974,13.72,10.19,-2.24,-1.644,7.835,16.594,-6.154,-1.147,6.99,9.115,11.088,-6.716,21.229,22.257,22.532,18.949,14.254,2.359,-4.495,7.07,26.174,20.413,7.283,3.464,13.224,0.36,6.485,19.478,5.021,23.098,15.355,25.208,19.012,6.323,13.8,8.856,3.921,10.224,-2.887,32.723,16.035,10.434,26.58,27.628,-1.765,24.66,35.236,10.691,15.212,15.171,12.422,12.627,13.592,13.394,36.984,8.623,19.381,10.557,34.944,4.628,15.896,16.5,17.876,14.36,11.257,22.58,8.228,3.715,21.677,18.921,12.475,11.825,1.029,10.994,17.297,0.863,18.0,8.498,6.591,13.14,23.897,23.993,0.95,19.544,2.14,26.472,5.164,6.452,9.414,3.513,4.397,6.47,-0.593,6.416,11.722,6.656,9.313,1.443,13.993,14.141,15.515,7.105,15.667,-0.878,-1.684,8.988,8.548,8.776,-6.373,12.248,15.478,7.154,6.02,20.128,-0.379,21.127,-1.105,-4.969,-5.445,23.888,9.508,18.04,-6.991,12.419,22.505,19.636,20.829,-0.108,20.397,27.013,15.866,3.637,6.369,-4.734,13.432,20.989,20.896,3.297,7.612,6.149,21.995,7.614,16.014,-0.117,-0.372,8.418,24.447,12.994,25.486,5.596,2.861,-2.803,5.192,4.824,20.005,20.875,16.798,3.284,13.482],[34.525,26.295,14.018,14.012,13.795,11.87,8.611,-2.257,7.348,18.102,25.838,35.126,9.704,3.273,16.747,15.805,10.956,21.894,18.332,12.316,3.969,0.227,21.154,17.981,6.413,2.911,4.68,24.641,9.509,7.488,0.827,13.313,5.689,13.793,10.172,-2.335,-1.481,7.872,16.637,-6.326,-1.524,7.132,9.183,11.161,-7.165,21.268,22.556,22.556,19.009,14.394,2.356,-4.385,7.241,26.065,20.414,7.401,3.456,13.369,0.184,6.475,19.543,5.137,23.24,15.574,24.72,19.194,5.864,14.037,8.68,3.208,10.513,-2.895,32.994,15.856,10.074,26.824,27.39,-1.869,24.773,36.009,10.552,15.668,15.348,12.683,12.339,13.915,13.602,36.93,8.07,19.428,10.06,34.955,4.335,15.913,17.173,18.274,14.253,11.516,22.182,8.18,3.649,21.545,19.361,12.166,11.368,0.785,10.62,17.249,1.198,17.993,8.859,6.78,13.481,23.551,23.797,1.264,19.478,2.315,26.102,4.677,6.507,10.044,3.661,4.05,6.609,-0.971,5.769,11.797,6.689,9.577,1.506,14.013,13.931,15.371,6.677,15.393,-0.215,-1.404,8.909,8.276,8.837,-6.476,11.913,15.381,7.212,5.858,20.217,-0.408,21.248,-0.886,-4.808,-5.556,23.839,10.156,18.428,-7.24,12.207,22.471,19.377,21.187,-0.551,20.791,27.112,15.927,3.98,7.187,-4.907,12.882,20.828,21.486,3.421,7.907,5.797,22.902,7.616,15.735,-0.244,-0.361,8.861,24.799,13.031,25.781,5.436,2.981,-2.47,5.087,4.87,20.199,21.036,17.257,3.287,13.451],[34.79,26.358,14.05,14.088,14.069,11.905,8.464,-2.521,7.434,18.03,25.541,35.135,9.545,3.022,16.727,15.848,11.171,21.833,18.511,12.085,3.92,0.299,20.959,18.057,6.3,2.935,4.766,24.445,9.402,7.653,0.869,13.157,5.305,13.849,10.244,-2.281,-1.198,7.863,16.45,-6.546,-1.858,7.216,9.273,11.03,-7.538,21.605,22.756,22.576,19.171,14.6,2.565,-4.16,7.333,26.015,20.437,7.485,3.514,13.307,0.134,6.478,19.457,5.028,23.459,15.64,24.931,18.951,5.785,13.453,8.552,3.075,10.577,-3.139,33.56,16.013,10.146,26.992,27.127,-2.049,24.91,36.234,10.545,15.81,15.439,12.61,12.739,14.042,13.358,36.662,7.689,19.267,10.125,35.486,4.347,15.91,17.268,18.357,14.483,11.543,21.836,7.639,3.689,21.608,19.243,11.837,11.717,1.091,10.603,17.496,0.952,17.559,8.342,7.266,13.063,23.684,23.761,1.767,19.223,2.035,26.032,4.416,6.541,9.95,3.564,4.741,6.638,-0.813,5.58,11.599,6.406,9.126,1.524,14.334,13.974,15.381,6.847,15.705,0.213,-2.065,8.992,8.573,8.999,-6.796,12.588,15.399,7.135,6.548,20.075,-0.96,21.659,-0.783,-4.98,-5.988,23.882,10.437,17.812,-7.125,11.834,22.348,19.803,20.949,-0.691,21.031,27.119,15.659,4.309,7.718,-4.83,13.254,20.351,21.64,3.429,7.55,5.716,22.663,7.938,15.84,-0.191,-0.298,9.109,24.919,12.994,25.498,5.523,2.751,-2.425,5.282,4.59,20.132,21.377,17.457,3.047,13.682],[35.103,26.509,14.114,14.285,14.243,11.799,8.248,-2.998,7.533,17.875,25.325,35.204,9.412,2.796,16.599,15.945,11.384,21.817,18.526,11.9,4.094,0.408,20.852,18.079,6.107,2.904,4.819,24.335,9.454,7.745,1.035,13.118,4.943,13.988,10.464,-2.277,-0.967,7.992,16.182,-6.637,-1.985,7.298,9.383,10.937,-7.825,21.948,22.615,22.542,19.201,14.757,2.752,-3.945,7.439,25.982,20.512,7.426,3.582,13.18,0.157,6.343,19.184,4.911,23.523,15.587,25.502,18.451,5.991,13.361,8.894,3.18,9.842,-3.183,33.526,16.109,9.994,26.86,27.065,-1.512,24.898,36.327,10.784,15.814,15.286,13.348,12.921,14.535,13.072,36.778,7.858,19.259,10.709,36.079,4.365,16.15,16.969,18.636,14.932,11.816,21.945,7.486,3.79,21.61,19.625,12.215,12.084,1.01,10.892,17.736,0.835,17.466,8.132,6.953,12.422,23.582,23.604,1.723,19.007,1.573,25.753,4.359,6.566,9.359,3.639,5.275,6.632,-0.523,5.497,11.584,6.156,9.437,1.642,14.65,14.356,15.668,7.076,15.771,0.753,-2.08,9.463,8.493,8.993,-7.14,12.285,14.787,7.338,6.582,20.161,-0.843,21.789,-1.592,-5.361,-5.772,23.908,9.812,17.61,-7.442,12.127,22.413,20.427,20.987,-0.964,21.02,26.742,15.712,4.273,7.612,-4.846,13.579,20.647,21.129,3.09,7.417,5.668,22.563,8.158,16.044,0.009,-0.569,9.051,24.934,12.956,25.456,5.648,2.706,-2.167,5.353,4.665,20.006,21.406,17.226,2.628,13.771],[35.366,26.666,14.16,14.327,14.481,11.553,7.998,-3.299,7.696,17.73,25.227,35.403,9.379,2.75,16.524,16.11,11.678,21.721,18.478,11.853,4.309,0.435,20.797,18.042,6.038,3.111,4.83,24.188,9.573,7.681,1.177,13.283,4.705,14.279,10.867,-2.401,-0.789,8.297,15.891,-6.476,-2.102,7.19,9.335,10.928,-8.079,21.935,22.477,22.604,19.142,14.783,2.654,-3.793,7.563,26.013,20.578,7.355,3.535,13.044,0.167,6.087,19.106,4.861,23.381,15.457,25.039,18.947,6.331,13.734,9.262,3.578,9.331,-3.65,33.733,16.143,9.529,26.496,27.233,-1.864,25.27,35.752,10.691,15.721,15.349,13.476,12.589,14.837,13.272,36.631,7.94,19.002,10.49,36.204,3.908,15.899,17.236,18.737,15.159,11.891,21.77,7.618,3.95,21.411,19.844,12.608,12.118,1.32,11.216,17.688,1.233,17.731,8.566,6.585,12.71,23.492,23.647,1.402,18.997,1.884,25.717,4.874,6.604,9.517,4.064,4.644,6.591,-0.607,5.046,11.73,5.805,10.168,2.219,14.707,14.42,15.644,7.231,15.38,0.534,-2.1,9.462,8.352,8.854,-7.133,11.691,14.621,7.435,6.02,20.204,0.024,21.504,-1.842,-5.445,-5.257,23.838,9.806,18.143,-7.911,12.082,22.161,20.676,21.265,-1.073,20.848,25.981,15.758,4.265,7.17,-4.274,13.641,20.807,20.239,3.096,7.479,5.593,22.841,8.04,16.051,-0.29,-0.487,8.49,24.821,13.053,25.339,6.162,3.484,-2.029,4.882,4.71,19.204,21.314,16.896,2.729,13.854],[35.559,26.702,14.121,14.225,14.748,11.333,7.783,-3.327,7.896,17.814,25.217,35.565,9.368,2.786,16.45,16.057,11.927,21.571,18.508,11.922,4.401,0.434,20.689,18.03,6.357,3.339,4.819,24.046,9.729,7.686,1.414,13.488,4.515,14.481,11.188,-2.602,-0.675,8.504,15.701,-6.268,-2.263,6.852,9.262,10.805,-8.155,21.835,22.423,22.625,19.271,14.777,2.459,-3.741,7.574,25.971,20.466,7.241,3.456,12.836,0.124,5.891,19.226,4.835,23.221,15.327,25.324,18.964,6.618,13.559,9.444,3.748,9.124,-3.74,33.816,16.107,9.485,26.197,27.568,-1.884,25.121,35.611,10.182,15.85,15.665,13.4,12.858,14.657,12.971,36.919,7.845,18.627,9.998,36.217,3.867,15.775,17.652,18.212,14.668,11.491,21.702,8.169,4.481,21.226,19.281,12.855,12.176,1.637,11.236,17.686,1.631,17.594,8.699,6.601,13.219,23.453,23.367,1.215,18.963,2.435,25.598,5.442,6.68,10.121,4.238,4.356,6.287,-1.416,4.839,11.931,5.687,10.287,2.48,14.89,14.427,15.668,7.717,14.849,-0.106,-1.92,9.642,8.601,8.538,-7.35,12.035,14.888,7.46,5.97,20.267,0.662,21.282,-1.34,-5.18,-5.397,24.042,10.044,17.843,-8.22,12.081,22.081,20.161,21.23,-1.235,20.557,25.681,15.714,3.709,6.905,-3.549,13.899,20.344,20.814,3.256,6.839,5.783,22.705,7.971,16.338,-0.229,-0.449,8.556,24.856,13.266,25.375,6.593,3.408,-1.98,4.704,4.577,19.136,21.376,16.699,2.929,13.869],[35.715,26.797,14.082,14.014,14.972,11.158,7.763,-3.144,8.141,17.928,25.239,35.656,9.227,2.872,16.389,15.815,12.018,21.474,18.508,12.066,4.531,0.498,20.511,17.866,6.801,3.357,4.957,23.841,9.95,7.784,1.685,13.564,4.336,14.633,11.286,-2.808,-0.758,8.583,15.62,-6.173,-2.287,6.448,9.305,10.775,-8.146,21.686,22.441,22.581,19.35,14.83,2.345,-3.75,7.554,25.921,20.39,7.204,3.41,12.718,0.122,5.725,19.249,4.802,23.083,15.21,25.439,18.74,6.833,13.387,9.612,3.28,9.647,-3.425,33.936,15.9,9.456,26.052,27.691,-2.238,24.686,35.788,9.975,15.832,15.541,13.76,13.019,14.835,12.6,37.412,7.301,19.074,10.502,36.06,4.5,16.516,17.155,18.053,14.284,11.839,21.765,8.476,4.195,21.277,19.461,13.313,11.985,1.209,11.087,17.191,1.514,17.481,8.154,7.289,12.514,23.164,23.236,1.152,18.774,2.723,25.234,5.205,6.789,10.076,3.936,4.852,6.399,-1.35,4.988,12.125,5.558,10.264,2.33,14.535,14.65,16.151,7.83,15.103,-0.102,-1.65,10.222,8.906,8.289,-7.232,12.11,14.877,7.416,6.483,20.287,0.723,21.678,-1.635,-4.706,-5.276,24.124,9.788,17.779,-8.115,11.933,22.061,19.774,21.457,-1.518,20.986,26.126,15.93,3.769,6.753,-3.687,13.326,20.411,20.959,3.058,6.825,5.784,22.762,7.824,16.204,0.144,-1.015,8.74,24.592,13.201,25.121,6.203,2.899,-1.856,4.924,4.508,20.271,21.42,16.534,2.57,13.492],[35.853,26.917,14.09,13.856,15.159,11.094,7.778,-3.074,8.407,17.905,25.14,35.706,9.198,3.088,16.468,15.666,12.167,21.471,18.452,11.939,4.576,0.516,20.374,17.653,7.004,3.116,5.282,23.558,10.136,7.873,1.803,13.586,4.223,14.738,11.257,-2.655,-0.908,8.536,15.62,-6.055,-2.27,6.291,9.369,10.942,-8.078,21.586,22.557,22.557,19.283,14.906,2.461,-3.697,7.406,25.854,20.431,7.252,3.215,12.48,0.115,5.698,19.293,4.783,22.885,15.152,25.277,18.4,7.006,13.57,9.763,2.862,10.103,-2.944,33.986,15.586,9.419,26.53,27.251,-2.342,25.222,36.325,10.012,15.633,15.44,14.139,13.158,15.003,12.385,37.558,7.115,19.628,10.401,35.531,4.812,16.077,17.128,18.164,14.04,12.315,21.461,8.565,3.947,21.277,19.724,13.367,11.713,1.149,11.297,17.031,1.187,17.524,7.869,7.988,13.001,23.373,23.215,1.423,18.585,2.686,25.267,5.297,7.012,9.706,3.905,5.289,6.676,-0.988,4.671,11.964,5.373,10.229,2.501,14.886,14.503,16.275,7.831,15.32,0.16,-2.492,10.205,9.112,7.929,-7.206,12.216,14.899,7.139,5.921,20.055,-0.179,21.67,-2.294,-4.855,-5.109,23.822,9.993,17.936,-7.961,11.757,22.104,19.789,21.133,-0.973,21.113,26.379,16.104,4.197,7.055,-4.554,13.324,20.584,20.486,3.027,7.126,5.443,22.843,8.007,15.768,-0.256,-0.518,8.59,24.409,13.17,25.173,5.655,2.652,-1.89,4.907,4.217,19.88,21.504,16.51,2.397,13.293],[35.944,27.051,14.214,13.982,15.297,11.159,7.662,-3.083,8.586,17.872,25.156,35.7,9.159,3.341,16.517,15.69,12.268,21.614,18.436,11.767,4.53,0.473,20.32,17.565,6.992,2.801,5.682,23.534,10.294,7.829,1.894,13.52,4.187,14.859,11.193,-2.438,-1.07,8.422,15.678,-5.917,-2.18,6.13,9.448,11.024,-8.029,21.578,22.466,22.322,19.276,14.976,2.678,-3.713,7.21,25.781,20.497,7.316,2.904,12.147,0.14,5.739,19.042,4.834,22.756,15.185,25.413,18.319,7.147,13.471,10.043,3.219,10.29,-3.425,34.214,15.884,9.23,26.739,27.16,-2.069,25.432,37.054,9.954,15.457,15.505,14.249,12.737,15.327,12.834,37.449,7.541,19.2,10.192,35.511,4.632,15.569,17.595,18.226,14.105,12.52,21.329,8.484,4.294,21.13,19.658,13.164,11.478,1.249,11.582,17.006,1.173,17.177,8.717,7.753,13.003,23.432,22.936,1.763,18.448,2.232,25.265,5.836,7.462,9.977,3.954,5.115,6.859,-0.791,4.465,11.979,5.619,10.184,2.503,15.359,14.5,16.191,7.738,14.916,0.28,-2.692,9.909,8.758,7.951,-7.832,12.098,14.648,7.028,5.406,20.435,-0.694,21.25,-2.799,-4.856,-5.117,23.39,10.111,17.616,-7.884,12.549,22.227,19.877,20.813,-1.6,20.761,26.246,15.968,4.419,7.294,-4.576,13.341,20.571,20.464,3.032,6.919,5.185,22.143,8.541,15.879,-0.339,-0.19,8.315,24.249,13.355,24.904,5.53,2.827,-1.893,4.755,4.322,19.57,21.715,16.747,2.206,13.253],[36.042,27.122,14.18,14.209,15.322,11.352,7.568,-3.209,8.629,17.912,25.29,35.697,9.009,3.528,16.49,15.79,12.306,21.83,18.444,11.611,4.53,0.482,20.393,17.585,6.959,2.621,5.907,23.588,10.577,7.877,1.867,13.425,4.284,14.867,10.984,-2.399,-1.206,8.243,15.613,-5.808,-2.333,6.116,9.548,11.128,-8.143,21.564,22.155,21.912,19.28,15.007,2.912,-3.715,7.075,25.627,20.529,7.453,2.682,11.935,0.222,5.811,18.685,4.827,22.602,15.422,25.357,19.245,7.385,13.503,10.117,4.054,9.9,-3.805,34.379,16.096,9.125,27.011,28.163,-1.62,25.191,37.125,10.329,15.713,15.521,14.247,12.815,15.54,13.017,37.606,7.399,18.804,10.507,35.639,4.859,15.184,17.447,18.011,14.488,11.771,21.523,8.693,3.818,21.162,19.657,13.419,11.321,0.74,11.474,17.487,0.972,16.753,8.823,7.022,12.15,23.651,23.07,1.978,18.65,2.387,25.162,5.311,7.729,10.032,3.824,5.556,6.493,-0.555,4.947,11.805,5.38,10.241,2.648,15.588,14.675,16.135,7.466,14.872,0.409,-1.815,9.588,8.639,7.909,-7.453,11.786,14.796,7.253,5.323,20.533,-0.881,21.077,-2.7,-4.317,-4.876,23.58,10.037,17.907,-7.981,12.619,22.069,19.851,20.879,-1.545,20.718,26.276,16.219,4.518,7.249,-4.104,13.117,20.123,20.896,3.043,6.656,5.475,21.816,8.88,15.934,-0.055,-0.547,8.0,24.243,13.425,24.967,5.517,2.951,-1.991,4.357,4.048,19.185,21.993,17.167,1.572,12.891],[36.091,27.181,14.062,14.136,15.292,11.535,7.54,-3.258,8.605,18.053,25.461,35.79,8.858,3.721,16.417,15.985,12.274,22.113,18.399,11.282,4.28,0.539,20.499,17.518,6.812,2.591,6.061,23.647,10.842,7.911,1.752,13.459,4.512,14.835,10.653,-2.154,-1.331,8.045,15.541,-5.565,-2.532,6.313,9.569,11.135,-8.179,21.451,21.813,21.796,19.365,15.02,3.081,-3.668,7.052,25.581,20.554,7.568,2.469,11.765,0.227,5.749,18.545,4.758,22.31,15.787,25.593,19.229,7.222,14.065,10.202,3.954,9.3,-3.605,34.321,15.762,9.011,27.196,28.226,-1.69,25.179,36.957,10.661,15.882,15.689,14.154,12.851,15.523,13.081,37.667,7.232,18.96,10.441,35.543,5.412,15.104,17.005,17.781,15.479,11.706,21.674,8.52,4.042,21.799,19.577,13.37,11.447,0.423,11.846,17.6,0.724,17.407,8.288,7.202,12.212,23.78,22.962,2.139,18.852,2.499,25.374,5.331,7.713,10.123,3.617,5.796,6.579,-0.955,5.218,12.053,5.516,10.03,2.82,15.176,14.503,16.163,7.439,14.902,0.047,-1.769,9.381,9.056,8.09,-7.095,11.822,14.745,7.005,5.722,20.18,-0.555,21.409,-1.738,-3.93,-5.329,23.282,10.365,17.817,-8.41,12.518,21.701,19.768,20.473,-1.486,20.551,25.735,16.33,4.372,6.731,-3.583,12.875,20.021,20.775,3.043,7.046,5.625,22.501,9.104,15.812,-0.532,-0.736,8.158,24.0,13.503,24.904,5.427,3.485,-2.16,4.425,3.591,18.716,22.32,17.461,1.675,12.707],[36.134,27.226,13.924,14.016,15.116,11.701,7.71,-3.262,8.62,18.029,25.678,35.85,8.798,3.905,16.288,16.321,12.114,22.377,18.198,10.999,4.011,0.582,20.648,17.436,6.72,2.683,6.18,23.706,11.099,7.862,1.642,13.598,4.715,14.775,10.332,-2.123,-1.347,7.897,15.573,-5.327,-2.409,6.577,9.689,10.958,-8.142,21.409,21.557,21.814,19.429,14.98,3.207,-3.626,7.052,25.589,20.677,7.671,2.271,11.41,0.111,5.542,18.452,4.745,22.195,15.945,25.341,18.949,7.104,13.961,9.973,3.495,9.172,-2.867,34.334,15.786,9.311,27.634,27.905,-1.736,25.182,36.267,10.338,16.002,15.06,14.404,12.881,15.757,13.28,37.612,7.286,19.259,10.028,35.785,5.663,15.101,17.037,17.658,15.398,12.517,21.564,8.052,3.603,22.154,19.457,13.299,11.081,0.676,12.034,17.407,0.948,17.351,8.333,7.484,12.426,24.155,22.965,2.324,18.84,2.517,25.2,5.223,7.756,10.918,3.509,5.543,6.663,-0.456,5.124,12.002,5.978,9.249,2.602,14.747,14.215,16.423,7.3,15.021,-0.785,-1.825,9.037,9.064,8.5,-7.305,11.936,14.93,6.504,5.777,20.411,-0.265,21.09,-1.863,-3.857,-4.924,23.241,10.386,17.704,-8.208,12.26,21.338,19.775,20.349,-1.261,20.042,26.076,16.343,4.584,6.663,-3.603,12.43,19.748,20.872,2.969,6.919,5.242,22.026,9.037,16.451,-0.634,-0.851,8.681,23.893,13.644,25.114,5.47,3.515,-1.771,4.875,3.334,19.225,22.234,17.661,2.361,12.711],[36.127,27.102,13.684,13.961,14.925,11.792,7.958,-2.963,8.612,17.949,25.968,35.823,8.911,3.942,16.15,16.263,12.066,22.663,17.973,10.939,3.808,0.716,20.763,17.308,6.72,2.856,6.119,23.748,11.347,7.804,1.592,13.604,4.854,14.65,9.997,-2.164,-1.395,7.823,15.824,-5.117,-2.054,6.622,9.825,10.7,-8.096,21.321,21.429,21.869,19.525,14.884,3.292,-3.524,7.129,25.698,20.895,7.829,2.231,11.138,-0.139,5.226,18.439,4.627,22.171,15.986,25.416,18.768,6.978,13.722,9.838,3.608,8.912,-2.344,34.471,15.849,9.363,27.759,27.467,-1.952,25.588,35.793,10.213,15.911,15.113,14.259,12.22,15.453,13.084,37.749,7.394,19.207,10.025,36.043,5.814,15.504,17.147,18.358,15.021,12.178,21.617,8.094,3.173,22.176,19.305,13.292,10.971,0.602,12.125,17.928,1.067,17.349,8.693,7.577,11.99,24.372,22.716,2.452,18.96,2.792,25.499,4.471,7.828,11.255,3.997,5.749,6.387,-0.256,5.231,12.176,5.919,9.056,2.082,14.695,14.427,16.077,7.351,14.726,-0.746,-2.25,8.769,9.039,8.41,-7.371,11.735,14.971,6.366,5.706,20.806,-0.219,21.045,-2.301,-3.78,-4.388,23.405,10.721,18.222,-8.094,11.938,21.157,19.534,20.599,-1.43,19.647,26.755,16.497,4.632,6.664,-4.044,12.169,19.686,21.07,2.892,6.29,5.354,21.691,8.654,16.648,0.024,-0.31,8.868,23.878,13.889,25.07,5.452,3.019,-1.727,4.86,3.216,19.668,22.154,17.506,2.041,12.145],[36.079,26.892,13.378,13.791,14.657,11.766,7.936,-2.468,8.534,17.911,26.259,35.883,9.075,4.052,16.154,16.23,12.034,22.899,17.826,11.004,3.462,0.911,20.873,17.352,6.793,2.972,6.074,23.72,11.522,7.754,1.562,13.565,5.043,14.456,9.757,-2.185,-1.432,7.802,16.017,-4.937,-1.825,6.432,9.952,10.501,-8.01,21.235,21.305,21.982,19.831,14.82,3.233,-3.402,7.162,25.874,21.046,7.817,2.254,11.091,-0.098,4.939,18.648,4.475,22.049,16.006,25.324,18.617,6.919,13.763,9.922,3.689,8.66,-2.948,34.252,15.332,9.166,28.018,27.229,-2.019,25.986,35.881,10.48,15.385,14.941,13.621,11.836,15.278,13.129,37.739,7.592,19.03,10.222,35.383,5.758,15.68,16.537,18.143,14.503,12.079,21.846,8.379,3.769,22.545,19.008,13.343,11.289,0.231,12.335,17.473,1.36,16.768,8.769,7.176,11.729,24.674,23.284,2.27,19.028,3.127,25.489,4.669,7.85,10.483,4.426,5.546,6.58,-0.714,5.674,12.224,6.063,9.134,1.712,15.153,14.705,15.464,7.213,15.043,-0.249,-2.313,8.487,9.744,8.129,-7.471,11.362,15.002,6.535,5.569,21.099,-0.342,21.251,-1.356,-3.688,-4.359,23.513,10.866,18.339,-8.11,11.671,21.281,19.545,20.751,-1.531,19.864,26.493,16.393,4.568,6.98,-4.293,12.344,20.01,21.238,2.725,6.243,5.466,21.983,8.925,16.523,-0.656,-0.795,8.956,23.766,13.71,24.863,5.402,2.671,-1.764,3.924,3.263,19.24,22.483,17.508,1.703,11.896],[35.877,26.621,13.093,13.5,14.223,11.72,7.73,-2.143,8.53,17.88,26.362,35.858,9.14,4.156,16.23,16.088,12.011,23.145,17.612,11.082,3.365,0.979,21.044,17.375,6.751,3.017,6.06,23.731,11.544,7.684,1.658,13.64,5.332,14.365,9.667,-2.33,-1.395,7.808,16.077,-4.923,-1.751,6.26,10.176,10.44,-7.924,21.373,21.326,22.067,20.141,14.764,3.035,-3.334,7.138,25.893,21.194,7.821,2.342,10.949,-0.071,4.708,18.751,4.462,22.08,16.009,25.176,18.784,6.931,13.647,9.809,4.372,8.781,-3.043,34.154,15.255,8.868,28.274,27.529,-1.846,26.438,36.365,10.439,15.029,14.36,12.808,12.047,14.725,13.301,37.748,7.905,18.796,10.542,35.067,5.52,15.332,16.436,18.382,14.563,12.164,22.019,8.276,3.344,23.062,18.731,13.471,11.152,0.006,12.101,17.473,1.356,16.855,8.83,7.307,11.92,24.751,23.276,2.205,19.342,3.111,25.392,4.611,7.931,10.361,4.166,5.448,6.454,-0.544,5.99,12.358,6.098,8.671,1.41,15.406,14.668,15.387,6.965,15.102,0.107,-1.954,8.519,9.248,8.001,-6.948,11.291,15.371,6.443,5.184,21.0,-0.873,21.263,-1.609,-3.725,-4.026,23.9,10.696,18.524,-7.986,11.815,21.313,19.751,20.709,-0.771,20.062,26.193,16.159,4.55,7.621,-3.935,12.422,20.035,21.453,2.805,6.414,4.903,21.306,9.339,16.617,-0.897,-0.867,8.503,23.581,13.637,25.811,5.371,2.832,-1.984,3.728,3.402,19.651,23.003,17.65,2.109,11.942],[35.71,26.525,12.961,13.311,13.662,11.616,7.577,-2.17,8.442,17.893,26.415,35.813,9.241,4.298,16.281,16.028,12.02,23.357,17.508,11.148,3.468,0.956,21.239,17.367,6.645,2.841,6.101,23.887,11.369,7.516,1.744,13.756,5.57,14.531,9.636,-2.254,-1.379,7.753,16.159,-5.014,-1.768,6.087,10.269,10.493,-7.69,21.489,21.479,22.112,20.42,14.767,2.953,-3.334,7.257,25.934,21.437,7.947,2.583,10.634,-0.088,4.621,18.788,4.443,21.971,16.093,24.872,18.791,6.934,13.254,9.868,4.12,8.811,-1.944,33.76,15.101,8.098,28.263,27.442,-1.379,25.938,36.522,10.274,15.247,13.915,12.233,11.699,14.356,13.35,37.524,7.477,19.144,10.306,35.293,5.516,15.101,16.255,18.151,14.879,11.55,21.98,7.92,3.303,22.902,18.444,13.578,11.056,0.204,12.394,17.54,1.041,17.576,8.623,7.689,11.621,24.922,22.611,2.343,19.568,3.315,25.579,4.345,7.934,10.956,4.101,5.499,6.131,-0.56,5.983,12.361,6.367,8.687,1.399,14.875,14.705,16.213,7.292,14.964,0.179,-2.046,8.418,9.552,7.797,-7.342,11.538,15.394,6.279,5.021,21.047,-1.018,21.289,-1.549,-3.824,-3.792,23.662,10.916,18.742,-7.791,11.878,21.472,19.621,20.691,-1.216,19.71,26.202,16.095,4.426,6.976,-3.461,11.956,19.734,21.245,2.539,6.41,5.042,21.548,9.324,16.994,-0.58,-0.469,8.378,23.589,13.38,25.352,5.798,2.957,-1.545,3.988,3.278,20.15,23.309,17.187,2.252,11.669],[35.541,26.6,12.87,13.247,13.177,11.507,7.307,-2.245,8.431,18.063,26.28,35.734,9.373,4.343,16.307,16.019,11.978,23.46,17.413,11.152,3.591,0.962,21.315,17.407,6.614,2.585,6.065,23.924,11.2,7.252,1.802,13.899,5.731,14.682,9.569,-2.076,-1.399,7.745,16.213,-5.017,-1.705,5.989,10.188,10.463,-7.408,21.415,21.477,21.966,20.782,14.75,2.923,-3.211,7.353,25.884,21.767,8.074,2.831,10.293,-0.004,4.634,18.787,4.405,21.834,16.127,24.72,18.429,6.74,13.189,9.801,3.7,8.697,-1.569,33.731,14.988,8.376,28.043,27.157,-1.056,25.837,36.429,10.227,15.625,14.108,11.943,11.411,13.715,12.94,37.503,7.529,19.511,10.317,35.372,6.18,15.209,15.873,18.02,15.46,11.89,22.039,7.966,3.227,22.904,18.384,13.278,11.269,0.406,12.424,17.752,0.934,17.383,8.424,7.429,11.502,25.201,23.007,2.396,19.386,3.658,25.401,4.647,7.758,10.919,3.782,6.097,6.042,-0.544,5.815,12.618,7.333,8.771,1.491,14.461,14.749,16.382,7.328,15.323,0.101,-2.06,8.388,9.674,7.677,-7.352,11.678,15.141,6.247,5.287,21.481,-0.82,21.597,-1.815,-4.158,-4.156,23.351,11.058,19.099,-7.36,11.224,21.637,19.56,20.654,-1.141,19.866,26.617,16.252,4.284,6.291,-3.661,11.59,19.775,21.219,2.708,6.185,5.19,21.954,9.176,17.008,-0.426,-0.603,9.4,23.356,13.247,25.059,6.056,3.253,-1.498,3.751,3.145,19.848,23.543,17.165,2.916,11.018],[35.426,26.776,12.857,13.374,12.834,11.509,6.991,-2.321,8.423,18.098,26.206,35.685,9.395,4.451,16.314,16.216,11.919,23.456,17.263,11.123,3.818,1.084,21.22,17.367,6.582,2.319,6.037,23.914,11.07,7.17,2.052,14.055,5.852,14.559,9.433,-1.938,-1.417,7.718,16.285,-5.055,-1.543,5.898,10.052,10.233,-7.168,21.378,21.545,21.776,21.143,14.73,2.838,-3.251,7.246,25.724,21.854,8.354,2.988,10.11,0.124,4.645,18.663,4.487,21.821,16.024,24.976,18.807,6.894,13.392,9.588,3.811,8.875,-1.962,33.709,15.107,7.998,27.849,27.104,-1.271,25.777,36.4,10.18,15.702,14.069,11.642,11.814,12.689,12.957,37.544,7.686,19.55,10.757,35.384,6.193,15.313,15.942,18.642,15.25,12.276,22.1,8.177,3.165,23.179,18.329,13.452,11.026,0.088,11.722,17.909,0.598,16.935,7.849,6.977,11.923,25.238,22.959,2.382,19.497,3.877,25.608,4.943,7.784,10.852,3.419,5.956,6.259,-0.223,5.808,12.412,7.633,8.333,1.695,14.963,14.595,15.967,6.944,15.101,-0.232,-2.154,8.58,9.437,7.855,-6.537,11.398,15.531,6.586,5.1,21.871,-0.601,21.652,-1.781,-3.831,-3.964,23.363,10.484,19.715,-7.136,11.282,21.283,19.605,20.158,-0.58,20.119,26.538,16.313,4.377,6.54,-3.715,11.644,19.486,22.001,2.915,6.368,4.756,21.688,9.292,16.867,-0.566,-0.423,9.332,23.206,13.376,25.826,6.155,3.653,-1.379,3.633,3.657,19.684,23.702,17.386,3.281,10.69],[35.435,26.992,13.009,13.541,12.624,11.574,6.88,-2.368,8.335,18.071,26.291,35.677,9.382,4.532,16.321,16.421,12.003,23.369,17.22,11.126,3.989,1.136,21.136,17.388,6.488,2.121,5.953,24.122,10.873,7.147,2.29,14.02,5.917,14.292,9.249,-1.73,-1.507,7.598,16.389,-5.015,-1.302,5.836,9.835,10.068,-6.869,21.353,21.556,21.572,21.546,14.891,2.759,-3.124,7.161,25.765,21.71,8.525,3.157,10.167,0.187,4.772,18.416,4.674,21.832,16.022,25.134,19.008,6.788,13.817,9.83,4.263,8.748,-2.552,33.52,15.197,7.215,27.916,27.578,-1.875,26.206,36.198,10.523,15.656,14.011,11.341,11.923,12.458,13.429,37.477,7.543,19.259,10.569,35.404,6.2,15.19,15.981,18.139,15.109,11.514,22.3,7.76,3.618,23.032,18.287,13.8,10.861,-0.022,11.935,18.022,0.273,17.035,7.685,7.221,11.361,25.132,22.89,2.49,19.526,4.2,25.674,5.014,7.779,10.599,3.363,5.57,6.091,-0.269,5.69,12.581,7.085,8.476,1.482,15.349,14.448,15.615,6.749,14.936,-0.665,-1.927,8.215,9.167,7.538,-6.74,11.033,15.782,6.751,4.975,22.281,-0.165,20.997,-1.174,-3.799,-3.766,22.821,10.288,19.82,-7.047,11.582,21.745,19.634,20.054,-0.842,19.944,25.801,16.164,4.065,6.781,-4.21,11.731,19.382,21.966,2.85,6.48,5.116,21.476,9.994,15.983,-0.765,-0.162,8.797,23.64,13.347,25.125,5.723,3.695,-1.752,3.742,3.746,19.585,23.434,17.457,2.741,10.719],[35.399,27.185,13.142,13.642,12.535,11.711,6.993,-2.456,8.242,18.028,26.368,35.635,9.253,4.642,16.331,16.521,12.052,23.252,17.271,11.063,4.04,1.144,21.191,17.315,6.328,2.175,5.792,24.259,10.692,7.047,2.185,13.855,5.781,14.1,9.173,-1.617,-1.618,7.548,16.485,-4.89,-1.117,5.859,9.627,10.03,-6.583,21.116,21.605,21.353,21.726,15.113,2.649,-3.058,7.036,25.773,21.412,8.563,3.259,10.358,0.177,5.022,18.178,4.936,22.044,16.098,25.488,18.557,6.68,13.871,9.74,4.316,8.522,-2.488,33.575,15.283,8.045,28.124,28.078,-2.194,26.123,36.016,10.641,15.281,14.626,11.508,11.624,12.691,13.448,37.448,7.769,19.299,10.479,35.337,5.661,15.431,15.677,18.309,15.055,11.542,21.956,7.658,3.299,22.446,17.967,13.773,10.992,0.355,12.147,18.08,0.374,17.363,7.989,6.978,11.399,25.078,23.255,2.392,19.325,4.099,25.852,4.922,7.64,10.361,3.351,5.427,5.787,0.149,6.005,12.39,6.987,8.416,1.746,14.845,14.598,15.432,6.955,15.617,-0.976,-1.617,7.899,8.857,7.594,-7.018,10.987,15.516,6.355,5.104,22.801,-0.436,20.776,-1.311,-4.121,-4.159,22.769,10.379,20.387,-6.856,11.028,21.947,19.48,19.704,-0.271,19.864,25.904,16.418,3.817,7.014,-3.94,11.45,19.546,21.419,3.233,6.561,5.347,21.131,10.1,15.899,-0.505,-0.33,9.192,23.736,13.483,24.94,5.314,3.476,-1.879,3.869,3.491,19.219,22.999,17.525,2.912,11.235],[35.334,27.347,13.3,13.641,12.541,11.833,7.433,-2.486,8.203,17.928,26.43,35.548,9.101,4.7,16.228,16.391,11.982,23.178,17.122,11.022,3.808,1.173,21.186,17.203,6.135,2.272,5.598,24.391,10.586,6.89,2.014,13.653,5.69,13.922,9.292,-1.669,-1.796,7.575,16.612,-4.766,-1.051,6.073,9.56,10.073,-6.463,20.953,21.735,21.369,21.764,15.278,2.482,-3.068,6.8,25.778,21.079,8.568,3.262,10.604,0.178,5.099,18.121,5.109,22.183,16.248,26.012,18.473,6.556,13.583,9.397,4.218,8.668,-1.861,33.555,15.375,8.625,28.194,28.077,-1.912,25.96,35.857,10.576,14.989,14.58,11.526,11.819,12.534,13.438,37.291,7.233,19.58,10.405,35.267,5.771,15.898,15.5,18.283,15.304,12.212,21.969,7.765,3.162,22.697,17.727,13.593,10.768,0.151,11.604,18.176,0.599,17.367,8.037,6.758,12.003,25.017,23.237,2.425,19.479,3.81,26.035,4.934,7.459,10.738,3.394,5.376,5.976,0.085,6.026,12.048,7.179,8.317,1.701,14.18,14.499,15.479,6.969,15.602,-0.931,-1.79,8.174,8.634,7.791,-6.214,11.511,15.372,6.392,5.135,22.378,-0.86,21.158,-0.854,-3.411,-4.337,22.683,10.155,20.624,-6.549,10.644,22.02,19.079,19.647,-0.262,19.984,26.433,16.732,3.833,6.774,-3.855,11.25,19.203,21.221,3.507,6.796,5.349,21.439,9.721,16.499,-0.565,-0.171,9.448,23.451,13.76,25.593,5.26,3.469,-1.541,4.236,3.992,18.856,22.742,17.928,2.857,11.984],[35.196,27.469,13.501,13.543,12.573,11.947,7.812,-2.357,8.218,17.949,26.425,35.413,9.159,4.741,16.012,16.256,11.908,23.173,16.851,11.09,3.492,1.184,21.282,17.132,6.0,2.394,5.376,24.568,10.535,6.658,1.857,13.411,5.624,13.687,9.514,-1.69,-2.016,7.64,16.603,-4.624,-1.009,6.363,9.588,10.209,-6.328,20.929,21.874,21.448,21.614,15.251,2.365,-3.163,6.542,25.911,20.848,8.439,3.209,10.922,0.228,5.178,18.107,5.19,22.235,16.529,26.08,18.393,6.568,13.43,9.575,4.663,8.603,-1.77,33.346,15.266,8.738,28.248,27.702,-1.25,26.117,35.907,10.458,14.704,14.376,11.409,12.166,12.525,13.487,37.172,7.692,19.107,10.206,35.489,6.389,16.446,15.441,17.969,15.12,12.254,22.288,7.445,3.298,22.732,17.584,13.459,10.629,0.245,11.531,17.926,0.512,16.778,7.619,6.676,11.862,24.902,23.726,2.518,19.502,3.566,26.222,4.229,7.147,10.787,3.318,5.224,5.854,-0.166,5.86,12.183,7.166,8.716,1.574,14.386,14.147,15.34,6.667,15.505,-0.802,-2.027,8.246,8.588,8.225,-5.451,11.766,15.597,6.789,5.231,22.241,-1.016,21.4,-0.91,-3.138,-3.749,22.907,10.413,19.886,-6.451,11.153,22.274,19.248,20.011,-0.624,20.229,26.282,16.958,3.562,5.941,-3.458,11.5,19.239,21.317,3.371,6.438,5.866,21.415,9.473,17.216,-0.664,-0.145,9.5,23.682,14.304,25.24,5.434,3.297,-1.269,3.938,4.216,18.764,22.525,17.918,3.144,11.982],[35.021,27.453,13.638,13.467,12.577,11.993,7.954,-2.177,8.443,17.94,26.328,35.386,9.23,4.862,15.796,16.137,11.898,23.187,16.699,11.187,3.195,1.153,21.445,17.091,5.859,2.38,5.12,24.676,10.502,6.384,1.758,13.318,5.545,13.535,9.728,-1.601,-2.166,7.795,16.559,-4.457,-1.128,6.759,9.596,10.405,-6.155,21.031,22.051,21.458,21.316,15.204,2.34,-3.259,6.215,25.897,20.777,8.303,3.227,11.221,0.304,5.19,18.148,5.133,22.151,16.844,25.938,18.55,6.756,13.524,9.682,4.353,9.244,-1.7,33.324,15.18,8.773,27.806,27.602,-0.735,26.678,35.969,10.744,14.693,15.028,11.679,12.128,11.847,13.692,37.285,8.474,19.329,10.418,35.343,6.738,16.46,15.267,18.07,15.026,11.639,22.23,7.281,2.897,22.683,17.407,13.449,10.899,0.404,11.634,17.739,0.642,16.373,7.123,6.546,11.741,24.93,23.669,2.855,19.524,3.609,26.449,4.102,6.94,10.191,3.454,5.065,5.45,0.002,5.84,11.936,6.943,8.818,1.353,14.57,13.781,14.791,6.762,15.662,-1.049,-1.564,8.257,9.595,8.541,-5.545,11.315,15.612,6.774,5.444,21.709,-1.411,20.962,-1.419,-3.813,-2.881,22.988,10.527,19.558,-6.282,11.518,21.854,19.296,19.962,-0.198,20.581,26.814,16.995,3.176,5.891,-3.442,12.008,19.599,21.13,3.327,6.777,5.925,21.613,9.238,17.731,-0.432,-0.074,9.103,23.972,14.247,25.388,5.155,3.294,-1.568,3.824,3.71,18.745,22.414,18.11,3.825,11.615],[34.852,27.436,13.778,13.501,12.423,12.104,7.944,-2.048,8.825,17.918,26.1,35.439,9.459,4.945,15.673,16.062,11.885,23.193,16.738,11.339,3.127,1.107,21.425,17.094,5.739,2.212,5.012,24.681,10.394,6.162,1.759,13.382,5.587,13.474,9.775,-1.559,-2.292,7.854,16.642,-4.235,-1.276,7.019,9.594,10.367,-6.041,21.058,22.208,21.456,20.995,15.166,2.358,-3.388,5.928,25.952,20.865,8.232,3.284,11.426,0.382,5.173,18.324,4.878,21.94,17.096,25.79,18.615,7.049,13.463,9.714,4.386,8.714,-1.786,33.054,15.321,8.806,27.184,27.623,-0.526,27.35,35.527,11.027,14.667,15.378,11.797,12.433,11.834,13.932,37.152,8.076,19.525,10.611,35.293,6.698,15.866,15.283,17.461,14.698,11.638,22.047,7.22,2.4,22.829,17.386,13.744,11.439,0.591,11.504,17.706,0.502,17.051,7.097,6.579,12.167,24.991,23.467,2.881,19.793,3.46,26.207,3.933,6.929,10.053,3.56,4.746,5.753,0.078,6.149,11.834,6.822,8.595,0.994,14.626,13.902,14.335,7.298,15.282,-1.573,-1.318,8.792,9.268,8.687,-6.274,11.431,15.566,6.806,5.871,21.961,-1.532,20.907,-1.388,-4.029,-2.764,22.653,10.897,19.287,-6.399,11.392,21.805,19.462,19.642,-0.283,20.503,27.167,16.85,3.428,6.253,-3.67,12.194,19.36,20.651,3.324,6.722,5.919,21.438,9.446,18.123,-0.104,-0.12,8.865,23.826,14.107,25.351,4.321,3.467,-1.571,4.162,4.117,19.123,22.361,18.243,4.215,12.157],[34.695,27.447,13.898,13.612,12.246,12.337,7.763,-2.032,9.087,17.903,25.96,35.365,9.528,4.918,15.568,16.075,12.027,23.205,16.909,11.649,3.152,1.036,21.294,17.115,5.738,2.046,5.122,24.439,10.262,6.15,1.757,13.531,5.793,13.384,9.766,-1.712,-2.422,7.878,16.667,-4.246,-1.338,7.133,9.55,10.113,-6.167,21.053,22.276,21.311,20.83,15.193,2.495,-3.507,5.694,26.088,20.925,8.233,3.468,11.611,0.36,5.221,18.522,4.781,21.722,17.263,26.022,18.344,7.354,13.054,10.189,4.435,9.145,-2.072,33.118,15.458,9.1,25.766,28.051,-0.218,27.529,34.955,11.17,14.855,15.254,11.358,12.654,12.041,14.113,37.14,7.597,19.232,10.741,35.66,6.535,15.377,15.318,17.467,14.965,12.062,22.326,7.203,2.828,22.692,17.473,13.508,11.163,0.5,11.38,17.645,0.178,17.22,7.319,6.56,12.621,25.022,23.73,2.88,19.592,3.546,25.93,3.773,6.906,10.132,2.984,4.594,5.627,0.171,6.374,12.007,6.867,8.724,0.757,14.487,14.116,14.696,7.048,15.597,-1.891,-1.738,8.672,9.592,8.726,-6.397,11.687,15.977,7.079,5.812,21.849,-1.369,20.879,-1.244,-3.247,-2.777,22.882,10.721,20.015,-6.157,10.91,22.298,19.802,19.939,-0.829,20.488,26.962,16.579,3.681,6.221,-3.981,12.033,19.666,20.871,2.983,6.589,5.627,21.15,9.527,18.25,-0.218,-0.352,9.089,22.894,13.77,25.839,4.473,3.536,-1.766,3.917,4.279,19.33,22.514,18.139,4.096,12.673],[34.592,27.487,13.974,13.617,12.082,12.536,7.585,-2.055,9.261,17.719,25.776,35.336,9.553,4.878,15.523,16.192,12.263,23.153,17.132,11.883,3.192,0.955,21.158,17.127,5.796,1.936,5.271,24.187,10.154,6.254,1.718,13.744,6.01,13.421,9.744,-1.85,-2.516,7.888,16.823,-4.288,-1.457,7.077,9.533,9.868,-6.395,21.046,22.34,21.27,20.781,15.171,2.709,-3.676,5.602,26.288,20.921,8.241,3.661,11.891,0.131,5.305,18.717,4.796,21.501,17.351,26.742,18.458,7.548,13.134,10.488,4.592,9.399,-2.295,33.129,15.521,8.955,25.14,28.415,-0.458,27.622,34.605,11.356,14.903,15.338,11.082,12.628,11.778,14.285,37.157,7.473,19.138,10.651,35.485,5.793,15.338,15.404,17.957,15.186,12.572,22.111,7.269,3.249,22.959,17.508,13.432,11.322,0.122,11.121,17.895,0.16,16.696,7.255,6.383,12.599,24.887,23.653,2.604,19.566,3.493,25.945,3.975,7.064,10.312,2.73,4.967,5.38,-0.17,6.478,12.578,6.903,8.716,1.327,14.231,14.098,14.814,6.873,16.013,-1.914,-2.363,8.303,9.359,8.879,-5.735,11.222,15.751,7.168,6.003,21.965,-1.065,21.072,-1.476,-3.267,-3.3,22.961,10.719,20.423,-6.229,10.377,22.729,19.358,19.926,-0.542,20.63,27.236,16.65,3.974,5.514,-4.203,11.646,19.914,21.331,3.053,6.813,5.389,20.817,9.641,18.038,-0.594,-0.168,9.137,23.005,13.646,25.432,5.278,3.531,-1.83,3.814,4.168,19.353,22.368,17.815,3.774,12.303],[34.479,27.716,14.067,13.504,11.897,12.6,7.456,-2.103,9.307,17.567,25.638,35.401,9.65,4.815,15.489,16.352,12.536,23.076,17.341,11.885,3.415,0.871,21.196,17.108,5.83,1.927,5.413,24.155,10.104,6.298,1.706,13.884,6.094,13.474,9.633,-1.938,-2.55,7.804,17.105,-4.387,-1.591,6.993,9.653,9.653,-6.371,20.871,22.442,21.4,20.927,14.967,2.872,-3.893,5.613,26.446,20.801,8.255,3.768,11.985,-0.031,5.417,18.756,4.729,21.495,17.276,27.19,18.161,7.584,13.619,10.412,4.717,8.841,-2.364,33.217,15.335,8.506,25.47,27.76,-1.014,27.377,34.703,11.343,14.949,15.339,11.122,12.79,11.658,14.245,37.184,7.548,18.991,10.723,35.071,5.208,15.991,15.546,17.815,15.593,12.434,21.561,7.29,2.754,23.353,17.392,14.036,11.687,0.028,11.146,18.22,0.141,16.877,7.429,6.436,12.796,24.84,23.202,1.903,19.501,3.541,25.926,3.906,7.218,10.36,2.9,5.182,5.875,-0.174,6.584,12.3,6.915,8.782,1.821,14.231,14.439,14.718,7.221,16.149,-1.993,-2.593,8.317,9.376,8.912,-5.964,10.755,15.988,7.154,6.051,21.739,-1.167,20.773,-2.048,-3.482,-3.406,22.68,10.638,19.297,-6.438,10.652,22.684,19.148,19.853,-0.847,20.917,27.131,16.641,4.001,4.963,-3.959,12.018,19.816,21.611,3.026,6.802,5.699,20.867,9.461,17.877,-0.928,-0.589,8.692,23.379,13.798,25.638,5.282,3.811,-2.108,4.319,4.406,19.646,21.938,18.064,3.57,12.529],[34.338,27.995,14.214,13.413,11.829,12.442,7.312,-2.148,9.272,17.425,25.66,35.407,9.628,4.785,15.558,16.679,12.79,23.103,17.337,11.806,3.619,0.846,21.29,17.102,5.709,2.019,5.379,24.22,10.223,6.386,1.817,13.908,6.025,13.468,9.585,-1.96,-2.655,7.795,17.306,-4.402,-1.958,6.94,9.835,9.601,-6.295,20.517,22.485,21.504,21.043,14.581,2.979,-4.088,5.566,26.579,20.566,8.149,3.819,11.905,-0.199,5.631,18.815,4.708,21.645,17.171,27.001,18.099,7.496,13.196,10.293,4.211,9.07,-1.756,33.273,15.143,8.515,25.633,28.137,-2.136,27.001,35.385,11.124,14.856,15.378,11.096,12.734,11.243,14.035,37.34,7.934,19.108,11.195,35.368,5.049,16.849,15.863,17.615,15.809,12.49,22.221,7.152,2.997,23.143,18.126,14.239,11.336,-0.302,11.421,18.414,0.378,16.731,7.567,6.725,12.914,24.756,23.372,0.963,19.714,3.471,25.535,4.268,7.146,10.106,3.102,4.855,5.556,-0.094,6.59,12.311,7.14,8.751,1.764,14.165,14.279,14.803,6.882,16.288,-1.651,-2.52,8.282,9.45,8.71,-6.377,10.707,15.942,6.907,5.853,21.517,-1.463,20.523,-1.977,-3.638,-2.915,22.993,10.884,19.181,-6.173,10.624,22.842,18.873,20.043,-1.064,21.072,27.124,16.318,4.021,4.931,-3.889,12.869,19.539,21.022,2.995,7.21,5.621,21.49,9.12,18.028,-0.476,-0.615,8.807,23.454,14.103,25.952,5.293,3.936,-2.337,4.387,4.278,19.267,21.836,18.145,3.384,12.853],[34.207,28.262,14.273,13.306,11.814,12.166,7.26,-2.055,9.126,17.398,25.711,35.481,9.708,4.546,15.708,16.875,12.866,23.184,17.302,11.68,3.822,0.701,21.507,17.091,5.582,2.25,5.23,24.28,10.395,6.455,1.906,13.87,5.897,13.5,9.692,-1.964,-2.835,7.753,17.35,-4.348,-2.297,6.802,9.999,9.692,-6.355,20.189,22.581,21.807,21.146,14.33,2.976,-4.207,5.481,26.633,20.211,8.034,3.728,11.829,-0.155,5.802,18.78,4.641,21.991,17.197,26.775,17.864,7.388,12.595,10.383,4.542,9.002,-1.318,33.4,15.195,8.663,26.103,28.893,-2.617,26.663,35.015,10.908,15.4,15.387,11.073,12.871,11.29,13.843,37.254,7.739,18.829,11.082,35.844,5.616,17.253,15.964,17.812,15.66,12.882,22.174,6.831,3.225,23.127,18.56,14.288,11.479,-0.21,11.611,18.598,0.513,17.051,7.67,6.439,12.497,24.948,23.524,0.781,20.028,3.685,25.651,4.372,7.107,10.103,3.341,4.881,5.596,-0.312,6.217,12.313,7.415,8.546,1.733,14.213,13.931,14.893,6.837,16.39,-1.698,-1.865,8.304,9.926,8.582,-6.538,11.07,16.391,6.718,5.994,21.403,-1.512,20.541,-2.177,-3.815,-2.654,23.383,10.75,19.908,-5.975,10.142,22.701,18.37,20.198,-1.16,20.789,27.673,16.163,4.033,4.922,-4.203,12.582,19.758,20.321,2.768,7.394,5.399,21.28,8.804,18.251,-0.803,-1.059,9.057,23.317,13.583,26.149,5.519,3.872,-2.5,4.407,4.612,19.145,22.079,18.078,3.449,12.482],[34.081,28.435,14.317,13.235,11.812,11.962,7.252,-1.75,9.138,17.249,25.581,35.617,9.738,4.334,15.929,16.823,12.872,23.307,17.366,11.512,3.904,0.563,21.751,17.203,5.51,2.59,5.231,24.343,10.534,6.565,2.067,13.955,5.782,13.554,9.853,-1.95,-2.997,7.649,17.459,-4.299,-2.478,6.641,10.049,9.753,-6.448,19.905,22.585,22.213,21.246,14.215,2.821,-4.291,5.444,26.713,20.099,7.936,3.661,11.718,-0.203,5.868,18.611,4.479,22.25,17.37,26.759,17.891,7.486,12.688,10.248,4.198,9.064,-1.093,33.042,15.049,8.537,26.627,28.401,-2.449,26.716,34.534,10.69,16.691,15.132,11.037,12.738,11.609,13.592,37.16,7.336,18.712,10.86,35.821,6.006,16.962,15.792,17.469,15.254,12.68,22.327,6.924,3.964,23.498,17.742,14.475,11.687,0.054,11.554,18.368,0.759,17.255,7.664,6.293,12.6,25.109,23.66,1.041,19.96,3.818,26.168,4.432,6.914,10.564,3.249,4.973,5.944,-0.402,5.756,12.527,7.502,8.832,1.52,13.782,13.87,14.914,6.994,16.317,-2.401,-1.278,8.623,9.453,8.514,-6.685,11.271,16.406,6.973,5.735,21.787,-1.493,20.259,-2.092,-3.816,-2.987,23.759,10.609,19.726,-6.849,10.417,22.264,18.031,20.942,-1.565,20.938,27.553,15.828,4.049,4.574,-4.55,11.95,20.239,19.252,2.616,7.326,5.336,21.38,8.804,18.414,-0.555,-0.725,8.974,24.072,13.222,25.887,5.198,3.835,-2.534,4.633,4.564,19.085,21.7,18.214,3.364,11.957],[33.894,28.365,14.246,13.257,11.886,11.826,7.263,-1.335,9.22,17.171,25.412,35.658,9.643,4.174,16.099,16.679,12.902,23.401,17.323,11.421,4.013,0.697,21.871,17.336,5.602,2.904,5.403,24.452,10.625,6.804,2.229,14.065,5.669,13.475,10.037,-1.872,-3.224,7.61,17.519,-4.356,-2.463,6.43,9.909,9.749,-6.865,19.761,22.455,22.318,21.342,14.195,3.059,-4.364,5.388,26.753,20.006,7.836,3.673,11.391,-0.247,5.871,18.449,4.328,22.471,17.544,26.685,17.701,7.478,13.097,10.492,3.899,9.081,-1.196,32.651,15.102,8.089,26.415,28.16,-2.182,26.199,34.643,10.452,17.075,15.074,11.162,12.43,11.638,13.415,37.596,7.378,18.311,11.108,35.43,5.968,17.185,15.442,17.94,15.21,12.512,22.825,7.151,4.062,23.26,17.406,14.509,11.437,-0.765,11.539,18.092,1.279,17.18,7.759,6.475,12.581,25.15,23.949,1.296,20.297,3.776,26.247,3.79,7.038,10.71,3.226,5.167,5.533,-0.146,5.897,12.756,7.305,9.156,1.387,14.187,14.381,14.792,6.765,16.414,-2.658,-1.678,8.835,9.757,8.212,-5.965,11.094,16.396,6.976,5.536,22.165,-1.757,19.945,-1.925,-3.332,-3.191,24.121,10.627,19.467,-6.459,10.75,22.426,18.019,20.91,-1.66,20.721,26.817,15.883,4.115,4.946,-4.802,12.408,19.953,18.929,2.52,7.315,5.006,21.653,9.107,18.687,-0.557,-0.708,8.697,24.31,13.114,25.498,4.851,4.009,-2.482,4.795,3.935,19.132,21.753,18.742,2.563,12.087],[33.779,28.249,14.078,13.379,12.021,11.699,7.258,-0.955,9.235,17.193,25.122,35.698,9.579,4.04,16.165,16.6,13.008,23.362,17.191,11.347,3.977,0.732,21.937,17.52,5.841,3.034,5.666,24.475,10.66,7.102,2.181,14.149,5.613,13.439,10.156,-1.738,-3.346,7.589,17.581,-4.375,-2.377,6.213,9.833,9.745,-7.145,19.806,22.311,22.174,21.398,14.353,3.473,-4.341,5.412,26.594,19.958,7.762,3.531,11.048,-0.314,5.846,18.363,4.13,22.523,17.733,26.613,17.387,7.63,13.122,10.509,4.053,8.825,-1.1,32.154,15.174,7.856,26.026,28.283,-1.958,26.084,34.568,10.375,15.827,15.165,11.457,12.53,11.749,13.291,37.444,7.325,18.643,10.822,35.127,5.792,17.674,15.421,18.175,15.032,12.583,22.934,7.105,3.364,23.069,17.798,14.642,11.354,-0.075,11.673,17.882,1.829,16.964,7.901,6.622,12.557,25.196,23.744,1.961,20.325,3.951,25.997,4.529,7.502,10.174,4.132,5.48,5.768,0.069,6.245,12.776,7.063,9.012,1.526,14.52,14.819,14.341,6.81,16.692,-2.497,-2.216,8.773,10.245,8.014,-6.406,10.73,16.33,6.633,5.611,21.882,-1.952,19.752,-2.163,-3.268,-3.26,23.833,10.801,19.585,-6.818,10.402,22.885,18.117,20.84,-1.077,20.518,26.619,16.136,4.437,5.028,-5.013,12.188,19.145,19.1,2.509,7.136,4.901,22.034,9.307,18.697,-0.956,-1.145,8.463,24.206,13.074,25.845,5.08,4.534,-2.539,5.028,4.054,19.247,21.768,18.766,2.874,12.039],[33.714,28.188,14.059,13.404,12.175,11.651,7.18,-0.612,9.224,17.255,24.846,35.631,9.479,4.01,16.043,16.427,13.137,23.312,17.2,11.378,3.771,0.723,21.974,17.631,6.144,3.15,6.016,24.364,10.568,7.351,2.099,14.211,5.557,13.478,10.086,-1.584,-3.213,7.547,17.57,-4.223,-2.284,6.192,9.913,9.654,-7.386,19.985,22.313,21.999,21.399,14.581,3.614,-4.264,5.629,26.376,20.045,7.726,3.361,10.655,-0.49,5.872,18.238,3.998,22.367,17.779,26.303,17.185,7.683,12.973,10.313,3.846,8.794,-0.777,32.099,15.23,7.954,25.567,28.422,-2.081,25.737,34.462,10.159,15.051,15.344,11.33,12.57,11.721,13.129,37.519,7.642,18.849,10.898,34.944,5.696,17.735,15.346,18.028,15.012,12.734,22.768,7.52,3.816,23.294,17.886,14.739,11.014,0.968,12.045,17.872,1.924,16.729,7.895,6.983,12.11,24.891,23.618,2.004,20.417,3.856,26.041,5.209,7.872,10.297,4.027,5.284,6.174,-0.044,6.051,12.693,6.957,9.071,1.497,14.189,14.58,14.268,7.118,17.023,-2.57,-2.293,9.036,9.569,8.05,-7.276,11.052,16.32,6.637,5.125,22.119,-1.616,19.394,-2.092,-3.449,-3.321,23.541,10.891,19.586,-7.136,10.543,22.733,18.394,20.843,-0.902,20.479,26.609,16.234,5.006,4.715,-4.609,11.642,19.023,19.571,2.152,7.448,4.779,22.463,9.112,19.053,-0.467,-0.905,8.34,24.048,13.367,26.013,5.291,4.444,-2.416,5.23,4.166,19.011,21.75,18.521,3.375,11.675],[33.744,28.086,14.16,13.211,12.231,11.617,7.138,-0.297,9.153,17.179,24.677,35.511,9.474,4.045,15.819,16.283,13.163,23.345,17.209,11.261,3.771,0.737,21.96,17.473,6.474,3.2,6.194,24.308,10.599,7.375,2.071,14.188,5.419,13.413,10.176,-1.564,-2.968,7.563,17.552,-4.058,-2.073,6.252,9.9,9.818,-7.603,20.095,22.465,21.885,21.319,14.749,3.587,-4.138,5.827,26.188,20.099,7.722,3.199,10.26,-0.604,6.109,18.149,3.958,22.225,17.82,26.33,17.488,7.316,13.088,10.222,3.576,8.516,-0.552,32.159,15.091,7.956,25.318,28.709,-1.862,25.159,34.583,10.385,15.015,15.233,11.465,12.709,11.733,13.148,37.33,7.636,18.926,10.947,35.193,5.384,17.07,15.659,18.176,15.005,12.705,22.529,8.049,3.372,23.598,18.049,14.811,11.046,1.287,12.132,17.866,1.729,17.018,8.324,7.1,12.389,24.95,23.83,2.314,20.399,3.59,26.097,4.275,7.888,10.34,3.646,5.561,5.827,0.248,5.826,12.581,7.099,9.438,1.46,13.87,14.254,14.92,7.095,17.014,-2.602,-1.577,8.753,9.59,7.813,-7.645,11.206,16.519,6.666,5.276,22.101,-1.463,19.502,-2.079,-3.241,-2.75,23.551,10.136,19.776,-6.997,10.927,22.395,18.849,20.896,-1.445,20.576,27.055,16.516,4.851,4.817,-4.088,11.0,19.592,20.29,2.11,7.194,4.712,21.987,8.752,19.075,-0.928,-1.118,8.599,24.04,13.468,25.523,5.394,4.365,-2.345,5.004,4.381,18.341,21.978,18.48,3.317,11.407],[33.734,28.027,14.254,12.984,12.343,11.55,7.021,-0.134,9.059,17.137,24.748,35.369,9.418,4.087,15.564,16.262,13.047,23.375,17.36,11.153,3.516,0.948,21.963,17.238,6.601,3.221,6.14,24.272,10.848,7.239,1.981,14.126,5.308,13.358,10.38,-1.522,-3.007,7.576,17.513,-3.932,-2.014,6.272,9.704,10.305,-7.617,20.216,22.608,21.97,21.306,14.835,3.477,-3.925,5.946,26.176,19.926,7.753,3.02,10.018,-0.798,6.253,18.142,3.99,22.161,17.951,26.105,17.185,7.232,12.88,10.132,3.713,8.804,-0.239,32.761,14.74,8.217,25.378,28.839,-1.718,25.561,34.982,10.54,15.436,15.189,11.842,13.023,11.894,13.176,37.174,6.912,18.813,10.86,35.326,5.478,16.597,15.586,17.75,14.859,12.502,22.221,7.918,3.669,23.381,18.006,14.691,11.311,0.905,11.875,17.585,1.686,17.351,8.246,7.119,12.395,25.147,24.029,2.577,20.209,3.619,25.886,4.766,7.888,10.317,3.983,5.745,6.066,0.255,5.764,12.711,6.791,9.682,1.781,13.416,14.42,14.918,6.878,16.515,-2.214,-1.777,8.777,9.593,8.123,-7.451,11.373,16.186,7.092,5.816,21.71,-1.603,19.535,-1.731,-3.005,-2.431,23.633,10.393,19.836,-7.179,10.747,22.53,18.779,20.524,-0.804,20.888,27.236,16.765,4.495,5.208,-4.371,10.844,19.507,20.06,2.273,7.694,4.709,21.406,8.845,18.742,-1.485,-1.218,8.732,23.91,13.995,25.366,5.276,4.669,-2.192,5.356,4.268,18.56,21.828,18.567,2.874,10.99],[33.742,27.971,14.385,12.8,12.72,11.622,6.841,-0.221,9.008,17.053,24.908,35.289,9.468,4.212,15.368,16.316,12.796,23.276,17.537,11.137,3.343,1.132,21.901,17.043,6.618,3.504,6.074,24.3,11.075,7.06,1.982,14.022,5.228,13.279,10.585,-1.534,-3.282,7.708,17.202,-3.853,-1.918,6.407,9.551,10.569,-7.595,20.198,22.732,21.927,21.308,15.036,3.409,-3.779,5.962,26.316,19.714,7.831,2.66,9.964,-1.034,6.431,18.076,4.072,22.108,18.027,26.301,16.829,7.365,12.595,9.881,3.973,8.463,0.453,33.147,14.586,7.742,25.731,28.164,-1.596,25.771,34.769,10.113,15.947,15.32,11.797,12.88,11.984,13.135,37.07,7.683,18.882,10.943,34.921,5.903,16.513,15.758,17.704,14.771,12.479,22.484,7.916,3.425,23.214,18.063,14.553,11.123,0.735,12.021,17.363,2.193,16.947,7.726,7.257,12.309,24.901,23.745,3.019,20.248,3.529,25.906,4.573,7.871,10.888,4.07,5.445,6.229,0.054,5.76,12.589,6.031,9.453,1.47,13.374,14.582,14.743,6.925,16.735,-2.423,-1.393,9.422,9.675,8.324,-7.192,11.696,16.086,6.821,5.614,21.61,-1.684,20.116,-1.322,-3.191,-2.597,23.45,10.742,19.633,-6.93,11.557,22.736,18.385,20.669,-0.891,20.929,26.806,16.946,4.5,5.398,-4.589,10.849,19.201,19.42,2.227,7.817,4.649,21.589,9.147,18.565,-1.251,-1.3,8.858,23.893,14.481,25.401,5.765,4.582,-2.011,5.845,4.057,18.831,21.603,19.023,2.819,10.807],[33.816,27.961,14.454,12.756,13.135,11.756,6.795,-0.219,8.939,16.945,25.028,35.292,9.607,4.348,15.288,16.411,12.515,23.075,17.64,11.099,3.265,1.197,21.746,16.873,6.651,3.859,5.929,24.252,11.254,6.777,1.963,13.775,5.22,13.153,10.759,-1.482,-3.494,7.858,16.989,-3.828,-1.795,6.552,9.518,10.651,-7.535,20.105,22.743,21.906,21.242,15.375,3.428,-3.753,6.034,26.409,19.615,8.108,2.378,9.902,-1.22,6.582,17.892,4.221,22.09,17.99,26.433,16.529,7.166,12.542,10.246,4.092,8.334,0.055,32.99,14.613,7.724,26.119,27.823,-1.524,24.898,34.409,10.185,15.881,15.453,12.305,13.258,12.585,12.993,37.019,7.016,18.711,10.534,34.406,6.174,16.612,16.128,17.917,14.655,12.291,22.508,8.184,2.97,23.005,18.384,14.31,11.397,0.962,12.331,17.569,2.196,16.456,7.81,7.299,12.572,24.823,23.551,2.97,20.189,3.764,25.836,3.791,7.733,10.778,4.584,5.802,5.823,0.349,5.592,12.531,6.064,9.662,1.219,13.615,14.777,14.634,7.279,16.789,-3.182,-1.202,9.516,9.483,8.006,-6.815,11.369,15.677,7.121,5.253,22.173,-1.911,20.862,-1.519,-3.263,-2.815,23.345,10.653,19.561,-7.101,11.876,22.812,18.307,20.278,-1.292,20.939,26.599,17.087,4.683,4.953,-4.408,10.884,19.156,19.153,2.423,7.507,5.171,21.685,9.615,19.172,-0.975,-1.455,8.803,23.894,14.298,25.798,6.139,4.267,-1.891,5.634,4.095,18.6,21.432,18.978,2.315,11.116],[33.874,27.981,14.539,12.801,13.565,11.919,6.733,-0.234,8.859,16.855,24.917,35.266,9.637,4.483,15.18,16.511,12.282,22.861,17.724,11.164,3.07,1.163,21.592,16.725,6.624,4.059,5.966,24.072,11.297,6.596,1.857,13.522,5.177,13.12,10.897,-1.375,-3.596,7.992,16.865,-3.752,-1.823,6.503,9.52,10.633,-7.41,20.135,22.652,22.072,21.147,15.636,3.5,-3.71,6.115,26.484,19.573,8.367,2.295,9.904,-1.227,6.627,17.714,4.333,21.967,17.952,26.643,16.064,7.176,12.415,10.245,4.041,8.618,-0.364,32.598,14.571,7.872,26.163,28.33,-1.74,25.329,34.782,10.981,15.734,15.705,12.886,13.311,12.321,13.397,37.122,7.197,18.627,10.691,34.379,6.194,16.611,16.169,17.644,14.904,12.02,21.847,7.897,3.456,22.473,18.331,14.027,11.882,1.149,12.285,17.603,2.677,16.366,7.38,7.381,12.267,24.709,23.599,2.873,19.884,3.566,25.581,4.354,7.742,11.038,4.997,5.405,5.368,0.274,5.812,11.886,6.705,10.318,1.192,13.45,14.357,14.629,7.57,16.245,-3.442,-1.757,9.258,9.46,8.341,-6.947,11.543,15.731,7.288,5.752,22.5,-1.797,20.954,-1.58,-2.818,-2.495,23.053,10.367,19.859,-7.444,11.67,22.976,18.329,20.232,-0.961,20.858,27.15,17.23,5.123,5.191,-4.499,10.88,19.273,18.966,2.758,7.933,5.49,21.173,9.87,19.398,-1.344,-1.444,8.953,23.807,14.274,25.771,6.057,3.983,-1.976,5.456,3.671,17.98,21.474,18.452,1.811,10.883],[33.883,28.099,14.596,12.794,13.606,12.186,6.77,-0.253,8.812,16.832,24.681,35.19,9.714,4.588,15.168,16.615,12.252,22.747,17.697,11.318,3.181,1.034,21.39,16.554,6.549,4.109,6.05,23.991,11.249,6.555,1.647,13.26,5.132,13.201,11.011,-1.423,-3.594,8.133,16.726,-3.546,-1.95,6.61,9.469,10.735,-7.386,20.207,22.577,22.294,21.06,15.661,3.658,-3.673,6.21,26.57,19.479,8.402,2.3,10.015,-1.098,6.646,17.608,4.393,21.675,17.843,26.594,15.887,7.166,12.622,9.736,4.21,8.542,-0.318,32.376,14.63,7.218,25.443,28.356,-1.767,25.84,34.887,11.279,15.198,16.003,13.058,13.205,12.407,13.88,37.046,7.524,18.32,11.02,35.242,5.866,16.277,16.908,17.746,14.841,12.072,21.658,7.946,3.47,22.293,18.469,13.988,11.284,1.552,12.311,17.563,2.429,16.814,6.574,7.284,12.749,24.397,23.448,2.574,19.584,3.257,25.735,4.016,8.012,11.221,4.735,5.355,5.383,0.255,5.628,11.833,6.787,10.634,1.219,13.353,14.156,14.861,7.196,15.847,-2.932,-1.072,9.331,9.451,8.36,-7.058,11.653,15.366,7.518,5.827,22.392,-1.932,20.353,-1.478,-2.865,-2.315,22.983,10.288,19.962,-6.861,11.697,22.724,18.354,20.487,-0.971,20.696,27.461,17.335,4.939,5.439,-4.559,10.9,19.289,19.22,2.549,7.889,5.074,21.07,9.902,19.32,-1.413,-1.511,9.302,23.364,14.479,25.526,5.932,4.141,-1.764,6.326,3.703,17.648,21.422,18.559,2.036,10.701],[33.897,28.093,14.651,12.792,13.48,12.45,6.689,-0.244,8.769,16.956,24.402,35.218,9.817,4.612,15.339,16.714,12.422,22.799,17.854,11.431,3.297,0.889,21.12,16.526,6.518,3.972,6.167,24.093,11.198,6.525,1.429,13.068,5.062,13.239,11.137,-1.437,-3.571,8.234,16.544,-3.531,-2.129,6.712,9.33,10.878,-7.352,20.207,22.51,22.47,20.974,15.596,3.75,-3.526,6.246,26.591,19.408,8.408,2.444,10.156,-0.897,6.751,17.471,4.282,21.504,17.74,26.47,15.77,6.993,12.777,9.885,4.197,8.826,-0.326,32.535,14.528,7.131,24.75,28.752,-1.276,25.975,34.555,11.079,14.423,15.8,12.899,13.431,12.319,13.951,36.8,6.954,18.369,10.864,34.994,6.037,15.847,16.633,17.486,14.995,12.455,21.898,8.195,3.599,22.33,18.41,14.307,11.064,1.701,11.419,17.44,2.377,16.589,6.38,7.12,12.796,24.629,23.346,2.23,19.33,3.15,25.748,4.049,7.902,10.489,4.678,5.922,6.03,0.053,5.622,11.857,6.519,10.484,1.145,13.394,14.415,14.843,7.155,16.124,-2.524,-0.727,9.696,9.155,8.386,-6.947,11.567,15.063,7.873,5.547,22.149,-2.546,19.855,-1.807,-2.663,-2.297,23.642,10.512,19.818,-6.864,12.068,22.305,18.589,20.716,-1.23,20.822,27.399,17.436,4.855,5.182,-4.281,11.237,18.887,19.85,2.45,7.637,4.544,21.012,9.648,18.514,-0.852,-1.21,9.432,23.379,14.813,25.954,6.17,4.717,-2.185,5.76,3.928,17.832,21.036,18.833,2.034,10.979],[33.749,28.023,14.76,12.839,13.512,12.528,6.447,-0.152,8.675,17.061,24.13,35.201,9.872,4.531,15.611,16.834,12.677,22.967,17.884,11.463,3.383,0.81,20.81,16.539,6.607,3.828,6.271,24.224,10.882,6.529,1.288,13.035,5.043,13.274,11.161,-1.481,-3.657,8.303,16.473,-3.594,-2.322,6.628,9.146,10.993,-7.107,20.177,22.489,22.697,20.843,15.589,3.766,-3.259,6.298,26.669,19.352,8.393,2.64,10.285,-0.512,6.748,17.303,4.092,21.517,17.656,26.274,16.212,7.002,12.75,10.073,3.978,8.758,-0.857,32.794,14.56,7.211,24.968,28.994,-1.522,25.773,34.6,11.009,13.974,15.53,12.754,13.448,12.164,13.806,36.948,7.524,18.642,10.974,34.3,6.254,15.531,16.465,17.198,15.026,12.702,21.971,8.234,3.244,22.754,18.771,14.439,11.862,1.631,11.869,16.988,2.228,16.658,6.957,7.01,12.339,24.737,23.954,1.929,19.285,2.974,25.464,4.816,8.03,11.164,4.66,5.857,6.05,0.169,5.96,11.378,5.955,10.322,0.705,13.151,13.996,14.854,7.711,16.21,-2.619,-1.064,9.654,9.237,8.495,-6.848,11.742,14.973,7.469,5.814,22.06,-2.452,19.926,-2.459,-2.338,-2.461,23.939,10.348,19.725,-7.41,12.153,21.79,18.574,20.932,-1.523,20.946,27.307,17.465,4.894,5.148,-4.38,11.177,18.693,20.09,2.169,7.837,5.131,21.299,9.717,17.789,-0.864,-1.199,9.217,23.352,14.718,26.126,6.235,4.704,-2.653,5.501,4.234,17.606,21.003,18.503,1.898,11.149],[33.63,27.973,14.768,12.92,13.652,12.247,6.348,-0.386,8.516,17.122,24.057,35.175,9.964,4.315,15.834,16.871,12.785,23.144,17.832,11.577,3.559,0.775,20.573,16.544,6.774,3.879,6.133,24.278,10.898,6.704,1.197,13.025,5.117,13.374,11.027,-1.461,-3.69,8.401,16.488,-3.602,-2.577,6.573,8.934,11.009,-6.78,20.188,22.462,22.849,20.68,15.509,3.656,-3.114,6.41,26.739,19.284,8.488,2.777,10.225,-0.28,6.691,17.14,4.247,21.588,17.555,26.224,16.308,7.027,12.879,9.582,3.719,8.565,-0.976,32.473,14.75,7.334,25.2,28.683,-1.759,24.963,34.545,11.322,14.247,15.539,12.582,13.555,12.518,14.023,36.977,6.674,18.929,11.021,34.1,6.077,15.453,16.581,17.925,15.217,12.588,21.686,8.463,3.347,23.229,18.405,14.537,11.661,1.468,12.262,16.994,2.278,16.739,7.283,7.323,12.794,24.926,24.453,1.929,19.012,2.229,25.795,4.649,8.042,10.793,4.679,5.755,5.181,0.175,5.747,11.35,6.046,10.315,0.597,13.318,13.669,15.014,7.723,16.051,-2.901,-1.56,9.422,8.814,8.149,-6.223,11.853,15.151,7.216,5.569,22.167,-2.207,20.173,-2.762,-2.533,-2.642,23.776,10.499,19.525,-6.964,12.576,21.524,18.37,21.082,-1.813,21.275,26.831,17.231,5.065,5.237,-4.251,11.131,18.801,19.226,2.351,8.095,5.091,21.387,10.113,18.302,-0.007,-1.291,8.906,23.458,14.676,26.218,6.099,4.181,-2.223,5.848,4.462,17.329,21.21,18.314,2.015,11.123],[33.752,27.922,14.651,13.013,13.687,11.975,6.292,-0.737,8.189,17.175,24.028,35.014,10.0,3.942,15.87,16.866,12.619,23.345,17.824,11.828,3.669,0.869,20.492,16.71,6.865,4.103,5.894,24.323,11.158,6.957,1.014,13.027,5.249,13.443,10.907,-1.468,-3.667,8.463,16.52,-3.648,-2.849,6.416,8.753,11.164,-6.374,20.261,22.51,22.892,20.597,15.334,3.455,-2.998,6.437,26.684,19.186,8.602,2.762,10.039,-0.376,6.706,17.147,4.693,21.643,17.687,26.011,16.301,6.609,12.828,9.549,3.886,8.806,-0.985,32.307,14.698,7.435,25.48,28.423,-1.676,24.488,34.568,11.154,14.84,15.789,12.648,13.4,12.73,13.723,37.026,6.261,18.985,11.104,34.758,5.761,15.873,16.344,17.739,15.353,12.207,21.489,8.51,4.105,23.123,18.368,14.499,11.19,0.8,11.485,17.333,2.308,16.699,7.259,7.545,12.805,25.145,24.577,2.055,18.755,2.191,25.899,4.749,7.76,10.41,4.512,5.326,5.353,0.269,5.598,11.414,6.847,10.355,0.568,13.749,14.049,14.972,7.374,15.885,-3.416,-0.797,9.305,8.943,8.141,-6.686,11.97,15.047,7.96,5.346,21.855,-1.944,20.112,-2.544,-2.883,-2.266,23.81,10.009,19.233,-6.01,12.142,21.681,18.67,21.058,-1.859,21.216,26.771,17.067,5.054,5.893,-4.182,11.248,18.676,18.099,2.798,8.118,5.43,21.153,10.227,19.223,-0.602,-0.875,9.025,23.395,14.254,26.248,6.346,4.037,-1.729,6.144,4.25,17.442,21.001,18.353,2.238,10.984],[33.938,27.777,14.514,13.048,13.559,11.827,6.248,-0.8,7.885,17.251,23.896,34.946,9.921,3.752,15.88,16.863,12.439,23.3,17.808,11.957,3.786,0.992,20.459,16.849,6.868,4.21,5.637,24.407,11.182,7.249,0.867,12.947,5.487,13.469,10.902,-1.349,-3.67,8.579,16.478,-3.67,-2.985,6.24,8.543,11.279,-6.055,20.345,22.598,22.854,20.598,15.11,3.321,-2.879,6.464,26.551,18.96,8.722,2.687,9.95,-0.436,6.973,17.313,5.071,21.648,17.942,26.011,16.44,6.323,12.889,9.403,3.456,9.154,-1.927,32.594,14.706,7.295,25.177,28.309,-1.946,25.005,35.067,10.686,14.766,15.993,12.72,13.3,12.568,13.34,36.639,6.719,19.02,11.271,34.973,5.493,16.686,16.523,17.446,15.595,11.851,21.454,8.545,3.77,23.124,18.39,14.324,12.045,0.083,11.749,17.161,2.364,16.879,6.844,7.256,12.878,25.121,24.347,2.366,18.804,2.354,26.001,5.272,7.399,11.196,4.589,5.38,6.275,0.009,5.965,11.639,6.911,10.382,-0.31,13.687,14.184,15.181,7.395,16.036,-3.721,-0.802,9.209,8.713,8.024,-6.519,12.338,14.902,8.123,5.517,21.708,-1.863,20.271,-2.533,-2.951,-2.177,23.74,9.865,19.138,-5.187,12.432,22.045,18.65,20.992,-2.093,20.964,26.979,16.773,4.463,5.775,-4.041,11.088,18.835,18.317,3.275,7.799,5.505,21.213,10.011,19.192,-0.95,-1.187,9.64,23.258,14.114,25.904,6.188,4.092,-1.674,5.815,4.193,17.85,20.621,18.765,1.983,10.768],[34.152,27.543,14.472,13.022,13.512,11.797,6.302,-0.841,7.696,17.322,23.828,34.997,9.812,3.722,15.936,16.861,12.427,22.938,17.819,12.085,3.975,0.992,20.47,16.903,6.84,4.006,5.45,24.505,11.204,7.437,0.684,12.857,5.859,13.52,10.913,-1.275,-3.697,8.679,16.467,-3.67,-3.066,6.159,8.258,11.382,-5.748,20.284,22.605,22.759,20.538,15.007,3.207,-2.808,6.36,26.329,18.804,8.858,2.622,9.983,-0.452,7.18,17.701,5.208,21.551,18.102,25.852,16.585,6.218,13.122,8.838,3.185,9.196,-2.132,32.658,14.561,7.029,24.492,27.849,-1.599,24.955,35.191,10.928,14.626,15.905,12.404,13.229,12.302,13.052,36.689,6.868,19.285,11.121,34.653,5.585,16.992,16.719,17.989,16.069,12.175,21.699,8.321,3.437,23.12,17.983,14.082,12.579,0.409,11.907,16.998,2.503,16.811,7.019,7.586,13.181,24.741,23.807,2.521,18.997,2.001,26.066,4.919,7.241,11.394,4.71,5.829,7.397,0.207,6.132,11.258,6.24,10.677,-0.594,13.621,13.746,15.221,7.877,15.796,-3.691,-0.77,9.207,8.007,8.043,-5.652,12.251,14.991,8.085,5.376,22.078,-1.923,20.209,-2.635,-2.884,-2.481,23.586,9.829,19.748,-5.193,12.617,22.431,18.46,20.979,-2.26,20.835,26.865,16.617,4.204,5.62,-3.589,10.727,19.123,18.658,3.272,8.456,5.587,21.465,9.924,18.866,-0.185,-1.561,10.035,23.406,13.866,25.568,6.104,4.2,-1.754,6.13,4.338,17.964,20.584,18.94,1.723,10.777],[34.362,27.198,14.52,12.966,13.653,11.9,6.454,-0.892,7.433,17.467,23.69,35.175,9.874,3.592,15.998,16.811,12.505,22.62,17.836,12.353,3.993,0.975,20.575,16.982,6.778,3.821,5.517,24.552,11.176,7.584,0.413,12.685,6.055,13.539,10.799,-1.221,-3.761,8.858,16.446,-3.671,-3.148,6.224,7.996,11.337,-5.395,20.128,22.541,22.721,20.564,14.917,3.097,-2.74,6.232,26.077,18.844,9.008,2.575,10.013,-0.296,7.187,18.114,5.166,21.576,18.149,25.725,16.362,5.937,12.884,9.045,3.506,8.431,-1.722,32.806,14.714,7.123,24.379,27.724,-1.671,25.065,34.762,11.5,14.44,15.394,12.458,13.184,12.965,13.488,36.873,6.547,19.296,10.828,34.403,5.381,17.188,16.712,18.049,16.535,12.91,21.677,8.059,3.606,22.804,17.95,14.215,11.93,0.792,11.95,17.179,2.273,16.976,7.955,7.852,13.096,24.273,23.234,2.564,18.912,1.544,25.896,5.307,7.304,11.332,4.187,5.451,7.334,0.304,6.721,10.993,6.582,10.634,-0.631,13.497,13.528,15.095,8.104,15.698,-3.723,-0.722,9.015,7.946,7.931,-5.608,12.147,15.1,8.03,5.273,22.423,-1.961,20.166,-2.644,-2.582,-3.051,23.605,9.495,19.74,-5.594,12.501,22.131,18.444,20.823,-2.62,20.871,26.283,16.763,4.524,5.557,-3.51,10.595,19.6,19.091,3.343,8.314,5.764,21.226,9.845,19.147,-0.384,-1.346,9.973,23.371,14.1,25.924,6.464,3.994,-1.573,6.508,4.266,17.835,20.624,18.045,1.886,11.218],[34.581,26.98,14.512,12.991,13.925,12.218,6.549,-0.885,7.289,17.48,23.616,35.44,9.858,3.288,16.127,16.728,12.701,22.455,17.864,12.551,3.924,0.945,20.705,17.072,6.777,3.647,5.732,24.525,11.09,7.769,0.141,12.565,6.262,13.547,10.634,-1.2,-3.882,9.139,16.387,-3.717,-3.192,6.457,7.858,11.119,-5.335,19.971,22.323,22.695,20.796,14.919,3.018,-2.661,6.165,25.824,18.942,9.098,2.588,10.074,-0.053,6.985,18.261,5.008,21.852,18.111,25.103,16.674,5.762,12.712,8.898,3.362,8.42,-1.478,32.735,14.723,7.723,24.864,27.441,-2.387,24.624,34.934,11.301,14.328,15.262,12.833,12.934,13.26,13.945,37.121,6.65,19.325,10.778,34.673,4.851,16.898,16.619,17.679,16.543,12.893,21.524,8.382,3.912,22.513,18.338,14.238,11.742,1.262,11.862,17.511,1.908,17.149,8.177,7.294,13.077,24.056,23.183,2.403,18.989,1.23,25.806,5.107,7.608,11.011,3.817,5.162,6.43,0.195,7.032,10.926,6.959,10.014,-0.71,13.072,13.243,15.183,8.152,15.965,-3.488,-0.49,8.939,8.064,8.088,-5.569,11.881,14.859,8.339,5.365,22.386,-2.267,20.299,-2.841,-2.518,-2.903,23.737,9.546,19.977,-5.696,12.271,21.638,18.145,20.872,-3.259,20.882,26.063,16.757,4.445,5.484,-3.731,10.956,20.004,18.892,3.219,8.402,5.603,21.058,10.25,19.125,-0.548,-0.86,9.802,23.655,13.98,25.752,6.221,3.419,-1.551,5.931,3.986,18.375,20.83,18.04,2.071,11.175],[34.725,26.824,14.412,13.004,14.123,12.575,6.674,-1.016,7.334,17.432,23.726,35.709,9.85,2.969,16.14,16.733,12.919,22.541,17.965,12.628,3.763,0.89,20.759,17.084,6.764,3.461,5.845,24.477,10.926,7.85,0.022,12.486,6.42,13.454,10.494,-1.181,-4.009,9.283,16.336,-3.783,-3.237,6.798,7.945,10.854,-5.53,19.89,22.012,22.729,21.079,14.847,2.859,-2.652,6.015,25.564,19.009,9.161,2.597,10.258,0.14,6.777,18.264,4.852,22.306,18.021,24.922,16.859,5.665,12.819,8.384,2.755,9.041,-1.548,32.989,14.825,7.755,25.065,27.558,-2.363,23.943,35.496,11.517,14.332,15.27,13.199,12.978,12.954,14.375,37.409,6.954,19.258,11.061,35.561,4.661,16.85,16.806,17.877,16.382,12.157,22.025,8.465,3.818,22.176,18.281,14.602,12.358,1.897,11.401,17.146,1.709,16.846,7.831,7.249,13.352,24.09,23.44,1.807,19.163,1.064,26.153,4.476,7.768,10.862,4.339,5.785,6.061,-0.015,7.26,11.379,6.495,9.788,-0.881,13.364,13.426,15.117,8.456,15.809,-3.594,-0.238,9.178,7.704,8.349,-5.717,11.79,14.735,8.588,5.594,22.431,-2.374,20.023,-2.94,-2.743,-3.041,23.747,9.172,20.029,-5.31,12.398,21.24,18.149,21.011,-3.53,20.682,26.009,16.582,4.455,5.629,-3.972,11.353,19.814,18.576,2.747,7.665,5.486,21.536,10.622,19.057,-0.055,-0.638,9.405,23.95,13.946,25.25,5.852,3.29,-2.014,5.559,4.299,18.655,20.852,18.468,1.912,10.914],[34.913,26.677,14.241,13.044,14.108,12.936,6.919,-1.083,7.262,17.352,23.726,35.942,10.033,2.699,16.012,16.753,13.037,22.644,18.147,12.687,3.553,0.88,20.804,17.128,6.64,3.345,5.986,24.491,10.767,7.852,-0.096,12.491,6.455,13.383,10.515,-1.349,-4.095,9.339,16.289,-3.773,-3.347,7.101,7.926,10.847,-5.836,19.913,21.671,22.836,21.208,14.674,2.732,-2.837,5.774,25.379,19.052,9.129,2.601,10.471,0.23,6.632,18.309,4.876,22.627,17.955,25.251,16.4,5.502,13.303,8.761,2.339,9.005,-1.82,33.17,14.478,7.241,25.073,27.528,-2.323,24.703,35.774,12.408,14.253,15.448,13.192,12.704,13.198,14.73,37.821,7.315,19.226,11.156,35.916,4.531,17.142,17.086,18.127,16.408,12.688,22.048,8.056,3.049,22.113,18.333,14.871,12.787,1.43,11.102,16.711,1.767,17.101,7.517,7.584,13.54,24.314,23.776,1.238,19.092,1.414,26.295,4.713,7.878,10.843,4.178,5.768,6.309,-0.062,7.442,11.756,6.892,9.78,-1.05,13.622,13.512,14.976,8.656,15.512,-3.611,-0.569,8.961,7.597,8.914,-5.778,11.906,14.975,8.539,6.088,22.932,-2.402,19.789,-2.494,-3.26,-3.144,23.869,9.26,20.11,-5.37,11.971,21.294,18.177,20.989,-3.013,20.038,25.55,16.448,4.573,5.266,-3.559,11.554,19.878,18.306,2.796,7.288,5.822,22.105,10.732,19.341,0.176,-1.087,9.507,24.559,13.608,25.322,6.031,3.231,-1.979,5.231,4.375,18.319,20.718,18.099,1.717,11.068],[35.138,26.646,14.125,13.184,13.959,13.1,7.136,-1.129,7.258,17.165,23.854,36.126,10.246,2.5,15.758,16.766,13.081,22.627,18.251,12.847,3.657,0.738,20.855,17.37,6.576,3.212,5.891,24.62,10.652,7.867,-0.135,12.561,6.468,13.329,10.449,-1.657,-3.976,9.332,16.308,-3.814,-3.336,7.492,7.779,10.853,-5.929,19.924,21.456,23.024,21.26,14.436,2.563,-3.126,5.534,25.323,18.916,9.078,2.582,10.78,0.056,6.542,18.42,5.174,22.614,17.957,24.86,16.206,5.764,13.566,8.676,2.505,9.156,-2.051,33.382,14.857,7.421,24.758,27.114,-2.501,25.137,35.405,12.955,14.258,15.364,13.023,12.57,12.99,14.956,37.893,7.877,19.121,11.337,35.332,4.294,17.089,17.265,18.127,16.375,13.295,21.863,8.094,3.383,22.689,18.741,14.839,12.485,0.681,11.544,16.834,1.44,17.286,7.817,7.346,13.3,24.023,23.806,1.606,19.082,1.522,26.419,4.79,7.705,11.056,3.869,5.46,6.351,-0.271,7.482,11.912,7.137,10.098,-1.298,13.329,12.873,15.056,8.846,15.4,-3.274,-0.777,8.699,7.911,9.081,-6.296,11.685,14.976,8.337,6.64,23.112,-2.451,19.888,-2.275,-3.28,-2.601,23.931,9.441,20.351,-5.601,12.059,21.384,18.272,21.224,-2.674,19.694,25.202,16.335,4.201,5.023,-3.685,11.51,20.029,18.869,3.379,8.148,5.95,22.111,10.277,19.294,-0.232,-1.148,9.998,24.416,13.431,24.926,6.042,2.976,-1.899,5.558,4.009,18.45,20.825,18.442,1.406,11.187],[35.188,26.592,14.074,13.584,13.725,12.838,7.219,-1.36,7.411,16.889,23.991,36.075,10.431,2.393,15.45,16.78,13.044,22.569,18.276,12.913,4.013,0.546,20.835,17.436,6.646,3.176,5.577,24.776,10.705,7.807,-0.15,12.584,6.51,13.158,10.293,-1.798,-3.725,9.215,16.363,-3.848,-3.164,7.892,7.682,10.763,-5.726,19.935,21.616,23.172,21.271,14.301,2.425,-3.375,5.39,25.146,18.97,9.145,2.522,11.002,-0.03,6.647,18.552,5.404,22.34,18.076,24.814,16.242,5.977,13.334,8.774,2.649,9.293,-2.113,33.312,15.4,8.14,24.414,26.836,-2.424,25.411,35.574,12.429,14.083,15.025,12.625,12.823,12.895,14.698,37.822,8.148,18.766,11.779,35.477,4.007,16.961,17.258,18.559,16.083,13.211,22.036,8.282,4.138,23.244,18.604,14.589,12.153,1.348,11.5,17.441,1.511,17.496,7.83,6.973,13.439,23.872,23.617,1.305,19.088,1.58,26.492,4.797,7.328,10.782,3.859,5.759,7.601,-0.436,7.587,11.829,6.566,9.788,-0.917,13.309,12.683,14.95,8.614,15.544,-3.335,-1.136,8.859,7.862,9.536,-6.009,11.818,15.003,8.303,6.854,23.098,-1.993,20.055,-2.574,-3.558,-2.627,24.086,9.431,20.58,-5.179,12.041,21.111,18.087,21.374,-2.723,19.978,25.1,16.048,4.094,5.119,-4.398,11.912,19.818,19.129,3.607,8.141,6.107,21.548,10.081,18.892,-0.145,-1.283,10.417,24.026,13.601,25.157,5.372,2.454,-2.225,5.663,3.881,18.753,20.507,18.702,1.467,11.704],[35.101,26.592,14.122,13.937,13.435,12.357,7.23,-1.458,7.519,16.704,24.053,35.937,10.484,2.389,15.228,16.818,12.979,22.482,18.257,12.838,4.309,0.586,20.776,17.287,6.701,3.29,5.366,24.848,10.75,7.794,-0.092,12.432,6.507,12.939,10.22,-1.77,-3.69,9.027,16.448,-3.934,-3.052,8.149,7.68,10.848,-5.449,19.811,21.959,23.27,21.264,14.306,2.292,-3.458,5.313,24.872,19.195,9.404,2.419,11.216,0.139,6.819,18.635,5.494,21.975,18.17,25.265,15.955,5.873,13.698,8.824,2.59,9.563,-1.774,33.559,15.729,8.417,24.423,27.254,-2.754,25.704,35.452,11.644,13.791,14.814,12.255,12.48,12.89,14.111,37.82,7.904,18.492,12.01,35.748,4.146,16.675,17.134,18.038,15.741,12.454,22.014,8.281,3.752,22.816,18.472,14.764,12.457,1.76,11.048,17.766,1.471,17.448,7.25,7.251,13.31,23.962,23.498,1.468,19.133,1.482,26.485,5.365,7.201,10.66,3.819,5.62,8.318,-0.687,7.839,12.461,6.571,9.235,-0.73,12.868,13.317,14.616,8.065,15.74,-3.782,-1.78,8.844,7.894,9.968,-5.362,12.116,15.161,8.188,7.312,22.746,-1.845,20.371,-2.858,-3.375,-2.949,24.051,9.221,20.365,-4.813,11.83,21.428,18.016,21.508,-2.576,20.442,25.247,16.238,4.169,5.012,-4.388,12.14,20.184,19.286,3.577,7.798,6.492,21.347,10.409,19.158,0.234,-0.948,9.881,23.872,13.782,25.243,5.098,2.296,-2.268,5.387,4.198,18.76,20.987,17.918,1.769,12.308],[35.028,26.855,14.08,14.197,13.199,11.892,7.37,-1.396,7.498,16.57,24.1,35.798,10.426,2.551,15.061,16.837,12.946,22.341,18.299,12.778,4.452,0.795,20.782,17.117,6.797,3.347,5.354,24.829,10.638,7.791,0.006,12.4,6.526,12.663,10.071,-1.841,-3.918,8.776,16.574,-4.02,-3.03,8.292,7.595,11.024,-5.274,19.644,22.138,23.333,21.195,14.543,2.293,-3.403,5.287,24.554,19.485,9.501,2.399,11.487,0.458,6.873,18.716,5.495,21.735,18.113,25.212,15.639,6.078,14.355,9.075,2.354,9.772,-1.516,33.703,15.91,8.015,24.884,27.745,-2.732,25.697,34.74,10.904,13.463,15.338,12.035,12.471,12.508,13.72,37.576,7.443,18.454,11.768,35.521,4.289,16.422,16.827,17.961,15.713,12.204,21.882,8.181,3.836,22.152,18.452,14.759,12.731,2.033,11.197,17.327,1.472,16.564,7.473,7.76,13.558,23.77,23.574,1.027,19.083,1.017,26.412,5.413,7.131,11.356,4.002,4.995,8.088,-0.605,7.702,12.04,7.152,9.387,-0.368,12.688,13.524,14.448,7.705,15.8,-3.678,-1.776,8.428,7.936,10.003,-5.098,12.012,15.002,8.104,7.612,22.481,-2.308,20.349,-2.538,-2.798,-2.914,23.991,9.309,19.864,-4.195,12.103,22.042,17.923,21.612,-2.192,20.548,25.397,16.261,4.094,5.345,-3.945,11.815,20.102,19.112,3.721,8.254,6.431,20.992,11.355,19.537,-0.057,-0.482,9.541,23.539,13.485,24.913,5.304,2.426,-2.502,5.627,4.076,18.698,21.244,18.813,2.087,12.503],[34.921,27.255,14.073,14.365,13.038,11.425,7.504,-1.198,7.625,16.436,24.199,35.554,10.467,2.76,14.899,16.763,13.005,22.173,18.308,12.898,4.506,0.898,20.911,16.957,6.883,3.393,5.464,24.686,10.6,7.833,0.154,12.454,6.531,12.347,9.88,-2.003,-4.17,8.502,16.648,-3.932,-2.912,8.3,7.578,11.124,-5.161,19.41,22.092,23.312,21.017,14.839,2.442,-3.28,5.362,24.207,19.773,9.496,2.526,11.766,0.667,6.945,18.776,5.397,21.605,18.096,25.53,15.727,5.976,14.466,9.142,2.661,9.286,-1.641,33.715,16.083,7.732,25.117,27.751,-2.587,25.21,34.116,10.772,13.297,15.4,11.961,12.663,12.111,13.232,37.355,7.894,18.4,11.077,35.378,4.552,16.105,16.611,17.536,15.75,12.285,22.006,8.48,4.456,21.963,18.561,14.877,12.524,2.139,11.306,17.183,1.788,17.078,7.863,7.552,13.311,23.83,23.709,1.378,19.282,0.744,26.452,5.117,7.333,11.284,3.935,5.352,6.995,-0.813,8.004,11.348,7.357,9.783,-0.636,12.654,13.429,14.028,7.193,15.722,-3.51,-1.493,8.156,7.64,9.978,-5.365,12.054,15.332,7.829,7.619,22.469,-2.56,19.869,-2.252,-2.555,-3.533,23.875,9.103,20.008,-3.498,12.414,21.704,17.935,21.466,-1.865,20.428,25.374,16.581,4.226,5.284,-3.556,11.424,19.862,19.458,3.54,8.257,6.264,20.655,11.083,19.062,0.68,-0.55,9.68,23.349,13.626,24.541,5.612,2.532,-2.616,5.68,3.882,18.991,21.667,19.24,2.079,12.433],[34.775,27.511,14.019,14.342,13.014,10.996,7.632,-0.997,7.786,16.375,24.312,35.452,10.342,2.953,14.754,16.757,13.102,22.125,18.255,12.96,4.572,0.971,21.008,16.91,6.932,3.495,5.619,24.492,10.693,7.852,0.243,12.528,6.537,12.007,9.836,-2.228,-4.291,8.203,16.681,-3.83,-2.611,8.181,7.551,11.234,-5.056,19.082,21.936,23.22,20.887,14.964,2.756,-3.041,5.422,23.85,20.075,9.36,2.71,11.907,0.641,6.882,18.863,5.302,21.64,18.055,25.825,15.688,6.39,14.461,9.33,3.068,9.645,-1.781,33.443,16.019,8.22,24.882,27.178,-2.474,25.607,34.269,10.717,13.085,15.156,11.553,12.332,12.727,12.773,36.868,7.961,18.292,11.639,35.499,4.812,16.045,16.815,17.241,15.33,12.848,22.42,8.486,4.679,22.133,18.497,14.83,12.46,1.967,11.385,17.382,1.801,16.81,7.299,7.282,13.583,23.822,23.677,1.895,19.552,0.892,26.33,5.288,7.408,10.732,4.056,6.06,6.261,-1.328,8.061,11.282,6.931,9.515,-0.676,12.254,13.327,13.471,7.466,15.699,-3.86,-1.417,8.187,8.037,10.042,-5.268,12.517,15.719,7.383,7.26,22.504,-2.644,19.181,-2.482,-2.587,-3.279,23.684,9.088,19.763,-3.695,12.076,21.633,17.652,21.381,-1.684,20.277,25.197,16.753,4.513,4.889,-3.934,11.69,20.191,19.635,3.423,8.308,6.432,20.811,10.736,18.758,0.635,-0.335,10.114,23.353,14.094,24.617,5.625,2.921,-2.18,5.811,3.939,19.242,21.572,18.319,1.976,12.842],[34.733,27.499,13.859,14.348,13.165,10.849,7.822,-1.092,7.933,16.292,24.437,35.463,10.369,3.082,14.629,16.79,13.253,22.25,18.18,13.013,4.688,1.097,21.082,16.812,7.054,3.542,5.764,24.372,10.821,7.741,0.416,12.585,6.377,11.629,9.792,-2.447,-4.416,7.901,16.762,-3.793,-2.269,8.077,7.584,11.352,-5.006,18.757,21.893,23.017,20.803,14.951,3.063,-2.736,5.311,23.57,20.19,9.215,2.859,12.001,0.462,6.706,18.891,5.338,21.803,17.894,25.77,15.329,6.974,14.165,9.552,3.012,9.62,-1.59,33.117,16.114,8.849,25.46,27.7,-2.41,25.673,34.255,10.026,12.972,14.972,11.944,12.193,12.672,12.155,37.225,7.818,18.1,11.538,35.941,4.835,15.832,17.081,17.426,15.5,13.14,22.238,8.462,4.579,22.489,18.578,15.103,12.374,2.016,11.454,17.288,2.034,16.749,7.243,7.496,13.732,23.812,23.3,1.535,19.449,1.138,26.187,5.456,7.587,10.902,4.276,5.469,6.308,-1.379,8.063,11.427,6.648,9.249,-0.391,12.109,12.892,13.392,7.943,15.61,-4.502,-1.238,8.156,7.978,9.573,-5.402,12.692,15.479,7.261,6.937,22.42,-2.735,18.983,-2.311,-2.584,-2.671,23.998,8.559,19.977,-4.494,11.938,21.753,16.921,21.233,-0.962,20.16,24.86,16.75,4.624,5.288,-4.157,12.202,20.426,20.062,3.418,8.186,6.377,20.887,10.241,19.224,-0.005,-0.796,10.544,23.652,14.513,23.856,5.334,3.341,-1.729,5.493,4.474,19.389,21.99,18.463,2.156,12.93],[34.68,27.485,13.749,14.409,13.268,10.917,7.976,-1.255,8.115,16.121,24.685,35.592,10.427,3.055,14.495,16.846,13.186,22.431,18.125,13.044,4.785,1.058,21.063,16.798,7.296,3.504,5.875,24.276,10.944,7.624,0.665,12.614,6.038,11.491,9.808,-2.436,-4.562,7.778,16.743,-3.821,-1.924,7.98,7.448,11.416,-5.119,18.531,22.074,22.808,20.896,14.879,3.209,-2.575,5.237,23.395,20.285,9.095,3.007,12.129,0.207,6.544,18.878,5.362,21.979,17.997,25.694,15.224,6.543,14.103,9.635,3.021,9.349,-1.882,33.052,16.23,9.456,25.116,28.372,-2.742,26.032,34.411,9.841,13.056,14.663,12.15,12.237,12.012,11.747,37.385,7.966,17.976,11.76,35.755,4.649,15.962,17.46,17.7,15.944,12.915,22.144,8.934,4.392,22.377,18.135,15.062,12.428,2.364,11.371,17.356,1.795,16.608,7.42,7.747,12.899,24.149,23.119,1.507,19.371,1.446,26.055,5.204,7.765,11.228,4.605,5.069,6.592,-1.187,7.61,11.069,6.767,9.298,-0.073,12.012,13.058,13.055,6.889,15.9,-4.615,-1.466,8.143,8.156,9.349,-5.406,12.338,15.338,6.968,6.95,22.308,-2.601,19.26,-2.216,-3.051,-2.878,24.162,8.961,20.052,-4.968,12.672,21.681,16.805,21.283,-0.54,20.354,24.487,16.771,4.816,5.223,-2.867,12.204,20.275,19.867,3.45,7.934,5.986,21.25,10.322,18.584,-0.121,-0.857,10.145,23.747,14.165,23.663,5.122,3.648,-1.613,5.225,4.725,18.884,22.101,19.136,2.375,12.887],[34.62,27.557,13.616,14.43,13.148,11.029,8.108,-1.365,8.209,15.966,25.001,35.623,10.395,2.988,14.488,16.985,13.003,22.504,18.087,12.931,4.711,0.93,20.933,16.954,7.518,3.395,6.043,24.2,11.061,7.485,0.968,12.497,5.643,11.5,9.859,-2.331,-4.579,7.653,16.804,-3.995,-1.688,7.961,7.437,11.599,-5.344,18.405,22.357,22.632,20.945,14.698,3.255,-2.524,5.221,23.237,20.312,9.024,3.157,12.263,0.203,6.375,18.83,5.166,22.125,18.135,25.742,15.357,6.701,14.497,9.453,2.736,9.445,-1.8,33.46,16.071,9.552,25.227,28.265,-3.032,26.378,33.927,9.919,13.03,14.686,12.033,12.08,12.336,12.305,37.266,8.279,17.873,11.799,35.821,4.681,16.06,17.616,17.657,15.855,12.631,22.162,9.314,4.752,22.265,17.757,14.809,12.481,2.197,11.617,17.116,1.58,16.698,6.863,7.784,13.429,24.215,23.136,1.89,19.334,2.188,26.054,5.172,7.879,10.961,4.085,5.8,7.275,-1.15,6.761,10.888,6.807,9.137,0.296,12.179,13.43,12.872,6.186,16.043,-4.814,-1.487,8.467,7.984,9.329,-5.656,12.313,15.283,7.078,6.787,22.434,-2.806,19.801,-2.116,-3.136,-3.028,24.113,8.773,19.806,-4.9,13.011,21.924,16.982,21.235,-0.773,20.661,24.231,16.374,5.116,4.897,-2.581,11.732,20.324,20.237,3.346,7.958,6.149,21.582,10.328,18.762,-0.343,-0.779,9.61,23.973,13.764,23.949,5.255,3.887,-1.309,5.219,4.4,18.735,21.899,19.195,2.59,13.18],[34.6,27.739,13.596,14.535,13.113,11.166,8.201,-1.458,8.097,15.91,25.245,35.559,10.304,2.992,14.601,17.143,12.89,22.333,17.967,12.883,4.541,0.845,20.857,17.138,7.602,3.225,6.281,24.239,11.142,7.396,1.373,12.387,5.28,11.532,9.848,-2.279,-4.612,7.542,16.901,-4.17,-1.704,7.924,7.415,11.784,-5.682,18.391,22.612,22.514,20.961,14.497,3.387,-2.463,5.261,23.042,20.435,8.986,3.267,12.376,0.274,6.268,18.717,5.018,22.264,18.141,25.885,15.203,6.996,14.441,9.794,2.633,9.445,-1.564,33.551,16.232,9.429,26.11,27.89,-3.352,26.494,33.575,10.136,13.064,14.518,11.769,11.995,12.457,12.904,37.169,8.285,17.76,11.403,36.44,4.544,15.969,17.702,17.859,15.77,12.28,21.921,9.22,5.01,22.597,18.481,14.775,12.451,1.75,11.892,17.229,1.516,17.514,7.109,7.598,13.379,24.006,23.466,1.841,19.42,2.937,26.15,5.693,7.974,11.162,4.04,6.233,6.79,-1.187,5.77,10.772,6.713,8.851,0.441,12.617,13.123,12.892,6.603,15.714,-4.971,-1.327,8.693,7.666,9.741,-5.753,12.965,15.646,6.659,7.126,22.296,-2.789,19.487,-1.472,-3.068,-3.54,23.831,8.698,19.895,-4.685,12.524,22.071,17.167,20.807,-0.653,21.48,24.315,15.976,4.906,4.663,-3.464,11.198,20.149,20.11,3.111,7.718,5.654,21.509,10.63,19.445,-0.242,-0.383,9.701,23.938,13.116,23.45,5.348,3.8,-1.518,5.357,4.257,19.134,22.221,18.973,2.458,13.33],[34.54,27.968,13.572,14.665,13.107,11.378,8.27,-1.549,7.957,15.896,25.509,35.576,10.106,2.981,14.638,17.39,12.762,22.079,17.931,12.94,4.565,0.698,20.795,17.424,7.541,3.14,6.447,24.384,11.271,7.338,1.721,12.345,5.077,11.577,9.808,-2.354,-4.597,7.546,17.006,-4.355,-1.685,7.903,7.334,11.761,-5.961,18.339,22.942,22.494,21.033,14.185,3.594,-2.604,5.314,22.804,20.615,9.162,3.267,12.408,0.194,6.076,18.725,5.04,22.318,18.201,26.205,15.211,7.066,14.172,9.7,3.048,10.089,-1.741,33.412,16.449,9.551,26.223,28.071,-3.156,26.536,33.587,10.48,13.142,14.493,12.055,12.401,12.233,13.187,37.205,7.768,17.746,11.589,36.11,4.451,16.059,17.904,18.334,16.496,12.234,22.01,9.101,4.627,22.507,18.189,14.643,12.199,1.874,11.682,17.23,1.451,17.208,7.523,8.23,12.773,23.492,23.531,1.586,19.2,3.31,26.154,5.534,8.172,10.996,4.422,6.03,5.716,-1.381,6.146,11.208,6.256,8.876,1.141,12.636,12.427,12.975,6.954,15.783,-4.528,-1.065,8.721,7.738,9.593,-6.387,13.16,15.872,6.488,6.965,22.293,-2.682,19.294,-1.163,-3.186,-3.858,23.341,9.067,19.686,-5.084,12.352,21.933,16.715,20.721,-0.634,21.563,24.548,15.952,5.281,4.955,-3.814,10.859,20.105,19.751,3.033,7.552,5.44,21.45,10.433,19.15,-0.299,-0.662,10.082,23.974,13.058,22.746,5.084,3.84,-1.618,4.948,4.545,19.205,22.488,18.296,2.331,13.201],[34.396,28.274,13.526,14.717,13.137,11.634,8.26,-1.502,7.798,15.976,25.746,35.683,10.009,2.916,14.658,17.575,12.682,21.853,17.889,12.922,4.652,0.494,20.709,17.686,7.562,3.176,6.466,24.306,11.381,7.285,2.061,12.392,5.218,11.558,9.865,-2.469,-4.456,7.598,17.065,-4.641,-1.563,7.775,7.403,11.594,-6.282,18.187,23.064,22.47,21.057,13.834,3.798,-2.798,5.367,22.621,20.628,9.375,3.321,12.242,-0.013,5.853,18.845,5.017,22.332,18.093,26.378,15.464,6.715,14.552,9.369,2.969,8.987,-1.862,33.288,16.416,9.711,26.343,28.882,-2.9,26.752,33.507,10.786,13.493,14.793,12.229,12.394,12.407,13.35,37.397,7.899,17.852,11.471,35.457,4.369,15.863,18.358,18.788,16.779,12.408,22.008,9.019,4.042,21.848,17.431,14.474,12.415,1.79,11.612,17.877,1.475,17.101,6.717,8.341,13.256,23.328,23.518,1.414,19.376,3.62,25.961,5.586,8.289,10.847,4.226,5.958,5.719,-1.818,6.89,11.599,5.774,9.099,1.295,12.015,12.284,13.12,7.543,15.916,-4.399,-1.343,8.671,7.927,9.348,-6.787,12.594,16.127,7.001,6.776,22.442,-2.703,19.288,-1.508,-3.478,-3.866,23.184,8.899,19.776,-6.021,12.667,22.529,16.45,20.619,-0.691,21.926,24.183,15.602,5.5,4.998,-3.541,11.178,20.374,20.523,3.072,7.265,6.014,21.242,10.47,19.352,-0.325,-0.588,10.379,24.018,13.197,22.934,5.025,4.339,-1.907,4.407,4.632,19.344,22.457,18.846,2.256,13.393],[34.218,28.542,13.683,14.731,13.307,11.894,8.107,-1.254,7.621,16.125,25.856,35.768,9.755,2.79,14.612,17.658,12.763,21.726,17.782,12.98,4.612,0.353,20.739,17.899,7.686,3.202,6.372,24.109,11.447,7.264,2.287,12.501,5.452,11.44,10.004,-2.736,-4.38,7.764,17.01,-4.95,-1.426,7.767,7.467,11.454,-6.716,18.151,23.159,22.376,21.113,13.473,4.004,-2.866,5.396,22.668,20.707,9.478,3.41,11.963,-0.051,5.685,19.111,4.981,22.283,18.106,26.815,15.358,6.262,14.649,9.136,2.497,8.847,-1.638,33.381,16.387,9.584,26.729,29.52,-3.062,26.762,32.988,10.953,14.012,14.584,12.008,11.986,12.441,13.629,37.442,8.277,17.958,11.436,35.577,4.324,16.252,18.989,18.646,16.305,12.765,21.616,9.027,4.233,21.604,17.587,14.56,12.583,1.648,11.914,18.025,1.476,17.457,6.471,8.115,13.458,23.447,23.57,1.117,19.317,3.716,25.697,6.115,8.22,11.075,4.208,5.834,6.206,-1.84,6.804,11.562,5.893,9.092,1.572,11.307,12.768,13.231,7.819,15.959,-4.825,-1.482,8.685,7.968,8.894,-6.485,12.413,15.804,6.63,6.573,22.472,-2.67,18.849,-1.382,-4.512,-3.686,23.798,8.811,19.861,-6.641,12.495,22.465,16.304,20.781,-1.113,21.838,23.711,15.38,5.312,4.797,-3.319,11.132,20.486,20.561,3.157,7.297,5.72,21.039,11.052,19.022,-0.581,-0.833,10.078,23.976,12.846,23.41,5.509,4.551,-2.038,4.405,4.845,19.249,22.494,19.216,2.398,13.537],[33.968,28.705,13.885,14.761,13.367,11.985,7.897,-0.963,7.495,16.182,25.817,35.777,9.572,2.594,14.591,17.577,13.051,21.74,17.858,13.177,4.634,0.282,20.657,18.16,7.791,3.207,6.251,23.896,11.478,7.317,2.419,12.678,5.66,11.287,10.065,-2.87,-4.387,7.929,16.784,-5.324,-1.392,7.744,7.453,11.341,-6.975,18.1,23.21,22.38,21.219,13.182,4.13,-2.864,5.483,22.814,20.884,9.549,3.508,11.636,-0.041,5.584,19.315,4.917,22.289,18.225,26.837,15.028,6.433,14.274,9.227,2.538,9.205,-0.99,33.35,16.671,8.918,26.672,29.318,-2.674,26.879,32.604,11.206,14.234,14.756,12.263,12.101,12.38,13.846,37.399,8.473,17.914,10.789,35.977,4.208,16.353,18.207,18.209,16.078,12.809,21.874,9.365,4.405,21.945,17.672,14.91,12.361,1.433,12.043,17.874,1.481,17.898,6.934,8.076,13.498,23.425,23.168,1.365,19.103,3.892,25.793,5.429,8.114,11.03,4.42,5.887,6.668,-1.847,6.326,11.169,6.761,9.29,1.49,10.867,13.109,13.103,7.282,15.991,-4.705,-1.776,8.663,7.903,9.254,-6.392,12.798,15.26,6.842,6.395,21.849,-2.677,18.738,-1.007,-5.084,-4.094,23.86,9.043,19.949,-6.683,12.208,22.161,16.43,20.805,-1.128,21.939,23.916,14.867,5.543,4.613,-3.166,10.754,20.794,20.012,3.064,7.179,5.384,21.067,10.901,18.6,-0.677,-0.45,10.084,23.765,12.123,23.494,5.851,4.733,-1.787,4.821,4.522,19.377,22.859,18.845,2.978,13.081],[33.63,28.614,14.008,14.772,13.243,11.845,7.678,-0.711,7.645,16.162,25.696,35.763,9.548,2.441,14.58,17.468,13.297,21.846,17.94,13.386,4.545,0.322,20.447,18.362,7.764,3.323,6.221,23.725,11.392,7.441,2.52,12.791,5.726,11.152,10.106,-2.895,-4.407,8.036,16.461,-5.719,-1.398,7.696,7.475,11.312,-6.751,18.104,23.221,22.395,21.217,12.925,4.223,-2.786,5.643,22.927,20.955,9.691,3.604,11.335,0.038,5.6,19.35,4.897,22.444,18.173,26.968,15.418,7.084,14.339,9.436,2.891,8.97,-1.141,33.493,16.644,8.264,26.415,28.673,-2.423,26.921,31.825,10.82,14.162,15.259,12.386,12.897,12.075,13.586,37.242,8.012,17.966,10.877,35.997,3.976,16.189,17.691,18.67,16.313,12.887,21.853,9.333,3.965,22.347,17.72,15.085,12.861,1.341,11.894,17.915,1.582,18.178,7.431,8.359,13.557,23.117,22.68,1.698,19.207,3.926,25.537,5.383,8.062,11.466,4.542,5.874,6.779,-2.057,6.507,11.235,7.091,9.551,1.18,10.773,13.156,12.812,6.81,15.901,-4.386,-1.786,8.506,7.653,9.451,-6.987,12.856,15.1,7.199,6.711,21.908,-2.722,18.976,-0.936,-5.325,-4.442,23.762,9.268,20.141,-6.648,11.869,22.393,16.399,20.99,-0.494,22.077,24.433,14.59,5.824,4.832,-3.196,10.178,20.675,20.376,2.935,6.667,5.3,21.12,11.123,19.342,-0.415,-0.786,10.436,23.911,11.695,22.932,5.737,4.706,-1.53,4.655,4.081,20.342,22.886,19.05,3.148,12.263],[33.212,28.415,14.137,14.687,13.053,11.68,7.495,-0.751,8.105,16.234,25.633,35.732,9.589,2.545,14.595,17.514,13.339,21.972,17.951,13.563,4.419,0.479,20.286,18.579,7.73,3.423,6.255,23.523,11.33,7.633,2.547,12.738,5.589,11.003,10.215,-2.889,-4.4,8.121,16.318,-6.039,-1.393,7.678,7.558,11.301,-6.488,18.266,23.272,22.446,21.222,12.645,4.303,-2.65,5.736,22.914,21.032,9.993,3.604,10.945,0.037,5.547,19.431,4.905,22.601,18.238,26.586,15.248,7.015,15.106,9.935,2.623,9.43,-1.335,33.258,16.252,8.3,26.574,28.74,-2.441,26.627,31.623,10.258,13.942,15.408,11.926,12.668,12.27,13.121,37.298,7.168,17.972,11.189,35.598,3.916,15.898,17.782,19.15,16.661,13.048,21.254,9.08,3.866,22.509,18.078,15.202,13.013,1.402,11.893,17.328,1.865,18.107,7.157,8.074,13.642,22.901,22.92,1.724,19.119,3.735,25.354,5.586,8.118,11.065,4.649,5.891,6.581,-1.819,6.922,11.394,6.351,9.581,1.439,11.302,12.909,12.767,7.101,15.618,-4.541,-1.771,8.86,7.654,9.555,-6.871,12.679,15.071,7.373,6.886,22.533,-2.858,18.936,-0.862,-5.229,-4.712,23.441,9.047,19.775,-6.528,11.978,22.583,16.459,20.678,-0.34,21.932,24.419,14.425,5.825,5.458,-3.543,10.357,20.595,20.696,2.933,6.752,5.758,21.091,11.197,19.521,-0.423,-0.587,10.407,23.955,11.626,22.811,5.456,4.503,-1.223,4.24,4.34,19.992,22.898,19.297,3.294,12.022],[32.873,28.021,14.227,14.596,12.896,11.453,7.386,-0.966,8.427,16.276,25.686,35.817,9.773,2.733,14.608,17.646,13.341,22.067,17.902,13.669,4.493,0.612,20.148,18.797,7.594,3.46,6.367,23.511,11.236,7.815,2.536,12.502,5.355,10.981,10.419,-2.897,-4.364,8.333,16.306,-6.249,-1.324,7.78,7.496,11.251,-6.289,18.518,23.344,22.387,21.209,12.423,4.311,-2.439,5.765,22.93,21.042,10.227,3.593,10.54,-0.12,5.517,19.384,5.083,22.584,18.388,26.425,15.0,7.101,14.868,10.077,2.485,8.864,-1.309,32.983,16.33,8.575,26.555,29.057,-2.391,26.952,31.463,10.484,13.71,15.205,11.958,12.459,11.984,13.022,37.639,6.913,17.842,11.148,35.249,4.087,15.494,17.8,19.733,16.4,12.806,21.012,9.029,3.719,22.509,18.277,15.198,12.68,1.715,11.713,17.418,1.842,18.105,7.716,8.221,14.291,23.387,22.854,1.708,18.584,3.509,25.296,5.529,8.259,10.731,4.62,5.774,6.228,-1.681,6.508,11.629,6.225,9.454,1.374,11.662,12.169,12.5,7.793,15.244,-4.693,-2.028,8.95,8.208,9.09,-6.038,12.331,15.06,6.955,6.458,22.078,-2.564,19.048,-1.047,-5.085,-5.095,23.373,8.855,19.777,-6.661,12.48,22.831,16.799,20.739,-1.162,21.816,23.879,14.176,5.629,5.435,-3.369,10.71,20.796,20.372,3.24,6.859,5.832,21.481,11.521,19.127,-0.227,-0.591,10.785,24.173,11.287,23.323,5.514,4.884,-0.867,4.362,4.899,19.574,22.797,19.249,2.905,12.11],[32.682,27.715,14.324,14.458,12.804,11.261,7.361,-1.069,8.371,16.244,25.751,36.11,9.852,2.834,14.505,17.744,13.346,22.201,17.768,13.729,4.524,0.715,20.015,19.029,7.571,3.35,6.412,23.592,11.171,7.99,2.371,12.292,5.103,11.028,10.485,-3.042,-4.158,8.552,16.276,-6.329,-1.314,7.681,7.383,11.255,-6.13,18.818,23.381,22.419,21.157,12.273,4.35,-2.173,5.794,22.948,20.897,10.358,3.612,10.314,-0.242,5.593,19.271,5.205,22.615,18.484,26.238,15.175,7.164,13.974,9.996,3.056,8.981,-1.101,32.576,16.307,8.633,26.634,28.491,-2.823,26.679,31.088,11.025,13.459,15.091,12.246,12.723,11.341,12.869,37.803,6.907,17.913,11.299,35.541,4.515,15.399,17.9,19.877,16.566,12.781,21.293,9.147,3.994,22.483,18.256,15.099,13.059,2.005,11.487,18.006,1.692,18.335,8.156,8.028,13.961,23.82,23.126,1.77,18.47,3.265,25.367,5.872,8.227,11.075,4.294,5.81,6.377,-1.936,6.016,10.761,6.496,10.206,1.014,11.69,11.988,12.505,8.352,15.406,-4.825,-2.279,8.773,8.045,8.842,-6.276,12.531,15.185,7.116,6.828,21.242,-2.378,19.183,-1.143,-5.198,-5.367,23.058,8.781,19.637,-6.411,12.061,22.777,16.996,20.896,-1.796,21.909,24.306,13.968,5.725,5.229,-2.552,10.439,20.321,20.333,3.324,7.216,5.907,21.477,11.682,19.395,-0.14,-0.81,11.07,24.14,10.935,23.258,5.581,4.977,-0.536,4.817,4.823,20.128,22.711,18.973,2.839,11.846],[32.467,27.507,14.399,14.195,12.687,11.258,7.409,-0.993,8.159,16.23,25.723,36.385,9.971,3.061,14.383,17.893,13.486,22.276,17.569,13.746,4.424,0.853,19.938,19.241,7.738,3.218,6.235,23.685,11.239,8.16,1.929,12.095,5.016,11.105,10.561,-3.22,-3.988,8.696,16.347,-6.342,-1.399,7.615,7.243,11.359,-6.089,18.957,23.341,22.445,20.936,12.163,4.404,-1.806,5.846,22.949,20.723,10.275,3.735,10.221,-0.186,5.901,19.295,5.067,22.57,18.497,25.978,15.009,6.832,13.94,9.845,3.253,9.216,-1.299,32.721,15.988,8.148,26.696,27.838,-2.804,26.555,30.719,10.633,13.355,15.568,12.597,12.864,11.282,12.663,37.764,7.247,17.945,11.358,36.16,4.525,15.244,17.979,19.318,16.416,12.943,21.224,9.313,4.765,22.402,18.762,15.388,13.308,2.006,12.061,17.869,1.65,18.698,7.484,7.86,13.729,23.895,23.13,1.666,18.911,3.142,25.478,5.652,8.099,10.914,4.107,6.195,6.75,-1.911,5.555,10.363,6.164,10.323,1.217,11.833,12.346,12.394,8.526,15.978,-4.721,-2.495,8.833,7.481,8.898,-6.773,12.844,14.676,7.527,6.727,21.346,-2.147,19.531,-1.173,-5.579,-4.864,23.4,8.932,20.351,-6.149,11.776,22.556,17.449,20.886,-1.412,21.93,24.387,13.837,5.842,5.182,-2.322,10.078,20.42,20.39,3.224,7.245,5.883,21.494,11.68,19.823,-0.462,-0.799,11.038,24.252,10.925,22.963,5.562,4.537,-0.692,4.79,4.366,19.718,22.64,19.316,3.136,11.52],[32.255,27.298,14.611,13.977,12.606,11.374,7.415,-0.766,7.83,16.199,25.686,36.619,10.113,3.34,14.217,17.99,13.657,22.269,17.345,13.698,4.349,1.017,20.016,19.271,7.841,3.069,5.995,23.767,11.385,8.129,1.499,11.933,4.989,11.235,10.633,-3.252,-3.787,8.884,16.447,-6.263,-1.587,7.543,7.123,11.567,-6.135,19.03,23.127,22.414,20.924,12.093,4.329,-1.624,5.883,22.915,20.553,10.108,3.955,10.088,-0.049,6.336,19.24,4.846,22.492,18.569,25.716,15.109,6.69,14.593,9.513,3.103,9.385,-1.293,32.72,15.573,8.441,26.528,27.989,-2.171,26.641,30.552,10.161,13.193,15.64,12.092,13.021,11.107,12.407,38.049,7.699,17.792,11.395,36.101,4.649,15.474,18.023,20.139,16.371,13.087,21.075,9.394,4.515,22.476,18.175,15.549,13.219,1.959,12.254,17.886,1.344,18.822,7.083,8.521,14.231,23.717,23.034,1.998,18.698,2.809,25.637,5.015,7.86,11.377,3.927,5.495,7.406,-2.289,5.518,9.981,6.14,9.962,0.883,11.745,12.427,12.5,7.805,15.681,-3.98,-2.276,9.056,7.497,9.365,-6.402,12.828,14.791,7.712,6.6,21.838,-2.143,19.218,-1.044,-5.65,-4.653,23.606,8.639,19.64,-6.554,12.499,22.704,17.602,20.841,-0.302,21.933,24.15,13.863,5.925,5.37,-2.488,10.35,20.724,20.291,2.982,7.567,5.564,21.653,11.407,19.375,-0.226,-0.488,10.553,24.176,11.194,22.972,5.79,4.607,-0.316,4.905,4.391,19.525,22.394,19.35,3.184,11.484],[32.059,27.136,14.873,13.996,12.458,11.394,7.466,-0.606,7.588,16.15,25.648,36.75,10.26,3.457,14.084,18.101,13.665,22.238,17.07,13.724,4.202,1.197,20.13,19.317,7.912,2.97,5.764,23.91,11.569,7.865,1.437,11.838,5.076,11.433,10.575,-3.152,-3.635,8.973,16.389,-6.132,-1.517,7.454,7.086,11.859,-6.218,19.114,22.902,22.345,20.927,12.121,4.22,-1.699,5.991,22.767,20.446,9.927,4.178,10.058,0.07,6.634,19.149,4.758,22.474,18.728,25.816,14.863,6.128,14.136,9.125,3.406,9.531,-1.184,32.38,15.672,8.473,26.315,27.761,-2.34,26.689,30.428,10.993,13.015,15.45,11.71,13.191,11.088,12.313,38.585,7.304,17.609,11.796,35.963,4.75,15.642,18.173,20.432,16.47,13.315,21.001,9.441,3.503,22.355,17.632,15.418,12.889,2.187,11.898,18.038,1.428,18.457,7.734,8.558,14.255,23.947,23.279,2.474,18.531,2.401,25.666,5.216,7.613,11.295,3.87,5.24,7.035,-2.3,6.095,10.161,6.068,10.467,0.407,11.438,11.956,12.758,7.854,15.78,-3.5,-1.873,8.883,7.352,9.242,-6.256,12.71,15.014,7.925,6.816,21.753,-2.046,19.379,-1.621,-5.933,-4.495,23.658,8.626,19.219,-6.524,13.011,22.605,17.344,20.887,-0.449,21.247,24.187,13.846,5.635,5.492,-2.742,10.53,20.236,20.174,2.774,8.111,5.393,21.713,11.496,19.276,0.034,-0.794,10.566,24.276,10.971,23.272,5.82,4.851,-0.455,5.624,5.209,19.37,22.222,19.001,3.073,11.396],[31.812,26.891,14.975,14.121,12.302,11.396,7.509,-0.828,7.355,16.077,25.58,36.835,10.445,3.469,14.083,18.123,13.626,22.275,16.765,13.759,4.013,1.441,20.277,19.231,7.934,3.021,5.61,24.07,11.58,7.601,1.515,11.857,5.309,11.602,10.609,-3.015,-3.526,9.015,16.306,-6.06,-1.439,7.323,7.233,12.086,-6.26,19.23,22.713,22.37,20.807,12.104,4.123,-1.804,6.126,22.686,20.307,9.869,4.362,10.108,-0.018,6.992,18.951,4.836,22.39,18.777,25.406,14.425,5.754,13.843,8.806,3.797,9.165,-1.135,32.135,15.911,8.314,26.448,27.762,-2.497,26.654,30.144,11.695,12.646,15.72,11.601,13.219,10.841,12.39,38.557,6.862,17.63,11.86,36.397,4.573,15.665,18.106,19.806,16.825,13.187,21.433,9.355,3.581,22.232,17.846,15.527,12.702,2.459,12.02,18.447,1.752,18.662,7.629,8.241,14.067,23.953,23.322,2.577,18.937,2.12,25.75,4.951,7.36,11.292,3.83,5.323,6.253,-1.911,6.461,10.208,6.225,10.04,0.593,11.603,11.439,13.346,8.576,16.029,-3.772,-2.039,9.003,7.697,9.019,-6.746,12.883,14.732,8.292,6.559,21.512,-1.932,19.611,-1.641,-5.805,-4.467,23.541,8.584,19.942,-6.475,13.285,22.169,17.358,20.88,-1.213,21.284,24.046,13.783,5.655,5.111,-2.764,10.634,20.023,20.069,2.897,8.457,5.641,21.701,11.147,19.975,-0.614,-0.269,10.807,24.211,10.935,22.867,5.934,4.78,-0.672,5.8,6.053,19.58,22.229,19.308,3.54,11.44],[31.64,26.526,14.942,14.229,12.03,11.496,7.44,-0.946,7.137,16.074,25.483,36.926,10.597,3.433,14.195,18.151,13.598,22.295,16.575,13.804,3.8,1.68,20.551,19.021,7.821,3.17,5.603,24.166,11.439,7.366,1.647,11.884,5.729,11.829,10.694,-2.978,-3.541,9.173,16.258,-6.057,-1.441,7.232,7.338,12.232,-6.25,19.29,22.595,22.305,20.88,11.99,4.05,-1.815,6.148,22.673,20.333,9.839,4.634,10.173,-0.159,7.353,18.813,4.941,22.229,18.841,25.034,14.666,5.613,14.085,8.366,3.622,9.735,-1.374,32.01,16.036,8.491,26.336,27.42,-2.457,26.546,29.788,11.803,12.546,15.937,11.649,13.646,10.631,12.843,38.536,6.818,17.679,11.882,36.259,4.57,15.166,17.395,19.747,16.51,13.143,21.556,9.455,3.803,22.557,17.919,15.503,12.691,3.058,12.14,18.49,1.551,19.346,6.87,8.335,14.167,23.764,23.586,2.412,18.91,2.507,25.865,4.829,7.403,11.719,3.586,5.508,5.885,-1.718,6.37,10.71,6.296,9.734,0.369,11.943,11.493,13.574,8.566,15.543,-3.554,-2.562,9.172,7.8,8.431,-7.254,13.106,14.78,8.196,5.955,21.159,-1.718,19.789,-1.062,-5.544,-4.295,23.329,8.709,19.773,-6.656,13.577,21.805,17.532,20.912,-1.218,21.695,23.805,13.83,5.798,5.26,-3.235,10.863,20.071,19.953,3.189,8.66,5.765,21.399,10.888,19.282,-0.365,-0.681,10.96,23.867,10.975,22.881,5.805,4.428,-0.884,5.93,5.926,19.093,22.314,19.472,3.399,11.671],[31.585,26.185,14.9,14.238,11.835,11.751,7.444,-0.823,6.935,16.312,25.353,36.932,10.958,3.302,14.32,18.121,13.64,22.249,16.37,13.943,3.669,1.86,20.762,18.889,7.784,3.325,5.706,24.303,11.257,7.206,1.696,12.002,6.038,12.067,10.671,-3.179,-3.536,9.399,16.157,-6.037,-1.513,7.0,7.251,12.408,-6.197,19.313,22.592,22.128,20.858,11.911,3.945,-1.813,6.05,22.692,20.431,9.754,4.884,10.354,-0.196,7.496,18.689,4.888,22.012,18.767,25.038,14.813,5.293,14.532,8.21,3.708,9.706,-1.25,32.159,15.953,8.074,26.191,26.974,-2.571,26.388,29.737,11.81,12.548,15.531,11.302,13.163,10.238,13.344,38.674,6.984,17.664,12.132,36.431,4.657,14.908,16.946,19.609,16.54,13.043,21.521,9.39,3.16,22.723,17.838,15.349,13.124,3.444,11.866,18.308,1.63,18.959,6.011,8.561,13.963,23.883,23.731,2.527,18.979,2.729,26.061,4.635,7.495,11.52,3.697,5.505,6.478,-2.068,6.46,10.651,6.628,10.188,0.782,11.904,12.159,13.951,8.145,15.595,-3.516,-2.309,9.163,7.082,8.149,-7.361,13.134,14.903,8.622,5.786,21.602,-1.768,19.743,-1.007,-5.603,-4.669,23.208,8.965,19.277,-6.741,13.532,22.035,17.861,20.662,-0.633,21.03,23.995,13.663,5.593,5.734,-2.91,10.856,20.058,20.255,3.112,8.531,5.984,21.204,11.095,19.02,-0.101,-0.94,10.633,23.597,10.806,23.496,6.165,4.136,-0.788,6.133,5.682,18.827,22.336,19.572,3.304,11.506],[31.687,26.112,14.665,14.123,11.66,12.077,7.46,-0.624,6.681,16.558,25.268,36.916,11.237,3.271,14.426,18.088,13.652,22.304,16.141,14.174,3.498,2.007,20.877,18.65,7.97,3.425,5.755,24.521,11.056,7.082,1.654,12.163,6.193,12.296,10.652,-3.382,-3.508,9.57,16.107,-6.153,-1.55,6.653,7.05,12.485,-6.122,19.304,22.473,21.909,20.653,11.871,3.76,-1.757,6.022,22.795,20.528,9.661,4.956,10.402,-0.084,7.419,18.669,4.781,21.91,18.574,24.437,14.831,5.247,14.151,8.225,3.82,10.071,-1.001,32.241,15.798,8.195,26.034,26.953,-2.345,26.653,29.897,11.452,12.92,15.44,11.453,12.969,9.973,13.801,38.729,7.431,17.739,12.303,36.965,4.249,14.772,17.021,19.839,16.983,13.107,21.866,9.459,3.465,22.33,17.707,15.553,13.409,3.453,11.497,18.086,2.009,18.049,6.557,8.523,14.09,23.787,23.552,2.606,19.356,2.414,26.374,4.455,7.617,11.206,4.061,5.247,6.813,-2.433,6.879,10.53,6.801,10.539,0.802,11.874,12.542,14.071,8.193,15.917,-4.059,-2.223,8.896,7.178,8.245,-6.729,13.163,14.517,9.112,5.872,21.413,-1.804,20.088,-1.59,-5.576,-4.613,23.187,8.474,19.458,-6.928,13.498,22.308,17.476,20.288,-0.309,21.017,24.115,13.487,5.465,5.314,-2.363,11.339,19.759,20.209,2.961,9.065,5.545,20.938,11.095,19.778,-0.868,-0.534,10.508,23.596,10.652,23.358,6.632,4.132,-0.462,6.583,5.683,19.17,22.409,19.268,4.177,11.609],[31.848,26.205,14.385,13.917,11.591,12.344,7.58,-0.446,6.595,16.589,25.31,36.927,11.473,3.396,14.57,18.107,13.621,22.295,16.093,14.48,3.405,2.081,20.986,18.44,8.197,3.643,5.732,24.764,10.801,7.081,1.58,12.238,6.344,12.529,10.649,-3.481,-3.58,9.733,16.15,-6.268,-1.55,6.352,6.828,12.403,-6.017,19.227,22.131,21.687,20.426,11.841,3.68,-1.483,6.13,22.876,20.527,9.638,5.031,10.344,0.079,7.564,18.694,4.61,21.907,18.428,24.825,15.141,4.995,13.925,7.972,3.556,9.985,-0.849,32.185,15.683,8.663,25.94,26.941,-1.905,26.744,30.056,11.601,13.327,15.557,11.058,13.101,10.172,13.674,38.756,8.064,17.999,12.526,36.728,3.792,14.852,17.122,19.352,17.076,13.076,21.988,9.922,3.393,21.824,17.308,15.565,13.082,3.402,11.538,17.984,2.113,17.981,7.38,8.573,14.545,23.549,23.851,2.834,19.428,2.2,26.411,3.993,7.523,11.419,4.163,5.207,5.991,-2.123,7.209,10.52,6.643,9.907,0.652,12.226,12.946,14.397,8.835,15.421,-3.498,-2.651,9.04,7.163,8.229,-7.025,12.871,14.622,8.443,5.626,21.153,-1.951,19.808,-1.849,-5.933,-4.565,23.174,8.163,19.617,-7.014,13.905,21.85,17.339,20.075,-0.553,20.744,24.361,13.533,5.467,4.617,-2.641,11.223,19.964,19.741,3.121,8.756,4.759,20.85,11.082,19.563,-0.664,-0.614,10.594,23.728,10.548,23.275,6.203,4.215,-0.757,6.347,5.952,19.33,22.411,19.24,3.881,11.577],[31.928,26.28,14.271,13.86,11.677,12.53,7.993,-0.381,6.652,16.561,25.366,36.859,11.666,3.473,14.709,18.209,13.443,22.143,16.153,14.632,3.311,2.084,20.988,18.236,8.224,3.939,5.599,24.96,10.675,7.171,1.432,12.309,6.463,12.795,10.462,-3.478,-3.648,9.848,16.141,-6.367,-1.619,6.131,6.78,12.397,-6.158,19.17,21.719,21.66,20.282,11.796,3.927,-1.304,6.096,22.969,20.39,9.742,4.99,10.108,0.196,7.675,18.723,4.375,21.984,18.42,24.942,15.07,4.909,13.888,7.988,4.153,10.217,-1.019,32.261,15.691,8.337,26.051,27.085,-2.055,26.784,30.111,11.719,13.566,15.164,10.547,12.638,10.371,13.29,38.623,7.84,17.994,12.532,36.156,4.019,14.965,16.988,19.473,16.915,13.304,22.163,10.077,3.457,22.229,17.289,15.245,13.304,3.531,11.105,18.125,2.235,18.331,7.162,8.561,14.405,23.203,24.462,2.887,19.145,2.216,26.589,3.7,7.465,11.5,4.287,5.221,6.056,-2.068,7.137,11.156,6.941,9.403,0.677,12.471,12.815,14.516,9.149,15.234,-3.145,-2.843,9.368,6.109,7.649,-7.059,12.569,15.185,8.663,5.246,21.058,-1.995,19.719,-1.424,-6.656,-4.645,22.859,7.763,19.152,-6.748,13.658,21.491,17.391,20.055,-0.625,20.419,24.601,13.434,5.623,4.667,-2.631,11.087,20.247,19.784,2.606,8.665,5.163,21.037,11.165,18.452,-0.32,-0.314,10.677,23.575,10.975,23.588,6.043,4.149,-0.589,5.997,6.249,19.261,22.277,19.408,3.607,11.49],[31.968,26.261,14.146,13.988,11.785,12.648,8.281,-0.485,6.812,16.428,25.418,36.68,11.78,3.547,14.833,18.33,13.244,21.914,16.167,14.546,3.234,2.138,20.878,18.193,8.062,4.082,5.436,25.096,10.595,7.242,1.235,12.366,6.59,12.961,10.191,-3.488,-3.593,9.982,16.237,-6.554,-1.632,5.977,6.639,12.419,-6.377,19.291,21.491,21.673,20.168,11.781,4.178,-1.254,5.961,23.215,20.246,9.882,4.904,9.928,0.403,7.659,18.765,4.23,22.141,18.313,24.459,14.809,5.174,14.25,7.954,4.214,10.674,-0.863,32.457,15.692,9.205,26.51,27.338,-2.157,26.437,30.09,12.025,13.134,14.77,10.658,12.519,10.721,12.946,38.519,7.948,17.773,12.595,36.082,4.571,15.197,17.081,19.43,17.125,13.318,21.916,9.607,3.818,22.366,17.564,15.087,13.554,3.246,10.941,18.656,2.441,18.197,6.831,8.754,14.116,23.374,24.648,3.028,19.185,2.095,26.959,3.605,7.303,11.34,4.713,4.815,5.935,-2.199,6.468,11.829,6.86,9.482,0.304,12.709,13.182,14.588,8.869,15.78,-3.835,-2.661,8.835,6.322,7.463,-7.164,13.0,14.976,9.346,4.771,20.634,-2.095,20.154,-1.218,-6.674,-4.765,23.043,8.013,18.708,-6.622,13.534,21.182,17.544,20.014,-0.612,20.002,24.368,13.678,5.798,4.872,-2.082,11.102,19.762,20.081,2.562,9.201,5.185,21.024,11.191,18.813,-0.594,-0.674,10.835,23.637,11.119,23.418,6.226,4.834,-0.239,6.437,6.277,19.023,22.21,19.172,3.93,10.891],[32.079,26.2,13.998,14.208,11.956,12.751,8.556,-0.437,6.929,16.197,25.451,36.746,11.826,3.564,14.902,18.48,13.262,21.748,16.223,14.343,3.231,2.158,20.695,18.172,8.167,4.141,5.352,25.102,10.517,7.155,1.101,12.59,6.607,12.994,9.894,-3.514,-3.608,10.143,16.334,-6.733,-1.651,5.887,6.572,12.403,-6.452,19.47,21.434,21.575,19.969,11.881,4.117,-1.221,5.891,23.421,20.214,9.924,4.935,9.99,0.642,7.843,18.698,4.123,22.281,18.181,24.698,14.625,5.371,14.546,8.1,3.663,10.381,-0.85,32.492,15.732,9.351,26.38,26.84,-2.187,26.59,30.243,12.489,13.127,14.909,11.15,12.402,10.702,12.605,38.633,7.847,17.425,12.854,36.152,4.73,15.221,17.314,18.911,17.127,12.527,21.906,9.56,3.275,21.589,17.335,15.225,13.12,3.239,11.08,18.29,2.702,18.347,7.232,8.796,14.465,23.572,24.496,3.18,19.341,2.092,26.907,3.666,7.094,10.695,4.256,4.56,5.812,-2.399,6.496,11.463,7.193,9.831,0.202,12.955,12.684,14.659,8.826,15.705,-4.102,-2.64,8.429,6.761,7.355,-7.321,13.159,14.831,9.357,4.36,20.655,-1.882,20.461,-1.436,-6.113,-5.25,23.184,8.195,18.762,-7.264,13.687,21.408,17.692,20.067,-0.475,19.84,24.041,13.704,5.857,4.402,-2.021,11.16,19.849,19.945,2.863,9.028,4.532,21.034,11.312,19.361,-0.41,-0.058,10.877,23.891,11.052,23.85,6.431,4.889,-0.542,6.801,5.826,19.118,22.02,19.035,3.428,10.648],[32.249,26.082,13.983,14.338,11.991,12.888,8.671,-0.291,7.046,16.079,25.489,36.825,11.724,3.435,14.952,18.479,13.29,21.603,16.228,14.308,3.118,2.239,20.677,18.102,8.38,4.13,5.213,25.01,10.332,7.013,1.05,12.693,6.518,13.046,9.683,-3.53,-3.579,10.229,16.195,-6.827,-1.643,5.811,6.72,12.486,-6.546,19.605,21.478,21.491,19.906,11.938,3.897,-1.286,5.828,23.593,20.198,9.922,4.835,10.09,0.974,8.106,18.732,4.059,22.348,18.151,24.721,14.519,5.3,14.447,8.395,4.137,10.737,-0.99,32.604,16.069,9.059,26.038,27.1,-1.815,26.961,30.416,12.202,13.16,14.934,11.349,12.311,10.449,12.517,38.58,7.585,17.282,12.703,36.484,4.227,15.212,17.312,19.483,17.28,12.594,22.024,10.053,3.452,21.155,17.323,14.983,12.611,3.354,11.196,17.687,2.476,18.393,6.905,8.935,14.002,23.362,24.32,2.948,18.893,1.556,26.708,3.763,7.188,10.717,4.329,4.553,6.194,-2.443,6.823,11.631,7.32,9.656,0.395,12.697,13.555,14.656,8.932,15.237,-4.315,-2.792,7.986,6.858,7.143,-6.992,12.947,15.337,9.63,4.631,20.671,-2.062,20.024,-1.573,-5.922,-5.847,22.813,8.144,18.69,-7.05,13.913,21.307,17.741,20.034,-0.779,20.583,24.266,13.682,5.569,4.129,-2.268,11.076,20.175,19.704,2.552,9.122,4.807,21.4,11.335,18.919,-0.02,-0.136,10.802,23.872,11.027,24.375,6.404,4.078,-0.605,6.701,5.696,19.174,22.05,18.979,3.467,11.617],[32.346,26.059,13.946,14.376,11.76,13.047,8.59,-0.199,7.092,16.185,25.498,36.937,11.63,3.332,14.989,18.31,13.193,21.445,16.212,14.31,2.988,2.328,20.667,18.274,8.496,4.135,5.101,24.86,10.119,6.771,1.03,12.904,6.462,13.117,9.555,-3.575,-3.617,10.199,16.133,-6.879,-1.764,5.782,6.96,12.6,-6.567,19.608,21.628,21.435,19.962,11.971,3.748,-1.393,5.618,23.93,20.143,9.929,4.753,10.236,1.0,8.338,18.947,4.243,22.291,18.137,24.559,14.449,5.755,14.46,8.659,3.799,10.582,-1.081,32.707,16.195,8.885,26.118,27.262,-1.693,27.004,30.5,11.991,13.573,14.794,11.154,12.297,10.332,12.279,38.538,8.003,17.616,12.581,36.673,4.02,14.876,16.846,19.786,17.315,12.863,21.831,10.136,3.876,21.41,17.623,14.984,12.769,3.319,10.97,18.177,2.422,17.925,6.35,9.009,13.636,22.753,24.384,2.828,18.89,1.606,26.728,3.819,6.841,11.07,4.559,4.505,6.826,-2.074,6.462,11.988,6.981,9.475,0.267,12.675,13.211,14.498,8.864,15.271,-4.208,-2.884,7.994,6.59,7.422,-7.248,12.981,15.032,9.804,5.325,20.611,-2.114,19.832,-1.542,-6.462,-5.546,22.921,7.894,18.793,-6.856,14.08,21.088,17.778,19.984,-0.531,20.479,24.546,13.751,5.46,4.072,-2.85,10.821,20.091,19.993,2.784,9.406,5.342,21.441,11.03,18.51,0.305,-0.284,10.912,24.003,10.627,24.183,6.024,3.992,-0.226,7.113,5.967,19.197,22.108,19.163,3.585,11.881],[32.282,26.057,13.871,14.457,11.517,13.254,8.42,-0.325,7.19,16.27,25.452,37.055,11.492,3.264,15.057,18.195,13.111,21.236,16.152,14.33,2.997,2.35,20.533,18.445,8.497,4.279,5.065,24.795,9.974,6.441,1.091,12.989,6.341,13.124,9.504,-3.529,-3.707,10.024,16.225,-6.815,-1.863,5.965,6.932,12.658,-6.618,19.49,21.715,21.412,20.138,11.972,3.882,-1.569,5.283,24.294,20.218,9.902,4.709,10.307,0.964,8.498,19.092,4.584,22.261,18.148,24.559,14.85,5.83,14.71,8.852,3.104,10.483,-0.919,32.837,16.014,9.212,26.483,26.889,-1.887,26.632,30.44,12.046,13.888,14.794,10.667,12.193,10.739,12.514,38.878,8.289,17.721,12.54,36.109,4.038,14.562,17.058,19.856,16.902,13.427,21.793,9.75,2.961,22.05,17.353,14.77,12.643,3.535,10.642,18.616,2.764,18.438,6.756,9.159,14.454,22.25,24.21,2.747,19.129,1.684,26.671,3.762,6.92,10.724,4.204,4.361,6.631,-1.854,5.987,12.313,6.832,9.36,0.446,13.349,13.589,14.203,8.817,15.56,-3.589,-3.173,8.222,7.232,7.733,-7.362,13.327,14.937,9.35,4.83,20.438,-2.105,20.363,-1.68,-6.979,-5.312,22.888,7.804,18.857,-7.356,13.78,21.272,17.661,19.959,-0.789,20.223,25.308,13.784,5.728,3.782,-2.597,10.82,20.396,20.049,3.131,9.784,5.616,21.163,11.057,18.981,0.025,-0.346,11.107,23.803,11.214,24.01,5.599,3.876,-0.442,7.231,6.238,19.397,21.977,19.036,3.414,11.762],[32.149,26.049,13.912,14.633,11.422,13.513,8.364,-0.501,7.326,16.216,25.387,37.27,11.333,3.095,15.016,18.204,13.137,21.074,16.137,14.412,2.889,2.38,20.513,18.457,8.339,4.354,5.005,24.701,9.97,6.239,1.16,12.958,6.081,13.078,9.445,-3.437,-3.769,9.819,16.336,-6.759,-1.972,6.019,6.772,12.542,-6.727,19.418,21.782,21.328,20.323,12.144,4.257,-1.613,5.05,24.634,20.373,10.008,4.712,10.332,0.865,8.403,19.207,4.942,22.209,18.263,24.522,14.926,5.614,14.845,8.672,3.787,10.023,-0.993,32.619,16.133,9.368,26.334,26.686,-2.073,26.575,30.291,12.238,14.568,14.611,10.377,12.158,10.645,12.827,39.028,8.259,17.86,12.146,36.315,3.912,14.812,17.229,19.831,16.73,13.205,21.776,9.661,3.282,21.451,16.991,14.973,12.976,3.49,10.846,18.022,2.861,18.91,6.724,9.34,14.805,22.593,24.02,3.418,18.866,1.676,26.453,3.966,7.023,10.188,4.418,4.694,5.651,-1.699,6.058,12.47,6.842,9.63,0.259,13.924,13.751,14.175,8.49,15.469,-3.577,-2.818,7.547,7.315,7.818,-7.111,13.546,15.253,9.295,5.149,20.609,-2.043,20.212,-1.888,-6.892,-5.2,22.921,7.708,18.924,-7.208,13.672,21.568,17.616,19.85,-1.135,20.362,25.093,13.93,5.899,3.324,-2.512,11.063,20.219,19.683,3.651,9.652,5.478,21.205,11.236,19.38,-0.38,0.033,10.885,23.612,11.31,24.973,5.003,3.736,-0.77,6.7,5.955,19.418,22.339,18.959,3.561,11.891],[32.001,26.118,13.981,14.772,11.385,13.664,8.401,-0.599,7.396,16.116,25.319,37.564,11.177,2.909,14.889,18.213,13.276,20.991,16.203,14.599,2.827,2.457,20.616,18.621,8.221,4.366,4.966,24.651,10.039,6.011,1.132,12.955,5.736,13.021,9.374,-3.277,-3.811,9.716,16.293,-6.73,-2.079,5.903,6.601,12.231,-6.724,19.381,21.77,21.29,20.441,12.49,4.527,-1.549,4.975,24.928,20.497,10.182,4.782,10.539,0.71,7.969,19.232,5.126,22.153,18.382,24.601,14.541,5.607,14.755,8.063,3.981,9.905,-1.086,32.223,16.656,9.348,26.209,27.01,-2.228,26.606,30.222,12.536,14.938,14.862,10.426,12.204,10.313,13.315,39.275,8.342,17.669,12.378,36.579,4.056,15.618,17.126,19.2,16.963,12.382,21.831,9.771,3.984,20.663,17.472,15.01,13.034,3.471,10.924,17.713,2.485,18.71,6.16,8.84,14.043,22.848,23.511,3.534,18.976,1.86,26.297,3.34,6.85,11.034,4.653,4.619,5.927,-1.799,5.999,12.078,6.679,10.046,0.415,13.622,13.449,14.203,8.36,15.45,-3.899,-2.416,7.542,6.801,7.784,-7.205,13.369,15.307,8.986,5.336,20.615,-2.095,19.705,-1.564,-6.251,-5.148,22.897,7.694,18.998,-7.065,13.35,21.538,17.548,19.863,-1.306,20.762,25.093,13.751,6.317,3.231,-2.578,11.078,20.471,19.63,3.553,9.33,5.711,21.29,11.484,19.172,-0.447,-0.338,10.854,23.645,11.028,25.09,4.772,4.54,-0.75,6.712,6.162,19.428,22.367,19.479,3.529,12.063],[31.82,26.238,14.109,14.816,11.376,13.84,8.525,-0.695,7.372,15.987,25.337,37.647,11.208,2.78,14.821,18.166,13.232,20.933,16.316,14.579,2.809,2.502,20.757,18.906,8.413,4.24,4.994,24.462,10.195,5.748,1.09,12.881,5.374,12.879,9.544,-3.153,-3.867,9.568,16.17,-6.64,-2.137,5.836,6.363,11.818,-6.569,19.219,21.808,21.375,20.463,12.728,4.592,-1.522,4.964,25.126,20.527,10.34,4.93,10.875,0.402,7.537,19.314,5.143,22.262,18.525,24.925,14.277,5.566,14.793,7.714,3.301,9.981,-0.923,32.339,16.58,9.167,26.339,27.383,-2.204,26.636,30.123,12.356,15.073,14.958,10.632,12.307,10.192,13.756,39.472,8.425,17.115,12.199,36.998,3.991,15.738,16.835,20.093,17.395,13.128,21.798,9.913,3.883,20.749,18.005,15.222,13.317,3.643,10.93,18.162,2.431,18.51,5.806,8.591,14.168,22.622,23.421,3.419,19.216,1.774,26.149,2.948,6.793,11.115,4.159,4.45,6.252,-1.545,5.657,12.164,6.568,9.556,0.452,12.693,13.777,14.464,8.362,15.363,-3.699,-2.88,7.814,6.585,7.614,-7.413,12.837,15.095,9.131,4.857,20.618,-2.094,19.828,-1.413,-6.572,-5.055,22.762,7.697,19.016,-7.211,13.133,21.461,17.733,19.872,-1.065,20.491,25.385,14.079,6.28,3.187,-2.399,11.172,20.384,19.96,3.45,8.996,5.9,20.938,11.822,19.426,-0.156,-0.809,11.027,23.839,11.206,24.853,4.964,4.734,-0.769,6.174,6.284,19.906,22.338,19.472,3.671,12.35],[31.669,26.322,14.237,14.758,11.544,13.982,8.615,-0.749,7.328,15.765,25.533,37.597,11.351,2.571,14.93,18.232,13.301,20.897,16.279,14.539,2.838,2.599,20.786,19.195,8.572,3.823,5.031,24.105,10.346,5.587,1.088,12.944,5.094,12.701,9.664,-3.196,-3.692,9.5,15.937,-6.564,-2.05,5.831,6.152,11.583,-6.344,19.065,21.978,21.461,20.414,12.903,4.51,-1.492,5.026,25.278,20.538,10.474,4.969,11.086,0.099,7.317,19.593,5.062,22.506,18.661,24.692,14.195,5.297,14.836,8.138,2.999,10.505,-0.941,32.686,16.062,9.268,26.539,26.941,-2.407,26.725,29.957,12.56,14.737,15.24,10.791,12.469,10.154,13.378,39.433,8.823,17.298,12.032,37.312,3.589,15.059,16.496,20.314,16.861,13.926,22.213,9.773,3.243,21.425,17.601,14.835,13.069,3.374,11.133,18.336,2.252,19.348,5.535,9.293,14.633,22.198,23.347,3.417,19.209,1.741,25.758,2.925,6.954,10.127,4.078,4.733,5.073,-1.346,5.355,12.432,6.45,9.271,0.595,12.198,13.265,14.433,8.037,15.46,-3.693,-2.988,7.771,6.824,7.525,-7.052,12.115,14.875,8.656,4.951,20.945,-1.884,19.887,-1.823,-6.98,-5.094,22.854,7.141,19.055,-7.061,13.131,21.825,17.256,19.916,-0.992,20.588,25.103,14.597,6.094,3.506,-2.6,11.73,20.47,20.13,3.528,8.741,5.804,21.39,11.717,19.619,-0.594,-0.853,11.189,23.753,11.934,25.14,4.7,4.4,-0.574,5.834,6.229,19.826,22.41,19.403,4.003,12.498],[31.599,26.211,14.444,14.583,11.737,13.99,8.708,-0.908,7.344,15.673,25.719,37.557,11.41,2.277,15.008,18.316,13.499,20.993,16.028,14.437,2.742,2.608,20.785,19.35,8.616,3.453,5.112,23.712,10.323,5.273,1.195,12.999,4.899,12.533,9.652,-3.285,-3.423,9.427,15.777,-6.625,-1.903,5.934,6.036,11.522,-6.182,18.991,22.329,21.65,20.439,13.139,4.495,-1.472,5.013,25.294,20.571,10.471,4.927,11.116,-0.064,7.159,19.814,4.89,22.778,18.733,24.719,14.368,5.652,14.739,8.373,3.099,10.767,-1.332,32.283,16.312,9.56,26.778,26.816,-2.501,26.95,29.813,12.449,14.25,15.097,11.159,12.645,10.551,13.649,39.43,9.625,17.349,12.416,36.866,2.975,15.322,16.698,19.981,16.645,13.544,21.895,9.557,2.652,21.738,17.342,15.339,12.942,3.476,10.564,18.481,1.566,19.45,5.848,9.578,14.49,22.237,23.131,3.752,19.084,1.809,25.445,3.591,7.031,10.983,4.114,4.523,4.909,-1.723,4.791,12.773,5.869,9.675,0.447,11.989,14.006,14.374,8.309,15.317,-3.757,-2.616,7.905,6.818,7.736,-6.589,12.211,14.804,8.396,5.375,20.672,-1.768,19.59,-1.735,-6.972,-4.75,23.172,6.973,18.85,-6.905,12.933,21.698,17.151,20.096,-1.37,21.098,25.725,14.59,6.087,3.499,-2.477,12.002,20.862,20.234,3.177,8.491,5.278,21.378,11.561,19.265,-1.094,-0.597,11.531,23.781,12.018,25.296,4.366,4.004,-0.203,5.929,6.08,19.875,22.465,19.864,3.788,12.363],[31.528,26.178,14.571,14.495,11.829,13.839,8.95,-1.194,7.357,15.86,25.901,37.633,11.378,2.004,15.072,18.361,13.871,21.146,15.885,14.231,2.555,2.728,20.559,19.396,8.651,3.327,5.155,23.349,10.277,5.033,1.344,13.039,4.579,12.451,9.712,-3.32,-3.253,9.381,15.766,-6.749,-1.767,6.156,6.076,11.553,-6.126,18.977,22.561,21.958,20.329,13.371,4.637,-1.515,4.858,25.313,20.716,10.442,4.729,11.001,-0.106,7.071,19.969,4.546,22.912,18.777,25.08,14.399,5.923,14.103,7.988,2.659,10.224,-1.347,32.113,16.366,9.728,26.917,27.028,-2.847,27.094,29.754,12.336,13.782,15.167,11.041,12.709,11.128,14.273,39.453,9.59,17.271,12.609,36.455,2.914,15.787,16.95,20.269,16.995,13.397,21.479,9.598,3.352,21.628,17.148,15.538,12.753,3.447,10.913,18.245,1.465,18.809,5.464,9.435,14.421,22.668,22.771,3.918,18.923,1.852,25.128,3.223,6.954,11.518,3.65,4.691,5.43,-2.069,4.93,12.852,5.269,9.848,0.139,12.381,13.799,14.114,8.345,15.26,-3.574,-2.507,8.043,6.339,7.803,-7.125,12.784,14.656,8.515,5.749,20.297,-1.822,19.367,-1.203,-6.602,-5.124,23.591,7.209,18.95,-6.687,12.583,22.272,17.514,20.572,-1.204,21.57,25.654,14.691,6.364,3.701,-1.944,11.632,21.133,20.159,2.718,8.226,5.133,21.46,11.811,19.465,-0.538,-0.64,11.374,24.012,11.837,25.322,4.012,3.918,0.047,5.651,5.656,20.304,22.587,19.493,3.328,12.338],[31.496,26.309,14.573,14.452,11.886,13.639,9.255,-1.257,7.249,16.167,26.093,37.689,11.157,1.874,15.177,18.153,14.167,21.047,15.901,14.048,2.469,2.903,20.279,19.437,8.71,3.339,5.166,23.056,10.417,4.958,1.443,13.028,4.193,12.445,9.7,-3.378,-3.188,9.273,15.844,-6.82,-1.625,6.446,6.148,11.634,-6.121,19.002,22.72,22.383,20.124,13.565,4.739,-1.502,4.786,25.344,20.894,10.461,4.209,10.77,0.0,6.986,20.207,4.142,22.951,18.764,25.157,14.667,5.421,13.999,7.868,2.122,10.149,-1.269,32.215,16.243,9.761,27.118,27.265,-2.828,27.145,29.712,12.551,13.409,15.595,11.036,12.805,10.619,13.932,39.436,9.064,17.611,12.424,36.86,3.615,15.905,17.048,19.914,17.083,13.853,21.322,9.998,3.127,21.591,17.094,15.843,12.39,3.524,11.236,17.855,1.749,19.419,5.135,9.245,14.434,22.684,22.373,4.405,18.777,1.769,24.787,2.725,7.057,10.816,3.41,4.963,4.897,-2.119,4.979,12.989,5.474,9.881,0.091,12.915,13.253,13.941,7.994,15.2,-3.441,-2.402,8.0,6.134,8.214,-7.267,12.867,14.781,8.816,6.065,20.778,-2.295,19.831,-0.779,-6.383,-5.301,23.755,7.534,19.11,-6.897,12.342,22.34,17.269,20.538,-1.143,21.375,25.145,14.523,6.342,3.438,-1.949,11.164,21.076,20.142,2.574,8.355,5.111,22.002,12.047,19.916,-0.439,-0.883,10.782,23.975,11.899,25.373,3.639,4.497,0.078,5.92,5.354,20.192,22.764,19.472,3.461,12.429],[31.443,26.411,14.56,14.409,11.827,13.475,9.465,-1.153,6.908,16.501,26.232,37.741,10.924,1.992,15.277,17.959,14.231,20.804,16.066,13.969,2.504,3.082,20.111,19.498,8.903,3.431,5.305,22.799,10.563,4.942,1.457,12.964,3.994,12.421,9.636,-3.359,-3.278,9.077,15.863,-6.719,-1.531,6.76,6.266,11.591,-6.09,19.098,22.76,22.589,20.061,13.615,4.757,-1.562,4.615,25.212,21.012,10.437,3.616,10.579,0.14,7.034,20.382,3.767,22.92,18.963,24.968,14.99,5.481,14.602,7.703,2.025,10.744,-1.32,32.467,15.996,9.875,27.485,27.671,-2.736,27.032,30.28,12.328,13.508,15.598,11.162,12.777,10.307,13.76,39.607,8.792,17.997,11.864,36.861,3.6,15.628,17.226,20.132,16.531,14.03,21.143,9.942,2.697,21.699,17.008,16.068,12.657,3.827,10.983,17.562,1.775,19.403,5.31,9.039,14.099,22.233,22.092,4.465,18.334,2.15,24.633,2.482,7.054,10.452,3.901,4.172,4.417,-1.866,4.505,12.93,5.444,9.917,0.539,12.978,13.778,13.692,7.598,15.52,-3.284,-2.264,7.863,6.309,8.417,-6.78,12.589,14.833,8.653,5.884,20.68,-2.693,19.4,-0.914,-6.68,-4.994,24.04,7.259,18.981,-6.996,12.935,21.9,17.256,21.064,-1.257,21.625,25.839,14.768,5.899,3.56,-2.225,11.1,21.102,20.693,2.372,8.415,4.854,21.933,11.959,19.196,-0.343,-0.391,11.015,24.248,12.252,25.35,4.203,5.224,0.122,5.936,5.098,20.658,22.906,20.006,2.844,12.159],[31.442,26.55,14.495,14.363,11.711,13.387,9.588,-1.099,6.56,16.772,26.406,37.882,10.791,2.036,15.276,17.878,14.118,20.67,16.307,13.962,2.655,3.142,19.993,19.557,9.142,3.617,5.388,22.551,10.623,5.008,1.403,12.922,3.866,12.22,9.641,-3.118,-3.433,8.813,15.836,-6.532,-1.473,6.786,6.341,11.675,-5.939,19.263,22.722,22.669,20.045,13.661,4.74,-1.692,4.585,25.102,21.242,10.463,3.039,10.683,0.235,7.186,20.431,3.473,22.87,19.107,25.319,15.46,5.276,14.51,7.63,2.676,10.71,-1.14,32.498,15.946,9.856,27.717,27.571,-2.72,26.818,30.555,11.782,13.49,15.46,11.1,12.865,10.413,13.643,39.869,8.691,18.089,12.04,36.82,2.912,15.431,17.667,20.315,16.758,14.042,21.089,9.958,2.945,21.506,17.09,15.751,12.77,3.797,10.919,17.965,1.895,19.261,5.257,9.143,14.034,21.988,22.152,4.538,18.299,2.501,24.43,2.213,7.151,10.633,4.427,4.023,4.72,-1.511,4.57,12.552,5.093,9.643,0.292,12.862,13.524,13.648,7.716,15.243,-3.597,-2.457,7.863,7.056,8.119,-6.518,11.914,14.498,7.871,5.912,19.774,-2.78,19.097,-1.274,-6.532,-4.89,24.25,6.945,18.634,-6.725,13.299,21.881,17.541,21.62,-1.358,21.641,25.868,15.1,6.247,3.04,-2.453,11.533,21.337,21.01,2.038,8.186,4.532,21.534,11.738,19.596,-0.004,-0.635,11.425,23.817,12.346,25.187,4.028,4.705,-0.027,5.597,4.808,21.102,23.128,19.941,2.616,11.931],[31.382,26.776,14.376,14.308,11.623,13.324,9.551,-1.161,6.282,16.923,26.574,37.939,10.762,1.846,15.171,18.037,14.008,20.657,16.495,13.937,2.741,3.021,20.009,19.503,9.344,3.852,5.388,22.439,10.607,5.177,1.31,12.777,3.762,12.085,9.665,-2.748,-3.547,8.579,15.72,-6.553,-1.655,6.614,6.358,11.866,-5.716,19.45,22.7,22.828,19.941,13.679,4.701,-1.832,4.527,25.033,21.546,10.462,2.793,10.963,0.298,7.315,20.345,3.351,22.696,19.131,25.612,15.65,5.199,13.919,7.541,2.522,10.159,-0.771,32.238,16.131,10.109,27.987,27.561,-2.76,26.926,31.172,11.444,13.38,15.36,10.706,12.601,11.083,13.431,39.74,9.0,18.438,12.298,37.544,3.299,15.19,17.786,20.194,16.915,13.655,21.177,10.499,3.422,21.407,17.469,15.755,12.73,3.733,11.136,18.15,2.073,19.728,5.077,9.794,14.314,22.314,21.984,4.47,18.417,1.774,24.239,2.745,7.188,10.68,4.447,4.742,4.616,-1.389,4.555,12.482,4.529,9.164,-0.277,12.36,13.868,13.64,7.623,14.971,-4.188,-2.178,8.157,7.323,7.916,-6.377,11.836,14.628,7.784,6.114,19.765,-2.85,19.585,-0.788,-6.032,-4.999,24.385,7.495,18.374,-6.631,13.415,22.154,17.755,21.345,-1.543,21.355,24.896,14.919,6.323,2.956,-2.411,11.877,21.564,20.944,1.776,8.306,4.377,21.583,11.816,20.025,-0.827,-0.635,11.216,24.111,12.434,25.202,3.477,4.22,-0.301,5.891,4.491,20.741,23.399,20.141,1.901,12.249],[31.291,26.914,14.172,14.274,11.49,13.24,9.351,-1.182,6.077,17.02,26.739,38.018,10.848,1.814,14.99,18.336,14.024,20.725,16.633,13.973,2.976,2.808,20.186,19.411,9.571,3.991,5.515,22.432,10.478,5.263,0.844,12.73,3.607,12.046,9.608,-2.446,-3.636,8.525,15.691,-6.693,-1.934,6.391,6.417,12.12,-5.52,19.649,22.743,22.822,19.848,13.65,4.67,-1.906,4.231,24.919,21.726,10.349,2.805,11.303,0.246,7.534,20.218,3.463,22.585,19.154,25.598,15.517,5.437,14.103,7.093,1.619,10.139,-1.055,32.367,16.046,10.154,27.837,27.646,-2.869,27.24,31.855,11.809,13.259,15.341,10.892,12.449,12.12,13.235,39.85,9.311,18.586,12.057,37.351,3.658,15.402,17.512,20.023,16.814,13.448,21.198,10.753,3.665,21.481,17.868,15.843,12.659,3.479,10.777,17.653,2.144,19.452,5.075,10.209,14.095,22.197,21.689,4.237,18.464,1.995,24.298,3.314,7.29,11.017,3.946,4.712,4.716,-1.005,4.112,12.325,4.598,9.271,-0.237,11.992,13.706,13.783,7.257,15.345,-4.244,-1.502,7.817,6.705,8.146,-6.245,12.305,14.439,8.221,6.087,20.147,-2.961,19.944,-1.183,-6.53,-5.101,23.999,7.561,18.068,-6.358,13.998,22.526,17.839,21.047,-1.617,21.45,25.483,14.776,6.224,3.263,-2.442,11.507,21.032,21.425,1.721,8.706,4.276,21.602,11.951,19.552,-0.344,-0.753,10.898,24.203,12.201,25.125,3.663,4.505,-0.862,6.347,4.305,20.387,23.581,20.146,1.883,12.756],[31.362,26.953,14.006,14.418,11.506,13.191,9.157,-1.197,6.034,17.023,26.908,37.967,11.06,1.913,14.786,18.436,14.07,20.65,16.761,14.052,3.345,2.638,20.442,19.341,9.841,3.875,5.661,22.371,10.283,5.259,0.429,12.677,3.474,12.028,9.395,-2.343,-3.686,8.65,15.782,-6.788,-2.211,6.243,6.342,12.474,-5.416,19.708,22.917,22.665,19.721,13.474,4.763,-1.936,4.112,25.111,21.783,10.204,2.894,11.337,0.139,7.808,19.93,3.698,22.565,19.018,25.6,15.49,4.899,14.536,6.576,1.805,10.586,-1.475,32.057,16.202,9.953,28.171,27.999,-2.789,27.476,32.216,11.84,13.261,15.27,10.877,12.535,12.295,13.523,39.934,9.366,18.387,11.641,37.044,3.448,15.675,17.956,19.948,17.349,14.129,21.265,10.557,3.714,21.417,17.886,15.86,12.777,3.584,10.684,17.568,2.391,19.123,5.202,9.955,13.824,22.011,21.775,3.496,18.853,1.98,24.159,3.448,7.443,10.939,4.296,4.618,4.894,-0.823,3.857,12.401,4.46,9.755,-0.366,12.087,13.222,13.81,7.455,14.819,-3.848,-1.661,7.661,6.392,8.107,-6.541,12.814,14.69,8.277,5.438,20.356,-2.747,20.237,-2.177,-6.594,-5.331,23.698,7.442,18.115,-6.149,14.164,22.179,17.944,20.875,-1.898,21.761,26.209,14.438,6.414,2.642,-2.694,11.688,20.696,21.666,2.403,9.165,4.676,21.556,11.849,19.709,-0.208,-1.077,10.794,23.655,12.146,25.064,3.601,4.389,-1.164,6.474,3.96,20.811,23.625,20.07,2.316,13.129],[31.58,26.891,13.867,14.764,11.624,13.269,9.062,-1.309,5.88,16.903,27.055,37.787,11.258,1.904,14.602,18.44,14.136,20.575,17.028,14.171,3.692,2.537,20.658,19.266,10.05,3.837,5.759,22.247,10.207,5.267,0.207,12.603,3.474,12.066,9.221,-2.427,-3.608,8.845,15.843,-6.847,-2.577,6.047,6.188,12.685,-5.564,19.608,23.025,22.43,19.632,13.278,4.91,-1.968,4.096,25.46,21.896,10.144,3.031,11.207,0.07,7.984,19.564,3.994,22.457,18.919,25.725,15.602,4.841,14.955,6.863,2.783,10.226,-1.495,31.689,16.42,9.916,28.253,28.068,-2.504,28.019,32.234,11.583,13.352,15.349,10.524,12.194,11.639,13.38,39.798,9.177,18.372,12.568,37.519,3.287,15.69,18.626,20.0,17.24,13.928,22.125,10.943,3.414,21.114,17.659,15.854,13.141,3.445,10.656,17.63,1.945,19.323,5.561,9.229,13.707,22.162,21.749,3.57,19.065,1.022,24.094,3.55,7.556,10.306,4.71,4.79,4.92,-0.943,3.923,12.434,4.089,9.78,0.26,12.254,13.677,13.682,7.962,15.057,-3.503,-1.869,7.315,6.942,7.796,-6.146,13.169,15.079,8.302,5.427,20.204,-2.624,20.269,-1.965,-6.054,-5.593,23.829,6.871,18.05,-6.732,14.299,22.306,17.893,20.707,-2.494,21.763,26.039,14.191,6.611,2.416,-2.769,11.59,20.701,21.27,2.559,9.325,5.302,21.616,11.329,19.413,-0.761,-0.707,11.026,23.956,11.783,25.594,3.459,4.441,-1.36,6.628,4.027,20.621,23.681,19.948,1.761,12.578],[31.828,26.746,13.765,15.072,11.686,13.441,9.022,-1.312,5.702,16.773,27.174,37.809,11.47,1.92,14.45,18.302,14.034,20.548,17.411,14.444,3.842,2.562,20.882,19.212,10.134,3.881,5.748,22.046,10.257,5.342,0.195,12.64,3.516,12.083,9.012,-2.498,-3.485,9.034,15.956,-6.876,-2.881,5.991,6.089,12.829,-5.95,19.465,23.001,22.17,19.592,13.002,5.054,-2.016,4.165,25.779,21.982,10.128,3.189,10.917,0.042,8.055,19.285,4.311,22.362,18.843,25.613,15.408,4.945,15.041,7.003,2.787,10.454,-1.615,31.89,16.805,9.61,27.964,27.445,-2.776,28.384,32.563,12.034,12.733,14.831,10.646,12.024,11.183,12.916,39.683,9.105,18.435,12.887,36.898,3.19,15.515,18.78,19.882,16.8,13.494,22.192,11.231,4.139,21.182,18.031,15.709,13.109,3.47,10.604,18.085,2.173,19.006,5.81,10.056,13.945,22.171,21.833,3.817,19.196,0.722,23.843,4.152,7.537,10.531,4.259,4.957,5.176,-1.221,4.241,12.129,4.498,9.642,0.112,12.633,13.407,13.632,8.062,15.13,-3.576,-1.531,7.043,7.008,7.158,-6.312,13.239,14.82,8.419,5.427,19.575,-2.684,19.7,-1.878,-6.224,-5.551,23.606,6.848,18.169,-6.601,14.545,22.436,17.628,20.59,-2.633,21.7,25.969,14.28,6.725,3.101,-2.942,11.625,20.242,21.621,2.619,9.504,5.054,21.421,11.393,19.148,-0.518,-1.282,11.265,24.101,11.514,25.475,3.511,4.93,-1.373,6.479,4.171,19.985,23.862,20.008,1.792,12.24],[32.051,26.579,13.694,14.892,11.659,13.671,9.01,-1.291,5.609,16.626,27.24,37.764,11.668,1.833,14.258,18.09,13.711,20.555,17.618,14.653,4.04,2.619,20.903,19.107,10.178,4.009,5.588,21.901,10.44,5.49,0.235,12.609,3.57,12.105,8.946,-2.377,-3.407,9.2,16.037,-6.877,-3.055,5.934,6.076,13.004,-6.405,19.28,22.873,22.131,19.546,12.645,5.309,-2.141,4.374,25.832,22.05,10.227,3.391,10.537,0.039,7.976,19.344,4.584,22.184,18.756,25.143,15.207,4.611,15.109,6.437,2.221,10.947,-1.557,32.446,16.561,9.821,28.155,27.525,-2.941,28.512,33.108,12.471,12.663,14.552,10.885,11.928,11.893,13.27,39.569,9.37,18.052,12.781,36.621,3.231,14.95,18.826,20.04,16.378,13.818,21.617,11.189,4.515,21.219,18.69,15.314,13.186,3.506,10.531,18.43,2.163,19.049,5.667,10.908,14.757,22.021,21.53,3.774,19.501,1.609,23.704,4.135,7.198,11.132,4.11,5.021,5.601,-0.89,4.303,12.324,4.406,8.913,-0.319,13.043,13.556,13.436,8.023,14.887,-3.913,-1.682,7.116,6.33,7.487,-6.311,13.614,14.735,8.7,5.477,19.758,-2.523,19.917,-2.533,-6.654,-5.239,23.126,7.522,18.008,-6.866,14.614,22.189,17.455,20.36,-2.965,21.626,26.719,14.07,6.927,3.102,-2.909,11.065,20.63,22.329,2.799,9.437,5.158,21.363,11.677,19.603,-0.404,-1.188,11.136,23.914,11.178,25.823,3.825,4.863,-0.995,6.696,4.294,19.517,23.687,20.152,2.081,12.124],[32.299,26.502,13.617,14.514,11.8,13.941,9.1,-1.357,5.478,16.366,27.395,37.65,11.812,1.742,14.088,17.956,13.435,20.608,17.702,14.691,4.188,2.627,20.71,19.126,10.205,4.023,5.415,21.776,10.646,5.716,0.442,12.599,3.574,12.083,9.173,-2.104,-3.285,9.323,15.929,-6.841,-3.27,5.967,6.126,13.205,-6.724,19.342,22.67,22.0,19.569,12.364,5.61,-2.209,4.399,25.839,22.067,10.399,3.55,10.199,0.143,7.919,19.446,4.832,22.142,18.754,24.994,15.126,4.368,14.647,6.305,1.88,10.607,-1.301,32.224,16.214,9.746,28.201,27.687,-2.901,28.633,33.07,12.916,12.823,14.855,10.563,11.975,12.542,13.757,39.586,9.378,17.986,12.616,37.206,3.377,14.713,18.864,19.664,16.49,13.408,21.795,11.359,4.259,20.981,18.695,15.258,13.309,3.519,10.729,17.863,2.244,18.986,5.606,10.793,14.682,22.027,21.418,3.969,19.081,1.606,23.723,4.166,7.377,11.487,4.144,5.023,5.464,-0.538,4.003,12.545,3.873,8.822,-0.138,12.645,13.515,13.298,8.345,15.37,-4.388,-1.791,7.347,5.916,7.784,-6.896,13.694,15.241,8.959,5.259,20.153,-2.453,20.162,-2.885,-6.716,-5.101,23.644,7.649,17.817,-7.606,14.836,22.232,17.466,20.373,-2.661,21.035,26.791,13.715,7.295,3.243,-2.909,10.705,20.553,22.2,3.236,8.972,5.653,21.01,11.474,19.131,-0.511,-0.913,11.354,23.528,10.849,25.697,3.613,4.6,-1.121,6.745,4.745,19.919,23.837,19.779,2.329,11.839],[32.302,26.444,13.634,14.179,12.053,14.285,9.195,-1.388,5.198,16.249,27.557,37.598,11.734,1.756,14.026,17.855,13.375,20.642,17.715,14.551,4.109,2.638,20.449,19.075,10.26,4.056,5.402,21.774,10.902,5.893,0.674,12.74,3.404,11.901,9.371,-1.903,-3.204,9.532,15.917,-6.868,-3.397,5.984,6.163,13.414,-7.147,19.58,22.467,21.975,19.565,12.367,5.837,-2.235,4.319,25.796,22.075,10.468,3.715,10.073,0.284,7.799,19.31,5.076,22.084,18.573,25.125,14.697,4.292,14.119,6.698,2.157,10.507,-1.673,31.548,16.024,9.305,28.265,27.366,-2.915,29.048,33.542,13.132,12.962,14.875,11.057,12.199,12.185,13.522,39.364,9.276,17.957,12.396,37.262,3.354,14.646,19.183,19.633,16.355,13.01,21.9,11.508,4.286,21.048,18.476,15.141,13.412,3.577,11.014,17.447,2.5,18.818,6.122,10.206,13.812,22.275,21.372,3.952,18.802,1.315,23.625,4.574,7.211,11.442,4.029,4.815,5.772,-0.258,4.245,12.193,4.027,9.644,0.366,12.307,12.586,13.633,8.451,15.198,-4.448,-1.438,7.481,5.979,7.497,-6.851,13.194,14.786,9.17,5.351,20.337,-2.271,19.989,-2.905,-6.491,-5.219,23.474,7.694,17.68,-7.307,15.173,21.909,17.732,20.693,-2.809,21.251,26.224,13.622,7.582,3.175,-3.003,10.562,20.375,21.661,3.453,8.474,5.671,21.21,11.604,19.03,-0.637,-0.985,11.605,23.776,10.754,25.647,3.833,5.123,-1.506,6.811,4.871,20.439,23.892,19.648,2.654,11.637],[32.184,26.347,13.681,13.836,12.277,14.471,9.181,-1.391,5.009,16.261,27.682,37.438,11.445,1.922,14.0,17.74,13.425,20.695,17.775,14.276,3.97,2.658,20.232,18.921,10.344,4.069,5.405,21.828,11.141,6.124,0.831,12.661,3.261,11.803,9.497,-1.79,-3.204,9.828,15.937,-6.958,-3.372,6.012,6.283,13.505,-7.538,19.655,22.422,22.069,19.578,12.475,5.906,-2.254,4.367,25.715,22.068,10.452,3.905,10.052,0.333,7.616,19.201,5.243,22.115,18.311,24.945,14.947,4.083,14.013,6.559,2.563,10.939,-1.985,31.24,15.537,9.729,28.522,27.387,-2.996,29.03,33.429,13.808,12.709,14.748,11.132,12.1,12.22,13.485,39.319,9.368,17.803,12.582,36.774,2.991,15.024,18.905,19.605,16.318,13.795,21.448,11.689,4.167,20.81,18.856,14.933,13.309,3.734,11.285,17.366,2.286,18.602,6.362,10.409,14.089,22.485,21.583,3.424,18.748,1.532,23.639,4.546,7.243,11.153,4.698,4.956,6.214,-0.23,3.911,12.207,3.894,9.94,0.151,11.985,13.349,13.483,8.423,14.961,-3.563,-1.248,7.589,5.642,7.249,-6.599,13.507,14.9,9.291,5.449,19.887,-2.472,19.95,-2.856,-6.518,-5.532,23.398,7.385,17.794,-7.104,15.238,21.605,17.989,20.407,-3.314,21.302,26.377,13.801,7.662,2.89,-3.354,10.883,20.204,21.404,3.531,8.751,5.808,21.481,11.522,19.294,-0.361,-0.908,11.866,23.886,11.072,25.578,4.173,5.59,-1.186,6.29,4.895,20.071,23.793,19.496,3.07,11.324],[32.096,26.178,13.666,13.504,12.331,14.631,9.202,-1.464,4.96,16.395,27.756,37.347,11.224,2.029,13.811,17.75,13.455,20.7,17.91,14.199,3.849,2.638,20.112,18.602,10.559,4.017,5.535,21.78,11.177,6.436,0.986,12.537,3.142,11.803,9.625,-1.883,-3.185,10.069,16.057,-7.148,-3.348,6.016,6.401,13.655,-7.795,19.527,22.346,22.102,19.622,12.577,5.864,-2.269,4.51,25.703,21.981,10.383,4.159,10.102,0.419,7.469,19.086,5.306,22.254,18.248,24.543,15.378,3.912,13.734,5.989,2.898,10.265,-1.645,31.086,15.002,9.752,28.934,27.437,-2.978,29.018,33.325,13.847,12.802,14.903,11.335,11.949,12.641,13.953,39.031,8.985,17.977,12.4,36.075,3.31,14.783,18.946,19.65,16.171,13.92,21.007,11.916,3.924,21.189,18.905,15.159,12.897,4.011,11.732,17.547,2.271,18.248,6.3,10.671,14.328,22.244,21.631,3.527,18.441,1.762,23.68,4.114,7.354,11.38,4.671,5.206,6.136,-0.611,3.919,12.139,3.677,9.922,-0.259,12.384,13.736,12.95,9.049,14.923,-2.821,-0.932,7.794,5.949,7.672,-7.031,13.4,14.699,9.49,5.333,19.993,-2.236,19.945,-2.314,-6.829,-5.451,23.548,7.277,17.693,-7.451,15.419,21.775,17.737,20.532,-3.16,20.689,26.519,14.008,7.63,3.417,-2.822,11.085,20.265,21.635,3.595,8.819,6.08,21.732,11.125,18.826,-0.284,-1.068,11.701,24.048,11.162,25.612,3.869,5.253,-0.8,6.067,5.545,19.647,23.687,19.381,3.187,11.257],[32.103,26.0,13.693,13.211,12.334,14.722,9.031,-1.464,4.908,16.53,27.842,37.271,11.015,2.129,13.545,17.806,13.297,20.788,18.021,14.241,3.702,2.692,20.047,18.247,10.806,3.965,5.766,21.581,11.124,6.656,1.107,12.557,3.12,12.017,9.784,-2.06,-3.039,10.289,16.045,-7.297,-3.192,6.112,6.48,13.908,-7.99,19.404,22.075,22.162,19.675,12.657,5.727,-2.146,4.618,25.715,21.86,10.169,4.498,10.135,0.558,7.387,19.004,5.299,22.465,18.359,24.637,15.513,3.992,13.391,6.049,2.796,10.087,-1.474,30.813,14.807,9.44,28.739,26.915,-3.263,29.024,33.303,13.767,12.726,14.711,11.402,11.99,12.836,13.852,39.0,9.084,18.235,12.056,36.122,3.422,13.704,19.482,18.977,16.224,13.464,20.55,11.755,3.934,21.515,18.763,14.966,13.109,4.058,11.587,18.007,2.087,18.274,6.747,11.18,13.775,22.255,21.592,3.573,18.655,2.183,23.428,3.735,7.559,11.135,4.137,5.415,6.455,-0.599,4.033,12.057,3.906,9.723,0.078,13.035,12.725,12.213,9.645,15.09,-3.113,-1.185,8.046,6.663,7.589,-7.138,13.618,14.921,9.136,5.359,20.418,-2.373,19.489,-2.428,-7.3,-5.548,23.611,7.393,17.917,-8.194,15.586,22.015,17.591,20.606,-2.986,20.62,26.481,14.047,7.559,3.407,-2.549,10.918,20.213,21.674,3.753,8.791,5.754,21.366,11.424,18.781,-0.337,-0.804,11.25,24.024,11.125,25.969,3.853,5.235,-0.843,6.181,6.002,19.817,23.64,19.695,3.089,11.418],[32.158,25.847,13.588,13.165,12.323,14.624,8.716,-1.357,4.987,16.549,27.908,37.252,10.751,2.292,13.173,17.833,13.065,20.953,18.149,14.161,3.503,2.805,19.947,18.033,10.93,3.836,5.908,21.353,11.056,6.854,1.252,12.44,3.162,12.218,9.936,-2.145,-2.872,10.476,16.034,-7.323,-2.927,6.255,6.632,14.054,-8.218,19.21,21.858,22.178,19.832,12.564,5.661,-2.043,4.643,25.719,21.695,9.878,4.836,9.926,0.784,7.364,19.023,5.227,22.566,18.6,24.51,15.716,4.123,13.318,6.047,3.081,9.692,-1.696,30.864,14.93,9.213,28.496,27.14,-2.971,29.407,33.171,13.314,12.83,14.881,11.517,12.349,12.975,13.991,39.031,9.343,18.413,11.719,36.638,3.306,13.375,19.454,18.654,16.12,13.271,20.639,11.968,4.094,21.088,19.035,14.817,13.388,3.927,10.79,17.958,2.269,17.723,6.911,12.076,14.128,22.635,21.146,3.744,18.469,2.415,23.154,3.407,7.861,11.057,4.063,5.559,7.096,-0.396,4.009,12.11,3.698,9.662,0.285,13.68,12.975,11.851,9.508,15.572,-3.846,-1.805,8.288,6.052,7.668,-7.06,14.508,15.325,9.268,5.354,20.234,-2.122,19.504,-2.216,-7.208,-5.724,23.381,7.782,18.149,-8.212,15.591,21.668,17.42,20.654,-3.028,20.522,26.689,13.947,7.229,3.352,-2.9,10.92,20.039,21.792,3.487,8.827,5.817,21.254,11.401,19.078,-0.347,-0.235,10.458,24.045,11.226,25.989,4.18,5.367,-0.822,6.207,5.51,20.133,23.466,19.765,3.355,11.108],[32.291,25.838,13.709,13.493,12.343,14.414,8.395,-1.122,5.054,16.637,27.965,37.39,10.543,2.491,12.94,17.701,13.069,21.004,18.308,14.154,3.33,2.904,19.906,18.002,11.102,3.797,5.917,21.148,11.003,7.064,1.365,12.403,3.096,12.286,9.998,-2.115,-2.808,10.515,16.105,-7.112,-2.62,6.278,6.683,14.163,-8.441,18.826,21.798,22.049,19.856,12.337,5.62,-2.101,4.734,25.795,21.566,9.492,4.927,9.601,1.106,7.323,19.097,5.125,22.513,18.837,24.304,15.297,3.912,13.415,6.104,3.376,9.56,-1.812,30.947,14.827,9.203,28.485,27.252,-2.56,29.585,33.154,13.068,12.165,14.809,11.663,12.109,12.564,14.055,39.107,8.344,18.302,11.664,36.171,3.936,13.93,19.02,19.091,16.224,12.981,21.026,11.943,3.78,20.852,19.423,14.855,13.025,3.616,10.863,17.781,2.035,17.698,7.256,12.303,13.685,22.824,20.98,4.269,18.643,2.237,22.994,3.306,7.67,11.145,4.452,5.555,7.028,-0.476,4.345,11.928,3.314,10.145,0.668,13.014,12.96,12.088,9.434,15.001,-3.71,-2.177,8.369,6.034,7.835,-6.9,14.508,14.794,9.501,5.364,20.339,-1.81,19.681,-1.74,-6.944,-5.463,23.418,7.667,17.879,-7.94,15.866,20.862,17.598,20.324,-2.828,20.525,26.375,13.868,7.393,3.571,-3.245,10.607,20.217,21.414,3.405,8.639,5.85,21.757,10.918,19.619,0.279,-0.156,10.278,24.211,11.04,25.466,4.305,5.422,-0.804,6.359,5.411,20.12,23.391,19.427,4.239,10.966],[32.455,25.816,13.882,13.862,12.275,14.312,7.951,-0.841,5.079,16.604,27.965,37.255,10.427,2.737,12.836,17.558,13.125,21.011,18.359,14.039,3.271,2.991,19.938,18.216,11.19,3.873,5.75,21.009,10.975,7.234,1.609,12.373,3.033,12.355,10.051,-2.089,-2.626,10.504,15.97,-6.745,-2.132,6.102,6.656,14.22,-8.55,18.501,21.786,21.885,19.738,12.175,5.687,-2.328,4.926,25.753,21.452,9.104,5.063,9.518,1.305,7.279,19.227,5.17,22.36,19.064,24.553,15.411,3.762,14.188,6.115,3.21,9.847,-1.318,31.183,14.919,8.575,28.581,26.941,-2.496,29.578,33.247,13.125,11.629,14.933,11.557,12.329,12.634,13.488,38.851,7.772,18.194,11.736,35.943,4.268,13.675,19.41,18.928,15.753,13.263,21.274,12.136,3.095,21.139,19.488,14.822,13.091,3.974,11.42,17.711,2.256,18.183,7.354,12.183,13.697,22.874,20.891,4.259,18.491,1.892,22.877,3.559,7.653,10.976,4.21,5.207,6.686,-0.65,3.921,11.811,3.554,10.598,0.385,12.53,13.329,11.876,9.442,15.358,-3.595,-1.479,8.044,6.491,7.372,-7.166,13.862,14.907,9.342,5.327,20.319,-1.913,19.346,-1.791,-6.874,-5.128,23.373,7.574,17.91,-8.073,15.897,21.289,16.937,20.499,-2.653,20.444,26.47,13.742,7.401,3.482,-3.158,10.113,20.336,21.114,3.623,8.324,5.856,21.74,10.045,19.472,0.551,0.07,10.343,24.057,10.723,25.68,4.38,5.152,-1.149,5.97,5.863,19.808,23.219,19.525,4.268,10.982],[32.54,25.637,14.049,14.069,12.088,14.302,7.51,-0.715,5.106,16.566,27.789,36.935,10.45,2.795,12.73,17.476,13.114,21.176,18.343,13.935,3.277,3.104,20.078,18.47,11.093,3.975,5.489,20.979,10.958,7.219,1.72,12.476,2.956,12.278,10.143,-1.99,-2.343,10.433,15.946,-6.505,-1.661,5.802,6.77,14.085,-8.605,18.269,21.889,21.875,19.595,12.179,5.757,-2.64,5.086,25.642,21.321,8.944,5.346,9.546,1.297,7.175,19.355,5.428,22.117,19.217,24.292,15.232,4.094,14.224,5.79,3.727,9.377,-0.814,31.48,15.912,8.31,28.456,26.898,-2.421,29.361,33.641,13.056,11.598,14.93,11.269,12.395,13.024,13.408,38.797,7.516,18.058,11.577,36.006,3.83,13.594,19.756,19.31,15.661,13.787,20.941,12.398,3.06,21.382,19.329,14.61,12.737,4.37,11.236,17.859,2.193,18.124,6.994,12.048,14.393,22.618,20.939,4.016,18.484,2.354,22.74,3.915,7.385,11.113,4.326,4.89,6.838,-0.698,3.219,11.625,3.944,10.312,0.301,13.415,13.415,11.685,9.386,15.463,-3.642,-0.797,8.421,6.094,7.142,-7.353,14.094,14.853,9.257,4.928,19.999,-1.957,18.728,-1.733,-6.604,-4.882,22.966,7.583,17.802,-8.044,15.744,22.0,16.389,20.656,-2.331,20.405,26.526,13.802,7.537,3.772,-3.257,10.35,20.311,21.374,3.863,8.541,6.212,21.114,10.007,18.978,0.045,0.292,10.304,23.765,11.093,26.187,4.66,5.383,-1.423,5.81,5.837,19.497,23.148,19.935,3.846,10.751],[32.637,25.41,14.256,14.404,11.913,14.239,7.14,-0.685,5.076,16.467,27.493,36.825,10.463,2.849,12.584,17.498,13.061,21.326,18.365,13.844,3.261,3.21,20.142,18.551,10.89,3.819,5.273,21.024,10.818,7.123,1.754,12.671,2.771,12.276,10.207,-1.748,-2.122,10.25,16.033,-6.496,-1.404,5.459,6.878,13.936,-8.629,18.055,22.061,21.755,19.482,12.368,5.826,-2.766,5.343,25.659,21.382,9.131,5.523,9.525,1.353,7.254,19.229,5.738,21.848,19.281,24.027,15.084,3.765,13.718,5.518,4.006,9.099,-0.78,31.791,16.191,8.495,28.322,26.697,-2.291,28.865,33.782,13.043,12.395,15.209,11.331,12.574,12.597,14.098,38.654,7.09,18.18,11.178,35.864,3.462,13.633,19.403,19.516,15.86,13.713,20.748,11.793,3.768,21.736,19.462,14.386,12.323,4.616,11.222,17.654,2.343,17.98,6.791,11.893,14.227,23.084,20.916,3.896,19.1,2.584,22.843,3.913,7.045,11.159,4.613,5.262,6.897,-0.496,3.257,11.349,3.673,10.028,0.241,13.463,12.87,11.529,9.314,14.836,-3.273,-0.96,8.532,6.496,6.889,-7.109,14.253,14.761,9.063,4.774,19.953,-1.415,18.574,-1.067,-6.155,-4.806,23.469,7.328,17.571,-8.263,15.796,21.58,16.366,20.656,-1.911,20.791,26.268,14.061,7.592,3.873,-3.459,10.611,20.558,21.345,4.016,8.916,6.176,20.637,10.282,18.959,0.319,0.057,9.904,23.39,11.349,25.94,4.737,5.849,-1.208,6.017,6.35,19.698,23.188,19.923,4.063,10.953],[32.801,25.168,14.408,14.552,11.866,14.206,6.825,-0.673,4.893,16.483,27.19,36.874,10.413,2.828,12.593,17.54,12.904,21.668,18.397,13.647,3.317,3.297,20.205,18.389,10.633,3.682,5.213,21.137,10.507,6.977,1.667,12.77,2.624,12.335,10.155,-1.643,-1.913,10.027,15.962,-6.543,-1.179,5.175,6.985,13.919,-8.674,17.972,22.106,21.856,19.379,12.704,6.027,-2.593,5.616,25.724,21.557,9.321,5.745,9.639,1.45,7.539,19.014,5.847,21.76,19.258,24.023,15.068,3.508,14.073,5.632,3.865,8.833,-0.873,32.046,16.408,7.859,28.033,26.338,-2.361,28.666,33.224,12.789,12.447,15.492,11.3,12.889,12.123,13.826,38.525,7.056,17.997,11.246,35.752,4.061,13.282,19.338,19.025,15.937,13.138,20.548,11.229,4.196,21.6,19.752,14.513,12.754,4.542,11.354,17.209,2.242,18.286,6.825,11.979,13.606,23.329,20.59,4.361,18.778,2.733,23.081,3.164,7.092,11.142,4.0,5.012,7.121,-0.163,3.314,11.415,3.303,10.254,0.522,13.28,13.215,11.229,8.986,15.868,-3.178,-1.396,8.192,6.655,6.624,-7.087,14.058,15.293,8.915,4.555,19.934,-0.948,18.576,-0.825,-6.601,-4.753,23.406,7.297,17.584,-8.375,15.529,21.573,16.351,20.242,-1.729,20.702,26.162,14.354,7.496,3.956,-3.199,10.324,20.109,21.165,4.336,9.056,6.197,20.368,10.81,19.739,0.123,0.628,9.808,22.976,11.394,25.635,5.039,5.718,-0.879,6.143,6.558,19.72,23.37,19.535,4.435,11.247],[32.865,25.028,14.516,14.349,11.904,13.953,6.573,-0.697,4.581,16.49,27.01,36.948,10.289,2.976,12.712,17.523,12.795,21.858,18.565,13.459,3.374,3.486,20.201,18.156,10.495,3.548,5.179,21.193,10.254,6.896,1.716,12.859,2.609,12.272,10.155,-1.801,-1.741,9.811,16.053,-6.421,-0.896,4.923,7.063,13.817,-8.847,17.903,22.057,21.935,19.316,12.848,6.16,-2.295,5.651,25.798,21.642,9.429,5.871,9.856,1.612,7.706,18.957,5.827,21.702,19.175,23.676,15.21,3.435,14.968,5.445,3.863,8.949,-1.057,32.359,16.069,7.654,27.984,26.003,-2.29,28.16,33.63,12.709,11.964,15.27,11.131,13.137,12.698,13.32,38.815,7.241,18.193,11.55,35.757,4.28,13.19,19.661,19.207,16.106,12.639,20.545,11.484,4.273,22.064,19.788,14.622,12.569,4.188,10.883,17.104,2.132,18.526,7.098,11.572,13.714,23.613,20.569,4.638,18.708,2.354,23.119,2.602,7.104,10.637,3.894,4.665,6.936,-0.312,3.042,12.106,3.32,10.269,0.547,13.168,13.386,11.471,8.862,15.778,-3.274,-1.227,8.322,6.048,6.627,-7.294,13.843,14.887,8.631,4.288,20.195,-0.605,18.647,-1.011,-6.99,-4.687,23.239,8.227,17.394,-8.313,15.383,21.946,16.405,20.501,-1.666,20.333,25.992,14.704,7.819,4.007,-3.175,10.081,20.08,21.557,4.419,9.469,6.043,20.366,10.893,19.874,0.007,1.043,10.339,22.865,11.902,25.925,5.43,5.711,-0.885,6.34,6.587,19.124,23.457,20.156,4.943,11.495],[32.984,24.913,14.572,14.174,12.109,13.516,6.515,-0.772,4.268,16.495,26.861,36.964,10.203,3.333,12.815,17.562,12.857,22.023,18.763,13.447,3.345,3.66,20.201,18.203,10.581,3.461,5.056,21.139,10.081,6.824,1.803,12.936,2.608,12.119,10.274,-2.095,-1.64,9.67,16.154,-6.123,-0.602,4.777,7.061,13.663,-9.0,17.805,21.983,22.029,19.199,12.735,6.089,-2.024,5.559,25.786,21.709,9.506,5.999,9.878,1.724,7.735,18.93,5.719,21.687,19.117,23.653,15.187,3.145,14.174,5.133,4.024,8.968,-1.23,32.556,15.907,7.851,28.084,26.051,-2.427,27.761,34.284,12.531,11.932,15.218,11.597,12.802,12.736,13.347,38.683,7.067,18.16,11.211,35.765,4.541,13.519,19.684,19.233,15.922,12.694,20.66,11.853,4.113,22.322,19.891,14.681,11.868,3.973,10.503,17.816,2.21,18.195,7.0,11.176,13.873,23.453,20.973,4.969,19.208,2.358,23.015,2.893,6.835,9.988,4.153,4.908,6.811,-0.752,2.98,12.772,3.207,10.1,0.98,13.21,13.174,12.176,8.523,15.24,-3.036,-1.052,8.609,6.332,6.466,-7.645,13.819,14.946,8.812,3.908,20.247,-0.468,18.15,-0.754,-6.24,-4.558,23.391,8.863,17.515,-8.345,15.556,21.82,16.141,21.206,-1.463,20.248,26.625,14.566,7.801,3.911,-2.827,10.217,19.954,21.843,4.389,9.42,5.281,20.149,10.705,19.253,0.896,0.548,10.659,23.087,11.907,26.368,5.115,6.216,-1.531,6.669,6.563,19.446,23.509,20.3,4.542,11.482],[33.299,24.751,14.477,14.046,12.517,13.111,6.688,-0.798,4.22,16.542,26.806,36.806,10.076,3.619,12.896,17.63,13.043,22.194,18.74,13.363,3.276,3.777,20.212,18.383,10.682,3.468,4.875,21.078,9.811,6.668,1.841,12.985,2.6,12.008,10.445,-2.268,-1.652,9.663,16.129,-5.755,-0.341,4.696,7.117,13.726,-9.013,17.623,21.951,22.397,19.15,12.676,5.957,-1.865,5.478,25.845,21.747,9.486,6.002,9.586,1.716,7.744,19.037,5.462,21.704,18.952,23.633,15.111,2.858,13.583,5.325,4.728,8.792,-1.03,32.275,15.955,7.668,27.885,26.119,-2.534,27.888,33.885,11.884,12.208,15.487,11.73,12.706,12.289,12.992,38.678,7.001,17.897,10.721,36.017,4.787,13.802,19.607,19.304,15.932,13.066,20.856,11.939,3.837,22.359,20.074,14.669,11.957,4.554,10.581,18.179,2.642,17.759,6.513,11.356,13.946,23.804,20.858,4.863,19.32,2.847,22.946,3.333,6.663,10.392,3.904,4.462,6.562,-0.801,2.995,12.901,3.081,10.215,1.472,13.517,13.592,12.053,8.449,15.74,-3.001,-1.554,8.639,6.349,6.334,-7.514,13.64,15.464,9.059,3.847,19.85,0.053,17.867,-0.73,-5.609,-4.218,23.922,8.978,17.347,-8.528,15.475,21.717,15.793,20.813,-1.298,20.411,26.24,14.283,7.608,4.176,-2.641,10.013,20.027,21.414,4.268,9.479,5.205,20.264,10.672,18.412,0.717,0.658,10.502,22.87,11.225,26.046,4.737,6.115,-1.916,6.603,6.796,20.048,23.546,20.177,4.661,11.353],[33.419,24.688,14.387,14.081,12.769,12.788,6.802,-0.582,4.437,16.616,26.83,36.805,9.944,3.861,13.002,17.66,13.17,22.389,18.593,13.185,3.148,3.865,20.2,18.458,10.649,3.631,4.557,21.023,9.682,6.405,2.015,13.146,2.605,11.918,10.547,-2.328,-1.68,9.747,16.186,-5.39,-0.298,4.736,7.107,13.762,-8.851,17.464,21.921,22.675,18.937,12.701,5.914,-1.952,5.531,25.78,21.752,9.392,5.944,9.296,1.641,7.85,19.222,5.213,21.698,18.638,23.504,15.185,3.024,13.613,5.296,4.82,8.59,-0.85,31.938,15.904,7.391,28.008,25.837,-2.23,28.086,33.898,11.561,12.574,15.267,12.014,13.091,12.6,12.57,38.653,7.796,18.072,10.683,35.878,4.984,13.375,19.526,19.62,16.229,13.219,21.164,11.898,3.741,22.486,19.762,14.863,11.875,4.977,10.627,17.143,2.219,18.207,6.694,11.778,13.542,24.203,20.541,4.434,19.11,2.975,22.891,3.423,6.512,10.346,3.809,4.383,6.202,-0.875,3.153,12.693,3.223,10.412,1.042,13.647,13.267,11.415,8.75,15.723,-2.484,-2.011,8.731,6.188,6.314,-7.296,13.494,15.152,8.534,4.118,20.064,0.04,18.184,-0.409,-5.707,-3.824,24.349,8.857,17.71,-8.682,15.587,21.988,15.873,21.288,-1.109,20.432,25.523,14.546,7.531,4.201,-2.669,9.749,20.06,20.733,3.677,9.666,5.43,20.112,10.617,18.331,-0.004,1.069,10.505,22.104,11.598,26.146,4.566,5.504,-1.214,6.618,7.042,19.992,23.538,19.79,4.777,10.694],[33.371,24.612,14.371,14.227,12.799,12.57,6.802,-0.342,4.655,16.707,26.949,36.855,9.928,4.1,13.032,17.709,13.24,22.63,18.476,12.954,3.001,3.926,20.209,18.515,10.581,3.745,4.319,20.946,9.703,6.262,2.211,13.24,2.657,11.735,10.604,-2.339,-1.731,9.742,16.223,-5.164,-0.459,4.918,7.09,13.757,-8.704,17.378,21.868,22.751,18.825,12.826,5.868,-2.031,5.562,25.558,21.655,9.378,5.894,9.047,1.611,8.012,19.269,5.054,21.502,18.29,23.375,15.488,3.589,13.723,5.214,4.51,8.574,-0.715,31.916,16.009,7.051,28.265,25.612,-2.086,27.368,34.289,11.517,12.534,15.123,12.107,12.743,13.43,12.202,38.404,7.939,18.4,11.083,35.467,5.362,13.847,19.445,19.637,16.99,12.723,21.489,11.488,3.703,22.55,19.438,15.051,11.858,4.698,10.376,16.18,2.331,18.632,6.728,11.737,13.001,24.305,20.373,4.052,18.811,2.995,22.793,3.253,5.961,9.653,3.877,4.451,6.004,-0.801,3.31,12.667,3.42,10.407,1.193,13.541,13.456,11.729,8.908,15.674,-2.129,-2.244,9.063,6.302,6.639,-7.216,14.042,15.035,8.47,4.249,20.179,0.086,18.452,0.086,-5.747,-3.613,24.48,8.733,17.68,-8.367,15.364,21.452,15.981,21.805,-1.027,20.302,25.747,14.624,7.621,4.183,-2.883,9.902,20.286,20.865,3.616,9.646,4.976,19.872,10.528,18.406,0.523,0.498,10.614,22.297,12.505,26.342,4.69,5.924,-0.435,6.789,6.73,20.436,23.518,19.265,4.304,10.486],[33.357,24.47,14.332,14.319,12.8,12.362,6.559,-0.227,4.743,16.757,26.901,36.928,10.083,4.274,13.028,17.807,13.225,22.854,18.38,12.745,2.902,4.011,20.185,18.393,10.463,3.746,4.247,20.958,9.634,6.284,2.345,13.259,2.763,11.679,10.628,-2.302,-1.725,9.667,16.321,-5.059,-0.713,5.138,7.169,13.917,-8.597,17.359,21.763,22.746,18.93,13.015,5.856,-2.019,5.568,25.363,21.597,9.589,5.795,8.831,1.631,8.099,19.361,4.82,21.274,18.013,23.174,15.668,3.503,14.222,5.753,4.996,8.883,-0.45,32.134,16.213,7.104,28.27,25.642,-1.924,27.594,34.318,11.144,12.556,15.57,12.065,12.878,13.315,12.209,38.319,7.281,18.579,11.208,35.525,5.474,14.131,19.314,19.475,17.679,12.24,21.333,11.615,3.809,22.923,19.569,14.941,11.536,4.142,10.521,16.1,2.892,18.221,6.608,11.218,13.308,24.266,20.476,4.218,18.7,3.669,22.746,2.737,6.056,9.708,3.847,4.268,5.658,-0.694,3.41,12.716,3.407,10.533,1.454,13.142,13.564,12.311,8.479,15.287,-2.216,-1.883,8.778,6.445,6.731,-7.166,14.152,15.152,8.42,4.388,19.981,-0.024,18.272,-0.313,-5.459,-3.458,24.298,8.836,17.642,-8.007,15.458,20.879,15.845,21.794,-1.673,20.478,26.211,14.897,7.661,4.201,-2.239,9.914,20.245,21.023,3.899,9.902,5.205,19.782,10.42,17.987,0.637,0.744,10.819,22.591,12.337,25.905,4.861,6.111,-0.197,7.037,6.641,20.159,23.429,18.123,4.48,10.22],[33.392,24.453,14.359,14.464,12.87,12.113,6.19,-0.194,4.769,16.909,26.816,37.102,10.317,4.372,13.124,17.984,12.965,23.088,18.405,12.676,2.842,4.062,20.153,18.134,10.474,3.747,4.333,21.034,9.52,6.273,2.541,13.287,2.838,11.766,10.518,-2.249,-1.752,9.385,16.222,-5.056,-0.997,5.232,7.268,14.231,-8.538,17.329,21.648,22.672,19.188,13.147,5.88,-1.853,5.605,25.282,21.499,9.869,5.881,8.739,1.695,8.16,19.488,4.69,21.102,17.717,23.077,15.603,3.237,14.302,5.958,5.162,9.035,-0.361,32.707,16.211,7.038,27.987,25.703,-1.812,27.808,34.257,11.28,12.25,15.498,11.857,12.635,12.701,12.296,38.727,7.524,18.394,11.509,35.799,5.359,13.785,19.351,19.272,17.989,12.466,20.776,11.715,3.869,22.774,19.678,14.794,11.249,4.356,10.63,16.251,3.048,17.789,6.595,10.961,13.18,24.43,20.625,4.788,18.723,3.55,22.947,2.326,6.134,9.844,3.811,3.951,5.851,-1.107,3.294,12.785,3.32,10.537,1.327,12.592,13.366,13.007,8.232,15.337,-2.186,-1.183,8.675,6.579,6.421,-7.197,14.037,15.361,8.734,4.496,20.092,0.046,17.977,-1.476,-4.871,-3.596,24.233,8.97,17.37,-7.898,15.819,21.271,15.778,21.341,-1.924,20.228,25.787,14.853,7.254,4.102,-1.999,9.581,19.937,21.306,3.521,9.965,5.489,19.912,10.974,17.683,0.611,0.462,11.083,22.489,11.994,25.795,5.071,5.495,-0.232,7.013,6.708,19.339,23.338,17.56,4.554,9.876],[33.423,24.497,14.195,14.613,12.957,11.93,6.156,-0.26,4.739,17.032,26.682,37.231,10.664,4.349,13.166,18.141,12.639,23.147,18.513,12.671,2.695,4.076,20.288,17.904,10.642,3.783,4.481,21.177,9.383,6.208,2.644,13.277,2.819,11.856,10.393,-2.199,-1.715,9.228,15.945,-5.134,-1.311,5.095,7.36,14.401,-8.579,17.376,21.45,22.592,19.384,13.164,5.714,-1.689,5.61,25.197,21.384,10.223,6.044,8.821,1.47,8.192,19.478,4.728,20.941,17.299,23.458,15.767,3.302,13.894,5.462,5.048,8.916,-0.618,33.106,16.432,6.556,27.768,25.815,-1.932,27.487,34.716,11.504,12.705,15.477,11.847,12.82,13.109,12.265,39.052,7.521,18.406,11.458,36.402,5.418,13.5,19.229,19.194,17.995,12.547,20.426,12.002,3.722,23.072,19.843,14.468,10.921,4.661,10.411,16.702,2.536,17.964,6.833,11.163,13.089,24.825,20.832,5.105,18.715,3.213,23.049,2.357,6.192,9.872,4.052,4.341,6.308,-1.127,3.319,13.191,3.275,10.221,1.403,12.538,13.995,13.27,8.135,14.97,-2.234,-0.915,8.616,6.581,6.497,-7.328,14.621,14.997,8.353,4.182,20.585,0.12,17.696,-1.863,-4.703,-3.476,23.964,9.129,17.746,-8.044,16.18,21.761,15.735,21.244,-2.054,19.892,25.449,14.796,7.302,4.145,-2.177,9.826,20.006,21.321,3.224,9.664,5.077,19.767,11.538,18.296,0.782,0.163,11.272,22.462,11.998,26.037,5.001,5.211,-0.422,6.819,7.272,20.076,23.166,17.915,4.783,9.758],[33.534,24.591,13.871,14.585,13.246,11.889,6.277,-0.494,4.69,17.089,26.439,37.346,10.876,4.194,13.267,18.313,12.518,23.168,18.491,12.598,2.47,3.99,20.332,17.908,10.899,3.79,4.747,21.327,9.306,6.19,2.633,13.344,2.756,11.951,10.349,-2.107,-1.626,9.181,15.58,-5.09,-1.724,4.877,7.48,14.53,-8.631,17.444,21.331,22.563,19.643,13.087,5.561,-1.485,5.51,25.156,21.294,10.477,6.205,8.958,1.204,8.121,19.644,4.774,20.876,16.993,23.361,16.046,3.366,13.767,5.418,5.097,9.393,-0.802,33.141,16.365,6.727,27.746,25.284,-2.022,27.296,34.618,10.957,12.881,15.452,12.052,12.696,13.74,12.331,39.057,7.812,18.79,11.591,36.263,5.749,13.809,19.371,19.344,18.488,11.888,20.779,12.154,3.121,23.267,19.89,14.292,10.797,4.56,9.698,16.585,2.256,17.823,6.9,11.64,13.274,24.847,21.082,4.916,18.763,2.979,23.131,2.862,6.45,10.164,4.17,4.915,6.479,-0.581,3.46,13.259,3.395,9.825,1.734,12.705,13.808,13.121,8.245,14.759,-2.282,-1.445,8.599,6.562,6.523,-7.187,15.024,14.342,8.391,4.192,20.816,0.119,17.728,-1.708,-5.024,-3.48,23.964,9.319,17.887,-8.874,16.139,21.546,15.842,21.011,-1.763,19.736,25.353,14.93,7.538,4.25,-2.888,10.002,20.159,21.006,3.591,9.671,4.854,19.919,11.28,18.577,0.3,0.28,11.743,22.595,12.009,26.0,4.57,5.342,-0.819,6.651,7.557,20.249,23.075,17.477,5.4,10.245],[33.611,24.569,13.651,14.458,13.625,11.83,6.465,-0.789,4.72,17.219,26.234,37.415,10.985,4.1,13.541,18.464,12.553,23.179,18.319,12.525,2.27,3.768,20.133,18.088,11.175,3.703,4.989,21.419,9.184,6.251,2.626,13.327,2.837,11.953,10.322,-2.019,-1.682,9.228,15.237,-5.037,-2.073,4.746,7.61,14.711,-8.691,17.545,21.287,22.508,19.908,13.097,5.63,-1.553,5.286,25.209,21.209,10.623,6.361,9.214,1.276,8.094,19.838,4.826,21.001,16.782,23.145,16.078,3.356,14.132,5.672,4.95,9.832,-1.213,33.072,16.296,7.059,27.561,25.553,-2.463,27.046,34.329,11.031,12.564,15.115,12.546,12.099,13.792,12.304,38.912,7.954,18.83,12.095,36.013,5.411,14.136,19.507,19.59,18.815,11.513,20.804,12.283,3.053,23.036,19.575,14.193,10.727,4.003,9.861,16.728,2.554,17.905,6.494,12.034,13.204,24.737,21.186,4.23,18.661,3.058,23.335,3.048,6.858,10.08,4.378,4.906,6.239,-0.399,3.16,13.207,3.362,9.892,1.402,12.737,13.265,13.225,7.876,14.63,-1.481,-1.756,8.607,6.975,6.282,-7.107,14.392,14.275,8.485,3.98,20.99,0.071,18.244,-2.375,-5.158,-3.546,24.196,9.331,18.284,-9.461,16.047,20.919,15.713,21.439,-2.186,19.819,25.338,14.795,7.307,4.028,-2.309,9.936,20.211,20.676,3.714,9.752,5.255,19.915,11.092,18.266,0.004,0.067,12.212,22.477,11.98,25.616,4.315,5.23,-0.399,6.756,7.568,19.647,23.068,16.747,5.794,10.676],[33.491,24.576,13.511,14.421,13.834,11.701,6.681,-1.035,4.838,17.349,26.098,37.432,11.158,4.041,13.763,18.48,12.443,23.111,18.121,12.514,2.189,3.431,19.744,18.301,11.351,3.689,5.064,21.447,9.173,6.275,2.625,13.14,2.999,11.88,10.214,-2.02,-1.749,9.275,15.093,-5.114,-2.418,4.682,7.68,14.737,-8.825,17.684,21.259,22.519,20.227,13.209,5.75,-1.663,5.068,25.283,21.045,10.781,6.538,9.503,1.505,8.134,19.823,4.878,21.09,16.775,23.604,16.366,3.38,13.983,5.375,4.595,9.781,-1.576,32.995,16.379,7.26,27.443,26.105,-2.648,26.619,34.784,11.019,12.961,15.16,12.828,12.343,14.05,12.34,38.846,7.85,18.892,11.863,36.085,5.041,14.344,19.275,19.472,18.552,11.88,20.44,12.486,3.0,22.718,19.175,14.18,10.947,3.428,9.983,16.828,2.716,18.575,6.535,12.282,12.726,24.659,21.161,3.672,18.163,3.223,23.324,2.919,6.797,9.708,4.148,4.503,5.827,-0.516,3.644,13.229,3.16,10.251,0.956,12.866,13.841,13.085,8.155,13.894,-1.185,-1.498,8.405,7.057,6.159,-7.502,14.675,14.545,8.473,3.507,21.11,-0.186,18.725,-2.155,-5.015,-3.519,24.122,9.217,18.336,-9.162,16.408,20.696,16.013,21.745,-3.026,19.882,25.859,14.931,7.429,3.595,-1.862,9.993,20.267,20.541,3.22,9.835,5.293,19.696,11.409,17.642,0.742,0.068,12.403,22.298,12.082,25.668,4.284,5.523,-0.082,7.141,7.62,20.322,22.98,16.505,5.395,11.009],[33.446,24.84,13.42,14.492,13.926,11.52,6.815,-1.057,4.878,17.6,25.993,37.54,11.192,3.922,13.888,18.299,12.244,22.86,17.96,12.583,2.232,2.977,19.315,18.43,11.38,3.763,4.974,21.403,9.274,6.227,2.593,13.047,3.228,11.854,10.088,-2.085,-1.885,9.381,15.007,-5.302,-2.829,4.623,7.66,14.807,-8.989,17.802,21.322,22.79,20.567,13.41,5.857,-1.786,4.954,25.314,20.942,11.047,6.631,9.644,1.654,8.274,19.821,4.716,21.109,16.926,23.658,16.307,3.788,14.086,5.394,4.729,9.853,-1.78,32.779,16.152,7.93,27.664,25.778,-2.649,26.35,34.725,10.925,13.838,15.052,12.41,12.155,14.377,12.438,39.362,8.296,18.897,11.891,36.374,5.101,14.018,18.968,19.691,18.127,11.985,20.01,12.711,2.153,22.779,19.193,14.056,11.031,3.327,9.754,16.511,2.298,18.811,7.181,11.895,12.299,24.596,21.141,3.305,17.546,3.407,23.249,3.041,6.424,9.969,4.613,4.501,5.988,-0.856,3.913,12.485,3.686,9.658,1.133,12.691,13.58,13.039,8.269,13.861,-1.33,-1.036,8.476,6.91,6.063,-7.721,15.417,14.251,8.753,3.512,21.105,-0.55,18.659,-1.867,-5.012,-3.628,23.939,9.119,19.008,-8.774,16.299,20.678,16.019,21.26,-2.787,20.17,26.101,15.03,7.46,3.853,-1.302,10.686,20.202,20.337,3.364,9.696,5.731,19.785,11.772,17.045,1.129,0.32,12.175,22.48,12.212,25.93,4.733,6.003,-0.135,6.682,7.508,20.062,22.715,16.946,5.354,11.026],[33.478,25.191,13.311,14.586,13.856,11.43,7.027,-1.047,4.859,17.639,26.076,37.709,11.155,3.877,13.925,18.081,12.205,22.551,17.917,12.65,2.28,2.62,19.057,18.493,11.207,3.866,4.852,21.472,9.332,6.274,2.589,12.861,3.469,11.898,9.974,-2.108,-2.065,9.455,14.801,-5.472,-3.056,4.545,7.631,15.025,-9.079,17.778,21.437,23.064,20.799,13.526,5.991,-1.683,5.131,25.269,20.811,11.198,6.602,9.692,1.77,8.28,19.798,4.601,21.087,17.085,23.717,16.413,3.666,14.751,5.65,5.046,10.378,-1.392,32.423,16.308,7.946,27.34,26.007,-2.672,26.302,34.423,11.038,13.979,15.019,12.331,12.27,14.323,12.57,39.455,8.333,19.233,11.476,36.903,4.909,13.729,19.198,19.882,18.226,11.425,19.83,12.567,2.537,22.618,19.059,14.025,10.799,3.416,9.986,16.543,2.321,17.994,7.204,11.523,12.866,24.212,20.84,3.087,17.328,3.411,23.289,3.689,6.472,10.195,4.27,4.451,5.892,-0.956,3.625,12.233,4.236,9.754,1.252,12.447,13.548,13.243,8.056,14.345,-1.808,-1.045,8.174,6.746,6.269,-7.658,15.156,13.685,8.777,3.965,21.627,-0.563,18.177,-2.239,-5.284,-3.933,24.238,9.047,19.241,-8.933,16.145,20.719,16.148,21.372,-2.736,20.03,25.487,15.162,7.816,3.904,-1.815,10.349,20.267,20.308,3.536,9.475,5.697,20.061,12.107,17.116,0.756,0.283,12.579,22.577,12.483,25.864,4.675,5.787,-0.007,6.63,7.337,19.581,22.69,17.415,5.576,11.061],[33.499,25.532,13.3,14.759,13.736,11.41,7.145,-0.96,4.84,17.488,26.095,37.895,11.15,3.782,13.85,17.978,12.24,22.223,17.941,12.794,2.538,2.498,18.994,18.482,10.935,3.821,4.841,21.616,9.381,6.341,2.692,12.578,3.628,11.876,10.002,-2.002,-2.155,9.507,14.484,-5.622,-3.135,4.606,7.569,15.192,-9.109,17.749,21.476,23.271,20.912,13.583,6.128,-1.537,5.307,25.158,20.7,11.395,6.481,9.707,1.653,8.196,19.728,4.638,21.015,17.275,24.068,16.321,3.712,14.477,5.842,5.131,10.438,-1.416,32.34,16.612,7.736,27.457,26.842,-2.421,26.408,34.201,10.871,13.274,14.998,12.479,11.994,13.945,12.576,39.505,8.319,19.107,11.232,36.985,4.712,14.049,18.786,19.731,18.141,11.36,19.719,12.165,3.156,21.97,19.274,13.981,11.123,3.92,10.277,16.538,2.4,17.82,6.391,11.457,13.1,24.016,20.998,2.704,17.17,2.789,23.512,3.462,6.615,9.832,4.275,4.439,5.792,-0.752,3.389,13.177,4.11,10.104,1.263,12.62,13.556,13.288,8.267,14.004,-2.665,-1.137,8.081,6.715,6.163,-7.696,14.785,13.497,8.577,4.069,22.091,-0.699,17.78,-2.856,-5.704,-3.957,24.513,9.229,19.412,-9.565,16.476,20.988,16.258,21.76,-2.665,20.117,25.374,15.16,8.089,4.162,-2.58,9.832,20.047,20.087,3.091,9.474,5.119,20.492,11.912,17.72,0.783,0.355,12.988,22.59,12.36,25.369,4.305,5.602,0.212,6.551,7.56,20.27,22.567,17.41,5.536,11.522],[33.48,25.738,13.359,14.801,13.648,11.363,7.147,-0.814,5.001,17.149,26.063,38.029,11.068,3.517,13.775,17.89,12.261,21.904,17.838,13.096,2.857,2.525,18.928,18.483,10.749,3.652,5.025,21.794,9.434,6.223,2.767,12.555,3.683,11.827,10.217,-1.933,-2.087,9.509,14.136,-5.72,-3.063,4.64,7.395,15.176,-9.127,17.723,21.499,23.427,20.965,13.558,6.282,-1.382,5.29,25.011,20.67,11.566,6.433,9.855,1.401,8.086,19.633,4.62,21.091,17.463,24.476,16.015,3.901,13.96,6.081,4.482,9.911,-1.93,32.283,16.577,7.962,27.851,26.501,-2.074,26.137,34.309,11.068,12.895,14.858,12.185,11.951,14.057,12.343,39.78,8.507,18.851,11.79,36.597,4.821,14.269,18.469,19.831,17.916,11.848,19.801,12.023,3.06,21.601,19.304,14.112,11.345,4.152,9.442,16.222,1.986,18.474,6.543,11.472,13.026,23.724,22.081,3.079,17.381,2.586,23.596,3.348,6.904,9.596,4.263,4.704,6.234,-0.697,3.517,12.971,3.707,9.794,1.299,12.668,13.403,13.035,8.589,13.327,-2.653,-0.732,8.646,6.785,6.416,-7.944,15.241,13.407,8.63,4.158,22.026,-0.745,17.882,-2.871,-5.865,-4.049,24.745,9.198,19.274,-9.795,16.276,20.698,16.282,21.967,-2.987,20.52,25.985,15.17,7.566,4.279,-2.623,9.685,20.42,20.152,3.159,9.635,4.884,20.022,11.445,18.641,0.964,0.138,13.37,22.594,12.177,25.456,4.029,5.578,0.035,6.548,7.906,20.181,22.368,17.596,5.411,11.367],[33.423,25.74,13.447,14.71,13.643,11.295,7.302,-0.675,5.39,16.759,26.076,37.949,10.902,3.212,13.737,17.781,12.46,21.599,17.678,13.447,2.992,2.697,18.87,18.783,10.744,3.42,5.21,22.008,9.418,6.147,2.726,12.578,3.618,11.748,10.329,-1.913,-1.935,9.426,13.869,-5.766,-2.952,4.713,7.166,15.097,-9.188,17.64,21.53,23.553,20.843,13.448,6.266,-1.259,5.032,25.051,20.653,11.579,6.441,9.885,1.24,8.021,19.617,4.575,21.289,17.708,24.443,15.626,4.193,14.345,5.95,3.882,9.307,-1.536,32.192,16.226,7.972,27.825,26.524,-1.915,26.034,34.541,11.305,13.185,14.841,12.242,11.895,14.105,12.202,39.575,8.599,18.559,11.84,36.67,4.801,14.297,18.965,19.976,17.549,12.254,19.78,11.622,2.977,21.593,18.924,13.98,11.888,3.593,8.776,16.214,2.033,18.277,6.873,11.592,13.171,23.368,22.428,3.589,17.27,3.036,23.775,4.304,6.685,10.053,3.59,4.739,6.092,-0.951,4.275,12.843,4.257,9.798,1.32,12.845,13.371,12.77,8.36,13.014,-2.419,-0.696,8.689,6.916,6.439,-7.809,15.098,13.355,8.689,4.088,21.697,-0.626,18.314,-2.36,-5.734,-4.178,24.983,9.024,19.131,-9.802,16.009,20.463,15.987,22.199,-3.241,20.339,25.73,15.173,7.733,4.638,-2.38,10.299,20.402,20.143,3.177,9.536,4.943,19.821,11.589,19.254,0.698,-0.43,13.333,22.871,12.227,25.762,4.256,5.914,0.461,6.538,7.914,19.563,22.376,17.624,5.797,11.522],[33.407,25.757,13.444,14.497,13.579,11.214,7.599,-0.674,5.751,16.595,26.106,37.736,10.729,3.046,13.726,17.652,12.892,21.399,17.723,13.804,3.077,2.739,18.793,19.01,10.889,3.289,5.153,22.143,9.384,6.218,2.743,12.502,3.7,11.615,10.179,-1.962,-1.922,9.216,13.771,-5.762,-2.958,4.842,7.122,14.981,-9.25,17.539,21.472,23.728,20.663,13.436,6.292,-1.126,4.825,25.142,20.658,11.394,6.48,9.942,1.207,7.968,19.553,4.5,21.564,17.872,24.238,15.344,4.339,15.045,5.81,3.793,9.36,-1.124,32.343,15.982,8.043,27.301,26.955,-2.173,26.136,34.215,11.227,13.527,15.042,12.371,12.084,13.89,12.365,39.487,8.787,18.099,11.357,37.044,4.119,13.591,18.945,20.511,17.387,11.942,19.652,11.972,3.079,21.597,18.77,14.358,11.972,3.29,9.253,16.436,1.819,18.687,6.324,11.56,13.753,23.08,21.944,4.249,17.021,3.427,23.864,4.249,6.846,10.088,3.957,5.044,5.526,-1.052,4.391,13.065,4.659,10.113,1.264,12.701,13.24,12.931,8.07,13.241,-2.256,-0.708,8.284,6.641,6.633,-7.724,14.948,12.947,8.706,4.049,21.003,-0.445,18.432,-2.519,-5.701,-4.186,25.041,8.957,18.868,-9.203,16.274,20.766,15.94,22.074,-2.735,20.377,25.582,14.828,8.078,4.457,-1.647,10.652,20.2,20.013,3.164,9.291,4.86,20.306,11.746,19.318,0.695,-0.465,13.186,22.648,11.903,25.828,4.266,5.747,0.597,6.386,7.933,19.788,22.43,17.781,5.84,11.445],[33.34,25.837,13.502,14.425,13.292,11.19,7.94,-0.881,5.955,16.588,26.012,37.654,10.609,2.896,13.647,17.607,13.362,21.294,17.944,13.999,3.142,2.702,18.678,19.14,11.184,3.343,5.163,22.161,9.39,6.288,2.949,12.387,3.899,11.479,9.914,-1.992,-2.016,8.933,13.795,-5.84,-3.116,5.057,7.08,14.899,-9.26,17.771,21.447,23.861,20.404,13.419,6.319,-0.881,4.724,25.218,20.723,11.161,6.506,9.928,1.404,7.831,19.489,4.451,21.723,18.002,24.481,15.275,4.673,14.735,6.063,3.858,9.552,-1.486,32.18,15.932,8.535,27.256,26.787,-2.567,26.254,33.704,11.033,13.419,14.773,11.931,12.028,13.889,12.47,39.607,9.039,18.202,11.493,36.579,3.978,13.92,18.819,20.466,17.696,12.464,19.225,12.577,3.133,21.421,19.208,15.08,12.323,3.431,9.875,16.229,1.675,19.016,6.611,11.306,13.849,22.955,21.622,4.139,17.171,3.571,24.044,3.923,6.927,9.572,4.066,4.672,5.666,-0.836,3.946,12.745,4.717,9.938,1.331,12.093,12.853,12.765,8.014,13.469,-2.229,-0.849,8.248,7.018,6.55,-7.923,14.446,13.077,8.366,4.671,20.574,-0.478,17.78,-2.64,-5.692,-4.329,24.783,8.783,18.843,-9.424,16.247,20.712,16.192,22.136,-2.632,20.285,25.851,15.035,7.737,3.753,-1.174,10.424,20.072,20.353,3.248,9.118,4.911,20.82,11.805,18.872,1.101,-0.25,12.417,22.804,12.017,25.56,3.766,5.611,0.626,6.139,7.898,19.849,22.608,17.861,5.194,11.496],[33.077,25.89,13.561,14.434,12.999,11.303,8.185,-1.201,6.001,16.601,25.925,37.673,10.648,2.791,13.546,17.679,13.706,21.287,18.098,13.989,3.14,2.747,18.525,19.132,11.364,3.442,5.135,22.19,9.324,6.261,3.129,12.238,4.011,11.295,9.741,-1.892,-2.126,8.672,13.946,-5.915,-3.222,5.352,7.073,14.797,-9.241,18.198,21.448,23.865,20.135,13.415,6.231,-0.588,4.588,25.279,20.922,10.929,6.383,9.855,1.578,7.586,19.407,4.49,21.807,18.016,24.907,15.531,4.687,14.017,6.744,3.856,9.703,-1.782,31.816,16.118,8.689,27.556,26.601,-2.634,26.266,33.694,11.34,12.966,14.651,11.604,11.811,13.699,12.04,39.25,8.934,18.112,11.714,36.244,3.923,14.431,19.112,20.135,17.988,13.23,18.788,12.694,3.13,21.155,19.375,15.47,12.325,4.07,10.2,15.981,1.844,19.053,6.999,11.588,13.736,23.183,21.503,3.932,17.229,4.022,23.962,4.343,6.813,9.576,4.122,4.796,6.446,-0.652,3.541,12.49,4.763,9.222,1.524,11.509,13.525,12.563,8.082,13.411,-2.383,-0.903,8.041,7.314,7.051,-7.924,14.9,13.375,7.93,4.703,20.664,-0.636,18.03,-2.624,-6.013,-4.286,24.531,8.492,18.421,-9.969,16.252,20.414,16.746,22.037,-2.708,20.576,25.661,15.173,7.827,3.524,-1.323,9.918,20.219,21.053,3.134,9.146,5.101,20.702,12.407,18.751,1.313,-0.033,11.713,23.338,12.41,25.445,3.726,5.552,0.742,6.191,7.585,19.595,22.284,17.976,5.175,11.517],[32.731,25.937,13.519,14.455,12.831,11.502,8.146,-1.438,5.977,16.533,26.028,37.596,10.846,2.723,13.452,17.846,13.944,21.387,18.121,13.811,3.155,3.012,18.428,19.024,11.321,3.534,4.97,22.242,9.346,6.301,3.274,12.252,3.987,11.07,9.492,-1.702,-2.194,8.416,14.128,-5.888,-3.272,5.69,7.145,14.784,-9.214,18.672,21.359,23.686,19.83,13.4,6.162,-0.411,4.523,25.294,20.986,10.807,6.136,9.764,1.668,7.355,19.375,4.661,21.87,18.03,25.078,15.492,4.83,14.206,7.189,3.441,9.951,-2.291,31.472,16.119,8.747,27.459,26.944,-2.755,26.559,33.381,11.752,12.46,14.849,11.703,11.894,13.382,12.069,39.325,9.165,18.178,11.937,36.657,4.162,13.969,19.347,20.413,18.284,13.802,18.845,12.538,3.43,21.03,19.131,15.66,12.532,4.229,10.062,16.224,2.034,19.201,7.132,12.196,13.812,23.219,21.729,3.52,16.673,4.14,24.04,3.989,6.784,9.978,3.608,4.685,6.35,-0.746,4.203,11.913,4.533,8.93,1.589,11.033,13.464,12.499,8.039,13.555,-2.883,-0.489,7.925,6.975,7.415,-7.849,15.06,13.191,7.436,4.816,20.639,-0.655,18.889,-2.63,-6.126,-4.231,24.755,8.246,18.069,-9.643,16.241,20.715,17.086,21.945,-2.698,20.871,25.331,14.893,7.849,3.693,-1.377,9.793,20.335,21.906,3.407,9.072,5.016,21.128,12.29,18.869,1.09,-0.056,11.351,23.688,11.968,25.457,3.809,5.716,0.603,6.147,7.606,19.821,22.455,17.573,5.573,11.59],[32.32,26.039,13.422,14.494,12.77,11.667,8.007,-1.519,5.953,16.489,26.239,37.528,11.094,2.767,13.314,18.065,14.194,21.403,18.101,13.681,3.199,3.187,18.565,19.057,11.185,3.448,4.695,22.373,9.499,6.427,3.388,12.203,3.928,10.897,9.321,-1.573,-2.288,8.198,14.188,-5.829,-3.309,5.876,7.091,14.766,-9.187,19.051,21.346,23.502,19.539,13.181,6.055,-0.405,4.54,25.246,21.09,10.723,6.008,9.803,1.675,7.272,19.451,4.745,21.995,18.0,25.014,15.09,4.583,14.627,7.454,2.924,9.793,-2.387,31.144,16.243,8.582,27.423,26.893,-3.066,26.943,33.097,11.75,12.659,14.826,11.425,12.035,13.677,12.796,39.437,9.322,18.016,12.424,36.77,4.279,13.437,19.197,20.689,18.374,13.3,18.771,12.345,3.282,21.33,19.231,15.654,12.601,4.195,9.898,16.567,2.027,18.907,7.176,11.938,13.762,23.147,22.322,4.266,16.854,3.97,24.263,3.997,6.575,10.032,3.839,4.196,5.729,-0.848,4.834,12.12,4.467,9.129,1.552,10.823,12.79,12.305,7.495,13.4,-2.807,0.017,7.707,6.902,7.322,-7.478,14.853,13.352,7.517,5.363,20.499,-0.646,19.486,-2.682,-5.857,-4.547,24.983,7.828,17.785,-8.976,16.167,20.547,17.403,21.896,-2.843,20.178,25.96,14.807,7.77,3.623,-1.43,9.984,20.59,21.364,3.718,9.041,5.602,21.242,11.656,19.12,0.895,0.397,11.874,23.789,11.792,25.989,3.587,6.003,0.785,6.084,7.695,19.773,22.697,17.594,5.594,11.435],[31.885,26.06,13.308,14.629,12.793,11.881,7.897,-1.391,5.919,16.513,26.587,37.471,11.265,2.788,13.159,18.195,14.142,21.308,18.103,13.658,3.204,3.32,18.756,19.168,10.917,3.223,4.492,22.661,9.548,6.528,3.392,12.054,3.976,10.773,9.201,-1.475,-2.37,8.047,14.278,-5.785,-3.301,6.088,6.953,14.671,-9.091,19.377,21.237,23.352,19.323,12.96,6.12,-0.529,4.395,25.347,21.162,10.703,6.053,9.898,1.73,7.344,19.625,4.726,22.153,18.055,24.607,14.969,4.605,14.855,7.561,3.226,10.168,-2.08,30.918,16.215,8.259,27.763,26.608,-2.953,26.937,32.773,11.322,12.71,14.698,11.252,11.825,13.395,12.456,39.299,8.761,17.894,12.756,36.555,4.367,13.466,19.045,20.472,18.507,13.507,19.271,11.965,3.277,21.631,19.405,15.834,12.653,3.71,10.171,16.548,2.073,18.788,7.159,11.564,13.091,23.01,22.551,4.759,17.457,3.835,23.986,4.426,6.312,10.167,3.994,4.292,6.233,-0.677,4.473,12.328,4.166,8.982,1.629,11.202,13.268,11.786,7.048,13.392,-2.216,-0.196,7.538,6.737,7.467,-7.605,14.749,13.518,7.899,5.145,20.022,-0.711,19.993,-2.583,-5.698,-4.354,24.774,7.723,17.457,-8.689,16.265,20.435,17.815,22.09,-2.881,19.899,26.243,14.547,7.61,3.621,-1.811,10.609,20.188,20.689,3.655,8.833,5.446,21.439,11.355,19.24,0.786,0.468,12.275,23.487,11.715,25.948,3.588,5.351,1.033,6.011,7.625,19.588,23.041,18.167,5.276,11.403],[31.559,25.896,13.118,14.748,12.782,12.068,7.718,-1.082,5.819,16.591,26.929,37.471,11.327,2.646,13.049,18.129,14.089,21.283,18.071,13.698,3.181,3.396,18.986,19.204,10.692,3.044,4.571,22.926,9.468,6.552,3.337,12.028,3.92,10.77,8.977,-1.371,-2.288,8.063,14.51,-5.732,-3.162,6.175,6.851,14.505,-9.042,19.714,21.121,23.255,19.2,12.764,6.265,-0.866,4.177,25.432,21.277,10.74,6.165,10.122,1.724,7.474,19.674,4.696,22.354,18.252,24.313,15.095,4.956,14.66,7.102,3.459,10.451,-1.706,30.484,16.396,8.6,28.34,26.331,-2.521,26.868,32.39,11.041,12.526,14.561,11.465,11.522,13.153,12.291,39.168,8.303,17.878,12.453,36.523,4.241,13.678,19.509,20.457,18.744,13.871,19.505,11.801,3.186,21.15,19.001,15.467,12.452,3.308,10.207,16.368,1.538,19.09,7.187,10.747,13.059,23.022,22.393,4.565,17.292,3.821,24.671,4.191,6.41,10.238,3.487,4.282,6.703,-0.288,4.231,11.583,4.6,8.962,1.515,11.568,13.209,11.833,6.825,13.747,-2.372,-0.783,7.221,7.101,7.829,-7.807,14.556,13.401,7.511,5.192,19.561,-0.764,19.874,-2.188,-5.874,-4.351,24.699,7.913,17.416,-8.991,15.921,20.333,18.019,21.756,-2.793,20.229,26.345,14.409,7.722,3.273,-1.669,10.284,20.431,20.534,3.784,8.797,5.324,21.405,11.31,19.638,0.903,0.239,12.3,23.272,11.42,25.607,3.723,5.119,0.988,5.88,7.97,20.325,23.039,18.179,5.397,11.826],[31.329,25.707,12.885,14.792,12.802,12.204,7.663,-0.919,5.834,16.635,27.163,37.481,11.239,2.448,13.044,18.068,14.027,21.195,18.076,13.796,3.107,3.306,19.118,19.227,10.421,2.848,4.639,23.135,9.427,6.56,3.401,11.959,3.835,10.936,8.744,-1.356,-2.189,8.079,14.751,-5.849,-2.875,6.248,6.913,14.259,-9.111,19.848,21.096,23.162,19.229,12.515,6.294,-1.226,4.127,25.464,21.456,10.8,6.327,10.386,1.551,7.515,19.821,4.613,22.467,18.415,24.072,15.608,4.203,14.607,6.17,2.93,10.023,-1.558,30.543,16.713,8.644,28.328,26.288,-2.552,27.047,32.197,11.152,12.291,14.195,11.164,11.289,12.993,12.303,39.31,8.529,18.286,12.458,36.751,4.01,13.622,19.585,20.381,18.629,13.887,19.416,11.972,2.883,20.694,18.526,15.817,12.229,4.201,10.077,16.362,1.132,19.167,7.336,10.192,13.393,23.028,22.478,4.279,17.39,4.071,24.916,4.25,6.56,9.993,3.493,4.441,6.412,-0.029,4.671,11.184,4.891,8.607,1.632,11.761,12.941,12.382,7.611,13.754,-2.951,-0.638,7.083,7.288,7.858,-7.78,14.323,13.818,7.218,5.628,19.602,-1.033,19.966,-1.789,-6.072,-4.353,24.522,7.46,17.357,-9.205,15.665,20.398,18.189,21.468,-2.118,20.615,26.295,14.26,7.792,2.993,-1.974,10.01,20.948,20.788,3.926,9.026,5.436,21.854,11.968,19.734,0.777,0.342,11.697,24.114,11.315,25.447,3.52,5.941,0.555,6.127,7.912,20.323,23.301,18.361,5.368,12.186],[31.188,25.546,12.692,14.919,12.853,12.322,7.828,-1.036,5.661,16.739,27.187,37.658,11.151,2.365,13.073,18.058,13.963,20.935,18.023,13.9,3.225,3.282,19.101,19.26,10.173,2.816,4.592,23.322,9.49,6.646,3.61,11.854,3.841,11.241,8.552,-1.406,-2.138,8.215,14.925,-6.064,-2.536,6.41,6.955,13.989,-9.205,19.807,21.274,22.961,19.311,12.331,6.342,-1.565,4.282,25.47,21.643,10.813,6.447,10.441,1.338,7.556,20.013,4.633,22.64,18.655,24.032,15.657,4.419,14.936,5.52,2.467,9.759,-1.499,30.888,16.7,8.834,28.042,26.706,-2.692,27.07,32.309,11.562,12.162,13.661,11.092,11.146,12.59,12.125,39.362,8.695,18.434,11.712,36.65,3.668,13.386,19.52,19.998,18.648,13.231,19.626,11.902,2.94,21.005,18.732,15.859,12.167,4.817,10.123,16.392,1.075,18.969,7.162,10.549,13.802,22.555,22.467,4.026,17.561,4.247,24.645,3.913,6.469,10.035,3.074,4.0,5.773,-0.373,4.787,11.438,4.813,8.026,1.876,12.048,12.668,12.532,8.413,13.905,-3.481,-0.041,6.935,7.136,8.086,-8.023,14.336,14.084,7.239,5.418,19.979,-1.734,19.798,-1.823,-5.917,-4.838,24.324,7.651,17.538,-9.012,15.615,20.99,18.252,21.363,-1.536,20.286,26.288,13.948,7.727,3.222,-2.858,10.562,20.908,21.851,3.43,9.164,5.225,21.952,12.281,19.368,0.29,0.077,11.477,24.422,11.138,25.736,3.236,5.965,0.043,6.258,7.279,20.047,23.427,18.127,5.207,12.242],[31.213,25.523,12.515,15.074,12.871,12.475,8.117,-1.155,5.428,16.846,27.019,37.841,10.959,2.245,13.064,18.063,13.747,20.602,17.964,14.013,3.461,3.273,19.186,19.194,10.273,2.871,4.411,23.485,9.605,6.843,3.679,11.826,3.78,11.588,8.529,-1.373,-2.238,8.497,15.005,-6.416,-2.256,6.579,6.961,13.782,-9.35,19.647,21.575,22.701,19.411,12.152,6.251,-2.019,4.371,25.396,21.876,10.847,6.544,10.439,1.059,7.483,19.903,4.525,22.734,18.85,24.042,15.545,4.152,15.264,5.697,2.462,9.824,-1.809,30.444,16.739,8.973,28.358,26.742,-2.527,26.961,32.225,11.663,12.809,13.71,11.222,10.764,12.228,12.373,39.707,8.568,18.597,11.54,36.858,3.978,13.441,19.051,20.225,18.679,13.109,19.925,11.095,3.321,21.225,19.189,15.465,12.593,4.533,10.169,16.244,1.162,18.941,6.669,10.795,13.653,22.228,22.908,3.959,17.649,4.33,25.255,4.33,6.307,10.271,2.684,3.725,5.978,-1.141,4.894,11.634,4.29,8.164,1.982,12.474,12.832,12.742,8.23,14.193,-3.371,0.24,6.94,7.584,8.034,-8.191,14.358,14.02,7.414,5.479,20.122,-1.759,19.249,-1.679,-6.123,-5.059,24.309,7.557,17.511,-8.616,15.214,20.866,18.222,21.422,-1.642,20.23,26.47,13.855,7.575,3.166,-2.957,11.179,21.003,22.903,3.26,9.098,5.452,22.444,12.01,19.496,0.229,-0.412,11.401,24.093,10.795,25.931,3.613,5.344,-0.509,6.322,7.071,20.637,23.236,18.298,5.282,11.966],[31.231,25.491,12.429,15.158,12.856,12.662,8.387,-1.188,5.25,16.957,26.842,37.957,10.819,2.195,13.107,18.13,13.391,20.444,17.851,14.125,3.673,3.253,19.441,19.142,10.371,2.918,4.212,23.568,9.761,7.005,3.559,11.959,3.715,11.96,8.704,-1.439,-2.325,8.715,14.966,-6.779,-2.047,6.819,6.977,13.601,-9.365,19.374,21.762,22.67,19.337,12.024,6.111,-2.469,4.333,25.404,22.175,10.83,6.538,10.48,0.826,7.356,19.731,4.332,22.942,18.948,24.167,15.527,3.768,15.077,6.126,2.448,9.855,-2.394,30.556,16.93,9.249,28.301,26.562,-2.334,27.203,32.346,11.957,13.251,13.61,11.35,10.785,12.159,12.095,39.698,9.016,18.239,12.017,37.03,3.716,13.712,18.923,19.787,18.35,13.292,19.679,11.521,3.77,20.548,19.096,15.236,13.015,4.308,10.019,16.426,1.217,18.926,7.022,11.098,13.213,22.153,23.449,4.361,17.807,4.435,25.192,4.748,6.077,10.038,2.909,3.972,6.16,-1.16,4.602,11.529,4.302,8.676,1.918,12.622,13.277,13.07,7.887,13.764,-3.186,0.266,7.222,7.742,7.997,-8.235,14.205,14.028,7.963,5.758,19.442,-1.798,19.28,-1.076,-6.858,-5.473,24.072,7.366,17.735,-8.742,14.82,21.016,17.951,21.254,-1.566,20.86,26.104,13.698,7.153,3.078,-2.588,10.814,20.638,22.69,3.162,8.944,5.366,22.073,11.485,19.597,0.048,-0.323,12.356,24.422,10.623,25.485,3.676,4.972,-0.702,5.994,7.869,20.742,23.409,18.883,5.658,12.083],[31.305,25.399,12.384,15.082,12.882,12.78,8.724,-1.209,5.072,16.896,26.802,37.958,10.831,2.039,13.279,18.214,13.106,20.353,17.745,14.143,3.905,3.262,19.613,19.145,10.387,3.011,4.146,23.659,9.845,7.085,3.429,12.188,3.65,12.265,8.895,-1.49,-2.329,8.914,14.819,-7.137,-1.75,7.04,6.998,13.404,-9.213,19.102,21.852,22.692,19.081,11.845,5.956,-2.784,4.233,25.366,22.333,10.865,6.52,10.538,0.808,7.243,19.677,4.119,23.074,19.024,24.279,15.571,4.005,14.983,6.458,2.344,10.139,-2.37,30.727,16.955,9.513,27.986,26.319,-2.164,27.481,32.26,12.284,13.112,13.672,11.45,10.92,12.426,12.25,39.603,9.38,18.484,11.799,36.625,3.127,13.554,19.256,19.737,18.353,13.225,20.031,11.682,3.879,20.312,18.473,14.797,13.303,4.093,10.427,16.722,1.188,18.764,7.597,11.472,13.092,22.153,23.47,4.836,17.82,4.28,24.706,4.361,5.953,9.842,3.095,3.841,6.23,-0.717,4.533,11.541,4.559,8.693,1.819,12.746,13.083,13.499,8.219,13.618,-3.287,-0.618,7.313,7.165,8.483,-7.883,13.94,14.138,8.33,6.178,19.378,-1.773,19.479,-0.701,-6.675,-5.969,24.161,7.547,17.273,-9.288,15.154,21.535,17.317,21.256,-1.827,21.07,25.671,13.529,7.57,3.257,-2.873,10.838,21.013,21.923,2.769,8.565,5.253,21.839,11.639,19.872,-0.218,-0.225,12.15,24.6,10.701,25.179,3.688,5.05,-1.111,5.741,8.437,20.465,24.18,18.518,5.648,12.3],[31.445,25.322,12.424,14.956,13.021,12.918,9.035,-1.23,4.972,16.835,26.91,37.818,10.964,1.701,13.49,18.318,12.943,20.281,17.694,14.081,4.147,3.254,19.666,19.092,10.341,2.98,4.186,23.656,9.874,7.191,3.397,12.403,3.636,12.558,8.944,-1.575,-2.35,9.193,14.683,-7.363,-1.479,7.263,6.949,13.397,-8.943,18.817,21.958,22.632,18.787,11.694,5.787,-3.075,4.22,25.151,22.278,10.899,6.622,10.76,0.864,7.124,19.777,3.999,23.088,19.061,24.317,15.769,4.161,14.562,6.13,2.638,10.071,-2.065,30.238,16.719,9.633,28.482,25.91,-2.164,27.259,32.261,12.077,12.706,13.573,11.333,10.83,12.652,12.349,39.585,9.318,18.594,11.332,36.78,2.801,13.505,19.12,19.855,18.73,12.753,20.343,11.503,3.68,20.605,18.47,14.78,12.841,4.226,10.614,16.713,1.128,19.076,7.2,11.468,13.304,22.154,23.408,4.645,18.149,3.404,25.275,4.567,6.082,10.303,3.306,3.488,6.308,-0.097,4.877,11.502,3.968,8.803,1.676,12.938,13.267,13.594,8.666,13.815,-3.009,-1.4,7.351,6.594,8.616,-7.906,13.56,14.08,8.243,6.501,19.42,-1.584,19.978,-0.888,-6.817,-5.808,24.265,7.391,17.007,-9.499,15.048,21.71,17.011,21.287,-1.586,20.591,25.864,13.357,7.645,2.979,-3.464,11.401,21.035,22.128,2.96,8.247,4.842,22.044,12.018,20.355,0.084,-0.431,11.625,24.539,10.367,25.475,3.609,5.352,-1.552,5.464,8.13,20.335,24.096,17.941,5.677,12.334],[31.476,25.226,12.426,14.815,13.029,12.968,9.058,-1.231,4.962,16.879,27.135,37.716,11.037,1.541,13.639,18.464,12.944,20.244,17.662,13.81,4.312,3.319,19.793,18.982,10.198,2.818,4.309,23.613,9.933,7.139,3.375,12.551,3.646,12.94,8.96,-1.731,-2.258,9.481,14.66,-7.259,-1.461,7.468,6.656,13.462,-8.771,18.773,21.963,22.553,18.631,11.599,5.849,-3.308,4.235,24.983,22.143,10.884,6.566,11.046,0.889,6.984,19.723,4.06,23.118,19.052,24.086,15.754,3.597,14.739,5.593,1.733,10.067,-2.298,30.633,16.634,10.004,28.886,26.381,-2.543,27.103,32.6,11.648,12.638,13.377,11.629,10.941,12.962,12.638,39.513,9.61,18.654,11.79,36.789,2.984,14.13,18.967,19.996,18.971,12.372,19.993,11.338,3.837,20.578,18.66,14.713,12.423,4.533,10.443,16.685,0.986,19.047,6.903,11.124,13.401,21.943,23.54,4.282,18.436,3.127,25.452,4.845,6.041,10.409,3.423,3.579,6.145,-0.084,5.224,11.949,3.65,9.096,1.577,13.135,13.567,13.185,8.762,13.956,-2.971,-1.37,7.381,6.65,8.682,-7.761,13.98,13.816,8.252,6.535,19.195,-1.708,19.376,-0.647,-7.677,-6.16,24.018,7.228,16.74,-9.032,14.811,21.488,16.918,21.125,-0.942,20.655,26.149,13.176,6.958,2.781,-3.867,11.532,20.757,22.132,2.937,8.105,4.93,22.271,11.95,20.24,-0.079,0.21,12.227,24.792,10.221,25.242,3.546,5.244,-2.156,5.289,8.024,20.583,23.82,18.031,5.921,12.551],[31.488,25.246,12.444,14.861,12.932,13.003,8.981,-1.313,4.877,16.949,27.295,37.559,11.111,1.534,13.848,18.661,12.949,20.049,17.739,13.468,4.481,3.203,19.838,18.974,10.014,2.764,4.487,23.631,9.993,6.877,3.251,12.67,3.62,13.283,9.106,-1.913,-2.156,9.65,14.768,-7.255,-1.419,7.652,6.187,13.55,-8.693,18.748,21.837,22.464,18.494,11.662,5.948,-3.576,4.24,24.903,22.012,10.987,6.707,11.204,1.007,6.907,19.578,4.223,23.194,19.0,24.138,15.567,3.331,14.552,5.514,1.675,10.15,-2.589,31.356,16.628,9.649,28.952,26.827,-2.398,27.391,32.288,11.948,12.694,12.876,11.752,10.749,12.83,12.69,39.334,9.983,18.403,12.056,36.627,3.009,14.659,18.911,19.884,18.802,12.656,20.325,11.025,4.007,20.417,18.871,14.708,12.309,4.638,10.59,16.887,0.982,18.814,7.438,11.306,13.181,21.636,23.647,4.076,17.942,3.505,25.26,4.473,6.362,10.072,2.952,3.813,5.993,-1.064,5.228,12.386,3.976,9.251,1.526,13.667,13.306,13.214,8.798,14.077,-3.31,-0.955,7.54,6.774,9.049,-7.364,13.814,13.915,8.421,6.526,18.63,-1.45,18.787,-0.747,-6.993,-6.142,23.755,7.186,16.735,-8.311,15.35,21.371,16.894,20.844,-1.209,20.656,26.129,13.16,7.176,2.956,-3.732,11.666,20.744,22.301,3.116,7.375,5.274,22.586,12.034,19.921,-0.165,-0.176,12.003,24.886,10.254,24.888,3.351,5.07,-2.415,5.567,7.417,20.583,23.497,18.052,5.302,12.675],[31.515,25.43,12.426,14.988,12.735,13.158,8.932,-1.404,4.734,16.95,27.316,37.35,11.12,1.523,14.181,18.854,13.017,19.691,17.962,13.138,4.543,2.982,19.737,18.897,9.985,2.769,4.717,23.617,10.032,6.646,3.052,12.743,3.619,13.546,9.281,-2.158,-2.026,9.688,15.031,-7.155,-1.479,7.783,5.782,13.693,-8.595,18.606,21.736,22.366,18.315,11.838,6.029,-3.81,4.203,24.829,21.891,11.103,6.918,11.192,1.032,6.802,19.52,4.421,23.319,18.886,24.135,15.484,3.35,14.294,5.553,2.268,10.413,-2.311,31.269,16.817,9.39,28.812,27.11,-2.436,27.795,32.299,12.233,12.795,12.78,11.486,10.764,12.799,12.119,39.018,9.41,18.507,12.023,36.363,2.883,14.086,18.633,19.227,18.779,13.182,20.475,10.814,4.423,20.134,19.499,14.708,12.077,4.259,10.687,17.1,1.111,19.18,7.003,11.441,12.514,21.53,24.429,3.983,17.901,3.43,25.13,4.822,6.525,10.147,2.783,4.393,5.951,-1.77,4.865,12.051,4.321,9.518,1.144,14.646,13.603,14.056,8.7,14.021,-3.185,-0.588,7.723,6.122,9.312,-7.311,13.291,14.378,8.651,6.84,18.665,-1.858,19.146,-0.632,-6.708,-5.991,23.81,6.869,16.413,-8.192,15.287,21.239,16.781,20.826,-1.54,20.31,25.73,13.457,7.601,3.281,-3.809,12.097,20.827,22.146,3.12,7.551,5.767,22.549,12.166,19.245,0.514,-0.138,12.22,24.957,10.49,25.085,3.71,4.747,-2.829,5.126,7.595,20.12,23.679,18.008,5.361,12.745],[31.552,25.678,12.443,14.994,12.476,13.306,8.861,-1.435,4.542,16.904,27.192,37.266,11.142,1.46,14.437,18.978,13.237,19.465,18.199,12.734,4.62,2.877,19.628,18.668,10.198,2.74,4.958,23.673,10.077,6.504,2.952,12.778,3.639,13.886,9.388,-2.393,-1.915,9.634,15.267,-6.931,-1.609,7.873,5.519,13.706,-8.6,18.498,21.646,22.291,18.133,11.939,5.976,-4.055,4.371,24.781,21.791,11.14,7.044,11.202,1.092,6.678,19.63,4.628,23.358,18.675,24.321,15.304,3.471,14.715,5.878,1.955,10.133,-2.514,31.036,16.813,9.689,28.719,27.071,-2.477,27.459,32.496,12.124,13.346,12.839,11.497,11.066,13.131,12.843,39.12,9.177,18.055,12.077,36.104,2.416,13.759,18.938,18.933,18.885,13.329,20.522,11.25,4.487,19.872,19.417,14.923,11.862,3.893,10.895,17.373,1.123,19.477,5.915,11.388,12.118,20.927,24.473,4.077,18.281,2.647,24.87,5.357,6.832,10.459,3.261,4.667,5.727,-2.097,4.889,12.011,4.272,9.762,1.279,15.562,13.295,14.399,8.735,14.514,-2.61,-0.743,7.831,5.311,8.895,-7.198,13.81,14.455,8.411,6.911,18.883,-1.544,19.343,-0.701,-6.892,-5.87,23.698,6.612,16.344,-8.435,15.282,21.019,16.723,20.815,-1.124,20.621,25.7,13.676,7.681,2.865,-3.79,11.891,21.183,21.775,3.126,7.838,5.828,22.622,11.733,18.738,-0.018,0.099,12.748,24.991,10.642,24.775,4.211,5.086,-3.196,5.124,8.033,19.507,23.538,17.912,5.659,12.667],[31.592,25.958,12.553,14.978,12.377,13.412,8.811,-1.426,4.395,16.645,26.939,37.207,11.118,1.2,14.562,19.138,13.556,19.445,18.359,12.504,4.716,2.775,19.761,18.535,10.514,2.779,5.256,23.712,10.073,6.267,2.898,12.772,3.661,14.258,9.507,-2.62,-1.749,9.515,15.308,-6.879,-1.576,7.729,5.264,13.751,-8.719,18.391,21.529,22.235,18.139,12.054,5.922,-4.24,4.703,24.728,21.642,11.098,7.064,11.144,1.042,6.679,19.693,4.722,23.403,18.345,24.538,15.116,3.709,15.022,5.929,1.698,9.832,-2.68,31.071,16.776,10.116,28.626,26.727,-2.652,26.971,32.455,12.035,13.85,13.116,11.319,11.597,12.904,13.295,38.881,9.32,18.108,12.343,36.291,2.246,14.378,19.753,19.153,19.147,13.09,20.533,11.823,4.436,20.045,19.182,15.424,11.488,3.888,10.783,17.369,0.999,19.034,5.787,11.475,12.143,21.16,23.879,4.04,18.041,2.19,25.304,5.163,6.888,10.488,3.481,4.595,6.218,-2.198,5.056,12.227,3.731,9.383,1.669,15.709,13.254,14.69,8.52,14.81,-2.817,-0.986,7.779,4.942,8.969,-7.305,14.45,14.529,8.24,6.751,18.284,-0.922,18.925,-1.087,-6.657,-5.906,23.574,6.179,16.48,-8.279,15.405,21.166,16.633,20.544,-1.186,20.48,25.69,13.435,7.615,3.074,-3.827,11.716,21.337,21.58,3.564,7.89,6.052,22.747,12.078,19.241,-0.201,0.059,12.192,25.107,10.559,24.552,4.452,5.717,-3.382,5.212,8.129,19.98,23.392,17.786,5.8,12.472],[31.624,26.151,12.838,15.078,12.385,13.382,8.874,-1.465,4.308,16.481,26.629,37.181,11.089,0.894,14.609,19.229,13.875,19.691,18.485,12.492,4.791,2.706,19.974,18.565,10.65,2.949,5.473,23.651,9.867,6.084,2.871,12.779,3.624,14.446,9.49,-2.688,-1.587,9.324,15.265,-6.978,-1.511,7.439,5.008,13.94,-8.723,18.219,21.439,22.188,18.267,12.086,6.044,-4.31,5.098,24.613,21.508,11.022,7.123,10.999,0.915,6.865,19.722,4.931,23.448,18.119,24.805,14.847,3.903,15.019,5.795,1.332,9.774,-2.779,31.085,16.84,10.03,28.358,26.654,-2.261,26.632,32.615,12.013,13.876,13.301,11.298,11.412,12.112,12.941,38.855,9.214,17.679,12.271,36.064,2.403,15.161,19.271,19.012,19.372,13.469,20.319,11.809,4.211,20.224,19.807,15.588,11.401,4.025,10.726,17.383,1.054,18.367,6.261,11.709,12.351,21.26,23.979,3.634,18.414,2.419,25.356,4.492,6.888,10.477,3.333,4.599,5.873,-1.859,5.22,12.36,3.78,9.398,1.217,16.07,13.735,14.807,8.313,14.341,-2.888,-1.39,7.903,4.748,9.119,-7.439,14.149,14.251,8.414,6.715,18.351,-1.463,18.593,-1.028,-7.055,-5.973,23.635,5.996,16.396,-8.125,15.57,21.018,16.434,20.645,-1.27,20.305,25.193,13.441,7.382,3.7,-4.217,12.163,20.704,21.594,3.668,7.831,6.174,23.011,12.458,19.593,0.346,-0.179,11.304,25.339,10.568,24.855,4.421,5.711,-2.993,5.05,7.356,20.99,23.143,17.601,5.759,12.421],[31.661,26.265,13.067,15.142,12.381,13.254,8.863,-1.438,4.283,16.329,26.29,37.138,11.065,0.789,14.743,19.232,14.148,19.855,18.578,12.567,4.719,2.692,20.03,18.598,10.536,3.158,5.447,23.469,9.641,5.902,2.707,12.855,3.653,14.531,9.486,-2.6,-1.487,9.286,15.15,-7.155,-1.505,7.104,4.759,14.081,-8.557,18.052,21.407,22.154,18.336,12.028,6.214,-4.241,5.387,24.467,21.515,10.823,7.037,11.03,0.995,7.071,19.741,5.105,23.598,18.104,24.918,14.644,3.941,15.393,5.893,1.083,9.98,-2.9,31.282,16.975,9.638,27.282,27.279,-2.05,26.562,32.618,11.99,13.371,13.473,11.423,11.341,11.338,12.753,39.042,9.524,17.67,12.141,36.078,1.974,14.645,19.122,19.045,19.024,14.027,20.603,11.829,4.372,20.173,20.034,15.805,11.814,4.059,10.547,17.62,1.238,18.521,6.442,11.64,11.906,21.497,24.099,3.422,18.54,2.809,24.97,4.493,7.165,10.304,3.379,4.969,5.364,-1.198,4.997,12.343,4.183,9.581,1.042,15.995,13.657,14.525,8.316,14.503,-2.621,-2.105,8.041,4.663,8.773,-7.214,13.964,14.183,8.114,6.733,19.185,-1.579,18.361,-0.498,-7.071,-5.781,23.522,6.031,16.631,-8.445,15.829,21.176,16.174,20.689,-0.937,20.328,25.393,13.683,7.66,4.142,-4.266,12.33,20.9,21.021,3.93,8.111,6.089,22.888,12.268,19.092,-0.004,-0.231,11.517,25.259,10.531,24.267,4.377,5.498,-2.649,5.457,6.991,20.586,23.335,17.425,5.833,12.055],[31.707,26.429,13.213,15.228,12.269,13.208,8.859,-1.401,4.368,16.238,25.918,37.157,10.976,0.762,14.75,19.205,14.32,19.931,18.65,12.66,4.646,2.651,19.952,18.64,10.44,3.327,5.321,23.22,9.516,5.711,2.58,12.896,3.814,14.51,9.633,-2.523,-1.383,9.273,15.144,-7.247,-1.337,6.868,4.498,14.15,-8.445,17.784,21.52,22.117,18.466,12.04,6.371,-4.025,5.483,24.345,21.465,10.654,6.832,11.053,1.153,7.282,19.757,5.237,23.733,18.265,24.759,14.8,3.863,15.388,5.938,1.511,10.524,-2.774,31.474,16.917,9.603,27.181,27.575,-2.338,25.987,32.261,11.958,13.503,13.576,11.715,11.672,10.86,12.667,38.885,9.382,17.781,12.21,36.442,1.994,14.253,19.879,19.247,18.727,14.226,20.699,11.667,4.31,20.213,19.662,15.835,11.824,3.858,10.318,17.56,1.49,19.07,5.87,11.452,11.523,21.717,23.698,3.861,18.322,2.801,24.688,5.308,7.126,10.11,3.337,4.955,5.599,-1.027,4.725,12.527,4.326,9.384,0.988,15.749,13.484,14.226,8.321,14.631,-2.348,-2.185,8.136,4.651,8.133,-7.075,14.585,14.49,8.082,6.007,18.927,-1.206,18.6,-0.29,-7.245,-5.918,23.428,5.857,16.862,-8.565,15.432,20.915,16.044,20.43,-1.2,20.4,25.392,13.359,7.819,4.009,-4.315,12.165,21.369,20.808,3.691,8.671,6.036,22.733,11.466,18.341,-0.282,0.305,12.161,25.333,10.563,23.761,4.529,5.617,-2.288,5.782,7.299,20.01,23.215,17.544,5.476,11.975],[31.707,26.495,13.166,15.283,12.147,13.287,8.938,-1.44,4.47,16.179,25.686,37.285,10.908,0.844,14.662,19.171,14.346,19.93,18.763,12.661,4.663,2.788,19.758,18.754,10.61,3.339,5.182,22.971,9.502,5.564,2.482,12.911,4.017,14.412,9.847,-2.515,-1.263,9.154,15.332,-7.291,-1.037,6.619,4.328,14.118,-8.463,17.519,21.675,22.09,18.523,12.024,6.463,-3.76,5.351,24.306,21.14,10.547,6.493,10.899,1.335,7.638,19.877,5.258,23.868,18.421,24.685,14.962,4.05,14.956,6.046,1.423,10.486,-2.472,31.381,16.779,9.765,27.276,27.225,-2.585,26.003,32.005,12.106,13.782,14.218,11.292,11.904,10.786,13.191,39.1,9.177,17.927,12.634,36.296,2.181,14.659,20.036,19.378,18.697,13.899,20.59,11.8,4.332,20.536,19.555,15.795,11.701,3.569,10.37,17.513,1.667,19.372,4.99,11.217,11.657,21.586,23.405,4.146,18.346,2.069,24.746,5.54,6.828,9.996,3.439,4.833,5.85,-1.337,4.541,12.438,3.871,9.746,1.137,15.272,13.379,14.728,8.205,14.509,-2.403,-1.501,8.03,3.739,8.126,-7.043,14.912,14.712,8.476,6.152,18.57,-1.355,18.552,-0.552,-7.281,-6.079,23.376,5.136,16.694,-8.306,15.401,20.93,15.703,20.542,-1.409,20.305,24.755,13.394,8.1,3.757,-3.684,11.871,21.179,20.936,3.861,8.635,6.068,22.703,11.491,18.873,0.336,0.483,11.971,25.054,10.453,24.077,5.234,5.493,-2.614,5.793,7.216,20.367,22.828,17.683,5.455,12.163],[31.612,26.345,13.17,15.139,12.02,13.458,9.03,-1.595,4.515,16.26,25.614,37.557,10.932,0.816,14.546,19.178,14.292,19.971,18.83,12.576,4.752,3.0,19.64,18.833,10.832,3.369,5.146,22.915,9.534,5.412,2.465,12.874,3.979,14.297,9.938,-2.48,-1.29,9.141,15.527,-7.219,-0.863,6.498,4.05,14.08,-8.436,17.285,21.765,22.309,18.344,11.953,6.446,-3.6,5.241,24.292,20.758,10.528,6.161,10.684,1.504,7.905,20.092,5.363,23.786,18.517,24.69,14.627,4.423,14.873,6.085,1.662,9.918,-2.621,31.187,17.029,9.801,27.134,26.733,-2.671,26.136,32.395,12.104,14.098,14.435,10.91,11.726,10.903,13.081,39.153,9.266,17.751,12.371,36.176,2.214,15.123,19.689,19.72,18.674,13.867,20.417,12.336,4.54,20.145,20.072,15.73,11.517,3.8,10.66,17.653,1.56,19.351,5.336,11.298,12.032,21.496,23.07,4.218,18.251,1.837,24.7,4.941,6.667,10.034,3.53,4.526,5.483,-2.019,4.97,12.066,4.078,10.173,0.657,14.944,13.773,15.78,7.75,14.718,-2.381,-1.041,8.094,2.813,8.246,-7.179,14.906,14.63,8.545,6.058,18.626,-1.592,17.836,0.05,-7.158,-5.847,23.337,4.602,16.619,-8.028,15.343,21.394,15.601,20.84,-0.925,20.448,24.775,13.504,8.197,3.732,-3.177,11.449,21.211,20.443,4.142,8.905,5.457,23.468,12.001,19.628,0.785,0.278,11.247,25.099,10.552,24.28,5.683,5.509,-2.901,6.25,7.333,20.633,22.592,17.964,5.36,12.29],[31.623,26.188,13.396,15.01,11.924,13.576,9.054,-1.855,4.566,16.213,25.607,37.858,10.857,0.854,14.637,19.214,14.234,19.932,18.972,12.428,4.701,3.007,19.621,18.916,10.989,3.524,5.029,22.959,9.647,5.251,2.426,12.795,3.873,14.39,9.9,-2.457,-1.488,9.195,15.562,-6.968,-0.682,6.466,3.668,14.091,-8.37,16.993,21.783,22.646,18.145,11.86,6.314,-3.571,5.352,24.2,20.537,10.571,6.064,10.561,1.424,8.174,20.243,5.417,23.781,18.556,24.379,14.733,4.224,14.935,6.212,1.345,9.963,-3.289,30.671,16.814,9.526,27.176,27.161,-2.735,25.841,32.612,12.148,13.747,13.771,11.057,11.89,11.026,13.054,39.393,9.548,17.774,11.942,36.389,2.009,14.626,19.698,19.866,18.735,14.186,20.17,12.106,4.41,20.001,20.074,15.753,11.309,4.244,10.749,17.566,1.581,19.209,6.038,11.192,12.526,21.771,23.189,4.166,18.11,2.777,24.549,4.853,6.793,10.074,3.533,4.555,5.07,-1.281,4.997,12.483,4.353,10.235,0.665,14.482,14.039,16.165,7.864,14.726,-2.448,-1.092,8.08,2.728,8.168,-7.141,14.622,14.61,8.306,5.771,18.791,-1.307,17.588,0.347,-7.063,-5.885,23.997,3.946,16.786,-8.029,15.727,21.077,15.435,21.067,-0.638,20.514,24.905,13.169,8.013,3.793,-3.442,11.292,21.643,19.921,4.092,9.601,5.52,23.754,12.266,19.357,0.717,0.562,10.805,25.456,10.444,24.316,5.546,6.058,-2.432,6.626,7.183,20.695,22.309,18.339,4.948,11.978],[31.669,26.142,13.586,14.965,11.908,13.62,9.001,-2.066,4.657,16.083,25.573,38.079,10.704,0.821,14.706,19.16,14.196,19.852,19.09,12.369,4.508,2.899,19.649,19.028,11.002,3.671,4.906,22.956,9.799,5.218,2.494,12.854,3.914,14.493,9.919,-2.345,-1.576,9.252,15.423,-6.784,-0.506,6.377,3.276,14.243,-8.399,16.796,21.632,22.985,18.215,11.774,6.235,-3.546,5.553,24.122,20.436,10.552,6.03,10.61,1.285,8.459,20.339,5.375,23.971,18.552,24.38,15.172,3.709,14.867,6.373,1.545,10.53,-3.284,30.664,16.373,9.585,27.055,27.606,-2.889,25.732,32.546,12.923,13.511,12.999,11.245,12.113,10.538,12.893,39.93,9.488,17.513,12.058,37.189,2.007,14.808,20.012,19.719,18.677,14.037,20.445,12.03,4.385,20.48,19.863,16.03,11.172,4.236,10.344,17.53,1.859,19.295,5.927,11.105,12.511,21.641,23.624,3.743,18.307,2.767,24.718,5.009,6.623,10.15,3.773,4.758,4.687,-0.979,4.561,12.38,4.031,9.844,0.746,14.733,13.58,16.073,8.136,14.805,-2.63,-1.517,8.044,3.251,8.131,-7.017,14.23,14.613,8.454,5.84,18.618,-0.999,17.672,-0.528,-6.758,-5.648,24.081,3.765,17.045,-7.685,15.352,20.697,15.021,21.125,-0.902,20.357,24.949,12.976,7.894,3.888,-3.711,11.807,21.315,19.824,3.931,9.839,6.379,23.572,12.095,18.587,0.534,0.734,11.364,25.454,10.204,23.839,5.134,5.71,-2.088,6.939,6.914,20.525,22.065,17.764,4.602,11.754],[31.696,26.15,13.553,14.854,11.88,13.744,9.068,-2.171,4.603,15.987,25.501,38.34,10.772,0.574,14.763,18.979,14.158,19.93,19.128,12.394,4.316,2.869,19.7,19.2,10.919,3.821,4.739,22.96,9.794,5.344,2.4,12.804,3.969,14.536,9.941,-2.331,-1.483,9.348,15.328,-6.742,-0.52,6.313,3.098,14.299,-8.414,16.703,21.437,23.064,18.537,11.637,6.193,-3.497,5.584,24.105,20.342,10.633,5.978,10.893,1.279,8.746,20.293,5.384,24.09,18.435,24.265,14.764,3.837,14.771,6.326,1.563,10.204,-3.009,31.059,16.436,9.832,26.916,27.072,-3.258,25.909,32.343,13.437,13.515,13.196,11.289,12.231,10.422,12.563,39.931,8.899,17.687,11.848,37.264,1.718,15.042,20.048,19.597,18.413,13.656,20.864,12.027,4.397,20.548,20.068,15.753,11.385,3.784,10.693,17.403,2.078,19.637,4.977,11.209,12.254,21.393,23.257,3.865,18.449,2.553,24.621,4.921,6.475,10.211,3.807,4.924,4.711,-1.452,4.791,11.993,4.227,9.747,0.765,15.206,13.82,15.407,7.996,14.936,-2.558,-1.193,8.388,2.909,7.779,-6.847,14.858,14.439,9.026,5.838,18.591,-1.155,17.595,-0.129,-6.831,-5.417,24.344,3.729,16.765,-8.028,15.551,20.933,15.214,21.539,-0.729,20.457,24.702,13.055,8.093,4.407,-3.355,12.315,21.16,19.999,3.781,9.922,6.377,23.111,11.556,18.223,0.527,0.382,12.101,25.049,10.44,23.976,4.608,5.281,-2.276,7.128,6.89,20.302,22.15,17.463,4.661,11.884],[31.746,26.062,13.322,14.906,11.88,13.907,9.131,-2.149,4.358,16.094,25.419,38.512,10.99,0.357,14.726,18.779,14.052,19.975,19.117,12.542,4.188,2.955,19.807,19.433,10.887,3.938,4.74,22.914,9.766,5.409,2.218,12.636,4.101,14.512,10.045,-2.558,-1.282,9.45,15.392,-6.803,-0.529,6.309,3.035,14.427,-8.31,16.617,21.385,22.976,18.832,11.519,6.138,-3.381,5.407,24.152,20.349,10.687,5.939,11.152,1.289,8.938,20.069,5.413,23.968,18.159,24.319,14.479,4.816,14.489,6.09,0.993,10.175,-3.021,31.328,16.513,9.92,27.036,26.551,-3.143,25.715,32.527,13.646,13.835,14.203,11.27,12.096,10.52,12.584,39.978,9.215,17.308,11.822,37.095,1.394,14.834,19.848,19.773,18.195,13.937,20.475,11.906,4.356,20.084,19.99,15.289,11.237,3.864,10.733,17.263,2.173,20.064,4.569,11.527,12.426,21.51,22.862,4.471,18.3,1.922,24.542,4.914,6.421,9.862,3.756,4.324,5.336,-1.781,4.942,11.962,4.205,9.772,0.599,15.312,13.655,14.564,8.027,14.943,-2.463,-0.908,8.281,2.593,8.029,-6.912,15.281,14.274,9.178,5.296,19.127,-1.308,17.811,0.456,-6.993,-5.832,24.33,3.9,17.059,-8.85,15.633,21.045,15.38,21.387,-0.375,20.525,24.18,13.176,7.841,4.767,-3.131,12.123,21.488,20.069,3.752,9.998,5.949,23.049,11.717,18.501,0.488,0.65,11.948,25.184,10.373,24.335,4.431,5.593,-2.869,7.138,6.699,20.22,22.132,18.036,4.975,12.449],[31.875,26.033,13.134,15.1,11.944,14.184,9.115,-2.177,4.195,16.133,25.301,38.616,11.244,0.269,14.631,18.663,13.897,19.704,18.971,12.73,4.208,3.133,19.91,19.692,10.967,4.02,4.774,22.813,9.618,5.418,2.1,12.372,4.196,14.498,10.086,-2.661,-1.101,9.563,15.526,-6.885,-0.412,6.364,3.066,14.506,-8.311,16.541,21.335,22.775,19.186,11.473,6.046,-3.253,5.199,24.196,20.412,10.663,5.901,11.154,1.355,9.037,19.805,5.379,23.722,17.859,24.18,14.412,4.762,14.328,5.763,0.972,10.414,-3.664,31.38,16.848,10.082,27.09,26.803,-2.793,25.488,32.469,13.459,13.874,14.559,11.326,11.859,10.397,12.864,39.672,10.145,17.286,12.374,37.24,1.195,14.561,19.805,19.994,17.987,14.002,20.025,12.029,4.635,20.346,19.964,15.364,11.459,4.129,10.359,17.28,2.277,20.377,4.844,11.605,12.949,21.363,23.165,4.096,18.272,1.926,24.727,4.19,6.578,10.07,4.031,4.125,5.922,-1.65,5.375,11.909,3.804,10.129,0.461,15.646,13.725,14.289,8.374,14.366,-2.23,-1.441,8.329,2.974,8.21,-6.917,15.283,14.508,9.039,5.535,19.364,-0.784,17.733,0.031,-6.74,-5.839,23.944,4.161,17.429,-8.719,15.997,20.877,15.081,21.082,-0.765,20.29,24.591,12.873,7.834,3.959,-3.16,11.599,21.04,19.982,3.956,9.979,5.546,23.05,11.918,19.312,0.74,0.473,11.872,25.012,10.08,24.109,4.045,5.93,-3.208,7.376,6.57,20.529,22.135,17.773,4.681,12.827],[32.007,26.058,13.071,15.231,11.926,14.452,9.124,-2.41,4.112,16.099,25.303,38.654,11.521,0.245,14.497,18.696,13.805,19.493,18.769,12.919,4.243,3.138,19.898,19.847,11.051,4.168,4.811,22.868,9.54,5.557,2.023,12.173,4.159,14.627,10.034,-2.638,-0.885,9.721,15.522,-6.94,-0.387,6.542,3.29,14.622,-8.449,16.47,21.205,22.714,19.33,11.492,5.976,-3.141,4.83,24.225,20.546,10.699,5.769,10.937,1.415,9.051,19.623,5.314,23.348,17.722,24.24,14.859,3.834,14.536,5.813,1.065,10.361,-3.774,31.035,17.066,9.799,26.914,27.076,-2.763,25.342,32.438,13.495,13.889,14.316,11.005,11.812,10.54,13.336,39.986,9.518,17.948,12.574,37.264,1.492,14.986,19.62,20.076,18.062,13.686,20.531,12.281,4.929,20.288,19.987,15.58,11.634,4.274,10.049,17.189,2.433,20.429,5.17,11.871,12.87,20.802,23.145,3.896,18.332,2.925,24.489,4.078,6.601,10.228,4.255,4.912,5.823,-1.284,5.358,11.707,3.948,10.102,0.504,15.347,13.357,15.057,8.529,14.466,-2.238,-1.965,8.548,2.746,8.331,-6.855,14.911,14.579,9.083,5.908,19.322,-0.721,17.496,-0.216,-6.773,-5.913,24.115,3.79,17.714,-7.619,16.1,20.708,15.053,21.224,-0.666,20.887,24.8,12.524,7.78,3.557,-3.781,11.735,20.572,19.56,4.342,9.756,5.537,23.095,11.761,19.405,0.339,0.669,12.093,24.965,10.096,23.93,4.055,5.702,-2.896,7.386,6.564,20.165,22.343,16.961,4.299,12.566],[32.062,26.042,13.053,15.111,11.745,14.641,8.881,-2.512,4.058,16.22,25.274,38.649,11.741,0.286,14.484,18.708,13.711,19.377,18.697,13.057,4.274,3.012,19.861,19.952,11.144,4.394,4.994,22.95,9.674,5.877,2.105,11.971,4.105,14.773,9.878,-2.738,-0.745,9.862,15.512,-7.022,-0.441,6.715,3.527,14.826,-8.4,16.422,21.177,22.87,19.276,11.614,5.941,-3.109,4.513,24.251,20.657,10.764,5.561,10.914,1.348,8.88,19.556,5.397,23.008,17.632,24.222,15.232,3.495,14.866,5.923,0.784,10.955,-3.376,30.767,16.74,9.559,27.019,26.842,-3.645,25.355,32.764,13.615,13.863,13.96,10.876,11.942,10.859,13.797,40.021,8.996,17.944,12.425,37.471,1.415,14.487,19.503,19.967,18.469,13.5,21.089,12.349,4.51,19.543,20.16,15.393,11.438,3.84,10.141,16.87,2.654,20.19,5.508,11.87,12.885,20.999,23.079,4.473,18.455,2.775,24.449,4.627,6.792,10.315,4.019,4.919,5.249,-1.164,4.685,11.372,4.048,9.958,0.383,14.922,13.196,16.058,8.466,14.823,-2.011,-1.964,8.296,2.632,8.373,-7.369,14.618,14.428,9.146,5.959,18.953,-0.438,17.472,0.039,-7.19,-6.355,24.318,3.977,17.686,-7.388,16.124,20.707,15.393,21.446,-0.361,20.703,24.451,12.492,7.707,3.438,-3.678,12.287,20.704,19.715,4.454,9.68,5.765,22.741,11.562,19.343,0.343,0.974,12.163,24.635,10.457,24.181,3.682,5.412,-2.118,7.415,6.197,19.845,22.276,16.679,4.307,11.659],[32.075,25.964,13.225,14.824,11.51,14.713,8.585,-2.554,3.937,16.262,25.158,38.542,11.925,0.384,14.436,18.627,13.561,19.08,18.879,13.07,4.302,2.922,19.85,19.991,11.207,4.543,5.126,23.042,9.92,6.279,2.152,11.832,3.993,14.909,9.656,-2.827,-0.61,9.889,15.541,-7.272,-0.386,6.574,3.668,15.056,-8.465,16.505,21.196,23.134,19.199,11.826,5.932,-3.074,4.246,24.271,20.694,10.786,5.327,11.119,1.332,8.628,19.525,5.576,22.825,17.628,24.103,15.004,3.447,14.381,5.837,0.374,11.163,-3.278,31.168,16.448,9.353,26.915,26.507,-3.808,25.179,33.104,13.748,13.577,14.037,10.792,11.672,11.135,13.672,40.193,9.313,17.9,12.631,37.847,1.526,14.509,19.797,20.089,17.956,13.804,20.97,12.293,4.354,19.645,19.977,15.148,11.695,3.846,10.65,17.016,2.885,20.32,5.679,11.483,13.332,20.871,23.035,4.078,18.282,2.602,24.816,4.973,7.076,10.348,4.562,4.623,5.036,-1.763,5.112,11.278,3.912,9.851,0.688,15.068,12.838,16.549,8.647,14.841,-1.917,-1.727,8.002,3.864,8.337,-7.057,15.464,14.146,9.136,6.052,19.017,-0.613,17.681,-0.545,-7.149,-6.016,24.471,4.581,17.447,-7.653,16.266,20.955,15.235,21.498,-0.632,20.194,24.418,12.987,7.89,3.474,-3.245,12.686,20.691,19.885,4.146,9.725,5.878,22.046,11.646,19.037,0.91,0.268,12.156,24.175,10.651,24.239,2.974,5.375,-1.809,7.102,5.608,19.987,22.545,16.724,4.188,11.717],[32.101,25.988,13.431,14.569,11.332,14.614,8.482,-2.627,3.666,16.123,25.014,38.391,12.123,0.398,14.263,18.636,13.504,18.98,19.132,13.012,4.327,2.898,19.719,19.907,11.185,4.643,5.187,23.182,10.277,6.656,2.078,11.82,3.985,15.057,9.519,-2.809,-0.5,9.924,15.584,-7.542,-0.457,6.373,3.99,15.278,-8.454,16.689,21.17,23.273,19.221,12.076,5.931,-3.068,4.07,24.14,20.668,10.859,5.224,11.367,1.304,8.361,19.473,5.638,22.728,17.683,24.231,14.824,4.048,13.889,5.378,0.451,10.64,-4.055,31.842,16.235,9.357,26.711,26.926,-2.787,25.291,32.523,13.663,13.24,14.273,10.37,12.002,10.648,13.486,39.943,9.182,17.867,12.72,37.543,1.685,14.292,20.381,20.346,17.709,13.833,20.343,12.438,4.573,19.861,20.129,15.075,11.897,4.331,10.435,17.364,2.787,20.472,5.699,11.412,13.398,20.329,22.687,3.538,18.065,2.495,24.82,4.88,6.816,10.37,5.158,4.616,5.524,-2.034,5.27,11.465,3.531,9.898,0.507,15.892,12.944,16.334,8.741,14.691,-1.997,-1.374,7.917,3.13,8.196,-6.641,15.752,14.316,9.114,5.815,19.072,-0.199,18.083,-0.828,-7.363,-6.582,24.457,4.917,17.536,-8.202,16.838,20.658,15.157,21.693,-0.448,21.031,24.605,13.381,7.668,3.462,-2.986,12.495,20.219,20.085,3.812,9.559,6.106,21.852,11.739,18.916,0.714,0.318,12.504,24.288,10.605,24.147,3.021,5.501,-1.804,6.835,5.033,20.068,22.583,16.995,4.091,12.602],[32.162,26.091,13.58,14.366,11.106,14.455,8.451,-2.645,3.468,15.983,24.971,38.161,12.161,0.362,13.977,18.814,13.566,19.074,19.415,12.988,4.355,2.92,19.397,19.885,11.114,4.618,5.237,23.291,10.342,6.914,1.796,12.021,4.023,15.204,9.613,-2.712,-0.252,10.023,15.563,-7.747,-0.664,6.327,4.228,15.471,-8.308,16.919,21.301,23.289,19.323,12.133,5.849,-2.972,4.056,23.941,20.539,10.951,5.235,11.535,1.256,8.142,19.25,5.539,22.707,17.821,24.239,14.831,3.735,13.734,5.228,0.716,10.537,-4.121,31.58,16.121,9.668,26.634,27.214,-2.531,25.395,31.81,13.717,13.422,14.546,10.286,12.013,10.017,13.582,40.033,9.079,17.569,12.736,37.088,1.905,13.964,20.24,20.096,18.317,13.575,20.168,12.605,5.081,19.72,20.396,15.051,11.752,4.449,10.975,17.042,2.734,20.121,5.935,11.259,13.112,20.616,22.997,3.667,17.952,2.331,24.967,4.575,7.035,11.051,4.792,4.909,6.508,-1.523,4.614,11.402,3.287,9.734,0.075,16.422,13.387,16.05,8.676,14.939,-1.999,-1.454,7.987,3.128,8.076,-6.572,15.689,14.334,9.156,5.441,19.203,0.169,18.066,-0.196,-8.249,-7.085,24.57,5.398,17.592,-8.691,17.07,20.828,15.666,21.78,-0.372,20.448,24.171,13.296,7.778,3.276,-3.655,12.198,20.535,20.128,4.192,9.224,5.938,22.104,11.363,18.963,0.472,0.21,12.724,24.482,10.694,24.026,2.89,5.665,-2.225,6.551,4.886,19.967,22.244,17.577,3.998,12.722],[32.057,26.274,13.651,14.304,10.909,14.416,8.488,-2.684,3.377,15.87,25.041,38.1,12.036,0.388,13.791,18.926,13.628,19.257,19.626,13.035,4.415,2.939,19.172,19.775,10.985,4.481,5.353,23.415,10.355,7.068,1.541,12.339,3.968,15.289,9.765,-2.608,0.033,10.087,15.443,-7.894,-0.919,6.302,4.428,15.591,-8.272,17.185,21.408,23.262,19.425,11.93,5.895,-2.993,4.102,23.743,20.303,10.905,5.21,11.443,1.272,7.999,19.049,5.414,22.818,18.055,24.469,14.579,2.806,13.492,5.226,0.514,10.986,-3.736,30.97,16.072,9.306,26.709,26.756,-2.957,25.063,32.05,13.525,13.173,14.817,10.439,12.177,9.282,13.283,39.722,9.417,17.476,12.993,37.099,1.868,14.433,19.804,20.298,18.352,13.871,20.179,12.453,4.89,19.718,21.186,14.847,11.817,4.115,10.708,17.365,2.648,19.634,6.324,11.194,13.072,20.869,23.451,4.045,18.377,1.923,24.844,4.288,7.203,11.053,4.438,5.462,7.534,-1.476,5.067,11.334,3.388,9.785,-0.047,16.523,13.457,15.976,9.054,14.69,-1.815,-1.674,8.164,3.985,8.019,-6.372,15.219,14.264,9.198,5.67,19.488,0.18,17.74,0.069,-8.36,-6.456,24.606,5.276,17.614,-8.445,17.389,20.802,15.795,21.581,-0.866,20.668,24.237,13.338,7.566,2.949,-3.841,12.831,20.461,19.898,4.104,8.956,5.549,22.485,10.996,19.656,0.316,0.428,12.521,24.685,10.647,23.526,2.856,5.457,-2.12,6.819,5.631,19.1,22.107,17.404,3.856,12.423],[31.832,26.337,13.663,14.153,10.702,14.384,8.571,-2.891,3.291,15.81,25.104,38.229,11.905,0.345,13.848,18.989,13.682,19.506,19.802,13.047,4.462,2.929,19.217,19.642,10.822,4.462,5.518,23.545,10.31,7.157,1.38,12.491,3.881,15.213,9.864,-2.603,0.124,10.196,15.396,-7.797,-1.172,6.365,4.725,15.514,-8.162,17.265,21.42,23.199,19.477,11.631,5.904,-3.09,4.108,23.525,20.107,10.772,5.217,11.359,1.281,7.804,18.816,5.367,23.007,18.401,24.855,14.149,2.92,13.674,5.153,0.916,10.892,-3.594,30.372,15.861,9.391,26.854,27.146,-3.403,25.083,32.617,13.53,12.564,14.801,10.547,12.269,8.957,13.296,39.995,9.335,17.102,13.086,37.251,1.716,14.097,20.102,20.199,18.286,14.204,20.17,11.8,4.417,19.692,21.484,14.942,12.168,3.879,10.791,17.904,2.745,19.48,7.103,11.646,13.557,21.291,23.636,4.004,17.65,1.887,25.227,4.406,7.128,10.506,4.7,5.378,8.199,-1.844,4.968,12.048,3.859,10.071,-0.194,16.82,13.353,15.71,9.34,14.587,-1.717,-1.72,8.298,4.149,8.145,-6.407,14.785,14.187,9.154,6.236,19.43,0.199,18.379,-0.482,-8.428,-6.513,24.386,4.768,17.709,-8.171,17.35,21.08,15.581,21.533,-1.131,20.891,24.352,13.11,7.766,3.158,-3.469,12.929,19.942,19.954,3.933,8.924,5.443,22.851,11.255,19.671,0.97,0.278,12.548,24.718,10.431,23.778,3.235,5.455,-1.838,7.165,6.321,19.254,21.942,16.938,3.784,11.918],[31.59,26.425,13.664,13.827,10.573,14.396,8.583,-3.152,3.319,15.688,25.153,38.507,11.807,0.531,13.9,19.001,13.832,19.453,19.995,13.103,4.469,2.919,19.4,19.498,10.754,4.613,5.545,23.589,10.142,7.246,1.308,12.497,3.944,15.129,9.99,-2.707,0.193,10.335,15.447,-7.768,-1.384,6.56,4.9,15.15,-8.033,17.216,21.512,23.276,19.4,11.491,5.89,-3.242,4.213,23.401,20.106,10.731,5.254,11.34,1.233,7.609,18.716,5.46,23.113,18.636,24.446,14.103,3.586,13.727,5.098,1.386,10.273,-4.138,30.481,15.736,9.724,26.88,27.382,-3.404,25.306,32.82,13.533,12.387,14.749,10.384,12.077,8.855,13.38,40.049,9.127,16.82,12.465,37.26,1.736,14.313,20.537,19.555,18.227,14.004,19.814,11.66,4.862,19.845,21.386,15.376,11.883,4.281,10.991,18.066,3.026,19.968,7.806,11.249,13.269,21.289,23.635,3.661,17.759,1.929,25.026,4.906,7.329,10.885,4.934,5.255,8.53,-1.775,5.064,12.05,3.49,10.219,-0.52,16.97,13.532,14.864,9.143,14.648,-1.593,-1.219,8.162,4.565,8.377,-6.315,14.98,14.306,9.171,6.251,19.317,0.358,18.465,-1.333,-7.909,-6.248,24.446,5.447,17.564,-8.003,17.005,20.659,15.851,21.676,-0.64,20.988,23.931,12.628,7.824,3.215,-3.375,12.511,19.514,20.005,3.934,8.711,5.45,23.124,11.703,19.291,0.83,-0.181,12.316,24.755,9.955,23.628,3.324,5.274,-1.842,6.55,6.454,19.481,21.846,17.182,3.971,12.167],[31.453,26.533,13.587,13.544,10.427,14.35,8.51,-3.471,3.497,15.577,25.174,38.607,11.631,0.896,13.98,18.912,14.043,19.356,20.153,13.105,4.647,3.043,19.42,19.317,10.737,4.887,5.497,23.552,10.183,7.433,1.337,12.488,4.063,15.115,10.035,-2.601,0.369,10.29,15.626,-7.727,-1.536,6.785,5.123,14.828,-7.818,17.223,21.561,23.487,19.204,11.408,5.693,-3.441,4.328,23.239,20.201,10.652,5.302,11.273,1.046,7.364,18.648,5.58,23.087,18.698,24.648,14.145,3.423,12.853,5.296,1.096,10.272,-3.912,30.377,15.386,9.352,26.746,27.251,-3.358,25.368,32.45,13.945,12.365,14.307,10.043,12.026,9.311,13.394,40.182,9.156,16.426,12.524,37.317,2.032,14.772,20.692,19.933,18.281,14.038,20.247,11.987,4.807,19.782,21.363,15.815,11.635,4.297,10.691,17.828,3.119,19.983,7.937,11.074,13.063,21.198,23.382,3.905,18.375,1.508,25.32,4.934,7.431,10.7,4.974,5.361,8.395,-2.053,5.028,11.721,3.252,10.38,-0.141,16.693,13.857,14.76,8.884,15.131,-1.374,-1.024,8.313,4.209,8.448,-6.16,14.979,14.367,9.487,6.058,19.39,0.524,18.14,-0.787,-7.677,-6.389,24.723,5.941,17.379,-7.65,16.354,20.963,15.762,21.768,-0.788,20.369,24.088,12.391,7.46,3.292,-3.883,12.448,19.523,19.913,3.89,8.203,5.887,23.247,11.762,19.361,0.395,-0.003,11.756,24.705,9.946,23.517,3.16,5.399,-2.49,6.203,5.837,19.63,22.127,17.685,3.831,12.552],[31.31,26.493,13.526,13.247,10.358,14.298,8.3,-3.682,3.591,15.372,25.145,38.593,11.627,1.068,14.069,18.841,14.307,19.454,20.226,12.973,4.777,3.281,19.5,19.219,10.7,5.027,5.592,23.481,10.239,7.552,1.398,12.493,4.107,14.999,9.922,-2.467,0.529,10.145,15.831,-7.724,-1.399,7.001,5.328,14.638,-7.329,17.189,21.521,23.569,19.157,11.347,5.385,-3.768,4.386,23.142,20.33,10.345,5.184,11.226,0.814,7.084,18.636,5.73,23.16,18.707,24.751,14.085,3.368,12.651,5.436,1.799,10.428,-3.708,30.329,15.033,9.083,26.684,27.284,-4.156,25.022,32.19,14.223,12.629,14.165,9.517,12.062,9.768,12.945,40.057,8.979,16.55,12.763,37.17,2.726,14.126,20.805,20.312,18.307,14.41,20.324,12.083,5.013,19.594,21.662,16.119,11.985,4.585,10.875,17.495,3.398,19.427,7.501,11.266,13.474,21.054,23.329,4.283,18.542,2.344,25.042,4.859,7.237,10.593,4.98,5.73,8.213,-2.177,5.117,12.34,3.608,10.278,-0.297,16.549,13.641,15.067,9.134,14.995,-1.28,-1.209,8.371,4.553,8.616,-5.516,15.001,14.641,9.236,6.315,19.143,0.605,17.919,-0.575,-7.651,-6.908,24.747,5.516,17.423,-7.555,15.687,21.098,15.6,21.838,-1.6,20.699,24.061,12.823,7.214,3.516,-4.177,12.498,19.952,20.336,4.25,8.243,6.412,22.941,11.691,19.963,0.463,0.178,11.645,24.374,10.057,23.77,3.205,5.356,-2.333,6.641,5.654,18.903,22.088,17.903,3.686,12.105],[31.141,26.377,13.512,13.006,10.347,14.186,8.183,-3.874,3.58,15.221,24.993,38.501,11.727,1.379,14.09,18.756,14.521,19.516,20.353,12.861,4.79,3.658,19.728,19.274,10.652,5.09,5.698,23.437,10.339,7.584,1.462,12.654,4.114,14.882,9.721,-2.582,0.568,10.009,15.851,-7.818,-1.258,7.07,5.584,14.45,-6.741,17.16,21.528,23.45,19.24,11.496,5.242,-3.991,4.469,23.197,20.347,10.181,5.053,11.146,0.812,6.958,18.619,6.022,23.158,18.753,24.464,13.538,3.645,12.763,5.364,1.948,10.309,-4.123,30.39,14.89,9.051,26.692,27.243,-4.386,25.202,32.17,13.712,12.936,14.689,8.993,11.986,10.095,12.752,40.169,8.547,16.574,12.719,37.305,2.946,14.632,20.82,19.652,18.149,14.438,20.334,11.619,5.036,19.765,21.931,16.285,12.073,4.943,10.97,17.698,3.511,19.061,7.4,11.275,13.019,21.272,22.829,4.292,18.203,2.257,24.807,4.854,7.496,11.169,5.177,5.706,7.676,-1.641,5.332,11.757,4.083,9.526,-0.232,16.743,13.695,14.747,9.382,14.726,-1.092,-1.308,8.275,4.309,8.764,-5.332,15.337,14.909,8.455,6.856,19.234,0.986,17.753,-0.715,-8.138,-6.421,24.855,5.387,17.409,-7.273,15.647,20.55,15.745,21.941,-1.598,20.924,23.899,13.09,7.065,3.653,-4.151,12.52,20.127,20.564,4.571,8.223,6.168,22.862,11.315,20.157,0.23,-0.105,11.508,24.873,10.023,23.532,3.13,4.643,-2.456,6.833,5.787,18.806,22.127,17.744,3.433,11.844],[31.073,26.272,13.505,12.903,10.335,13.904,8.175,-4.01,3.583,15.067,24.88,38.494,11.808,1.695,14.187,18.764,14.434,19.648,20.556,12.695,4.727,3.874,19.754,19.403,10.59,5.158,5.786,23.294,10.543,7.615,1.435,12.786,4.172,14.767,9.55,-2.686,0.498,9.721,15.755,-7.859,-1.244,7.026,5.744,14.414,-6.342,17.14,21.519,23.354,19.336,11.734,5.168,-4.063,4.469,23.228,20.228,10.195,4.931,11.08,0.918,6.871,18.641,6.13,23.181,18.772,24.383,13.53,3.062,12.55,5.329,1.752,10.551,-3.83,29.681,14.701,9.465,26.612,27.167,-4.134,25.16,31.742,13.404,12.963,14.515,8.6,11.952,10.182,13.171,40.265,8.421,16.309,12.822,37.345,2.898,15.291,20.936,18.584,18.19,14.346,20.752,11.107,5.362,20.127,21.9,16.27,11.697,5.419,11.4,17.665,3.41,19.176,7.225,11.038,12.923,21.175,22.81,4.275,18.163,1.798,24.951,4.588,7.588,10.791,5.527,5.513,7.074,-1.545,5.173,11.785,3.807,9.775,-0.339,16.333,13.871,14.822,9.435,15.167,-1.094,-1.388,8.098,4.706,8.736,-4.905,15.355,14.615,8.403,6.592,19.371,1.501,18.278,-0.889,-8.292,-6.611,24.805,6.472,17.577,-6.338,15.701,21.25,15.751,21.797,-0.66,20.711,23.787,12.957,7.038,3.705,-4.449,12.474,19.935,20.234,4.434,8.157,6.446,22.839,11.242,19.854,0.425,0.279,11.393,25.093,10.165,24.05,3.294,4.416,-2.895,6.559,6.347,19.385,22.13,17.234,3.794,11.937],[30.979,26.269,13.495,12.84,10.269,13.649,8.181,-3.927,3.465,14.927,24.813,38.524,11.734,1.986,14.453,18.848,14.288,19.868,20.747,12.538,4.657,3.778,19.738,19.428,10.386,5.215,5.838,23.149,10.645,7.759,1.331,12.874,4.188,14.598,9.599,-2.635,0.453,9.531,15.796,-7.92,-1.143,7.019,5.936,14.511,-6.113,17.21,21.492,23.283,19.458,11.92,5.142,-4.289,4.391,23.363,20.115,10.151,5.002,11.067,1.15,6.815,18.621,5.97,23.181,18.671,24.43,13.26,3.396,12.469,5.323,2.384,10.818,-4.059,29.175,14.726,9.333,26.384,26.865,-4.308,24.721,31.668,13.236,13.074,14.06,8.609,11.976,9.766,13.138,40.162,8.983,16.152,13.095,37.231,3.09,14.96,21.45,19.16,18.159,13.885,20.665,11.332,5.044,20.484,22.193,16.094,11.724,5.54,11.336,17.545,3.516,19.675,7.112,11.203,12.987,21.253,22.999,4.028,18.503,1.991,24.907,4.684,7.511,10.956,5.436,5.865,7.056,-1.869,5.041,12.498,3.434,9.737,-0.588,16.11,14.028,14.897,8.745,14.773,-1.293,-1.744,8.048,5.008,8.425,-4.513,15.542,14.512,8.52,5.846,19.351,1.246,18.394,-1.037,-8.009,-6.929,24.734,7.375,17.8,-5.976,15.794,20.661,15.565,21.804,-0.604,20.991,23.819,13.062,6.883,3.986,-4.337,12.253,19.428,20.223,4.255,8.106,6.714,23.355,11.311,19.52,0.512,0.343,11.525,24.922,10.454,24.136,3.306,4.778,-2.743,6.319,6.692,19.529,21.636,17.326,3.7,12.038],[30.995,26.428,13.439,12.846,10.167,13.474,8.205,-3.887,3.422,14.8,24.652,38.642,11.488,2.196,14.71,18.906,14.282,20.079,21.177,12.553,4.524,3.566,19.73,19.482,10.212,5.15,5.773,23.079,10.668,7.914,1.191,13.015,4.061,14.453,9.585,-2.497,0.32,9.43,15.891,-7.864,-1.013,6.924,6.213,14.698,-6.238,17.354,21.329,23.18,19.584,12.047,5.155,-4.582,4.353,23.724,20.131,10.167,5.055,11.016,1.419,6.831,18.361,5.744,23.213,18.424,24.748,13.234,3.7,12.609,5.124,2.709,10.25,-4.051,29.19,14.659,8.907,26.057,27.024,-3.748,24.636,31.136,13.026,13.269,14.266,9.2,11.821,9.061,12.587,39.907,9.029,15.648,12.598,37.269,3.852,15.358,21.518,20.284,18.416,13.914,20.473,11.296,4.674,20.625,22.224,16.19,11.476,4.817,10.962,17.423,3.432,19.688,7.5,11.057,12.857,21.384,22.914,4.36,18.081,1.923,24.842,5.115,7.585,11.411,5.313,5.962,7.401,-1.931,5.058,12.553,3.849,9.437,-0.438,16.156,14.2,14.603,8.418,14.881,-1.325,-1.377,8.137,5.085,8.632,-4.617,15.572,14.732,8.226,6.41,19.374,0.829,17.939,-0.355,-7.715,-6.887,24.711,7.354,17.891,-6.137,15.862,20.847,15.583,21.782,-1.386,20.548,23.892,13.336,7.011,3.891,-4.437,12.269,19.461,20.656,4.241,7.987,6.325,23.427,11.288,19.327,0.754,0.323,11.561,24.518,10.418,23.816,2.929,5.178,-3.061,6.615,6.55,19.134,21.687,17.804,3.688,11.938],[30.97,26.708,13.432,12.912,10.176,13.385,8.191,-3.833,3.457,14.727,24.409,38.809,11.18,2.371,14.889,19.008,14.21,20.231,21.526,12.632,4.522,3.491,19.696,19.556,10.039,4.949,5.701,22.921,10.53,7.946,1.227,13.164,3.994,14.347,9.353,-2.335,0.103,9.264,15.952,-7.502,-0.882,6.841,6.509,14.78,-6.525,17.456,21.182,23.068,19.629,12.093,5.271,-4.858,4.261,24.046,20.321,10.252,5.094,10.937,1.61,6.919,18.032,5.639,23.113,18.206,24.838,12.943,3.66,12.585,5.176,2.719,9.943,-3.776,29.17,14.757,9.264,25.953,27.317,-4.11,24.699,31.27,13.109,13.398,14.299,9.663,11.999,8.764,12.172,40.189,8.3,15.262,12.208,37.363,3.845,15.835,21.668,20.643,18.662,14.111,20.45,11.261,4.861,20.306,23.022,16.004,11.84,4.519,11.755,17.905,3.432,19.609,7.775,10.833,13.025,22.073,23.175,4.629,18.571,1.741,24.649,4.843,7.548,10.739,5.129,5.307,8.302,-1.204,5.046,12.475,3.944,9.57,-0.742,15.907,13.845,14.324,8.754,15.047,-1.567,-0.825,8.146,5.088,8.686,-4.827,15.867,15.133,8.245,6.736,19.761,0.495,17.878,-0.439,-8.317,-7.206,24.483,6.64,17.779,-6.26,15.661,20.819,15.853,21.413,-1.482,20.355,24.012,13.327,7.039,3.886,-5.02,12.347,19.578,21.051,4.145,7.563,5.445,23.21,11.522,19.073,0.793,0.617,11.404,24.889,10.397,24.672,2.695,5.008,-3.31,7.132,6.424,18.353,21.742,18.032,3.576,11.705],[30.87,26.901,13.421,12.972,10.255,13.457,8.2,-3.717,3.454,14.6,24.277,38.919,10.883,2.521,14.96,19.13,13.956,20.513,21.826,12.806,4.612,3.539,19.759,19.695,9.87,4.756,5.616,22.681,10.418,7.935,1.294,13.31,4.05,14.251,9.19,-1.908,-0.105,9.218,16.148,-7.297,-0.814,6.7,6.692,14.633,-6.65,17.513,21.104,22.969,19.567,12.024,5.294,-5.103,4.25,24.34,20.438,10.301,5.115,10.897,1.621,7.007,17.808,5.596,23.043,18.226,25.134,12.79,3.433,12.477,5.245,2.722,9.906,-4.577,29.019,14.922,9.367,25.935,27.774,-4.251,24.586,31.858,13.13,13.574,14.437,9.077,11.932,9.416,12.382,40.397,8.71,15.471,11.785,37.481,3.978,15.441,22.024,19.995,18.351,14.049,20.9,11.291,4.896,19.91,23.32,15.497,12.059,5.127,11.613,18.103,3.182,19.565,7.818,10.534,12.884,22.252,22.697,4.292,18.629,1.908,24.474,4.355,7.359,10.217,5.023,5.275,9.198,-1.29,5.088,12.702,3.381,9.004,-0.523,15.914,14.211,14.389,8.602,14.959,-1.697,-0.777,7.911,5.506,8.328,-4.825,15.699,15.011,8.221,5.774,19.914,0.163,18.359,-0.868,-7.751,-6.721,24.289,5.871,17.789,-6.857,15.675,20.329,15.903,21.35,-1.019,20.826,24.095,13.524,7.097,3.756,-5.4,12.199,19.252,20.838,4.174,8.053,5.318,22.637,11.558,19.211,0.521,0.891,11.458,24.871,10.672,24.954,2.745,4.787,-3.751,6.73,6.628,18.272,21.939,17.984,3.553,11.824],[30.96,26.982,13.364,12.959,10.319,13.694,8.424,-3.807,3.344,14.509,24.371,38.855,10.671,2.756,14.928,19.02,13.515,20.794,22.061,13.037,4.48,3.659,19.951,19.843,9.699,4.566,5.546,22.435,10.344,7.908,1.441,13.582,3.943,14.111,9.024,-1.49,-0.131,9.214,16.253,-7.099,-0.778,6.374,6.782,14.346,-6.715,17.511,21.149,22.892,19.482,12.007,5.164,-5.317,4.342,24.575,20.362,10.262,5.067,10.955,1.335,7.131,17.759,5.684,22.864,18.421,25.085,12.853,3.319,12.561,5.146,2.638,9.645,-3.917,29.184,14.798,8.549,25.819,27.683,-3.943,24.42,31.481,12.775,13.756,14.196,8.954,11.819,9.22,12.95,40.411,9.166,15.652,11.537,37.608,3.715,15.533,22.173,18.868,18.434,13.737,20.988,10.944,5.009,20.221,23.609,15.17,11.756,5.014,11.185,18.07,2.791,19.973,7.666,10.513,12.897,22.59,21.661,4.147,18.476,1.955,24.365,4.714,7.294,10.683,4.773,5.36,9.508,-0.714,5.005,12.926,3.749,9.152,-0.399,15.715,14.608,14.581,8.55,15.197,-1.781,-0.1,7.716,5.886,8.024,-4.894,15.308,15.245,8.295,5.612,19.697,-0.216,18.645,-0.451,-7.953,-5.936,24.369,5.664,17.604,-7.27,15.629,20.83,15.759,21.517,-0.544,20.791,23.961,13.564,6.79,3.464,-5.422,11.955,18.957,21.003,4.195,8.421,6.048,22.794,11.492,19.415,0.743,0.558,11.438,24.482,10.504,25.116,3.244,5.047,-3.767,6.22,6.788,18.849,21.991,17.749,3.979,11.979],[31.166,26.839,13.268,12.929,10.147,13.956,8.418,-3.878,3.278,14.519,24.519,38.756,10.679,2.889,14.884,18.888,13.156,20.967,22.18,13.121,4.231,3.61,20.122,19.912,9.497,4.372,5.497,22.272,10.363,7.832,1.578,13.878,3.686,13.898,9.024,-1.126,-0.105,9.282,16.215,-7.023,-0.691,6.2,6.839,14.202,-6.743,17.499,21.378,22.998,19.356,12.093,5.117,-5.411,4.495,24.671,20.335,10.087,5.148,10.838,1.133,7.237,17.933,5.811,22.762,18.583,25.172,13.012,3.172,12.719,4.92,3.438,10.001,-3.531,29.368,14.693,9.33,25.93,27.477,-4.435,24.644,31.457,12.943,14.162,13.702,9.675,11.573,9.097,13.178,40.378,8.94,15.827,11.608,37.163,3.992,15.363,22.632,18.827,17.985,13.233,21.086,10.807,4.502,21.32,23.575,14.861,11.787,5.095,11.447,17.566,2.679,19.673,7.294,10.068,13.552,22.72,21.777,4.334,18.93,1.796,23.767,4.643,7.397,10.587,4.677,5.587,9.618,0.07,4.559,13.206,3.185,9.233,-0.133,15.323,14.396,14.348,8.568,15.113,-1.833,0.08,7.571,6.169,8.066,-4.893,14.516,15.49,8.224,5.552,19.659,0.08,18.526,-0.169,-7.46,-5.394,24.33,6.285,17.62,-7.063,15.718,21.006,15.842,21.401,-1.033,20.835,24.436,13.221,6.885,3.358,-5.574,11.949,18.374,21.227,4.145,8.119,6.166,22.893,11.066,18.981,0.291,0.209,11.432,24.259,10.413,25.434,3.663,4.683,-3.609,6.425,6.731,19.164,21.794,17.568,3.981,12.011],[31.368,26.767,13.172,13.012,10.083,14.128,8.378,-3.955,3.21,14.621,24.68,38.511,10.882,3.068,14.865,18.566,12.895,21.112,22.199,13.119,3.959,3.628,20.23,19.86,9.216,4.309,5.543,22.108,10.408,7.748,1.662,14.046,3.3,13.61,9.148,-0.87,-0.134,9.412,16.232,-6.924,-0.601,6.162,6.984,14.044,-6.729,17.518,21.689,23.133,19.317,12.164,4.947,-5.484,4.635,24.872,20.41,9.873,5.248,10.733,1.07,7.3,17.996,5.876,22.789,18.591,24.826,13.278,3.484,12.561,4.917,3.504,9.657,-4.688,29.743,14.961,9.603,26.322,27.073,-4.283,24.968,31.518,13.406,14.625,13.839,9.477,11.482,8.895,13.212,40.141,8.397,15.828,11.433,37.184,4.663,15.218,22.686,19.429,18.215,13.421,20.829,10.884,4.014,21.766,23.793,14.531,12.433,5.207,11.855,17.535,2.688,19.536,6.979,9.645,13.441,22.487,22.346,4.127,19.38,1.79,23.916,4.555,7.05,10.573,4.436,5.324,9.579,-0.092,3.959,13.517,3.141,9.104,-0.08,15.291,14.786,13.994,8.08,15.025,-1.805,0.011,7.654,5.915,7.74,-4.964,13.938,15.151,8.622,5.509,19.547,0.386,18.233,-0.78,-7.201,-5.413,24.444,6.345,17.423,-6.633,15.83,21.008,15.769,21.49,-1.452,21.189,24.818,13.273,6.856,3.903,-5.26,12.148,18.144,20.964,4.107,7.607,5.748,23.008,10.751,19.403,0.291,0.381,11.39,24.255,10.474,25.319,3.583,4.781,-4.055,6.987,6.764,19.34,21.794,17.874,3.873,11.44],[31.521,26.713,13.22,13.119,10.118,14.249,8.16,-4.12,3.308,14.889,24.86,38.379,11.026,3.293,14.917,18.238,12.739,21.076,22.172,13.138,3.729,3.642,20.227,19.729,8.979,4.324,5.496,22.034,10.597,7.658,1.664,14.138,2.892,13.439,9.143,-0.908,-0.236,9.543,16.26,-6.845,-0.661,6.101,7.13,13.824,-6.655,17.539,22.045,23.273,19.319,12.169,4.858,-5.486,4.731,25.211,20.448,9.733,5.309,10.621,1.153,7.305,17.939,5.758,22.742,18.524,24.668,13.187,3.297,12.629,5.036,3.195,9.91,-4.703,30.048,15.065,8.851,26.457,27.393,-4.638,24.892,31.935,13.496,14.585,14.11,9.43,11.672,8.967,13.329,39.549,8.637,15.671,11.475,37.113,5.02,15.553,22.21,19.659,18.39,13.432,21.196,10.336,4.401,21.576,23.768,14.194,12.118,5.198,11.301,17.051,2.799,19.784,6.956,9.544,12.791,22.585,22.003,4.159,18.627,2.244,23.605,4.245,7.319,10.56,4.773,5.112,9.16,0.167,4.202,13.582,2.825,9.441,-0.204,15.156,14.846,13.462,8.133,14.993,-1.852,0.323,8.068,5.794,7.551,-5.066,13.751,15.388,8.91,5.449,19.422,0.065,18.478,-0.302,-7.011,-5.347,24.697,6.158,17.58,-6.565,15.574,21.432,15.861,21.798,-0.738,21.067,24.646,13.803,6.684,4.685,-5.382,11.673,18.721,21.098,4.224,7.928,5.448,22.963,10.901,19.909,0.538,0.357,10.988,24.39,10.845,26.031,3.603,4.738,-4.505,6.978,6.5,19.304,22.024,17.894,4.006,11.402],[31.633,26.929,13.401,13.152,10.245,14.288,7.835,-4.274,3.504,15.142,24.848,38.357,11.056,3.517,14.95,18.062,12.641,20.99,22.018,12.938,3.734,3.651,20.148,19.59,8.886,4.5,5.516,21.835,10.691,7.63,1.547,14.088,2.757,13.341,9.123,-0.947,-0.383,9.721,16.303,-6.783,-0.569,6.03,7.149,13.57,-6.585,17.678,22.085,23.505,19.358,12.245,4.926,-5.54,4.795,25.518,20.56,9.763,5.299,10.416,1.281,7.329,17.982,5.589,22.695,18.375,24.982,13.259,3.673,12.947,5.185,2.949,10.321,-3.918,30.138,15.008,8.862,26.288,27.659,-4.79,25.093,32.189,13.439,14.329,14.365,9.562,11.826,9.202,13.43,39.88,8.463,15.779,11.545,36.966,5.127,15.692,21.939,19.211,17.825,12.925,21.045,10.216,4.268,21.451,23.665,14.351,12.142,5.091,11.456,16.485,2.772,19.524,7.04,9.503,13.198,22.394,21.406,4.362,18.601,2.293,23.353,3.715,7.432,10.895,4.883,4.863,8.314,0.105,3.697,13.48,2.785,9.075,-0.272,14.896,14.289,13.128,8.787,15.011,-2.066,0.066,7.67,6.249,7.773,-4.764,13.855,15.772,8.687,4.875,19.553,-0.416,18.938,-0.452,-7.201,-4.846,24.909,6.154,17.721,-6.522,15.292,21.36,16.078,21.876,-0.862,21.2,25.549,14.008,6.427,5.081,-5.83,11.383,19.156,21.291,3.966,7.893,5.975,22.265,10.801,19.328,0.552,0.547,11.004,24.112,11.149,26.295,3.758,4.685,-4.01,6.308,6.49,18.85,22.14,18.109,3.865,11.873],[31.748,27.296,13.568,13.195,10.419,14.195,7.821,-4.304,3.622,15.309,24.803,38.299,11.119,3.664,14.823,17.897,12.658,21.001,21.826,12.816,3.631,3.699,20.125,19.407,9.018,4.616,5.586,21.52,10.717,7.614,1.434,13.927,2.712,13.182,9.011,-1.009,-0.597,9.894,16.421,-6.741,-0.414,5.948,7.132,13.35,-6.412,17.848,21.918,23.74,19.453,12.487,4.904,-5.567,4.763,25.712,20.735,9.851,5.263,10.318,1.146,7.254,18.039,5.617,22.44,18.178,25.517,13.664,3.853,12.741,5.33,3.33,9.765,-4.261,30.108,15.036,8.521,26.164,27.606,-4.578,24.848,32.009,13.076,14.016,14.374,9.85,11.912,9.326,13.772,40.163,7.811,16.361,11.183,37.224,4.436,15.522,22.015,18.577,17.877,12.514,21.123,10.5,4.418,21.187,23.364,14.462,12.021,5.218,11.916,16.861,2.887,19.282,7.4,9.548,13.355,22.449,20.973,4.216,19.083,1.789,23.123,4.068,7.272,11.212,4.921,4.959,7.77,0.152,3.541,12.918,3.078,9.441,-0.21,14.798,14.695,13.634,9.728,15.235,-2.405,0.079,7.539,7.006,7.58,-4.561,14.131,15.251,8.712,5.101,19.713,-0.311,18.97,-0.929,-7.082,-4.944,25.013,6.47,17.688,-6.711,14.628,21.177,16.185,22.082,-1.364,21.337,25.541,13.884,6.76,5.574,-5.648,11.281,19.151,21.169,3.72,7.805,6.051,22.443,10.725,18.685,1.111,0.579,11.326,24.038,10.822,26.304,4.068,4.561,-4.196,6.135,6.35,18.947,21.942,17.993,3.82,11.477],[31.877,27.52,13.631,13.154,10.616,14.114,8.029,-4.252,3.482,15.465,24.719,38.225,11.059,3.657,14.611,17.883,12.632,21.052,21.597,12.864,3.501,3.745,20.232,19.252,9.365,4.6,5.688,21.183,10.804,7.677,1.379,13.733,2.717,13.149,8.994,-0.946,-0.763,10.194,16.542,-6.765,-0.357,5.883,7.158,13.235,-6.232,17.922,21.795,23.894,19.535,12.62,4.933,-5.62,4.697,25.76,20.834,9.835,5.17,10.149,0.989,7.083,18.058,5.659,22.236,17.877,25.737,14.008,3.708,12.754,5.048,3.965,9.693,-5.106,30.187,14.994,8.717,26.298,27.908,-4.842,24.243,31.655,12.999,13.836,14.169,9.967,11.954,9.482,13.735,39.896,8.261,16.523,11.749,37.354,4.154,15.51,21.761,18.873,17.981,12.589,21.58,10.872,4.264,21.458,22.906,14.515,11.75,5.309,11.744,16.674,3.126,19.495,7.754,10.01,12.996,22.584,20.744,4.224,18.841,1.681,22.811,4.049,7.445,10.696,5.111,5.308,7.459,0.359,3.969,13.017,2.517,9.025,-0.264,14.641,14.495,13.923,9.451,15.606,-2.606,-0.004,7.885,7.683,7.57,-4.494,14.272,15.383,9.024,5.188,19.866,-0.268,18.301,-0.744,-6.247,-5.167,25.196,6.797,17.718,-6.526,14.345,21.106,16.152,22.393,-1.339,20.879,24.978,13.925,6.823,5.714,-5.218,11.411,19.187,21.384,4.13,8.084,5.43,22.852,11.133,18.854,0.974,-0.093,10.865,23.734,11.045,26.23,4.416,4.58,-4.534,6.607,6.452,19.311,22.284,17.714,3.856,10.98],[31.941,27.559,13.569,13.106,10.847,14.215,8.243,-4.223,3.176,15.662,24.589,38.072,10.992,3.597,14.384,17.809,12.708,21.133,21.411,12.861,3.385,3.804,20.288,19.23,9.762,4.608,5.856,20.943,10.731,7.812,1.297,13.557,2.592,13.159,9.045,-0.804,-0.794,10.218,16.714,-6.684,-0.379,5.84,7.261,13.135,-6.267,17.785,21.768,23.972,19.64,12.737,5.047,-5.62,4.619,25.664,20.999,9.756,5.129,10.01,0.838,7.086,18.09,5.653,22.245,17.537,25.756,13.814,3.703,13.17,4.863,3.64,10.159,-5.203,30.734,14.828,9.181,26.229,28.097,-4.97,24.838,31.591,13.044,14.106,14.427,9.844,12.204,10.104,13.244,39.678,9.094,16.242,11.645,36.74,4.531,15.613,21.784,19.53,18.065,12.914,21.292,11.115,3.568,21.368,22.657,14.397,12.311,5.288,11.683,16.547,3.053,19.177,8.42,10.625,13.221,22.794,21.318,4.375,19.167,1.915,22.478,3.647,7.664,10.684,5.053,5.808,7.302,0.323,3.75,13.118,2.648,9.083,-0.614,14.843,14.242,13.5,8.961,15.557,-2.568,0.038,7.787,8.077,7.637,-4.544,14.081,15.858,9.855,4.713,20.236,-0.571,18.328,-0.846,-6.796,-4.999,25.418,6.616,17.716,-5.77,14.631,21.168,16.158,22.316,-0.903,20.652,25.174,14.248,6.669,6.242,-5.527,11.258,18.939,21.416,4.039,7.586,5.377,22.157,11.174,19.041,0.579,-0.381,10.618,23.55,11.239,26.013,4.045,4.809,-4.628,6.861,6.512,19.145,22.691,17.529,3.578,10.81],[32.119,27.51,13.504,13.271,11.131,14.41,8.591,-4.233,3.006,15.792,24.809,37.746,10.97,3.48,14.29,17.68,12.902,21.187,21.546,12.943,3.09,3.912,20.208,19.267,10.017,4.587,6.028,20.996,10.631,7.995,1.142,13.53,2.357,13.156,9.139,-0.775,-0.823,10.148,16.937,-6.608,-0.476,5.727,7.376,13.057,-6.509,17.599,21.811,23.876,19.806,12.865,5.131,-5.636,4.598,25.469,21.074,9.72,5.064,9.976,0.717,7.234,18.069,5.552,22.118,17.298,25.702,13.947,3.42,12.943,4.658,3.208,9.923,-4.712,31.029,15.013,8.989,26.254,27.963,-4.719,24.998,31.431,13.187,13.901,14.756,10.121,12.017,10.362,13.686,39.602,8.663,16.19,10.934,36.677,4.271,15.236,21.797,18.88,17.474,13.628,21.482,11.067,3.914,21.381,22.653,14.386,12.429,5.4,11.724,16.493,3.23,19.208,9.043,10.875,13.058,22.965,21.474,4.594,19.432,1.725,22.528,3.859,7.841,10.915,4.796,5.633,7.019,0.225,3.65,12.744,2.602,9.386,-0.667,14.764,14.211,13.131,8.724,15.675,-2.569,0.551,7.78,8.096,7.185,-4.907,12.984,15.955,9.72,5.016,20.223,-0.579,18.523,-0.543,-7.305,-4.843,25.343,6.046,18.112,-5.86,14.859,21.517,15.972,22.399,-0.94,21.124,25.106,14.343,6.835,6.352,-5.962,11.285,19.154,21.428,3.781,7.287,5.961,22.326,10.799,18.749,0.566,-0.536,10.982,23.243,11.429,26.442,3.844,5.325,-4.636,6.419,6.571,19.033,22.265,17.291,3.536,11.108],[32.338,27.37,13.54,13.479,11.306,14.691,8.731,-4.164,3.024,15.863,25.223,37.444,10.855,3.365,14.337,17.426,13.155,21.235,21.76,13.013,3.069,4.037,20.17,19.212,10.009,4.52,6.077,21.218,10.633,8.118,0.96,13.557,2.126,13.181,9.205,-0.842,-0.797,10.102,17.103,-6.597,-0.46,5.695,7.409,12.816,-6.734,17.418,22.098,23.704,19.988,13.007,5.29,-5.81,4.624,25.354,20.866,9.706,5.031,10.01,0.627,7.289,18.121,5.467,21.828,17.296,25.489,14.151,3.266,13.133,4.677,3.667,10.094,-4.612,31.135,15.375,9.215,26.447,27.942,-5.179,24.694,31.609,13.263,13.258,14.541,10.451,11.767,10.31,14.328,39.216,8.838,16.502,10.824,37.105,3.394,14.871,21.843,18.479,17.43,13.718,21.404,11.428,3.553,21.307,22.985,14.087,11.698,5.456,11.677,16.599,3.244,19.231,9.357,11.117,13.206,23.077,20.959,4.538,18.956,1.44,23.007,3.66,7.863,10.526,5.274,5.619,6.969,0.072,3.49,13.227,1.751,9.659,-0.912,14.805,13.992,13.018,9.024,15.914,-2.571,0.442,7.665,8.003,7.344,-5.032,12.265,15.992,9.102,4.837,20.229,-0.453,18.342,-0.319,-6.489,-5.118,25.177,5.589,18.27,-6.68,14.579,21.037,15.926,22.464,-1.419,21.098,25.287,14.427,7.083,6.443,-5.284,11.066,19.456,21.592,3.662,7.802,5.784,22.077,10.715,18.255,0.969,-0.706,11.024,23.638,11.63,26.145,4.085,4.744,-4.532,6.373,6.245,18.96,22.289,17.086,3.503,10.855],[32.546,27.172,13.68,13.577,11.326,15.032,8.727,-4.119,3.179,15.919,25.516,37.26,10.749,3.294,14.397,17.108,13.255,21.27,21.883,13.053,3.122,4.124,20.012,18.978,10.037,4.435,6.083,21.33,10.597,8.169,0.757,13.627,1.997,13.101,9.218,-0.974,-0.772,10.078,17.097,-6.472,-0.363,5.67,7.329,12.384,-6.867,17.261,22.333,23.603,20.125,13.309,5.434,-5.758,4.686,25.349,20.591,9.669,5.03,9.979,0.661,7.274,18.419,5.392,21.587,17.212,25.368,14.421,3.515,13.797,4.889,3.69,9.942,-4.959,31.506,15.293,9.399,27.055,27.716,-5.235,25.098,31.828,13.425,13.182,14.265,10.411,12.004,10.61,14.57,38.993,9.212,16.703,11.086,36.869,2.9,14.988,22.153,19.071,17.289,13.772,21.196,11.14,3.802,21.593,23.289,14.332,11.583,5.703,11.076,16.376,3.107,19.077,9.884,10.96,13.23,22.753,20.594,4.368,19.055,1.413,22.971,3.701,7.932,10.53,5.057,5.706,6.873,-0.035,3.563,13.502,1.316,9.514,-0.927,14.976,14.276,12.744,9.587,15.88,-2.604,-0.063,7.747,7.863,7.468,-5.065,12.672,16.455,8.95,4.665,20.64,-0.563,18.017,-0.494,-6.194,-4.983,25.112,5.546,18.436,-7.022,14.254,21.41,15.512,22.112,-1.539,21.392,25.334,14.384,7.157,6.036,-5.559,11.287,19.336,21.166,3.809,8.284,5.153,21.988,11.028,18.703,1.003,-0.819,10.588,23.235,11.598,25.614,3.933,4.419,-4.541,6.807,5.972,18.833,22.28,17.181,3.326,10.815],[32.772,27.121,13.827,13.597,11.324,15.249,8.633,-4.157,3.441,15.946,25.72,37.172,10.789,3.169,14.42,16.854,13.346,21.225,21.856,13.026,3.182,4.218,19.886,18.836,10.044,4.364,5.847,21.245,10.568,8.329,0.797,13.682,2.014,13.031,9.174,-1.189,-0.847,10.19,17.076,-6.154,-0.383,5.556,7.242,12.12,-6.858,17.033,22.452,23.613,20.191,13.58,5.499,-5.494,4.61,25.324,20.63,9.553,4.951,9.95,0.823,7.303,18.531,5.341,21.509,16.93,25.268,14.171,3.84,13.469,5.126,3.5,9.483,-5.228,31.533,15.392,8.82,27.463,27.377,-4.997,25.322,31.673,13.9,13.253,14.668,10.542,12.283,10.475,14.709,38.912,9.006,16.658,11.511,36.127,2.924,15.276,22.013,18.628,16.788,14.041,21.131,11.31,3.604,21.841,23.587,14.515,12.162,5.809,11.163,16.28,2.792,18.932,9.502,10.41,13.343,22.971,20.641,4.449,19.468,1.32,22.781,3.929,7.618,10.825,5.119,5.655,7.031,0.196,3.176,13.778,1.821,8.944,-0.983,14.726,14.228,12.566,9.235,15.77,-2.458,-0.199,8.065,7.678,7.019,-4.997,12.547,16.314,9.125,4.806,20.704,-0.594,17.826,-0.98,-6.523,-4.694,25.064,5.332,18.395,-7.071,13.86,21.782,15.445,22.084,-0.737,21.288,25.283,14.785,7.345,5.871,-5.999,11.234,19.506,20.889,3.727,8.531,5.311,21.956,10.93,18.539,0.626,-0.658,10.335,22.88,12.105,26.186,3.941,5.025,-4.145,6.865,6.188,19.395,22.258,17.083,3.36,10.949],[32.828,27.231,13.951,13.555,11.349,15.336,8.314,-4.274,3.732,15.893,25.871,37.09,10.935,3.003,14.399,16.743,13.387,21.306,21.78,13.053,3.229,4.271,20.061,18.662,10.029,4.301,5.545,21.23,10.663,8.395,0.87,13.82,2.095,12.963,9.121,-1.376,-0.851,10.259,16.957,-5.856,-0.454,5.313,7.154,11.902,-6.709,16.76,22.369,23.681,20.134,13.952,5.559,-5.354,4.457,25.437,20.933,9.398,4.961,9.911,0.884,7.455,18.468,5.355,21.59,16.604,25.286,14.025,3.955,12.965,5.25,3.734,9.899,-5.297,31.627,15.366,8.771,27.191,27.665,-5.184,25.394,31.994,14.235,13.323,14.872,10.215,12.289,10.518,14.634,38.645,8.215,16.38,12.108,35.969,3.321,15.29,21.764,18.424,16.879,14.085,20.845,11.743,3.705,21.512,23.508,14.362,12.193,6.002,11.326,16.023,2.817,18.683,9.345,10.433,13.226,23.018,21.167,4.524,19.112,1.4,22.583,4.177,7.352,11.054,4.423,5.112,6.93,-0.293,3.001,13.491,2.768,9.583,-1.042,14.731,14.01,12.824,9.581,15.912,-2.242,-0.096,7.613,6.835,6.922,-5.08,11.796,15.81,9.415,4.607,20.468,-0.436,17.847,-1.129,-6.408,-4.37,25.239,5.51,18.468,-6.548,13.657,21.377,15.949,22.455,-0.587,21.204,25.384,15.609,7.325,5.632,-5.142,10.575,19.387,21.09,3.556,8.212,5.429,21.654,10.48,17.53,0.691,-0.161,10.49,23.309,12.403,26.369,4.094,5.282,-4.275,6.567,6.547,19.441,22.647,17.172,3.427,11.032],[32.827,27.392,13.885,13.338,11.315,15.326,7.911,-4.361,3.869,15.794,25.961,37.06,11.225,2.963,14.382,16.711,13.428,21.471,21.63,13.079,3.225,4.371,20.163,18.408,10.212,4.186,5.256,21.418,10.691,8.288,0.86,13.917,2.359,12.95,9.145,-1.452,-0.804,10.393,16.773,-5.602,-0.56,5.111,7.017,11.64,-6.527,16.616,22.127,23.822,20.105,14.259,5.536,-5.345,4.274,25.7,21.221,9.222,5.027,9.767,0.904,7.676,18.438,5.332,21.738,16.395,25.55,14.145,4.145,13.499,5.674,3.294,10.074,-5.361,31.989,14.969,8.73,26.574,27.854,-5.52,25.146,32.247,14.374,13.377,14.547,10.156,12.131,10.541,14.357,38.78,7.753,16.338,12.321,36.013,3.41,15.443,21.477,18.643,16.732,14.108,21.233,11.602,3.926,21.073,23.325,13.927,11.943,5.823,11.54,16.187,2.755,18.707,9.714,10.596,13.086,23.379,21.581,4.887,19.042,1.69,22.371,4.101,7.249,10.702,4.018,5.026,6.784,-0.829,3.422,13.878,2.512,9.74,-0.801,14.579,14.438,13.144,9.909,15.786,-1.712,-0.244,7.826,5.932,6.77,-4.862,11.284,15.658,9.414,3.957,20.526,-0.583,17.901,-1.068,-5.788,-3.885,25.462,5.793,18.501,-5.871,13.387,21.352,15.69,22.466,-1.314,21.488,25.858,15.969,7.432,5.696,-4.778,10.822,19.695,21.839,3.913,7.831,5.211,21.589,10.41,17.303,0.743,0.253,10.206,23.468,12.911,25.814,3.889,5.295,-4.86,6.401,6.337,19.256,22.659,16.799,3.501,11.274],[32.925,27.531,13.547,13.17,11.156,15.243,7.65,-4.348,3.863,15.725,25.912,37.105,11.397,2.975,14.456,16.636,13.445,21.573,21.633,13.025,3.069,4.386,20.222,18.31,10.369,4.05,5.122,21.654,10.561,8.169,0.916,13.982,2.564,12.939,9.222,-1.54,-0.717,10.59,16.806,-5.352,-0.79,4.956,6.833,11.341,-6.192,16.552,22.029,23.902,20.218,14.514,5.574,-5.448,4.146,25.874,21.389,9.07,5.071,9.76,0.904,7.866,18.492,5.357,21.895,16.317,25.716,14.096,4.288,13.407,5.369,3.585,10.033,-5.417,32.394,14.902,8.042,26.872,27.616,-5.33,25.509,31.989,13.654,13.114,14.472,10.535,12.002,10.302,14.838,38.837,7.433,16.546,12.541,36.509,3.446,15.354,21.049,18.328,16.542,14.257,21.242,11.058,3.862,21.373,22.562,14.073,11.845,5.91,11.391,16.329,2.38,18.432,9.848,11.268,13.448,23.715,21.5,4.752,19.391,1.85,22.713,3.984,6.921,10.797,4.227,5.039,6.975,-0.327,3.423,14.413,2.5,9.427,-0.874,14.436,14.72,13.158,9.46,15.373,-1.604,-0.207,7.992,5.691,6.712,-4.493,11.177,15.964,9.645,4.063,20.656,-0.399,17.906,-1.175,-5.066,-4.057,25.429,6.129,18.37,-6.447,13.212,21.313,15.286,22.412,-1.382,20.856,26.163,15.901,7.352,5.695,-5.554,10.952,19.316,21.87,3.843,8.104,5.034,21.774,10.394,17.711,0.788,0.278,9.464,23.629,12.916,26.177,3.53,4.972,-4.575,6.728,6.404,19.514,22.93,16.322,3.525,10.837],[33.207,27.533,13.268,13.097,10.99,15.135,7.328,-4.252,3.716,15.752,25.948,37.178,11.462,3.115,14.533,16.498,13.472,21.655,21.686,13.033,3.009,4.376,20.35,18.385,10.461,3.957,5.067,21.837,10.356,8.164,1.033,14.118,2.557,12.922,9.215,-1.428,-0.6,10.595,16.785,-5.133,-1.046,4.866,6.713,11.104,-6.152,16.425,21.873,23.826,20.376,14.62,5.629,-5.666,4.034,26.032,21.46,9.007,4.992,9.676,0.916,8.058,18.383,5.381,21.909,16.345,25.614,14.155,4.324,12.811,5.072,3.787,10.21,-5.531,31.95,14.86,8.044,27.559,27.792,-5.042,25.642,31.994,13.639,12.796,14.189,10.223,11.605,10.352,15.075,38.942,7.227,16.723,12.464,36.496,3.825,15.278,21.769,18.286,16.818,14.113,21.153,11.751,3.206,22.058,22.902,14.641,11.629,5.907,11.211,15.992,2.168,18.068,9.88,10.887,13.242,23.373,21.51,4.521,19.241,1.626,23.571,4.061,6.88,11.108,4.393,4.952,7.058,-0.219,3.434,14.133,2.806,9.745,-0.808,14.769,14.486,12.446,9.579,15.698,-1.568,-0.57,7.63,5.285,6.65,-4.431,11.054,16.169,10.321,4.446,20.858,-0.191,17.804,-1.065,-5.516,-3.614,25.367,6.349,18.75,-6.304,12.799,21.344,15.531,22.581,-1.025,20.564,25.573,15.785,7.456,5.817,-5.513,10.627,19.326,21.331,3.693,8.86,5.044,22.176,10.426,18.037,0.946,-0.231,9.498,23.485,12.959,26.99,3.589,4.483,-4.132,7.006,6.625,19.655,23.196,16.557,3.58,10.701],[33.474,27.372,13.129,13.027,10.791,15.086,6.979,-4.193,3.591,15.895,26.051,37.225,11.456,3.398,14.585,16.43,13.576,21.846,21.904,13.005,3.136,4.38,20.34,18.511,10.535,3.848,5.057,22.085,10.166,8.31,1.114,14.16,2.564,12.791,9.044,-1.227,-0.481,10.582,16.732,-5.094,-1.007,4.959,6.46,10.974,-6.316,16.248,21.719,23.752,20.543,14.577,5.675,-5.722,3.904,26.172,21.406,9.077,4.784,9.54,0.868,8.327,18.176,5.333,21.763,16.507,25.737,14.193,4.056,12.985,5.204,3.767,10.095,-5.45,32.247,14.873,7.949,27.53,27.55,-4.955,25.876,32.831,14.355,12.908,14.103,9.932,11.459,10.834,14.7,39.007,7.157,16.555,12.294,36.246,3.678,15.548,22.302,18.255,16.428,14.069,21.115,11.92,3.607,21.577,23.449,14.268,11.891,6.009,11.31,15.878,2.538,18.649,9.942,10.626,12.829,23.564,21.406,4.489,19.167,1.616,23.673,4.075,6.94,10.838,4.768,5.088,7.086,0.182,3.204,14.345,2.638,9.61,-0.612,14.67,14.432,12.335,9.83,15.716,-1.712,-0.567,7.531,4.796,6.361,-4.58,11.032,15.453,10.072,4.053,20.94,-0.525,17.919,-1.539,-5.64,-3.551,25.478,6.781,19.043,-6.08,12.851,21.217,15.706,22.495,-1.254,20.878,25.425,16.045,7.478,5.587,-5.6,10.794,19.462,21.352,3.651,9.025,5.257,22.131,10.492,17.68,0.932,-0.462,9.709,23.446,13.107,27.261,3.918,4.74,-4.113,7.035,6.371,19.3,23.202,17.283,3.555,10.596],[33.718,27.163,13.138,13.025,10.66,15.162,6.574,-4.099,3.584,16.015,26.177,37.225,11.352,3.647,14.716,16.454,13.568,21.968,22.035,13.004,3.353,4.453,20.327,18.682,10.507,4.0,5.046,22.186,10.106,8.576,1.096,14.015,2.482,12.655,8.715,-0.955,-0.5,10.618,16.476,-5.155,-0.958,4.988,6.212,11.118,-6.335,16.137,21.665,23.823,20.552,14.585,5.778,-5.631,3.825,26.301,21.211,9.174,4.633,9.457,0.697,8.551,18.04,5.307,21.644,16.687,25.28,14.18,3.557,13.08,5.103,4.073,9.97,-5.371,32.828,14.78,7.639,27.467,27.299,-4.984,25.77,33.16,14.852,12.99,13.984,9.824,11.625,10.531,14.409,38.9,7.548,16.593,11.769,36.529,4.004,15.881,22.652,18.475,15.761,14.274,21.153,11.346,3.87,21.473,23.53,13.993,11.733,5.985,11.03,15.728,2.455,19.33,10.059,10.979,12.871,23.955,21.804,4.434,18.981,1.927,23.64,3.994,6.822,10.619,4.938,5.006,7.007,0.502,3.34,14.334,2.626,9.324,-0.531,14.135,14.824,13.007,9.707,15.484,-1.777,-0.093,7.323,4.794,6.701,-4.72,11.041,15.521,9.647,4.396,21.319,-0.696,17.635,-1.632,-5.421,-3.644,25.385,6.914,19.068,-6.177,12.812,21.031,15.488,22.366,-1.028,20.942,25.975,16.187,7.506,5.037,-5.765,10.889,18.906,21.583,3.533,8.746,5.216,21.19,10.435,17.5,0.688,-0.04,9.676,23.478,13.139,26.806,3.962,5.334,-4.409,7.116,5.901,18.96,22.892,17.351,3.299,9.98],[33.857,26.767,13.125,12.954,10.636,15.407,6.33,-3.959,3.537,16.07,26.203,37.344,11.109,3.903,14.862,16.425,13.429,22.119,22.069,13.018,3.454,4.577,20.342,18.882,10.436,4.326,4.998,22.204,10.149,8.842,1.042,13.847,2.323,12.692,8.599,-0.617,-0.652,10.687,16.117,-5.219,-0.95,5.135,6.078,11.335,-6.233,16.011,21.742,23.811,20.506,14.748,5.89,-5.602,3.911,26.354,21.001,9.16,4.514,9.217,0.645,8.591,17.901,5.08,21.435,16.831,24.853,14.421,3.752,12.939,4.999,4.247,9.651,-4.862,32.659,14.671,7.25,27.362,27.608,-5.217,25.962,33.008,13.999,13.213,14.025,9.721,11.754,9.667,15.05,39.067,7.482,16.421,11.577,36.462,3.915,15.812,22.444,19.183,15.954,13.906,20.839,11.567,3.857,21.879,23.287,14.673,11.578,6.014,10.536,15.724,2.399,19.249,10.125,10.821,13.139,24.032,22.738,4.52,19.533,1.683,23.037,4.516,6.875,10.301,4.551,4.698,7.286,0.566,3.437,14.364,2.227,9.097,-0.701,14.416,14.441,13.021,9.722,14.882,-1.836,0.044,7.381,4.839,6.845,-4.477,11.405,15.478,9.772,4.586,21.132,-0.245,17.783,-1.162,-5.425,-3.475,25.414,7.02,18.72,-6.233,13.066,21.038,15.255,22.538,-0.727,20.657,26.76,15.829,7.789,4.579,-5.21,10.404,18.511,21.572,3.447,8.967,4.765,21.103,10.641,17.698,0.49,0.058,9.728,23.205,13.243,26.887,3.632,5.106,-4.528,7.118,6.032,19.301,22.408,17.048,3.006,10.365],[33.627,26.43,13.126,12.776,10.59,15.52,6.229,-3.948,3.425,16.068,26.217,37.471,10.759,4.169,15.053,16.449,13.4,22.318,21.96,13.061,3.522,4.744,20.357,19.11,10.48,4.444,5.024,22.203,10.075,9.02,0.949,13.638,2.153,12.757,8.722,-0.503,-0.8,10.767,15.815,-5.262,-0.918,5.257,6.03,11.63,-6.062,15.906,21.77,23.77,20.341,15.01,5.907,-5.498,4.038,26.434,20.816,9.117,4.492,9.187,0.731,8.417,17.864,4.785,21.257,16.924,24.702,14.455,3.863,12.887,4.914,4.374,9.327,-4.731,32.519,14.669,7.198,27.262,27.303,-4.585,25.78,32.877,13.943,13.343,14.15,9.598,11.471,9.622,15.346,39.362,6.797,16.663,11.754,36.685,3.391,15.602,22.378,19.012,16.129,13.958,21.042,11.624,4.431,22.247,22.902,14.503,12.032,6.014,10.449,16.18,2.795,19.003,10.641,10.694,13.194,23.983,22.658,4.387,19.442,1.525,23.341,4.456,6.483,10.395,4.94,4.601,7.586,0.71,3.123,14.654,2.07,9.396,-0.84,14.424,13.971,13.151,10.221,14.733,-1.772,0.321,7.332,4.586,6.973,-4.293,11.758,14.686,10.319,4.511,20.952,-0.122,17.536,-0.927,-5.559,-3.818,25.484,7.011,18.531,-6.572,13.382,21.067,15.062,22.428,-1.083,20.755,26.872,16.237,7.737,5.053,-5.648,10.349,18.703,20.993,3.18,9.456,4.674,21.306,10.424,18.133,0.337,-0.24,9.371,22.715,13.305,27.486,4.084,5.016,-4.259,7.322,6.064,19.133,22.621,17.345,3.185,10.386],[33.344,26.289,13.133,12.714,10.548,15.463,6.122,-3.93,3.311,16.06,26.138,37.644,10.43,4.379,15.201,16.547,13.431,22.373,21.853,13.144,3.607,4.807,20.357,19.292,10.586,4.643,4.918,22.149,10.046,9.113,0.887,13.522,2.055,12.742,8.858,-0.595,-0.857,11.046,15.544,-5.287,-0.93,5.317,5.99,11.971,-5.973,15.865,21.604,23.691,20.291,15.271,5.855,-5.485,4.311,26.593,20.723,8.998,4.589,9.319,0.833,8.288,17.778,4.76,21.155,17.159,24.433,14.202,3.271,12.42,4.868,4.627,9.209,-5.502,32.347,14.636,7.539,27.663,26.696,-4.566,25.669,32.118,14.326,13.759,13.994,9.698,11.414,10.127,15.09,39.436,6.302,16.728,11.471,36.641,4.189,16.04,22.385,18.637,16.635,14.148,20.8,11.579,3.81,22.601,22.41,14.062,11.736,6.284,10.014,16.411,3.006,19.442,10.941,10.602,13.309,24.22,22.016,4.629,18.801,1.405,23.564,4.344,6.48,10.247,4.987,5.016,8.136,0.937,3.501,14.267,2.379,9.648,-0.853,14.433,13.933,13.183,9.882,14.568,-1.815,0.356,7.539,4.573,6.836,-4.181,11.98,14.372,10.233,4.451,20.543,-0.963,17.107,-1.029,-5.925,-3.532,25.466,6.631,18.505,-6.686,13.844,21.182,14.806,22.404,-1.445,21.169,26.404,16.634,7.45,5.93,-5.783,10.926,18.636,20.764,2.955,9.114,4.912,21.39,10.289,18.474,0.366,-0.514,9.311,22.549,13.573,27.892,4.316,5.153,-3.804,7.008,5.851,18.694,22.489,17.219,3.269,9.955],[33.026,26.328,13.069,12.696,10.655,15.289,6.188,-4.094,3.081,15.926,26.022,37.75,10.169,4.691,15.359,16.795,13.374,22.514,21.809,13.135,3.504,4.838,20.109,19.351,10.678,4.747,4.751,22.048,10.017,9.017,0.935,13.662,2.183,12.804,8.978,-0.647,-0.942,11.181,15.408,-5.167,-1.048,5.281,6.01,12.315,-5.955,15.789,21.446,23.615,20.24,15.289,5.729,-5.594,4.678,26.72,20.725,8.806,4.773,9.433,0.758,8.315,17.577,5.118,21.079,17.351,24.477,14.124,2.96,12.407,4.741,4.814,8.867,-4.988,32.192,14.494,7.372,27.39,26.713,-5.137,25.875,32.115,14.275,14.014,13.995,9.646,11.552,10.507,14.974,39.449,5.73,16.747,10.884,36.46,3.982,16.565,22.296,19.21,16.761,13.895,20.479,11.529,3.467,21.7,22.305,14.316,11.588,6.083,9.772,16.235,3.048,20.184,10.833,10.751,13.218,24.312,21.868,4.621,18.664,1.254,23.264,4.415,6.099,9.824,4.608,5.278,8.173,0.852,3.443,14.63,2.512,9.696,-0.926,14.423,14.082,13.229,10.13,14.388,-1.951,-0.212,7.429,4.623,7.085,-4.148,11.895,14.532,10.342,4.894,20.866,-0.774,17.327,-1.497,-6.032,-3.34,25.383,6.182,18.345,-6.556,14.143,20.614,14.655,22.571,-0.88,20.907,26.187,16.843,7.61,6.52,-5.272,10.88,18.512,20.885,3.453,8.609,4.844,21.624,10.203,18.776,0.952,-0.421,9.823,22.676,13.838,27.933,4.19,5.03,-4.122,6.848,6.162,18.691,22.481,17.082,3.063,10.479],[32.962,26.375,12.947,12.569,10.791,15.109,6.431,-4.19,2.789,15.778,25.868,37.711,9.925,4.933,15.537,17.078,13.264,22.552,21.708,13.036,3.352,4.786,19.636,19.503,10.781,4.547,4.525,21.919,9.919,8.924,0.926,13.935,2.276,12.95,9.108,-0.751,-0.963,11.139,15.524,-4.96,-1.216,5.34,5.969,12.44,-5.952,15.802,21.284,23.796,20.195,15.17,5.551,-5.6,5.053,26.73,20.924,8.829,4.886,9.545,0.756,8.451,17.535,5.488,21.115,17.442,24.644,14.165,2.976,13.035,4.573,4.841,8.752,-4.752,31.431,14.381,7.196,26.838,27.149,-5.312,25.769,32.616,13.689,14.153,13.966,10.115,11.583,9.995,14.88,39.402,5.363,16.79,10.218,36.511,4.184,16.53,22.484,18.943,16.193,13.774,20.818,11.499,4.02,21.526,22.504,14.602,11.774,5.892,9.947,16.428,2.849,20.127,10.489,11.485,12.663,24.288,22.307,4.816,18.563,1.635,23.161,4.061,5.628,9.875,4.825,5.205,7.885,0.625,3.231,14.659,2.492,9.693,-0.775,14.533,14.21,13.465,10.357,14.41,-2.241,-0.089,7.656,5.172,7.013,-4.127,11.989,14.688,10.57,4.706,20.67,-0.618,17.344,-1.427,-5.548,-3.203,25.345,5.608,18.366,-6.536,14.322,20.261,14.503,22.246,-0.919,20.494,26.647,16.655,7.337,6.504,-5.821,10.563,18.414,21.125,3.807,8.793,5.285,21.435,9.37,18.535,0.591,-0.049,10.174,22.833,13.546,27.834,4.235,5.171,-4.488,7.195,6.343,18.588,22.455,17.307,3.46,10.833],[33.017,26.416,12.9,12.545,10.888,14.921,6.685,-4.064,2.685,15.864,25.681,37.624,9.65,5.141,15.771,17.253,13.18,22.484,21.566,12.856,3.258,4.761,19.342,19.686,10.937,4.36,4.326,21.828,9.764,8.928,0.968,14.159,2.217,13.071,9.198,-0.777,-0.976,11.031,15.697,-4.817,-1.321,5.381,5.898,12.434,-5.977,15.803,21.151,23.848,20.186,14.917,5.267,-5.736,5.287,26.696,21.135,8.991,4.943,9.618,0.847,8.541,17.591,5.708,21.265,17.42,24.46,14.148,2.879,12.41,4.196,4.73,8.842,-5.193,31.247,14.508,7.664,26.677,26.914,-4.802,25.565,33.295,13.844,13.94,13.845,10.634,11.392,9.886,14.63,39.434,5.402,16.143,10.298,36.62,4.098,16.256,22.155,18.699,16.896,13.637,20.503,11.79,4.187,22.173,22.966,14.47,11.648,5.848,10.249,16.553,2.533,19.526,10.43,11.231,12.371,24.357,22.264,4.685,17.84,1.252,23.291,3.905,5.13,9.87,4.958,5.07,7.676,0.819,3.655,14.552,1.752,9.971,-0.814,14.822,14.437,13.348,10.039,14.748,-2.335,0.037,8.178,5.607,7.074,-4.27,11.932,14.73,9.906,4.419,20.307,-0.601,17.26,-1.518,-5.261,-3.055,25.513,5.14,18.501,-6.551,14.32,20.219,14.633,22.528,-1.973,20.444,26.746,16.068,7.153,6.668,-5.77,10.906,18.34,21.409,4.075,9.57,5.746,20.779,9.304,18.88,0.713,0.207,10.607,23.008,13.253,27.694,4.968,5.299,-4.159,7.405,6.27,18.762,22.5,17.765,3.436,10.466],[33.084,26.327,12.977,12.654,10.967,14.805,6.827,-3.921,2.612,16.059,25.557,37.515,9.644,5.254,15.925,17.448,13.134,22.475,21.502,12.521,3.268,4.768,19.293,19.82,11.0,4.241,4.149,21.749,9.666,8.993,0.954,14.264,2.073,13.109,9.376,-0.701,-1.003,10.738,15.647,-4.782,-1.466,5.342,5.796,12.468,-6.131,15.894,20.989,23.764,20.21,14.543,5.05,-5.796,5.511,26.761,21.313,9.185,4.884,9.69,1.047,8.655,17.656,5.791,21.368,17.47,24.558,14.351,2.765,11.823,4.4,5.041,8.313,-5.092,31.766,14.436,8.12,26.687,26.88,-4.317,25.521,33.547,13.747,14.157,14.027,10.088,11.75,10.356,14.647,39.307,6.04,15.976,10.589,36.571,4.217,16.288,21.443,18.959,17.14,13.682,19.889,11.952,3.511,22.586,23.044,14.367,11.267,6.089,10.353,17.039,2.425,19.452,10.468,10.627,12.52,24.066,21.662,4.534,17.981,1.095,23.373,3.721,5.011,9.157,4.599,4.92,7.838,0.97,3.405,15.126,1.696,10.247,-0.882,14.833,14.458,12.949,9.889,14.559,-2.404,-0.501,7.852,5.889,7.128,-4.451,11.745,14.666,9.926,4.805,20.546,-0.531,17.222,-1.999,-5.254,-3.462,25.598,4.996,18.238,-6.055,14.217,20.529,14.975,22.878,-2.131,20.813,26.333,15.818,6.669,7.019,-5.577,10.824,18.719,20.871,4.341,9.483,5.339,21.095,9.998,18.424,0.813,0.386,10.646,23.193,12.96,27.607,4.923,5.306,-4.415,7.395,6.377,18.822,22.894,18.037,3.274,10.799],[33.231,26.218,13.12,12.697,10.977,14.772,6.876,-3.838,2.618,16.313,25.478,37.418,9.741,5.418,16.115,17.695,13.145,22.443,21.364,12.182,3.192,4.768,19.423,19.835,10.827,4.048,4.027,21.542,9.432,9.161,0.929,14.286,2.032,13.004,9.746,-0.82,-1.032,10.59,15.493,-4.933,-1.771,5.333,5.773,12.606,-6.282,15.948,20.929,23.744,20.254,14.225,4.877,-5.908,5.489,26.883,21.309,9.282,4.807,9.823,1.258,8.727,17.851,5.668,21.482,17.411,24.376,14.402,2.817,12.517,4.313,5.013,8.438,-4.598,31.976,14.569,8.339,26.962,26.798,-4.479,25.411,33.013,13.531,14.23,14.084,9.719,11.678,10.368,14.259,39.099,6.154,16.57,10.717,36.299,4.525,16.247,21.505,19.569,16.771,13.923,20.283,11.987,3.636,22.306,23.03,14.472,10.986,6.33,10.51,17.348,2.333,20.26,10.563,11.168,12.521,24.153,21.969,4.834,18.249,1.492,22.749,3.687,5.114,9.277,4.75,4.721,8.068,0.628,2.333,15.102,2.087,10.023,-0.878,14.458,14.407,13.325,9.782,14.49,-2.183,-0.03,8.418,6.104,6.958,-4.622,12.277,14.629,9.997,4.942,20.601,-0.744,17.159,-1.607,-5.481,-3.399,25.423,4.446,18.527,-6.196,14.367,20.589,15.176,22.302,-1.439,20.529,26.21,15.694,6.783,7.392,-5.855,10.997,19.079,20.931,4.084,9.236,5.668,21.894,10.586,18.577,0.564,0.328,10.142,23.274,12.712,27.832,5.329,4.959,-4.259,7.396,6.391,18.382,22.777,17.993,3.38,11.107],[33.278,26.144,13.229,12.882,11.013,14.701,6.818,-3.744,2.78,16.476,25.458,37.366,9.853,5.615,16.231,17.816,13.148,22.433,21.18,11.992,3.11,4.766,19.637,19.823,10.552,3.837,3.95,21.349,9.13,9.427,0.98,14.226,2.044,12.899,10.072,-0.85,-0.991,10.632,15.438,-5.235,-1.97,5.333,5.729,12.827,-6.398,15.869,20.945,23.667,20.321,14.012,4.924,-6.187,5.481,26.918,21.127,9.261,4.938,10.053,1.295,8.754,18.014,5.616,21.769,17.444,24.224,14.764,2.991,12.642,4.402,5.125,9.121,-4.52,32.175,14.775,8.088,26.733,26.476,-4.812,24.951,32.919,13.759,14.457,14.422,10.61,12.114,10.309,14.317,38.911,5.966,17.174,10.894,35.925,4.218,16.57,21.527,19.325,17.664,13.706,20.828,11.461,3.78,21.965,22.599,14.705,10.591,6.188,10.349,17.265,2.263,20.519,10.964,11.624,12.074,24.282,21.937,4.904,18.16,1.7,22.57,3.756,5.468,9.664,4.74,4.7,8.199,0.562,2.004,14.383,2.09,10.41,-0.789,14.617,14.481,13.294,10.048,14.757,-2.056,0.306,8.464,6.511,6.903,-4.549,13.161,14.369,9.468,4.803,20.699,-0.667,17.544,-1.74,-5.722,-3.434,25.199,4.207,18.38,-6.988,14.663,20.203,14.68,22.158,-1.472,20.183,26.943,15.342,6.692,7.226,-5.916,11.208,19.312,21.415,4.206,9.534,5.425,21.549,10.743,18.597,1.208,-0.017,10.066,23.417,12.479,27.773,4.645,4.424,-4.92,7.212,6.305,18.655,22.614,17.554,3.288,11.062],[33.226,26.009,13.416,13.085,11.358,14.729,6.758,-3.776,2.966,16.533,25.422,37.278,10.084,5.738,16.352,18.02,13.131,22.453,21.07,11.816,3.201,4.699,19.786,19.762,10.274,3.712,3.986,21.208,8.946,9.728,1.13,14.1,1.987,12.919,10.282,-0.736,-0.872,10.767,15.448,-5.543,-2.089,5.288,5.61,13.059,-6.526,15.846,20.889,23.539,20.266,13.88,5.052,-6.624,5.236,26.936,21.06,9.325,5.021,10.109,1.197,8.767,18.153,5.754,21.882,17.675,24.189,14.81,2.932,12.321,4.808,5.506,9.529,-4.658,32.109,14.893,8.105,26.262,26.329,-4.178,25.431,32.408,13.642,14.471,14.344,10.711,12.583,10.408,14.693,38.73,5.842,17.029,11.108,35.972,4.405,16.646,21.759,18.902,17.241,13.31,20.734,11.372,3.648,21.409,22.046,14.833,10.457,5.808,9.609,17.365,1.963,19.996,11.098,10.794,11.781,24.198,21.26,4.826,18.243,1.586,22.573,4.019,5.617,9.127,4.444,4.446,8.213,0.68,2.928,13.935,2.248,10.898,-0.825,14.581,14.661,13.213,9.99,14.885,-2.379,0.011,8.657,6.832,6.851,-4.744,13.106,14.649,9.803,4.678,20.637,-0.805,17.184,-1.952,-5.883,-3.816,25.322,4.446,18.527,-7.457,14.706,20.561,14.541,22.649,-2.001,20.377,27.069,15.294,6.945,7.096,-6.035,11.146,19.466,20.945,4.158,9.334,5.365,21.376,10.338,18.172,1.471,0.045,10.336,23.686,12.4,27.987,4.499,4.276,-4.949,7.207,6.415,19.265,22.416,17.739,3.436,11.332],[32.981,25.918,13.628,13.153,11.671,14.801,6.921,-3.789,3.015,16.454,25.386,37.234,10.362,5.847,16.406,18.179,13.09,22.347,21.035,11.619,3.486,4.635,19.774,19.692,9.948,3.592,4.011,20.929,8.687,9.822,1.259,13.986,2.08,12.9,10.44,-0.694,-0.871,11.018,15.597,-5.762,-2.119,5.177,5.657,13.084,-6.757,15.909,20.921,23.514,20.182,13.893,5.186,-6.895,4.886,27.109,20.994,9.424,5.108,10.043,1.089,8.785,18.336,5.913,21.818,17.837,24.154,14.635,2.919,12.72,4.76,5.275,9.291,-4.698,31.704,15.026,8.221,26.739,26.52,-3.767,25.523,33.12,13.689,14.691,14.625,10.661,12.475,11.153,14.221,38.764,6.089,16.534,11.238,35.997,4.86,16.371,22.021,18.379,17.221,13.354,20.345,11.314,3.934,21.447,21.854,14.902,10.378,5.518,9.147,17.618,1.841,19.41,11.34,10.537,12.102,24.129,21.084,4.715,18.724,1.64,22.601,3.982,5.529,8.759,4.66,4.381,8.454,0.939,3.075,14.797,2.23,10.715,-0.583,14.205,14.444,12.989,10.279,14.861,-2.56,-0.266,9.057,6.919,6.912,-4.925,13.115,14.91,10.188,4.662,20.686,-0.568,16.623,-1.907,-5.893,-3.969,25.239,4.033,18.466,-7.58,14.702,20.79,14.407,22.323,-2.804,20.044,26.31,15.255,7.103,6.628,-6.74,11.35,19.169,20.739,4.298,9.28,6.084,21.523,10.145,18.979,0.556,0.436,10.895,23.624,12.459,27.844,4.782,4.666,-5.295,7.043,6.435,19.139,22.371,17.766,3.565,11.211],[32.776,26.015,13.861,13.202,11.76,14.757,7.308,-3.703,2.864,16.378,25.383,37.329,10.415,5.928,16.381,18.198,13.18,22.133,21.07,11.45,3.735,4.607,19.666,19.459,9.85,3.673,3.915,20.614,8.41,9.748,1.371,14.134,2.164,12.711,10.492,-0.728,-0.898,11.317,15.781,-5.822,-2.161,5.144,5.655,13.088,-7.039,15.925,20.955,23.43,20.091,13.937,5.186,-7.176,4.615,27.223,20.997,9.67,5.195,9.996,0.921,8.725,18.228,6.152,21.813,17.883,24.181,14.536,2.881,12.702,4.616,4.934,9.103,-4.422,31.208,15.046,8.343,26.957,26.502,-4.569,25.145,33.337,13.974,14.868,14.769,11.001,12.751,11.322,14.445,38.986,6.268,16.58,11.235,35.895,4.857,15.99,21.529,18.382,18.152,13.588,20.37,11.019,3.73,22.15,22.513,14.877,10.449,5.599,8.723,17.331,1.904,19.514,11.329,10.714,12.398,23.683,21.376,4.557,18.433,1.92,22.128,4.286,5.326,9.46,4.612,4.859,8.622,1.005,3.133,15.724,1.891,10.934,-0.456,14.368,13.638,12.989,10.661,15.313,-2.157,-0.527,8.736,7.26,6.883,-5.346,12.891,14.925,10.192,4.574,20.811,-0.593,16.788,-1.779,-6.162,-4.334,24.971,4.33,18.1,-7.324,14.967,20.531,14.228,21.911,-2.904,20.652,26.47,15.241,7.012,6.311,-6.448,10.926,19.417,21.025,4.752,9.404,5.629,21.787,10.583,19.301,0.371,0.293,10.864,23.47,12.216,28.461,4.455,5.152,-5.634,7.171,6.481,19.126,22.922,17.752,3.654,11.311],[32.648,26.23,14.165,13.127,11.703,14.788,7.605,-3.717,2.726,16.394,25.445,37.451,10.342,5.898,16.304,18.201,13.321,21.95,21.159,11.449,3.843,4.53,19.544,19.137,9.969,3.842,3.75,20.49,8.355,9.631,1.459,14.392,2.104,12.423,10.588,-0.842,-0.806,11.557,15.885,-5.954,-2.138,5.194,5.764,13.195,-7.287,15.946,21.008,23.242,19.95,13.933,5.139,-7.401,4.375,27.316,21.142,9.935,5.259,10.039,0.74,8.623,18.146,6.274,21.918,17.865,24.379,14.639,2.633,12.554,4.544,5.385,8.926,-4.21,31.117,15.021,8.678,26.621,26.446,-4.587,25.37,32.391,14.198,14.945,14.681,11.023,12.688,10.707,14.248,39.08,6.773,16.962,11.318,36.243,4.67,15.554,21.305,18.574,17.855,13.751,20.477,11.284,4.139,22.119,22.659,14.852,10.13,5.748,8.43,17.726,2.111,20.008,11.311,10.821,11.958,23.027,20.927,4.862,18.082,1.877,21.822,4.434,4.962,9.269,4.552,4.824,8.669,0.805,3.125,16.189,2.627,10.994,-0.417,13.951,13.875,12.934,10.527,15.814,-2.239,-0.375,8.948,7.527,6.754,-5.486,12.944,14.565,10.589,4.714,20.442,-0.672,16.998,-2.077,-6.036,-4.199,24.802,4.897,18.165,-6.986,14.851,20.768,14.34,21.955,-2.211,20.846,27.166,15.122,7.062,5.826,-6.558,10.677,19.52,21.047,4.726,8.753,5.579,21.925,11.316,18.87,0.482,-0.24,10.665,23.557,12.417,28.227,4.576,4.517,-5.82,7.726,6.638,18.771,22.9,17.674,3.745,11.239],[32.399,26.36,14.261,13.027,11.483,14.871,7.859,-3.719,2.761,16.447,25.576,37.505,10.224,5.854,16.221,18.18,13.295,21.695,21.2,11.495,3.876,4.495,19.554,18.798,10.116,4.064,3.524,20.498,8.389,9.583,1.528,14.637,1.96,12.07,10.718,-0.935,-0.622,11.659,15.884,-6.042,-1.985,5.387,5.962,13.33,-7.281,16.103,21.193,23.043,19.814,13.918,5.143,-7.573,4.058,27.348,21.081,10.124,5.334,10.024,0.618,8.467,18.091,6.184,22.062,17.704,24.788,15.102,2.914,12.547,4.485,5.719,9.448,-4.367,31.23,14.833,8.683,26.796,26.843,-3.931,25.428,32.376,14.006,14.826,15.222,10.878,13.182,10.456,14.344,39.267,7.136,16.923,11.109,36.555,4.689,15.271,21.489,18.901,17.263,13.743,20.324,11.426,4.294,21.339,22.489,15.025,10.04,5.766,8.636,17.776,2.439,20.25,11.211,10.955,12.006,23.114,20.578,4.714,18.207,1.625,22.264,4.348,4.818,8.848,4.951,4.313,8.412,0.432,3.218,16.336,2.458,11.29,-0.318,13.363,14.783,12.453,10.579,15.456,-2.115,-0.004,9.042,7.684,7.112,-5.71,13.616,14.628,11.003,5.018,20.409,-0.659,16.883,-1.692,-5.582,-4.492,24.697,4.878,18.016,-7.591,14.694,20.81,14.323,21.887,-2.334,19.917,27.416,15.101,7.09,5.677,-6.979,11.125,19.399,21.395,4.643,8.608,5.993,21.754,11.778,19.084,-0.14,-0.424,10.753,23.955,12.294,27.962,4.752,4.438,-6.23,8.085,6.863,18.475,22.369,17.336,3.993,11.395],[32.223,26.479,14.267,13.073,11.216,14.852,7.988,-3.619,2.917,16.504,25.678,37.501,10.114,5.957,16.097,18.093,13.148,21.334,21.221,11.484,3.818,4.455,19.602,18.638,10.12,4.393,3.331,20.612,8.369,9.62,1.556,14.896,1.758,11.672,10.819,-0.959,-0.429,11.645,15.766,-6.029,-1.778,5.753,6.081,13.588,-7.249,16.307,21.28,22.893,19.83,13.866,5.298,-7.643,3.862,27.332,20.952,10.278,5.406,10.037,0.566,8.366,18.021,5.995,22.233,17.503,24.63,14.854,3.121,12.392,4.581,4.769,10.268,-4.563,31.144,14.892,8.427,26.824,26.664,-3.981,25.356,32.673,13.966,14.867,14.986,10.943,12.912,10.535,14.624,39.04,7.874,16.78,11.022,36.623,4.836,15.583,21.584,18.899,17.745,13.396,20.434,11.464,4.337,21.359,21.884,14.911,10.348,5.755,9.306,17.739,2.557,19.714,11.171,10.688,12.45,23.164,20.759,4.84,18.167,1.952,22.355,4.35,4.849,9.046,5.123,3.834,8.178,0.405,3.304,16.308,1.404,11.587,-0.257,13.176,14.752,12.482,10.474,15.252,-1.572,-0.067,9.108,7.349,7.49,-5.279,13.426,14.954,11.003,5.077,20.396,-0.967,17.252,-1.282,-5.912,-4.423,24.71,4.797,17.822,-7.636,15.12,20.926,14.372,21.643,-2.884,20.198,26.942,15.128,7.183,5.287,-6.863,10.782,19.497,20.826,4.721,9.226,5.797,21.625,11.625,18.437,-0.517,-0.416,11.119,23.961,12.232,28.584,4.126,4.767,-6.073,7.638,7.052,18.504,22.809,17.353,4.15,11.276],[32.279,26.479,14.058,13.113,11.014,14.737,7.97,-3.525,3.16,16.366,25.779,37.335,10.151,5.985,16.109,18.13,13.003,21.111,21.009,11.577,3.697,4.408,19.652,18.66,10.102,4.757,3.1,20.56,8.498,9.712,1.61,15.198,1.618,11.39,10.884,-0.946,-0.277,11.538,15.796,-6.072,-1.648,6.005,6.132,13.844,-7.08,16.619,21.337,22.781,19.869,13.819,5.401,-7.507,3.69,27.275,20.747,10.484,5.508,10.067,0.539,8.323,18.086,5.766,22.297,17.342,24.601,14.799,3.41,12.468,4.853,4.771,9.631,-4.362,31.102,15.095,8.584,27.094,26.694,-4.363,25.848,32.207,14.447,14.373,14.71,10.685,12.628,10.356,14.15,38.689,8.596,17.089,11.013,36.498,5.182,16.005,21.974,19.099,17.551,13.4,20.788,11.496,4.404,20.992,22.097,14.567,10.334,5.638,8.986,17.766,2.967,18.784,11.13,10.882,12.026,22.853,21.077,4.849,18.46,2.096,22.346,4.408,4.763,9.151,4.964,3.652,8.27,0.786,2.955,15.722,1.653,11.092,-0.297,12.891,14.317,11.945,10.683,15.225,-1.448,-0.422,9.215,6.999,7.69,-5.494,12.896,14.774,10.361,5.202,20.212,-0.503,17.238,-1.082,-6.282,-4.24,24.356,4.572,18.038,-7.721,15.329,20.678,14.809,21.452,-2.686,20.796,26.62,15.109,7.247,5.185,-7.112,10.395,19.48,20.912,4.786,9.389,6.052,22.085,11.139,18.936,-0.211,-0.233,12.056,24.02,12.175,28.449,3.622,4.613,-5.938,6.958,6.946,18.609,22.425,17.218,3.994,11.365],[32.418,26.416,13.671,13.13,10.916,14.641,7.924,-3.536,3.431,16.123,25.938,36.965,10.196,6.084,16.096,18.13,12.951,21.012,20.837,11.637,3.706,4.357,19.681,18.755,10.316,5.036,2.985,20.428,8.613,9.755,1.716,15.296,1.651,11.153,10.744,-0.832,-0.163,11.315,16.0,-6.188,-1.534,6.112,6.092,13.988,-7.048,16.992,21.426,22.871,19.725,13.696,5.324,-7.383,3.526,27.07,20.625,10.667,5.49,10.055,0.569,8.201,18.244,5.736,22.29,17.454,24.767,14.618,3.525,12.748,5.095,5.609,9.008,-4.294,31.293,14.908,9.052,27.218,26.703,-4.271,25.796,31.731,14.343,14.197,14.893,10.384,12.596,9.85,14.223,38.49,8.901,17.59,10.834,35.956,4.939,16.454,21.697,19.101,17.674,13.659,20.868,11.561,4.092,21.051,21.784,14.437,10.196,5.405,8.629,17.767,3.195,19.049,11.454,10.906,12.25,22.708,20.92,4.629,18.526,2.103,22.05,4.354,4.472,8.941,5.637,3.448,8.578,0.83,2.833,14.618,2.524,11.059,-0.216,12.538,15.022,11.649,10.772,15.672,-1.581,-0.488,8.886,6.817,7.611,-5.37,12.398,15.396,9.897,5.282,20.069,0.112,17.283,-1.554,-6.184,-4.705,24.448,4.302,17.882,-6.972,14.933,20.496,15.083,21.501,-2.077,20.607,26.898,15.078,7.174,5.08,-6.936,10.95,19.439,20.757,4.232,8.925,5.958,22.289,11.46,18.625,0.072,0.035,12.212,24.243,12.204,28.152,3.57,4.67,-5.898,6.871,6.905,18.507,22.335,16.918,3.98,11.675],[32.53,26.439,13.517,13.11,10.853,14.584,8.015,-3.546,3.715,15.943,26.204,36.623,10.13,6.208,16.082,18.066,13.019,20.998,20.891,11.801,3.707,4.323,19.669,18.867,10.489,5.248,2.977,20.376,8.416,9.869,1.763,15.209,1.871,10.948,10.447,-0.785,-0.003,11.031,16.377,-6.351,-1.434,6.155,5.951,13.922,-7.153,17.335,21.382,23.089,19.45,13.548,5.287,-7.332,3.399,26.854,20.604,10.811,5.459,10.156,0.664,7.945,18.296,5.694,22.302,17.508,24.583,14.601,3.379,12.56,5.372,5.828,8.571,-4.381,31.417,14.927,8.838,26.866,26.389,-4.093,25.373,31.661,13.426,14.316,14.095,10.565,12.172,9.826,13.951,38.338,9.045,17.407,10.621,35.832,4.832,16.371,21.133,18.693,18.275,13.45,20.754,11.909,4.196,21.409,21.865,14.738,10.374,4.972,9.244,17.479,3.409,19.773,11.466,11.015,12.522,22.63,21.096,4.707,18.544,2.264,21.831,4.555,4.433,8.966,6.474,3.878,8.759,0.474,2.699,14.445,2.415,11.22,-0.097,12.299,15.396,11.5,10.228,15.265,-1.64,0.223,8.676,6.955,7.837,-5.263,12.776,15.792,9.947,5.297,19.92,-0.26,17.928,-1.346,-6.667,-4.741,24.704,4.234,17.626,-7.186,15.104,21.088,15.486,21.686,-2.287,20.534,27.083,14.924,7.112,5.084,-6.348,11.075,19.9,20.968,4.069,8.75,5.771,21.99,11.938,18.148,0.464,-0.035,11.645,24.035,11.858,28.101,3.257,4.523,-5.83,7.691,6.599,18.56,22.024,17.366,4.21,11.104],[32.602,26.445,13.358,13.116,10.809,14.245,8.155,-3.485,3.846,15.864,26.321,36.51,9.886,6.24,16.084,18.081,13.138,21.027,21.021,12.139,3.771,4.334,19.799,19.023,10.522,5.492,3.124,20.462,8.133,10.122,1.729,15.103,1.948,10.849,10.198,-0.854,0.05,10.798,16.608,-6.397,-1.42,6.167,5.842,13.773,-7.346,17.671,21.368,23.249,19.272,13.271,5.275,-7.292,3.255,26.738,20.643,10.762,5.534,10.15,0.878,7.817,18.267,5.634,22.279,17.473,24.769,14.256,3.939,12.466,5.576,5.613,8.741,-4.279,31.07,15.02,9.019,27.184,26.155,-4.208,25.991,31.858,12.892,14.427,14.459,10.401,12.093,10.607,14.302,37.954,8.912,17.144,10.896,35.559,4.907,15.769,21.618,18.105,17.953,13.258,20.881,11.881,4.39,21.072,22.438,14.769,10.553,5.057,8.7,17.542,3.864,19.447,11.686,11.216,12.425,22.555,21.268,4.558,18.677,2.266,21.923,4.51,4.595,9.04,6.168,4.201,8.69,0.567,2.72,14.788,2.655,10.739,-0.107,11.76,14.978,11.354,9.93,15.347,-1.257,0.154,8.438,7.378,7.636,-5.491,14.145,15.892,9.721,5.58,19.457,-0.398,18.277,-0.806,-6.588,-5.003,24.679,4.453,17.759,-7.485,14.99,20.707,15.818,21.753,-2.739,20.229,26.897,14.577,7.029,4.843,-6.382,10.938,19.906,20.975,3.847,9.133,5.512,21.737,12.082,18.599,0.262,-0.085,11.772,24.115,11.745,28.122,3.702,4.437,-6.15,7.354,6.749,18.99,22.175,17.243,3.903,11.33],[32.597,26.469,13.225,13.186,10.914,14.0,8.42,-3.468,3.869,15.803,26.406,36.556,9.617,6.205,16.055,18.139,13.227,20.941,21.204,12.513,3.895,4.39,20.056,19.065,10.491,5.716,3.315,20.573,7.945,10.279,1.699,15.12,1.959,10.7,10.036,-0.871,0.055,10.489,16.713,-6.394,-1.425,6.118,5.966,13.844,-7.548,17.87,21.237,23.279,19.165,12.943,5.25,-7.216,3.216,26.729,20.804,10.552,5.591,10.085,1.026,7.822,18.211,5.519,22.352,17.461,24.65,14.104,4.516,12.591,5.397,5.125,9.264,-3.948,31.007,14.916,9.126,27.486,26.686,-4.301,26.48,32.45,12.52,14.53,14.486,9.826,11.99,10.532,13.828,37.528,8.642,16.693,10.816,35.112,5.071,15.528,22.089,17.81,17.789,13.509,21.534,11.666,4.678,20.907,22.317,14.973,10.798,5.442,8.215,18.16,3.764,18.91,11.941,10.985,12.817,22.566,21.154,4.876,18.787,2.133,22.027,4.245,4.809,8.359,5.876,3.89,8.803,0.87,2.944,14.435,2.345,10.453,-0.198,11.405,14.34,11.544,10.036,15.734,-0.728,-0.679,8.168,7.173,7.502,-5.762,14.765,15.728,9.08,5.737,19.428,-0.09,18.312,-1.169,-6.604,-4.83,24.756,4.66,17.552,-7.621,15.102,20.484,16.009,21.774,-2.994,20.583,26.683,14.263,7.081,4.639,-6.505,10.95,19.375,20.548,3.768,8.757,5.792,21.796,11.5,18.668,-0.088,0.071,11.854,24.291,11.291,27.593,3.509,4.617,-5.806,7.327,6.921,19.111,22.541,17.242,4.2,11.646],[32.462,26.545,13.284,13.173,11.074,13.897,8.635,-3.549,3.814,15.646,26.521,36.583,9.396,6.076,16.007,18.27,13.313,20.86,21.214,12.811,4.086,4.471,20.326,18.98,10.352,5.714,3.308,20.575,7.949,10.126,1.694,15.095,1.951,10.543,9.9,-0.864,0.163,10.09,16.519,-6.43,-1.429,6.032,6.106,14.061,-7.692,18.018,21.16,23.213,19.071,12.735,5.336,-7.036,3.203,26.752,20.891,10.302,5.667,10.15,0.939,7.656,18.144,5.546,22.391,17.546,24.645,14.016,4.266,13.33,5.475,5.371,9.4,-4.26,30.892,14.916,9.433,27.702,26.835,-3.633,26.234,32.525,12.671,14.534,13.793,10.493,11.916,9.844,13.175,37.51,8.708,16.034,10.516,35.309,5.186,15.676,21.908,17.952,18.287,13.616,21.81,11.633,5.08,20.771,22.351,14.858,11.185,5.911,8.826,17.937,3.842,18.965,11.904,10.796,12.776,22.53,20.78,5.166,19.445,2.198,22.403,4.441,5.118,7.861,6.383,3.436,9.279,0.793,3.432,14.529,2.148,10.795,-0.142,11.418,14.668,11.074,9.694,16.11,-0.255,-0.358,8.002,7.087,7.673,-5.896,14.792,16.185,8.859,5.438,19.708,0.154,18.701,-1.418,-6.436,-4.886,24.829,4.6,17.296,-7.608,15.492,20.729,16.202,21.864,-2.956,20.584,26.426,14.357,7.112,4.884,-6.319,10.556,19.404,20.784,4.009,8.984,5.361,21.836,11.228,18.693,-0.153,-0.03,11.391,24.239,11.202,27.722,2.773,4.518,-5.41,7.472,7.234,18.719,22.666,17.369,4.232,11.158],[32.079,26.643,13.327,13.121,11.223,13.778,8.666,-3.556,3.847,15.398,26.579,36.583,9.254,6.053,15.938,18.448,13.26,20.826,21.054,13.054,4.365,4.626,20.619,18.804,10.247,5.734,3.172,20.571,8.206,9.95,1.69,15.084,1.934,10.353,9.891,-0.83,0.463,9.824,16.433,-6.474,-1.459,5.853,6.152,14.125,-7.734,18.173,21.233,23.191,19.042,12.789,5.534,-6.895,3.173,26.719,20.879,10.243,5.691,10.17,0.744,7.398,18.179,5.687,22.394,17.798,24.928,13.945,3.457,13.569,5.694,5.486,9.144,-4.704,31.115,14.71,9.463,27.67,26.479,-4.102,25.965,32.203,12.836,14.726,14.371,10.796,12.051,9.667,13.032,37.995,8.919,15.767,10.436,35.555,4.59,15.718,21.539,18.594,18.653,13.512,21.966,11.366,4.981,20.682,22.121,14.779,11.708,6.088,9.037,17.968,3.932,19.255,11.768,10.99,12.661,22.481,20.672,4.903,19.972,2.329,22.224,5.038,4.97,7.955,6.567,2.931,9.078,0.516,3.541,13.924,2.478,10.771,-0.177,11.592,15.353,10.39,9.218,15.523,-0.387,0.29,7.983,7.411,7.324,-6.137,14.731,15.594,8.73,5.466,19.514,-0.253,19.017,-1.147,-6.378,-5.005,24.795,4.656,17.269,-7.383,15.551,20.705,16.24,21.723,-2.816,20.074,26.84,14.348,7.212,4.815,-6.294,11.128,19.606,21.448,3.983,8.856,5.273,22.094,11.393,19.284,0.161,-0.454,11.593,24.25,11.487,28.28,2.64,4.276,-5.496,6.572,7.198,18.98,22.298,17.179,4.158,11.468],[31.776,26.631,13.424,13.134,11.233,13.652,8.612,-3.625,3.929,15.233,26.599,36.643,9.202,6.077,15.89,18.589,13.135,20.804,20.834,13.263,4.628,4.734,20.905,18.556,10.198,5.741,2.974,20.598,8.501,9.772,1.633,15.004,1.911,10.17,10.108,-0.785,0.648,9.755,16.338,-6.445,-1.546,5.622,6.163,14.129,-7.7,18.212,21.305,23.148,19.101,12.863,5.759,-6.889,3.094,26.709,20.937,10.425,5.593,10.342,0.644,6.992,18.299,5.717,22.556,18.116,24.946,13.718,3.398,12.849,5.623,5.438,8.873,-4.108,30.766,14.621,9.007,27.479,26.459,-4.493,25.858,31.66,12.269,14.894,14.82,10.494,12.046,10.335,13.292,38.208,9.258,15.78,10.439,35.743,4.721,15.889,21.557,19.253,18.379,13.243,22.182,11.344,5.0,20.984,21.787,14.87,11.607,6.09,8.571,18.054,3.727,19.506,11.398,10.972,13.421,22.342,21.107,5.013,19.652,2.254,22.315,5.238,4.799,8.763,6.11,2.551,8.46,0.546,2.99,14.144,2.973,10.121,-0.27,11.376,15.063,9.688,9.292,15.008,-0.419,0.095,8.266,7.819,7.437,-5.836,14.361,15.709,8.397,5.428,19.036,0.113,19.099,-1.272,-6.778,-5.176,24.644,5.141,17.338,-7.478,15.536,20.786,16.514,21.669,-2.025,20.194,27.048,14.441,7.508,4.309,-6.296,11.781,19.515,21.054,3.968,8.28,5.774,22.327,11.62,19.223,0.002,-0.83,11.576,24.418,11.455,28.078,2.797,4.589,-5.452,6.347,6.919,19.023,22.616,17.76,4.168,11.083],[31.6,26.562,13.641,13.118,11.074,13.446,8.575,-3.583,3.912,15.249,26.531,36.818,9.241,6.135,15.818,18.623,13.102,20.727,20.595,13.364,4.743,4.682,21.048,18.425,10.062,5.578,2.748,20.844,8.735,9.478,1.513,14.774,1.896,9.997,10.298,-0.777,0.712,9.914,16.276,-6.376,-1.622,5.602,6.156,14.092,-7.48,18.193,21.389,23.06,19.141,12.906,6.001,-7.042,2.864,26.692,21.125,10.62,5.567,10.54,0.546,6.541,18.334,5.648,22.794,18.42,24.757,13.579,4.351,12.983,5.473,5.245,8.517,-4.071,30.28,15.048,9.152,27.691,26.496,-3.812,26.127,31.435,12.07,15.402,14.313,10.203,12.528,10.467,13.574,37.855,9.2,16.043,10.526,35.869,5.113,15.638,21.459,19.048,18.342,12.933,22.496,11.618,5.625,21.088,21.515,14.845,11.648,5.673,9.437,17.796,3.733,18.85,11.019,10.562,13.617,22.162,21.405,5.236,19.678,1.84,22.535,5.405,4.352,9.03,6.275,3.138,8.128,0.822,2.846,14.658,2.676,10.526,-0.246,11.431,14.45,9.225,9.165,14.975,-0.562,-0.273,8.635,7.964,7.009,-5.647,14.229,15.784,8.424,5.053,18.999,0.345,19.11,-1.309,-6.842,-4.989,24.763,5.262,17.5,-7.536,15.714,20.851,16.464,21.752,-1.701,20.484,26.748,14.387,7.698,4.139,-6.098,12.168,19.516,20.587,3.96,8.074,5.787,22.777,11.681,19.238,0.134,-0.97,11.62,24.505,11.329,27.657,3.425,4.981,-5.529,6.658,6.362,19.206,22.756,18.347,3.94,10.739],[31.614,26.563,13.869,13.303,10.828,13.216,8.617,-3.4,3.88,15.469,26.469,37.037,9.272,6.138,15.756,18.592,13.191,20.616,20.357,13.414,4.831,4.536,21.144,18.285,9.96,5.568,2.718,21.121,9.074,9.211,1.376,14.444,1.932,9.955,10.416,-0.803,0.609,10.037,16.228,-6.24,-1.684,5.524,5.98,14.119,-7.327,18.095,21.473,23.178,19.148,12.929,6.2,-7.232,2.722,26.739,21.296,10.624,5.532,10.678,0.469,6.364,18.383,5.601,23.0,18.669,24.751,13.841,4.001,13.343,5.504,5.377,8.608,-4.213,30.145,14.925,9.656,27.927,26.519,-4.116,25.816,31.805,12.262,15.798,14.385,9.852,12.706,9.539,13.633,37.57,8.899,15.825,10.663,35.551,4.896,15.288,21.372,18.094,18.696,13.02,22.811,11.269,5.937,20.597,21.811,14.847,11.989,5.06,8.971,17.897,3.791,18.741,10.928,10.408,13.127,22.238,21.333,4.853,19.881,1.837,22.747,5.349,3.325,8.764,6.349,3.554,8.017,0.677,3.466,14.217,2.503,11.411,-0.547,11.3,14.122,9.308,9.611,15.832,-0.757,-0.311,8.83,7.589,7.12,-5.663,14.659,15.587,8.656,5.55,19.343,0.279,19.042,-0.983,-6.553,-4.967,24.482,4.898,17.391,-7.236,15.464,20.898,16.201,21.654,-2.193,20.432,26.211,14.13,7.736,3.629,-6.458,12.367,19.48,20.761,4.08,7.619,5.378,22.835,11.546,20.025,-0.147,-0.822,12.089,24.846,11.461,28.043,3.354,4.714,-5.81,6.208,6.151,19.566,23.176,18.022,3.788,10.929],[31.654,26.483,14.003,13.461,10.414,13.121,8.764,-3.44,3.766,15.625,26.403,37.207,9.329,6.045,15.676,18.624,13.297,20.529,20.499,13.449,4.989,4.244,21.111,18.057,9.968,5.601,2.798,21.127,9.221,9.027,1.243,14.019,2.137,10.084,10.559,-0.88,0.395,10.27,16.387,-6.157,-1.728,5.609,5.643,14.356,-7.398,18.028,21.497,23.262,19.127,12.843,6.118,-7.373,2.587,26.723,21.625,10.491,5.451,10.882,0.429,6.284,18.431,5.571,23.245,18.747,24.748,14.118,3.71,13.409,5.64,5.846,9.008,-4.029,30.427,14.962,9.618,27.807,26.575,-4.007,25.526,32.665,11.992,15.948,14.96,10.14,12.479,9.267,13.081,37.664,9.056,15.709,10.694,35.496,4.48,15.496,20.933,17.433,18.228,13.411,22.947,11.213,5.6,20.188,21.835,14.713,11.739,5.074,8.53,17.92,3.776,18.989,10.799,10.486,13.557,22.27,21.465,4.958,20.459,2.063,22.802,5.603,2.208,9.421,6.669,4.011,8.077,0.678,3.445,13.395,2.874,11.366,-0.785,10.993,14.262,9.655,9.531,15.95,-0.954,-0.408,9.055,7.097,7.303,-5.767,14.846,15.296,8.744,5.577,19.527,0.307,19.069,-0.991,-6.081,-5.013,24.614,4.296,17.364,-7.115,15.923,20.983,16.417,21.557,-2.692,20.32,26.813,14.367,7.682,3.254,-6.941,12.23,19.704,21.23,4.026,7.478,5.316,22.679,11.154,19.957,-0.465,-0.615,12.021,25.077,11.329,28.024,2.887,4.582,-5.763,6.3,6.385,19.622,23.343,18.305,3.699,11.358],[31.776,26.31,14.121,13.555,10.117,13.065,8.997,-3.495,3.774,15.693,26.385,37.379,9.453,6.018,15.678,18.594,13.312,20.455,20.672,13.533,5.116,4.036,21.088,17.779,10.023,5.676,2.875,20.993,9.267,8.862,1.236,13.528,2.374,10.205,10.666,-1.014,0.187,10.402,16.65,-6.056,-1.772,5.763,5.257,14.69,-7.518,18.102,21.457,23.236,19.082,12.701,5.866,-7.414,2.397,26.625,21.863,10.385,5.354,11.075,0.469,6.289,18.596,5.501,23.564,18.696,24.482,14.037,3.684,13.371,5.418,5.113,9.321,-4.106,31.474,15.136,9.405,27.681,26.445,-3.982,25.618,32.351,12.108,15.129,14.912,10.121,12.939,9.006,12.496,38.27,9.002,15.93,10.952,35.699,4.491,15.686,21.325,17.399,18.03,13.44,22.893,11.575,5.435,20.587,21.917,15.077,11.739,5.039,8.54,17.801,3.896,18.514,10.614,10.235,13.788,22.224,21.52,4.556,20.266,1.582,22.615,5.644,1.889,9.51,6.491,4.068,7.85,0.476,3.603,13.159,2.985,11.581,-0.811,11.164,14.207,10.247,9.851,15.599,-1.467,-0.275,8.979,6.904,7.685,-5.819,14.723,15.46,8.908,5.571,19.53,0.056,18.618,-1.415,-6.591,-4.749,24.799,3.97,17.143,-7.253,16.541,20.72,16.465,21.75,-2.47,20.387,27.305,14.34,7.541,3.513,-6.814,12.325,19.438,21.906,3.933,7.614,5.241,22.629,10.933,20.112,-0.289,-0.579,11.882,25.242,11.483,27.887,2.837,4.813,-5.843,6.051,6.454,19.376,23.732,18.341,3.894,11.859],[31.813,26.152,14.231,13.683,9.995,13.054,9.036,-3.65,3.806,15.568,26.525,37.526,9.693,5.871,15.667,18.421,13.394,20.622,20.681,13.664,5.149,3.917,21.056,17.491,10.106,5.607,2.904,20.863,9.226,8.649,1.287,13.233,2.522,10.321,10.722,-0.96,0.02,10.505,16.821,-6.143,-1.885,6.011,4.919,14.796,-7.413,18.164,21.235,23.141,18.935,12.682,5.655,-7.297,2.466,26.549,22.049,10.408,5.339,11.201,0.602,6.333,18.646,5.43,23.741,18.795,24.427,13.8,3.973,13.212,5.513,4.512,9.263,-4.003,31.455,15.544,9.953,27.223,26.321,-4.053,25.907,32.734,12.346,14.234,14.898,9.541,13.001,8.911,12.38,39.02,9.233,15.774,11.152,36.226,5.198,15.802,21.438,17.501,18.442,12.865,22.637,11.546,6.076,20.831,21.908,15.199,12.19,4.996,8.711,17.573,3.762,17.915,10.371,10.244,13.43,22.191,21.255,4.092,19.787,1.626,22.475,5.419,2.134,8.98,6.47,4.073,7.407,0.276,3.647,13.248,2.916,11.431,-0.634,11.437,13.725,10.728,9.953,16.039,-1.742,-0.381,9.292,6.649,7.575,-5.7,14.607,15.611,9.035,5.707,19.227,-0.019,18.742,-1.16,-6.408,-4.749,24.568,4.094,17.258,-7.281,16.713,20.907,16.33,21.803,-1.627,20.37,26.723,14.358,7.36,3.44,-6.5,12.546,19.57,21.58,3.686,7.766,5.393,23.384,10.921,20.027,-0.05,-0.829,11.921,25.598,11.309,27.361,2.573,4.445,-5.767,6.113,5.62,19.647,23.964,18.089,3.926,12.21],[31.721,26.015,14.333,13.73,9.886,13.092,8.916,-3.801,4.021,15.313,26.608,37.54,9.874,5.82,15.622,18.237,13.456,20.856,20.535,13.735,5.225,3.742,20.942,17.318,10.149,5.464,2.847,20.795,9.077,8.414,1.331,13.131,2.63,10.509,10.699,-0.832,-0.108,10.532,16.958,-6.31,-1.884,6.273,4.66,14.604,-7.212,18.181,21.061,22.996,18.751,12.894,5.513,-7.02,2.612,26.335,22.042,10.525,5.209,11.402,0.589,6.46,18.69,5.341,23.867,18.867,24.734,13.593,3.987,13.542,5.751,4.625,9.275,-4.327,30.881,15.638,9.903,28.184,26.059,-4.324,26.141,32.388,12.027,14.002,14.933,9.513,12.973,8.829,13.104,38.956,9.446,15.653,11.433,37.026,4.933,15.598,21.025,16.944,17.924,13.132,22.65,11.426,6.503,20.836,22.039,15.352,12.09,5.187,8.947,17.235,3.715,18.394,10.035,10.195,13.857,22.385,21.248,4.209,19.502,2.28,22.385,5.203,2.535,8.911,6.448,4.112,7.243,0.503,3.622,13.315,2.976,11.356,-0.46,11.518,13.425,10.666,9.843,16.824,-1.588,0.159,9.31,6.307,7.594,-5.472,15.149,15.662,9.126,6.052,18.879,0.372,19.412,-1.211,-6.652,-5.078,24.461,4.008,17.163,-6.768,16.218,20.921,16.702,21.4,-1.815,19.691,26.454,14.435,7.106,3.442,-6.407,12.833,19.813,21.788,3.686,7.564,6.101,23.778,11.213,20.568,0.092,-0.521,12.282,25.716,11.132,27.083,2.942,4.254,-5.64,6.377,5.254,20.075,23.899,18.61,3.795,11.984],[31.587,25.972,14.46,13.704,9.878,13.135,8.712,-3.93,4.425,15.013,26.788,37.531,9.873,5.769,15.501,18.008,13.599,20.937,20.516,13.791,5.334,3.701,20.821,17.284,10.081,5.391,2.71,20.878,8.954,8.338,1.382,13.093,2.615,10.653,10.555,-0.785,-0.065,10.465,17.175,-6.335,-1.885,6.468,4.587,14.475,-7.005,18.197,20.887,22.792,18.533,13.024,5.497,-6.79,2.71,26.169,22.085,10.658,4.962,11.597,0.586,6.665,18.844,5.433,23.941,18.917,24.289,13.396,4.535,13.919,6.237,4.994,9.778,-4.103,30.424,15.261,9.562,28.35,25.918,-4.593,26.022,31.775,12.241,14.404,15.168,9.386,13.311,8.661,13.637,38.353,9.317,15.69,11.096,37.135,4.302,15.457,20.756,17.024,17.911,13.623,22.464,11.409,6.598,20.962,21.807,15.077,12.064,4.711,8.177,17.182,3.786,18.353,9.916,10.476,13.96,22.775,21.346,4.341,19.836,2.363,22.394,5.74,2.948,9.679,6.665,3.702,7.096,0.423,3.858,13.076,3.026,11.456,-0.436,11.606,13.523,10.76,9.568,16.678,-1.672,0.192,9.121,6.276,8.061,-5.566,15.383,15.823,9.205,6.532,18.919,0.116,19.751,-0.935,-7.016,-5.06,24.253,3.56,16.886,-6.451,15.836,20.679,17.148,21.235,-2.636,19.367,26.308,14.422,7.075,3.732,-6.369,13.114,19.793,21.949,3.593,7.676,5.691,23.441,11.588,20.025,0.081,-0.336,12.006,25.566,11.44,27.277,3.209,4.305,-5.223,5.955,5.36,19.924,23.869,18.701,3.499,11.782],[31.617,25.893,14.663,13.664,9.863,13.333,8.714,-3.939,4.641,14.769,26.965,37.475,9.833,5.58,15.269,17.843,13.71,21.0,20.612,13.823,5.522,3.705,20.755,17.251,9.952,5.385,2.561,21.017,8.851,8.391,1.403,13.045,2.555,10.764,10.404,-0.927,-0.066,10.376,17.323,-6.219,-1.886,6.65,4.656,14.566,-6.915,18.362,20.655,22.533,18.379,12.964,5.629,-6.578,2.839,26.168,22.117,10.631,4.745,11.663,0.609,6.775,18.967,5.438,24.052,18.906,24.1,13.121,4.856,13.956,6.303,4.848,10.119,-4.225,30.674,15.136,9.523,27.421,26.079,-4.522,25.771,31.379,12.503,15.261,15.416,9.453,13.204,9.339,12.873,38.599,9.711,15.215,10.789,36.499,4.219,15.825,21.09,17.714,17.887,13.303,22.444,11.435,6.39,20.45,21.79,14.839,12.169,4.404,8.501,17.28,3.646,17.634,10.19,10.398,13.873,22.775,21.513,4.209,19.879,2.11,22.513,5.547,2.841,9.483,6.707,3.472,7.346,0.207,3.986,12.86,3.178,11.103,-0.592,11.306,13.588,10.991,9.339,16.55,-1.855,-0.126,8.917,6.35,8.496,-5.25,14.587,15.839,9.139,6.181,19.041,-0.032,19.368,-0.914,-6.441,-4.761,23.973,3.429,16.589,-6.525,16.014,20.433,16.75,21.26,-2.909,19.888,26.647,14.384,7.312,4.016,-5.898,13.326,19.422,21.925,3.885,8.103,5.13,22.978,11.802,20.142,-0.184,-0.341,11.619,25.541,11.538,27.168,2.988,4.464,-5.161,6.461,5.311,20.307,23.851,18.308,3.258,12.041],[31.764,25.809,14.825,13.748,9.936,13.507,9.005,-3.859,4.438,14.639,26.972,37.378,9.821,5.458,15.116,17.825,13.57,20.998,20.773,13.819,5.489,3.645,20.776,17.223,9.849,5.456,2.489,21.125,8.865,8.64,1.226,13.009,2.547,10.793,10.247,-1.154,-0.188,10.248,17.286,-6.084,-1.875,6.747,4.736,14.654,-6.852,18.457,20.444,22.288,18.291,12.815,5.797,-6.318,2.942,26.25,22.131,10.61,4.588,11.718,0.536,6.936,19.101,5.299,24.208,18.781,24.111,12.971,4.884,13.381,6.199,4.492,9.503,-4.247,30.676,15.162,9.968,27.304,25.933,-4.565,25.742,31.867,12.559,15.288,15.177,9.017,13.126,9.595,12.816,38.755,9.521,14.893,11.148,36.01,4.435,15.791,21.685,17.277,17.905,13.634,22.529,11.428,6.663,20.535,22.102,15.176,12.179,4.953,8.777,16.939,3.676,18.22,10.377,9.889,14.18,22.702,21.623,3.584,19.406,2.167,22.838,5.469,2.01,8.592,6.216,3.458,7.338,0.187,4.212,12.851,3.129,10.907,-0.477,11.265,13.658,11.258,9.356,16.639,-1.875,-0.441,8.646,6.455,8.644,-5.139,14.189,15.867,8.962,6.123,19.081,0.015,18.807,-1.205,-6.951,-4.575,23.885,3.868,16.62,-6.424,16.26,20.383,16.725,20.823,-2.425,19.877,26.926,14.538,7.488,4.402,-5.508,13.431,19.109,21.818,3.953,8.171,5.487,23.515,12.103,20.397,-0.268,-0.288,11.577,25.692,11.241,27.317,3.075,4.49,-5.159,6.74,5.039,20.24,23.618,18.308,3.658,12.188],[31.941,25.68,14.804,13.791,9.942,13.627,9.244,-3.694,4.208,14.645,26.856,37.287,9.835,5.443,15.093,17.848,13.446,21.061,20.985,13.797,5.327,3.505,20.658,17.211,9.853,5.501,2.409,21.293,8.918,8.911,1.113,13.101,2.602,10.724,10.093,-1.331,-0.321,10.134,17.173,-6.27,-1.889,6.841,4.941,14.691,-6.766,18.364,20.362,22.065,18.305,12.69,5.726,-6.105,3.095,26.382,22.056,10.651,4.583,11.851,0.437,7.133,19.093,5.212,24.441,18.742,24.271,12.839,4.415,13.651,5.898,4.46,9.08,-4.028,30.583,15.667,10.104,28.046,25.689,-4.459,26.061,32.389,12.409,14.286,15.047,9.115,13.338,8.938,13.387,38.409,9.53,15.037,10.978,35.825,4.239,15.484,21.328,17.095,18.001,13.437,22.377,11.363,6.542,21.209,22.387,15.154,12.21,5.115,8.584,16.847,3.76,18.544,10.443,10.029,14.124,22.694,21.408,3.594,19.61,1.681,22.918,5.641,1.754,8.887,6.459,3.491,7.508,0.153,4.209,13.094,2.674,10.854,-0.662,11.682,13.326,11.209,9.486,16.576,-1.933,-0.591,8.507,6.762,8.332,-5.337,14.454,15.961,8.803,6.723,19.019,0.073,19.277,-1.224,-6.893,-4.668,23.69,4.112,16.965,-6.384,16.291,20.291,16.81,20.672,-1.724,18.955,26.441,14.299,7.407,4.324,-5.47,13.468,19.448,21.539,3.468,8.193,5.531,24.187,11.926,19.786,-0.162,-0.365,11.643,26.057,11.249,27.49,3.345,4.813,-4.822,6.463,4.579,20.482,23.801,18.297,3.278,12.114],[32.12,25.626,14.629,13.876,9.79,13.731,9.298,-3.511,4.015,14.827,26.714,37.199,9.805,5.452,15.066,17.864,13.295,21.171,21.076,13.714,5.242,3.374,20.57,17.119,10.044,5.534,2.298,21.503,9.019,8.898,1.159,13.414,2.631,10.507,10.122,-1.458,-0.333,10.096,17.051,-6.602,-1.877,6.921,5.294,14.696,-6.75,18.304,20.307,21.921,18.518,12.81,5.567,-5.94,3.235,26.503,21.906,10.628,4.495,12.036,0.363,7.262,19.056,5.042,24.78,18.724,23.914,13.177,3.508,13.819,5.744,4.461,9.095,-4.018,30.892,15.446,10.34,28.428,25.534,-4.227,26.434,32.308,12.323,13.88,15.246,9.106,13.072,8.827,13.515,38.092,9.916,14.96,10.973,35.619,4.202,15.466,20.984,17.525,17.645,13.259,22.315,11.435,6.388,20.927,22.542,14.941,12.294,4.788,8.826,17.264,3.834,18.138,10.642,10.375,13.609,22.87,21.202,3.872,19.476,1.487,23.129,5.223,2.44,9.378,6.777,3.522,7.838,-0.015,3.829,13.423,3.022,10.582,-0.759,11.903,13.471,11.248,9.132,16.463,-2.162,-0.856,8.234,7.066,8.435,-5.148,14.814,15.433,8.938,6.626,18.972,-0.231,19.479,-0.847,-6.751,-5.192,23.469,4.486,17.226,-6.264,15.694,20.12,16.737,20.775,-1.843,18.798,25.912,14.007,7.256,4.235,-5.712,13.637,19.898,21.582,3.424,8.262,5.137,24.018,11.458,19.76,-0.114,-0.569,11.788,26.04,11.233,27.184,3.903,4.265,-4.393,6.66,4.535,20.378,23.659,18.025,2.994,12.265],[32.245,25.452,14.363,13.777,9.595,13.832,9.3,-3.487,3.875,14.96,26.653,37.094,9.764,5.495,15.092,17.818,13.175,21.131,21.015,13.488,5.258,3.313,20.594,17.009,10.343,5.596,2.317,21.645,9.183,8.742,1.43,13.721,2.616,10.313,10.232,-1.6,-0.355,9.999,16.935,-6.811,-1.852,6.915,5.595,14.598,-6.711,18.306,20.19,21.89,18.81,13.035,5.323,-5.845,3.267,26.48,21.76,10.505,4.289,12.212,0.31,7.362,19.01,4.864,24.89,18.634,23.551,13.279,3.367,14.23,5.668,4.469,9.174,-4.091,30.707,15.597,10.594,28.481,26.07,-4.14,25.964,32.534,12.653,13.909,15.323,9.275,12.946,9.37,13.47,38.109,9.789,15.445,11.108,35.675,4.483,15.379,21.105,17.675,17.983,13.325,22.3,11.449,6.481,20.454,22.57,14.705,11.819,4.149,8.983,17.079,3.941,17.682,10.64,10.336,13.763,22.893,21.673,3.883,19.117,2.07,23.39,5.464,2.342,9.014,6.712,3.432,8.113,0.03,4.232,13.614,3.276,10.323,-0.694,11.449,13.993,10.716,9.087,16.339,-2.132,-0.951,8.358,7.382,8.421,-5.016,15.399,15.595,9.029,6.472,18.962,-0.351,19.242,-0.602,-7.304,-5.317,23.587,4.783,17.113,-6.592,15.626,20.209,16.49,20.83,-2.141,19.838,26.471,14.521,7.018,4.836,-5.313,13.833,19.727,21.571,3.516,8.49,5.164,23.953,11.444,19.716,-0.311,-0.7,12.027,26.344,11.41,27.191,4.145,4.112,-4.334,6.69,4.458,20.37,23.577,18.014,3.531,12.66],[32.369,25.271,14.112,13.762,9.577,13.998,9.388,-3.483,3.874,14.941,26.606,37.038,9.601,5.604,15.151,17.703,13.097,20.968,21.009,13.423,5.521,3.201,20.495,16.997,10.538,5.721,2.446,21.743,9.163,8.74,1.818,13.954,2.754,10.207,10.24,-1.671,-0.357,9.955,16.895,-6.813,-1.877,6.824,5.733,14.533,-6.695,18.325,20.272,21.983,19.017,13.141,5.08,-5.763,3.415,26.419,21.746,10.543,4.187,12.436,0.199,7.398,18.96,4.847,24.788,18.414,23.426,13.333,3.109,13.482,5.678,4.46,9.854,-3.946,30.948,15.519,10.466,28.058,25.582,-4.226,25.784,32.693,12.57,14.2,15.194,9.124,12.831,9.257,13.471,38.094,9.112,16.157,10.614,36.047,4.51,15.518,20.877,16.82,17.927,13.177,22.15,11.755,6.916,20.35,22.264,14.686,11.745,3.999,9.005,16.875,3.957,17.826,10.531,10.44,13.519,22.568,21.814,3.53,19.441,2.471,23.563,5.564,1.933,8.967,6.633,3.195,7.649,-0.084,4.538,13.659,2.667,10.312,-0.129,11.213,13.866,10.495,9.22,15.822,-2.075,-1.152,8.681,7.422,8.823,-4.882,15.343,15.898,8.718,6.535,19.463,-0.425,18.815,-0.782,-7.385,-5.05,23.574,4.532,17.148,-6.912,16.152,20.013,16.587,20.782,-1.823,19.659,26.849,14.572,6.711,5.005,-5.085,14.106,19.171,21.705,3.189,8.707,5.314,24.107,11.489,20.013,-0.394,-0.459,11.562,26.373,11.843,27.867,3.767,4.179,-4.839,6.866,4.038,20.123,23.387,17.853,3.276,12.541],[32.551,25.092,13.903,13.727,9.599,14.127,9.475,-3.462,3.839,15.042,26.548,37.03,9.412,5.685,15.209,17.568,12.963,20.755,20.991,13.462,5.92,3.074,20.331,17.021,10.597,5.878,2.48,21.834,9.006,8.814,2.125,14.061,2.834,10.344,10.225,-1.747,-0.393,9.957,16.769,-6.625,-1.826,6.962,5.582,14.548,-6.683,18.26,20.344,22.111,19.196,13.149,4.88,-5.825,3.514,26.499,21.862,10.642,4.09,12.568,0.054,7.418,18.678,4.9,24.625,18.335,23.3,13.371,3.39,12.872,5.671,4.526,10.052,-4.279,31.376,15.611,10.502,27.425,25.301,-4.471,25.84,32.816,12.572,14.597,14.788,8.907,12.234,9.053,13.519,38.379,8.53,16.024,10.351,36.368,4.782,15.908,21.244,16.731,18.065,13.18,22.112,12.13,6.981,20.109,21.763,14.53,12.289,4.007,8.681,17.179,4.045,17.941,10.423,10.538,13.52,22.265,21.611,3.105,19.4,2.823,23.669,5.44,2.562,9.26,6.469,3.077,7.497,-0.37,4.341,14.098,2.849,10.201,0.364,11.253,13.894,10.454,9.212,15.995,-1.916,-1.007,8.35,7.243,8.677,-4.898,14.629,15.37,8.773,6.441,19.803,-0.353,19.309,-1.186,-7.096,-5.039,23.614,4.233,17.412,-6.832,16.233,20.131,16.463,20.789,-1.811,18.747,26.626,14.448,6.704,5.125,-5.436,14.552,18.994,21.963,3.449,8.809,5.075,24.139,11.649,19.908,-0.307,-0.723,11.413,26.13,11.644,28.031,3.237,3.895,-4.674,7.114,3.9,20.202,23.604,17.401,3.16,12.437],[32.747,25.083,13.711,13.647,9.554,14.155,9.446,-3.513,3.868,15.178,26.462,37.087,9.291,5.764,15.362,17.58,12.817,20.639,20.985,13.527,6.094,2.973,20.286,17.034,10.5,5.944,2.457,21.839,8.963,8.872,2.227,14.092,2.863,10.512,9.91,-1.761,-0.346,10.041,16.617,-6.611,-1.852,7.153,5.288,14.426,-6.662,18.234,20.144,22.175,19.307,13.12,4.768,-5.833,3.431,26.584,22.095,10.693,3.94,12.634,0.012,7.587,18.409,4.93,24.542,18.313,23.272,13.524,3.423,13.429,5.711,4.343,9.495,-4.305,31.192,15.71,10.988,26.751,25.384,-4.295,26.329,33.333,13.062,14.919,14.005,9.091,12.074,9.462,13.742,38.574,8.824,15.647,10.447,36.075,5.159,15.681,21.233,17.057,17.849,13.101,21.969,11.891,7.023,20.409,21.805,14.26,12.106,3.992,8.437,16.918,4.363,18.397,10.686,10.418,13.714,21.706,21.506,2.995,18.905,2.815,23.561,5.621,3.073,8.938,6.502,2.967,7.846,-0.179,4.237,14.105,3.114,10.264,0.172,11.738,14.186,10.411,9.178,16.059,-2.013,-0.841,8.143,7.08,8.982,-4.898,13.944,15.632,9.041,7.015,19.794,-0.329,19.454,-0.589,-6.988,-5.079,23.826,4.338,17.739,-6.606,16.002,20.013,16.496,21.022,-1.668,18.877,26.606,14.715,6.549,5.292,-5.73,14.356,18.801,21.797,3.429,8.771,5.331,23.964,11.878,19.837,-0.846,-0.841,12.0,25.883,11.386,27.55,3.362,3.854,-4.312,7.224,4.206,19.928,23.763,17.723,3.63,12.429],[32.869,25.136,13.461,13.589,9.619,14.211,9.38,-3.497,4.006,15.24,26.393,37.119,9.266,5.798,15.534,17.69,12.613,20.69,20.974,13.427,6.182,2.924,20.271,17.282,10.229,5.862,2.353,21.723,8.956,8.974,2.21,14.072,2.981,10.601,9.524,-1.593,-0.295,10.121,16.662,-6.797,-1.79,7.369,5.03,14.107,-6.685,18.304,19.872,22.183,19.268,13.29,4.767,-5.745,3.37,26.649,22.161,10.867,3.833,12.602,-0.063,7.86,18.254,4.932,24.538,18.474,23.318,13.532,3.089,13.345,5.797,4.728,9.054,-3.918,31.442,15.456,10.945,27.145,25.624,-4.148,26.119,33.383,13.267,15.057,13.773,9.523,11.632,9.219,13.774,38.089,9.209,15.49,10.553,35.609,4.93,15.787,21.092,17.343,17.732,12.793,21.886,11.526,7.126,20.391,22.269,14.235,11.771,4.037,8.936,17.035,4.246,18.331,10.793,10.416,13.356,21.603,21.291,3.147,19.161,2.698,23.46,5.626,2.988,8.583,6.844,3.322,8.308,0.056,4.496,14.087,3.296,9.626,0.452,11.916,13.936,10.654,9.457,15.352,-2.062,-1.253,7.877,6.753,8.725,-5.096,14.177,15.528,9.469,7.677,20.068,-0.174,19.014,-0.469,-6.773,-5.424,23.694,4.37,17.77,-6.538,15.854,19.948,16.437,21.019,-1.523,19.278,26.671,14.475,6.202,4.924,-5.698,14.326,18.629,21.931,3.468,9.055,5.819,23.922,11.142,19.425,-0.356,-0.503,12.402,26.224,11.591,27.044,3.545,3.798,-4.253,7.357,4.687,19.857,23.991,17.94,3.191,12.693],[32.91,25.138,13.108,13.407,9.776,14.311,9.32,-3.345,4.101,15.21,26.38,37.045,9.22,5.853,15.66,17.81,12.514,20.696,21.002,13.148,6.298,3.007,20.27,17.536,9.973,5.691,2.253,21.553,8.939,9.094,2.129,13.916,3.239,10.663,9.264,-1.454,-0.276,10.273,16.554,-6.894,-1.563,7.523,4.813,14.129,-6.7,18.188,19.761,22.157,19.151,13.494,4.714,-5.673,3.336,26.672,22.129,10.688,3.8,12.616,-0.054,8.022,18.289,4.948,24.707,18.611,23.294,13.475,3.185,12.921,5.903,5.006,8.936,-3.452,31.718,15.212,10.488,27.98,25.733,-4.076,26.104,33.408,13.158,15.197,13.808,9.682,11.306,8.651,13.741,37.809,9.14,15.759,10.424,35.437,4.851,16.153,20.926,17.874,18.259,12.348,22.084,11.376,7.168,20.212,22.326,14.359,12.075,4.096,8.912,17.222,4.279,17.98,10.992,10.366,13.089,21.804,21.287,3.159,19.373,2.991,23.372,6.163,2.781,8.928,7.09,3.448,8.647,0.241,4.614,14.449,3.095,9.621,0.261,11.66,14.205,10.867,9.276,15.451,-2.118,-1.374,7.395,6.422,9.313,-4.953,14.738,15.683,9.333,7.073,20.144,0.039,18.971,-0.796,-7.081,-5.373,23.685,3.947,17.693,-6.53,15.563,19.72,16.296,20.962,-1.722,19.029,26.512,14.421,6.292,4.824,-5.098,14.529,18.087,21.971,3.299,8.726,5.33,23.979,10.656,19.845,0.013,-0.779,12.251,26.426,11.976,27.173,4.154,3.612,-4.462,7.408,5.028,19.975,23.739,18.316,2.908,12.691],[32.887,25.067,12.852,13.087,9.946,14.349,9.258,-3.113,4.163,15.113,26.449,37.019,9.149,5.951,15.763,18.001,12.526,20.656,21.082,13.018,6.437,3.221,20.265,17.625,9.673,5.552,2.218,21.477,8.906,9.189,1.983,13.914,3.341,10.711,9.19,-1.383,-0.332,10.405,16.406,-6.853,-1.403,7.577,4.623,14.271,-6.576,17.94,19.698,22.145,19.11,13.616,4.752,-5.629,3.414,26.697,22.047,10.368,3.847,12.704,0.048,7.965,18.337,4.742,24.896,18.828,23.273,13.33,3.384,12.87,6.021,4.834,9.36,-3.57,31.848,15.021,10.382,28.355,25.355,-3.965,25.717,33.6,13.155,15.171,13.339,9.44,11.236,8.695,13.912,38.153,8.827,16.151,10.465,35.482,5.466,15.976,20.852,18.303,18.005,12.309,22.101,11.207,7.549,20.26,21.899,14.275,11.855,4.123,8.49,17.072,4.749,18.596,11.08,10.074,12.414,22.112,21.425,2.712,19.573,3.045,23.317,6.102,2.443,8.963,6.637,3.02,8.403,0.314,4.975,14.47,3.588,9.752,0.195,11.324,13.584,10.864,9.368,15.578,-1.987,-0.846,7.489,6.258,9.308,-4.801,14.883,15.902,9.342,7.345,19.756,0.353,19.143,-0.174,-7.574,-5.396,23.742,3.564,17.363,-6.866,15.729,19.505,16.138,20.744,-2.069,18.829,26.498,15.147,6.495,5.074,-5.121,14.53,18.59,22.074,2.791,9.009,5.022,24.063,11.142,20.254,-0.768,-0.584,11.55,26.617,12.011,27.331,4.03,3.501,-4.294,7.331,4.834,19.814,23.623,18.444,3.073,12.463],[32.987,24.974,12.67,12.828,10.105,14.389,9.196,-2.919,4.192,14.992,26.445,37.072,9.127,6.032,15.688,18.126,12.618,20.552,21.138,12.812,6.508,3.419,20.315,17.8,9.342,5.451,2.094,21.552,8.807,9.07,1.936,14.004,3.42,10.58,9.053,-1.28,-0.421,10.542,16.291,-6.699,-1.269,7.623,4.568,14.326,-6.556,17.75,19.596,22.071,19.041,13.729,4.871,-5.554,3.549,26.71,21.932,10.15,3.868,12.738,0.043,7.86,18.38,4.58,25.121,19.147,23.181,13.094,3.607,12.627,6.04,5.236,9.228,-3.748,31.618,14.566,10.747,28.227,25.047,-3.801,26.032,33.342,13.17,15.464,13.058,9.149,11.403,9.678,13.813,38.608,8.603,15.735,10.513,35.677,4.97,16.162,21.818,17.876,17.809,12.419,22.008,10.803,7.648,20.576,22.243,14.249,11.383,3.993,8.772,17.665,4.854,19.155,10.98,9.598,12.711,22.289,21.359,3.079,19.438,2.432,23.354,6.052,2.703,8.665,6.401,2.424,8.21,0.164,4.878,14.32,3.783,9.656,0.138,11.474,13.889,11.288,9.792,15.14,-1.803,-0.408,7.327,6.321,9.33,-4.751,14.763,15.344,9.657,7.742,19.481,0.466,18.791,-0.105,-7.63,-5.22,23.654,3.636,17.471,-6.788,15.873,19.51,16.052,20.946,-2.0,18.871,26.637,15.188,6.387,5.308,-5.665,14.556,19.017,22.048,2.836,8.914,4.409,24.556,11.403,20.102,-0.939,-0.656,11.268,26.704,12.069,27.571,3.171,4.18,-4.323,7.379,4.406,19.79,23.612,18.711,3.217,12.382],[33.087,24.887,12.576,12.567,10.181,14.342,9.16,-2.857,4.154,14.89,26.489,37.262,9.171,6.013,15.503,18.301,12.744,20.57,21.414,12.622,6.445,3.581,20.301,18.032,9.076,5.458,1.882,21.657,8.663,8.946,1.986,13.98,3.476,10.411,8.811,-1.121,-0.501,10.732,16.066,-6.522,-1.121,7.75,4.669,14.357,-6.584,17.597,19.515,22.025,19.017,13.781,4.993,-5.599,3.482,26.698,21.807,10.072,3.79,12.745,-0.198,7.925,18.494,4.566,25.342,19.303,22.985,13.11,3.766,12.385,5.951,5.894,8.643,-3.591,31.874,14.254,10.649,28.154,25.173,-3.721,26.259,33.038,13.271,16.212,13.37,9.738,11.208,10.228,14.2,38.638,8.494,15.445,10.114,35.939,4.479,15.915,21.58,17.647,18.309,12.803,22.074,10.33,7.472,19.843,22.335,14.376,11.239,4.142,8.64,17.371,4.449,19.209,10.655,9.763,12.951,22.322,21.137,3.409,19.003,2.346,23.565,6.463,2.891,9.037,6.253,2.753,8.323,0.483,4.661,14.889,3.425,9.108,0.108,11.917,14.356,11.478,9.69,15.016,-1.611,-0.704,7.129,6.494,8.627,-4.98,13.965,15.07,9.76,7.955,19.695,0.495,18.426,-0.496,-6.954,-4.989,23.696,4.034,17.229,-6.486,16.05,19.757,15.748,20.892,-1.985,18.944,26.676,14.826,6.351,5.345,-5.37,14.544,18.544,21.741,3.07,8.846,4.478,25.003,10.853,20.528,-0.743,-0.472,11.601,27.16,12.344,27.398,2.874,4.48,-4.214,7.129,4.543,19.796,23.686,19.109,3.016,12.257],[33.106,24.814,12.555,12.226,10.3,14.338,8.92,-2.866,4.067,14.957,26.716,37.454,9.181,5.937,15.351,18.551,12.833,20.561,21.533,12.579,6.419,3.806,20.097,18.209,8.892,5.44,1.809,21.716,8.553,8.91,1.987,13.948,3.455,10.423,8.675,-1.043,-0.539,10.848,15.857,-6.242,-1.058,7.705,4.852,14.251,-6.631,17.437,19.49,21.99,19.017,13.906,5.09,-5.637,3.287,26.678,21.803,10.149,3.625,12.806,-0.422,8.086,18.517,4.564,25.58,19.394,22.998,13.378,3.335,12.419,5.895,6.164,9.578,-3.13,31.875,13.938,10.215,27.263,25.286,-3.871,26.091,33.11,12.922,16.478,13.543,9.366,11.02,9.27,14.232,38.589,9.029,15.708,10.21,36.62,4.94,15.745,21.945,18.272,18.215,13.329,21.969,10.384,7.452,19.684,22.318,14.551,11.166,4.393,8.004,17.248,4.365,18.965,10.769,9.499,12.976,22.156,21.32,3.238,19.083,3.15,23.545,6.314,2.598,8.523,6.348,2.779,8.399,0.669,4.549,15.057,3.338,9.25,0.097,11.854,13.898,10.915,9.847,15.108,-1.929,-0.933,7.103,6.665,8.451,-4.906,13.825,14.966,9.851,8.052,20.022,0.487,18.22,0.266,-6.593,-4.852,23.593,4.471,17.279,-6.588,16.065,19.662,15.566,20.868,-1.713,19.052,26.764,15.128,6.591,5.203,-4.996,14.572,18.59,21.479,2.728,9.008,4.959,25.048,10.228,20.425,-0.832,-1.179,11.797,27.066,12.229,27.245,3.351,4.206,-4.231,7.329,4.957,19.984,23.478,18.691,2.861,12.089],[33.019,24.858,12.513,11.937,10.214,14.384,8.68,-2.867,3.863,15.057,26.855,37.607,9.241,5.999,15.316,18.694,12.976,20.481,21.452,12.622,6.507,4.025,19.881,18.325,8.795,5.446,1.725,21.702,8.411,9.0,2.044,13.817,3.395,10.393,8.772,-0.997,-0.583,10.83,15.725,-5.873,-0.978,7.685,5.101,14.147,-6.668,17.231,19.516,22.016,19.024,14.033,5.2,-5.514,3.296,26.75,21.775,10.247,3.442,12.829,-0.585,8.289,18.584,4.447,25.665,19.364,23.009,13.75,2.974,11.722,5.768,5.536,9.547,-3.689,31.599,13.726,10.08,26.871,24.872,-3.249,26.013,33.436,13.165,16.259,13.637,9.603,11.027,9.267,13.601,38.942,9.235,16.136,10.768,37.277,5.233,15.466,21.617,18.486,18.089,13.371,21.58,10.247,7.143,20.46,22.646,14.562,11.349,4.185,8.177,17.77,4.843,19.206,10.836,9.314,12.721,21.924,21.49,3.108,19.125,2.986,23.507,6.291,2.502,7.999,6.517,2.568,8.313,0.561,4.659,14.896,3.56,9.744,0.149,11.875,13.903,10.924,9.694,14.967,-2.2,-0.541,6.83,6.828,8.344,-4.893,13.696,15.144,9.978,7.403,20.025,0.43,18.508,0.293,-6.871,-4.526,23.521,4.345,17.451,-6.807,15.878,19.318,15.639,20.657,-1.386,19.078,26.774,15.554,6.37,4.295,-5.49,14.623,18.991,22.008,2.666,8.906,4.995,24.915,10.597,19.85,-1.314,-1.484,11.95,27.265,12.381,27.543,3.545,3.861,-4.613,7.612,4.903,19.828,23.316,18.431,2.968,12.066]]', cont_lim=[-8, -1], frame__a=23.440453686200378, imgname='name', layout=Layout(flex='1 1 auto', height='auto', min_height='500px'), two_b0='[[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63],[0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63]]', two_b1='[[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189],[72,79,64,76,82,84,67,73,83,85,80,86,74,88,71,77,66,68,65,89,75,78,87,91,70,90,69,92,81,93,96,107,97,103,101,113,94,102,104,112,100,119,105,115,98,116,95,109,99,111,108,122,120,123,114,118,106,121,110,124,117,130,127,132,126,128,131,133,129,138,125,137,136,147,134,144,135,143,150,151,149,160,140,145,139,153,142,156,141,155,148,158,157,161,152,159,146,154,163,180,164,183,166,184,165,182,162,181,169,188,174,178,186,190,167,191,176,177,171,185,168,187,170,172,173,179,175,189]]', uni=True),), layout=Layout(flex='1 1 auto', height='auto', width='auto')),), layout=Layout(flex='1 1 auto', height='auto', width='auto'))), layout=Layout(flex='1 1 auto', height='auto', width='auto'))" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "exatomic.UniverseWidget(uni)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.4" } }, "nbformat": 4, "nbformat_minor": 4 }