{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Ball and stick 1: Basic cell" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is the first part of a several page tutorial that will ultimately build a ring network of mutlicompartment neurons running on a parallel machine.\n", "\n", "Best software engineering practice is to carefully design both the model and code. A well-designed system is easier to debug, maintain, and extend.\n", "\n", "This tutorial will take a functional bottom-up approach, building key components and refactoring as needed for a better software design instead of describing a complex design and filling in the pieces.\n", "\n", "This part of the tutorial builds a two-compartment neuron consisting of a soma and dendrite. This representation is known as a ball-and-stick model. After building the cell, we will attach some instrumentation to it to simulate and monitor its dynamics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Load NEURON" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We of course begin by loading NEURON's main submodule `n`." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:09.591517Z", "iopub.status.busy": "2025-08-18T03:35:09.590573Z", "iopub.status.idle": "2025-08-18T03:35:10.642161Z", "shell.execute_reply": "2025-08-18T03:35:10.641729Z" } }, "outputs": [], "source": [ "from neuron import n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As good practice, we'll load some unit definitions:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:10.645984Z", "iopub.status.busy": "2025-08-18T03:35:10.645767Z", "iopub.status.idle": "2025-08-18T03:35:10.682933Z", "shell.execute_reply": "2025-08-18T03:35:10.682432Z" } }, "outputs": [], "source": [ "from neuron.units import ms, mV, µm" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll load the standard run library to give us high-level simulation control functions (e.g. running a simulation for a given period of time):" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:10.689020Z", "iopub.status.busy": "2025-08-18T03:35:10.688692Z", "iopub.status.idle": "2025-08-18T03:35:10.736611Z", "shell.execute_reply": "2025-08-18T03:35:10.736175Z" } }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.load_file(\"stdrun.hoc\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we're running in Jupyter, we should allow interactive graphics inline so that we can explore our PlotShapes interactively; skip this line if you're not using Jupyter (it'll cause a syntax error):" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:10.910666Z", "iopub.status.busy": "2025-08-18T03:35:10.906880Z", "iopub.status.idle": "2025-08-18T03:35:40.969840Z", "shell.execute_reply": "2025-08-18T03:35:40.969402Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Matplotlib is building the font cache; this may take a moment.\n" ] } ], "source": [ "%matplotlib notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Defining the cell morphology" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create the sections" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A ball-and-stick cell by definition consists of two parts: the soma (ball) and a dendrite (stick). We could define two Sections at the top level as in the previous tutorial, but that wouldn't give us an easy way to create multiple cells. Instead, let's define a BallAndStick neuron class. The basic boilerplate for defining any class in Python looks like:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:40.976971Z", "iopub.status.busy": "2025-08-18T03:35:40.976731Z", "iopub.status.idle": "2025-08-18T03:35:40.980936Z", "shell.execute_reply": "2025-08-18T03:35:40.980565Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " \"\"\"anything that should be done every time one of these is created goes here\"\"\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In our case in particular, every time we say that there is a BallAndStick cell, we should create the soma and the dendrite sections:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:40.987868Z", "iopub.status.busy": "2025-08-18T03:35:40.987714Z", "iopub.status.idle": "2025-08-18T03:35:40.992566Z", "shell.execute_reply": "2025-08-18T03:35:40.991138Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Any variables that describe properties of the cell must get stored as attributes of self. This is why we write self.soma instead of soma. Temporary variables, on the other hand, need not be prefixed with self and will simply stop existing when the initialization function ends.\n", "\n", "You will also note that we have introduced a new keyword argument for Section, namely the cell attribute. This will always be set to self (i.e. the current cell) to allow each Section to know what cell it belongs to." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Recall that we can check the topology via:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.000086Z", "iopub.status.busy": "2025-08-18T03:35:40.999717Z", "iopub.status.idle": "2025-08-18T03:35:41.006030Z", "shell.execute_reply": "2025-08-18T03:35:41.005665Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "No sections were displayed. Why?\n", "\n", "The explanation is that we haven't actually created any such cells yet; we've only defined a rule for them. Let's go ahead and create our first cell:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.012874Z", "iopub.status.busy": "2025-08-18T03:35:41.012721Z", "iopub.status.idle": "2025-08-18T03:35:41.017521Z", "shell.execute_reply": "2025-08-18T03:35:41.017144Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We again check the topology and see that the sections have in fact been created:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.019091Z", "iopub.status.busy": "2025-08-18T03:35:41.018936Z", "iopub.status.idle": "2025-08-18T03:35:41.025237Z", "shell.execute_reply": "2025-08-18T03:35:41.024919Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| <__main__.BallAndStick object at 0x7b2441e3dd90>.soma(0-1)\n", "|-| <__main__.BallAndStick object at 0x7b2441e3dd90>.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Clearly there is a soma and a dendrite, but the cell identifier before each is not very friendly.\n", "\n", "We can specify how the cell displays using the `__repr__` method:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.026881Z", "iopub.status.busy": "2025-08-18T03:35:41.026740Z", "iopub.status.idle": "2025-08-18T03:35:41.033515Z", "shell.execute_reply": "2025-08-18T03:35:41.033136Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick\"" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.035598Z", "iopub.status.busy": "2025-08-18T03:35:41.034910Z", "iopub.status.idle": "2025-08-18T03:35:41.043626Z", "shell.execute_reply": "2025-08-18T03:35:41.043235Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| <__main__.BallAndStick object at 0x7b2441e3dd90>.soma(0-1)\n", "|-| <__main__.BallAndStick object at 0x7b2441e3dd90>.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Our sections display based on the rule they were created with, not the new rule, so we need to recreate the cell:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.045402Z", "iopub.status.busy": "2025-08-18T03:35:41.045113Z", "iopub.status.idle": "2025-08-18T03:35:41.049657Z", "shell.execute_reply": "2025-08-18T03:35:41.049281Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we see something friendlier:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.052877Z", "iopub.status.busy": "2025-08-18T03:35:41.051039Z", "iopub.status.idle": "2025-08-18T03:35:41.058560Z", "shell.execute_reply": "2025-08-18T03:35:41.058179Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There's a problem though; do you see it?\n", "\n", "Every cell using this rule would print out the same cell identifier. So if we create a second cell:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.062505Z", "iopub.status.busy": "2025-08-18T03:35:41.060097Z", "iopub.status.idle": "2025-08-18T03:35:41.064349Z", "shell.execute_reply": "2025-08-18T03:35:41.063990Z" } }, "outputs": [], "source": [ "my_other_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "and look at the topology:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.066524Z", "iopub.status.busy": "2025-08-18T03:35:41.065939Z", "iopub.status.idle": "2025-08-18T03:35:41.073907Z", "shell.execute_reply": "2025-08-18T03:35:41.073549Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There is no way to tell the two somas apart and see which goes with which cell. To fix this, we'll pass in an identifier gid when we create the cell and have `__repr__` incorporate that into the name:" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.075552Z", "iopub.status.busy": "2025-08-18T03:35:41.075191Z", "iopub.status.idle": "2025-08-18T03:35:41.081606Z", "shell.execute_reply": "2025-08-18T03:35:41.079867Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Important: the cell name (returned by `__repr__`) will be read when the Section is created, so any and all data that function needs -- here the `gid` -- must be stored before creating any Section objects." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's create our two cells:" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.085498Z", "iopub.status.busy": "2025-08-18T03:35:41.083274Z", "iopub.status.idle": "2025-08-18T03:35:41.087438Z", "shell.execute_reply": "2025-08-18T03:35:41.087052Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick(0)\n", "my_other_cell = BallAndStick(1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now when we look at the topology, we can tell the Sections belonging to the two cells apart:" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.090693Z", "iopub.status.busy": "2025-08-18T03:35:41.090543Z", "iopub.status.idle": "2025-08-18T03:35:41.097033Z", "shell.execute_reply": "2025-08-18T03:35:41.096662Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", "|-| BallAndStick[0].dend(0-1)\n", "|-| BallAndStick[1].soma(0-1)\n", "|-| BallAndStick[1].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can tell which sections are the soma and which are dendrites. We can see which go with cell 0 and which go with cell 1, but there is nothing indicating that the dendrite is connected to the soma. This is because we have not told NEURON about any such relationships, so let's do so:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Connect the sections" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We attach `self.dend` to the `self.soma` using the `connect` method:" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.098701Z", "iopub.status.busy": "2025-08-18T03:35:41.098557Z", "iopub.status.idle": "2025-08-18T03:35:41.104617Z", "shell.execute_reply": "2025-08-18T03:35:41.102691Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.dend.connect(self.soma)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As before, we must recreate the cells now that we've changed the rule:" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.106723Z", "iopub.status.busy": "2025-08-18T03:35:41.106060Z", "iopub.status.idle": "2025-08-18T03:35:41.111502Z", "shell.execute_reply": "2025-08-18T03:35:41.111137Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick(0)\n", "my_other_cell = BallAndStick(1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that this is not equivalent to attaching the `soma` to the `dend`; instead it means that the dendrite begins where the soma ends. We can see that in the topology:" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.113278Z", "iopub.status.busy": "2025-08-18T03:35:41.113136Z", "iopub.status.idle": "2025-08-18T03:35:41.118894Z", "shell.execute_reply": "2025-08-18T03:35:41.118533Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "|-| BallAndStick[1].soma(0-1)\n", " `| BallAndStick[1].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For now, we can get rid of `my_other_cell`:" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.122651Z", "iopub.status.busy": "2025-08-18T03:35:41.122502Z", "iopub.status.idle": "2025-08-18T03:35:41.127470Z", "shell.execute_reply": "2025-08-18T03:35:41.127085Z" } }, "outputs": [], "source": [ "del my_other_cell" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.129567Z", "iopub.status.busy": "2025-08-18T03:35:41.128901Z", "iopub.status.idle": "2025-08-18T03:35:41.136841Z", "shell.execute_reply": "2025-08-18T03:35:41.136464Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A `soma` can have many dendrites attached to it, but any dendrite only begins at one specific location." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What if we didn't want to attach the dendrite to the end of the soma (position 1)? We could explicitly specify the connection location via, e.g. `self.dend.connect(self.soma(0.5))` which would mean the dendrite was attached to the center of the soma. (Recall: segments are described using normalized positions.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The 1 end of the soma is said to be the parent of the `dend` section." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Define stylized geometry" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's set the length and the width for both sections. We'll make the soma have length and diameter of 12.6157 microns, the dendrite have length 200 microns and diameter 1 micron." ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.138636Z", "iopub.status.busy": "2025-08-18T03:35:41.138490Z", "iopub.status.idle": "2025-08-18T03:35:41.144515Z", "shell.execute_reply": "2025-08-18T03:35:41.144141Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.dend.connect(self.soma)\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you're wondering why that number was chosen for the soma length and diameter: it is because it makes the surface area (which doesn't include end faces) approximately 500 μm2:" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.145965Z", "iopub.status.busy": "2025-08-18T03:35:41.145822Z", "iopub.status.idle": "2025-08-18T03:35:41.151005Z", "shell.execute_reply": "2025-08-18T03:35:41.150631Z" } }, "outputs": [ { "data": { "text/plain": [ "500.00296377255506" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "my_cell.soma(0.5).area()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(NEURON only returns areas of segments which is why we asked for the center `soma` segment; since there is only one segment, the area here is the same as the whole Section area.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the surface area of a cylinder with equal length and diameter\n", "$$\n", "\\pi d \\ell = \\pi d^2 = 4 \\pi \\left (\\frac{d}{2} \\right) ^2 = 4 \\pi r^2\n", "$$\n", "is the same as the surface area of a sphere with the same diameter." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "That is, if we're only interested in electrophysiology modeling, we can substitute a cylindrical soma with equal length and diameter for a spherical soma with the same diameter, as we've done here. (The volume, however, is of course different. So this substitution does not work if we're modeling diffusion or accumulation of ions.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For the rest of this tutorial page, we'll focus solely on one cell." ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.154263Z", "iopub.status.busy": "2025-08-18T03:35:41.153692Z", "iopub.status.idle": "2025-08-18T03:35:41.161511Z", "shell.execute_reply": "2025-08-18T03:35:41.159733Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now it is time to see what the cell looks like:" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.164967Z", "iopub.status.busy": "2025-08-18T03:35:41.164819Z", "iopub.status.idle": "2025-08-18T03:35:41.420462Z", "shell.execute_reply": "2025-08-18T03:35:41.420029Z" } }, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "/* global mpl */\n", "window.mpl = {};\n", "\n", "mpl.get_websocket_type = function () {\n", " if (typeof WebSocket !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof MozWebSocket !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert(\n", " 'Your browser does not have WebSocket support. ' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.'\n", " );\n", " }\n", "};\n", "\n", "mpl.figure = function (figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = this.ws.binaryType !== undefined;\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById('mpl-warnings');\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent =\n", " 'This browser does not support binary websocket messages. ' +\n", " 'Performance may be slow.';\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = document.createElement('div');\n", " this.root.setAttribute('style', 'display: inline-block');\n", " this._root_extra_style(this.root);\n", "\n", " parent_element.appendChild(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message('supports_binary', { value: fig.supports_binary });\n", " fig.send_message('send_image_mode', {});\n", " if (fig.ratio !== 1) {\n", " fig.send_message('set_device_pixel_ratio', {\n", " device_pixel_ratio: fig.ratio,\n", " });\n", " }\n", " fig.send_message('refresh', {});\n", " };\n", "\n", " this.imageObj.onload = function () {\n", " if (fig.image_mode === 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function () {\n", " fig.ws.close();\n", " };\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "};\n", "\n", "mpl.figure.prototype._init_header = function () {\n", " var titlebar = document.createElement('div');\n", " titlebar.classList =\n", " 'ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix';\n", " var titletext = document.createElement('div');\n", " titletext.classList = 'ui-dialog-title';\n", " titletext.setAttribute(\n", " 'style',\n", " 'width: 100%; text-align: center; padding: 3px;'\n", " );\n", " titlebar.appendChild(titletext);\n", " this.root.appendChild(titlebar);\n", " this.header = titletext;\n", "};\n", "\n", "mpl.figure.prototype._canvas_extra_style = function (_canvas_div) {};\n", "\n", "mpl.figure.prototype._root_extra_style = function (_canvas_div) {};\n", "\n", "mpl.figure.prototype._init_canvas = function () {\n", " var fig = this;\n", "\n", " var canvas_div = (this.canvas_div = document.createElement('div'));\n", " canvas_div.setAttribute('tabindex', '0');\n", " canvas_div.setAttribute(\n", " 'style',\n", " 'border: 1px solid #ddd;' +\n", " 'box-sizing: content-box;' +\n", " 'clear: both;' +\n", " 'min-height: 1px;' +\n", " 'min-width: 1px;' +\n", " 'outline: 0;' +\n", " 'overflow: hidden;' +\n", " 'position: relative;' +\n", " 'resize: both;' +\n", " 'z-index: 2;'\n", " );\n", "\n", " function on_keyboard_event_closure(name) {\n", " return function (event) {\n", " return fig.key_event(event, name);\n", " };\n", " }\n", "\n", " canvas_div.addEventListener(\n", " 'keydown',\n", " on_keyboard_event_closure('key_press')\n", " );\n", " canvas_div.addEventListener(\n", " 'keyup',\n", " on_keyboard_event_closure('key_release')\n", " );\n", "\n", " this._canvas_extra_style(canvas_div);\n", " this.root.appendChild(canvas_div);\n", "\n", " var canvas = (this.canvas = document.createElement('canvas'));\n", " canvas.classList.add('mpl-canvas');\n", " canvas.setAttribute(\n", " 'style',\n", " 'box-sizing: content-box;' +\n", " 'pointer-events: none;' +\n", " 'position: relative;' +\n", " 'z-index: 0;'\n", " );\n", "\n", " this.context = canvas.getContext('2d');\n", "\n", " var backingStore =\n", " this.context.backingStorePixelRatio ||\n", " this.context.webkitBackingStorePixelRatio ||\n", " this.context.mozBackingStorePixelRatio ||\n", " this.context.msBackingStorePixelRatio ||\n", " this.context.oBackingStorePixelRatio ||\n", " this.context.backingStorePixelRatio ||\n", " 1;\n", "\n", " this.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband_canvas = (this.rubberband_canvas = document.createElement(\n", " 'canvas'\n", " ));\n", " rubberband_canvas.setAttribute(\n", " 'style',\n", " 'box-sizing: content-box;' +\n", " 'left: 0;' +\n", " 'pointer-events: none;' +\n", " 'position: absolute;' +\n", " 'top: 0;' +\n", " 'z-index: 1;'\n", " );\n", "\n", " // Apply a ponyfill if ResizeObserver is not implemented by browser.\n", " if (this.ResizeObserver === undefined) {\n", " if (window.ResizeObserver !== undefined) {\n", " this.ResizeObserver = window.ResizeObserver;\n", " } else {\n", " var obs = _JSXTOOLS_RESIZE_OBSERVER({});\n", " this.ResizeObserver = obs.ResizeObserver;\n", " }\n", " }\n", "\n", " this.resizeObserverInstance = new this.ResizeObserver(function (entries) {\n", " // There's no need to resize if the WebSocket is not connected:\n", " // - If it is still connecting, then we will get an initial resize from\n", " // Python once it connects.\n", " // - If it has disconnected, then resizing will clear the canvas and\n", " // never get anything back to refill it, so better to not resize and\n", " // keep something visible.\n", " if (fig.ws.readyState != 1) {\n", " return;\n", " }\n", " var nentries = entries.length;\n", " for (var i = 0; i < nentries; i++) {\n", " var entry = entries[i];\n", " var width, height;\n", " if (entry.contentBoxSize) {\n", " if (entry.contentBoxSize instanceof Array) {\n", " // Chrome 84 implements new version of spec.\n", " width = entry.contentBoxSize[0].inlineSize;\n", " height = entry.contentBoxSize[0].blockSize;\n", " } else {\n", " // Firefox implements old version of spec.\n", " width = entry.contentBoxSize.inlineSize;\n", " height = entry.contentBoxSize.blockSize;\n", " }\n", " } else {\n", " // Chrome <84 implements even older version of spec.\n", " width = entry.contentRect.width;\n", " height = entry.contentRect.height;\n", " }\n", "\n", " // Keep the size of the canvas and rubber band canvas in sync with\n", " // the canvas container.\n", " if (entry.devicePixelContentBoxSize) {\n", " // Chrome 84 implements new version of spec.\n", " canvas.setAttribute(\n", " 'width',\n", " entry.devicePixelContentBoxSize[0].inlineSize\n", " );\n", " canvas.setAttribute(\n", " 'height',\n", " entry.devicePixelContentBoxSize[0].blockSize\n", " );\n", " } else {\n", " canvas.setAttribute('width', width * fig.ratio);\n", " canvas.setAttribute('height', height * fig.ratio);\n", " }\n", " /* This rescales the canvas back to display pixels, so that it\n", " * appears correct on HiDPI screens. */\n", " canvas.style.width = width + 'px';\n", " canvas.style.height = height + 'px';\n", "\n", " rubberband_canvas.setAttribute('width', width);\n", " rubberband_canvas.setAttribute('height', height);\n", "\n", " // And update the size in Python. We ignore the initial 0/0 size\n", " // that occurs as the element is placed into the DOM, which should\n", " // otherwise not happen due to the minimum size styling.\n", " if (width != 0 && height != 0) {\n", " fig.request_resize(width, height);\n", " }\n", " }\n", " });\n", " this.resizeObserverInstance.observe(canvas_div);\n", "\n", " function on_mouse_event_closure(name) {\n", " /* User Agent sniffing is bad, but WebKit is busted:\n", " * https://bugs.webkit.org/show_bug.cgi?id=144526\n", " * https://bugs.webkit.org/show_bug.cgi?id=181818\n", " * The worst that happens here is that they get an extra browser\n", " * selection when dragging, if this check fails to catch them.\n", " */\n", " var UA = navigator.userAgent;\n", " var isWebKit = /AppleWebKit/.test(UA) && !/Chrome/.test(UA);\n", " if(isWebKit) {\n", " return function (event) {\n", " /* This prevents the web browser from automatically changing to\n", " * the text insertion cursor when the button is pressed. We\n", " * want to control all of the cursor setting manually through\n", " * the 'cursor' event from matplotlib */\n", " event.preventDefault()\n", " return fig.mouse_event(event, name);\n", " };\n", " } else {\n", " return function (event) {\n", " return fig.mouse_event(event, name);\n", " };\n", " }\n", " }\n", "\n", " canvas_div.addEventListener(\n", " 'mousedown',\n", " on_mouse_event_closure('button_press')\n", " );\n", " canvas_div.addEventListener(\n", " 'mouseup',\n", " on_mouse_event_closure('button_release')\n", " );\n", " canvas_div.addEventListener(\n", " 'dblclick',\n", " on_mouse_event_closure('dblclick')\n", " );\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " canvas_div.addEventListener(\n", " 'mousemove',\n", " on_mouse_event_closure('motion_notify')\n", " );\n", "\n", " canvas_div.addEventListener(\n", " 'mouseenter',\n", " on_mouse_event_closure('figure_enter')\n", " );\n", " canvas_div.addEventListener(\n", " 'mouseleave',\n", " on_mouse_event_closure('figure_leave')\n", " );\n", "\n", " canvas_div.addEventListener('wheel', function (event) {\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " on_mouse_event_closure('scroll')(event);\n", " });\n", "\n", " canvas_div.appendChild(canvas);\n", " canvas_div.appendChild(rubberband_canvas);\n", "\n", " this.rubberband_context = rubberband_canvas.getContext('2d');\n", " this.rubberband_context.strokeStyle = '#000000';\n", "\n", " this._resize_canvas = function (width, height, forward) {\n", " if (forward) {\n", " canvas_div.style.width = width + 'px';\n", " canvas_div.style.height = height + 'px';\n", " }\n", " };\n", "\n", " // Disable right mouse context menu.\n", " canvas_div.addEventListener('contextmenu', function (_e) {\n", " event.preventDefault();\n", " return false;\n", " });\n", "\n", " function set_focus() {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "};\n", "\n", "mpl.figure.prototype._init_toolbar = function () {\n", " var fig = this;\n", "\n", " var toolbar = document.createElement('div');\n", " toolbar.classList = 'mpl-toolbar';\n", " this.root.appendChild(toolbar);\n", "\n", " function on_click_closure(name) {\n", " return function (_event) {\n", " return fig.toolbar_button_onclick(name);\n", " };\n", " }\n", "\n", " function on_mouseover_closure(tooltip) {\n", " return function (event) {\n", " if (!event.currentTarget.disabled) {\n", " return fig.toolbar_button_onmouseover(tooltip);\n", " }\n", " };\n", " }\n", "\n", " fig.buttons = {};\n", " var buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'mpl-button-group';\n", " for (var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " /* Instead of a spacer, we start a new button group. */\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", " buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'mpl-button-group';\n", " continue;\n", " }\n", "\n", " var button = (fig.buttons[name] = document.createElement('button'));\n", " button.classList = 'mpl-widget';\n", " button.setAttribute('role', 'button');\n", " button.setAttribute('aria-disabled', 'false');\n", " button.addEventListener('click', on_click_closure(method_name));\n", " button.addEventListener('mouseover', on_mouseover_closure(tooltip));\n", "\n", " var icon_img = document.createElement('img');\n", " icon_img.src = '_images/' + image + '.png';\n", " icon_img.srcset = '_images/' + image + '_large.png 2x';\n", " icon_img.alt = tooltip;\n", " button.appendChild(icon_img);\n", "\n", " buttonGroup.appendChild(button);\n", " }\n", "\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", "\n", " var fmt_picker = document.createElement('select');\n", " fmt_picker.classList = 'mpl-widget';\n", " toolbar.appendChild(fmt_picker);\n", " this.format_dropdown = fmt_picker;\n", "\n", " for (var ind in mpl.extensions) {\n", " var fmt = mpl.extensions[ind];\n", " var option = document.createElement('option');\n", " option.selected = fmt === mpl.default_extension;\n", " option.innerHTML = fmt;\n", " fmt_picker.appendChild(option);\n", " }\n", "\n", " var status_bar = document.createElement('span');\n", " status_bar.classList = 'mpl-message';\n", " toolbar.appendChild(status_bar);\n", " this.message = status_bar;\n", "};\n", "\n", "mpl.figure.prototype.request_resize = function (x_pixels, y_pixels) {\n", " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n", " // which will in turn request a refresh of the image.\n", " this.send_message('resize', { width: x_pixels, height: y_pixels });\n", "};\n", "\n", "mpl.figure.prototype.send_message = function (type, properties) {\n", " properties['type'] = type;\n", " properties['figure_id'] = this.id;\n", " this.ws.send(JSON.stringify(properties));\n", "};\n", "\n", "mpl.figure.prototype.send_draw_message = function () {\n", " if (!this.waiting) {\n", " this.waiting = true;\n", " this.ws.send(JSON.stringify({ type: 'draw', figure_id: this.id }));\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_save = function (fig, _msg) {\n", " var format_dropdown = fig.format_dropdown;\n", " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n", " fig.ondownload(fig, format);\n", "};\n", "\n", "mpl.figure.prototype.handle_resize = function (fig, msg) {\n", " var size = msg['size'];\n", " if (size[0] !== fig.canvas.width || size[1] !== fig.canvas.height) {\n", " fig._resize_canvas(size[0], size[1], msg['forward']);\n", " fig.send_message('refresh', {});\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_rubberband = function (fig, msg) {\n", " var x0 = msg['x0'] / fig.ratio;\n", " var y0 = (fig.canvas.height - msg['y0']) / fig.ratio;\n", " var x1 = msg['x1'] / fig.ratio;\n", " var y1 = (fig.canvas.height - msg['y1']) / fig.ratio;\n", " x0 = Math.floor(x0) + 0.5;\n", " y0 = Math.floor(y0) + 0.5;\n", " x1 = Math.floor(x1) + 0.5;\n", " y1 = Math.floor(y1) + 0.5;\n", " var min_x = Math.min(x0, x1);\n", " var min_y = Math.min(y0, y1);\n", " var width = Math.abs(x1 - x0);\n", " var height = Math.abs(y1 - y0);\n", "\n", " fig.rubberband_context.clearRect(\n", " 0,\n", " 0,\n", " fig.canvas.width / fig.ratio,\n", " fig.canvas.height / fig.ratio\n", " );\n", "\n", " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n", "};\n", "\n", "mpl.figure.prototype.handle_figure_label = function (fig, msg) {\n", " // Updates the figure title.\n", " fig.header.textContent = msg['label'];\n", "};\n", "\n", "mpl.figure.prototype.handle_cursor = function (fig, msg) {\n", " fig.canvas_div.style.cursor = msg['cursor'];\n", "};\n", "\n", "mpl.figure.prototype.handle_message = function (fig, msg) {\n", " fig.message.textContent = msg['message'];\n", "};\n", "\n", "mpl.figure.prototype.handle_draw = function (fig, _msg) {\n", " // Request the server to send over a new figure.\n", " fig.send_draw_message();\n", "};\n", "\n", "mpl.figure.prototype.handle_image_mode = function (fig, msg) {\n", " fig.image_mode = msg['mode'];\n", "};\n", "\n", "mpl.figure.prototype.handle_history_buttons = function (fig, msg) {\n", " for (var key in msg) {\n", " if (!(key in fig.buttons)) {\n", " continue;\n", " }\n", " fig.buttons[key].disabled = !msg[key];\n", " fig.buttons[key].setAttribute('aria-disabled', !msg[key]);\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_navigate_mode = function (fig, msg) {\n", " if (msg['mode'] === 'PAN') {\n", " fig.buttons['Pan'].classList.add('active');\n", " fig.buttons['Zoom'].classList.remove('active');\n", " } else if (msg['mode'] === 'ZOOM') {\n", " fig.buttons['Pan'].classList.remove('active');\n", " fig.buttons['Zoom'].classList.add('active');\n", " } else {\n", " fig.buttons['Pan'].classList.remove('active');\n", " fig.buttons['Zoom'].classList.remove('active');\n", " }\n", "};\n", "\n", "mpl.figure.prototype.updated_canvas_event = function () {\n", " // Called whenever the canvas gets updated.\n", " this.send_message('ack', {});\n", "};\n", "\n", "// A function to construct a web socket function for onmessage handling.\n", "// Called in the figure constructor.\n", "mpl.figure.prototype._make_on_message_function = function (fig) {\n", " return function socket_on_message(evt) {\n", " if (evt.data instanceof Blob) {\n", " var img = evt.data;\n", " if (img.type !== 'image/png') {\n", " /* FIXME: We get \"Resource interpreted as Image but\n", " * transferred with MIME type text/plain:\" errors on\n", " * Chrome. But how to set the MIME type? It doesn't seem\n", " * to be part of the websocket stream */\n", " img.type = 'image/png';\n", " }\n", "\n", " /* Free the memory for the previous frames */\n", " if (fig.imageObj.src) {\n", " (window.URL || window.webkitURL).revokeObjectURL(\n", " fig.imageObj.src\n", " );\n", " }\n", "\n", " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n", " img\n", " );\n", " fig.updated_canvas_event();\n", " fig.waiting = false;\n", " return;\n", " } else if (\n", " typeof evt.data === 'string' &&\n", " evt.data.slice(0, 21) === 'data:image/png;base64'\n", " ) {\n", " fig.imageObj.src = evt.data;\n", " fig.updated_canvas_event();\n", " fig.waiting = false;\n", " return;\n", " }\n", "\n", " var msg = JSON.parse(evt.data);\n", " var msg_type = msg['type'];\n", "\n", " // Call the \"handle_{type}\" callback, which takes\n", " // the figure and JSON message as its only arguments.\n", " try {\n", " var callback = fig['handle_' + msg_type];\n", " } catch (e) {\n", " console.log(\n", " \"No handler for the '\" + msg_type + \"' message type: \",\n", " msg\n", " );\n", " return;\n", " }\n", "\n", " if (callback) {\n", " try {\n", " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n", " callback(fig, msg);\n", " } catch (e) {\n", " console.log(\n", " \"Exception inside the 'handler_\" + msg_type + \"' callback:\",\n", " e,\n", " e.stack,\n", " msg\n", " );\n", " }\n", " }\n", " };\n", "};\n", "\n", "function getModifiers(event) {\n", " var mods = [];\n", " if (event.ctrlKey) {\n", " mods.push('ctrl');\n", " }\n", " if (event.altKey) {\n", " mods.push('alt');\n", " }\n", " if (event.shiftKey) {\n", " mods.push('shift');\n", " }\n", " if (event.metaKey) {\n", " mods.push('meta');\n", " }\n", " return mods;\n", "}\n", "\n", "/*\n", " * return a copy of an object with only non-object keys\n", " * we need this to avoid circular references\n", " * https://stackoverflow.com/a/24161582/3208463\n", " */\n", "function simpleKeys(original) {\n", " return Object.keys(original).reduce(function (obj, key) {\n", " if (typeof original[key] !== 'object') {\n", " obj[key] = original[key];\n", " }\n", " return obj;\n", " }, {});\n", "}\n", "\n", "mpl.figure.prototype.mouse_event = function (event, name) {\n", " if (name === 'button_press') {\n", " this.canvas.focus();\n", " this.canvas_div.focus();\n", " }\n", "\n", " // from https://stackoverflow.com/q/1114465\n", " var boundingRect = this.canvas.getBoundingClientRect();\n", " var x = (event.clientX - boundingRect.left) * this.ratio;\n", " var y = (event.clientY - boundingRect.top) * this.ratio;\n", "\n", " this.send_message(name, {\n", " x: x,\n", " y: y,\n", " button: event.button,\n", " step: event.step,\n", " buttons: event.buttons,\n", " modifiers: getModifiers(event),\n", " guiEvent: simpleKeys(event),\n", " });\n", "\n", " return false;\n", "};\n", "\n", "mpl.figure.prototype._key_event_extra = function (_event, _name) {\n", " // Handle any extra behaviour associated with a key event\n", "};\n", "\n", "mpl.figure.prototype.key_event = function (event, name) {\n", " // Prevent repeat events\n", " if (name === 'key_press') {\n", " if (event.key === this._key) {\n", " return;\n", " } else {\n", " this._key = event.key;\n", " }\n", " }\n", " if (name === 'key_release') {\n", " this._key = null;\n", " }\n", "\n", " var value = '';\n", " if (event.ctrlKey && event.key !== 'Control') {\n", " value += 'ctrl+';\n", " }\n", " else if (event.altKey && event.key !== 'Alt') {\n", " value += 'alt+';\n", " }\n", " else if (event.shiftKey && event.key !== 'Shift') {\n", " value += 'shift+';\n", " }\n", "\n", " value += 'k' + event.key;\n", "\n", " this._key_event_extra(event, name);\n", "\n", " this.send_message(name, { key: value, guiEvent: simpleKeys(event) });\n", " return false;\n", "};\n", "\n", "mpl.figure.prototype.toolbar_button_onclick = function (name) {\n", " if (name === 'download') {\n", " this.handle_save(this, null);\n", " } else {\n", " this.send_message('toolbar_button', { name: name });\n", " }\n", "};\n", "\n", "mpl.figure.prototype.toolbar_button_onmouseover = function (tooltip) {\n", " this.message.textContent = tooltip;\n", "};\n", "\n", "///////////////// REMAINING CONTENT GENERATED BY embed_js.py /////////////////\n", "// prettier-ignore\n", "var _JSXTOOLS_RESIZE_OBSERVER=function(A){var t,i=new WeakMap,n=new WeakMap,a=new WeakMap,r=new WeakMap,o=new Set;function s(e){if(!(this instanceof s))throw new TypeError(\"Constructor requires 'new' operator\");i.set(this,e)}function h(){throw new TypeError(\"Function is not a constructor\")}function c(e,t,i,n){e=0 in arguments?Number(arguments[0]):0,t=1 in arguments?Number(arguments[1]):0,i=2 in arguments?Number(arguments[2]):0,n=3 in arguments?Number(arguments[3]):0,this.right=(this.x=this.left=e)+(this.width=i),this.bottom=(this.y=this.top=t)+(this.height=n),Object.freeze(this)}function d(){t=requestAnimationFrame(d);var s=new WeakMap,p=new Set;o.forEach((function(t){r.get(t).forEach((function(i){var r=t instanceof window.SVGElement,o=a.get(t),d=r?0:parseFloat(o.paddingTop),f=r?0:parseFloat(o.paddingRight),l=r?0:parseFloat(o.paddingBottom),u=r?0:parseFloat(o.paddingLeft),g=r?0:parseFloat(o.borderTopWidth),m=r?0:parseFloat(o.borderRightWidth),w=r?0:parseFloat(o.borderBottomWidth),b=u+f,F=d+l,v=(r?0:parseFloat(o.borderLeftWidth))+m,W=g+w,y=r?0:t.offsetHeight-W-t.clientHeight,E=r?0:t.offsetWidth-v-t.clientWidth,R=b+v,z=F+W,M=r?t.width:parseFloat(o.width)-R-E,O=r?t.height:parseFloat(o.height)-z-y;if(n.has(t)){var k=n.get(t);if(k[0]===M&&k[1]===O)return}n.set(t,[M,O]);var S=Object.create(h.prototype);S.target=t,S.contentRect=new c(u,d,M,O),s.has(i)||(s.set(i,[]),p.add(i)),s.get(i).push(S)}))})),p.forEach((function(e){i.get(e).call(e,s.get(e),e)}))}return s.prototype.observe=function(i){if(i instanceof window.Element){r.has(i)||(r.set(i,new Set),o.add(i),a.set(i,window.getComputedStyle(i)));var n=r.get(i);n.has(this)||n.add(this),cancelAnimationFrame(t),t=requestAnimationFrame(d)}},s.prototype.unobserve=function(i){if(i instanceof window.Element&&r.has(i)){var n=r.get(i);n.has(this)&&(n.delete(this),n.size||(r.delete(i),o.delete(i))),n.size||r.delete(i),o.size||cancelAnimationFrame(t)}},A.DOMRectReadOnly=c,A.ResizeObserver=s,A.ResizeObserverEntry=h,A}; // eslint-disable-line\n", "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Left button pans, Right button zooms\\nx/y fixes axis, CTRL fixes aspect\", \"fa fa-arrows\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\\nx/y fixes axis\", \"fa fa-square-o\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o\", \"download\"]];\n", "\n", "mpl.extensions = [\"eps\", \"jpeg\", \"pgf\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\", \"tif\", \"webp\"];\n", "\n", "mpl.default_extension = \"png\";/* global mpl */\n", "\n", "var comm_websocket_adapter = function (comm) {\n", " // Create a \"websocket\"-like object which calls the given IPython comm\n", " // object with the appropriate methods. Currently this is a non binary\n", " // socket, so there is still some room for performance tuning.\n", " var ws = {};\n", "\n", " ws.binaryType = comm.kernel.ws.binaryType;\n", " ws.readyState = comm.kernel.ws.readyState;\n", " function updateReadyState(_event) {\n", " if (comm.kernel.ws) {\n", " ws.readyState = comm.kernel.ws.readyState;\n", " } else {\n", " ws.readyState = 3; // Closed state.\n", " }\n", " }\n", " comm.kernel.ws.addEventListener('open', updateReadyState);\n", " comm.kernel.ws.addEventListener('close', updateReadyState);\n", " comm.kernel.ws.addEventListener('error', updateReadyState);\n", "\n", " ws.close = function () {\n", " comm.close();\n", " };\n", " ws.send = function (m) {\n", " //console.log('sending', m);\n", " comm.send(m);\n", " };\n", " // Register the callback with on_msg.\n", " comm.on_msg(function (msg) {\n", " //console.log('receiving', msg['content']['data'], msg);\n", " var data = msg['content']['data'];\n", " if (data['blob'] !== undefined) {\n", " data = {\n", " data: new Blob(msg['buffers'], { type: data['blob'] }),\n", " };\n", " }\n", " // Pass the mpl event to the overridden (by mpl) onmessage function.\n", " ws.onmessage(data);\n", " });\n", " return ws;\n", "};\n", "\n", "mpl.mpl_figure_comm = function (comm, msg) {\n", " // This is the function which gets called when the mpl process\n", " // starts-up an IPython Comm through the \"matplotlib\" channel.\n", "\n", " var id = msg.content.data.id;\n", " // Get hold of the div created by the display call when the Comm\n", " // socket was opened in Python.\n", " var element = document.getElementById(id);\n", " var ws_proxy = comm_websocket_adapter(comm);\n", "\n", " function ondownload(figure, _format) {\n", " window.open(figure.canvas.toDataURL());\n", " }\n", "\n", " var fig = new mpl.figure(id, ws_proxy, ondownload, element);\n", "\n", " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n", " // web socket which is closed, not our websocket->open comm proxy.\n", " ws_proxy.onopen();\n", "\n", " fig.parent_element = element;\n", " fig.cell_info = mpl.find_output_cell(\"
\");\n", " if (!fig.cell_info) {\n", " console.error('Failed to find cell for figure', id, fig);\n", " return;\n", " }\n", " fig.cell_info[0].output_area.element.on(\n", " 'cleared',\n", " { fig: fig },\n", " fig._remove_fig_handler\n", " );\n", "};\n", "\n", "mpl.figure.prototype.handle_close = function (fig, msg) {\n", " var width = fig.canvas.width / fig.ratio;\n", " fig.cell_info[0].output_area.element.off(\n", " 'cleared',\n", " fig._remove_fig_handler\n", " );\n", " fig.resizeObserverInstance.unobserve(fig.canvas_div);\n", "\n", " // Update the output cell to use the data from the current canvas.\n", " fig.push_to_output();\n", " var dataURL = fig.canvas.toDataURL();\n", " // Re-enable the keyboard manager in IPython - without this line, in FF,\n", " // the notebook keyboard shortcuts fail.\n", " IPython.keyboard_manager.enable();\n", " fig.parent_element.innerHTML =\n", " '';\n", " fig.close_ws(fig, msg);\n", "};\n", "\n", "mpl.figure.prototype.close_ws = function (fig, msg) {\n", " fig.send_message('closing', msg);\n", " // fig.ws.close()\n", "};\n", "\n", "mpl.figure.prototype.push_to_output = function (_remove_interactive) {\n", " // Turn the data on the canvas into data in the output cell.\n", " var width = this.canvas.width / this.ratio;\n", " var dataURL = this.canvas.toDataURL();\n", " this.cell_info[1]['text/html'] =\n", " '';\n", "};\n", "\n", "mpl.figure.prototype.updated_canvas_event = function () {\n", " // Tell IPython that the notebook contents must change.\n", " IPython.notebook.set_dirty(true);\n", " this.send_message('ack', {});\n", " var fig = this;\n", " // Wait a second, then push the new image to the DOM so\n", " // that it is saved nicely (might be nice to debounce this).\n", " setTimeout(function () {\n", " fig.push_to_output();\n", " }, 1000);\n", "};\n", "\n", "mpl.figure.prototype._init_toolbar = function () {\n", " var fig = this;\n", "\n", " var toolbar = document.createElement('div');\n", " toolbar.classList = 'btn-toolbar';\n", " this.root.appendChild(toolbar);\n", "\n", " function on_click_closure(name) {\n", " return function (_event) {\n", " return fig.toolbar_button_onclick(name);\n", " };\n", " }\n", "\n", " function on_mouseover_closure(tooltip) {\n", " return function (event) {\n", " if (!event.currentTarget.disabled) {\n", " return fig.toolbar_button_onmouseover(tooltip);\n", " }\n", " };\n", " }\n", "\n", " fig.buttons = {};\n", " var buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'btn-group';\n", " var button;\n", " for (var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " /* Instead of a spacer, we start a new button group. */\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", " buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'btn-group';\n", " continue;\n", " }\n", "\n", " button = fig.buttons[name] = document.createElement('button');\n", " button.classList = 'btn btn-default';\n", " button.href = '#';\n", " button.title = name;\n", " button.innerHTML = '';\n", " button.addEventListener('click', on_click_closure(method_name));\n", " button.addEventListener('mouseover', on_mouseover_closure(tooltip));\n", " buttonGroup.appendChild(button);\n", " }\n", "\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = document.createElement('span');\n", " status_bar.classList = 'mpl-message pull-right';\n", " toolbar.appendChild(status_bar);\n", " this.message = status_bar;\n", "\n", " // Add the close button to the window.\n", " var buttongrp = document.createElement('div');\n", " buttongrp.classList = 'btn-group inline pull-right';\n", " button = document.createElement('button');\n", " button.classList = 'btn btn-mini btn-primary';\n", " button.href = '#';\n", " button.title = 'Stop Interaction';\n", " button.innerHTML = '';\n", " button.addEventListener('click', function (_evt) {\n", " fig.handle_close(fig, {});\n", " });\n", " button.addEventListener(\n", " 'mouseover',\n", " on_mouseover_closure('Stop Interaction')\n", " );\n", " buttongrp.appendChild(button);\n", " var titlebar = this.root.querySelector('.ui-dialog-titlebar');\n", " titlebar.insertBefore(buttongrp, titlebar.firstChild);\n", "};\n", "\n", "mpl.figure.prototype._remove_fig_handler = function (event) {\n", " var fig = event.data.fig;\n", " if (event.target !== this) {\n", " // Ignore bubbled events from children.\n", " return;\n", " }\n", " fig.close_ws(fig, {});\n", "};\n", "\n", "mpl.figure.prototype._root_extra_style = function (el) {\n", " el.style.boxSizing = 'content-box'; // override notebook setting of border-box.\n", "};\n", "\n", "mpl.figure.prototype._canvas_extra_style = function (el) {\n", " // this is important to make the div 'focusable\n", " el.setAttribute('tabindex', 0);\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " } else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "};\n", "\n", "mpl.figure.prototype._key_event_extra = function (event, _name) {\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which === 13) {\n", " this.canvas_div.blur();\n", " // select the cell after this one\n", " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n", " IPython.notebook.select(index + 1);\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_save = function (fig, _msg) {\n", " fig.ondownload(fig, null);\n", "};\n", "\n", "mpl.find_output_cell = function (html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i = 0; i < ncells; i++) {\n", " var cell = cells[i];\n", " if (cell.cell_type === 'code') {\n", " for (var j = 0; j < cell.output_area.outputs.length; j++) {\n", " var data = cell.output_area.outputs[j];\n", " if (data.data) {\n", " // IPython >= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] === html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "};\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel !== null) {\n", " IPython.notebook.kernel.comm_manager.register_target(\n", " 'matplotlib',\n", " mpl.mpl_figure_comm\n", " );\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import matplotlib.pyplot as plt\n", "\n", "n.PlotShape(False).plot(plt)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also make an interactive shape plot in a separate window using NEURON's built-in graphics, via:" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.423743Z", "iopub.status.busy": "2025-08-18T03:35:41.423587Z", "iopub.status.idle": "2025-08-18T03:35:41.437416Z", "shell.execute_reply": "2025-08-18T03:35:41.437067Z" } }, "outputs": [], "source": [ "# enable NEURON's graphics\n", "from neuron import gui\n", "\n", "# here: True means show using NEURON's GUI; False means do not do so, at least not at first\n", "ps = n.PlotShape(True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Either way, you will notice that this looks like a line instead of a ball and stick. Why? It's because NEURON by default does not display diameters. This behavior is useful when we need to see the structure of small dendrites, and in NEURON 7.7, it's the only supported option for Jupyter notebooks with `n.PlotShape`... but when using NEURON's built-in graphics, we can use the show method to show diamters via:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Why does this look like a line instead of a ball and stick? It's because NEURON by default does not display diameters. This behavior is useful when we need to see the structure of small dendrites, but for now, let's show the diameters:" ] }, { "cell_type": "code", "execution_count": 29, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.441034Z", "iopub.status.busy": "2025-08-18T03:35:41.440893Z", "iopub.status.idle": "2025-08-18T03:35:41.446509Z", "shell.execute_reply": "2025-08-18T03:35:41.445057Z" } }, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ps = n.PlotShape(True)\n", "ps.show(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In Jupyter, we can rotate images by clicking and dragging; we can zoom by right-clicking and dragging. When using NEURON's built-in graphics which appear in separate windows, right-click and select \"3D Rotate\", then drag to rotate. For this simple morphology, there is not anything else more to see." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(Note: If you want to build your own visualization tool using matplotlib, mayavi, etc, ensure 3D points exist with `n.define_shape()`, then loop over all the sections with `n.allsec()` and read the morphology using `sec.x3d(i)` etc and `sec.diam3d(i)` for `i` in 0, .., `sec.n3d() - 1`. Less efficiently, the (x, y, z; diam) values for a whole section may be read by `sec.psection()['morphology']['pt3d']`.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Specify biophysics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Our cell needs biophysical mechanisms in the membrane. We start by setting axial resistance and membrane capacitance. (Recall: NEURON's default axial resistance is appropriate for squid but low for mammalian models.)" ] }, { "cell_type": "code", "execution_count": 30, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.449779Z", "iopub.status.busy": "2025-08-18T03:35:41.448143Z", "iopub.status.idle": "2025-08-18T03:35:41.457479Z", "shell.execute_reply": "2025-08-18T03:35:41.457090Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree() # <-- NEW\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", " for sec in self.all: # <-- NEW\n", " sec.Ra = 100 # Axial resistance in Ohm * cm # <-- NEW\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2 # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We've added a new variable `self.all` which is a list of all the sections in the cell. The wholetree method of a Section returns a list of all the sections it is attached to -- i.e. the corresponding neuron. This will help us iterate over them to -- in this case -- specify axial resistance and membrane capacitance, but can also be used for any other biophysics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is getting a little complicated. Let's split `__init__` into several functions:" ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.460598Z", "iopub.status.busy": "2025-08-18T03:35:41.460448Z", "iopub.status.idle": "2025-08-18T03:35:41.470074Z", "shell.execute_reply": "2025-08-18T03:35:41.469414Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.all = [self.soma, self.dend]\n", " self.dend.connect(self.soma)\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It may not seem like we gained a lot by doing this, but it makes the code a little more self-documenting (e.g. we can see at a glance which parts have to do with defining the morphology) and it divides it into pieces that could be reused in other cells." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll put Hodgkin-Huxley (`hh`) kinetics in the soma and specify some parameters:" ] }, { "cell_type": "code", "execution_count": 32, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.473921Z", "iopub.status.busy": "2025-08-18T03:35:41.473773Z", "iopub.status.idle": "2025-08-18T03:35:41.522786Z", "shell.execute_reply": "2025-08-18T03:35:41.522404Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree()\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", " self.soma.insert(n.hh) # <-- NEW\n", " for seg in self.soma: # <-- NEW\n", " seg.hh.gnabar = (\n", " 0.12 # Sodium conductance in S/cm2 # <-- NEW\n", " )\n", " seg.hh.gkbar = (\n", " 0.036 # Potassium conductance in S/cm2 # <-- NEW\n", " )\n", " seg.hh.gl = 0.0003 # Leak conductance in S/cm2 # <-- NEW\n", " seg.hh.el = (\n", " -54.3 * mV\n", " ) # Reversal potential # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(Note: here we loop over all segments in the soma, even though we only defined one segment. This gives us more general code, that will still work if we change the number of segments later. Always write your model implementations to be independent of the discretization.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, let's insert a passive (leak) current in the dendrite:" ] }, { "cell_type": "code", "execution_count": 33, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.525949Z", "iopub.status.busy": "2025-08-18T03:35:41.525802Z", "iopub.status.idle": "2025-08-18T03:35:41.534284Z", "shell.execute_reply": "2025-08-18T03:35:41.533644Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = n.Section(\"soma\", self)\n", " self.dend = n.Section(\"dend\", self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree()\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", " self.soma.insert(n.hh)\n", " for seg in self.soma:\n", " seg.hh.gnabar = 0.12 # Sodium conductance in S/cm2\n", " seg.hh.gkbar = 0.036 # Potassium conductance in S/cm2\n", " seg.hh.gl = 0.0003 # Leak conductance in S/cm2\n", " seg.hh.el = -54.3 * mV # Reversal potential\n", " # Insert passive current in the dendrite # <-- NEW\n", " self.dend.insert(n.pas) # <-- NEW\n", " for seg in self.dend: # <-- NEW\n", " seg.pas.g = 0.001 # Passive conductance in S/cm2 # <-- NEW\n", " seg.pas.e = -65 * mV # Leak reversal potential # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we weren't sure about the units for a given mechanism’s parameter, use units(). Pass in a string with the paramater name, an underscore, and then the mechanism name. e.g." ] }, { "cell_type": "code", "execution_count": 34, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.537685Z", "iopub.status.busy": "2025-08-18T03:35:41.537539Z", "iopub.status.idle": "2025-08-18T03:35:41.540481Z", "shell.execute_reply": "2025-08-18T03:35:41.540108Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "S/cm2\n" ] } ], "source": [ "print(n.units(\"gnabar_hh\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can use `psection` to see what is present where:" ] }, { "cell_type": "code", "execution_count": 35, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.541877Z", "iopub.status.busy": "2025-08-18T03:35:41.541742Z", "iopub.status.idle": "2025-08-18T03:35:41.550546Z", "shell.execute_reply": "2025-08-18T03:35:41.550156Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "BallAndStick[0].soma: hh\n", "BallAndStick[0].dend: pas\n" ] } ], "source": [ "for sec in n.allsec():\n", " print(\"%s: %s\" % (sec, \", \".join(sec.psection()[\"density_mechs\"].keys())))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(A quick aside about `psection`: it's great for quickly getting information when interactively exploring a model because it provides a lot of data in one pass; for the same reason, however, other solutions that only extract specific desired information are more efficient for automatic explorations.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Instrumentation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We have now created our neuron. Let's stimulate it and visualize its dynamics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Stimulation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll inject a current pulse into the distal (1) end of the dendrite starting 5 ms after the simulation starts, with a duration of 1 ms, and an amplitude of 0.1 nA. First, let's define and position the current clamp object:" ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.552447Z", "iopub.status.busy": "2025-08-18T03:35:41.552240Z", "iopub.status.idle": "2025-08-18T03:35:41.555303Z", "shell.execute_reply": "2025-08-18T03:35:41.554942Z" } }, "outputs": [], "source": [ "stim = n.IClamp(my_cell.dend(1))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we want, we can check the segment the current clamp is inserted into:" ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.557729Z", "iopub.status.busy": "2025-08-18T03:35:41.557585Z", "iopub.status.idle": "2025-08-18T03:35:41.563309Z", "shell.execute_reply": "2025-08-18T03:35:41.562941Z" } }, "outputs": [ { "data": { "text/plain": [ "BallAndStick[0].dend(1)" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "stim.get_segment()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Recall that if we forget what the names of the attributes are, we can check the `dir`. Here we do that and ignore Python-created attributes:" ] }, { "cell_type": "code", "execution_count": 38, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.564950Z", "iopub.status.busy": "2025-08-18T03:35:41.564812Z", "iopub.status.idle": "2025-08-18T03:35:41.570537Z", "shell.execute_reply": "2025-08-18T03:35:41.570150Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "amp, baseattr, delay, dur, get_loc, get_segment, has_loc, hname, hocobjptr, i, loc, same\n" ] } ], "source": [ "print(\", \".join(item for item in dir(stim) if not item.startswith(\"__\")))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The parameters we need to set for a current clamp are `delay` (measured in ms), `dur` (measured in ms), and `amp` (in nA):" ] }, { "cell_type": "code", "execution_count": 39, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.573805Z", "iopub.status.busy": "2025-08-18T03:35:41.573665Z", "iopub.status.idle": "2025-08-18T03:35:41.577014Z", "shell.execute_reply": "2025-08-18T03:35:41.576412Z" } }, "outputs": [], "source": [ "stim.delay = 5\n", "stim.dur = 1\n", "stim.amp = 0.1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Recording" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll start out recording the membrane potential at the center of the soma and the time in two NEURON Vectors:" ] }, { "cell_type": "code", "execution_count": 40, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.580678Z", "iopub.status.busy": "2025-08-18T03:35:41.580536Z", "iopub.status.idle": "2025-08-18T03:35:41.583587Z", "shell.execute_reply": "2025-08-18T03:35:41.583242Z" } }, "outputs": [], "source": [ "soma_v = n.Vector().record(my_cell.soma(0.5)._ref_v)\n", "t = n.Vector().record(n._ref_t)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Run the simulation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We initialize membrane potential everywhere to -65 mV:" ] }, { "cell_type": "code", "execution_count": 41, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.587011Z", "iopub.status.busy": "2025-08-18T03:35:41.586863Z", "iopub.status.idle": "2025-08-18T03:35:41.593164Z", "shell.execute_reply": "2025-08-18T03:35:41.592817Z" } }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.finitialize(-65 * mV)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we run until time 25 ms:" ] }, { "cell_type": "code", "execution_count": 42, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.596206Z", "iopub.status.busy": "2025-08-18T03:35:41.596065Z", "iopub.status.idle": "2025-08-18T03:35:41.607899Z", "shell.execute_reply": "2025-08-18T03:35:41.607490Z" } }, "outputs": [ { "data": { "text/plain": [ "0.0" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n.continuerun(25 * ms)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Plot the results" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As in the scripting neuron basics part of the tutorial, we initialize `bokeh` graphics:" ] }, { "cell_type": "code", "execution_count": 43, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:41.609476Z", "iopub.status.busy": "2025-08-18T03:35:41.609316Z", "iopub.status.idle": "2025-08-18T03:35:42.176952Z", "shell.execute_reply": "2025-08-18T03:35:42.176588Z" } }, "outputs": [ { "data": { "text/html": [ " \n", "
\n", " \n", " Loading BokehJS ...\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "'use strict';\n", "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", "const JS_MIME_TYPE = 'application/javascript';\n", " const HTML_MIME_TYPE = 'text/html';\n", " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " const CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " const script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " function drop(id) {\n", " const view = Bokeh.index.get_by_id(id)\n", " if (view != null) {\n", " view.model.document.clear()\n", " Bokeh.index.delete(view)\n", " }\n", " }\n", "\n", " const cell = handle.cell;\n", "\n", " const id = cell.output_area._bokeh_element_id;\n", " const server_id = cell.output_area._bokeh_server_id;\n", "\n", " // Clean up Bokeh references\n", " if (id != null) {\n", " drop(id)\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd_clean, {\n", " iopub: {\n", " output: function(msg) {\n", " const id = msg.content.text.trim()\n", " drop(id)\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd_destroy);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " const output_area = handle.output_area;\n", " const output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " const bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " const script_attrs = bk_div.children[0].attributes;\n", " for (let i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " const toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " const events = require('base/js/events');\n", " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " const NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"
    \\n\"+\n", " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", " \"
\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded(error = null) {\n", " const el = document.getElementById(\"d68b6bc6-380d-4d8d-8009-a89649737eea\");\n", " if (el != null) {\n", " const html = (() => {\n", " if (typeof root.Bokeh === \"undefined\") {\n", " if (error == null) {\n", " return \"BokehJS is loading ...\";\n", " } else {\n", " return \"BokehJS failed to load.\";\n", " }\n", " } else {\n", " const prefix = `BokehJS ${root.Bokeh.version}`;\n", " if (error == null) {\n", " return `${prefix} successfully loaded.`;\n", " } else {\n", " return `${prefix} encountered errors while loading and may not function as expected.`;\n", " }\n", " }\n", " })();\n", " el.innerHTML = html;\n", "\n", " if (error != null) {\n", " const wrapper = document.createElement(\"div\");\n", " wrapper.style.overflow = \"auto\";\n", " wrapper.style.height = \"5em\";\n", " wrapper.style.resize = \"vertical\";\n", " const content = document.createElement(\"div\");\n", " content.style.fontFamily = \"monospace\";\n", " content.style.whiteSpace = \"pre-wrap\";\n", " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", " content.textContent = error.stack ?? error.toString();\n", " wrapper.append(content);\n", " el.append(wrapper);\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(() => display_loaded(error), 100);\n", " }\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.7.2.min.js\"];\n", " const css_urls = [];\n", "\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {\n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " if (root.Bokeh !== undefined || force === true) {\n", " try {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", "\n", " } catch (error) {display_loaded(error);throw error;\n", " }if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " const cell = $(document.getElementById(\"d68b6bc6-380d-4d8d-8009-a89649737eea\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(\"d68b6bc6-380d-4d8d-8009-a89649737eea\");\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.7.2.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {display_loaded(error);throw error;\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"d68b6bc6-380d-4d8d-8009-a89649737eea\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from bokeh.io import output_notebook\n", "import bokeh.plotting as plt\n", "\n", "output_notebook()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(If you prefer to use `matplotlib` graphics, you can adapt the code below using the examples in the scripting neuron basics part of the tutorial.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we plot membrane potential vs time:" ] }, { "cell_type": "code", "execution_count": 44, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:42.179069Z", "iopub.status.busy": "2025-08-18T03:35:42.178753Z", "iopub.status.idle": "2025-08-18T03:35:42.904549Z", "shell.execute_reply": "2025-08-18T03:35:42.904129Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"fe08db2a-ec72-4745-a697-c5386745fb53\":{\"version\":\"3.7.2\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1001\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1002\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1003\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1010\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1011\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1008\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1041\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1035\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1036\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1037\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.96341711337931,-64.93686623971688,-64.89905971004588,-64.85118360647053,-64.79431185784493,-64.72941728833544,-64.6573814615572,-64.57900345998897,-64.49500772686594,-64.40605108411523,-64.31272902634717,-64.21558137815926,-64.1150973904233,-64.0117203409534,-63.90585169600037,-63.79784333648165,-63.68801212808571,-63.57664449205611,-63.46399908084122,-63.35030922596691,-63.23578517914847,-63.12061616515492,-63.00497226284657,-62.889006129045484,-62.77283808564607,-62.656574821107384,-62.54031132644809,-62.4241319238358,-62.308111221497995,-62.19231499844975,-62.076801022658124,-61.96161980631881,-61.846808301053876,-61.732383950993444,-61.61836062701339,-61.50474893921968,-61.39155653629769,-61.278788389796375,-61.16644706216848,-61.05453295796576,-60.957046527221934,-60.87252643564771,-60.799652742555516,-60.737245231461884,-60.68424946273925,-60.63972416066183,-60.60282977256042,-60.572818074536016,-60.54902272338339,-60.53085067169043,-60.517774375027194,-60.50932472847543,-60.50508467569532,-60.50468343812862,-60.50779131537546,-60.51411501064758,-60.52339343774728,-60.535393968409615,-60.549909081167584,-60.566753375203795,-60.58576091495426,-60.606782873529276,-60.62968544530019,-60.654348000250735,-60.68066145488933,-60.70852683664416,-60.737854020700986,-60.76856062018066,-60.800571012379265,-60.833815485502626,-60.868229491914484,-60.90375299538365,-60.940329901160744,-60.97790755894345,-61.01643632990474,-61.05586432464863,-61.09613584914286,-61.13719859509241,-61.179003258178476,-61.22150320413142,-61.26465417691856,-61.30841404398521,-61.352742574073744,-61.39760124366832,-61.44295306857754,-61.488762457579945,-61.53499508542285,-61.58161778278832,-61.62859844112609,-61.67590593050513,-61.723510028858044,-61.771381361187785,-61.819491347478525,-61.86781215820363,-61.916316676456354,-61.96497846584579,-62.01377174340252,-62.06266796237516,-62.111631152370094,-62.16062781686963,-62.20962668296028,-62.25859848303877,-62.30751576435758,-62.35635272280106,-62.405085057743776,-62.45368984524447,-62.50214542717903,-62.5504313142215,-62.598528100848654,-62.64641739077683,-62.694081731442836,-62.74150455631862,-62.78867013400477,-62.83556352318349,-62.88217053263055,-62.92847768558948,-62.974472187901824,-63.020141899366884,-63.06547143935914,-63.11044190034257,-63.15503642175439,-63.19923996947456,-63.24303914280592,-63.28642200535503,-63.32937793668513,-63.37189750202827,-63.41397233770298,-63.45559505019499,-63.496759127127845,-63.5374588585838,-63.577689267437776,-63.61744604754303,-63.65672550875951,-63.69552452794858,-63.73384050517254,-63.771671324437634,-63.809015318405926,-63.84587123657691,-63.88223821650553,-63.91811575768001,-63.95350369773281,-63.98840219070073,-64.02281168708798,-64.05672962089325,-64.09015266233136,-64.12307855946665,-64.1555060046764,-64.18743451784394,-64.21886434412069,-64.24979636438181,-64.28023201674627,-64.31017322774561,-64.33962235191031,-64.36858211870289,-64.39705558586571,-64.42504609837215,-64.45255725227445,-64.4795928628327,-64.50615693638858,-64.532253645516,-64.55788730704134,-64.58306236257762,-64.60778336126228,-64.63205494442842,-64.655881831973,-64.67926881021626,-64.70222072107204,-64.72474245237231,-64.74683892920831,-64.76851510616844,-64.78977596036829,-64.81062648518089,-64.83107168458714,-64.85111656807635,-64.87076614603531,-64.89002542557225,-64.90889940672851,-64.92739307903656,-64.9455114183881,-64.96325938418032,-64.9806419167125,-64.99766393480796,-65.01433033363998,-65.03064446296018,-65.04660968755462,-65.06222963196552,-65.07750813750562,-65.09244922486435,-65.10705706159423,-65.12133593385656,-65.13529022188467,-65.14892437869212,-65.1622429116128,-65.17525036631294,-65.18795131295995,-65.20035033427332,-65.21245201521747,-65.22426093412665,-65.2357816550788,-65.24701872135805,-65.2579766498661,-65.26865992636026,-65.27907300141146,-65.28922028698894,-65.29910615359015,-65.30873492784498,-65.31811089053203,-65.3272382749528,-65.3361212656167,-65.34476399719526,-65.35317055370994,-65.36134496792201,-65.36929122089697,-65.37701324172008,-65.38451490734181,-65.39180004253542,-65.39887241995085,-65.40573576025115,-65.41239373231964,-65.41884995352746,-65.4251079900524,-65.43117135724138,-65.43704352000964,-65.44272789327084,-65.44822784239311,-65.45354668367631,-65.45868768484712,-65.46365406556826,-65.46844899795934,-65.47307560712657,-65.47753697169951,-65.48183612437282,-65.48597605245156,-65.48995969839862,-65.4937899603832,-65.49746969282931,-65.5010017069635,-65.50438877136096,-65.50763361248954,-65.51073891525112,-65.51370732351984,-65.51654144067682,-65.51924383014119,-65.52181701589697,-65.52426348301573,-65.52658567817475,-65.52878601017066,-65.53086685042821,-65.53283053350441,-65.53467935758756,-65.5364155849915,-65.5380414426447,-65.53955912257437,-65.5409707823855,-65.54227854573476,-65.54348450279939,-65.54459071074085,-65.54559919416354,-65.54651194556827,-65.54733092580075,-65.54805806449497,-65.54869526051155,-65.54924438237109,-65.54970726868241,-65.55008572856596,-65.55038154207212,-65.55059646059469,-65.5507322072794,-65.55079047742757,-65.55077293889492,-65.55068123248559,-65.55051697234131,-65.55028174632588,-65.54997711640489,-65.54960461902078,-65.54916576546319,-65.54866204223472,-65.54809491141215,-65.54746581100297,-65.5467761552975,-65.5460273352165,-65.54522071865429,-65.54435765081752,-65.54343945455943,-65.54246743070996,-65.54144285840137,-65.54036699538966,-65.5392410783718,-65.5380663232987,-65.536843925684,-65.53557506090883,-65.53426088452241,-65.53290253253864,-65.53150112172865,-65.53005774990942,-65.52857349622843,-65.5270494214445,-65.52548656820467,-65.5238859613173,-65.52224860802151,-65.52057549825268,-65.51886760490447,-65.51712588408702,-65.51535127538165,-65.51354470209188,-65.51170707149102,-65.50983927506621,-65.50794218875903,-65.5060166732026,-65.50406357395545,-65.50208372173196,-65.50007793262954,-65.49804700835246,-65.49599173643263,-65.49391289044704,-65.49181123023213,-65.48968750209507,-65.48754243902192,-65.48537676088283,-65.48319117463416,-65.48098637451777,-65.4787630422573,-65.4765218472516,-65.47426344676536,-65.47198848611684,-65.469697598863,-65.46739140698172,-65.46507052105146,-65.4627355404282,-65.46038705341978,-65.45802563745767,-65.45565185926613,-65.45326627502892,-65.45086943055357,-65.448461861433,-65.44604409320503,-65.44361664150922,-65.44118001224156,-65.43873470170678,-65.43628119676835,-65.43381997499631,-65.43135150481281,-65.42887624563548,-65.4263946480187,-65.42390715379268,-65.4214141962005,-65.41891620003304,-65.4164135817619,-65.41390674967039,-65.41139610398238,-65.4088820369894,-65.40636493317567,-65.40384516934131,-65.40132311472374,-65.39879913111712,-65.3962735729901,-65.39374678760174,-65.3912191151157,-65.38869088871267,-65.38616243470116,-65.38363407262655,-65.38110611537853,-65.37857886929693,-65.37605263427588,-65.3735277038665,-65.37100436537794,-65.36848289997695,-65.36596358278594,-65.36344668297949,-65.36093246387954,-65.358421183049,-65.35591309238403,-65.35340843820488,-65.35090746134539,-65.34841039724112,-65.34591747601617,-65.34342892256865,-65.3409449566549,-65.3384657929724,-65.3359916412415,-65.33352270628583,-65.33105918811152,-65.32860128198531,-65.32614917851136,-65.32370306370694,-65.3212631190771,-65.31882952168799,-65.31640244423929,-65.31398205513543,-65.31156851855577,-65.30916199452375,-65.30676263897493,-65.30437060382413,-65.30198603703141,-65.2996090826672,-65.29723988097635,-65.29487856844129,-65.29252527784422,-65.29018013832832,-65.28784327545814,-65.285514811279,-65.28319486437555,-65.28088354992944,-65.27858097977614,-65.27628726246085,-65.27400250329372,-65.27172680440403,-65.26946026479378,-65.26720298039035,-65.26495504409841,-65.26271654585103,-65.26048757266013,-65.258268208666,-65.25605853518627,-65.25385863076407,-65.2516685712154,-65.24948842967596,-65.24731827664715,-65.2451581800414,-65.24300820522694,-65.24086841507179,-65.23873886998707,-65.23661962796986,-65.23451074464519,-65.23241227330756,-65.23032426496181,-65.22824676836335,-65.22617983005784,-65.22412349442027,-65.22207780369344,-65.22004279802589,-65.21801851550927,-65.21600499221519,-65.21400226223143,-65.21201035769775,-65.21002930884103,-65.20805914401001,-65.20609988970945,-65.20415157063381,-65.20221420970043,-65.2002878280822,-65.19837244523978,-65.19646807895337,-65.1945747453539,-65.19269245895391,-65.19082123267783,-65.18896107789195,-65.18711200443381,-65.18527402064132,-65.18344713338125,-65.18163134807752,-65.17982666873887,-65.17803309798627,-65.17625063707987,-65.17447928594552,-65.17271904320096,-65.17096990618155,-65.16923187096576,-65.16750493240009,-65.16578908412377,-65.16408431859305,-65.16239062710513,-65.16070799982168,-65.15903642579215,-65.1573758929766,-65.15572638826825,-65.1540878975157,-65.15246040554479,-65.15084389618019,-65.14923835226662,-65.14764375568977,-65.1460600873969,-65.14448732741717,-65.14292545488162,-65.1413744480429,-65.13983428429462,-65.13830494019058,-65.13678639146349,-65.13527861304361,-65.13378157907698,-65.13229526294344,-65.13081963727437,-65.12935467397014,-65.12790034421734,-65.1264566185057,-65.12502346664482,-65.12360085778056,-65.12218876041128,-65.12078714240376,-65.1193959710089,-65.11801521287724,-65.11664483407412,-65.11528480009474,-65.1139350758789,-65.11259562582558,-65.11126641380721,-65.10994740318388,-65.10863855681711,-65.10733983708361,-65.10605120588873,-65.1047726246797,-65.1035040544587,-65.10224545579572,-65.10099678884121,-65.09975801333854,-65.09852908863625,-65.09730997370015,-65.09610062712517,-65.09490100714709,-65.09371107165403,-65.09253077819781,-65.09136008400509,-65.09019894598832,-65.0890473207566,-65.08790516462629,-65.08677243363145,-65.08564908353415,-65.08453506983462,-65.08343034778119,-65.0823348723801,-65.0812485984052,-65.08017148040733,-65.0791034727238,-65.07804452948746,-65.07699460463579,-65.07595365191978,-65.07492162491265,-65.07389847701849,-65.07288416148067,-65.07187863139018,-65.07088183969378,-65.06989373920206,-65.06891428259732,-65.06794342244136,-65.06698111118311,-65.06602730116613,-65.065081944636,-65.06414499374756,-65.06321640057203,-65.06229611710404,-65.0613840952685,-65.06048028692733,-65.05958464388618,-65.05869711790089,-65.05781766068391,-65.0569462239106,-65.05608275922546,-65.05522721824813,-65.0543795525794,-65.05353971380708,-65.0527076535117,-65.0518833232722,-65.0510666746714,-65.05025765930158,-65.04945622876966,-65.04866233470253,-65.04787592875215,-65.04709696260062,-65.04632538796508,-65.04556115660263,-65.04480422031502,-65.04405453095333,-65.0433120404226,-65.04257670068625,-65.04184846377049,-65.04112728176865,-65.04041310684536,-65.03970589124076,-65.03900558727446,-65.03831214734959,-65.03762552395665,-65.03694566967732,-65.03627253718821,-65.03560607926448,-65.03494624878341,-65.03429299872795,-65.03364628219006,-65.03300605237412,-65.03237226260019,-65.03174486630718,-65.03112381705601,-65.03050906853267,-65.02990057455116,-65.0292982890565,-65.02870216612749,-65.02811215997954,-65.02752822496743,-65.02695031558787,-65.02637838648218,-65.02581239243877,-65.0252522883956,-65.02469802944266,-65.02414957082419,-65.02360686794108,-65.02306987635305,-65.02253855178078,-65.0220128501081,-65.02149272738397,-65.02097813982454,-65.02046904381504,-65.01996539591171,-65.01946715284362,-65.01897427151444,-65.01848670900421,-65.01800442257098,-65.01752736965248,-65.01705550786768,-65.0165887950183,-65.01612718909033,-65.01567064825545,-65.01521913087247,-65.01477259548857,-65.01433100084067,-65.01389430585671,-65.0134624696568,-65.01303545155442,-65.0126132110575,-65.01219570786958,-65.01178290189078,-65.01137475321883,-65.01097122215005,-65.0105722691802,-65.01017785500544,-65.00978794052313,-65.00940248683264,-65.00902145523612,-65.00864480723925,-65.00827250455188,-65.00790450908876,-65.0075407829701,-65.0071812885222,-65.00682598827801,-65.00647484497762,-65.00612782156875,-65.00578488120728,-65.00544598725754,-65.00511110329288,-65.00478019309585,-65.00445322065869,-65.00413015018351,-65.00381094608268,-65.00349557297896,-65.00318399570583,-65.00287617930758,-65.00257208903955,-65.00227169036822,-65.00197494897134,-65.00168183073801,-65.00139230176872,-65.00110632837543,-65.00082387708152,-65.00054491462181,-65.00026940794253,-64.99999732420122,-64.99972863048093,-64.9994632657088,-64.99920117372181,-64.99894230264724,-64.99868660436015,-64.99843403400881,-64.99818454959951,-64.99793811163369,-64.99769468279077,-64.99745422765139,-64.99721671245578,-64.99698210489309,-64.99675037391783,-64.99652148959002,-64.99629542293619,-64.99607214582852,-64.99585163087998,-64.99563385135332,-64.99541878108226,-64.9952063944034,-64.9949966660972,-64.99478957133732,-64.99458508564689,-64.99438318486085,-64.99418384509386,-64.99398704271263,-64.99379275431252,-64.99360095669746,-64.99341162686302,-64.99322474198212,-64.99304027939293,-64.99285821658884,-64.99267853121005,-64.99250120103665,-64.99232620398296,-64.99215351809288,-64.99198312153622,-64.99181499260581,-64.99164910971518,-64.99148545139693,-64.99132399630142,-64.99116472319602,-64.99100761096453,-64.99085263860694,-64.99069978523943,-64.99054903009453,-64.99040035252136,-64.99025373198613,-64.99010914807253,-64.98996658048235,-64.98982600903602,-64.98968741367332,-64.98955077445392,-64.98941607155807,-64.98928328528724,-64.98915239606474,-64.98902338443628,-64.9888962310706,-64.98877091675999,-64.98864742242081,-64.98852572909398,-64.98840581794539,-64.98828767026636,-64.98817126747396,-64.9880565911114,-64.98794362284829,-64.98783234448089,-64.98772273793236,-64.98761478525293,-64.98750846862005,-64.9874037703385,-64.98730067284052,-64.98719915868575,-64.98709921056138,-64.98700081128204,-64.98690394378981,-64.98680859115412,-64.98671473657166,-64.98662236336628,-64.98653145498882,-64.98644199501693,-64.98635396715491,-64.98626735523348,-64.9861821432095,-64.98609831516579,-64.98601585531078,-64.98593474797829,-64.98585497762714,-64.9857765288409,-64.9856993863275,-64.98562353491887,-64.98554895957061,-64.98547564536153,-64.98540357749334,-64.98533274129018,-64.98526312219822,-64.9851947057852,-64.98512747774005,-64.98506142387235,-64.98499653011193,-64.98493278250837,-64.98487016723051,-64.98480867056601,-64.98474827892078,-64.98468897881851,-64.98463075690019,-64.98457359992352,-64.98451749476246,-64.98446242840662,-64.98440838796077,-64.98435536064432,-64.9843033337907,-64.98425229484688,-64.98420223137273,-64.98415313104056,-64.98410498163443,-64.9840577710497,-64.98401148729239,-64.98396611847859,-64.9839216528339,-64.98387807869285,-64.98383538449832,-64.98379355880088,-64.9837525902583,-64.98371246763489,-64.98367317980087,-64.98363471573187,-64.9835970645082,-64.98356021531437,-64.98352415743838,-64.98348888027118,-64.98345437330602,-64.98342062613784,-64.98338762846271,-64.9833553700771,-64.98332384087742,-64.98329303085926,-64.98326293011685,-64.98323352884243,-64.98320481732563,-64.98317678595282,-64.98314942520656,-64.98312272566491,-64.98309667800083,-64.98307127298158,-64.98304650146808]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1042\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1043\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1038\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1039\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1040\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_alpha\":0.2,\"line_width\":2}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1009\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1022\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1023\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1024\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1025\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1031\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1030\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1032\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1033\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1034\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1017\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1018\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1019\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1020\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1012\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1013\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1014\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1015\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1016\",\"attributes\":{\"axis\":{\"id\":\"p1012\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1021\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1017\"}}}]}}]}};\n", " const render_items = [{\"docid\":\"fe08db2a-ec72-4745-a697-c5386745fb53\",\"roots\":{\"p1001\":\"f483c8d9-3fb0-4b60-b245-69775c21a07c\"},\"root_ids\":[\"p1001\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1001" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "f.line(t, soma_v, line_width=2)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We have a cell that responds to input, so that's good, let's explore the role of some parameters to see what they do and see if we can get an action potential." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Simulation studies" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Role of current amplitude" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's do a set of simulations, plotted in the same figure, where we vary the amplitude of the current in a `for` loop:" ] }, { "cell_type": "code", "execution_count": 45, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:42.908811Z", "iopub.status.busy": "2025-08-18T03:35:42.906206Z", "iopub.status.idle": "2025-08-18T03:35:43.058795Z", "shell.execute_reply": "2025-08-18T03:35:43.058411Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"dc535127-93d0-42f6-ad33-9c3e6f791907\":{\"version\":\"3.7.2\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1044\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1045\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1046\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1053\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1054\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1051\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1084\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1078\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1079\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1080\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.96692100902152,-64.94701564616963,-64.9186685641677,-64.88276928367466,-64.84012318892181,-64.79145982447847,-64.73744029705793,-64.67866388450894,-64.6156739445351,-64.54896320574001,-64.47897851394293,-64.4061250977164,-64.33077040894594,-64.25324758696883,-64.1738585884989,-64.09287702003475,-64.0105507046985,-63.92710401137687,-63.84273091316948,-63.757605591706714,-63.6718855389204,-63.5857130232166,-63.499216432838445,-63.41251150685131,-63.325702463153604,-63.23888303202764,-63.15213740296994,-63.065541091859856,-62.97916173492216,-62.893056648071386,-62.80726694060401,-62.721829191409675,-62.6367758371143,-62.552135535325746,-62.46793350344035,-62.38419183371876,-62.30092978551989,-62.21816405570569,-62.135909028309875,-62.054177004609095,-61.983482906983866,-61.92274538761009,-61.87098368994225,-61.8273179919356,-61.79095921893715,-61.76119986027501,-61.73740567352779,-61.71900818251027,-61.7054978908438,-61.69641814448704,-61.691359585112956,-61.68995514265691,-61.69187552037852,-61.696825129827644,-61.70453843649505,-61.71477667987217,-61.727324934284724,-61.741989479292606,-61.75859545072198,-61.77698474554734,-61.79701415589137,-61.8185537093655,-61.841485194837595,-61.86570085448365,-61.89110222465631,-61.91759910968126,-61.945108674172204,-61.97355464083502,-62.00286658201234,-62.03297862873772,-62.06382336044991,-62.09533836941806,-62.12746575785017,-62.1601516923688,-62.193346009307504,-62.227001864991124,-62.26107542580365,-62.29552559342395,-62.33031376112744,-62.365403597515915,-62.40076085445295,-62.4363531963529,-62.472150048301835,-62.50812246078267,-62.54424298903801,-62.58048558533583,-62.616825502608464,-62.653239208117185,-62.6897043059552,-62.72619946734395,-62.76270436780274,-62.7991996303823,-62.83566677425015,-62.872088168001376,-62.90844698714393,-62.94472717527398,-62.98091340851517,-63.01699106284718,-63.05294295489739,-63.088749490064906,-63.124392760536324,-63.1598563817407,-63.19512534773804,-63.2301859032119,-63.26502543002778,-63.29963234657303,-63.33399601831618,-63.36810667821787,-63.401955355795394,-63.43553381379165,-63.46883449152933,-63.50185045414513,-63.53457534699854,-63.56700335463705,-63.59912916377629,-63.63094792982029,-63.662455246506134,-63.693647118308405,-63.7245199352839,-63.75507045007663,-63.78529575683752,-63.81519327184361,-63.84476071562794,-63.87399609645461,-63.9028976949937,-63.93146405006864,-63.959693945364215,-63.98758639699681,-64.01514064186078,-64.04235393996359,-64.06922238139809,-64.09574289797693,-64.12191316355064,-64.1477315065324,-64.17319683308897,-64.19830855965535,-64.22306655360251,-64.24747108103732,-64.27152276084364,-64.2952225241867,-64.3185715788018,-64.34157137747376,-64.36422359018901,-64.38653007950717,-64.40849287875594,-64.43011417270347,-64.45139628040495,-64.47234163995884,-64.49295279494098,-64.5132323823138,-64.53318312163339,-64.55280780539883,-64.57210929040828,-64.59109049000234,-64.60975436709086,-64.6281039278715,-64.64614221616046,-64.66387230826483,-64.6812973083355,-64.69842034414646,-64.71524456325328,-64.73177312948943,-64.74800921976377,-64.76395602112744,-64.77961672808182,-64.79499454010305,-64.8100926593612,-64.82491428861493,-64.83946262926484,-64.85374087955046,-64.8677522328778,-64.88149987626593,-64.89498698890192,-64.90821674079535,-64.92119229152418,-64.93391678906455,-64.94639336869832,-64.95862515199248,-64.97061524584518,-64.982366741594,-64.99388271418204,-65.00516622137818,-65.01621975285084,-65.02704524302274,-65.03764480872651,-65.04802072045615,-65.05817537729733,-65.06811128507586,-65.07783103732126,-65.08733729869293,-65.09663279056021,-65.1057202784664,-65.1146025612403,-65.1232824615482,-65.13176281770532,-65.14004647658797,-65.14813628750755,-65.15603509692495,-65.16374574389867,-65.17127105617386,-65.17861384683034,-65.1857769114186,-65.19276302552105,-65.19957494268411,-65.20621539267329,-65.21268708000936,-65.21899268274925,-65.22513485147962,-65.23111620849534,-65.2369393471382,-65.24260683127505,-65.24812119489626,-65.25348494181864,-65.25870054547856,-65.26377044880292,-65.26869706414722,-65.27348277329146,-65.27812992748557,-65.28264084753735,-65.28701782393689,-65.29126311701181,-65.29537895710892,-65.29936754479823,-65.30323105109561,-65.3069716177014,-65.31059135725201,-65.31409235358245,-65.3174766619978,-65.32074630955181,-65.3239032953313,-65.32694959074512,-65.32988713981639,-65.33271785947743,-65.33544363986614,-65.33806634462364,-65.34058781119222,-65.34300985111325,-65.34533425032463,-65.34756276945738,-65.34969714413121,-65.35173908524852,-65.35369027928695,-65.35555238859006,-65.3573270516561,-65.35901588342482,-65.36062047556194,-65.36214239674159,-65.36358319292624,-65.36494438764447,-65.36622748226617,-65.3674339562754,-65.36856526754077,-65.3696228525833,-65.37060812684187,-65.37152248493607,-65.37236730092661,-65.37314392857326,-65.37385370159014,-65.37449793389868,-65.37507791987798,-65.3755949346127,-65.37605023413852,-65.37644505568502,-65.37678061791627,-65.37705812116876,-65.3772787476871,-65.37744366185714,-65.37755401043674,-65.37761092278411,-65.37761551108383,-65.37756887057037,-65.37747207974934,-65.37732620061634,-65.3771322788735,-65.37689134414367,-65.3766044101823,-65.37627247508698,-65.3758965215048,-65.37547751683731,-65.37501641344325,-65.37451414883911,-65.37397164589736,-65.37338981304245,-65.37276954444472,-65.37211172021198,-65.37141720657897,-65.3706868560947,-65.36992150780749,-65.36912198744807,-65.36828910761041,-65.36742366793048,-65.36652645526294,-65.36559824385576,-65.36463979552268,-65.36365185981379,-65.36263517418391,-65.36159046415908,-65.36051844350096,-65.3594198143693,-65.35829526748243,-65.35714548227575,-65.35597112705841,-65.35477285916788,-65.35355132512281,-65.35230716077386,-65.35104099145275,-65.34975343211939,-65.3484450875072,-65.3471165522667,-65.34576841110707,-65.34440123893621,-65.3430156009988,-65.34161205301268,-65.34019114130362,-65.33875340293815,-65.33729936585489,-65.33582954899403,-65.33434446242529,-65.33284460747416,-65.33133047684647,-65.32980255475148,-65.32826131702318,-65.32670723124016,-65.32514075684394,-65.32356234525555,-65.32197243999083,-65.32037147677406,-65.31875988365012,-65.31713808109524,-65.31550648212618,-65.31386549240811,-65.31221551036087,-65.310556927264,-65.30889012736027,-65.30721548795788,-65.30553337953123,-65.30384416582045,-65.3021482039295,-65.30044584442301,-65.29873743142178,-65.29702330269706,-65.2953037897635,-65.29357921797087,-65.29184990659459,-65.29011616892492,-65.28837831235509,-65.2866366384681,-65.28489144312246,-65.28314301653671,-65.2813916433728,-65.27963760281833,-65.27788116866768,-65.27612260940207,-65.27436218826844,-65.2726001633574,-65.27083678767993,-65.2690723092432,-65.26730697112528,-65.26554101154882,-65.26377466395374,-65.26200815706895,-65.26024171498304,-65.25847555721401,-65.25670989877813,-65.25494495025768,-65.25318091786795,-65.2514180035232,-65.24965640490176,-65.2478963155102,-65.2461379247467,-65.24438141796344,-65.24262697652819,-65.24087477788507,-65.23912499561445,-65.23737779949198,-65.23563335554692,-65.23389182611953,-65.2321533699178,-65.23041814207326,-65.22868629419621,-65.22695797442994,-65.22523332750443,-65.22351249478919,-65.22179561434538,-65.22008282097724,-65.21837424628278,-65.21667001870381,-65.21497026357524,-65.21327510317371,-65.21158465676558,-65.20989904065416,-65.20821836822644,-65.20654274999903,-65.20487229366353,-65.2032071041313,-65.20154728357753,-65.19989293148478,-65.1982441446859,-65.1966010174063,-65.19496364130566,-65.19333210551918,-65.19170649669802,-65.19008689904942,-65.18847339437612,-65.18686606211527,-65.18526497937684,-65.18367022098144,-65.18208185949763,-65.18049996527874,-65.17892460649915,-65.17735584919012,-65.17579375727502,-65.17423839260415,-65.17268981498913,-65.17114808223663,-65.16961325018184,-65.16808537272134,-65.16656450184554,-65.16505068767074,-65.16354397847061,-65.16204442070736,-65.16055205906243,-65.15906693646673,-65.1575890941305,-65.15611857157272,-65.15465540665012,-65.1531996355858,-65.15175129299746,-65.15031041192518,-65.14887702385887,-65.14745115876535,-65.14603284511496,-65.14462210990791,-65.1432189787002,-65.14182347562918,-65.14043562343875,-65.13905544350425,-65.13768295585697,-65.1363181792083,-65.13496113097356,-65.13361182729551,-65.13227028306751,-65.13093651195636,-65.12961052642484,-65.12829233775386,-65.12698195606443,-65.12567939033919,-65.1243846484437,-65.1230977371474,-65.12181866214439,-65.12054742807368,-65.11928403853939,-65.11802849613056,-65.11678080244066,-65.11554095808687,-65.11430896272905,-65.11308481508853,-65.11186851296645,-65.11066005326205,-65.10945943199056,-65.10826664430088,-65.10708168449301,-65.10590454603523,-65.10473522158102,-65.10357370298577,-65.10241998132318,-65.10127404690152,-65.10013588927963,-65.09900549728259,-65.0978828590173,-65.0967679618878,-65.09566079261029,-65.094561337228,-65.0934695811259,-65.09238550904504,-65.09130910509684,-65.09024035277707,-65.0891792349797,-65.08812573401043,-65.0870798316002,-65.08604150891834,-65.0850107465856,-65.08398752468699,-65.08297182278443,-65.08196361992916,-65.08096289467404,-65.07996962508567,-65.0789837887562,-65.07800536281516,-65.07703432394098,-65.07607064837234,-65.07511431191944,-65.07416528997499,-65.07322355752513,-65.07228908916012,-65.07136185908493,-65.07044184112956,-65.06952900875936,-65.06862333508505,-65.06772479287265,-65.0668333545533,-65.06594899223282,-65.06507167770124,-65.06420138244212,-65.06333807764172,-65.06248173419803,-65.06163232272972,-65.06078981358488,-65.05995417684962,-65.05912538235661,-65.05830339969344,-65.0574881982108,-65.05667974703061,-65.055878015054,-65.05508297096912,-65.05429458325891,-65.05351282020861,-65.05273764991331,-65.05196904028527,-65.05120695906118,-65.0504513738092,-65.04970225193605,-65.04895956069386,-65.04822326718691,-65.04749333837835,-65.04676974109668,-65.04605244204228,-65.04534140779366,-65.04463660481375,-65.04393799945596,-65.04324555797031,-65.0425592465092,-65.04187903113338,-65.04120487781753,-65.04053675245602,-65.0398746208683,-65.03921844880445,-65.0385682019504,-65.03792384593328,-65.03728534632648,-65.03665266865478,-65.03602577839926,-65.03540464100224,-65.03478922187202,-65.0341794863876,-65.03357539990334,-65.03297692775347,-65.03238403525651,-65.03179668771975,-65.03121485044342,-65.03063848872499,-65.03006756786326,-65.02950205316245,-65.02894190993617,-65.02838710351129,-65.02783759923184,-65.02729336246271,-65.02675435859338,-65.02622055304148,-65.02569191125639,-65.02516839872267,-65.02464998096347,-65.02413662354392,-65.02362829207432,-65.0231249522134,-65.0226265696714,-65.02213311021325,-65.02164453966144,-65.02116082389908,-65.02068192887275,-65.02020782059529,-65.0197384651486,-65.01927382868637,-65.01881387743664,-65.01835857770449,-65.01790789587452,-65.0174617984133,-65.01702025187183,-65.01658322288793,-65.01615067818848,-65.01572258459173,-65.01529890900949,-65.01487961844929,-65.01446468001646,-65.01405406091621,-65.01364772845564,-65.01324565004565,-65.01284779320288,-65.01245412555159,-65.0120646148254,-65.01167922886914,-65.0112979356405,-65.01092070321174,-65.01054749977132,-65.01017829362547,-65.00981305319975,-65.00945174704054,-65.00909434381653,-65.00874081232007,-65.00839112146862,-65.00804524030606,-65.00770313800398,-65.00736478386293,-65.00703014731369,-65.0066991979184,-65.00637190537172,-65.006048239502,-65.00572817027222,-65.00541166778117,-65.00509870226439,-65.00478924409511,-65.00448326378523,-65.00418073198622,-65.00388161948999,-65.00358589722966,-65.00329353628045,-65.00300450786045,-65.00271878333128,-65.00243633419888,-65.00215713211415,-65.00188114887364,-65.00160835642014,-65.00133872684327,-65.0010722323801,-65.0008088454156,-65.00054853848324,-65.00029128426543,-65.00003705559396,-64.99978582545049,-64.99953754406374,-64.99929216163717,-64.99904963241235,-64.99880991415398,-64.99857296769922,-64.99833875656353,-64.9981072465961,-64.99787840567889,-64.99765220346369,-64.99742861114288,-64.99720760124941,-64.99698914748261,-64.99677322455646,-64.99655980806774,-64.99634887438137,-64.99614040053089,-64.99593436413227,-64.99573074330912,-64.99552951662821,-64.99533066304359,-64.99513416184864,-64.99493999263464,-64.9947481352553,-64.99455856979637,-64.99437127654959,-64.99418623599065,-64.99400342876035,-64.99382283564867,-64.99364443758145,-64.99346821560913,-64.99329415089736,-64.99312222471933,-64.99295241844939,-64.99278471355787,-64.99261909160694,-64.99245553424738,-64.99229402321599,-64.99213454033372,-64.9919770675043,-64.99182158671329,-64.99166808002755,-64.99151652959502,-64.99136691764468,-64.99121922648686,-64.99107343851355,-64.99092953619899,-64.9907875021003,-64.99064731885818,-64.9905089691977,-64.99037243592916,-64.99023770194884,-64.99010475023996,-64.98997356387349,-64.98984412600902,-64.98971641989559,-64.98959042887255,-64.98946613637031,-64.98934352591115,-64.98922258110996,-64.9891032856749,-64.98898562340814,-64.98886957820643,-64.98875513406178,-64.98864227506192,-64.98853098539094,-64.98842124932968,-64.98831305125624,-64.98820637564639,-64.98810120707392,-64.98799753021106,-64.9878953298287,-64.98779459079674,-64.98769529808433,-64.98759743676008,-64.98750099199225,-64.98740594904892,-64.98731229329813,-64.98722001020799,-64.98712908534675,-64.98703950438288,-64.9869512530851,-64.98686431732237,-64.98677868306397,-64.98669433637937,-64.98661126343822,-64.98652945051033,-64.98644888396552,-64.98636955027358,-64.98629143600411,-64.9862145278264,-64.98613881250931,-64.98606427692106,-64.98599090802908,-64.98591869289984,-64.98584761869864,-64.98577767268935,-64.98570884223426,-64.98564111479378,-64.98557447792622,-64.98550891928754,-64.98544442663108,-64.98538098780725,-64.98531859076328,-64.98525722354294,-64.98519687428619,-64.98513753122889,-64.98507918270248,-64.98502181713367,-64.98496542304407,-64.98490998904991,-64.98485550386161,-64.9848019562835,-64.98474933521344,-64.98469762964243,-64.98464682865425,-64.98459692142512,-64.98454789722327,-64.98449974540857,-64.98445245543218,-64.98440601683606,-64.98436041925268,-64.98431565240456,-64.98427170610384,-64.9842285702519,-64.98418623483896,-64.98414468994362,-64.98410392573248,-64.98406393245968,-64.98402470046648,-64.98398622018082,-64.98394848211694,-64.98391147687487,-64.98387519514,-64.98383962768268,-64.98380476535777,-64.98377059910415,-64.9837371199443,-64.98370431898384,-64.9836721874111,-64.98364071649664,-64.98360989759277,-64.98357972213316,-64.98355018163231,-64.98352126768516,-64.98349297196656,-64.98346528623081,-64.98343820231126,-64.98341171211977,-64.98338580764631,-64.98336048095842,-64.9833357242008,-64.9833115295948,-64.98328788943797,-64.98326479610361,-64.98324224204023,-64.98322021977116,-64.98319872189401,-64.98317774108025,-64.98315727007471,-64.98313730169508,-64.9831178288315,-64.98309884444603,-64.98308034157222,-64.98306231331459,-64.9830447528482,-64.98302765341813,-64.98301100833908,-64.9829948109948,-64.98297905483771,-64.98296373338836,-64.982948840235]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1085\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1086\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1081\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1082\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1083\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1095\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1089\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1090\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1091\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.95640932209486,-64.91656743332514,-64.85984205555549,-64.78801247201851,-64.70268982250026,-64.60533363614289,-64.49726652550554,-64.37968726214805,-64.25368243584953,-64.12023687775266,-63.980243005197664,-63.83450685704832,-63.68374308554822,-63.5285980336341,-63.36965570689861,-63.207443213990864,-63.04243573374819,-62.875061058405976,-62.705685990186154,-62.53463298547816,-62.36219006339412,-62.18861374404723,-62.01413177577863,-61.83894566414371,-61.663205217148345,-61.48703775987238,-61.31055247641078,-61.13384197380701,-60.956983752569364,-60.780032640268615,-60.60300301991352,-60.42589999618499,-60.248720146379554,-60.07145224449328,-59.89407795126451,-59.716545232096806,-59.53877868318728,-59.36069958117042,-59.18222601318972,-59.00327301667765,-58.84474091546034,-58.70432117081082,-58.57995502026495,-58.469810379192914,-58.37225999121598,-58.28586154597049,-58.209339489475724,-58.1415683368062,-58.08155735114037,-58.02843648736541,-57.98144351898471,-57.93990439092094,-57.90322096506865,-57.87087405326114,-57.842414200050285,-57.8174533804225,-57.795657548680616,-57.776739975466505,-57.76045531084561,-57.74659431273124,-57.73497918177123,-57.72545944614459,-57.717908342462856,-57.712219642052986,-57.70830487522023,-57.706090909553595,-57.705517841856285,-57.706537166781075,-57.70911018866394,-57.713206646327876,-57.7188035237363,-57.72588402228672,-57.7344366732343,-57.74445457121548,-57.75593471210286,-57.76887742046904,-57.78328585377783,-57.79916557206703,-57.81652416335143,-57.83537091627141,-57.85571653265597,-57.87757287367391,-57.90095273412665,-57.92586964020441,-57.95233766669681,-57.980371270230194,-58.00998513560885,-58.04118863182379,-58.073980320095735,-58.10835983717307,-58.144327610543414,-58.18188460313077,-58.22103208334135,-58.26177141689563,-58.3041038773877,-58.348030472954164,-58.393551786821035,-58.44066782983598,-58.48937790338985,-58.53968047139201,-58.59157304019262,-58.645052045546144,-58.70011274588722,-58.75674912134638,-58.81495377807067,-58.8747178575363,-58.93603095064839,-58.998881016518396,-59.063254305894645,-59.12910563164493,-59.19639130679451,-59.26506921573751,-59.3350983488623,-59.40643840423012,-59.47904944766031,-59.552891623830895,-59.62792491207601,-59.70410892147847,-59.7814027206384,-59.859764698166714,-59.939152450520744,-60.019522694282635,-60.1008234914394,-60.18297908153588,-60.26591757266995,-60.34957032275106,-60.43387142032391,-60.51875725118721,-60.60416613898414,-60.69003804959403,-60.77631435056119,-60.86293761799346,-60.9498514843833,-61.03700052167408,-61.12431827557603,-61.211725299256585,-61.29914762720808,-61.38651612963027,-61.473765966668246,-61.560836127866146,-61.64766904428583,-61.73421026251719,-61.82040817132347,-61.906213772960946,-61.99158049232229,-62.07646401800559,-62.16080286421951,-62.24453928141221,-62.327621119020826,-62.41000122575536,-62.49163693273206,-62.572489607299595,-62.65252426717502,-62.7317092460167,-62.81001590285013,-62.887418368862846,-62.963893326026366,-63.03941981280936,-63.11397135602379,-63.1875182567721,-63.26003549372489,-63.33150218221794,-63.40190110330767,-63.471218292974214,-63.539442683086705,-63.60656578695785,-63.67258142334684,-63.73748547364993,-63.801275667769524,-63.86395139479437,-63.92551353517296,-63.98596431153159,-64.04530715569133,-64.10354001061239,-64.16066122082186,-64.21667161169955,-64.27157415306056,-64.32537366638986,-64.3780765698344,-64.42969065588605,-64.4802248973965,-64.52968927816944,-64.57809464489317,-64.62545257762025,-64.67177527638188,-64.71707546185132,-64.76136628825235,-64.80466126695046,-64.84697419937335,-64.88831911808649,-64.92871023500531,-64.96816189585883,-65.00668854013549,-65.04430395566007,-65.08101883610833,-65.11684468204223,-65.15179365175938,-65.18587843272269,-65.2191121307967,-65.25150817489684,-65.28308023498425,-65.31384215161913,-65.34380787552664,-65.37299141583769,-65.40140679584594,-65.4290680152771,-65.45598901820053,-65.48218366582871,-65.50766571354994,-65.53244879162641,-65.556546389065,-65.57997184023274,-65.60273831384559,-65.62485880400797,-65.64634612302304,-65.66721289573036,-65.68747155515985,-65.70713433931854,-65.72621328895086,-65.74472024613418,-65.76266685358969,-65.78006455460432,-65.79692459347336,-65.81325801638549,-65.82907567268218,-65.84438821643262,-65.85920610827318,-65.87353961746727,-65.88739882414737,-65.9007936217063,-65.91373371930922,-65.92622864450173,-65.93828774589302,-65.94992019589563,-65.96113499350648,-65.9719409671154,-65.98234677733001,-65.99236091980683,-66.00199172808051,-66.0112472254729,-66.02013475510326,-66.02866164811242,-66.03683520521541,-66.04466268109579,-66.05215127126426,-66.05930810105357,-66.0661402164635,-66.07265457660738,-66.07885804754348,-66.08475739730258,-66.09035929194773,-66.09567029252322,-66.10069685276856,-66.10544531748934,-66.1099219214909,-66.11413278899313,-66.11808393345548,-66.12178125775031,-66.12523055463143,-66.12843750745104,-66.13140769108526,-66.13414657303314,-66.13665951465924,-66.13895177255381,-66.1410284999879,-66.14289474844436,-66.14455546920803,-66.1460155150007,-66.14727964164882,-66.14835250977346,-66.14923868649348,-66.14994264713454,-66.1504687769374,-66.15082137276022,-66.15100464477013,-66.15102271812057,-66.15087963461106,-66.15057935432684,-66.15012575725638,-66.14952264488505,-66.14877374176358,-66.1478826970503,-66.14685308602657,-66.14568841158447,-66.14439210568698,-66.1429675307998,-66.14141798129536,-66.13974668482875,-66.13795680368564,-66.13605143610276,-66.13403361756096,-66.13190632205128,-66.12967246331445,-66.1273348960542,-66.12489641712486,-66.1223597666937,-66.11972762937856,-66.11700263536105,-66.1141873614762,-66.11128433227869,-66.10829602108635,-66.10522485100141,-66.10207319591001,-66.09884338146036,-66.09553768602017,-66.09215834161375,-66.0887075348393,-66.08518740776672,-66.08160005881662,-66.07794754362068,-66.07423187586413,-66.07045502811037,-66.06661893260856,-66.06272548208423,-66.05877653051351,-66.05477389388128,-66.0507193509236,-66.04661464385488,-66.04246147907993,-66.0382615278915,-66.03401642715343,-66.02972777996985,-66.02539715634063,-66.02102609380361,-66.01661609806362,-66.01216864360877,-66.00768517431432,-66.00316710403418,-65.9986158171806,-65.99403256403441,-65.98941833940326,-65.98477416004711,-65.98010105876435,-65.97540007927314,-65.97067227178951,-65.96591868921531,-65.96114038386001,-65.95633840462953,-65.95151379462345,-65.94666758908916,-65.9418008136877,-65.93691448303181,-65.9320095994612,-65.92708715202468,-65.92214811564249,-65.91719345042502,-65.91222410112783,-65.90724099672458,-65.90224505008224,-65.89723715772482,-65.89221819967332,-65.88718903935167,-65.88215052354893,-65.87710348243019,-65.8720487295886,-65.86698706213282,-65.86191926080416,-65.85684609011892,-65.85176829853184,-65.84668661861699,-65.84160176726314,-65.83651444588094,-65.83142534061938,-65.82633512258987,-65.82124444809594,-65.81615395886709,-65.81106428229566,-65.80597603167541,-65.80088980644105,-65.79580619240777,-65.79072576201015,-65.78564907453993,-65.78057667638193,-65.77550910124799,-65.77044687040848,-65.76539049292089,-65.76034046585568,-65.75529727451885,-65.75026139267123,-65.74523328274442,-65.74021339605314,-65.73520217300413,-65.73020004330141,-65.72520742614792,-65.72022473044353,-65.71525235497954,-65.71029068862943,-65.70534011053614,-65.70040099029585,-65.69547368813814,-65.69055855510285,-65.68565593321347,-65.68076615564713,-65.6758895469015,-65.67102642295819,-65.6661770914432,-65.66134185178414,-65.6565209953645,-65.65171480567477,-65.64692355846081,-65.64214752186926,-65.63738695659009,-65.63264211599655,-65.62791324628226,-65.62320058659581,-65.6185043691727,-65.61382481946471,-65.60916215626698,-65.6045165918425,-65.59988833204432,-65.59527757643542,-65.59068451840638,-65.58610934529072,-65.58155223847824,-65.57701337352607,-65.5724929202678,-65.56799104292047,-65.56350790018962,-65.55904364537247,-65.55459842645904,-65.55017238623155,-65.54576566236197,-65.54137838750773,-65.53701068940575,-65.53266269096471,-65.52833451035573,-65.52402626110131,-65.51973805216271,-65.51546998802577,-65.51122216878522,-65.50699469022739,-65.50278764391149,-65.4986011172495,-65.49443519358461,-65.49028995226814,-65.48616546873534,-65.48206181457961,-65.47797905762565,-65.4739172620011,-65.46987648820708,-65.46585679318746,-65.46185823039686,-65.45788084986758,-65.45392469827524,-65.4499898190034,-65.44607625220698,-65.4421840348746,-65.43831320088991,-65.43446378109178,-65.43063580333352,-65.42682929254102,-65.42304427076998,-65.4192807572621,-65.41553876850035,-65.41181831826327,-65.40811941767838,-65.40444207527464,-65.40078629703413,-65.39715208644267,-65.39353944453983,-65.38994836996784,-65.38637885901993,-65.38283090568765,-65.37930450170757,-65.375799636607,-65.37231629774921,-65.36885447037764,-65.36541413765957,-65.36199528072893,-65.3585978787285,-65.35522190885133,-65.35186734638155,-65.34853416473443,-65.34522233549586,-65.34193182846116,-65.33866261167314,-65.33541465145977,-65.33218791247099,-65.32898235771505,-65.32579794859424,-65.32263464494004,-65.31949240504764,-65.31637118570998,-65.3132709422512,-65.3101916285595,-65.30713319711955,-65.30409559904437,-65.3010787841066,-65.2980827007693,-65.2951072962164,-65.29215251638242,-65.28921830598188,-65.28630460853816,-65.28341136641195,-65.28053852082918,-65.27768601190854,-65.27485377868857,-65.27204175915425,-65.26924989026327,-65.26647810797175,-65.26372634725968,-65.26099454215583,-65.25828262576236,-65.25559053027897,-65.25291818702668,-65.25026552647128,-65.24763247824633,-65.24501897117581,-65.24242493329646,-65.2398502918797,-65.23729497345325,-65.23475890382232,-65.23224200809061,-65.2297442106808,-65.22726543535487,-65.22480560523394,-65.22236464281796,-65.21994247000495,-65.21753900810998,-65.21515417788386,-65.21278789953152,-65.2104400927301,-65.2081106766467,-65.20579956995593,-65.20350669085715,-65.20123195709137,-65.19897528595793,-65.19673659433096,-65.19451579867545,-65.1923128150632,-65.1901275591884,-65.187959946383,-65.18580989163188,-65.18367730958765,-65.18156211458536,-65.17946422065685,-65.17738354154494,-65.17531999071734,-65.17327348138036,-65.17124392649238,-65.16923123877713,-65.1672353307367,-65.1652561146644,-65.16329350265733,-65.16134740662878,-65.15941773832049,-65.15750440931457,-65.15560733104535,-65.15372641481093,-65.15186157178461,-65.15001271302609,-65.14817974949248,-65.14636259204919,-65.14456115148049,-65.14277533850006,-65.14100506376123,-65.13925023786713,-65.13751077138059,-65.13578657483396,-65.13407755873865,-65.13238363359464,-65.13070470989966,-65.12904069815836,-65.12739150889125,-65.12575705264346,-65.1241372399934,-65.12253198156121,-65.12094118801711,-65.1193647700896,-65.11780263857345,-65.11625470433758,-65.11472087833283,-65.11320107159958,-65.11169519527515,-65.11020316060115,-65.10872487893069,-65.10726026173539,-65.10580922061234,-65.10437166729085,-65.10294751363912,-65.10153667167081,-65.10013905355139,-65.09875457160445,-65.09738313831784,-65.09602466634975,-65.0946790685346,-65.09334625788884,-65.09202614761665,-65.09071865111548,-65.08942368198156,-65.08814115401519,-65.08687098122601,-65.08561307783815,-65.08436735829518,-65.0831337372651,-65.08191212964508,-65.08070245056622,-65.07950461539814,-65.07831853975345,-65.07714413949222,-65.07598133072622,-65.07483002982318,-65.07369015341085,-65.07256161838109,-65.07144434189374,-65.0703382413805,-65.06924323454861,-65.06815923938458,-65.06708617415774,-65.06602395742364,-65.06497250802757,-65.06393174510777,-65.06290158809871,-65.06188195673423,-65.06087277105055,-65.05987395138933,-65.0588854184005,-65.05790709304512,-65.05693889659814,-65.05598075065103,-65.0550325771144,-65.05409429822053,-65.05316583652578,-65.052247114913,-65.0513380565938,-65.05043858511084,-65.04954862433992,-65.04866809849213,-65.04779693211584,-65.04693505009871,-65.04608237766952,-65.04523884040006,-65.04440436420686,-65.04357887535288,-65.04276230044921,-65.04195456645658,-65.04115560068693,-65.04036533080485,-65.03958368482894,-65.03881059113324,-65.03804597844844,-65.03728977586313,-65.03654191282499,-65.03580231914187,-65.03507092498289,-65.03434766087943,-65.0336324577261,-65.03292524678162,-65.0322259596697,-65.03153452837985,-65.0308508852681,-65.03017496305773,-65.02950669483994,-65.0288460140744,-65.02819285458992,-65.02754715058484,-65.02690883662758,-65.02627784765708,-65.02565411898313,-65.02503758628671,-65.02442818562037,-65.02382585340835,-65.02323052644692,-65.02264214190448,-65.0220606373217,-65.02148595061165,-65.0209180200598,-65.02035678432406,-65.0198021824348,-65.0192541537947,-65.01871263817876,-65.01817757573404,-65.01764890697964,-65.01712657280639,-65.01661051447662,-65.01610067362398,-65.01559699225304,-65.01509941273898,-65.01460787782725,-65.01412233063316,-65.01364271464143,-65.01316897370579,-65.01270105204837,-65.01223889425934,-65.01178244529622,-65.0113316504834,-65.01088645551148,-65.01044680643669,-65.01001264968018,-65.00958393202737,-65.00916060062724,-65.00874260299156,-65.00832988699419,-65.00792240087024,-65.0075200932153,-65.0071229129846,-65.00673080949213,-65.00634373240979,-65.00596163176651,-65.00558445794728,-65.00521216169224,-65.00484469409574,-65.00448200660529,-65.00412405102061,-65.00377077949263,-65.00342214452237,-65.00307809895996,-65.00273859600351,-65.00240358919805,-65.00207303243438,-65.00174687994797,-65.00142508631782,-65.00110760646527,-65.0007943956528,-65.00048540948293,-65.00018060389691,-64.99987993517352,-64.99958334716148,-64.99929076720711,-64.99900212794529,-64.99871736664176,-64.99843642461747,-64.99815924674482,-64.99788578100703,-64.99761597811288,-64.9973497911601,-64.99708717534153,-64.99682808768848,-64.99657248684709,-64.99632033288326,-64.99607158711294,-64.9958262119543,-64.9955841707993,-64.99534542790211,-64.99510994828225,-64.99487769764075,-64.99464864228744,-64.99442274907818,-64.99419998536062,-64.99398031892741,-64.99376371797602,-64.99355015107412,-64.99333958712997,-64.99313199536704,-64.99292734530236,-64.9927256067281,-64.9925267496959,-64.99233074450362,-64.99213756168422,-64.99194717199633,-64.99175954641645,-64.99157465613236,-64.99139247253781,-64.99121296722802,-64.9910361119961,-64.99086187883007,-64.99069023991065,-64.99052116760926,-64.9903546344867,-64.99019061329206,-64.99002907696182,-64.98986999861937,-64.9897133515746,-64.98955910932362,-64.9894072455487,-64.98925773411817,-64.98911054908648,-64.98896566469426,-64.98882305536847,-64.98868269572246,-64.98854456055614,-64.98840862485604,-64.98827486379548,-64.9881432527346,-64.98801376722045,-64.98788638298699,-64.9877610759551,-64.9876378222326,-64.98751659811404,-64.98739738008072,-64.98728014480048,-64.98716486912751,-64.98705153010216,-64.98694010495068,-64.98683057108485,-64.98672290610176,-64.98661708778334,-64.98651309409603,-64.98641090319029,-64.98631049340021,-64.98621184324293,-64.98611493141814,-64.9860197368076,-64.98592623847445,-64.98583441566267,-64.98574424779645,-64.98565571447952,-64.98556879549449,-64.98548347080212,-64.9853997205407]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1096\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1097\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1092\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1093\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1094\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1105\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1099\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1100\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1101\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.94589763516821,-64.88611924001466,-64.80101570809497,-64.69325631981482,-64.56525833647144,-64.41921171428427,-64.25710099294712,-64.08072471378,-63.8917126956506,-63.691528629370595,-63.481487177849424,-63.26277700289422,-63.03647168529634,-62.803539638907345,-62.5648261590183,-62.32108478860732,-62.0729899379498,-61.82114341091309,-61.56605150776813,-61.30814845218831,-61.04781392028776,-60.78537741285835,-60.52108071812955,-60.2551149565734,-59.987633598170504,-59.71875256444835,-59.448495597344284,-59.176858169879466,-58.90380935100282,-58.62926705609883,-58.353075805785586,-58.075059311163834,-57.79502135110548,-57.51267792673238,-57.22770048200758,-56.939742182803094,-56.64841418446873,-56.35321544781151,-56.053624581650396,-55.74909833888263,-55.47038650285009,-55.213521667570575,-54.97494350476484,-54.75144586820083,-54.54004253639443,-54.33805281080059,-54.14306871836015,-53.95292431117575,-53.76563549508652,-53.57930794284159,-53.3922095202821,-53.20274453981735,-53.0094296456714,-52.810871263609336,-52.60559110566462,-52.39214916429342,-52.16913053607219,-51.93512524179435,-51.688650239499005,-51.42802182391997,-51.151495949022745,-50.857245989573414,-50.54319837200288,-50.20697937874873,-49.846045612804694,-49.457490519999,-49.037921249761304,-48.58364709934446,-48.09016823369881,-47.55250573978088,-46.96467168471127,-46.319902897905436,-45.610011996775214,-44.82547336143348,-43.95507619925709,-42.98549171677272,-41.90079374776157,-40.681928907436266,-39.3061332602382,-37.7462965642837,-35.97019218452696,-33.93976769694536,-31.610705282951336,-28.932665455908236,-25.850482851742626,-22.308029253219246,-18.255454964262054,-13.661851636191537,-8.534842584533767,-2.944824847477939,2.953816877600368,8.918333921402247,14.646208095573304,19.83586436829813,24.25703257571911,27.79638178086778,30.460109871702937,32.3408623270324,33.57264691482312,34.29358833189177,34.624412293424676,34.6607437090845,34.47386765883097,34.1151091230741,33.620886959141416,33.01709073122178,32.3224135329115,31.550710812334447,30.71259440542925,29.816486738414895,28.869309735810656,27.87693225267948,26.84446072448722,25.776428906196138,24.676922848069804,23.549664285622683,22.398067270824562,21.225277546188952,20.034200772673287,18.827523556698978,17.607729364217832,16.377112477964886,15.137789276052741,13.89170788277535,12.64065231025653,11.386250257511639,10.129991752423184,8.873234801582207,7.617198165528691,6.362972056909632,5.111545349611598,3.8638076599726667,2.6205269807919946,1.3823695254062258,0.1499335785492264,-1.0762526694630727,-2.295753373034628,-3.50823658363527,-4.713406185311732,-5.911010402336234,-7.100845212626789,-8.28280287219687,-9.456845064647155,-10.622949225517052,-11.781121341418789,-12.931403329270804,-14.073877618717603,-15.208722737340157,-16.33618823713922,-17.456538013344137,-18.570068870766526,-19.677123525516404,-20.77810068176094,-21.873463703921573,-22.96374873961046,-24.049572746942566,-25.13169179343273,-26.210972271635377,-27.288357170920474,-28.36488670074623,-29.44171377067356,-30.52011598872707,-31.601504987287512,-32.68743333604179,-33.77959892024502,-34.879846365926994,-35.990164829132425,-37.112681199107286,-38.249723190610666,-39.40368976953599,-40.577022436544915,-41.77217045239673,-42.9915373799179,-44.23740699448396,-45.511802994297675,-46.816354328641395,-48.15214864115474,-49.519431306699744,-50.91732706927062,-52.343764776074856,-53.79478317294343,-55.26464240037791,-56.74532551987605,-58.22655927425223,-59.69584394167373,-61.13873659451294,-62.539595845865456,-63.88221409421781,-65.15129209718344,-66.33329081417469,-67.41763003378422,-68.39752770325683,-69.27029140718194,-70.03718267344598,-70.70288442311546,-71.27462673039412,-71.76138519199809,-72.17296410434619,-72.51927417143735,-72.80978653327304,-73.05320214622822,-73.25725141507216,-73.42863061350727,-73.57303659613278,-73.69524027550337,-73.79918922777952,-73.88812002144047,-73.96466829765752,-74.03096994842232,-74.08875012863268,-74.13939985062336,-74.18404023202464,-74.223575263878,-74.25873493393894,-74.29011014759605,-74.31818081453015,-74.34333832508248,-74.36590347135314,-74.38614069970542,-74.40426942663385,-74.42047301441788,-74.43490588790478,-74.4476991781358,-74.4589652002744,-74.46880100996769,-74.47729123144823,-74.48451031014042,-74.49052431034045,-74.49539235305717,-74.49916776897939,-74.50189902567226,-74.50363047561332,-74.50440296184618,-74.50425431029251,-74.50321973167455,-74.5013321512067,-74.49862248043951,-74.49511984266366,-74.49085176093406,-74.48584431592099,-74.4801222793297,-74.4737092274713,-74.46662763864832,-74.45889897729059,-74.45054376719737,-74.44158165578176,-74.43203147084591,-74.42191127112338,-74.41123839159023,-74.40002948435969,-74.38830055582443,-74.37606700058991,-74.36334363264517,-74.35014471413845,-74.33648398206239,-74.32237467310124,-74.30782954685158,-74.29286090759356,-74.27748062476209,-74.26170015224464,-74.24553054661384,-74.22898248438732,-74.21206627839511,-74.19479189332374,-74.17716896049798,-74.15920679195351,-74.14091439384774,-74.12230047925098,-74.1033734803555,-74.08414156013643,-74.0646126234954,-74.04479432791489,-74.02469409364866,-74.0043191134724,-73.98367636201583,-73.96277257169484,-73.94161427560235,-73.92020782519081,-73.89855939571186,-73.8766749918151,-73.85456045322526,-73.83222146043393,-73.80966354035672,-73.78689207191783,-73.76391229153305,-73.74072929846957,-73.71734806006685,-73.69377341680698,-73.67001008722738,-73.64606267267096,-73.62193566187145,-73.59763343537328,-73.57316026978717,-73.5485203418829,-73.52371773252261,-73.49875643043752,-73.47364033585234,-73.44837326396124,-73.42295894826009,-73.39740104373924,-73.37170312994165,-73.34586871389091,-73.3199012328938,-73.29380405722195,-73.26758049267703,-73.24123378304397,-73.21476711243643,-73.18818360753866,-73.16148633974782,-73.1346783272208,-73.10776253682906,-73.0807418860255,-73.05361924462663,-73.02639743651353,-72.99907924125502,-72.97166739184803,-72.9441644701665,-72.91657304708912,-72.88889567823513,-72.86113490064204,-72.83329323021252,-72.80537315978837,-72.77737715773421,-72.74930766693434,-72.72116710412321,-72.69295785948373,-72.66468229645953,-72.63634275173672,-72.60794153535853,-72.5794809309431,-72.55096319597973,-72.52239056218356,-72.49376523589258,-72.4650893984936,-72.4363652068665,-72.40759479383826,-72.37878026863997,-72.3499237173613,-72.32102720339834,-72.29209276789138,-72.26312243015036,-72.23411818806612,-72.20508201850593,-72.17601587769283,-72.14692170156792,-72.11780140613554,-72.08865688779127,-72.05949002363293,-72.03030267175478,-72.00109667152549,-71.97187384385016,-71.9426357867375,-71.91338411698655,-71.88412047230928,-71.85484650460832,-71.82556387438788,-71.79627424611351,-71.76697928436666,-71.73768065066459,-71.70838000083714,-71.67907898286924,-71.64977923513261,-71.62048238494232,-71.59119004738437,-71.56190382436884,-71.53262530387047,-71.50335605932494,-71.47409764915382,-71.44485161639595,-71.41561948842632,-71.38640277674676,-71.35720297683545,-71.32802156804401,-71.29886001353347,-71.26971976024123,-71.24060223887287,-71.21150886391364,-71.18244103365542,-71.15340013023553,-71.12438751968456,-71.09540455198113,-71.0664525611113,-71.03753286513151,-71.00864676623364,-70.97979555081135,-70.95098025376163,-70.92220183916436,-70.89346131439066,-70.86475972046033,-70.83609812389592,-70.8074776098471,-70.77889927629282,-70.75036422915878,-70.7218735782117,-70.69342843361301,-70.66502990303216,-70.63667908923462,-70.60837708807233,-70.5801249868153,-70.55192386277199,-70.52377478215396,-70.49567879914721,-70.46763695515774,-70.43965027820421,-70.41171978243439,-70.38384646774567,-70.35603131949294,-70.3282753082696,-70.30057938974966,-70.27294450458085,-70.24537157832,-70.21786152140359,-70.19041522914718,-70.16303358176869,-70.13571744443121,-70.10846766730161,-70.081285085622,-70.05417051979151,-70.02712477545629,-70.00014864360585,-69.9732429006746,-69.94640782955135,-69.91964378355893,-69.89295117630093,-69.86633047022531,-69.83978216687159,-69.8133067985604,-69.78690492131925,-69.76057710886766,-69.73432394751056,-69.70814603180989,-69.68204396092311,-69.65601833551304,-69.6300697551468,-69.60419881611347,-69.5784061095996,-69.55269222017101,-69.5270577245157,-69.50150319040976,-69.47602917587324,-69.45063622848765,-69.42532488485102,-69.40009567014935,-69.37494909782701,-69.34988566934051,-69.32490587398269,-69.30001018876622,-69.2751990783567,-69.25047299504735,-69.22583237876813,-69.20127765712382,-69.17680924545543,-69.15242754692116,-69.12813295259309,-69.10392584156652,-69.07980658107954,-69.0557755266404,-69.03183302216122,-69.00797940009612,-68.98421498158281,-68.96053965881991,-68.93695317343789,-68.91345535432576,-68.89004610341424,-68.86672538344763,-68.84349320747339,-68.82034962981491,-68.79729473832577,-68.77432864775072,-68.7514514940428,-68.72866342950601,-68.70596461865097,-68.68335523466564,-68.66083545641706,-68.63840546591062,-68.61606544614378,-68.59381557929945,-68.57165604523152,-68.54958702020171,-68.52760867583203,-68.50572117824224,-68.48392468734593,-68.46221935628205,-68.44060533096217,-68.4190827497165,-68.39765174302369,-68.37631243331201,-68.35506493482055,-68.33390935351146,-68.31284578702481,-68.29187432466928,-68.27099504744261,-68.25020802807684,-68.22951333110387,-68.20891101293762,-68.18840112196965,-68.16798369867553,-68.14765877572964,-68.12742637812654,-68.10728652330718,-68.08723922128858,-68.067284474796,-68.04742227939633,-68.02765262363226,-68.00797548915627,-67.98839085086404,-67.96889823251296,-67.94949691969772,-67.93018630570971,-67.9109658756899,-67.8918351929013,-67.87279388684377,-67.85384164297047,-67.83497819379696,-67.81620331122082,-67.7975167998937,-67.77891849150801,-67.76040823987827,-67.74198591671285,-67.72365140798496,-67.7054046108239,-67.68724543085747,-67.66917377994542,-67.65118957425186,-67.63329273261077,-67.61548317514524,-67.59776082210583,-67.58012559289791,-67.5625774052723,-67.5451161746559,-67.52774181360333,-67.51045423135174,-67.49325333346465,-67.47613902155133,-67.45911119305102,-67.44216974107205,-67.42531455427775,-67.40854551681164,-67.39186250825598,-67.37526540361809,-67.3587540733399,-67.34232838332677,-67.32598819499219,-67.30973336531532,-67.29356374690903,-67.2774791880962,-67.26147953299248,-67.24556462159413,-67.22973428986927,-67.21398836985193,-67.19832668973754,-67.1827490739794,-67.16725534338529,-67.15184531521389,-67.13651880327035,-67.12127561800082,-67.10611556658567,-67.09103845303108,-67.07604407825885,-67.06113224019442,-67.0463027338529,-67.03155535142294,-67.01688988234875,-67.00230611340987,-66.9878038287989,-66.97338214574584,-66.95904016087728,-66.94477708140346,-66.93059220985907,-66.91648493081276,-66.90245469929704,-66.88850103074172,-66.87462349222103,-66.86082169484855,-66.84709528717488,-66.83344394946086,-66.81986738871547,-66.80636533440094,-66.79293753472004,-66.77958375341116,-66.7663037669858,-66.75309736235168,-66.7399643347715,-66.72690448611363,-66.7139176233567,-66.70100355731483,-66.68816210155404,-66.6753930714748,-66.66269628353818,-66.65007155461637,-66.63751870145059,-66.62503754020157,-66.61262788608003,-66.6002895530455,-66.58802235356423,-66.57582609841735,-66.5637005965522,-66.55164565497019,-66.53966107864593,-66.52774667047258,-66.51590223122943,-66.50412755956815,-66.49242245201445,-66.48078670298271,-66.46922010480108,-66.45772244774528,-66.4462935200793,-66.43493310810153,-66.42364099619533,-66.41241696688262,-66.40126080087997,-66.3901722771563,-66.3791511729915,-66.3681972640356,-66.35731032436794,-66.34649012655608,-66.335736441714,-66.32504903955967,-66.31442768847137,-66.30387215554302,-66.29338220663817,-66.28295760644266,-66.27259811851583,-66.2623035053403,-66.2520735283703,-66.24190794807853,-66.23180652400151,-66.2217690147835,-66.21179517821902,-66.20188477129393,-66.19203755022515,-66.18225327049907,-66.17253168690867,-66.16287255358935,-66.15327562405366,-66.14374065122473,-66.13426738746873,-66.1248555846261,-66.11550499404194,-66.10621536659525,-66.09698645272731,-66.08781800246912,-66.07870976546803,-66.06966149101345,-66.06067292806183,-66.05174382526094,-66.0428739309733,-66.03406299329897,-66.02531076009777,-66.01661697901069,-66.0079813974809,-65.99940376277401,-65.99088377656626,-65.98242054237429,-65.9740132660809,-65.96566124243702,-65.95736384325767,-65.94912050710396,-65.94093073026829,-65.93279405890245,-65.92471008214751,-65.9166784261422,-65.90869874880092,-65.90077073526611,-65.89289409395134,-65.8850685531015,-65.8772938578056,-65.86956976740554,-65.86189605325112,-65.8542724967577,-65.84669888772812,-65.83917502290547,-65.83170070472704,-65.824275740254,-65.81689994025369,-65.80957311841529,-65.80229509068087,-65.79506567467733,-65.78788468923527,-65.78075195398368,-65.77366728901004,-65.76663051457696,-65.75964145088777,-65.75269991789408,-65.74580573513958,-65.738958721635,-65.7321586957595,-65.72540547518489,-65.71869887681915,-65.71203871676639,-65.70542481030066,-65.69885697185144,-65.69233501499896,-65.68585875247757,-65.67942799618595,-65.67304255720276,-65.66670224580682,-65.66040687150081,-65.65415624303789,-65.6479501684504,-65.6417884550802,-65.63567090961031,-65.62959733809706,-65.62356754600289,-65.61758133822927,-65.6116385191495,-65.60573889264128,-65.599882262119,-65.59406843056529,-65.58829720056218,-65.58256837432144,-65.57688175371419,-65.5712371402998,-65.56563433535388,-65.56007313989551,-65.55455335471362,-65.54907478039254,-65.54363721733671,-65.53824046579454,-65.5328843258816,-65.52756859760282,-65.52229308087419,-65.51705757554343,-65.51186188141021,-65.50670579824549,-65.50158912581033,-65.49651166387396,-65.49147321223133,-65.48647357071995,-65.48151253923635,-65.47658991775181,-65.4717055063277,-65.46685910513025,-65.462050514445,-65.45727953469057,-65.4525459664322,-65.44784961039481,-65.44319026747567,-65.4385677387567,-65.43398182551644,-65.42943232924165,-65.42491905163862,-65.42044179464418,-65.41600036043634,-65.4115945514448,-65.407224170361,-65.40288902014815,-65.39858890405077,-65.39432362560416,-65.3900929886436,-65.38589679731336,-65.38173485607545,-65.37760696971823,-65.37351294336477,-65.36945258248113,-65.36542569288434,-65.36143208075033,-65.35747155262159,-65.35354391541475,-65.34964897642799,-65.34578654334831,-65.34195642425865,-65.33815842764486,-65.33439236240253,-65.33065803784378,-65.32695526370381,-65.32328385014739,-65.31964360777525,-65.31603434763028,-65.31245588120372,-65.30890802044117,-65.3053905777485,-65.30190336599769,-65.29844619853256,-65.29501888917436,-65.29162125222733,-65.28825310248412,-65.28491425523112,-65.2816045262537,-65.27832373184143,-65.27507168879306,-65.27184821442158,-65.26865312655909,-65.26548624356161,-65.26234738431384,-65.25923636823379,-65.25615301527736,-65.25309714594287,-65.25006858127543,-65.2470671428713,-65.24409265288219,-65.24114493401937,-65.23822380955788,-65.23532910334052,-65.23246063978183,-65.22961824387203,-65.22680174118076,-65.22401095786095,-65.22124572065245,-65.21850585688561]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1106\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1107\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1102\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1103\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1104\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1115\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1109\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1110\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1111\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.93538594824155,-64.85567106622491,-64.7421895215917,-64.59850082631391,-64.42782873073864,-64.2330940697558,-64.0169437593253,-63.78177645050994,-63.52973963383349,-63.26277438976335,-62.98263543733259,-62.69090483800934,-62.38897200114539,-62.078084944270294,-61.75936164001186,-61.43376297186855,-61.1021279973203,-60.765195336817015,-60.42356783643669,-60.07774358880352,-59.728141839495095,-59.375049519333295,-59.01866785368003,-58.6591344429509,-58.29643881336777,-57.93050853768526,-57.56119642047543,-57.18821046806506,-56.81120702232628,-56.429724962668416,-56.04318118971834,-55.65093949204756,-55.25216221943077,-54.845931728334506,-54.43119268424509,-54.00668985100294,-53.57108619299188,-53.12271425943843,-52.6597916864331,-52.18019953289119,-51.72339424934042,-51.28235489518952,-50.85042880416219,-50.4212699002511,-49.98865029742721,-49.54659423001409,-49.08893114854003,-48.60956628314978,-48.10202520559616,-47.559600188883735,-46.974892579813044,-46.339949185344466,-45.64562506366333,-44.88162982602735,-44.036149818787386,-43.09535203402653,-42.04288260020619,-40.85939843801685,-39.52179866852613,-38.002488930618306,-36.268639006373206,-34.281160100490254,-31.994169837712256,-29.354749398516383,-26.304115087301867,-22.78055849412855,-18.726458184221187,-14.101212241321273,-8.90152720127092,-3.1888949850765176,2.884237438723927,9.065773190816149,15.030705895952192,20.44735539191572,25.05826962482452,28.73574493058252,31.48627177069815,33.41314637700453,34.66451630081989,35.39110242334699,35.72254529323123,35.75972183839812,35.57642538605371,35.224782422106735,34.74110096482446,34.150752107273526,33.471783007393654,32.71741258939222,31.897681695948982,31.020524778585855,30.092458183205252,29.119020279138514,28.10504838234548,27.054859474128772,25.972367481209588,24.861161089048533,23.72455625353342,22.565628591491414,21.387237391940992,20.19204300079508,18.982520027772892,17.760967913876854,16.529517994381333,15.290144514456088,14.044671080623129,12.794777338883417,11.54199385082306,10.287722687023606,9.033245953672616,7.779730367856143,6.528205021202863,5.279602467984663,4.034765673828877,2.7944499066573822,1.5592817390669587,0.32981985687603443,-0.8934376167194564,-2.110055035034096,-3.319695187442366,-4.522100745053109,-5.717045090791899,-6.904340922403943,-8.08384402198187,-9.255497322148404,-10.419318279710877,-11.575335310484505,-12.723602123755335,-13.86420630257916,-14.997274905859083,-16.12297870246062,-17.24163229340739,-18.353559778537818,-19.459114610389097,-20.558695844075313,-21.652760407237423,-22.741833321433482,-23.826516961513025,-24.907499932853046,-25.985565836529343,-27.061601996436096,-28.136673345695442,-29.211952249658363,-30.288716740069688,-31.368367432043566,-32.45243924669288,-33.54260897445635,-34.64069896185192,-35.74867667080884,-36.86864943536511,-38.00285335747519,-39.153636528831996,-40.32349963875272,-41.51493660515872,-42.73039306703331,-43.972201164338706,-45.242489115395095,-46.542984279800095,-47.87488746949399,-49.238704311846895,-50.633817612995664,-52.05832892938863,-53.50885137924999,-54.9798091161895,-56.46379258479625,-57.95067844078668,-59.42843906267284,-60.88266843285605,-62.297802627420786,-63.65745985814837,-64.94584172520288,-66.14893332779576,-67.25537999976139,-68.25755018069985,-69.15196582195493,-69.93922761922947,-70.62350952573098,-71.21174894737652,-71.71281501236483,-72.13653936647704,-72.49297800033246,-72.79180649931767,-73.04196330934667,-73.25142104563348,-73.42710327948491,-73.57491123682487,-73.69979262041453,-73.80584364503035,-73.89642317265096,-73.97426578633647,-74.04158637700579,-74.10017244567659,-74.1514639466942,-74.1966200874169,-74.23657434102398,-74.2720794148495,-74.30374366043287,-74.33206034566419,-74.35743106502629,-74.38018439037603,-74.40059068995681,-74.41887388188304,-74.43522074650006,-74.44978830141179,-74.46270964267127,-74.47409857354133,-74.48405327581791,-74.4926592254322,-74.49999151157708,-74.5061166849058,-74.51109423370377,-74.51497776591387,-74.51781595834294,-74.51965332135511,-74.52053081712042,-74.52048636144129,-74.51955523285505,-74.51777040773776,-74.51516283622294,-74.5117616706692,-74.50759445598452,-74.50268728920146,-74.49706495418724,-74.49075103617848,-74.48376801988599,-74.47613737416599,-74.46787962566067,-74.45901442333862,-74.4495605954902,-74.43953620043386,-74.42895857194979,-74.41784436026673,-74.40620956927435,-74.39406959051085,-74.38143923437626,-74.36833275894274,-74.35476389666852,-74.34074587927006,-74.32629146096504,-74.31141294026399,-74.29612218046081,-74.28043062894916,-74.26434933547313,-74.24788896940504,-74.23105983613048,-74.21387189261006,-74.19633476217862,-74.17845774863541,-74.16024984967221,-74.14171976968171,-74.1228759319836,-74.10372649050232,-74.08427934092741,-74.06454213138403,-74.04452227263971,-74.0242269478706,-74.00366312200909,-73.98283755069295,-73.9617567536893,-73.9404270614971,-73.9188546308921,-73.89704545002401,-73.87500534369246,-73.85273997871874,-73.83025486934834,-73.80755538263348,-73.78464674375668,-73.76153404126516,-73.73822223219368,-73.7147161470591,-73.69102049471479,-73.66713986705675,-73.64307874357591,-73.6188414957543,-73.59443239130363,-73.569855598247,-73.54511518884517,-73.52021514336992,-73.49515935372756,-73.46995162693607,-73.44459568845991,-73.4190951854066,-73.39345368958924,-73.36767470045956,-73.34176164791582,-73.31571789498992,-73.28954674041815,-73.26325142109985,-73.23683511444827,-73.21030094063752,-73.18365196475,-73.1568911988278,-73.1300216038321,-73.10304609151424,-73.07596752620171,-73.04878872650282,-73.02151246693316,-72.99414147946705,-72.9666784305793,-72.93912586223912,-72.9114863061811,-72.88376227972306,-72.85595628250333,-72.82807079396903,-72.80010827147652,-72.77207114888971,-72.74396183558206,-72.71578271576429,-72.68753614807402,-72.6592244653745,-72.63084997471913,-72.60241495744592,-72.57392166937306,-72.54537234107129,-72.51676917819364,-72.48811436184685,-72.45941004899124,-72.43065837285884,-72.40186144338135,-72.37302134762125,-72.34414015020076,-72.31521989372469,-72.28626259919372,-72.25727026640592,-72.22824487434474,-72.19918838155198,-72.17010272648517,-72.14098982785872,-72.11185158496858,-72.08268987800041,-72.0535065683215,-72.02430349875655,-71.99508249384793,-71.96584532443924,-71.93659357327881,-71.9073288509571,-71.87805278806773,-71.84876702868155,-71.81947322492044,-71.79017303245232,-71.76086810675748,-71.731560100041,-71.7022506586854,-71.6729414211557,-71.64363401628198,-71.6143300618574,-71.58503116349915,-71.55573891372826,-71.52645489123138,-71.49718066027349,-71.46791777023549,-71.43866775525501,-71.40943213395205,-71.38021240922427,-71.35101006809924,-71.32182658163298,-71.29266340484592,-71.26352197668918,-71.23440372003468,-71.20531004168458,-71.17624233239547,-71.1472019669142,-71.11819030402248,-71.08920868658811,-71.06025844162083,-71.0313408803316,-71.00245729819393,-70.97360897500657,-70.94479686537795,-70.91602194035704,-70.8872852122585,-70.85858772534243,-70.829930547942,-70.80131476581977,-70.77274147656681,-70.74421178488716,-70.71572679863377,-70.6872876254824,-70.65889537014667,-70.63055113205229,-70.6022560034005,-70.57401106756123,-70.54581739774557,-70.51767605591425,-70.48958809188584,-70.46155454261324,-70.43357643160239,-70.40565476845022,-70.37779054848329,-70.34998475248061,-70.32223834646695,-70.29455228156509,-70.26692749389724,-70.23936490452711,-70.21186541943578,-70.18442992952549,-70.15705931064623,-70.12975442364105,-70.10251611440664,-70.07534521396614,-70.04824253855186,-70.02120888969576,-69.99424505432616,-69.967351702146,-69.9405291268452,-69.91377769312389,-69.88709782368397,-69.86048998813,-69.83395469350513,-69.80749247622829,-69.78110389523195,-69.75478952612927,-69.72854995626324,-69.70238578051192,-69.67629759774138,-69.65028600781349,-69.6243516090688,-69.5984949962158,-69.57271675856799,-69.5470174785778,-69.52139773062427,-69.49585808001702,-69.47039908218441,-69.44502128201871,-69.41972521335428,-69.39451139855889,-69.36938034822072,-69.34433256091619,-69.31936852304592,-69.29448870872812,-69.26969357973985,-69.24498358549849,-69.22035916307661,-69.1958207372445,-69.17136872053544,-69.14700351332957,-69.12272550395302,-69.09853506878915,-69.07443257239943,-69.05041836765203,-69.02649279585611,-69.00265618690061,-68.978908859396,-68.95525056064534,-68.93168105296131,-68.90820018263402,-68.88480786616951,-68.86150407845531,-68.83828884259006,-68.81516222115037,-68.7921243086993,-68.76917522536709,-68.74631511135836,-68.72354412225897,-68.70086242503358,-68.67827019461903,-68.65576761103186,-68.63335485691896,-68.61103211549003,-68.58879956877891,-68.56665739618755,-68.5446057732731,-68.52264487074369,-68.50077485363292,-68.4789958806278,-68.45730810352745,-68.43571166681369,-68.41420670731682,-68.39279335396243,-68.3714717275868,-68.35024194081032,-68.32910409795996,-68.30805829503275,-68.28710461969368,-68.2662431513022,-68.24547396096247,-68.22479711159295,-68.20421265801198,-68.18372064703611,-68.16332111758858,-68.1430141008159,-68.12279962021046,-68.10267769173772,-68.08264832396664,-68.0627115182022,-68.04286726861918,-68.02311556239628,-68.00345637985022,-67.9838896945689,-67.96441485492244,-67.94503117268498,-67.92573806357625,-67.90653503191221,-67.88742165731034,-67.86839758318094,-67.84946250677127,-67.83061617055965,-67.81185835482307,-67.79318887122496,-67.77460755728946,-67.75611427164597,-67.7377088899426,-67.71939130134041,-67.70116140551163,-67.68301911007492,-67.66496432840945,-67.64699697779704,-67.62911697784826,-67.6113242491739,-67.5936187122687,-67.57600028657775,-67.55846888972081,-67.5410244368521,-67.52366684013676,-67.50639600832733,-67.48921184642582,-67.47211425541896,-67.45510313207582,-67.4381783687984,-67.42133985351721,-67.40458746962474,-67.38792109594094,-67.37134060670532,-67.35484587159142,-67.33843675573968,-67.32211311980538,-67.305874820019,-67.2897217082564,-67.2736536321169,-67.2576704350075,-67.24177195623156,-67.22595803108109,-67.21022849093117,-67.19458316333592,-67.1790218721251,-67.16354443750085,-67.14815067613395,-67.13284040125941,-67.11761342277069,-67.10246954731265,-67.08740857837286,-67.07243031637107,-67.05753455874681,-67.04272110004501,-67.02798973199954,-67.01334024361468,-66.99877242124457,-66.98428598187284,-66.96987992646042,-66.95555337971318,-66.94130557312575,-66.92713583020826,-66.91304355362084,-66.89902821397516,-66.88508934009266,-66.87122651053582,-66.8574393462514,-66.8437275041851,-66.83009067174449,-66.81652856200253,-66.80304090954738,-66.78962746689594,-66.77628800139912,-66.76302229257544,-66.74983012981788,-66.73671131042555,-66.72366563791792,-66.7106929205947,-66.69779297030892,-66.68496560142523,-66.67221062993845,-66.65952787273112,-66.64691714695117,-66.63437826949323,-66.62191105656939,-66.60951532335709,-66.59719088371298,-66.58493754994372,-66.57275513262516,-66.56064344046312,-66.54860228018934,-66.53663145648738,-66.52473077194382,-66.51290002702075,-66.50113902004607,-66.48944754721863,-66.47782540262568,-66.46627237827039,-66.45478826410748,-66.44337284808552,-66.43202591619433,-66.42074725251646,-66.40953663928157,-66.39839385692304,-66.38731868413608,-66.3763108979366,-66.36537027372052,-66.35449658532292,-66.34368960507699,-66.33294910387212,-66.32227485121128,-66.31166661526716,-66.3011241629373,-66.2906472598978,-66.2802356706557,-66.26988915859994,-66.25960748605081,-66.24939041430807,-66.23923770369737,-66.22914911361542,-66.21912440257358,-66.20916332824008,-66.19926564748083,-66.18943111639885,-66.17965949037244,-66.169950524092,-66.16030397159567,-66.15071958630374,-66.1411971210519,-66.13173632812348,-66.12233695928046,-66.11299876579365,-66.1037214984717,-66.09450490768938,-66.08534874341478,-66.07625275523576,-66.06721669238556,-66.05824030376762,-66.04932333797963,-66.04046554333692,-66.03166666789511,-66.02292645947212,-66.01424466566958,-66.00562103389365,-65.99705531137518,-65.98854702046934,-65.98009529222232,-65.97169935644435,-65.96335852866171,-65.95507219870777,-65.9468398207514,-65.93866090458633,-65.9305350080257,-65.92246173026597,-65.91444070610021,-65.90647160087589,-65.89855410610467,-65.89068793564347,-65.88287282237543,-65.87510851532848,-65.86739477717659,-65.8597313820757,-65.85211811379209,-65.84455476408607,-65.83704113131864,-65.82957701925262,-65.82216223602317,-65.81479659325595,-65.80747990531374,-65.80021198865475,-65.79299266128781,-65.7858217423118,-65.77869905152791,-65.77162440911508,-65.76459763535982,-65.75761855043324,-65.75068697420838,-65.74380272611256,-65.73696562500946,-65.73017548910678,-65.72343213588579,-65.7167353820493,-65.71008504348545,-65.70348093524481,-65.69692287152854,-65.69041066568596,-65.68394413021988,-65.67752307679837,-65.67114731627163,-65.66481665869328,-65.65853091334488,-65.65228988876314,-65.64609339276923,-65.63994123249948,-65.63383321443716,-65.627769144445,-65.62174882779799,-65.61577206921633,-65.60983867289829,-65.60394844255268,-65.598101181431,-65.59229669235904,-65.58653477776772,-65.58081523972338,-65.57513787995723,-65.56950249989401,-65.5639089006799,-65.55835688320947,-65.55284624815194,-65.5473767959765,-65.5419483269769,-65.5365606412951,-65.53121353894424,-65.52590681983082,-65.52064028377602,-65.51541373053642,-65.51022695982394,-65.5050797713251,-65.49997196471963,-65.49490333969851,-65.48987369598126,-65.48488283333279,-65.47993055157964,-65.47501665062568,-65.4701409304673,-65.46530319120815,-65.46050323307337,-65.45574085642342,-65.45101586176746,-65.44632804977634,-65.44167722129522,-65.43706317735578,-65.43248571918812,-65.42794464823236,-65.42343976614981,-65.41897087483399,-65.41453777642121,-65.41014027330101,-65.40577816812622,-65.40145126382284,-65.39715936359966,-65.39290227095765,-65.38867978969913,-65.38449172393673,-65.38033787810214,-65.37621805695467,-65.37213206558961,-65.36807970944646,-65.36406079431691,-65.36007512635273,-65.35612251207341,-65.35220275837379,-65.34831567253137,-65.34446106221357,-65.34063873548486,-65.33684850081373,-65.33309016707952,-65.32936354357912,-65.32566844003358,-65.3220046665946,-65.31837203385082,-65.31477035283415,-65.3111994350258,-65.3076590923624,-65.30414913724185,-65.30066938252916,-65.29721964156218,-65.29379972815718,-65.29040945661443,-65.28704864172353,-65.28371709876885,-65.28041464353471,-65.27714109231056,-65.27389626189603,-65.27067996960594,-65.26749203327515,-65.26433227126343,-65.26120050246017,-65.258096546289,-65.2550202227124,-65.25197135223621,-65.24894975591398,-65.24595525535138,-65.24298767271041,-65.24004683071362,-65.23713255264822,-65.23424466237012,-65.23138298430788,-65.22854734346666,-65.225737565432,-65.22295347637359,-65.22019490304896,-65.21746167280712,-65.21475361359208,-65.21207055394635,-65.20941232301433,-65.20677875054574,-65.20416966689878,-65.20158490304345,-65.1990242905647,-65.1964876616654,-65.19397484916955,-65.19148568652508,-65.18902000780686,-65.18657764771945,-65.18415844159992,-65.18176222542058,-65.1793888357916,-65.17703810996356,-65.17470988583008,-65.1724040019302]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1116\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1117\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1112\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1113\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1114\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1052\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1065\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1066\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1067\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1068\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1074\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1073\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1075\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1076\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1077\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1060\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1061\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1062\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1063\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1055\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1056\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1057\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1058\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1059\",\"attributes\":{\"axis\":{\"id\":\"p1055\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1064\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1060\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1087\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1088\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1084\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1098\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1095\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1108\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1105\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1118\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1115\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"dc535127-93d0-42f6-ad33-9c3e6f791907\",\"roots\":{\"p1044\":\"b805d0b3-9b37-4546-ab9d-d15a7738bf7e\"},\"root_ids\":[\"p1044\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1044" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " n.finitialize(-65 * mV)\n", " n.continuerun(25 * ms)\n", " f.line(t, list(soma_v), line_width=2, legend_label=\"amp=%g\" % amp, color=color)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `for` loop syntax as used here is looping over amplitude, color pairs. The only potential \"gotcha\" here is the need to make a copy of the values by passing in `list(soma_v)` instead of `soma_v`. If this copying was omitted, only the last set of values would be plotted." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Plotting both the dendrite and the soma" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To plot the dendrite potential, we need to record it in a NEURON Vector:" ] }, { "cell_type": "code", "execution_count": 46, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:43.062216Z", "iopub.status.busy": "2025-08-18T03:35:43.061935Z", "iopub.status.idle": "2025-08-18T03:35:43.067034Z", "shell.execute_reply": "2025-08-18T03:35:43.066669Z" } }, "outputs": [], "source": [ "dend_v = n.Vector().record(my_cell.dend(0.5)._ref_v)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that we do not need to reassign the existing time and soma membrane potential recording vectors." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The running and plotting code is very similar to the above; the only difference is one additional call to the `line` method to plot the `dend_v` using a dashed line without a separate legend entry:" ] }, { "cell_type": "code", "execution_count": 47, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:43.071501Z", "iopub.status.busy": "2025-08-18T03:35:43.068456Z", "iopub.status.idle": "2025-08-18T03:35:43.275824Z", "shell.execute_reply": "2025-08-18T03:35:43.275414Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"1666a7c4-5d81-430e-a52f-f385139a3979\":{\"version\":\"3.7.2\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1119\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1120\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1121\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1128\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1129\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1126\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1159\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1153\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1154\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1155\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.96692100902152,-64.94701564616963,-64.9186685641677,-64.88276928367466,-64.84012318892181,-64.79145982447847,-64.73744029705793,-64.67866388450894,-64.6156739445351,-64.54896320574001,-64.47897851394293,-64.4061250977164,-64.33077040894594,-64.25324758696883,-64.1738585884989,-64.09287702003475,-64.0105507046985,-63.92710401137687,-63.84273091316948,-63.757605591706714,-63.6718855389204,-63.5857130232166,-63.499216432838445,-63.41251150685131,-63.325702463153604,-63.23888303202764,-63.15213740296994,-63.065541091859856,-62.97916173492216,-62.893056648071386,-62.80726694060401,-62.721829191409675,-62.6367758371143,-62.552135535325746,-62.46793350344035,-62.38419183371876,-62.30092978551989,-62.21816405570569,-62.135909028309875,-62.054177004609095,-61.983482906983866,-61.92274538761009,-61.87098368994225,-61.8273179919356,-61.79095921893715,-61.76119986027501,-61.73740567352779,-61.71900818251027,-61.7054978908438,-61.69641814448704,-61.691359585112956,-61.68995514265691,-61.69187552037852,-61.696825129827644,-61.70453843649505,-61.71477667987217,-61.727324934284724,-61.741989479292606,-61.75859545072198,-61.77698474554734,-61.79701415589137,-61.8185537093655,-61.841485194837595,-61.86570085448365,-61.89110222465631,-61.91759910968126,-61.945108674172204,-61.97355464083502,-62.00286658201234,-62.03297862873772,-62.06382336044991,-62.09533836941806,-62.12746575785017,-62.1601516923688,-62.193346009307504,-62.227001864991124,-62.26107542580365,-62.29552559342395,-62.33031376112744,-62.365403597515915,-62.40076085445295,-62.4363531963529,-62.472150048301835,-62.50812246078267,-62.54424298903801,-62.58048558533583,-62.616825502608464,-62.653239208117185,-62.6897043059552,-62.72619946734395,-62.76270436780274,-62.7991996303823,-62.83566677425015,-62.872088168001376,-62.90844698714393,-62.94472717527398,-62.98091340851517,-63.01699106284718,-63.05294295489739,-63.088749490064906,-63.124392760536324,-63.1598563817407,-63.19512534773804,-63.2301859032119,-63.26502543002778,-63.29963234657303,-63.33399601831618,-63.36810667821787,-63.401955355795394,-63.43553381379165,-63.46883449152933,-63.50185045414513,-63.53457534699854,-63.56700335463705,-63.59912916377629,-63.63094792982029,-63.662455246506134,-63.693647118308405,-63.7245199352839,-63.75507045007663,-63.78529575683752,-63.81519327184361,-63.84476071562794,-63.87399609645461,-63.9028976949937,-63.93146405006864,-63.959693945364215,-63.98758639699681,-64.01514064186078,-64.04235393996359,-64.06922238139809,-64.09574289797693,-64.12191316355064,-64.1477315065324,-64.17319683308897,-64.19830855965535,-64.22306655360251,-64.24747108103732,-64.27152276084364,-64.2952225241867,-64.3185715788018,-64.34157137747376,-64.36422359018901,-64.38653007950717,-64.40849287875594,-64.43011417270347,-64.45139628040495,-64.47234163995884,-64.49295279494098,-64.5132323823138,-64.53318312163339,-64.55280780539883,-64.57210929040828,-64.59109049000234,-64.60975436709086,-64.6281039278715,-64.64614221616046,-64.66387230826483,-64.6812973083355,-64.69842034414646,-64.71524456325328,-64.73177312948943,-64.74800921976377,-64.76395602112744,-64.77961672808182,-64.79499454010305,-64.8100926593612,-64.82491428861493,-64.83946262926484,-64.85374087955046,-64.8677522328778,-64.88149987626593,-64.89498698890192,-64.90821674079535,-64.92119229152418,-64.93391678906455,-64.94639336869832,-64.95862515199248,-64.97061524584518,-64.982366741594,-64.99388271418204,-65.00516622137818,-65.01621975285084,-65.02704524302274,-65.03764480872651,-65.04802072045615,-65.05817537729733,-65.06811128507586,-65.07783103732126,-65.08733729869293,-65.09663279056021,-65.1057202784664,-65.1146025612403,-65.1232824615482,-65.13176281770532,-65.14004647658797,-65.14813628750755,-65.15603509692495,-65.16374574389867,-65.17127105617386,-65.17861384683034,-65.1857769114186,-65.19276302552105,-65.19957494268411,-65.20621539267329,-65.21268708000936,-65.21899268274925,-65.22513485147962,-65.23111620849534,-65.2369393471382,-65.24260683127505,-65.24812119489626,-65.25348494181864,-65.25870054547856,-65.26377044880292,-65.26869706414722,-65.27348277329146,-65.27812992748557,-65.28264084753735,-65.28701782393689,-65.29126311701181,-65.29537895710892,-65.29936754479823,-65.30323105109561,-65.3069716177014,-65.31059135725201,-65.31409235358245,-65.3174766619978,-65.32074630955181,-65.3239032953313,-65.32694959074512,-65.32988713981639,-65.33271785947743,-65.33544363986614,-65.33806634462364,-65.34058781119222,-65.34300985111325,-65.34533425032463,-65.34756276945738,-65.34969714413121,-65.35173908524852,-65.35369027928695,-65.35555238859006,-65.3573270516561,-65.35901588342482,-65.36062047556194,-65.36214239674159,-65.36358319292624,-65.36494438764447,-65.36622748226617,-65.3674339562754,-65.36856526754077,-65.3696228525833,-65.37060812684187,-65.37152248493607,-65.37236730092661,-65.37314392857326,-65.37385370159014,-65.37449793389868,-65.37507791987798,-65.3755949346127,-65.37605023413852,-65.37644505568502,-65.37678061791627,-65.37705812116876,-65.3772787476871,-65.37744366185714,-65.37755401043674,-65.37761092278411,-65.37761551108383,-65.37756887057037,-65.37747207974934,-65.37732620061634,-65.3771322788735,-65.37689134414367,-65.3766044101823,-65.37627247508698,-65.3758965215048,-65.37547751683731,-65.37501641344325,-65.37451414883911,-65.37397164589736,-65.37338981304245,-65.37276954444472,-65.37211172021198,-65.37141720657897,-65.3706868560947,-65.36992150780749,-65.36912198744807,-65.36828910761041,-65.36742366793048,-65.36652645526294,-65.36559824385576,-65.36463979552268,-65.36365185981379,-65.36263517418391,-65.36159046415908,-65.36051844350096,-65.3594198143693,-65.35829526748243,-65.35714548227575,-65.35597112705841,-65.35477285916788,-65.35355132512281,-65.35230716077386,-65.35104099145275,-65.34975343211939,-65.3484450875072,-65.3471165522667,-65.34576841110707,-65.34440123893621,-65.3430156009988,-65.34161205301268,-65.34019114130362,-65.33875340293815,-65.33729936585489,-65.33582954899403,-65.33434446242529,-65.33284460747416,-65.33133047684647,-65.32980255475148,-65.32826131702318,-65.32670723124016,-65.32514075684394,-65.32356234525555,-65.32197243999083,-65.32037147677406,-65.31875988365012,-65.31713808109524,-65.31550648212618,-65.31386549240811,-65.31221551036087,-65.310556927264,-65.30889012736027,-65.30721548795788,-65.30553337953123,-65.30384416582045,-65.3021482039295,-65.30044584442301,-65.29873743142178,-65.29702330269706,-65.2953037897635,-65.29357921797087,-65.29184990659459,-65.29011616892492,-65.28837831235509,-65.2866366384681,-65.28489144312246,-65.28314301653671,-65.2813916433728,-65.27963760281833,-65.27788116866768,-65.27612260940207,-65.27436218826844,-65.2726001633574,-65.27083678767993,-65.2690723092432,-65.26730697112528,-65.26554101154882,-65.26377466395374,-65.26200815706895,-65.26024171498304,-65.25847555721401,-65.25670989877813,-65.25494495025768,-65.25318091786795,-65.2514180035232,-65.24965640490176,-65.2478963155102,-65.2461379247467,-65.24438141796344,-65.24262697652819,-65.24087477788507,-65.23912499561445,-65.23737779949198,-65.23563335554692,-65.23389182611953,-65.2321533699178,-65.23041814207326,-65.22868629419621,-65.22695797442994,-65.22523332750443,-65.22351249478919,-65.22179561434538,-65.22008282097724,-65.21837424628278,-65.21667001870381,-65.21497026357524,-65.21327510317371,-65.21158465676558,-65.20989904065416,-65.20821836822644,-65.20654274999903,-65.20487229366353,-65.2032071041313,-65.20154728357753,-65.19989293148478,-65.1982441446859,-65.1966010174063,-65.19496364130566,-65.19333210551918,-65.19170649669802,-65.19008689904942,-65.18847339437612,-65.18686606211527,-65.18526497937684,-65.18367022098144,-65.18208185949763,-65.18049996527874,-65.17892460649915,-65.17735584919012,-65.17579375727502,-65.17423839260415,-65.17268981498913,-65.17114808223663,-65.16961325018184,-65.16808537272134,-65.16656450184554,-65.16505068767074,-65.16354397847061,-65.16204442070736,-65.16055205906243,-65.15906693646673,-65.1575890941305,-65.15611857157272,-65.15465540665012,-65.1531996355858,-65.15175129299746,-65.15031041192518,-65.14887702385887,-65.14745115876535,-65.14603284511496,-65.14462210990791,-65.1432189787002,-65.14182347562918,-65.14043562343875,-65.13905544350425,-65.13768295585697,-65.1363181792083,-65.13496113097356,-65.13361182729551,-65.13227028306751,-65.13093651195636,-65.12961052642484,-65.12829233775386,-65.12698195606443,-65.12567939033919,-65.1243846484437,-65.1230977371474,-65.12181866214439,-65.12054742807368,-65.11928403853939,-65.11802849613056,-65.11678080244066,-65.11554095808687,-65.11430896272905,-65.11308481508853,-65.11186851296645,-65.11066005326205,-65.10945943199056,-65.10826664430088,-65.10708168449301,-65.10590454603523,-65.10473522158102,-65.10357370298577,-65.10241998132318,-65.10127404690152,-65.10013588927963,-65.09900549728259,-65.0978828590173,-65.0967679618878,-65.09566079261029,-65.094561337228,-65.0934695811259,-65.09238550904504,-65.09130910509684,-65.09024035277707,-65.0891792349797,-65.08812573401043,-65.0870798316002,-65.08604150891834,-65.0850107465856,-65.08398752468699,-65.08297182278443,-65.08196361992916,-65.08096289467404,-65.07996962508567,-65.0789837887562,-65.07800536281516,-65.07703432394098,-65.07607064837234,-65.07511431191944,-65.07416528997499,-65.07322355752513,-65.07228908916012,-65.07136185908493,-65.07044184112956,-65.06952900875936,-65.06862333508505,-65.06772479287265,-65.0668333545533,-65.06594899223282,-65.06507167770124,-65.06420138244212,-65.06333807764172,-65.06248173419803,-65.06163232272972,-65.06078981358488,-65.05995417684962,-65.05912538235661,-65.05830339969344,-65.0574881982108,-65.05667974703061,-65.055878015054,-65.05508297096912,-65.05429458325891,-65.05351282020861,-65.05273764991331,-65.05196904028527,-65.05120695906118,-65.0504513738092,-65.04970225193605,-65.04895956069386,-65.04822326718691,-65.04749333837835,-65.04676974109668,-65.04605244204228,-65.04534140779366,-65.04463660481375,-65.04393799945596,-65.04324555797031,-65.0425592465092,-65.04187903113338,-65.04120487781753,-65.04053675245602,-65.0398746208683,-65.03921844880445,-65.0385682019504,-65.03792384593328,-65.03728534632648,-65.03665266865478,-65.03602577839926,-65.03540464100224,-65.03478922187202,-65.0341794863876,-65.03357539990334,-65.03297692775347,-65.03238403525651,-65.03179668771975,-65.03121485044342,-65.03063848872499,-65.03006756786326,-65.02950205316245,-65.02894190993617,-65.02838710351129,-65.02783759923184,-65.02729336246271,-65.02675435859338,-65.02622055304148,-65.02569191125639,-65.02516839872267,-65.02464998096347,-65.02413662354392,-65.02362829207432,-65.0231249522134,-65.0226265696714,-65.02213311021325,-65.02164453966144,-65.02116082389908,-65.02068192887275,-65.02020782059529,-65.0197384651486,-65.01927382868637,-65.01881387743664,-65.01835857770449,-65.01790789587452,-65.0174617984133,-65.01702025187183,-65.01658322288793,-65.01615067818848,-65.01572258459173,-65.01529890900949,-65.01487961844929,-65.01446468001646,-65.01405406091621,-65.01364772845564,-65.01324565004565,-65.01284779320288,-65.01245412555159,-65.0120646148254,-65.01167922886914,-65.0112979356405,-65.01092070321174,-65.01054749977132,-65.01017829362547,-65.00981305319975,-65.00945174704054,-65.00909434381653,-65.00874081232007,-65.00839112146862,-65.00804524030606,-65.00770313800398,-65.00736478386293,-65.00703014731369,-65.0066991979184,-65.00637190537172,-65.006048239502,-65.00572817027222,-65.00541166778117,-65.00509870226439,-65.00478924409511,-65.00448326378523,-65.00418073198622,-65.00388161948999,-65.00358589722966,-65.00329353628045,-65.00300450786045,-65.00271878333128,-65.00243633419888,-65.00215713211415,-65.00188114887364,-65.00160835642014,-65.00133872684327,-65.0010722323801,-65.0008088454156,-65.00054853848324,-65.00029128426543,-65.00003705559396,-64.99978582545049,-64.99953754406374,-64.99929216163717,-64.99904963241235,-64.99880991415398,-64.99857296769922,-64.99833875656353,-64.9981072465961,-64.99787840567889,-64.99765220346369,-64.99742861114288,-64.99720760124941,-64.99698914748261,-64.99677322455646,-64.99655980806774,-64.99634887438137,-64.99614040053089,-64.99593436413227,-64.99573074330912,-64.99552951662821,-64.99533066304359,-64.99513416184864,-64.99493999263464,-64.9947481352553,-64.99455856979637,-64.99437127654959,-64.99418623599065,-64.99400342876035,-64.99382283564867,-64.99364443758145,-64.99346821560913,-64.99329415089736,-64.99312222471933,-64.99295241844939,-64.99278471355787,-64.99261909160694,-64.99245553424738,-64.99229402321599,-64.99213454033372,-64.9919770675043,-64.99182158671329,-64.99166808002755,-64.99151652959502,-64.99136691764468,-64.99121922648686,-64.99107343851355,-64.99092953619899,-64.9907875021003,-64.99064731885818,-64.9905089691977,-64.99037243592916,-64.99023770194884,-64.99010475023996,-64.98997356387349,-64.98984412600902,-64.98971641989559,-64.98959042887255,-64.98946613637031,-64.98934352591115,-64.98922258110996,-64.9891032856749,-64.98898562340814,-64.98886957820643,-64.98875513406178,-64.98864227506192,-64.98853098539094,-64.98842124932968,-64.98831305125624,-64.98820637564639,-64.98810120707392,-64.98799753021106,-64.9878953298287,-64.98779459079674,-64.98769529808433,-64.98759743676008,-64.98750099199225,-64.98740594904892,-64.98731229329813,-64.98722001020799,-64.98712908534675,-64.98703950438288,-64.9869512530851,-64.98686431732237,-64.98677868306397,-64.98669433637937,-64.98661126343822,-64.98652945051033,-64.98644888396552,-64.98636955027358,-64.98629143600411,-64.9862145278264,-64.98613881250931,-64.98606427692106,-64.98599090802908,-64.98591869289984,-64.98584761869864,-64.98577767268935,-64.98570884223426,-64.98564111479378,-64.98557447792622,-64.98550891928754,-64.98544442663108,-64.98538098780725,-64.98531859076328,-64.98525722354294,-64.98519687428619,-64.98513753122889,-64.98507918270248,-64.98502181713367,-64.98496542304407,-64.98490998904991,-64.98485550386161,-64.9848019562835,-64.98474933521344,-64.98469762964243,-64.98464682865425,-64.98459692142512,-64.98454789722327,-64.98449974540857,-64.98445245543218,-64.98440601683606,-64.98436041925268,-64.98431565240456,-64.98427170610384,-64.9842285702519,-64.98418623483896,-64.98414468994362,-64.98410392573248,-64.98406393245968,-64.98402470046648,-64.98398622018082,-64.98394848211694,-64.98391147687487,-64.98387519514,-64.98383962768268,-64.98380476535777,-64.98377059910415,-64.9837371199443,-64.98370431898384,-64.9836721874111,-64.98364071649664,-64.98360989759277,-64.98357972213316,-64.98355018163231,-64.98352126768516,-64.98349297196656,-64.98346528623081,-64.98343820231126,-64.98341171211977,-64.98338580764631,-64.98336048095842,-64.9833357242008,-64.9833115295948,-64.98328788943797,-64.98326479610361,-64.98324224204023,-64.98322021977116,-64.98319872189401,-64.98317774108025,-64.98315727007471,-64.98313730169508,-64.9831178288315,-64.98309884444603,-64.98308034157222,-64.98306231331459,-64.9830447528482,-64.98302765341813,-64.98301100833908,-64.9829948109948,-64.98297905483771,-64.98296373338836,-64.982948840235]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1160\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1161\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1156\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1157\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1158\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1170\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1164\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1165\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1166\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.70438495711106,-64.43603062866738,-64.18112603255737,-63.93873170817594,-63.70798203371414,-63.488079051820726,-63.27828684291008,-63.07792639351125,-62.88637091259024,-62.70304155372647,-62.52740350542447,-62.35896241574126,-62.19726112086078,-62.041876650299976,-61.89241748413335,-61.74852104001891,-61.60985136993604,-61.47609704843974,-61.346968968058874,-61.22219856569136,-61.1015362351651,-60.9847498676807,-60.871623509695056,-60.76195612866938,-60.65556047789322,-60.55226205231567,-60.45189812797362,-60.35431687821006,-60.2593765604288,-60.1669446739682,-60.0768969887283,-59.98911697083427,-59.903495250358624,-59.819929128126475,-59.73832211880008,-59.658583527609295,-59.580628058261,-59.50437544972174,-59.429750139723154,-59.356680952987645,-59.56793835577931,-59.76615143150689,-59.952280158481564,-60.12720738233165,-60.29174560660618,-60.446643150230024,-60.592589731774005,-60.73022153453209,-60.86012580121223,-60.98284500247835,-61.098880619507085,-61.208696577056024,-61.31272236021725,-61.41135584500348,-61.50496587014903,-61.59389457497719,-61.67845952586759,-61.758955651734354,-61.835657006983666,-61.908818378643595,-61.97867675273911,-62.045452653508924,-62.10935136771837,-62.170564065103946,-62.22926882488105,-62.28563157724758,-62.33980696791448,-62.39193915288134,-62.44216252994334,-62.490602393071256,-62.537375371242,-62.582590038043406,-62.626347473948904,-62.66874178547868,-62.70986058504583,-62.74978543491117,-62.78859225833428,-62.826351720707606,-62.863129583190336,-62.89898703111767,-62.93398097924424,-62.96816435568667,-63.00158636625634,-63.03429274071756,-63.06632596236631,-63.097725482199266,-63.12852791882999,-63.15876724520751,-63.18847496310149,-63.21768026623581,-63.24641019287813,-63.274689768626295,-63.30254214007172,-63.32998869996534,-63.35704920446187,-63.38374188297347,-63.410083541122646,-63.436089657247464,-63.461774377379186,-63.48715051486808,-63.51222967122556,-63.537022345695576,-63.5615380347152,-63.58578532229391,-63.60977196222578,-63.63350495294745,-63.65699060576527,-63.680234607096004,-63.7032420752957,-63.726017612589914,-63.74856535256365,-63.770889003621456,-63.79299188878519,-63.81487698215926,-63.83654694235952,-63.85800414317205,-63.87925070168199,-63.900288504088394,-63.9211192294008,-63.94174437119399,-63.96216525758101,-63.98238306954962,-64.0023988577939,-64.02221355816107,-64.04182800582248,-64.06124294826873,-64.0804590572197,-64.09947693953288,-64.1182971471862,-64.13692012173478,-64.15534616559057,-64.17357547432427,-64.19160816429917,-64.2094442962468,-64.22708389531564,-64.24452696805659,-64.2617735167493,-64.27882355142205,-64.2956770998723,-64.31233421595611,-64.32879498638022,-64.34505953620001,-64.36112803320144,-64.37700069132107,-64.39267777323928,-64.40815959226374,-64.42344651360528,-64.43853895513506,-64.45343738770013,-64.46814233506477,-64.48265437353558,-64.49697413132122,-64.5111022876706,-64.52503957182749,-64.53878676183469,-64.5523446832159,-64.56571420756036,-64.57889625103095,-64.59189177281448,-64.60470177352953,-64.61732729360558,-64.62976941164474,-64.64202924277595,-64.65410793701017,-64.66600667760349,-64.67772667943414,-64.68926918739854,-64.70063547483036,-64.71182684194638,-64.7228446143215,-64.73369014139581,-64.74436479501492,-64.75486996800542,-64.76520707278638,-64.77537754001764,-64.78538281728554,-64.79522436782622,-64.8049036692868,-64.81442221252426,-64.82378150044188,-64.83298304686303,-64.84202837544184,-64.8509190023385,-64.8596564201972,-64.86824210479286,-64.87667752047379,-64.88496412457309,-64.8931033709389,-64.90109671271381,-64.90894560447596,-64.91665150383987,-64.92421587260112,-64.93164017749817,-64.93892589065415,-64.94607448975297,-64.95308745799646,-64.95996628388254,-64.96671246083899,-64.97332748674205,-64.97981286334492,-64.98617009563768,-64.99240069115649,-64.99850615925753,-65.00448801036833,-65.01034775522749,-65.01608690412145,-65.02170696612598,-65.02720944835815,-65.03259585524398,-65.03786768780542,-65.04302644296983,-65.0480736129045,-65.0530106843777,-65.05783913814761,-65.0625604483801,-65.06717608209551,-65.07168749864492,-65.0760961492155,-65.08040347636498,-65.08461091358437,-65.08871988488876,-65.09273180443512,-65.09664807616657,-65.10047009348216,-65.10419923893127,-65.10783688393174,-65.11138438851076,-65.11484310106759,-65.11821435815718,-65.12149948429362,-65.12469979177278,-65.12781658051287,-65.13085113791225,-65.13380473872365,-65.13667864494383,-65.13947410571791,-65.14219235725764,-65.14483462277283,-65.14740211241515,-65.14989602323371,-65.15231753914166,-65.1546678308933,-65.15694805607089,-65.15915935908077,-65.16130287115823,-65.16337971038035,-65.16539098168674,-65.16733777690725,-65.16922117479653,-65.17104224107491,-65.1728020284751,-65.17450157679441,-65.17614191295215,-65.1777240510518,-65.17924899244767,-65.18071772581568,-65.182131227228,-65.18349046023127,-65.18479637592817,-65.18604991306202,-65.18725199810419,-65.18840354534414,-65.1895054569819,-65.19055862322261,-65.19156392237319,-65.19252222094076,-65.19343437373274,-65.19430122395848,-65.19512360333212,-65.19590233217683,-65.19663821952993,-65.19733206324909,-65.19798465011927,-65.19859675596041,-65.19916914573571,-65.1997025736604,-65.20019778331095,-65.20065550773454,-65.20107646955881,-65.2014613811018,-65.20181094448178,-65.2021258517274,-65.20240678488749,-65.20265441614089,-65.20286940790608,-65.20305241295057,-65.20320407449998,-65.20332502634682,-65.2034158929589,-65.20347728958725,-65.20350982237369,-65.20351408845775,-65.20349067608322,-65.20344016470403,-65.20336312508957,-65.20326011942933,-65.203131701437,-65.20297841645377,-65.20280080155104,-65.20259938563228,-65.20237468953437,-65.20212722612786,-65.20185750041679,-65.20156600963752,-65.20125324335676,-65.20091968356891,-65.20056580479246,-65.20019207416559,-65.19979895154091,-65.19938688957943,-65.19895633384348,-65.198507722889,-65.19804148835676,-65.19755805506281,-65.197057841088,-65.19654125786664,-65.19600871027427,-65.19546059671451,-65.19489730920506,-65.19431923346279,-65.19372674898791,-65.19312022914728,-65.19250004125685,-65.19186654666315,-65.19122010082393,-65.1905610533879,-65.18988974827361,-65.18920652374743,-65.18851171250061,-65.18780564172557,-65.18708863319121,-65.1863610033174,-65.18562306324867,-65.1848751189269,-65.18411747116328,-65.18335041570937,-65.18257424332735,-65.1817892398594,-65.18099568629623,-65.18019385884485,-65.17938402899547,-65.17856646358764,-65.17774142487548,-65.17690917059221,-65.17606995401388,-65.17522402402223,-65.17437162516686,-65.17351299772656,-65.17264837776995,-65.17177799721524,-65.17090208388942,-65.17002086158644,-65.16913455012494,-65.16824336540505,-65.16734751946453,-65.16644722053421,-65.16554267309266,-65.16463407792024,-65.16372163215239,-65.16280552933225,-65.16188595946258,-65.16096310905709,-65.16003716119097,-65.15910829555087,-65.15817668848413,-65.15724251304755,-65.15630593905522,-65.15536713312603,-65.15442625873038,-65.15348347623626,-65.15253894295483,-65.15159281318536,-65.15064523825947,-65.14969636658496,-65.1487463436889,-65.14779531226021,-65.14684341219176,-65.14589078062167,-65.14493755197437,-65.14398385800081,-65.14302982781838,-65.1420755879501,-65.14112126236343,-65.14016697250845,-65.1392128373556,-65.13825897343287,-65.13730549486249,-65.13635251339716,-65.13540013845575,-65.13444847715856,-65.13349763436202,-65.13254771269301,-65.13159881258271,-65.1306510322999,-65.12970446798387,-65.12875921367696,-65.12781536135648,-65.12687300096637,-65.12593222044829,-65.12499310577238,-65.12405574096756,-65.12312020815145,-65.1221865875598,-65.12125495757563,-65.12032539475791,-65.11939797386981,-65.11847276790664,-65.11754984812337,-65.1166292840618,-65.11571114357729,-65.11479549286517,-65.11388239648686,-65.11297191739544,-65.11206411696111,-65.11115905499607,-65.11025678977921,-65.10935737808047,-65.10846087518472,-65.10756733491542,-65.10667680965797,-65.10578935038272,-65.10490500666758,-65.10402382672044,-65.10314585740119,-65.10227114424352,-65.10139973147633,-65.10053166204493,-65.09966697763183,-65.09880571867738,-65.09794792440007,-65.09709363281651,-65.09624288076115,-65.09539570390581,-65.09455213677877,-65.0937122127838,-65.09287596421876,-65.09204342229405,-65.09121461715071,-65.09038957787835,-65.08956833253283,-65.08875090815361,-65.08793733078096,-65.08712762547283,-65.08632181632161,-65.08551992647057,-65.08472197813003,-65.08392799259347,-65.08313799025322,-65.08235199061608,-65.0815700123186,-65.08079207314229,-65.0800181900285,-65.07924837909312,-65.07848265564111,-65.07772103418081,-65.07696352843801,-65.07621015136988,-65.07546091517868,-65.07471583132528,-65.07397491054247,-65.07323816284816,-65.07250559755825,-65.07177722329949,-65.07105304802205,-65.0703330790119,-65.06961732290314,-65.06890578568998,-65.06819847273869,-65.06749538879934,-65.06679653801739,-65.06610192394498,-65.06541154955237,-65.06472541723882,-65.06404352884365,-65.06336588565698,-65.06269248843033,-65.06202333738712,-65.06135843223295,-65.06069777216582,-65.06004135588613,-65.05938918160653,-65.05874124706177,-65.0580975495182,-65.05745808578324,-65.05682285221482,-65.05619184473045,-65.05556505881634,-65.05494248953634,-65.05432413154075,-65.05370997907495,-65.05310002598802,-65.05249426574112,-65.0518926914158,-65.05129529572224,-65.05070207100725,-65.05011300926223,-65.04952810213106,-65.04894734091776,-65.04837071659414,-65.04779821980722,-65.04722984088673,-65.04666556985228,-65.0461053964206,-65.04554931001258,-65.0449972997602,-65.04444935451345,-65.04390546284702,-65.04336561306701,-65.04282979321744,-65.0422979910867,-65.04177019421398,-65.04124638989548,-65.04072656519058,-65.04021070692794,-65.03969880171145,-65.03919083592619,-65.03868679574418,-65.03818666713013,-65.03769043584704,-65.03719808746177,-65.03670960735053,-65.03622498070418,-65.03574419253358,-65.03526722767481,-65.03479407079425,-65.03432470639369,-65.03385911881527,-65.03339729224639,-65.0329392107245,-65.03248485814193,-65.03203421825043,-65.0315872746659,-65.0311440108728,-65.03070441022867,-65.03026845596851,-65.02983613120907,-65.02940741895308,-65.02898230209348,-65.02856076341745,-65.0281427856105,-65.02772835126045,-65.02731744286133,-65.02691004281719,-65.02650613344596,-65.0261056969831,-65.02570871558528,-65.02531517133401,-65.02492504623916,-65.0245383222424,-65.0241549812207,-65.02377500498964,-65.02339837530674,-65.02302507387468,-65.02265508234453,-65.02228838231888,-65.02192495535493,-65.02156478296754,-65.0212078466322,-65.02085412778789,-65.02050360784008,-65.02015626816352,-65.01981209010494,-65.01947105498587,-65.0191331441053,-65.01879833874227,-65.01846662015852,-65.01813796960097,-65.01781236830425,-65.01748979749313,-65.01717023838492,-65.01685367219186,-65.01654008012335,-65.01622944338833,-65.01592174319742,-65.01561696076519,-65.01531507731218,-65.01501607406713,-65.014719932269,-65.01442663316894,-65.01413615803233,-65.01384848814074,-65.01356360479377,-65.013281489311,-65.01300212303374,-65.01272548732689,-65.01245156358065,-65.01218033321229,-65.01191177766776,-65.01164587842347,-65.01138261698776,-65.0111219749026,-65.01086393374506,-65.0106084751289,-65.010355580706,-65.01010523216783,-65.00985741124686,-65.00961209971797,-65.00936927939982,-65.00912893215614,-65.00889103989705,-65.00865558458031,-65.00842254821261,-65.0081919128507,-65.00796366060267,-65.00773777362903,-65.00751423414385,-65.0072930244159,-65.00707412676967,-65.00685752358645,-65.00664319730534,-65.00643113042425,-65.00622130550086,-65.00601370515358,-65.00580831206246,-65.00560510897007,-65.00540407868243,-65.00520520406977,-65.00500846806742,-65.0048138536766,-65.00462134396518,-65.00443092206848,-65.00424257118995,-65.00405627460192,-65.00387201564628,-65.00368977773516,-65.00350954435159,-65.00333129905007,-65.0031550254573,-65.00298070727263,-65.0028083275914,-65.00263786893626,-65.0024693134072,-65.00230264280813,-65.00213783875357,-65.00197488275793,-65.0018137563099,-65.00165444093386,-65.00149691824039,-65.0013411699672,-65.00118717801205,-65.00103492445864,-65.00088439159683,-65.00073556193767,-65.00058841822444,-65.00044294343996,-65.00029912081114,-65.00015693381093,-65.00001636615839,-64.99987740181699,-64.99974002499165,-64.99960422012472,-64.99946997189106,-64.99933726519254,-64.99920608515204,-64.99907641710713,-64.99894824660353,-64.99882155938843,-64.99869634140376,-64.99857257877953,-64.99845025782724,-64.99832936503336,-64.99820988705302,-64.99809181070388,-64.99797512296018,-64.99785981094705,-64.99774586193494,-64.99763326333449,-64.99752200269143,-64.99741206768181,-64.99730344610751,-64.99719612589192,-64.99709009507583,-64.99698534181366,-64.99688185436973,-64.99677962111494,-64.99667863052348,-64.9965788711698,-64.99648033172583,-64.99638300095825,-64.99628686772598,-64.99619192097792,-64.99609814975065,-64.99600554316646,-64.99591409043141,-64.99582378083352,-64.99573460374113,-64.99564654860131,-64.99555960493845,-64.99547376235284,-64.99538901051947,-64.99530533918681,-64.99522273817574,-64.9951411973785,-64.99506070675776,-64.99498125634572,-64.99490283624333,-64.99482543661942,-64.99474904771007,-64.99467365981793,-64.99459926331154,-64.99452584862482,-64.99445340625648,-64.99438192676952,-64.99431140079075,-64.99424181901037,-64.99417317218152,-64.9941054511199,-64.99403864670343,-64.99397274987183,-64.99390775162637,-64.9938436430295,-64.99378041520463,-64.99371805933573,-64.9936565666672,-64.99359592850352,-64.99353613620909,-64.9934771812079,-64.99341905498336,-64.99336174907813,-64.99330525509383,-64.99324956469088,-64.99319466958829,-64.99314056156348,-64.99308723245208,-64.9930346741478,-64.99298287860212,-64.99293183782427,-64.99288154388096,-64.99283198889621,-64.99278316505122,-64.99273506458415,-64.99268767979,-64.99264100302037,-64.99259502668336,-64.99254974324337,-64.99250514522093,-64.99246122519253,-64.99241797579043,-64.99237538970253,-64.99233345967214,-64.99229217849785,-64.99225153903333,-64.99221153418718,-64.9921721569227,-64.99213340025777,-64.99209525726461,-64.99205772106963,-64.99202078485324,-64.99198444184967,-64.99194868534674,-64.99191350868573,-64.99187890526112,-64.99184486852045,-64.99181139196409,-64.99177846914507,-64.99174609366885,-64.99171425919313,-64.99168295942764,-64.99165218813391,-64.99162193912517,-64.99159220626596,-64.9915629834721,-64.99153426471032,-64.99150604399819,-64.99147831540375,-64.99145107304545,-64.99142431109179,-64.99139802376118,-64.9913722053217,-64.99134685009085,-64.99132195243536,-64.9912975067709,-64.99127350756196,-64.99124994932149,-64.99122682661074,-64.99120413403904,-64.9911818662635,-64.99116001798883,-64.99113858396709,-64.9911175589974,-64.9910969379258,-64.99107671564492,-64.99105688709376,-64.99103744725747,-64.99101839116707,-64.99099971389926,-64.99098141057608,-64.99096347636478,-64.99094590647748,-64.99092869617094,-64.99091184074634,-64.99089533554901,-64.99087917596819,-64.99086335743675,-64.99084787543097,-64.99083272547028,-64.99081790311698,-64.990803403976,-64.99078922369469,-64.99077535796249]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1171\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1172\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1167\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1168\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1169\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1179\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1173\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1174\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1175\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.95640932209486,-64.91656743332514,-64.85984205555549,-64.78801247201851,-64.70268982250026,-64.60533363614289,-64.49726652550554,-64.37968726214805,-64.25368243584953,-64.12023687775266,-63.980243005197664,-63.83450685704832,-63.68374308554822,-63.5285980336341,-63.36965570689861,-63.207443213990864,-63.04243573374819,-62.875061058405976,-62.705685990186154,-62.53463298547816,-62.36219006339412,-62.18861374404723,-62.01413177577863,-61.83894566414371,-61.663205217148345,-61.48703775987238,-61.31055247641078,-61.13384197380701,-60.956983752569364,-60.780032640268615,-60.60300301991352,-60.42589999618499,-60.248720146379554,-60.07145224449328,-59.89407795126451,-59.716545232096806,-59.53877868318728,-59.36069958117042,-59.18222601318972,-59.00327301667765,-58.84474091546034,-58.70432117081082,-58.57995502026495,-58.469810379192914,-58.37225999121598,-58.28586154597049,-58.209339489475724,-58.1415683368062,-58.08155735114037,-58.02843648736541,-57.98144351898471,-57.93990439092094,-57.90322096506865,-57.87087405326114,-57.842414200050285,-57.8174533804225,-57.795657548680616,-57.776739975466505,-57.76045531084561,-57.74659431273124,-57.73497918177123,-57.72545944614459,-57.717908342462856,-57.712219642052986,-57.70830487522023,-57.706090909553595,-57.705517841856285,-57.706537166781075,-57.70911018866394,-57.713206646327876,-57.7188035237363,-57.72588402228672,-57.7344366732343,-57.74445457121548,-57.75593471210286,-57.76887742046904,-57.78328585377783,-57.79916557206703,-57.81652416335143,-57.83537091627141,-57.85571653265597,-57.87757287367391,-57.90095273412665,-57.92586964020441,-57.95233766669681,-57.980371270230194,-58.00998513560885,-58.04118863182379,-58.073980320095735,-58.10835983717307,-58.144327610543414,-58.18188460313077,-58.22103208334135,-58.26177141689563,-58.3041038773877,-58.348030472954164,-58.393551786821035,-58.44066782983598,-58.48937790338985,-58.53968047139201,-58.59157304019262,-58.645052045546144,-58.70011274588722,-58.75674912134638,-58.81495377807067,-58.8747178575363,-58.93603095064839,-58.998881016518396,-59.063254305894645,-59.12910563164493,-59.19639130679451,-59.26506921573751,-59.3350983488623,-59.40643840423012,-59.47904944766031,-59.552891623830895,-59.62792491207601,-59.70410892147847,-59.7814027206384,-59.859764698166714,-59.939152450520744,-60.019522694282635,-60.1008234914394,-60.18297908153588,-60.26591757266995,-60.34957032275106,-60.43387142032391,-60.51875725118721,-60.60416613898414,-60.69003804959403,-60.77631435056119,-60.86293761799346,-60.9498514843833,-61.03700052167408,-61.12431827557603,-61.211725299256585,-61.29914762720808,-61.38651612963027,-61.473765966668246,-61.560836127866146,-61.64766904428583,-61.73421026251719,-61.82040817132347,-61.906213772960946,-61.99158049232229,-62.07646401800559,-62.16080286421951,-62.24453928141221,-62.327621119020826,-62.41000122575536,-62.49163693273206,-62.572489607299595,-62.65252426717502,-62.7317092460167,-62.81001590285013,-62.887418368862846,-62.963893326026366,-63.03941981280936,-63.11397135602379,-63.1875182567721,-63.26003549372489,-63.33150218221794,-63.40190110330767,-63.471218292974214,-63.539442683086705,-63.60656578695785,-63.67258142334684,-63.73748547364993,-63.801275667769524,-63.86395139479437,-63.92551353517296,-63.98596431153159,-64.04530715569133,-64.10354001061239,-64.16066122082186,-64.21667161169955,-64.27157415306056,-64.32537366638986,-64.3780765698344,-64.42969065588605,-64.4802248973965,-64.52968927816944,-64.57809464489317,-64.62545257762025,-64.67177527638188,-64.71707546185132,-64.76136628825235,-64.80466126695046,-64.84697419937335,-64.88831911808649,-64.92871023500531,-64.96816189585883,-65.00668854013549,-65.04430395566007,-65.08101883610833,-65.11684468204223,-65.15179365175938,-65.18587843272269,-65.2191121307967,-65.25150817489684,-65.28308023498425,-65.31384215161913,-65.34380787552664,-65.37299141583769,-65.40140679584594,-65.4290680152771,-65.45598901820053,-65.48218366582871,-65.50766571354994,-65.53244879162641,-65.556546389065,-65.57997184023274,-65.60273831384559,-65.62485880400797,-65.64634612302304,-65.66721289573036,-65.68747155515985,-65.70713433931854,-65.72621328895086,-65.74472024613418,-65.76266685358969,-65.78006455460432,-65.79692459347336,-65.81325801638549,-65.82907567268218,-65.84438821643262,-65.85920610827318,-65.87353961746727,-65.88739882414737,-65.9007936217063,-65.91373371930922,-65.92622864450173,-65.93828774589302,-65.94992019589563,-65.96113499350648,-65.9719409671154,-65.98234677733001,-65.99236091980683,-66.00199172808051,-66.0112472254729,-66.02013475510326,-66.02866164811242,-66.03683520521541,-66.04466268109579,-66.05215127126426,-66.05930810105357,-66.0661402164635,-66.07265457660738,-66.07885804754348,-66.08475739730258,-66.09035929194773,-66.09567029252322,-66.10069685276856,-66.10544531748934,-66.1099219214909,-66.11413278899313,-66.11808393345548,-66.12178125775031,-66.12523055463143,-66.12843750745104,-66.13140769108526,-66.13414657303314,-66.13665951465924,-66.13895177255381,-66.1410284999879,-66.14289474844436,-66.14455546920803,-66.1460155150007,-66.14727964164882,-66.14835250977346,-66.14923868649348,-66.14994264713454,-66.1504687769374,-66.15082137276022,-66.15100464477013,-66.15102271812057,-66.15087963461106,-66.15057935432684,-66.15012575725638,-66.14952264488505,-66.14877374176358,-66.1478826970503,-66.14685308602657,-66.14568841158447,-66.14439210568698,-66.1429675307998,-66.14141798129536,-66.13974668482875,-66.13795680368564,-66.13605143610276,-66.13403361756096,-66.13190632205128,-66.12967246331445,-66.1273348960542,-66.12489641712486,-66.1223597666937,-66.11972762937856,-66.11700263536105,-66.1141873614762,-66.11128433227869,-66.10829602108635,-66.10522485100141,-66.10207319591001,-66.09884338146036,-66.09553768602017,-66.09215834161375,-66.0887075348393,-66.08518740776672,-66.08160005881662,-66.07794754362068,-66.07423187586413,-66.07045502811037,-66.06661893260856,-66.06272548208423,-66.05877653051351,-66.05477389388128,-66.0507193509236,-66.04661464385488,-66.04246147907993,-66.0382615278915,-66.03401642715343,-66.02972777996985,-66.02539715634063,-66.02102609380361,-66.01661609806362,-66.01216864360877,-66.00768517431432,-66.00316710403418,-65.9986158171806,-65.99403256403441,-65.98941833940326,-65.98477416004711,-65.98010105876435,-65.97540007927314,-65.97067227178951,-65.96591868921531,-65.96114038386001,-65.95633840462953,-65.95151379462345,-65.94666758908916,-65.9418008136877,-65.93691448303181,-65.9320095994612,-65.92708715202468,-65.92214811564249,-65.91719345042502,-65.91222410112783,-65.90724099672458,-65.90224505008224,-65.89723715772482,-65.89221819967332,-65.88718903935167,-65.88215052354893,-65.87710348243019,-65.8720487295886,-65.86698706213282,-65.86191926080416,-65.85684609011892,-65.85176829853184,-65.84668661861699,-65.84160176726314,-65.83651444588094,-65.83142534061938,-65.82633512258987,-65.82124444809594,-65.81615395886709,-65.81106428229566,-65.80597603167541,-65.80088980644105,-65.79580619240777,-65.79072576201015,-65.78564907453993,-65.78057667638193,-65.77550910124799,-65.77044687040848,-65.76539049292089,-65.76034046585568,-65.75529727451885,-65.75026139267123,-65.74523328274442,-65.74021339605314,-65.73520217300413,-65.73020004330141,-65.72520742614792,-65.72022473044353,-65.71525235497954,-65.71029068862943,-65.70534011053614,-65.70040099029585,-65.69547368813814,-65.69055855510285,-65.68565593321347,-65.68076615564713,-65.6758895469015,-65.67102642295819,-65.6661770914432,-65.66134185178414,-65.6565209953645,-65.65171480567477,-65.64692355846081,-65.64214752186926,-65.63738695659009,-65.63264211599655,-65.62791324628226,-65.62320058659581,-65.6185043691727,-65.61382481946471,-65.60916215626698,-65.6045165918425,-65.59988833204432,-65.59527757643542,-65.59068451840638,-65.58610934529072,-65.58155223847824,-65.57701337352607,-65.5724929202678,-65.56799104292047,-65.56350790018962,-65.55904364537247,-65.55459842645904,-65.55017238623155,-65.54576566236197,-65.54137838750773,-65.53701068940575,-65.53266269096471,-65.52833451035573,-65.52402626110131,-65.51973805216271,-65.51546998802577,-65.51122216878522,-65.50699469022739,-65.50278764391149,-65.4986011172495,-65.49443519358461,-65.49028995226814,-65.48616546873534,-65.48206181457961,-65.47797905762565,-65.4739172620011,-65.46987648820708,-65.46585679318746,-65.46185823039686,-65.45788084986758,-65.45392469827524,-65.4499898190034,-65.44607625220698,-65.4421840348746,-65.43831320088991,-65.43446378109178,-65.43063580333352,-65.42682929254102,-65.42304427076998,-65.4192807572621,-65.41553876850035,-65.41181831826327,-65.40811941767838,-65.40444207527464,-65.40078629703413,-65.39715208644267,-65.39353944453983,-65.38994836996784,-65.38637885901993,-65.38283090568765,-65.37930450170757,-65.375799636607,-65.37231629774921,-65.36885447037764,-65.36541413765957,-65.36199528072893,-65.3585978787285,-65.35522190885133,-65.35186734638155,-65.34853416473443,-65.34522233549586,-65.34193182846116,-65.33866261167314,-65.33541465145977,-65.33218791247099,-65.32898235771505,-65.32579794859424,-65.32263464494004,-65.31949240504764,-65.31637118570998,-65.3132709422512,-65.3101916285595,-65.30713319711955,-65.30409559904437,-65.3010787841066,-65.2980827007693,-65.2951072962164,-65.29215251638242,-65.28921830598188,-65.28630460853816,-65.28341136641195,-65.28053852082918,-65.27768601190854,-65.27485377868857,-65.27204175915425,-65.26924989026327,-65.26647810797175,-65.26372634725968,-65.26099454215583,-65.25828262576236,-65.25559053027897,-65.25291818702668,-65.25026552647128,-65.24763247824633,-65.24501897117581,-65.24242493329646,-65.2398502918797,-65.23729497345325,-65.23475890382232,-65.23224200809061,-65.2297442106808,-65.22726543535487,-65.22480560523394,-65.22236464281796,-65.21994247000495,-65.21753900810998,-65.21515417788386,-65.21278789953152,-65.2104400927301,-65.2081106766467,-65.20579956995593,-65.20350669085715,-65.20123195709137,-65.19897528595793,-65.19673659433096,-65.19451579867545,-65.1923128150632,-65.1901275591884,-65.187959946383,-65.18580989163188,-65.18367730958765,-65.18156211458536,-65.17946422065685,-65.17738354154494,-65.17531999071734,-65.17327348138036,-65.17124392649238,-65.16923123877713,-65.1672353307367,-65.1652561146644,-65.16329350265733,-65.16134740662878,-65.15941773832049,-65.15750440931457,-65.15560733104535,-65.15372641481093,-65.15186157178461,-65.15001271302609,-65.14817974949248,-65.14636259204919,-65.14456115148049,-65.14277533850006,-65.14100506376123,-65.13925023786713,-65.13751077138059,-65.13578657483396,-65.13407755873865,-65.13238363359464,-65.13070470989966,-65.12904069815836,-65.12739150889125,-65.12575705264346,-65.1241372399934,-65.12253198156121,-65.12094118801711,-65.1193647700896,-65.11780263857345,-65.11625470433758,-65.11472087833283,-65.11320107159958,-65.11169519527515,-65.11020316060115,-65.10872487893069,-65.10726026173539,-65.10580922061234,-65.10437166729085,-65.10294751363912,-65.10153667167081,-65.10013905355139,-65.09875457160445,-65.09738313831784,-65.09602466634975,-65.0946790685346,-65.09334625788884,-65.09202614761665,-65.09071865111548,-65.08942368198156,-65.08814115401519,-65.08687098122601,-65.08561307783815,-65.08436735829518,-65.0831337372651,-65.08191212964508,-65.08070245056622,-65.07950461539814,-65.07831853975345,-65.07714413949222,-65.07598133072622,-65.07483002982318,-65.07369015341085,-65.07256161838109,-65.07144434189374,-65.0703382413805,-65.06924323454861,-65.06815923938458,-65.06708617415774,-65.06602395742364,-65.06497250802757,-65.06393174510777,-65.06290158809871,-65.06188195673423,-65.06087277105055,-65.05987395138933,-65.0588854184005,-65.05790709304512,-65.05693889659814,-65.05598075065103,-65.0550325771144,-65.05409429822053,-65.05316583652578,-65.052247114913,-65.0513380565938,-65.05043858511084,-65.04954862433992,-65.04866809849213,-65.04779693211584,-65.04693505009871,-65.04608237766952,-65.04523884040006,-65.04440436420686,-65.04357887535288,-65.04276230044921,-65.04195456645658,-65.04115560068693,-65.04036533080485,-65.03958368482894,-65.03881059113324,-65.03804597844844,-65.03728977586313,-65.03654191282499,-65.03580231914187,-65.03507092498289,-65.03434766087943,-65.0336324577261,-65.03292524678162,-65.0322259596697,-65.03153452837985,-65.0308508852681,-65.03017496305773,-65.02950669483994,-65.0288460140744,-65.02819285458992,-65.02754715058484,-65.02690883662758,-65.02627784765708,-65.02565411898313,-65.02503758628671,-65.02442818562037,-65.02382585340835,-65.02323052644692,-65.02264214190448,-65.0220606373217,-65.02148595061165,-65.0209180200598,-65.02035678432406,-65.0198021824348,-65.0192541537947,-65.01871263817876,-65.01817757573404,-65.01764890697964,-65.01712657280639,-65.01661051447662,-65.01610067362398,-65.01559699225304,-65.01509941273898,-65.01460787782725,-65.01412233063316,-65.01364271464143,-65.01316897370579,-65.01270105204837,-65.01223889425934,-65.01178244529622,-65.0113316504834,-65.01088645551148,-65.01044680643669,-65.01001264968018,-65.00958393202737,-65.00916060062724,-65.00874260299156,-65.00832988699419,-65.00792240087024,-65.0075200932153,-65.0071229129846,-65.00673080949213,-65.00634373240979,-65.00596163176651,-65.00558445794728,-65.00521216169224,-65.00484469409574,-65.00448200660529,-65.00412405102061,-65.00377077949263,-65.00342214452237,-65.00307809895996,-65.00273859600351,-65.00240358919805,-65.00207303243438,-65.00174687994797,-65.00142508631782,-65.00110760646527,-65.0007943956528,-65.00048540948293,-65.00018060389691,-64.99987993517352,-64.99958334716148,-64.99929076720711,-64.99900212794529,-64.99871736664176,-64.99843642461747,-64.99815924674482,-64.99788578100703,-64.99761597811288,-64.9973497911601,-64.99708717534153,-64.99682808768848,-64.99657248684709,-64.99632033288326,-64.99607158711294,-64.9958262119543,-64.9955841707993,-64.99534542790211,-64.99510994828225,-64.99487769764075,-64.99464864228744,-64.99442274907818,-64.99419998536062,-64.99398031892741,-64.99376371797602,-64.99355015107412,-64.99333958712997,-64.99313199536704,-64.99292734530236,-64.9927256067281,-64.9925267496959,-64.99233074450362,-64.99213756168422,-64.99194717199633,-64.99175954641645,-64.99157465613236,-64.99139247253781,-64.99121296722802,-64.9910361119961,-64.99086187883007,-64.99069023991065,-64.99052116760926,-64.9903546344867,-64.99019061329206,-64.99002907696182,-64.98986999861937,-64.9897133515746,-64.98955910932362,-64.9894072455487,-64.98925773411817,-64.98911054908648,-64.98896566469426,-64.98882305536847,-64.98868269572246,-64.98854456055614,-64.98840862485604,-64.98827486379548,-64.9881432527346,-64.98801376722045,-64.98788638298699,-64.9877610759551,-64.9876378222326,-64.98751659811404,-64.98739738008072,-64.98728014480048,-64.98716486912751,-64.98705153010216,-64.98694010495068,-64.98683057108485,-64.98672290610176,-64.98661708778334,-64.98651309409603,-64.98641090319029,-64.98631049340021,-64.98621184324293,-64.98611493141814,-64.9860197368076,-64.98592623847445,-64.98583441566267,-64.98574424779645,-64.98565571447952,-64.98556879549449,-64.98548347080212,-64.9853997205407]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1180\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1181\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1176\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1177\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1178\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1189\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1183\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1184\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1185\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.42154720086567,-63.88482473194712,-63.375001539965346,-62.890198719360754,-62.42868505231436,-61.98886466156169,-61.56926575518039,-61.168530357345766,-60.785404930669976,-60.41873180609763,-60.067441345470456,-59.73054469987457,-59.40712680544451,-59.096340434592335,-58.7974007405865,-58.5095802534923,-58.232204289445285,-57.964646738713,-57.70632567570142,-57.456699694941335,-57.215264735198865,-56.98155115957887,-56.755121071749564,-56.53556584985357,-56.32250305891186,-56.11557439162729,-55.91444384723697,-55.71879605358115,-55.52833472200039,-55.342780960727154,-55.16187115249253,-54.98535586685969,-54.812998852677104,-54.64457610559119,-54.479875005615405,-54.318692714468376,-54.16083496363241,-54.0061154998965,-53.854355564267244,-53.70538340275823,-54.124708279496225,-54.51755406580369,-54.885805372720455,-55.23119228545026,-55.55530464851011,-55.859605002284844,-56.145440292848484,-56.41405246479747,-56.66658803697766,-56.904106752657896,-57.12758938842519,-57.3379445662536,-57.536014840457604,-57.72258255025405,-57.8983750881201,-58.06406964211094,-58.22029746531817,-58.36764772095419,-58.50667094713063,-58.637882181256565,-58.76176378011527,-58.878767968085945,-58.98931914265682,-59.09381596332416,-59.19263324718052,-59.2861236919553,-59.37461944496993,-59.4584335343951,-59.53786117733392,-59.6131809775878,-59.68465602447496,-59.75253490275039,-59.817052622504725,-59.87843147688411,-59.9368818345596,-59.99260287307046,-60.04578325845853,-60.09660177599018,-60.14522791621811,-60.19182242015794,-60.23653778693705,-60.27951874690704,-60.320902702890955,-60.36082014195582,-60.39939501985506,-60.43674512007009,-60.4729823891909,-60.50821309047957,-60.54253778683602,-60.57605167611248,-60.60884490015216,-60.641002829823336,-60.672606328076434,-60.70373199283864,-60.73445238137342,-60.76483621756819,-60.79494858346956,-60.8248510962594,-60.85460207175398,-60.8842566754117,-60.9138670617494,-60.943482502992694,-60.97314950772024,-61.0029119302044,-61.03281107110063,-61.06288577009378,-61.09317249107112,-61.12370540035841,-61.154516438525874,-61.18563450913764,-61.21708568481841,-61.24889340445442,-61.28107864613167,-61.31366007908611,-61.34665419751083,-61.380075438694746,-61.413936287649136,-61.44824737010344,-61.48301753551517,-61.51825393153429,-61.55396207118564,-61.59014589388002,-61.62680759324402,-61.66394700553635,-61.70156184957226,-61.73964793557457,-61.77819934755049,-61.817208603141076,-61.856666794330415,-61.896563711920564,-61.936887956264265,-61.977627036391006,-62.0187674593547,-62.06029481136591,-62.102193480726136,-62.144446337361536,-62.187034975773315,-62.229939925958874,-62.27314083696221,-62.31661663703111,-62.36034567377563,-62.404305837223156,-62.44847466823725,-62.49282945440089,-62.53734731515,-62.58200527767399,-62.62677977390457,-62.67164678270639,-62.71658201958671,-62.761561098568066,-62.806559670156226,-62.85155353876696,-62.89651876248889,-62.94143173764416,-62.986269270253246,-63.03100863620635,-63.07562763168393,-63.12010461514673,-63.16441831439408,-63.20854771150051,-63.252472167613725,-63.29617152511096,-63.339626190388266,-63.3828172000928,-63.42572627321036,-63.46833585108013,-63.51062912711641,-63.55259006776695,-63.594203426022546,-63.63545474860836,-63.67633037782894,-63.716817448903065,-63.756903883507576,-63.79657818557383,-63.83582942216262,-63.87464726685108,-63.91302203086016,-63.95094468386644,-63.98840686616407,-64.02540089360433,-64.06191975653516,-64.09795711378709,-64.1335072826002,-64.16856522525713,-64.20312653307427,-64.23718740830768,-64.27074464444658,-64.3037956052964,-64.33633820319166,-64.36837087662617,-64.39989256754282,-64.43090269848562,-64.46140114978388,-64.4913882159055,-64.52086449189927,-64.54983088125408,-64.57828859892871,-64.60623917041787,-64.63368442759224,-64.66062650194007,-64.68706781574323,-64.71301107163984,-64.7384592409552,-64.76341555112327,-64.78788347246956,-64.8118667045816,-64.83536916245642,-64.85839496258083,-64.8809484090739,-64.90303397999611,-64.92465631391069,-64.9458201967645,-64.96653054914177,-64.98679241393155,-65.00661094443916,-65.02599139296302,-65.0449390998514,-65.06345948304657,-65.08155802811955,-65.09924027879383,-65.11651182795335,-65.13337830912681,-65.14984538843864,-65.16591875701448,-65.1816041238285,-65.19690720897798,-65.21183373737036,-65.22638943280748,-65.24058001245096,-65.25441118165303,-65.26788862913685,-65.28101802251066,-65.29380500410004,-65.3062551870831,-65.31837415191377,-65.33016744301852,-65.34164056575251,-65.35279898360155,-65.36364811561668,-65.37419332960572,-65.38443992474497,-65.39439313487917,-65.4040581311001,-65.41344002372645,-65.42254386378954,-65.43137464411454,-65.4399373000733,-65.44823671007374,-65.45627769584081,-65.46406502253531,-65.4716033987499,-65.47889747641521,-65.48595185064313,-65.49277105953041,-65.49935958394117,-65.50572184728362,-65.51186221529355,-65.51778499583442,-65.52349443872203,-65.52899473557966,-65.53429001972829,-65.53938436611524,-65.54428179128331,-65.54898625338173,-65.55350165221968,-65.55783182936219,-65.56198056826791,-65.56595159446798,-65.56974857578463,-65.57337512258817,-65.57683478809066,-65.58013106867446,-65.58326740425379,-65.58624717866748,-65.58907372010073,-65.59175030153409,-65.59428014121758,-65.59666640316809,-65.5989121976881,-65.60102058190391,-65.60299456032169,-65.6048370853994,-65.60655105813315,-65.60813932865636,-65.60960469685017,-65.61094991296363,-65.61217767824256,-65.61329064556544,-65.61429142008545,-65.61518255987723,-65.61596657658761,-65.61664593608903,-65.61722305913483,-65.61770032201558,-65.61808005721555,-65.61836455406865,-65.61855605941301,-65.6186567782437,-65.61866887436292,-65.61859447102704,-65.6184356515901,-65.61819446014333,-65.61787290214995,-65.61747294507539,-65.61699651901203,-65.61644551729853,-65.61582179713324,-65.61512718018156,-65.61436345317692,-65.61353236851522,-65.61263564484253,-65.61167496763588,-65.61065198977703,-65.60956833211905,-65.6084255840457,-65.6072253040233,-65.60596902014532,-65.60465823066944,-65.60329440454701,-65.60187898194503,-65.6004133747605,-65.59889896712721,-65.59733711591487,-65.5957291512207,-65.59407637685345,-65.59238007080991,-65.5906414857438,-65.5888618494273,-65.58704236520508,-65.58518420932806,-65.58328852484051,-65.58135642399728,-65.57938899037747,-65.57738728073419,-65.57535232661499,-65.57328513578338,-65.5711866934676,-65.56905796345984,-65.56689988908585,-65.56471339406241,-65.56249938325786,-65.56025874336892,-65.55799234352523,-65.55570103583162,-65.55338565585672,-65.55104702307538,-65.54868594127151,-65.54630319890673,-65.54389956945982,-65.54147581174118,-65.5390326701857,-65.53657087512737,-65.53409114305799,-65.53159417687267,-65.52908066610354,-65.52655128714379,-65.52400670346313,-65.52144756581608,-65.51887451244392,-65.51628816927128,-65.51368915009806,-65.5110780567872,-65.50845547944894,-65.50582199662178,-65.50317817545071,-65.50052457186281,-65.49786173074051,-65.49519018609269,-65.49251046122373,-65.48982306890072,-65.48712851151872,-65.48442728126432,-65.48171986027748,-65.47900672081164,-65.47628832539216,-65.47356512697309,-65.47083756909224,-65.46810608602468,-65.46537110293437,-65.46263303602431,-65.45989229268484,-65.4571492716402,-65.45440436309354,-65.45165794886992,-65.44891040255776,-65.44616208964841,-65.44341336767394,-65.44066458634315,-65.43791608767577,-65.43516820613488,-65.43242126875735,-65.42967559528273,-65.42693149828007,-65.42418928327301,-65.4214492488631,-65.41871168685118,-65.41597688235706,-65.41324511393728,-65.41051665370122,-65.40779176742524,-65.40507071466516,-65.40235374886694,-65.39964111747561,-65.39693306204242,-65.39422981833032,-65.39153161641767,-65.3888386808003,-65.38615123049189,-65.38346947912264,-65.38079363503634,-65.37812390138583,-65.37546047622685,-65.37280355261024,-65.37015331867268,-65.36750995772582,-65.36487364834393,-65.36224456445001,-65.35962287540042,-65.35700874606813,-65.35440233692444,-65.35180380411929,-65.34921329956028,-65.34663097099019,-65.34405696206325,-65.34149141241998,-65.33893445776086,-65.33638622991852,-65.3338468569289,-65.33131646310098,-65.32879516908532,-65.32628309194153,-65.32378034520434,-65.32128703894868,-65.31880327985355,-65.31632917126478,-65.31386481325667,-65.31141030269258,-65.3089657332844,-65.306531195651,-65.30410677737575,-65.30169256306282,-65.29928863439267,-65.2968950701765,-65.29451194640976,-65.29213933632465,-65.28977731044185,-65.28742593662118,-65.28508528011145,-65.28275540359945,-65.2804363672581,-65.27812822879363,-65.27583104349213,-65.27354486426509,-65.27126974169433,-65.26900572407598,-65.26675285746384,-65.2645111857119,-65.26228075051608,-65.26006159145544,-65.2578537460324,-65.25565724971248,-65.2534721359633,-65.25129843629284,-65.2491361802871,-65.24698539564709,-65.24484610822522,-65.24271834206101,-65.24060211941622,-65.23849746080936,-65.23640438504961,-65.23432290927022,-65.23225304896123,-65.2301948180017,-65.22814822869142,-65.226113291782,-65.22409001650746,-65.22207841061437,-65.22007848039138,-65.21809023069828,-65.21611366499464,-65.21414878536784,-65.21219559256075,-65.21025408599884,-65.20832426381693,-65.2064061228854,-65.20449965883603,-65.20260486608737,-65.2007217378697,-65.19885026624958,-65.19699044215395,-65.19514225539389,-65.19330569468792,-65.19148074768498,-65.18966740098695,-65.18786564017088,-65.18607544981079,-65.1842968134991,-65.18252971386782,-65.1807741326092,-65.17903005049622,-65.17729744740264,-65.17557630232274,-65.17386659339076,-65.17216829789996,-65.17048139232149,-65.16880585232279,-65.1671416527858,-65.16548876782485,-65.16384717080423,-65.1622168343555,-65.16059773039451,-65.15898983013814,-65.15739310412074,-65.1558075222104,-65.15423305362478,-65.15266966694689,-65.15111733014045,-65.14957601056508,-65.14804567499122,-65.14652628961483,-65.14501782007177,-65.14352023145211,-65.14203348831404,-65.14055755469764,-65.13909239413837,-65.1376379696805,-65.13619424389005,-65.13476117886778,-65.13333873626183,-65.13192687728021,-65.130525562703,-65.12913475289453,-65.12775440781516,-65.126384487033,-65.12502494973538,-65.1236757547402,-65.12233686050705,-65.12100822514806,-65.11968980643877,-65.1183815618287,-65.11708344845174,-65.1157954231364,-65.11451744241596,-65.11324946253826,-65.11199143947562,-65.11074332893428,-65.10950508636395,-65.1082766669671,-65.107058025708,-65.10584911732182,-65.10464989632342,-65.10346031701602,-65.1022803334998,-65.10110989968031,-65.09994896927671,-65.09879749582994,-65.09765543271072,-65.09652273312741,-65.09539935013376,-65.09428523663651,-65.09318034540291,-65.09208462906805,-65.09099804014213,-65.08992053101751,-65.08885205397583,-65.08779256119477,-65.08674200475492,-65.08570033664635,-65.0846675087752,-65.08364347297007,-65.08262818098838,-65.0816215845226,-65.08062363520627,-65.0796342846201,-65.0786534842978,-65.07768118573193,-65.07671734037957,-65.07576189966791,-65.07481481499975,-65.07387603775895,-65.0729455193157,-65.07202321103173,-65.0711090642655,-65.07020303037713,-65.06930506073344,-65.06841510671278,-65.06753311970975,-65.06665905113996,-65.0657928524446,-65.06493447509493,-65.06408387059673,-65.06324099049469,-65.06240578637663,-65.06157820987772,-65.06075821268459,-65.05994574653936,-65.0591407632436,-65.05834321466229,-65.0575530527275,-65.05677022944224,-65.0559946968841,-65.05522640720882,-65.05446531265386,-65.05371136554184,-65.05296451828394,-65.05222472338319,-65.05149193343779,-65.05076610114423,-65.0500471793005,-65.0493351208091,-65.04862987868003,-65.04793140603378,-65.04723965610417,-65.04655458224119,-65.04587613791374,-65.04520427671234,-65.0445389523518,-65.04388011867374,-65.04322772964919,-65.042581739381,-65.04194210210632,-65.0413087721989,-65.04068170417146,-65.0400608526779,-65.03944617251553,-65.03883761862723,-65.03823514610353,-65.03763871018468,-65.03704826626266,-65.03646376988311,-65.03588517674727,-65.0353124427138,-65.03474552380065,-65.03418437618676,-65.03362895621382,-65.03307922038795,-65.03253512538132,-65.03199662803372,-65.03146368535417,-65.03093625452233,-65.03041429289004,-65.0298977579827,-65.02938660750064,-65.02888079932049,-65.02838029149645,-65.02788504226156,-65.02739501002894,-65.02691015339292,-65.02643043113025,-65.02595580220114,-65.02548622575038,-65.02502166110837,-65.02456206779209,-65.02410740550607,-65.02365763414335,-65.02321271378635,-65.02277260470773,-65.0223372673712,-65.02190666243239,-65.02148075073951,-65.02105949333416,-65.020642851452,-65.02023078652338,-65.01982326017408,-65.01942023422579,-65.0190216706968,-65.0186275318025,-65.01823777995587,-65.01785237776804,-65.0174712880487,-65.01709447380655,-65.01672189824974,-65.01635352478621,-65.01598931702407,-65.01562923877191,-65.01527325403913,-65.0149213270362,-65.01457342217496,-65.01422950406875,-65.01388953753273,-65.013553487584,-65.01322131944177,-65.01289299852749,-65.01256849046499,-65.01224776108053,-65.01193077640292,-65.01161750266353,-65.01130790629631,-65.01100195393785,-65.0106996124273,-65.01040084880638,-65.0101056303193,-65.00981392441271,-65.00952569873559,-65.00924092113912,-65.0089595596766,-65.00868158260324,-65.00840695837607,-65.00813565565366,-65.00786764329598,-65.00760289036418,-65.00734136612034,-65.0070830400272,-65.00682788174792,-65.0065758611458,-65.00632694828394,-65.00608111342497,-65.00583832703069,-65.00559855976172,-65.00536178247718,-65.00512796623426,-65.00489708228788,-65.00466910209028,-65.00444399729056,-65.00422173973432,-65.00400230146315,-65.00378565471422,-65.00357177154227,-65.00336062334122,-65.00315218103579,-65.00294641524344,-65.00274329641067,-65.00254279492711,-65.00234488122061,-65.00214952583576,-65.00195669949835,-65.00176637316768,-65.00157851807852,-65.00139310577414,-65.00121010813196,-65.00102949738265,-65.00085124612396,-65.00067532732996,-65.00050171435652,-65.0003303809436,-65.00016130121494,-64.9999944496757,-64.9998298012082,-64.99966733106645,-64.99950701486952,-64.99934882859407,-64.9991927485662,-64.99903875145303,-64.99888681425375,-64.9987369142907,-64.99858902920028,-64.99844313692387,-64.99829921569892,-64.99815724405013,-64.99801720078081,-64.9978790649645,-64.9977428159368,-64.9976084332876,-64.99747589685339,-64.99734518671004,-64.99721628316581,-64.99708916675469,-64.99696381822999,-64.99684021855828,-64.99671834891359,-64.99659819067196,-64.99647972540615,-64.99636293488068,-64.99624780104718,-64.99613430603989,-64.99602243217147,-64.99591216192897,-64.99580347797009,-64.99569636311955,-64.99559080036578,-64.99548677285766,-64.99538426390153,-64.99528325695832,-64.99518373564085,-64.99508568371127,-64.99498908507861,-64.99489392379655,-64.99480018406118,-64.99470785020895,-64.9946169067148,-64.99452733819017,-64.99443912938135,-64.99435226516778,-64.99426673056041,-64.99418251070027,-64.99409959085696,-64.99401795642727,-64.9939375929339,-64.9938584860242,-64.9937806214689,-64.99370398516105,-64.99362856311483,-64.99355434146452,-64.99348130646345,-64.99340944448304,-64.9933387420118,-64.99326918565446,-64.993200762131,-64.99313345827586,-64.99306726103706]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1190\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1191\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1186\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1187\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1188\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1198\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1192\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1193\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1194\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.94589763516821,-64.88611924001466,-64.80101570809497,-64.69325631981482,-64.56525833647144,-64.41921171428427,-64.25710099294712,-64.08072471378,-63.8917126956506,-63.691528629370595,-63.481487177849424,-63.26277700289422,-63.03647168529634,-62.803539638907345,-62.5648261590183,-62.32108478860732,-62.0729899379498,-61.82114341091309,-61.56605150776813,-61.30814845218831,-61.04781392028776,-60.78537741285835,-60.52108071812955,-60.2551149565734,-59.987633598170504,-59.71875256444835,-59.448495597344284,-59.176858169879466,-58.90380935100282,-58.62926705609883,-58.353075805785586,-58.075059311163834,-57.79502135110548,-57.51267792673238,-57.22770048200758,-56.939742182803094,-56.64841418446873,-56.35321544781151,-56.053624581650396,-55.74909833888263,-55.47038650285009,-55.213521667570575,-54.97494350476484,-54.75144586820083,-54.54004253639443,-54.33805281080059,-54.14306871836015,-53.95292431117575,-53.76563549508652,-53.57930794284159,-53.3922095202821,-53.20274453981735,-53.0094296456714,-52.810871263609336,-52.60559110566462,-52.39214916429342,-52.16913053607219,-51.93512524179435,-51.688650239499005,-51.42802182391997,-51.151495949022745,-50.857245989573414,-50.54319837200288,-50.20697937874873,-49.846045612804694,-49.457490519999,-49.037921249761304,-48.58364709934446,-48.09016823369881,-47.55250573978088,-46.96467168471127,-46.319902897905436,-45.610011996775214,-44.82547336143348,-43.95507619925709,-42.98549171677272,-41.90079374776157,-40.681928907436266,-39.3061332602382,-37.7462965642837,-35.97019218452696,-33.93976769694536,-31.610705282951336,-28.932665455908236,-25.850482851742626,-22.308029253219246,-18.255454964262054,-13.661851636191537,-8.534842584533767,-2.944824847477939,2.953816877600368,8.918333921402247,14.646208095573304,19.83586436829813,24.25703257571911,27.79638178086778,30.460109871702937,32.3408623270324,33.57264691482312,34.29358833189177,34.624412293424676,34.6607437090845,34.47386765883097,34.1151091230741,33.620886959141416,33.01709073122178,32.3224135329115,31.550710812334447,30.71259440542925,29.816486738414895,28.869309735810656,27.87693225267948,26.84446072448722,25.776428906196138,24.676922848069804,23.549664285622683,22.398067270824562,21.225277546188952,20.034200772673287,18.827523556698978,17.607729364217832,16.377112477964886,15.137789276052741,13.89170788277535,12.64065231025653,11.386250257511639,10.129991752423184,8.873234801582207,7.617198165528691,6.362972056909632,5.111545349611598,3.8638076599726667,2.6205269807919946,1.3823695254062258,0.1499335785492264,-1.0762526694630727,-2.295753373034628,-3.50823658363527,-4.713406185311732,-5.911010402336234,-7.100845212626789,-8.28280287219687,-9.456845064647155,-10.622949225517052,-11.781121341418789,-12.931403329270804,-14.073877618717603,-15.208722737340157,-16.33618823713922,-17.456538013344137,-18.570068870766526,-19.677123525516404,-20.77810068176094,-21.873463703921573,-22.96374873961046,-24.049572746942566,-25.13169179343273,-26.210972271635377,-27.288357170920474,-28.36488670074623,-29.44171377067356,-30.52011598872707,-31.601504987287512,-32.68743333604179,-33.77959892024502,-34.879846365926994,-35.990164829132425,-37.112681199107286,-38.249723190610666,-39.40368976953599,-40.577022436544915,-41.77217045239673,-42.9915373799179,-44.23740699448396,-45.511802994297675,-46.816354328641395,-48.15214864115474,-49.519431306699744,-50.91732706927062,-52.343764776074856,-53.79478317294343,-55.26464240037791,-56.74532551987605,-58.22655927425223,-59.69584394167373,-61.13873659451294,-62.539595845865456,-63.88221409421781,-65.15129209718344,-66.33329081417469,-67.41763003378422,-68.39752770325683,-69.27029140718194,-70.03718267344598,-70.70288442311546,-71.27462673039412,-71.76138519199809,-72.17296410434619,-72.51927417143735,-72.80978653327304,-73.05320214622822,-73.25725141507216,-73.42863061350727,-73.57303659613278,-73.69524027550337,-73.79918922777952,-73.88812002144047,-73.96466829765752,-74.03096994842232,-74.08875012863268,-74.13939985062336,-74.18404023202464,-74.223575263878,-74.25873493393894,-74.29011014759605,-74.31818081453015,-74.34333832508248,-74.36590347135314,-74.38614069970542,-74.40426942663385,-74.42047301441788,-74.43490588790478,-74.4476991781358,-74.4589652002744,-74.46880100996769,-74.47729123144823,-74.48451031014042,-74.49052431034045,-74.49539235305717,-74.49916776897939,-74.50189902567226,-74.50363047561332,-74.50440296184618,-74.50425431029251,-74.50321973167455,-74.5013321512067,-74.49862248043951,-74.49511984266366,-74.49085176093406,-74.48584431592099,-74.4801222793297,-74.4737092274713,-74.46662763864832,-74.45889897729059,-74.45054376719737,-74.44158165578176,-74.43203147084591,-74.42191127112338,-74.41123839159023,-74.40002948435969,-74.38830055582443,-74.37606700058991,-74.36334363264517,-74.35014471413845,-74.33648398206239,-74.32237467310124,-74.30782954685158,-74.29286090759356,-74.27748062476209,-74.26170015224464,-74.24553054661384,-74.22898248438732,-74.21206627839511,-74.19479189332374,-74.17716896049798,-74.15920679195351,-74.14091439384774,-74.12230047925098,-74.1033734803555,-74.08414156013643,-74.0646126234954,-74.04479432791489,-74.02469409364866,-74.0043191134724,-73.98367636201583,-73.96277257169484,-73.94161427560235,-73.92020782519081,-73.89855939571186,-73.8766749918151,-73.85456045322526,-73.83222146043393,-73.80966354035672,-73.78689207191783,-73.76391229153305,-73.74072929846957,-73.71734806006685,-73.69377341680698,-73.67001008722738,-73.64606267267096,-73.62193566187145,-73.59763343537328,-73.57316026978717,-73.5485203418829,-73.52371773252261,-73.49875643043752,-73.47364033585234,-73.44837326396124,-73.42295894826009,-73.39740104373924,-73.37170312994165,-73.34586871389091,-73.3199012328938,-73.29380405722195,-73.26758049267703,-73.24123378304397,-73.21476711243643,-73.18818360753866,-73.16148633974782,-73.1346783272208,-73.10776253682906,-73.0807418860255,-73.05361924462663,-73.02639743651353,-72.99907924125502,-72.97166739184803,-72.9441644701665,-72.91657304708912,-72.88889567823513,-72.86113490064204,-72.83329323021252,-72.80537315978837,-72.77737715773421,-72.74930766693434,-72.72116710412321,-72.69295785948373,-72.66468229645953,-72.63634275173672,-72.60794153535853,-72.5794809309431,-72.55096319597973,-72.52239056218356,-72.49376523589258,-72.4650893984936,-72.4363652068665,-72.40759479383826,-72.37878026863997,-72.3499237173613,-72.32102720339834,-72.29209276789138,-72.26312243015036,-72.23411818806612,-72.20508201850593,-72.17601587769283,-72.14692170156792,-72.11780140613554,-72.08865688779127,-72.05949002363293,-72.03030267175478,-72.00109667152549,-71.97187384385016,-71.9426357867375,-71.91338411698655,-71.88412047230928,-71.85484650460832,-71.82556387438788,-71.79627424611351,-71.76697928436666,-71.73768065066459,-71.70838000083714,-71.67907898286924,-71.64977923513261,-71.62048238494232,-71.59119004738437,-71.56190382436884,-71.53262530387047,-71.50335605932494,-71.47409764915382,-71.44485161639595,-71.41561948842632,-71.38640277674676,-71.35720297683545,-71.32802156804401,-71.29886001353347,-71.26971976024123,-71.24060223887287,-71.21150886391364,-71.18244103365542,-71.15340013023553,-71.12438751968456,-71.09540455198113,-71.0664525611113,-71.03753286513151,-71.00864676623364,-70.97979555081135,-70.95098025376163,-70.92220183916436,-70.89346131439066,-70.86475972046033,-70.83609812389592,-70.8074776098471,-70.77889927629282,-70.75036422915878,-70.7218735782117,-70.69342843361301,-70.66502990303216,-70.63667908923462,-70.60837708807233,-70.5801249868153,-70.55192386277199,-70.52377478215396,-70.49567879914721,-70.46763695515774,-70.43965027820421,-70.41171978243439,-70.38384646774567,-70.35603131949294,-70.3282753082696,-70.30057938974966,-70.27294450458085,-70.24537157832,-70.21786152140359,-70.19041522914718,-70.16303358176869,-70.13571744443121,-70.10846766730161,-70.081285085622,-70.05417051979151,-70.02712477545629,-70.00014864360585,-69.9732429006746,-69.94640782955135,-69.91964378355893,-69.89295117630093,-69.86633047022531,-69.83978216687159,-69.8133067985604,-69.78690492131925,-69.76057710886766,-69.73432394751056,-69.70814603180989,-69.68204396092311,-69.65601833551304,-69.6300697551468,-69.60419881611347,-69.5784061095996,-69.55269222017101,-69.5270577245157,-69.50150319040976,-69.47602917587324,-69.45063622848765,-69.42532488485102,-69.40009567014935,-69.37494909782701,-69.34988566934051,-69.32490587398269,-69.30001018876622,-69.2751990783567,-69.25047299504735,-69.22583237876813,-69.20127765712382,-69.17680924545543,-69.15242754692116,-69.12813295259309,-69.10392584156652,-69.07980658107954,-69.0557755266404,-69.03183302216122,-69.00797940009612,-68.98421498158281,-68.96053965881991,-68.93695317343789,-68.91345535432576,-68.89004610341424,-68.86672538344763,-68.84349320747339,-68.82034962981491,-68.79729473832577,-68.77432864775072,-68.7514514940428,-68.72866342950601,-68.70596461865097,-68.68335523466564,-68.66083545641706,-68.63840546591062,-68.61606544614378,-68.59381557929945,-68.57165604523152,-68.54958702020171,-68.52760867583203,-68.50572117824224,-68.48392468734593,-68.46221935628205,-68.44060533096217,-68.4190827497165,-68.39765174302369,-68.37631243331201,-68.35506493482055,-68.33390935351146,-68.31284578702481,-68.29187432466928,-68.27099504744261,-68.25020802807684,-68.22951333110387,-68.20891101293762,-68.18840112196965,-68.16798369867553,-68.14765877572964,-68.12742637812654,-68.10728652330718,-68.08723922128858,-68.067284474796,-68.04742227939633,-68.02765262363226,-68.00797548915627,-67.98839085086404,-67.96889823251296,-67.94949691969772,-67.93018630570971,-67.9109658756899,-67.8918351929013,-67.87279388684377,-67.85384164297047,-67.83497819379696,-67.81620331122082,-67.7975167998937,-67.77891849150801,-67.76040823987827,-67.74198591671285,-67.72365140798496,-67.7054046108239,-67.68724543085747,-67.66917377994542,-67.65118957425186,-67.63329273261077,-67.61548317514524,-67.59776082210583,-67.58012559289791,-67.5625774052723,-67.5451161746559,-67.52774181360333,-67.51045423135174,-67.49325333346465,-67.47613902155133,-67.45911119305102,-67.44216974107205,-67.42531455427775,-67.40854551681164,-67.39186250825598,-67.37526540361809,-67.3587540733399,-67.34232838332677,-67.32598819499219,-67.30973336531532,-67.29356374690903,-67.2774791880962,-67.26147953299248,-67.24556462159413,-67.22973428986927,-67.21398836985193,-67.19832668973754,-67.1827490739794,-67.16725534338529,-67.15184531521389,-67.13651880327035,-67.12127561800082,-67.10611556658567,-67.09103845303108,-67.07604407825885,-67.06113224019442,-67.0463027338529,-67.03155535142294,-67.01688988234875,-67.00230611340987,-66.9878038287989,-66.97338214574584,-66.95904016087728,-66.94477708140346,-66.93059220985907,-66.91648493081276,-66.90245469929704,-66.88850103074172,-66.87462349222103,-66.86082169484855,-66.84709528717488,-66.83344394946086,-66.81986738871547,-66.80636533440094,-66.79293753472004,-66.77958375341116,-66.7663037669858,-66.75309736235168,-66.7399643347715,-66.72690448611363,-66.7139176233567,-66.70100355731483,-66.68816210155404,-66.6753930714748,-66.66269628353818,-66.65007155461637,-66.63751870145059,-66.62503754020157,-66.61262788608003,-66.6002895530455,-66.58802235356423,-66.57582609841735,-66.5637005965522,-66.55164565497019,-66.53966107864593,-66.52774667047258,-66.51590223122943,-66.50412755956815,-66.49242245201445,-66.48078670298271,-66.46922010480108,-66.45772244774528,-66.4462935200793,-66.43493310810153,-66.42364099619533,-66.41241696688262,-66.40126080087997,-66.3901722771563,-66.3791511729915,-66.3681972640356,-66.35731032436794,-66.34649012655608,-66.335736441714,-66.32504903955967,-66.31442768847137,-66.30387215554302,-66.29338220663817,-66.28295760644266,-66.27259811851583,-66.2623035053403,-66.2520735283703,-66.24190794807853,-66.23180652400151,-66.2217690147835,-66.21179517821902,-66.20188477129393,-66.19203755022515,-66.18225327049907,-66.17253168690867,-66.16287255358935,-66.15327562405366,-66.14374065122473,-66.13426738746873,-66.1248555846261,-66.11550499404194,-66.10621536659525,-66.09698645272731,-66.08781800246912,-66.07870976546803,-66.06966149101345,-66.06067292806183,-66.05174382526094,-66.0428739309733,-66.03406299329897,-66.02531076009777,-66.01661697901069,-66.0079813974809,-65.99940376277401,-65.99088377656626,-65.98242054237429,-65.9740132660809,-65.96566124243702,-65.95736384325767,-65.94912050710396,-65.94093073026829,-65.93279405890245,-65.92471008214751,-65.9166784261422,-65.90869874880092,-65.90077073526611,-65.89289409395134,-65.8850685531015,-65.8772938578056,-65.86956976740554,-65.86189605325112,-65.8542724967577,-65.84669888772812,-65.83917502290547,-65.83170070472704,-65.824275740254,-65.81689994025369,-65.80957311841529,-65.80229509068087,-65.79506567467733,-65.78788468923527,-65.78075195398368,-65.77366728901004,-65.76663051457696,-65.75964145088777,-65.75269991789408,-65.74580573513958,-65.738958721635,-65.7321586957595,-65.72540547518489,-65.71869887681915,-65.71203871676639,-65.70542481030066,-65.69885697185144,-65.69233501499896,-65.68585875247757,-65.67942799618595,-65.67304255720276,-65.66670224580682,-65.66040687150081,-65.65415624303789,-65.6479501684504,-65.6417884550802,-65.63567090961031,-65.62959733809706,-65.62356754600289,-65.61758133822927,-65.6116385191495,-65.60573889264128,-65.599882262119,-65.59406843056529,-65.58829720056218,-65.58256837432144,-65.57688175371419,-65.5712371402998,-65.56563433535388,-65.56007313989551,-65.55455335471362,-65.54907478039254,-65.54363721733671,-65.53824046579454,-65.5328843258816,-65.52756859760282,-65.52229308087419,-65.51705757554343,-65.51186188141021,-65.50670579824549,-65.50158912581033,-65.49651166387396,-65.49147321223133,-65.48647357071995,-65.48151253923635,-65.47658991775181,-65.4717055063277,-65.46685910513025,-65.462050514445,-65.45727953469057,-65.4525459664322,-65.44784961039481,-65.44319026747567,-65.4385677387567,-65.43398182551644,-65.42943232924165,-65.42491905163862,-65.42044179464418,-65.41600036043634,-65.4115945514448,-65.407224170361,-65.40288902014815,-65.39858890405077,-65.39432362560416,-65.3900929886436,-65.38589679731336,-65.38173485607545,-65.37760696971823,-65.37351294336477,-65.36945258248113,-65.36542569288434,-65.36143208075033,-65.35747155262159,-65.35354391541475,-65.34964897642799,-65.34578654334831,-65.34195642425865,-65.33815842764486,-65.33439236240253,-65.33065803784378,-65.32695526370381,-65.32328385014739,-65.31964360777525,-65.31603434763028,-65.31245588120372,-65.30890802044117,-65.3053905777485,-65.30190336599769,-65.29844619853256,-65.29501888917436,-65.29162125222733,-65.28825310248412,-65.28491425523112,-65.2816045262537,-65.27832373184143,-65.27507168879306,-65.27184821442158,-65.26865312655909,-65.26548624356161,-65.26234738431384,-65.25923636823379,-65.25615301527736,-65.25309714594287,-65.25006858127543,-65.2470671428713,-65.24409265288219,-65.24114493401937,-65.23822380955788,-65.23532910334052,-65.23246063978183,-65.22961824387203,-65.22680174118076,-65.22401095786095,-65.22124572065245,-65.21850585688561]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1199\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1200\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1195\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1196\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1197\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1208\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1202\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1203\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1204\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.13870944462029,-63.33361883580457,-62.5688770526863,-61.84166575507862,-61.149388149752944,-60.48965047212201,-59.86024510124126,-59.259135148104626,-58.68444037543632,-58.13442394388773,-57.60748036963838,-57.10212480417863,-56.61698320782794,-56.15078333965094,-55.70234569619157,-55.27057586029804,-54.8544576305396,-54.453046709447555,-54.06546405064416,-53.69089025303274,-53.32856077187097,-52.97776151412902,-52.637823558223324,-52.308119250468074,-51.98805889434288,-51.67708761905263,-51.37468079913118,-51.08034160804206,-50.79359875718541,-50.51400362333561,-50.24112687125317,-49.974556811298314,-49.713897870436185,-49.45876713815851,-49.20879237453604,-48.96361090151728,-48.722867851385146,-48.48621243281966,-48.25329711195862,-48.02377679258337,-48.64581479715894,-49.22713679063287,-49.77045144727153,-50.278228402545125,-50.752717484499534,-51.19596945270301,-51.6098546630162,-51.99607983064307,-52.356202121125705,-52.69163976767263,-53.00368426514773,-53.293511153371796,-53.562189513105174,-53.810690289521204,-54.03988901191287,-54.250572006074485,-54.443441886233906,-54.61912215776685,-54.7781592684276,-54.921020776652426,-55.04809776734699,-55.15970648136029,-55.256084997077416,-55.33738851546447,-55.40368875456732,-55.4549676542571,-55.49110777438411,-55.51188877729546,-55.51696897681987,-55.505877630812314,-55.477991971344444,-55.43252237185632,-55.36847911101729,-55.284643448842324,-55.17952998239676,-55.05133820516671,-54.89789246842265,-54.71656946935534,-54.504212348271594,-54.25703055743777,-53.97048228636574,-53.639142167196475,-53.256563022808926,-52.81515218399274,-52.30608975672691,-51.71936548790069,-51.044027827657104,-50.26879422662159,-49.38320831120915,-48.3794523919756,-47.25469085792915,-46.01341822762998,-44.66883651772243,-43.24236373333533,-41.76108762098581,-40.25400538229038,-38.748387012009175,-37.267310622575835,-35.82866236802627,-34.44529112540837,-33.12579126110299,-31.875471497058236,-30.697249685928437,-29.592370417395227,-28.560934948287382,-27.60227347522554,-26.715199019917836,-25.898178035860003,-25.149444788748447,-24.467078469465644,-23.849055827255903,-23.293287767982733,-22.797645407972137,-22.35997912923546,-21.978132924043244,-21.64995550953489,-21.37330917571486,-21.14607699788533,-20.966168830241703,-20.831526358486368,-20.74012741277555,-20.68998963825246,-20.679173636591237,-20.705785654857547,-20.76798000871836,-20.863961145979292,-20.99198504892649,-21.150360394912457,-21.33744986881647,-21.55167108923339,-21.791496680654483,-22.055454280254793,-22.34212720578009,-22.65015450099631,-22.978229977599387,-23.32510137218975,-23.689570206172135,-24.070491994769068,-24.466774431937086,-24.87737592353352,-25.30130429953199,-25.73761702988658,-26.185420634814385,-26.643868539050143,-27.11215941887457,-27.589535855388906,-28.07528319501648,-28.568730114574738,-29.069248414727063,-29.576251148117525,-30.08919139625974,-30.60756149606659,-31.130892605575525,-31.658754549272818,-32.190755911883215,-32.7265443645691,-33.26580869791889,-33.80827989541072,-34.35373115222905,-34.90197850300017,-35.45288187391805,-36.006346433695896,-36.56232414839644,-37.12081545792444,-37.6818709927416,-38.24559324132766,-38.812138063478194,-39.381715922017605,-39.95459491485041,-40.5310998134883,-41.111610303499205,-41.69655829019997,-42.286423766812355,-42.88172871145746,-43.48302716010673,-44.09089182524284,-44.70589709265709,-45.328594022742614,-45.959478450403736,-46.59895855748646,-47.247303641060014,-47.90459890687764,-48.57068792771258,-49.24511877937904,-49.927093927567284,-50.61543116008851,-51.3085486246671,-52.0044693616428,-52.700869205006185,-53.39514732577948,-54.084528468146964,-54.766184564878166,-55.43735849785414,-56.095477256096686,-56.738243319022594,-57.36369531900249,-57.97024176627795,-58.55666586374462,-59.12210870400645,-59.66603721427982,-60.18820403013284,-60.688603579913206,-61.16742862706184,-61.625030152845326,-62.06188154810733,-62.47854774607392,-62.875659320688435,-63.2538912196012,-63.613945621770846,-63.956538340265375,-64.28238821426268,-64.59220896594978,-64.88670305157481,-65.16655711523607,-65.43243871749281,-65.68499406880245,-65.92484654836285,-66.15259583182244,-66.36881748694371,-66.57406292545514,-66.76885962291645,-66.95371153735238,-67.1290996725038,-67.29548274352183,-67.45329791239534,-67.60296156786141,-67.74487013041025,-67.87940086759431,-68.00691270845104,-68.12774704866118,-68.24222854025925,-68.35066586141987,-68.45335246316988,-68.55056729090296,-68.64257547936498,-68.72962902038641,-68.81196740310214,-68.88981822675001,-68.96339778640254,-69.03291163218081,-69.09855510263971,-69.16051383311265,-69.21896423987062,-69.2740739809911,-69.32600239485498,-69.37490091719636,-69.42091347762633,-69.46417687653933,-69.50482114329168,-69.54296987651905,-69.57874056743267,-69.61224490690577,-69.64358907713154,-69.6728740286033,-69.7001957431365,-69.7256454836214,-69.74931003116481,-69.77127191024948,-69.79160960251073,-69.81039774970155,-69.82770734639038,-69.84360592290957,-69.85815771904694,-69.87142384894928,-69.8834624576829,-69.89432886987464,-69.90407573083532,-69.91275314054752,-69.92040878088065,-69.92708803637737,-69.9328341089386,-69.93768812671732,-69.94168924751602,-69.94487475696717,-69.94728016176221,-69.94893927720508,-69.94988431137243,-69.95014594531582,-69.94975340915468,-69.94873455428326,-69.94711592190104,-69.94492280806264,-69.94217932543155,-69.93890846191113,-69.9351321363159,-69.9308712512374,-69.92614574324956,-69.92097463059096,-69.91537605845367,-69.90936734200118,-69.90296500723153,-69.89618482979552,-69.88904187187387,-69.88155051721208,-69.87372450440608,-69.86557695852756,-69.85712042117235,-69.84836687901206,-69.83932779092383,-69.83001411377013,-69.82043632689641,-69.81060445541094,-69.8005280923081,-69.79021641949305,-69.77967822776284,-69.76892193579619,-69.75795560820153,-69.74678697267052,-69.7354234362815,-69.72387210099544,-69.71213977838471,-69.70023300363282,-69.68815804884143,-69.67592093567922,-69.66352744740523,-69.65098314018533,-69.63829335071395,-69.62546320757436,-69.61249764186788,-69.59940139717894,-69.58617903893408,-69.57283496320562,-69.55937340500479,-69.54579844610355,-69.53211402242022,-69.51832393099995,-69.50443183661805,-69.49044127803106,-69.47635567389848,-69.46217832839568,-69.44791243653664,-69.4335610892238,-69.41912727804082,-69.4046138998027,-69.3900237608768,-69.37535958128727,-69.36062399861434,-69.3458195716996,-69.33094878416708,-69.31601404776994,-69.30101770557147,-69.28596203496892,-69.27084925056799,-69.25568150691558,-69.24046090109762,-69.22518947520894,-69.2098692187012,-69.19450207061512,-69.17908992170244,-69.16363461644329,-69.14813795496369,-69.13260168880512,-69.11702752406708,-69.10141712444499,-69.08577211390767,-69.07009407906682,-69.05438457128328,-69.03864510854729,-69.02287717716462,-69.00708223327538,-68.99126170422814,-68.97541698982853,-68.95954946347878,-68.94366047322183,-68.92775134270187,-68.9118233720513,-68.8958778387126,-68.8799159982023,-68.86393908482361,-68.84794831233249,-68.8319448745623,-68.8159299460106,-68.79990468239178,-68.78387022115828,-68.76782768199308,-68.75177816727583,-68.73572276252438,-68.71966253681363,-68.70359854317331,-68.68753181896591,-68.67146338624607,-68.65539425210274,-68.63932540898482,-68.6232578350115,-68.60719249426799,-68.59113033011486,-68.57507226419715,-68.5590191988808,-68.5429720192744,-68.52693159490215,-68.51089878108456,-68.49487442007413,-68.4788593419861,-68.46285436555836,-68.44686029876883,-68.43087793933465,-68.41490807511352,-68.39895148442413,-68.38300893630029,-68.36708119069064,-68.35116899861421,-68.33527310228023,-68.31939423517919,-68.30353312215117,-68.28769047943616,-68.27186701471058,-68.25606342711303,-68.24028040726243,-68.22451863727032,-68.20877879074946,-68.19306153282004,-68.17736752011466,-68.16169740078304,-68.14605181449718,-68.13043139245754,-68.1148367574005,-68.09926852360772,-68.08372729691727,-68.06821367473691,-68.05272824605944,-68.03727159148038,-68.0218442690486,-68.00644681754997,-67.99107975931565,-67.97574360254279,-67.96043884320316,-67.94516596660442,-67.92992544865902,-67.91471775690766,-67.89954335133727,-67.88440268502733,-67.8692962046536,-67.8542243508736,-67.83918755861461,-67.82418625728185,-67.80922087090157,-67.79429181821163,-67.77939951271013,-67.76454436267076,-67.74972677113252,-67.73494713586963,-67.7202058493471,-67.70550329866585,-67.69083986550106,-67.67621592603658,-67.66163185089746,-67.64708800508289,-67.63258474790044,-67.61812243290328,-67.60370140783088,-67.58932201455411,-67.57498458902494,-67.56068946123129,-67.54643695515718,-67.53222738874813,-67.51806107388207,-67.50393831634544,-67.48985941581459,-67.47582466584225,-67.46183435384889,-67.44788874876355,-67.4339880975555,-67.42013262898402,-67.40632255672814,-67.3925580819881,-67.37883939563741,-67.36516667999345,-67.3515401102646,-67.3379598557241,-67.32442608065323,-67.3109389450907,-67.29749860541953,-67.28410521481834,-67.27075892359984,-67.25745987945636,-67.2442082276286,-67.23100411101214,-67.21784767021336,-67.20473904356517,-67.19167836711077,-67.17866577456286,-67.16570139724419,-67.15278536401445,-67.13991780118765,-67.12709883244347,-67.11432857873527,-67.10160715819723,-67.08893468605221,-67.076311274522,-67.06373703274096,-67.05121206667404,-67.03873647903971,-67.02631036923839,-67.01393383328656,-67.00160696375688,-66.98932984972431,-66.97710257671818,-66.96492522668028,-66.95279787792875,-66.9407206051276,-66.92869347926174,-66.91671656761721,-66.90478993376641,-66.89291363755808,-66.8810877351118,-66.86931227881671,-66.85758730418797,-66.84591282372168,-66.83428883130553,-66.82271530592602,-66.81119221477222,-66.79971951582282,-66.78829715999132,-66.77692509289409,-66.76560325629703,-66.75433158928932,-66.74311002922565,-66.73193851247277,-66.72081697499134,-66.70974535277941,-66.69872358220039,-66.68775160021487,-66.6768293445332,-66.66595675370284,-66.65513376714274,-66.64436032513508,-66.63363636878307,-66.62296183994225,-66.61233668113147,-66.60176083542889,-66.59123424635723,-66.58075685776198,-66.57032861368559,-66.55994945824001,-66.54961933547972,-66.53933818927662,-66.52910596319836,-66.51892260039085,-66.50878804346581,-66.49870223439393,-66.48866511440396,-66.47867662388805,-66.46873670231346,-66.45884528814068,-66.44900231874783,-66.4392077303615,-66.4294614579936,-66.41976343538418,-66.41011359495008,-66.40051186773894,-66.3909581833887,-66.38145247009189,-66.37199465456477,-66.36258466202105,-66.35322241614968,-66.34390783909673,-66.33464085145094,-66.32542137223277,-66.31624931888666,-66.30712460727638,-66.29804715168305,-66.28901686480586,-66.28003365776513,-66.27109744010755,-66.26220811981348,-66.25336558365527,-66.24456969771715,-66.2358203117672,-66.22711726294517,-66.21846037886105,-66.20984948018632,-66.20128438280963,-66.19276489961881,-66.18429084196308,-66.17586202084212,-66.16747824786255,-66.15913933599661,-66.15084510017356,-66.14259535772965,-66.13438992873947,-66.1262286362479,-66.11811130641944,-66.11003776861914,-66.10200785543762,-66.09402140267045,-66.08607824926092,-66.07817823721383,-66.07032121148676,-66.0625070198642,-66.0547355128192,-66.04700654336638,-66.03931996690936,-66.03167564108556,-66.0240734256102,-66.01651318212154,-66.00899477402865,-66.00151806636285,-65.99408292563386,-65.98668921969107,-65.97933681759072,-65.97202558946908,-65.96475540642204,-65.95752614039114,-65.9503376640561,-65.94318985073382,-65.93608257428376,-65.92901570901957,-65.92198912962674,-65.91500271108619,-65.90805632860348,-65.90114985754346,-65.89428317337013,-65.88745615159134,-65.88066866770833,-65.8739205971696,-65.86721181532899,-65.86054219740772,-65.85391161846024,-65.84731995334343,-65.8407670766891,-65.8342528628797,-65.82777718602662,-65.82133991995146,-65.81494093816947,-65.80858011387558,-65.80225731993232,-65.7959724288599,-65.78972531282798,-65.78351584364931,-65.77734389277471,-65.77120933128965,-65.76511202991212,-65.75905185899161,-65.75302868850937,-65.74704238807955,-65.74109282695132,-65.73517987401182,-65.72930339778992,-65.72346326646061,-65.7176593478501,-65.71189150944139,-65.70615961838045,-65.70046354148282,-65.69480314524057,-65.68917829582975,-65.68358885911802,-65.67803470067267,-65.67251568576883,-65.66703167939795,-65.6615825462764,-65.6561681508543,-65.65078835732439,-65.6454430282875,-65.6401320071471,-65.63485512215878,-65.62961218986509,-65.62440301799819,-65.61922740792306,-65.61408515668379,-65.6089760587082,-65.60389990721855,-65.59885649538991,-65.59384561729243,-65.5888670686489,-65.58392064743501,-65.57900615434592,-65.57412339314959,-65.5692721709447,-65.56445229833844,-65.55966358955739,-65.55490586250288,-65.55017893876057,-65.54548264357268,-65.5408168057801,-65.53618125774031,-65.53157583522662,-65.52700037731292,-65.52245472624774,-65.5179387273209,-65.51345222872506,-65.50899508141485,-65.50456713896494,-65.5001682574288,-65.49579829519922,-65.4914571128718,-65.48714457311179,-65.48286054052531,-65.47860488153502,-65.47437746426085,-65.47017815840587,-65.46600683514741,-65.46186336703363,-65.45774762788537,-65.4536594927034,-65.44959883758088,-65.44556553962096,-65.44155947685931,-65.43758052819157,-65.43362857330534,-65.42970349261672,-65.42580516721112,-65.42193347878812,-65.41808830961021,-65.41426954245532,-65.41047706057272,-65.40671074764234,-65.40297048773718,-65.39925616528868,-65.39556766505484,-65.39190487209103,-65.38826767172317,-65.38465594952326,-65.38106959128707,-65.37750848301383,-65.37397251088778,-65.37046156126158,-65.3669755206412,-65.36351427567254,-65.36007771312927,-65.35666571990217,-65.35327818298957,-65.34991498948904,-65.34657602659004,-65.34326118156767,-65.33997034177717,-65.33670339464945,-65.33346022768724,-65.33024072846207,-65.32704478461184,-65.32387228383905,-65.32072311390954,-65.31759716265181,-65.31449431795677,-65.31141446777796,-65.30835750013216,-65.30532330310031,-65.30231176482887,-65.2993227735314,-65.29635621749047,-65.29341198505976,-65.29048996466648,-65.28759004481391,-65.2847121140842,-65.28185606114127,-65.27902177473393,-65.27620914369909,-65.27341805696508,-65.27064840355517,-65.26790007259103,-65.26517295329643,-65.2624669350009,-65.25978190714352,-65.25711775927672,-65.2544743810702,-65.2518516623147,-65.24924949292611,-65.24666776294927,-65.24410636256202,-65.24156518207919,-65.23904411195653,-65.23654304279479,-65.23406186534363,-65.23160047050567,-65.22915874934041,-65.22673659306824,-65.22433389307436,-65.22195054091272,-65.21958642830992,-65.21724144716912,-65.21491548957384,-65.21260844779188,-65.21032021427904,-65.20805068168293,-65.20579974284674,-65.20356729081287,-65.20135321882671,-65.19915742034019,-65.1969797890154,-65.19482021872821,-65.19267860357175,-65.1905548378599,-65.18844881613079,-65.18636043315013,-65.18428958391469,-65.18223616365556,-65.18020006784147,-65.17818119218205,-65.17617943263103,-65.17419468538942,-65.17222684690867,-65.17027581389371,-65.16834148330605,-65.16642375236677,-65.1645225185595,-65.16263767963333,-65.16076913360574,-65.1589167787654,-65.15708051367503,-65.1552602371741,-65.15345584838165]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1209\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1210\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1205\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1206\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1207\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1217\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1211\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1212\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1213\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.93538594824155,-64.85567106622491,-64.7421895215917,-64.59850082631391,-64.42782873073864,-64.2330940697558,-64.0169437593253,-63.78177645050994,-63.52973963383349,-63.26277438976335,-62.98263543733259,-62.69090483800934,-62.38897200114539,-62.078084944270294,-61.75936164001186,-61.43376297186855,-61.1021279973203,-60.765195336817015,-60.42356783643669,-60.07774358880352,-59.728141839495095,-59.375049519333295,-59.01866785368003,-58.6591344429509,-58.29643881336777,-57.93050853768526,-57.56119642047543,-57.18821046806506,-56.81120702232628,-56.429724962668416,-56.04318118971834,-55.65093949204756,-55.25216221943077,-54.845931728334506,-54.43119268424509,-54.00668985100294,-53.57108619299188,-53.12271425943843,-52.6597916864331,-52.18019953289119,-51.72339424934042,-51.28235489518952,-50.85042880416219,-50.4212699002511,-49.98865029742721,-49.54659423001409,-49.08893114854003,-48.60956628314978,-48.10202520559616,-47.559600188883735,-46.974892579813044,-46.339949185344466,-45.64562506366333,-44.88162982602735,-44.036149818787386,-43.09535203402653,-42.04288260020619,-40.85939843801685,-39.52179866852613,-38.002488930618306,-36.268639006373206,-34.281160100490254,-31.994169837712256,-29.354749398516383,-26.304115087301867,-22.78055849412855,-18.726458184221187,-14.101212241321273,-8.90152720127092,-3.1888949850765176,2.884237438723927,9.065773190816149,15.030705895952192,20.44735539191572,25.05826962482452,28.73574493058252,31.48627177069815,33.41314637700453,34.66451630081989,35.39110242334699,35.72254529323123,35.75972183839812,35.57642538605371,35.224782422106735,34.74110096482446,34.150752107273526,33.471783007393654,32.71741258939222,31.897681695948982,31.020524778585855,30.092458183205252,29.119020279138514,28.10504838234548,27.054859474128772,25.972367481209588,24.861161089048533,23.72455625353342,22.565628591491414,21.387237391940992,20.19204300079508,18.982520027772892,17.760967913876854,16.529517994381333,15.290144514456088,14.044671080623129,12.794777338883417,11.54199385082306,10.287722687023606,9.033245953672616,7.779730367856143,6.528205021202863,5.279602467984663,4.034765673828877,2.7944499066573822,1.5592817390669587,0.32981985687603443,-0.8934376167194564,-2.110055035034096,-3.319695187442366,-4.522100745053109,-5.717045090791899,-6.904340922403943,-8.08384402198187,-9.255497322148404,-10.419318279710877,-11.575335310484505,-12.723602123755335,-13.86420630257916,-14.997274905859083,-16.12297870246062,-17.24163229340739,-18.353559778537818,-19.459114610389097,-20.558695844075313,-21.652760407237423,-22.741833321433482,-23.826516961513025,-24.907499932853046,-25.985565836529343,-27.061601996436096,-28.136673345695442,-29.211952249658363,-30.288716740069688,-31.368367432043566,-32.45243924669288,-33.54260897445635,-34.64069896185192,-35.74867667080884,-36.86864943536511,-38.00285335747519,-39.153636528831996,-40.32349963875272,-41.51493660515872,-42.73039306703331,-43.972201164338706,-45.242489115395095,-46.542984279800095,-47.87488746949399,-49.238704311846895,-50.633817612995664,-52.05832892938863,-53.50885137924999,-54.9798091161895,-56.46379258479625,-57.95067844078668,-59.42843906267284,-60.88266843285605,-62.297802627420786,-63.65745985814837,-64.94584172520288,-66.14893332779576,-67.25537999976139,-68.25755018069985,-69.15196582195493,-69.93922761922947,-70.62350952573098,-71.21174894737652,-71.71281501236483,-72.13653936647704,-72.49297800033246,-72.79180649931767,-73.04196330934667,-73.25142104563348,-73.42710327948491,-73.57491123682487,-73.69979262041453,-73.80584364503035,-73.89642317265096,-73.97426578633647,-74.04158637700579,-74.10017244567659,-74.1514639466942,-74.1966200874169,-74.23657434102398,-74.2720794148495,-74.30374366043287,-74.33206034566419,-74.35743106502629,-74.38018439037603,-74.40059068995681,-74.41887388188304,-74.43522074650006,-74.44978830141179,-74.46270964267127,-74.47409857354133,-74.48405327581791,-74.4926592254322,-74.49999151157708,-74.5061166849058,-74.51109423370377,-74.51497776591387,-74.51781595834294,-74.51965332135511,-74.52053081712042,-74.52048636144129,-74.51955523285505,-74.51777040773776,-74.51516283622294,-74.5117616706692,-74.50759445598452,-74.50268728920146,-74.49706495418724,-74.49075103617848,-74.48376801988599,-74.47613737416599,-74.46787962566067,-74.45901442333862,-74.4495605954902,-74.43953620043386,-74.42895857194979,-74.41784436026673,-74.40620956927435,-74.39406959051085,-74.38143923437626,-74.36833275894274,-74.35476389666852,-74.34074587927006,-74.32629146096504,-74.31141294026399,-74.29612218046081,-74.28043062894916,-74.26434933547313,-74.24788896940504,-74.23105983613048,-74.21387189261006,-74.19633476217862,-74.17845774863541,-74.16024984967221,-74.14171976968171,-74.1228759319836,-74.10372649050232,-74.08427934092741,-74.06454213138403,-74.04452227263971,-74.0242269478706,-74.00366312200909,-73.98283755069295,-73.9617567536893,-73.9404270614971,-73.9188546308921,-73.89704545002401,-73.87500534369246,-73.85273997871874,-73.83025486934834,-73.80755538263348,-73.78464674375668,-73.76153404126516,-73.73822223219368,-73.7147161470591,-73.69102049471479,-73.66713986705675,-73.64307874357591,-73.6188414957543,-73.59443239130363,-73.569855598247,-73.54511518884517,-73.52021514336992,-73.49515935372756,-73.46995162693607,-73.44459568845991,-73.4190951854066,-73.39345368958924,-73.36767470045956,-73.34176164791582,-73.31571789498992,-73.28954674041815,-73.26325142109985,-73.23683511444827,-73.21030094063752,-73.18365196475,-73.1568911988278,-73.1300216038321,-73.10304609151424,-73.07596752620171,-73.04878872650282,-73.02151246693316,-72.99414147946705,-72.9666784305793,-72.93912586223912,-72.9114863061811,-72.88376227972306,-72.85595628250333,-72.82807079396903,-72.80010827147652,-72.77207114888971,-72.74396183558206,-72.71578271576429,-72.68753614807402,-72.6592244653745,-72.63084997471913,-72.60241495744592,-72.57392166937306,-72.54537234107129,-72.51676917819364,-72.48811436184685,-72.45941004899124,-72.43065837285884,-72.40186144338135,-72.37302134762125,-72.34414015020076,-72.31521989372469,-72.28626259919372,-72.25727026640592,-72.22824487434474,-72.19918838155198,-72.17010272648517,-72.14098982785872,-72.11185158496858,-72.08268987800041,-72.0535065683215,-72.02430349875655,-71.99508249384793,-71.96584532443924,-71.93659357327881,-71.9073288509571,-71.87805278806773,-71.84876702868155,-71.81947322492044,-71.79017303245232,-71.76086810675748,-71.731560100041,-71.7022506586854,-71.6729414211557,-71.64363401628198,-71.6143300618574,-71.58503116349915,-71.55573891372826,-71.52645489123138,-71.49718066027349,-71.46791777023549,-71.43866775525501,-71.40943213395205,-71.38021240922427,-71.35101006809924,-71.32182658163298,-71.29266340484592,-71.26352197668918,-71.23440372003468,-71.20531004168458,-71.17624233239547,-71.1472019669142,-71.11819030402248,-71.08920868658811,-71.06025844162083,-71.0313408803316,-71.00245729819393,-70.97360897500657,-70.94479686537795,-70.91602194035704,-70.8872852122585,-70.85858772534243,-70.829930547942,-70.80131476581977,-70.77274147656681,-70.74421178488716,-70.71572679863377,-70.6872876254824,-70.65889537014667,-70.63055113205229,-70.6022560034005,-70.57401106756123,-70.54581739774557,-70.51767605591425,-70.48958809188584,-70.46155454261324,-70.43357643160239,-70.40565476845022,-70.37779054848329,-70.34998475248061,-70.32223834646695,-70.29455228156509,-70.26692749389724,-70.23936490452711,-70.21186541943578,-70.18442992952549,-70.15705931064623,-70.12975442364105,-70.10251611440664,-70.07534521396614,-70.04824253855186,-70.02120888969576,-69.99424505432616,-69.967351702146,-69.9405291268452,-69.91377769312389,-69.88709782368397,-69.86048998813,-69.83395469350513,-69.80749247622829,-69.78110389523195,-69.75478952612927,-69.72854995626324,-69.70238578051192,-69.67629759774138,-69.65028600781349,-69.6243516090688,-69.5984949962158,-69.57271675856799,-69.5470174785778,-69.52139773062427,-69.49585808001702,-69.47039908218441,-69.44502128201871,-69.41972521335428,-69.39451139855889,-69.36938034822072,-69.34433256091619,-69.31936852304592,-69.29448870872812,-69.26969357973985,-69.24498358549849,-69.22035916307661,-69.1958207372445,-69.17136872053544,-69.14700351332957,-69.12272550395302,-69.09853506878915,-69.07443257239943,-69.05041836765203,-69.02649279585611,-69.00265618690061,-68.978908859396,-68.95525056064534,-68.93168105296131,-68.90820018263402,-68.88480786616951,-68.86150407845531,-68.83828884259006,-68.81516222115037,-68.7921243086993,-68.76917522536709,-68.74631511135836,-68.72354412225897,-68.70086242503358,-68.67827019461903,-68.65576761103186,-68.63335485691896,-68.61103211549003,-68.58879956877891,-68.56665739618755,-68.5446057732731,-68.52264487074369,-68.50077485363292,-68.4789958806278,-68.45730810352745,-68.43571166681369,-68.41420670731682,-68.39279335396243,-68.3714717275868,-68.35024194081032,-68.32910409795996,-68.30805829503275,-68.28710461969368,-68.2662431513022,-68.24547396096247,-68.22479711159295,-68.20421265801198,-68.18372064703611,-68.16332111758858,-68.1430141008159,-68.12279962021046,-68.10267769173772,-68.08264832396664,-68.0627115182022,-68.04286726861918,-68.02311556239628,-68.00345637985022,-67.9838896945689,-67.96441485492244,-67.94503117268498,-67.92573806357625,-67.90653503191221,-67.88742165731034,-67.86839758318094,-67.84946250677127,-67.83061617055965,-67.81185835482307,-67.79318887122496,-67.77460755728946,-67.75611427164597,-67.7377088899426,-67.71939130134041,-67.70116140551163,-67.68301911007492,-67.66496432840945,-67.64699697779704,-67.62911697784826,-67.6113242491739,-67.5936187122687,-67.57600028657775,-67.55846888972081,-67.5410244368521,-67.52366684013676,-67.50639600832733,-67.48921184642582,-67.47211425541896,-67.45510313207582,-67.4381783687984,-67.42133985351721,-67.40458746962474,-67.38792109594094,-67.37134060670532,-67.35484587159142,-67.33843675573968,-67.32211311980538,-67.305874820019,-67.2897217082564,-67.2736536321169,-67.2576704350075,-67.24177195623156,-67.22595803108109,-67.21022849093117,-67.19458316333592,-67.1790218721251,-67.16354443750085,-67.14815067613395,-67.13284040125941,-67.11761342277069,-67.10246954731265,-67.08740857837286,-67.07243031637107,-67.05753455874681,-67.04272110004501,-67.02798973199954,-67.01334024361468,-66.99877242124457,-66.98428598187284,-66.96987992646042,-66.95555337971318,-66.94130557312575,-66.92713583020826,-66.91304355362084,-66.89902821397516,-66.88508934009266,-66.87122651053582,-66.8574393462514,-66.8437275041851,-66.83009067174449,-66.81652856200253,-66.80304090954738,-66.78962746689594,-66.77628800139912,-66.76302229257544,-66.74983012981788,-66.73671131042555,-66.72366563791792,-66.7106929205947,-66.69779297030892,-66.68496560142523,-66.67221062993845,-66.65952787273112,-66.64691714695117,-66.63437826949323,-66.62191105656939,-66.60951532335709,-66.59719088371298,-66.58493754994372,-66.57275513262516,-66.56064344046312,-66.54860228018934,-66.53663145648738,-66.52473077194382,-66.51290002702075,-66.50113902004607,-66.48944754721863,-66.47782540262568,-66.46627237827039,-66.45478826410748,-66.44337284808552,-66.43202591619433,-66.42074725251646,-66.40953663928157,-66.39839385692304,-66.38731868413608,-66.3763108979366,-66.36537027372052,-66.35449658532292,-66.34368960507699,-66.33294910387212,-66.32227485121128,-66.31166661526716,-66.3011241629373,-66.2906472598978,-66.2802356706557,-66.26988915859994,-66.25960748605081,-66.24939041430807,-66.23923770369737,-66.22914911361542,-66.21912440257358,-66.20916332824008,-66.19926564748083,-66.18943111639885,-66.17965949037244,-66.169950524092,-66.16030397159567,-66.15071958630374,-66.1411971210519,-66.13173632812348,-66.12233695928046,-66.11299876579365,-66.1037214984717,-66.09450490768938,-66.08534874341478,-66.07625275523576,-66.06721669238556,-66.05824030376762,-66.04932333797963,-66.04046554333692,-66.03166666789511,-66.02292645947212,-66.01424466566958,-66.00562103389365,-65.99705531137518,-65.98854702046934,-65.98009529222232,-65.97169935644435,-65.96335852866171,-65.95507219870777,-65.9468398207514,-65.93866090458633,-65.9305350080257,-65.92246173026597,-65.91444070610021,-65.90647160087589,-65.89855410610467,-65.89068793564347,-65.88287282237543,-65.87510851532848,-65.86739477717659,-65.8597313820757,-65.85211811379209,-65.84455476408607,-65.83704113131864,-65.82957701925262,-65.82216223602317,-65.81479659325595,-65.80747990531374,-65.80021198865475,-65.79299266128781,-65.7858217423118,-65.77869905152791,-65.77162440911508,-65.76459763535982,-65.75761855043324,-65.75068697420838,-65.74380272611256,-65.73696562500946,-65.73017548910678,-65.72343213588579,-65.7167353820493,-65.71008504348545,-65.70348093524481,-65.69692287152854,-65.69041066568596,-65.68394413021988,-65.67752307679837,-65.67114731627163,-65.66481665869328,-65.65853091334488,-65.65228988876314,-65.64609339276923,-65.63994123249948,-65.63383321443716,-65.627769144445,-65.62174882779799,-65.61577206921633,-65.60983867289829,-65.60394844255268,-65.598101181431,-65.59229669235904,-65.58653477776772,-65.58081523972338,-65.57513787995723,-65.56950249989401,-65.5639089006799,-65.55835688320947,-65.55284624815194,-65.5473767959765,-65.5419483269769,-65.5365606412951,-65.53121353894424,-65.52590681983082,-65.52064028377602,-65.51541373053642,-65.51022695982394,-65.5050797713251,-65.49997196471963,-65.49490333969851,-65.48987369598126,-65.48488283333279,-65.47993055157964,-65.47501665062568,-65.4701409304673,-65.46530319120815,-65.46050323307337,-65.45574085642342,-65.45101586176746,-65.44632804977634,-65.44167722129522,-65.43706317735578,-65.43248571918812,-65.42794464823236,-65.42343976614981,-65.41897087483399,-65.41453777642121,-65.41014027330101,-65.40577816812622,-65.40145126382284,-65.39715936359966,-65.39290227095765,-65.38867978969913,-65.38449172393673,-65.38033787810214,-65.37621805695467,-65.37213206558961,-65.36807970944646,-65.36406079431691,-65.36007512635273,-65.35612251207341,-65.35220275837379,-65.34831567253137,-65.34446106221357,-65.34063873548486,-65.33684850081373,-65.33309016707952,-65.32936354357912,-65.32566844003358,-65.3220046665946,-65.31837203385082,-65.31477035283415,-65.3111994350258,-65.3076590923624,-65.30414913724185,-65.30066938252916,-65.29721964156218,-65.29379972815718,-65.29040945661443,-65.28704864172353,-65.28371709876885,-65.28041464353471,-65.27714109231056,-65.27389626189603,-65.27067996960594,-65.26749203327515,-65.26433227126343,-65.26120050246017,-65.258096546289,-65.2550202227124,-65.25197135223621,-65.24894975591398,-65.24595525535138,-65.24298767271041,-65.24004683071362,-65.23713255264822,-65.23424466237012,-65.23138298430788,-65.22854734346666,-65.225737565432,-65.22295347637359,-65.22019490304896,-65.21746167280712,-65.21475361359208,-65.21207055394635,-65.20941232301433,-65.20677875054574,-65.20416966689878,-65.20158490304345,-65.1990242905647,-65.1964876616654,-65.19397484916955,-65.19148568652508,-65.18902000780686,-65.18657764771945,-65.18415844159992,-65.18176222542058,-65.1793888357916,-65.17703810996356,-65.17470988583008,-65.1724040019302]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1218\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1219\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1214\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1215\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1216\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1227\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1221\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1222\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1223\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-63.8558716883749,-62.78241294023915,-61.76275257071386,-60.79313281530131,-59.870091326000306,-58.99043648379463,-58.151224883142824,-57.3497407739721,-56.583476512612336,-55.85011537705734,-55.147515890125426,-54.47369738259154,-53.82682573365891,-53.205201386649385,-52.60724833835713,-52.031502914828415,-51.4766041876426,-50.94128553302929,-50.42436559532494,-49.924740648990834,-49.44137813346984,-48.973308950992354,-48.51962155291583,-48.07945699394583,-47.65200175214902,-47.23648347822349,-46.83216659210441,-46.43834604292223,-46.054344155579834,-45.679505699290246,-45.313193085114335,-44.95478385589131,-44.60366392313601,-44.259224755706526,-43.920859011781204,-43.58795456355917,-43.25989233291004,-42.93603688959458,-42.61573392341579,-42.29830129537472,-43.114367604265496,-43.873940331552156,-44.580296903763895,-45.23635256474745,-45.8446831548839,-46.407550638377316,-46.926914054452375,-47.40444788723084,-47.841545988217455,-48.2393296184419,-48.598641528341574,-48.920044386399454,-49.20380044635908,-49.44985366637547,-49.65780160645285,-49.826854150599516,-49.95577959490258,-50.042839755045165,-50.08570579825459,-50.08135679925061,-50.025961742111846,-49.91473755838479,-49.741798901324906,-49.5000087360869,-49.180871533447124,-48.774519103839886,-48.269904552317506,-47.655368379225095,-46.91977447331497,-46.05439823527007,-45.055488123922316,-43.92694796276778,-42.682085599146724,-41.34330957600484,-39.93944932688304,-38.50157607231659,-37.05891474559393,-35.636079320329394,-34.25199186140665,-32.920109476465164,-31.649338727181217,-30.44512858306137,-29.310455497100875,-28.246595835181093,-27.253684216461227,-26.331097757054685,-25.47771300318766,-24.69207537544445,-23.972510788934976,-23.31719963580567,-22.724226473025258,-22.191614048063695,-21.71734732308658,-21.29939087536883,-20.935701902761558,-20.62424023542032,-20.36297626147249,-20.149897472765097,-19.983013951975785,-19.860363053429587,-19.780013444106178,-19.74006861696353,-19.73867000831661,-19.773999623455705,-19.8442823316699,-19.947787841574183,-20.082832722799637,-20.24778171100388,-20.441048691228833,-20.661097493589484,-20.906443304225007,-21.175652785969202,-21.46734398709211,-21.780186198976676,-22.112901033854246,-22.46426164678063,-22.83309178242807,-23.218264929232145,-23.618704582057706,-24.03338394214552,-24.461324178862967,-24.9015930384341,-25.35330363822682,-25.815614628468644,-26.28772997193457,-26.76889685546231,-27.258404136598543,-27.755581126708332,-28.259796604554374,-28.77045800761781,-29.28701362753165,-29.808950715791923,-30.335794277493388,-30.867106409871614,-31.402486038940317,-31.94156897244241,-32.4840282238224,-33.029574581489534,-33.57795740699473,-34.128965648810784,-34.68243098728266,-35.238228736686736,-35.7962786470368,-36.35654616350971,-36.91904396550499,-37.48383364744035,-38.05102741909016,-38.62078970235948,-39.19333848797286,-39.76894629152844,-40.34794056244357,-40.930705272081646,-41.517677704074735,-42.109344187978486,-42.70623413123509,-43.308911694697535,-43.91796208707593,-44.53397487193544,-45.157523176145816,-45.78913135823435,-46.42923971275342,-47.07816492642373,-47.73604192205988,-48.402779305399314,-49.07799115623593,-49.76095639206317,-50.45056627353902,-51.145310800217935,-51.84327588716685,-52.54218213314872,-53.23945701724067,-53.932329180412786,-54.61794912104299,-55.2935161932084,-55.95639663196106,-56.60422034506103,-57.23494860168349,-57.846913519204456,-58.43882678390703,-59.009766076334174,-59.559144334265795,-60.08667010202791,-60.592303227525626,-61.07621045713135,-61.53872418444309,-61.98030543077407,-62.40151181431656,-62.80297060021676,-63.1853565296487,-63.54937392243598,-63.89574246237538,-64.22518610071482,-64.53842452600945,-64.8361667151234,-65.11910615751005,-65.38791741057402,-65.64325370414406,-65.88574536483614,-66.11599887589492,-66.33459642535611,-66.5420958258688,-66.73903071419424,-66.92591095819502,-67.10322321490446,-67.27143159577564,-67.43097840508742,-67.58228492526268,-67.72575222896035,-67.86176200258832,-67.99067736962682,-68.11284370507289,-68.22858943459345,-68.33822681374409,-68.44205268398404,-68.5403492032796,-68.63338454990672,-68.72141359869136,-68.80467856940462,-68.88340964739203,-68.95782557678709,-69.02813422685959,-69.09453313219355,-69.15721000749157,-69.2163432378708,-69.27210234555784,-69.32464843391321,-69.37413460972328,-69.42070638469343,-69.46450205706411,-69.50565307425198,-69.54428437739503,-69.5805147286535,-69.6144570220893,-69.64621857891642,-69.67590142788315,-69.70360257151589,-69.72941423892287,-69.75342412582515,-69.77571562245195,-69.79636802990824,-69.81545676559327,-69.83305355822182,-69.84922663297282,-69.8640408872646,-69.87755805763148,-69.88983687815306,-69.90093323086482,-69.91090028855753,-69.91978865035234,-69.92764647041899,-69.93451958018598,-69.94045160437388,-69.94548407116632,-69.94965651681687,-69.95300658497518,-69.95557012100112,-69.9573812615219,-69.95847251843506,-69.95887485981693,-69.95861778698311,-69.95772940759669,-69.95623650503994,-69.95416460425137,-69.95153803421715,-69.94837998729439,-69.94471257553342,-69.94055688415598,-69.93593302233762,-69.93086017143395,-69.92535663078276,-69.91943986120663,-69.913126526334,-69.90643253185011,-69.89937306278351,-69.89196261892796,-69.88421504849455,-69.87614358008359,-69.8677608530614,-69.85907894642256,-69.85010940621412,-69.8408632715941,-69.8313510995932,-69.8215829886448,-69.81156860094521,-69.80131718370285,-69.79083758933211,-69.78013829464471,-69.76922741908876,-69.75811274208317,-69.74680171949264,-69.73530149928614,-69.72361893641963,-69.71176060698166,-69.6997328216387,-69.687541638415,-69.67519287484002,-69.6626921194951,-69.65004474226632,-69.63725590230631,-69.62433055895181,-69.61127348193614,-69.5980892609614,-69.58478231468689,-69.57135689918259,-69.55781711589124,-69.5441669191369,-69.53041012321384,-69.51655040908594,-69.50259133072333,-69.48853632110071,-69.47438869787895,-69.46015166879012,-69.44582833674376,-69.43142170467107,-69.41693468012211,-69.40237007963016,-69.38773063285593,-69.37301898652392,-69.35823770816181,-69.34338928965357,-69.32847615061581,-69.3135006416066,-69.29846504717527,-69.28337158876148,-69.26822242745074,-69.25301966659389,-69.23776535429724,-69.22246148578967,-69.20711000567279,-69.19171281006003,-69.17627174860985,-69.16078862645851,-69.14526520500249,-69.12970319866447,-69.11410427821787,-69.09847007370237,-69.08280217699138,-69.06710214406218,-69.05137149701204,-69.03561172585661,-69.0198242901411,-69.00401062039049,-68.98817211942047,-68.97231016352787,-68.95642610357618,-68.94052126598959,-68.92459695366695,-68.90865444682517,-68.89269500378035,-68.87671986167369,-68.86073023714812,-68.84472732698072,-68.8287123086755,-68.81268634102024,-68.79665056461056,-68.78060610234441,-68.76455405988902,-68.74849552612282,-68.73243157355411,-68.71636325871805,-68.70029162255369,-68.68421769076224,-68.66814247414763,-68.65206696894082,-68.63599215710836,-68.61991900664654,-68.6038484718616,-68.5877814844813,-68.57171895534334,-68.555661776728,-68.53961082429096,-68.52356695866041,-68.50753102675262,-68.49150386285181,-68.47548628949316,-68.45947911818139,-68.4434831499729,-68.42749917594443,-68.41152797756804,-68.39557032700883,-68.37962698735926,-68.36369871282186,-68.34778624884972,-68.33189033225332,-68.31601169128018,-68.30015104567309,-68.28430910671155,-68.2684865772404,-68.25268415168863,-68.23690251608114,-68.2211423480455,-68.20540431681538,-68.18968908323214,-68.17399729974562,-68.15832961041498,-68.14268665091025,-68.12706904851522,-68.11147742213191,-68.09591238228694,-68.08037453114007,-68.06486446249488,-68.04938276181186,-68.03393000318567,-68.01850673883,-68.00311350234259,-67.98775081141184,-67.972419170051,-67.95711907043344,-67.94185099439186,-67.92661541463471,-67.91141279572527,-67.89624359486227,-67.88110826249479,-67.86600724279967,-67.8509409740448,-67.83590988885885,-67.82091441442402,-67.80595497260654,-67.79103198003676,-67.77614584814916,-67.76129698319076,-67.74648578620516,-67.73171265299787,-67.7169779740883,-67.70228213465197,-67.68762551445676,-67.67300848779553,-67.65843142341757,-67.64389468446048,-67.62939862838401,-67.61494360690682,-67.60052996594705,-67.58615804556733,-67.57182817992468,-67.55754069722549,-67.54329591968586,-67.52909416349735,-67.5149357387981,-67.50082094964938,-67.48675009401721,-67.4727234637592,-67.45874134461617,-67.44480399964182,-67.4309116708545,-67.41706458284082,-67.40326294576037,-67.38950695784045,-67.3757968074372,-67.36213267472871,-67.34851473309647,-67.33494315024329,-67.32141808908945,-67.30793970848212,-67.29450816374884,-67.28112360712063,-67.26778618804711,-67.25449605342237,-67.24125334773771,-67.22805821317476,-67.21491078965065,-67.20181121482483,-67.18875962407591,-67.17575615045529,-67.1628009246233,-67.14989407477287,-67.1370357265445,-67.12422600293581,-67.11146502420854,-67.09875290779493,-67.08608976820545,-67.07347571693906,-67.06091086239715,-67.04839530980216,-67.03592916112112,-67.02351251499486,-67.01114546667301,-66.99882810795505,-66.98656052713726,-66.97434280896591,-66.96217503459624,-66.95005728155726,-66.93798962372226,-66.92597213128468,-66.91400487073923,-66.90208790486794,-66.89022129273094,-66.87840508966167,-66.86663934726631,-66.85492409513179,-66.84325934091584,-66.83164507458869,-66.82008127199506,-66.8085678978332,-66.79710490813497,-66.78569225231955,-66.77432987488312,-66.7630177167789,-66.75175571653403,-66.74054381114352,-66.72938193677602,-66.71827002932116,-66.70720802480399,-66.6961958596887,-66.68523347109019,-66.67432079690981,-66.66345777590892,-66.65264434773195,-66.64188045288898,-66.6311660327062,-66.62050102925144,-66.60988538524067,-66.59931904393059,-66.58880194900145,-66.57833404443353,-66.56791527438031,-66.55754558304045,-66.54722491453066,-66.53695321276092,-66.52673042131325,-66.51655648332492,-66.50643134137697,-66.49635493738829,-66.4863272125159,-66.47634810706141,-66.46641756038393,-66.4565355108194,-66.44670189560628,-66.43691665081747,-66.42717971129844,-66.41749101061119,-66.40785048098397,-66.3982580532664,-66.38871365688996,-66.37921721983328,-66.36976866859222,-66.36036792815439,-66.35101492197785,-66.34170957197372,-66.33245179849247,-66.32324152031362,-66.31407865463868,-66.30496311708701,-66.29589482169447,-66.2868736809146,-66.27789960562208,-66.26897250511853,-66.26009228516456,-66.25125882699243,-66.24247199227163,-66.23373162730877,-66.22503756658678,-66.2163896357353,-66.20778765401168,-66.19923143636177,-66.19072079512055,-66.18225554140464,-66.17383548624179,-66.16546044147653,-66.15713022048573,-66.14884463873328,-66.14060351418922,-66.13240666763502,-66.12425392287373,-66.11614510686111,-66.10808004977164,-66.10005858501107,-66.09208054918574,-66.0841457820373,-66.07625412635002,-66.06840542783704,-66.06059953501061,-66.05283629904098,-66.04511557360733,-66.03743721474406,-66.02980108068475,-66.022207031706,-66.01465492997283,-66.00714463938698,-65.99967602543904,-65.99224895506559,-65.98486329651155,-65.97751891919853,-65.97021569359936,-65.962953491119,-65.95573218398191,-65.94855164512603,-65.94141174810312,-65.93431236698547,-65.9272533762789,-65.92023465084173,-65.91325606580962,-65.90631749652597,-65.89941881847777,-65.89255990723653,-65.88574063840413,-65.87896088756327,-65.87222053023237,-65.86551944182453,-65.85885749761047,-65.85223457268509,-65.84565054193749,-65.83910528002424,-65.8325986613456,-65.82613056002462,-65.81970084988883,-65.81330940445434,-65.80695609691229,-65.80064080011729,-65.79436338657793,-65.78812372844894,-65.78192169752515,-65.77575716523693,-65.76963000264698,-65.76354008044854,-65.75748726896465,-65.75147143814864,-65.74549245758548,-65.73955019649415,-65.73364452373075,-65.72777530779243,-65.72194241682197,-65.71614571861299,-65.71038508061568,-65.70466036994307,-65.69897145337777,-65.693318197379,-65.68770046809016,-65.68211813134648,-65.67657105268322,-65.67105909734379,-65.66558213028841,-65.66014001620275,-65.65473261950669,-65.64935980436337,-65.6440214280423,-65.63871732971357,-65.63344733433254,-65.62821125593157,-65.62300890039924,-65.61784006781662,-65.61270455441158,-65.60760215418408,-65.60253266024866,-65.59749586593436,-65.59249156567692,-65.58751955573364,-65.58257963474722,-65.5776716041815,-65.57279526864869,-65.5679504361453,-65.56313691821154,-65.5583545300269,-65.55360309045273,-65.54888242203143,-65.54419235095027,-65.53953270697659,-65.5349033233704,-65.53030403677943,-65.52573468712066,-65.52119511745214,-65.516685173838,-65.51220470520914,-65.50775356322181,-65.50333160211561,-65.4989386785726,-65.49457465157842,-65.49023938228643,-65.48593273388566,-65.48165457147302,-65.4774047619302,-65.47318317380568,-65.46898967720183,-65.46482414366743,-65.46068644609555,-65.45657645862676,-65.4524940565577,-65.4484391162548,-65.4444115150732,-65.44041113128046,-65.43643784398522,-65.43249153307035,-65.4285720791306,-65.42467936341441,-65.4208132677698,-65.4169736745941,-65.41316046678733,-65.409373527709,-65.40561274113821,-65.40187799123692,-65.39816916251588,-65.39448613980363,-65.3908288082178,-65.38719705313898,-65.38359076018676,-65.38000981519804,-65.37645410420708,-65.37292351342771,-65.36941792923695,-65.36593723816053,-65.3624813268597,-65.35905008211957,-65.3556433908387,-65.35226114001988,-65.3489032167621,-65.34556950825346,-65.34225990176517,-65.33897428464634,-65.3357125443196,-65.33247456827759,-65.32926024408,-65.32606945935142,-65.32290210177962,-65.31975805911458,-65.3166372191678,-65.3135394698123,-65.31046469898284,-65.30741279467671,-65.30438364495477,-65.30137713794285,-65.29839316183345,-65.29543160488767,-65.29249235543749,-65.28957530188816,-65.28668033272088,-65.28380733649556,-65.28095620185385,-65.27812681752232,-65.27531907231564,-65.27253285514,-65.26976805499665,-65.2670245609854,-65.26430226230836,-65.2616010482736,-65.258920808299,-65.25626143191603,-65.25362280877374,-65.25100482864258,-65.2484073814184,-65.24583035712642,-65.24327364592519,-65.24073713811062,-65.23822072412,-65.23572429453594,-65.23324774009045,-65.23079095166887,-65.22835382031388,-65.22593623722953,-65.22353809378508,-65.22115928151904,-65.218799692143,-65.2164592175456,-65.21413774979635,-65.21183518114947,-65.20955140404767,-65.20728631112603,-65.20503979521558,-65.2028117493472,-65.20060206675514,-65.19841064088074,-65.19623736537602,-65.19408213410726,-65.1919448411585,-65.18982538083507,-65.18772364766703,-65.18563953641257,-65.1835729420614,-65.18152375983811,-65.17949188520542,-65.17747721386746,-65.17547964177298,-65.17349906511855,-65.17153538035164,-65.16958848417377,-65.16765827354352,-65.16574464567958,-65.16384749806369,-65.16196672844357,-65.16010223483585,-65.15825391552886,-65.15642166908547,-65.15460539434588,-65.1528049904303,-65.15102035674165,-65.14925139296825,-65.14749799908638,-65.14576007536286,-65.14403752235756,-65.14233024092594,-65.14063813222147,-65.138961097698,-65.13729903911221,-65.13565185852588,-65.13401945830822,-65.1324017411381,-65.13079861000628,-65.12920996821761,-65.12763571939314,-65.12607576747223,-65.12453001671464,-65.12299837170255]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1228\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1229\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1224\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1225\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1226\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1127\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1140\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1141\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1142\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1143\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1149\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1148\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1150\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1151\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1152\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1135\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1136\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1137\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1138\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1130\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1131\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1132\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1133\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1134\",\"attributes\":{\"axis\":{\"id\":\"p1130\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1139\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1135\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1162\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1163\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1159\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1182\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1179\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1201\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1198\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1220\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1217\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"1666a7c4-5d81-430e-a52f-f385139a3979\",\"roots\":{\"p1119\":\"f8f3d7f1-3145-4602-891a-392926c5c9fb\"},\"root_ids\":[\"p1119\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1119" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " n.finitialize(-65 * mV)\n", " n.continuerun(25 * ms)\n", " f.line(t, list(soma_v), line_width=2, legend_label=\"amp=%g\" % amp, color=color)\n", " f.line(t, list(dend_v), line_width=2, line_dash=\"dashed\", color=color)\n", "\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We see that when the soma membrane potential is sufficiently low, it is possible for the dendrite to be more depolarized than the soma, but the peak membrane potential in the leaky dendrite is significantly reduced from the peak in the soma during an action potential. (This is because in our model all the voltage-gated channels that would depolarize the cell are only present in the soma.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### The role of nseg" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's see the effects of nseg, the number of segments of the dendrite, on the signal through the dendrite." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll do this by modifying the above code to run all of our simulations for both `nseg = 1` (the default) and for `nseg = 101`. We'll use thin lines for the high resolution (`nseg = 101`) case and thick lines for the low resolution case:" ] }, { "cell_type": "code", "execution_count": 48, "metadata": { "execution": { "iopub.execute_input": "2025-08-18T03:35:43.278071Z", "iopub.status.busy": "2025-08-18T03:35:43.277760Z", "iopub.status.idle": "2025-08-18T03:35:43.649862Z", "shell.execute_reply": "2025-08-18T03:35:43.649401Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"7eb27da4-7713-402f-b3db-420c74220098\":{\"version\":\"3.7.2\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1230\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1231\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1232\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1239\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1240\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1237\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1270\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1264\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1265\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1266\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.96692100902152,-64.94701564616963,-64.9186685641677,-64.88276928367466,-64.84012318892181,-64.79145982447847,-64.73744029705793,-64.67866388450894,-64.6156739445351,-64.54896320574001,-64.47897851394293,-64.4061250977164,-64.33077040894594,-64.25324758696883,-64.1738585884989,-64.09287702003475,-64.0105507046985,-63.92710401137687,-63.84273091316948,-63.757605591706714,-63.6718855389204,-63.5857130232166,-63.499216432838445,-63.41251150685131,-63.325702463153604,-63.23888303202764,-63.15213740296994,-63.065541091859856,-62.97916173492216,-62.893056648071386,-62.80726694060401,-62.721829191409675,-62.6367758371143,-62.552135535325746,-62.46793350344035,-62.38419183371876,-62.30092978551989,-62.21816405570569,-62.135909028309875,-62.054177004609095,-61.983482906983866,-61.92274538761009,-61.87098368994225,-61.8273179919356,-61.79095921893715,-61.76119986027501,-61.73740567352779,-61.71900818251027,-61.7054978908438,-61.69641814448704,-61.691359585112956,-61.68995514265691,-61.69187552037852,-61.696825129827644,-61.70453843649505,-61.71477667987217,-61.727324934284724,-61.741989479292606,-61.75859545072198,-61.77698474554734,-61.79701415589137,-61.8185537093655,-61.841485194837595,-61.86570085448365,-61.89110222465631,-61.91759910968126,-61.945108674172204,-61.97355464083502,-62.00286658201234,-62.03297862873772,-62.06382336044991,-62.09533836941806,-62.12746575785017,-62.1601516923688,-62.193346009307504,-62.227001864991124,-62.26107542580365,-62.29552559342395,-62.33031376112744,-62.365403597515915,-62.40076085445295,-62.4363531963529,-62.472150048301835,-62.50812246078267,-62.54424298903801,-62.58048558533583,-62.616825502608464,-62.653239208117185,-62.6897043059552,-62.72619946734395,-62.76270436780274,-62.7991996303823,-62.83566677425015,-62.872088168001376,-62.90844698714393,-62.94472717527398,-62.98091340851517,-63.01699106284718,-63.05294295489739,-63.088749490064906,-63.124392760536324,-63.1598563817407,-63.19512534773804,-63.2301859032119,-63.26502543002778,-63.29963234657303,-63.33399601831618,-63.36810667821787,-63.401955355795394,-63.43553381379165,-63.46883449152933,-63.50185045414513,-63.53457534699854,-63.56700335463705,-63.59912916377629,-63.63094792982029,-63.662455246506134,-63.693647118308405,-63.7245199352839,-63.75507045007663,-63.78529575683752,-63.81519327184361,-63.84476071562794,-63.87399609645461,-63.9028976949937,-63.93146405006864,-63.959693945364215,-63.98758639699681,-64.01514064186078,-64.04235393996359,-64.06922238139809,-64.09574289797693,-64.12191316355064,-64.1477315065324,-64.17319683308897,-64.19830855965535,-64.22306655360251,-64.24747108103732,-64.27152276084364,-64.2952225241867,-64.3185715788018,-64.34157137747376,-64.36422359018901,-64.38653007950717,-64.40849287875594,-64.43011417270347,-64.45139628040495,-64.47234163995884,-64.49295279494098,-64.5132323823138,-64.53318312163339,-64.55280780539883,-64.57210929040828,-64.59109049000234,-64.60975436709086,-64.6281039278715,-64.64614221616046,-64.66387230826483,-64.6812973083355,-64.69842034414646,-64.71524456325328,-64.73177312948943,-64.74800921976377,-64.76395602112744,-64.77961672808182,-64.79499454010305,-64.8100926593612,-64.82491428861493,-64.83946262926484,-64.85374087955046,-64.8677522328778,-64.88149987626593,-64.89498698890192,-64.90821674079535,-64.92119229152418,-64.93391678906455,-64.94639336869832,-64.95862515199248,-64.97061524584518,-64.982366741594,-64.99388271418204,-65.00516622137818,-65.01621975285084,-65.02704524302274,-65.03764480872651,-65.04802072045615,-65.05817537729733,-65.06811128507586,-65.07783103732126,-65.08733729869293,-65.09663279056021,-65.1057202784664,-65.1146025612403,-65.1232824615482,-65.13176281770532,-65.14004647658797,-65.14813628750755,-65.15603509692495,-65.16374574389867,-65.17127105617386,-65.17861384683034,-65.1857769114186,-65.19276302552105,-65.19957494268411,-65.20621539267329,-65.21268708000936,-65.21899268274925,-65.22513485147962,-65.23111620849534,-65.2369393471382,-65.24260683127505,-65.24812119489626,-65.25348494181864,-65.25870054547856,-65.26377044880292,-65.26869706414722,-65.27348277329146,-65.27812992748557,-65.28264084753735,-65.28701782393689,-65.29126311701181,-65.29537895710892,-65.29936754479823,-65.30323105109561,-65.3069716177014,-65.31059135725201,-65.31409235358245,-65.3174766619978,-65.32074630955181,-65.3239032953313,-65.32694959074512,-65.32988713981639,-65.33271785947743,-65.33544363986614,-65.33806634462364,-65.34058781119222,-65.34300985111325,-65.34533425032463,-65.34756276945738,-65.34969714413121,-65.35173908524852,-65.35369027928695,-65.35555238859006,-65.3573270516561,-65.35901588342482,-65.36062047556194,-65.36214239674159,-65.36358319292624,-65.36494438764447,-65.36622748226617,-65.3674339562754,-65.36856526754077,-65.3696228525833,-65.37060812684187,-65.37152248493607,-65.37236730092661,-65.37314392857326,-65.37385370159014,-65.37449793389868,-65.37507791987798,-65.3755949346127,-65.37605023413852,-65.37644505568502,-65.37678061791627,-65.37705812116876,-65.3772787476871,-65.37744366185714,-65.37755401043674,-65.37761092278411,-65.37761551108383,-65.37756887057037,-65.37747207974934,-65.37732620061634,-65.3771322788735,-65.37689134414367,-65.3766044101823,-65.37627247508698,-65.3758965215048,-65.37547751683731,-65.37501641344325,-65.37451414883911,-65.37397164589736,-65.37338981304245,-65.37276954444472,-65.37211172021198,-65.37141720657897,-65.3706868560947,-65.36992150780749,-65.36912198744807,-65.36828910761041,-65.36742366793048,-65.36652645526294,-65.36559824385576,-65.36463979552268,-65.36365185981379,-65.36263517418391,-65.36159046415908,-65.36051844350096,-65.3594198143693,-65.35829526748243,-65.35714548227575,-65.35597112705841,-65.35477285916788,-65.35355132512281,-65.35230716077386,-65.35104099145275,-65.34975343211939,-65.3484450875072,-65.3471165522667,-65.34576841110707,-65.34440123893621,-65.3430156009988,-65.34161205301268,-65.34019114130362,-65.33875340293815,-65.33729936585489,-65.33582954899403,-65.33434446242529,-65.33284460747416,-65.33133047684647,-65.32980255475148,-65.32826131702318,-65.32670723124016,-65.32514075684394,-65.32356234525555,-65.32197243999083,-65.32037147677406,-65.31875988365012,-65.31713808109524,-65.31550648212618,-65.31386549240811,-65.31221551036087,-65.310556927264,-65.30889012736027,-65.30721548795788,-65.30553337953123,-65.30384416582045,-65.3021482039295,-65.30044584442301,-65.29873743142178,-65.29702330269706,-65.2953037897635,-65.29357921797087,-65.29184990659459,-65.29011616892492,-65.28837831235509,-65.2866366384681,-65.28489144312246,-65.28314301653671,-65.2813916433728,-65.27963760281833,-65.27788116866768,-65.27612260940207,-65.27436218826844,-65.2726001633574,-65.27083678767993,-65.2690723092432,-65.26730697112528,-65.26554101154882,-65.26377466395374,-65.26200815706895,-65.26024171498304,-65.25847555721401,-65.25670989877813,-65.25494495025768,-65.25318091786795,-65.2514180035232,-65.24965640490176,-65.2478963155102,-65.2461379247467,-65.24438141796344,-65.24262697652819,-65.24087477788507,-65.23912499561445,-65.23737779949198,-65.23563335554692,-65.23389182611953,-65.2321533699178,-65.23041814207326,-65.22868629419621,-65.22695797442994,-65.22523332750443,-65.22351249478919,-65.22179561434538,-65.22008282097724,-65.21837424628278,-65.21667001870381,-65.21497026357524,-65.21327510317371,-65.21158465676558,-65.20989904065416,-65.20821836822644,-65.20654274999903,-65.20487229366353,-65.2032071041313,-65.20154728357753,-65.19989293148478,-65.1982441446859,-65.1966010174063,-65.19496364130566,-65.19333210551918,-65.19170649669802,-65.19008689904942,-65.18847339437612,-65.18686606211527,-65.18526497937684,-65.18367022098144,-65.18208185949763,-65.18049996527874,-65.17892460649915,-65.17735584919012,-65.17579375727502,-65.17423839260415,-65.17268981498913,-65.17114808223663,-65.16961325018184,-65.16808537272134,-65.16656450184554,-65.16505068767074,-65.16354397847061,-65.16204442070736,-65.16055205906243,-65.15906693646673,-65.1575890941305,-65.15611857157272,-65.15465540665012,-65.1531996355858,-65.15175129299746,-65.15031041192518,-65.14887702385887,-65.14745115876535,-65.14603284511496,-65.14462210990791,-65.1432189787002,-65.14182347562918,-65.14043562343875,-65.13905544350425,-65.13768295585697,-65.1363181792083,-65.13496113097356,-65.13361182729551,-65.13227028306751,-65.13093651195636,-65.12961052642484,-65.12829233775386,-65.12698195606443,-65.12567939033919,-65.1243846484437,-65.1230977371474,-65.12181866214439,-65.12054742807368,-65.11928403853939,-65.11802849613056,-65.11678080244066,-65.11554095808687,-65.11430896272905,-65.11308481508853,-65.11186851296645,-65.11066005326205,-65.10945943199056,-65.10826664430088,-65.10708168449301,-65.10590454603523,-65.10473522158102,-65.10357370298577,-65.10241998132318,-65.10127404690152,-65.10013588927963,-65.09900549728259,-65.0978828590173,-65.0967679618878,-65.09566079261029,-65.094561337228,-65.0934695811259,-65.09238550904504,-65.09130910509684,-65.09024035277707,-65.0891792349797,-65.08812573401043,-65.0870798316002,-65.08604150891834,-65.0850107465856,-65.08398752468699,-65.08297182278443,-65.08196361992916,-65.08096289467404,-65.07996962508567,-65.0789837887562,-65.07800536281516,-65.07703432394098,-65.07607064837234,-65.07511431191944,-65.07416528997499,-65.07322355752513,-65.07228908916012,-65.07136185908493,-65.07044184112956,-65.06952900875936,-65.06862333508505,-65.06772479287265,-65.0668333545533,-65.06594899223282,-65.06507167770124,-65.06420138244212,-65.06333807764172,-65.06248173419803,-65.06163232272972,-65.06078981358488,-65.05995417684962,-65.05912538235661,-65.05830339969344,-65.0574881982108,-65.05667974703061,-65.055878015054,-65.05508297096912,-65.05429458325891,-65.05351282020861,-65.05273764991331,-65.05196904028527,-65.05120695906118,-65.0504513738092,-65.04970225193605,-65.04895956069386,-65.04822326718691,-65.04749333837835,-65.04676974109668,-65.04605244204228,-65.04534140779366,-65.04463660481375,-65.04393799945596,-65.04324555797031,-65.0425592465092,-65.04187903113338,-65.04120487781753,-65.04053675245602,-65.0398746208683,-65.03921844880445,-65.0385682019504,-65.03792384593328,-65.03728534632648,-65.03665266865478,-65.03602577839926,-65.03540464100224,-65.03478922187202,-65.0341794863876,-65.03357539990334,-65.03297692775347,-65.03238403525651,-65.03179668771975,-65.03121485044342,-65.03063848872499,-65.03006756786326,-65.02950205316245,-65.02894190993617,-65.02838710351129,-65.02783759923184,-65.02729336246271,-65.02675435859338,-65.02622055304148,-65.02569191125639,-65.02516839872267,-65.02464998096347,-65.02413662354392,-65.02362829207432,-65.0231249522134,-65.0226265696714,-65.02213311021325,-65.02164453966144,-65.02116082389908,-65.02068192887275,-65.02020782059529,-65.0197384651486,-65.01927382868637,-65.01881387743664,-65.01835857770449,-65.01790789587452,-65.0174617984133,-65.01702025187183,-65.01658322288793,-65.01615067818848,-65.01572258459173,-65.01529890900949,-65.01487961844929,-65.01446468001646,-65.01405406091621,-65.01364772845564,-65.01324565004565,-65.01284779320288,-65.01245412555159,-65.0120646148254,-65.01167922886914,-65.0112979356405,-65.01092070321174,-65.01054749977132,-65.01017829362547,-65.00981305319975,-65.00945174704054,-65.00909434381653,-65.00874081232007,-65.00839112146862,-65.00804524030606,-65.00770313800398,-65.00736478386293,-65.00703014731369,-65.0066991979184,-65.00637190537172,-65.006048239502,-65.00572817027222,-65.00541166778117,-65.00509870226439,-65.00478924409511,-65.00448326378523,-65.00418073198622,-65.00388161948999,-65.00358589722966,-65.00329353628045,-65.00300450786045,-65.00271878333128,-65.00243633419888,-65.00215713211415,-65.00188114887364,-65.00160835642014,-65.00133872684327,-65.0010722323801,-65.0008088454156,-65.00054853848324,-65.00029128426543,-65.00003705559396,-64.99978582545049,-64.99953754406374,-64.99929216163717,-64.99904963241235,-64.99880991415398,-64.99857296769922,-64.99833875656353,-64.9981072465961,-64.99787840567889,-64.99765220346369,-64.99742861114288,-64.99720760124941,-64.99698914748261,-64.99677322455646,-64.99655980806774,-64.99634887438137,-64.99614040053089,-64.99593436413227,-64.99573074330912,-64.99552951662821,-64.99533066304359,-64.99513416184864,-64.99493999263464,-64.9947481352553,-64.99455856979637,-64.99437127654959,-64.99418623599065,-64.99400342876035,-64.99382283564867,-64.99364443758145,-64.99346821560913,-64.99329415089736,-64.99312222471933,-64.99295241844939,-64.99278471355787,-64.99261909160694,-64.99245553424738,-64.99229402321599,-64.99213454033372,-64.9919770675043,-64.99182158671329,-64.99166808002755,-64.99151652959502,-64.99136691764468,-64.99121922648686,-64.99107343851355,-64.99092953619899,-64.9907875021003,-64.99064731885818,-64.9905089691977,-64.99037243592916,-64.99023770194884,-64.99010475023996,-64.98997356387349,-64.98984412600902,-64.98971641989559,-64.98959042887255,-64.98946613637031,-64.98934352591115,-64.98922258110996,-64.9891032856749,-64.98898562340814,-64.98886957820643,-64.98875513406178,-64.98864227506192,-64.98853098539094,-64.98842124932968,-64.98831305125624,-64.98820637564639,-64.98810120707392,-64.98799753021106,-64.9878953298287,-64.98779459079674,-64.98769529808433,-64.98759743676008,-64.98750099199225,-64.98740594904892,-64.98731229329813,-64.98722001020799,-64.98712908534675,-64.98703950438288,-64.9869512530851,-64.98686431732237,-64.98677868306397,-64.98669433637937,-64.98661126343822,-64.98652945051033,-64.98644888396552,-64.98636955027358,-64.98629143600411,-64.9862145278264,-64.98613881250931,-64.98606427692106,-64.98599090802908,-64.98591869289984,-64.98584761869864,-64.98577767268935,-64.98570884223426,-64.98564111479378,-64.98557447792622,-64.98550891928754,-64.98544442663108,-64.98538098780725,-64.98531859076328,-64.98525722354294,-64.98519687428619,-64.98513753122889,-64.98507918270248,-64.98502181713367,-64.98496542304407,-64.98490998904991,-64.98485550386161,-64.9848019562835,-64.98474933521344,-64.98469762964243,-64.98464682865425,-64.98459692142512,-64.98454789722327,-64.98449974540857,-64.98445245543218,-64.98440601683606,-64.98436041925268,-64.98431565240456,-64.98427170610384,-64.9842285702519,-64.98418623483896,-64.98414468994362,-64.98410392573248,-64.98406393245968,-64.98402470046648,-64.98398622018082,-64.98394848211694,-64.98391147687487,-64.98387519514,-64.98383962768268,-64.98380476535777,-64.98377059910415,-64.9837371199443,-64.98370431898384,-64.9836721874111,-64.98364071649664,-64.98360989759277,-64.98357972213316,-64.98355018163231,-64.98352126768516,-64.98349297196656,-64.98346528623081,-64.98343820231126,-64.98341171211977,-64.98338580764631,-64.98336048095842,-64.9833357242008,-64.9833115295948,-64.98328788943797,-64.98326479610361,-64.98324224204023,-64.98322021977116,-64.98319872189401,-64.98317774108025,-64.98315727007471,-64.98313730169508,-64.9831178288315,-64.98309884444603,-64.98308034157222,-64.98306231331459,-64.9830447528482,-64.98302765341813,-64.98301100833908,-64.9829948109948,-64.98297905483771,-64.98296373338836,-64.982948840235]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1271\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1272\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1267\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1268\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1269\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1281\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1275\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1276\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1277\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.70438495711106,-64.43603062866738,-64.18112603255737,-63.93873170817594,-63.70798203371414,-63.488079051820726,-63.27828684291008,-63.07792639351125,-62.88637091259024,-62.70304155372647,-62.52740350542447,-62.35896241574126,-62.19726112086078,-62.041876650299976,-61.89241748413335,-61.74852104001891,-61.60985136993604,-61.47609704843974,-61.346968968058874,-61.22219856569136,-61.1015362351651,-60.9847498676807,-60.871623509695056,-60.76195612866938,-60.65556047789322,-60.55226205231567,-60.45189812797362,-60.35431687821006,-60.2593765604288,-60.1669446739682,-60.0768969887283,-59.98911697083427,-59.903495250358624,-59.819929128126475,-59.73832211880008,-59.658583527609295,-59.580628058261,-59.50437544972174,-59.429750139723154,-59.356680952987645,-59.56793835577931,-59.76615143150689,-59.952280158481564,-60.12720738233165,-60.29174560660618,-60.446643150230024,-60.592589731774005,-60.73022153453209,-60.86012580121223,-60.98284500247835,-61.098880619507085,-61.208696577056024,-61.31272236021725,-61.41135584500348,-61.50496587014903,-61.59389457497719,-61.67845952586759,-61.758955651734354,-61.835657006983666,-61.908818378643595,-61.97867675273911,-62.045452653508924,-62.10935136771837,-62.170564065103946,-62.22926882488105,-62.28563157724758,-62.33980696791448,-62.39193915288134,-62.44216252994334,-62.490602393071256,-62.537375371242,-62.582590038043406,-62.626347473948904,-62.66874178547868,-62.70986058504583,-62.74978543491117,-62.78859225833428,-62.826351720707606,-62.863129583190336,-62.89898703111767,-62.93398097924424,-62.96816435568667,-63.00158636625634,-63.03429274071756,-63.06632596236631,-63.097725482199266,-63.12852791882999,-63.15876724520751,-63.18847496310149,-63.21768026623581,-63.24641019287813,-63.274689768626295,-63.30254214007172,-63.32998869996534,-63.35704920446187,-63.38374188297347,-63.410083541122646,-63.436089657247464,-63.461774377379186,-63.48715051486808,-63.51222967122556,-63.537022345695576,-63.5615380347152,-63.58578532229391,-63.60977196222578,-63.63350495294745,-63.65699060576527,-63.680234607096004,-63.7032420752957,-63.726017612589914,-63.74856535256365,-63.770889003621456,-63.79299188878519,-63.81487698215926,-63.83654694235952,-63.85800414317205,-63.87925070168199,-63.900288504088394,-63.9211192294008,-63.94174437119399,-63.96216525758101,-63.98238306954962,-64.0023988577939,-64.02221355816107,-64.04182800582248,-64.06124294826873,-64.0804590572197,-64.09947693953288,-64.1182971471862,-64.13692012173478,-64.15534616559057,-64.17357547432427,-64.19160816429917,-64.2094442962468,-64.22708389531564,-64.24452696805659,-64.2617735167493,-64.27882355142205,-64.2956770998723,-64.31233421595611,-64.32879498638022,-64.34505953620001,-64.36112803320144,-64.37700069132107,-64.39267777323928,-64.40815959226374,-64.42344651360528,-64.43853895513506,-64.45343738770013,-64.46814233506477,-64.48265437353558,-64.49697413132122,-64.5111022876706,-64.52503957182749,-64.53878676183469,-64.5523446832159,-64.56571420756036,-64.57889625103095,-64.59189177281448,-64.60470177352953,-64.61732729360558,-64.62976941164474,-64.64202924277595,-64.65410793701017,-64.66600667760349,-64.67772667943414,-64.68926918739854,-64.70063547483036,-64.71182684194638,-64.7228446143215,-64.73369014139581,-64.74436479501492,-64.75486996800542,-64.76520707278638,-64.77537754001764,-64.78538281728554,-64.79522436782622,-64.8049036692868,-64.81442221252426,-64.82378150044188,-64.83298304686303,-64.84202837544184,-64.8509190023385,-64.8596564201972,-64.86824210479286,-64.87667752047379,-64.88496412457309,-64.8931033709389,-64.90109671271381,-64.90894560447596,-64.91665150383987,-64.92421587260112,-64.93164017749817,-64.93892589065415,-64.94607448975297,-64.95308745799646,-64.95996628388254,-64.96671246083899,-64.97332748674205,-64.97981286334492,-64.98617009563768,-64.99240069115649,-64.99850615925753,-65.00448801036833,-65.01034775522749,-65.01608690412145,-65.02170696612598,-65.02720944835815,-65.03259585524398,-65.03786768780542,-65.04302644296983,-65.0480736129045,-65.0530106843777,-65.05783913814761,-65.0625604483801,-65.06717608209551,-65.07168749864492,-65.0760961492155,-65.08040347636498,-65.08461091358437,-65.08871988488876,-65.09273180443512,-65.09664807616657,-65.10047009348216,-65.10419923893127,-65.10783688393174,-65.11138438851076,-65.11484310106759,-65.11821435815718,-65.12149948429362,-65.12469979177278,-65.12781658051287,-65.13085113791225,-65.13380473872365,-65.13667864494383,-65.13947410571791,-65.14219235725764,-65.14483462277283,-65.14740211241515,-65.14989602323371,-65.15231753914166,-65.1546678308933,-65.15694805607089,-65.15915935908077,-65.16130287115823,-65.16337971038035,-65.16539098168674,-65.16733777690725,-65.16922117479653,-65.17104224107491,-65.1728020284751,-65.17450157679441,-65.17614191295215,-65.1777240510518,-65.17924899244767,-65.18071772581568,-65.182131227228,-65.18349046023127,-65.18479637592817,-65.18604991306202,-65.18725199810419,-65.18840354534414,-65.1895054569819,-65.19055862322261,-65.19156392237319,-65.19252222094076,-65.19343437373274,-65.19430122395848,-65.19512360333212,-65.19590233217683,-65.19663821952993,-65.19733206324909,-65.19798465011927,-65.19859675596041,-65.19916914573571,-65.1997025736604,-65.20019778331095,-65.20065550773454,-65.20107646955881,-65.2014613811018,-65.20181094448178,-65.2021258517274,-65.20240678488749,-65.20265441614089,-65.20286940790608,-65.20305241295057,-65.20320407449998,-65.20332502634682,-65.2034158929589,-65.20347728958725,-65.20350982237369,-65.20351408845775,-65.20349067608322,-65.20344016470403,-65.20336312508957,-65.20326011942933,-65.203131701437,-65.20297841645377,-65.20280080155104,-65.20259938563228,-65.20237468953437,-65.20212722612786,-65.20185750041679,-65.20156600963752,-65.20125324335676,-65.20091968356891,-65.20056580479246,-65.20019207416559,-65.19979895154091,-65.19938688957943,-65.19895633384348,-65.198507722889,-65.19804148835676,-65.19755805506281,-65.197057841088,-65.19654125786664,-65.19600871027427,-65.19546059671451,-65.19489730920506,-65.19431923346279,-65.19372674898791,-65.19312022914728,-65.19250004125685,-65.19186654666315,-65.19122010082393,-65.1905610533879,-65.18988974827361,-65.18920652374743,-65.18851171250061,-65.18780564172557,-65.18708863319121,-65.1863610033174,-65.18562306324867,-65.1848751189269,-65.18411747116328,-65.18335041570937,-65.18257424332735,-65.1817892398594,-65.18099568629623,-65.18019385884485,-65.17938402899547,-65.17856646358764,-65.17774142487548,-65.17690917059221,-65.17606995401388,-65.17522402402223,-65.17437162516686,-65.17351299772656,-65.17264837776995,-65.17177799721524,-65.17090208388942,-65.17002086158644,-65.16913455012494,-65.16824336540505,-65.16734751946453,-65.16644722053421,-65.16554267309266,-65.16463407792024,-65.16372163215239,-65.16280552933225,-65.16188595946258,-65.16096310905709,-65.16003716119097,-65.15910829555087,-65.15817668848413,-65.15724251304755,-65.15630593905522,-65.15536713312603,-65.15442625873038,-65.15348347623626,-65.15253894295483,-65.15159281318536,-65.15064523825947,-65.14969636658496,-65.1487463436889,-65.14779531226021,-65.14684341219176,-65.14589078062167,-65.14493755197437,-65.14398385800081,-65.14302982781838,-65.1420755879501,-65.14112126236343,-65.14016697250845,-65.1392128373556,-65.13825897343287,-65.13730549486249,-65.13635251339716,-65.13540013845575,-65.13444847715856,-65.13349763436202,-65.13254771269301,-65.13159881258271,-65.1306510322999,-65.12970446798387,-65.12875921367696,-65.12781536135648,-65.12687300096637,-65.12593222044829,-65.12499310577238,-65.12405574096756,-65.12312020815145,-65.1221865875598,-65.12125495757563,-65.12032539475791,-65.11939797386981,-65.11847276790664,-65.11754984812337,-65.1166292840618,-65.11571114357729,-65.11479549286517,-65.11388239648686,-65.11297191739544,-65.11206411696111,-65.11115905499607,-65.11025678977921,-65.10935737808047,-65.10846087518472,-65.10756733491542,-65.10667680965797,-65.10578935038272,-65.10490500666758,-65.10402382672044,-65.10314585740119,-65.10227114424352,-65.10139973147633,-65.10053166204493,-65.09966697763183,-65.09880571867738,-65.09794792440007,-65.09709363281651,-65.09624288076115,-65.09539570390581,-65.09455213677877,-65.0937122127838,-65.09287596421876,-65.09204342229405,-65.09121461715071,-65.09038957787835,-65.08956833253283,-65.08875090815361,-65.08793733078096,-65.08712762547283,-65.08632181632161,-65.08551992647057,-65.08472197813003,-65.08392799259347,-65.08313799025322,-65.08235199061608,-65.0815700123186,-65.08079207314229,-65.0800181900285,-65.07924837909312,-65.07848265564111,-65.07772103418081,-65.07696352843801,-65.07621015136988,-65.07546091517868,-65.07471583132528,-65.07397491054247,-65.07323816284816,-65.07250559755825,-65.07177722329949,-65.07105304802205,-65.0703330790119,-65.06961732290314,-65.06890578568998,-65.06819847273869,-65.06749538879934,-65.06679653801739,-65.06610192394498,-65.06541154955237,-65.06472541723882,-65.06404352884365,-65.06336588565698,-65.06269248843033,-65.06202333738712,-65.06135843223295,-65.06069777216582,-65.06004135588613,-65.05938918160653,-65.05874124706177,-65.0580975495182,-65.05745808578324,-65.05682285221482,-65.05619184473045,-65.05556505881634,-65.05494248953634,-65.05432413154075,-65.05370997907495,-65.05310002598802,-65.05249426574112,-65.0518926914158,-65.05129529572224,-65.05070207100725,-65.05011300926223,-65.04952810213106,-65.04894734091776,-65.04837071659414,-65.04779821980722,-65.04722984088673,-65.04666556985228,-65.0461053964206,-65.04554931001258,-65.0449972997602,-65.04444935451345,-65.04390546284702,-65.04336561306701,-65.04282979321744,-65.0422979910867,-65.04177019421398,-65.04124638989548,-65.04072656519058,-65.04021070692794,-65.03969880171145,-65.03919083592619,-65.03868679574418,-65.03818666713013,-65.03769043584704,-65.03719808746177,-65.03670960735053,-65.03622498070418,-65.03574419253358,-65.03526722767481,-65.03479407079425,-65.03432470639369,-65.03385911881527,-65.03339729224639,-65.0329392107245,-65.03248485814193,-65.03203421825043,-65.0315872746659,-65.0311440108728,-65.03070441022867,-65.03026845596851,-65.02983613120907,-65.02940741895308,-65.02898230209348,-65.02856076341745,-65.0281427856105,-65.02772835126045,-65.02731744286133,-65.02691004281719,-65.02650613344596,-65.0261056969831,-65.02570871558528,-65.02531517133401,-65.02492504623916,-65.0245383222424,-65.0241549812207,-65.02377500498964,-65.02339837530674,-65.02302507387468,-65.02265508234453,-65.02228838231888,-65.02192495535493,-65.02156478296754,-65.0212078466322,-65.02085412778789,-65.02050360784008,-65.02015626816352,-65.01981209010494,-65.01947105498587,-65.0191331441053,-65.01879833874227,-65.01846662015852,-65.01813796960097,-65.01781236830425,-65.01748979749313,-65.01717023838492,-65.01685367219186,-65.01654008012335,-65.01622944338833,-65.01592174319742,-65.01561696076519,-65.01531507731218,-65.01501607406713,-65.014719932269,-65.01442663316894,-65.01413615803233,-65.01384848814074,-65.01356360479377,-65.013281489311,-65.01300212303374,-65.01272548732689,-65.01245156358065,-65.01218033321229,-65.01191177766776,-65.01164587842347,-65.01138261698776,-65.0111219749026,-65.01086393374506,-65.0106084751289,-65.010355580706,-65.01010523216783,-65.00985741124686,-65.00961209971797,-65.00936927939982,-65.00912893215614,-65.00889103989705,-65.00865558458031,-65.00842254821261,-65.0081919128507,-65.00796366060267,-65.00773777362903,-65.00751423414385,-65.0072930244159,-65.00707412676967,-65.00685752358645,-65.00664319730534,-65.00643113042425,-65.00622130550086,-65.00601370515358,-65.00580831206246,-65.00560510897007,-65.00540407868243,-65.00520520406977,-65.00500846806742,-65.0048138536766,-65.00462134396518,-65.00443092206848,-65.00424257118995,-65.00405627460192,-65.00387201564628,-65.00368977773516,-65.00350954435159,-65.00333129905007,-65.0031550254573,-65.00298070727263,-65.0028083275914,-65.00263786893626,-65.0024693134072,-65.00230264280813,-65.00213783875357,-65.00197488275793,-65.0018137563099,-65.00165444093386,-65.00149691824039,-65.0013411699672,-65.00118717801205,-65.00103492445864,-65.00088439159683,-65.00073556193767,-65.00058841822444,-65.00044294343996,-65.00029912081114,-65.00015693381093,-65.00001636615839,-64.99987740181699,-64.99974002499165,-64.99960422012472,-64.99946997189106,-64.99933726519254,-64.99920608515204,-64.99907641710713,-64.99894824660353,-64.99882155938843,-64.99869634140376,-64.99857257877953,-64.99845025782724,-64.99832936503336,-64.99820988705302,-64.99809181070388,-64.99797512296018,-64.99785981094705,-64.99774586193494,-64.99763326333449,-64.99752200269143,-64.99741206768181,-64.99730344610751,-64.99719612589192,-64.99709009507583,-64.99698534181366,-64.99688185436973,-64.99677962111494,-64.99667863052348,-64.9965788711698,-64.99648033172583,-64.99638300095825,-64.99628686772598,-64.99619192097792,-64.99609814975065,-64.99600554316646,-64.99591409043141,-64.99582378083352,-64.99573460374113,-64.99564654860131,-64.99555960493845,-64.99547376235284,-64.99538901051947,-64.99530533918681,-64.99522273817574,-64.9951411973785,-64.99506070675776,-64.99498125634572,-64.99490283624333,-64.99482543661942,-64.99474904771007,-64.99467365981793,-64.99459926331154,-64.99452584862482,-64.99445340625648,-64.99438192676952,-64.99431140079075,-64.99424181901037,-64.99417317218152,-64.9941054511199,-64.99403864670343,-64.99397274987183,-64.99390775162637,-64.9938436430295,-64.99378041520463,-64.99371805933573,-64.9936565666672,-64.99359592850352,-64.99353613620909,-64.9934771812079,-64.99341905498336,-64.99336174907813,-64.99330525509383,-64.99324956469088,-64.99319466958829,-64.99314056156348,-64.99308723245208,-64.9930346741478,-64.99298287860212,-64.99293183782427,-64.99288154388096,-64.99283198889621,-64.99278316505122,-64.99273506458415,-64.99268767979,-64.99264100302037,-64.99259502668336,-64.99254974324337,-64.99250514522093,-64.99246122519253,-64.99241797579043,-64.99237538970253,-64.99233345967214,-64.99229217849785,-64.99225153903333,-64.99221153418718,-64.9921721569227,-64.99213340025777,-64.99209525726461,-64.99205772106963,-64.99202078485324,-64.99198444184967,-64.99194868534674,-64.99191350868573,-64.99187890526112,-64.99184486852045,-64.99181139196409,-64.99177846914507,-64.99174609366885,-64.99171425919313,-64.99168295942764,-64.99165218813391,-64.99162193912517,-64.99159220626596,-64.9915629834721,-64.99153426471032,-64.99150604399819,-64.99147831540375,-64.99145107304545,-64.99142431109179,-64.99139802376118,-64.9913722053217,-64.99134685009085,-64.99132195243536,-64.9912975067709,-64.99127350756196,-64.99124994932149,-64.99122682661074,-64.99120413403904,-64.9911818662635,-64.99116001798883,-64.99113858396709,-64.9911175589974,-64.9910969379258,-64.99107671564492,-64.99105688709376,-64.99103744725747,-64.99101839116707,-64.99099971389926,-64.99098141057608,-64.99096347636478,-64.99094590647748,-64.99092869617094,-64.99091184074634,-64.99089533554901,-64.99087917596819,-64.99086335743675,-64.99084787543097,-64.99083272547028,-64.99081790311698,-64.990803403976,-64.99078922369469,-64.99077535796249]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1282\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1283\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1278\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1279\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1280\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1290\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1284\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1285\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1286\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.9987636945507,-64.99821034832222,-64.99768732311597,-64.99718971697536,-64.99671408308582,-64.99625783545477,-64.99581894824438,-64.99539578442415,-64.99498698970879,-64.99459142284486,-64.99420810767162,-64.99383619897498,-64.99347495746416,-64.99312373099005,-64.99278194015042,-64.99244906704874,-64.99212464636327,-64.9918082581385,-64.99149952188127,-64.9911980916603,-64.99090365198978,-64.99061591433399,-64.99033461411129,-64.99005950810512,-64.98979037221086,-64.9895269994634,-64.98926919830161,-64.98901679103494,-64.98876961248357,-64.98852750876918,-64.98829033623673,-64.98805796049116,-64.98783025553521,-64.98760710299653,-64.98738839143397,-64.98717401571415,-64.98696387645072,-64.98675787949942,-64.98655593550308,-64.98635795948124,-64.98616387045988,-64.98597359113683,-64.98578704757958,-64.98560416895182,-64.98542488726613,-64.98524913715985,-64.98507685569218,-64.98490798216011,-64.98474245793143,-64.98458022629318,-64.98442123231392,-64.98426542271858,-64.98411274577461,-64.98396315118832,-64.9838165900105,-64.9836730145504,-64.98353237829721,-64.98339463584847,-64.9832597428446,-64.9831276559091,-64.98299833259384,-64.98287173132893,-64.98274781137683,-64.9826265327902,-64.98250785637335,-64.9823917436466,-64.98227815681373,-64.98216705873192,-64.98205841288403,-64.98195218335309,-64.98184833479876,-64.98174683243552,-64.98164764201255,-64.98155072979506,-64.98145606254701,-64.98136360751505,-64.98127333241358,-64.9811852054109,-64.98109919511624,-64.98101527056775,-64.98093340122115,-64.98085355693925,-64.98077570798203,-64.98069982499739,-64.98062587901245,-64.98055384142533,-64.98048368399749,-64.98041537884636,-64.98034889843854,-64.9802842155832,-64.98022130342598,-64.98016013544306,-64.98010068543559,-64.9800429275244,-64.97998683614486,-64.97993238604212,-64.97987955226638,-64.97982831016849,-64.97977863539563,-64.97973050388728,-64.97968389187116,-64.9796387758595,-64.97959513264529,-64.97955293929873,-64.97951217316383,-64.97947281185498,-64.97943483325373,-64.97939821550567,-64.97936293701729,-64.97932897645302,-64.97929631273229,-64.9792649250267,-64.9792347927572,-64.97920589559138,-64.97917821344078,-64.9791517264583,-64.9791264150356,-64.97910225980058,-64.97907924161495,-64.97905734157173,-64.97903654099288,-64.97901682142697,-64.9789981646468,-64.97898055264716,-64.97896396764257,-64.97894839206505,-64.9789338085619,-64.97892019999357,-64.9789075494315,-64.978895840156,-64.97888505565417,-64.97887517961787,-64.97886619594162,-64.97885808872059,-64.9788508422486,-64.97884444101622,-64.9788388697087,-64.97883411320406,-64.97883015657125,-64.97882698506812,-64.97882458413967,-64.97882293941609,-64.97882203671092,-64.97882186201927,-64.97882240151597,-64.97882364155375,-64.97882556866149,-64.97882816954247,-64.97883143107254,-64.97883534029846,-64.97883988443614,-64.97884505086894,-64.97885082714595,-64.97885720098034,-64.97886416024771,-64.97887169298436,-64.97887978738572,-64.97888843180472,-64.97889761475012,-64.97890732488499,-64.97891755102502,-64.97892828213706,-64.97893950733749,-64.97895121589063,-64.97896339720734,-64.97897604084334,-64.97898913649777,-64.97900267401175,-64.97901664336676,-64.97903103468326,-64.97904583821919,-64.97906104436854,-64.97907664365985,-64.97909262675488,-64.97910898444708,-64.97912570766027,-64.97914278744722,-64.97916021498823,-64.97917798158981,-64.97919607868332,-64.97921449782352,-64.97923323068738,-64.97925226907266,-64.97927160489658,-64.97929123019459,-64.97931113711901,-64.97933131793776,-64.9793517650331,-64.97937247090036,-64.9793934281467,-64.97941462948981,-64.97943606775677,-64.97945773588275,-64.97947962690985,-64.97950173398588,-64.97952405036315,-64.97954656939733,-64.97956928454623,-64.9795921893687,-64.97942140001295,-64.97850132359119,-64.97595793783664,-64.97079098353488,-64.96207449783559,-64.94908504852206,-64.93134830619957,-64.90862842539796,-64.88088864425723,-64.84824347346994,-64.81091369297722,-64.76918883860782,-64.72339814249884,-64.67388914889085,-64.62101261967504,-64.56511229702834,-64.5065182738132,-64.44554296909226,-64.38247894180266,-64.31759797364687,-64.25115100800168,-64.18336864950034,-64.1144620159553,-64.04462379747189,-63.97402942293648,-63.902835351513254,-63.831178519791145,-63.75918323445295,-63.68696204488375,-63.61461664685286,-63.54223876169442,-63.46991097205602,-63.397707506657504,-63.3256949715199,-63.25393302772543,-63.18247501721314,-63.11136853892346,-63.04065597803715,-62.97037499125423,-62.90055481233411,-62.831409506841965,-62.763512503692304,-62.69775346020487,-62.63514650679891,-62.576630324893,-62.52294057000359,-62.474563899537245,-62.43174907174146,-62.394546680077625,-62.36285715129728,-62.336475802329886,-62.31513029477318,-62.2985095469031,-62.28628490534428,-62.27812498407538,-62.27370562287397,-62.2727162309107,-62.27486353136506,-62.27987348419101,-62.28749196335982,-62.29748460671235,-62.30963613662565,-62.32374936098751,-62.339643999447276,-62.35715543355576,-62.37613344643758,-62.39644099440135,-62.41795303666602,-62.440555438167905,-62.464143952765944,-62.48862328903646,-62.51390625749718,-62.539912995987606,-62.5665702686795,-62.59381083352739,-62.621572872703396,-62.64979948055915,-62.67843820382589,-62.70744062903592,-62.73676201247956,-62.76636094837011,-62.79619907125481,-62.8262407890682,-62.85645304356747,-62.886805095212154,-62.91726832984981,-62.947816084844824,-62.978423492538376,-63.00906733915546,-63.0397244078466,-63.07036955861178,-63.100979876886946,-63.13153438571444,-63.16201383511846,-63.19240053093325,-63.22267818970585,-63.25283181299403,-63.28284757702918,-63.3127127350104,-63.34241553002902,-63.37194511708257,-63.40129149294885,-63.430445432914375,-63.45939843351899,-63.48814266060849,-63.516670902090056,-63.54497652486935,-63.573053435516925,-63.60089604426946,-63.62849923202002,-63.65585831999311,-63.682969041836046,-63.70982751788897,-63.73643023142259,-63.762774006656336,-63.78885598838994,-63.814673623099466,-63.84022464136481,-63.86550704150963,-63.89051907434692,-63.915259228934744,-63.939726219256016,-63.9639189717451,-63.98783661359169,-64.01147846175907,-64.03484252702945,-64.05792575053121,-64.08072579412392,-64.1032409136414,-64.1254698709082,-64.14741186541217,-64.16906647860182,-64.1904336272623,-64.21151352384504,-64.23230664233499,-64.25281368864225,-64.27303557475793,-64.29297339608313,-64.3126284114599,-64.33200202552125,-64.35109577304407,-64.36991130504074,-64.38845037636675,-64.4067148346544,-64.42470661041045,-64.44242770813776,-64.45988019835964,-64.47706621044216,-64.49398792612239,-64.51064757366278,-64.52704742256138,-64.54318977875644,-64.55907698027121,-64.57471139325146,-64.5900954083536,-64.60523143744662,-64.62012191059486,-64.63476927329305,-64.64917598392778,-64.66334451144303,-64.6772773331895,-64.69097693294009,-64.70444579905573,-64.71768642278758,-64.73070129670295,-64.74349291322419,-64.75606376327032,-64.76841633499286,-64.7805531125978,-64.79247657524672,-64.80418919603092,-64.81569344101266,-64.8269917683286,-64.83808662735086,-64.84898045790156,-64.85967568951709,-64.8701747407589,-64.88048001856758,-64.89059391765767,-64.90051881995046,-64.91025709404272,-64.9198110947091,-64.92918316243636,-64.93837562298764,-64.9473907869951,-64.95623094957959,-64.96489838999575,-64.9733953713014,-64.9817241400499,-64.98988692600463,-64.9978859418741,-65.00572338306716,-65.01340088131023,-65.02091996877101,-65.02828229054667,-65.0354895781625,-65.04254363086366,-65.04944630113381,-65.0561994830112,-65.06280510244538,-65.0692651092269,-65.07558147017222,-65.0817561633335,-65.08779117305869,-65.09368848576584,-65.09945008632202,-65.10507795493827,-65.1105740645068,-65.11594037831917,-65.12117884811327,-65.12629141240558,-65.13127999507034,-65.136146504134,-65.14089283075636,-65.1455208483747,-65.15003241198973,-65.15442935757503,-65.15871350159432,-65.16288664061251,-65.16695055098843,-65.17090698863878,-65.17475768886392,-65.17850436622753,-65.18214871448293,-65.18569240654003,-65.18913709446727,-65.19248440952414,-65.19573596221974,-65.1988933423941,-65.20195811931892,-65.20493184181497,-65.20781603838381,-65.21061221735162,-65.21332186702347,-65.2159464558461,-65.21848743257829,-65.22094622646712,-65.22332424742939,-65.22562288623713,-65.22784351470646,-65.22998748588904,-65.23205613426555,-65.23405077594074,-65.2359727088395,-65.2378232129035,-65.23960355028835,-65.24131496556058,-65.24295868589455,-65.24453592126888,-65.24604786466223,-65.24749569224836,-65.24888056359023,-65.25020362183308,-65.25146599389636,-65.25266879066453,-65.25381310717647,-65.25490002281357,-65.2559306014865,-65.25690589182042,-65.25782692733883,-65.25869472664583,-65.25951029360691,-65.26027461752815,-65.26098867333394,-65.26165342174296,-65.26226980944278,-65.26283876926276,-65.26336122034529,-65.26383806831561,-65.26427020544989,-65.26465851084173,-65.2650038505671,-65.26530707784768,-65.26556903321256,-65.2657905446584,-65.265972427808,-65.26611548606719,-65.26622051078036,-65.2662882813841,-65.26631956555966,-65.26631511938346,-65.26627568747635,-65.26620200315115,-65.26609478855873,-65.26595475483253,-65.26578260223154,-65.26557902028178,-65.26534468791627,-65.26508027361353,-65.26478643553455,-65.26446382165818,-65.26411306991527,-65.26373480832115,-65.2633296551067,-65.26289821884804,-65.2624410985946,-65.26195888399604,-65.26145215542743,-65.26092148411327,-65.26036743224991,-65.25979055312675,-65.25919139124593,-65.25857048244072,-65.25792835399244,-65.25726552474615,-65.25658250522491,-65.25587979774278,-65.25515789651638,-65.25441728777523,-65.25365844987077,-65.25288185338408,-65.25208796123226,-65.25127722877366,-65.25045010391172,-65.24960702719763,-65.24874843193176,-65.24787474426381,-65.24698638329178,-65.24608376115972,-65.24516728315429,-65.2442373478001,-65.24329434695395,-65.24233866589785,-65.24137068343087,-65.24039077195992,-65.23939929758934,-65.2383966202094,-65.23738309358366,-65.23635906543528,-65.23532487753224,-65.23428086577141,-65.23322736026168,-65.23216468540592,-65.23109315998197,-65.23001309722258,-65.22892480489435,-65.22782858537558,-65.22672473573326,-65.22561354779896,-65.22449530824376,-65.22337029865228,-65.22223879559567,-65.22110107070374,-65.21995739073606,-65.21880801765221,-65.21765320868114,-65.21649321638952,-65.21532828874929,-65.2141586692043,-65.21298459673606,-65.21180630592872,-65.21062402703302,-65.20943798602957,-65.2082484046912,-65.20705550064457,-65.20585948743087,-65.20466057456578,-65.20345896759862,-65.20225486817075,-65.20104847407313,-65.19983997930315,-65.19862957412074,-65.1974174451037,-65.19620377520222,-65.19498874379288,-65.19377252673165,-65.19255529640644,-65.19133722178877,-65.19011846848485,-65.18889919878593,-65.18767957171795,-65.18645974309062,-65.18523986554573,-65.18402008860484,-65.18280055871642,-65.18158141930223,-65.18036281080313,-65.17914487072426,-65.17792773367961,-65.17671153143606,-65.17549639295665,-65.17428244444348,-65.17306980937984,-65.1718586085719,-65.17064896018977,-65.16944097980799,-65.16823478044554,-65.16703047260526,-65.16582816431267,-65.16462796115442,-65.16342996631604,-65.16223428061934,-65.16104100255914,-65.15985022833964,-65.15866205191016,-65.15747656500054,-65.15629385715593,-65.15511401577115,-65.1539371261246,-65.15276327141166,-65.15159253277767,-65.15042498935046,-65.14926071827236,-65.1480997947319,-65.14694229199496,-65.14578828143553,-65.14463783256606,-65.14349101306738,-65.1423478888182,-65.1412085239242,-65.1400729807468,-65.13894131993132,-65.13781360043505,-65.13668987955468,-65.13557021295345,-65.13445465468796,-65.13334325723451,-65.1322360715152,-65.1311331469235,-65.13003453134971,-65.12894027120575,-65.12785041144991,-65.12676499561107,-65.1256840658126,-65.12460766279604,-65.12353582594426,-65.12246859330452,-65.12140600161104,-65.12034808630729,-65.11929488156804,-65.11824642032099,-65.11720273426819,-65.11616385390714,-65.11512980855153,-65.11410062635177,-65.11307633431521,-65.11205695832605,-65.11104252316495,-65.11003305252846,-65.10902856904809,-65.10802909430909,-65.10703464886907,-65.1060452522763,-65.10506092308768,-65.10408167888657,-65.10310753630031,-65.10213851101753,-65.10117461780511,-65.10021587052506,-65.099262282151,-65.09831386478453,-65.09737062967129,-65.0964325872168,-65.09549974700212,-65.09457211779927,-65.09364970758634,-65.0927325235625,-65.09182057216279,-65.09091385907259,-65.09001238924196,-65.08911616689984,-65.08822519556786,-65.08733947807411,-65.08645901656669,-65.08558381252698,-65.08471386678276,-65.08384917952122,-65.08298975030165,-65.08213557806802,-65.08128666116139,-65.08044299733206,-65.07960458375162,-65.07877141702481,-65.07794349320118,-65.07712080778656,-65.07630335575445,-65.07549113155714,-65.07468412913673,-65.07388234193594,-65.07308576290885,-65.07229438453132,-65.07150819881143,-65.07072719729969,-65.06995137109902,-65.06918071087475,-65.06841520686429,-65.0676548488868,-65.06689962635264,-65.06614952827266,-65.06540454326745,-65.06466465957632,-65.06392986506624,-65.06320014724061,-65.06247549324787,-65.06175588989007,-65.06104132363116,-65.06033178060531,-65.05962724662501,-65.05892770718906,-65.05823314749044,-65.05754355242411,-65.05685890659456,-65.05617919432338,-65.05550439965667,-65.05483450637229,-65.05416949798703,-65.0535093577637,-65.05285406871803,-65.05220361362555,-65.05155797502827,-65.05091713524136,-65.05028107635962,-65.04964978026393,-65.04902322862752,-65.04840140292221,-65.04778428442454,-65.04717185422173,-65.04656409321764,-65.04596098213858,-65.04536250153902,-65.04476863180723,-65.04417935317083,-65.04359464570226,-65.04301448932408,-65.0424388638143,-65.04186774881153,-65.04130112382012,-65.04073896821512,-65.04018126124727,-65.03962798204778,-65.03907910963316,-65.0385346229099,-65.03799450067905,-65.03745872164073,-65.03692726439864,-65.03640010746442,-65.0358772292619,-65.0353586081314,-65.03484422233385,-65.03433405005484,-65.0338280694087,-65.03332625844237,-65.03282859513934,-65.03233505742337,-65.03184562316231,-65.03136027017172,-65.03087897621847,-65.03040171902433,-65.02992847626935,-65.02945922559537,-65.02899394460933,-65.02853261088653,-65.02807520197392,-65.02762169539321,-65.02717206864402,-65.0267262992069,-65.02628436454636,-65.02584624211377,-65.0254119093503,-65.02498134368966,-65.02455452256098,-65.02413142339141,-65.02371202360892,-65.0232963006448,-65.0228842319363,-65.02247579492914,-65.02207096707988,-65.0216697258585,-65.02127204875063,-65.02087791325992,-65.02048729691032,-65.0201001772483,-65.019716531845,-65.01933633829846,-65.01895957423558,-65.01858621731427,-65.01821624522537,-65.01784963569474,-65.01748636648504,-65.01712641539768,-65.01676976027466,-65.01641637900033,-65.01606624950323,-65.01571934975767,-65.01537565778557,-65.01503515165797,-65.01469780949671,-65.01436360947599,-65.0140325298239,-65.01370454882387,-65.01337964481621,-65.01305779619949,-65.01273898143194,-65.01242317903278,-65.01211036758362,-65.01180052572965,-65.01149363218104,-65.01118966571401,-65.01088860517216,-65.01059042946753,-65.01029511758183,-65.01000264856751,-65.0097130015488,-65.00942615572282,-65.00914209036054,-65.00886078480784,-65.00858221848641,-65.00830637089472,-65.00803322160893,-65.00776275028375,-65.00749493665333,-65.00722976053208,-65.00696720181547,-65.0067072404808,-65.00644985658796,-65.00619503028022,-65.00594274178486,-65.0056929714139,-65.00544569956475,-65.00520090672084,-65.0049585734523,-65.00471868041646,-65.0044812083585,-65.00424613811198,-65.00401345059936,-65.00378312683252,-65.00355514791327,-65.00332949503382,-65.0031061494772,-65.00288509261773,-65.00266630592141,-65.00244977094634,-65.00223546934309,-65.00202338285506,-65.0018134933188,-65.00160578266438,-65.00140023291566,-65.0011968261906,-65.00099554470152,-65.00079637075541,-65.00059928675408,-65.0004042751945,-65.0002113186689,-65.00002039986505,-64.9998315015664,-64.99964459046997,-64.9994596345833,-64.99927660482264,-64.99909547447523,-64.99891621881316,-64.99873881479301,-64.99856324081264,-64.99838947651006,-64.99821750259463,-64.99804730070406,-64.99787885328237,-64.99771214347537,-64.99754715504066,-64.99738387227013,-64.99722227992294,-64.9970623631675,-64.9969041075314,-64.99674749885791,-64.9965925232683,-64.99643916712938,-64.99628741702521,-64.99613725973283,-64.99598868220114,-64.99584167153283,-64.99569621496867,-64.99555229987418,-64.99540991372801,-64.99526904411218,-64.99512967870359,-64.99499180526693,-64.99485541164857,-64.99472048577147,-64.99458701563086,-64.99445498929066,-64.99432439488051,-64.99419522059331,-64.99406745468322,-64.99394108546403,-64.99381610130791,-64.99369249064439,-64.9935702419596,-64.99344934379575,-64.9933297847507,-64.99321155347778,-64.99309463868563,-64.99297902913821,-64.99286471365481,-64.99275168111025,-64.99263992043501,-64.99252942061547,-64.99242017069416,-64.99231215977001,-64.99220537699868,-64.99209981159285,-64.9919954528225,-64.99189229001522,-64.99179031255655,-64.99168950989022,-64.99158987151849,-64.99149138700237,-64.99139404596195,-64.9912978380766,-64.99120275308525,-64.99110878078658,-64.99101591103923,-64.99092413376204,-64.99083343893416,-64.99074381659528,-64.99065525684574,-64.99056774984666,-64.99048128582008,-64.99039585504906,-64.99031144787773,-64.99022805471142,-64.9901456660167,-64.9900642723214,-64.9899838642147,-64.98990443234709,-64.98982596743043,-64.98974846023793,-64.98967190160414,-64.98959628242491,-64.98952159365739,-64.98944782631995,-64.98937497149214,-64.98930302031465,-64.98923196398921,-64.98916179377852,-64.98909250100616,-64.98902407705647,-64.98895651337449,-64.98888980146583,-64.98882393289655,-64.988758899293,-64.98869469234177,-64.98863130378946,-64.98856872544259,-64.98850694916746,-64.98844596688994,-64.98838577059536,-64.98832635232833,-64.98826770419254,-64.98820981835064,-64.98815268702401,-64.98809630249261,-64.98804065709474,-64.98798574322693,-64.98793155334366,-64.98787807995721,-64.98782531563744,-64.98777325301157,-64.987721884764,-64.98767120363607,-64.98762120242584,-64.9875718739879,-64.98752321123311,-64.98747520712841,-64.98742785469655,-64.9873811470159,-64.98733507722017,-64.98728963849824,-64.98724482409386,-64.98720062730544,-64.9871570414858,-64.98711406004192,-64.9870716764347,-64.98702988417871,-64.98698867684196,-64.98694804804562,-64.98690799146377,-64.98686850082314,-64.9868295699029,-64.98679119253434,-64.98675336260065,-64.98671607403665,-64.98667932082851,-64.98664309701353,-64.98660739667982,-64.98657221396608,-64.98653754306133,-64.98650337820462,-64.98646971368477,-64.98643654384011,-64.98640386305821,-64.98637166577562,-64.98633994647754,-64.98630869969764,-64.98627792001773,-64.9862476020675,-64.98621774052421,-64.98618833011251,-64.98615936560408,-64.9861308418174,-64.98610275361743,-64.98607509591538]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1291\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1292\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1287\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1288\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1289\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1300\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1294\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1295\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1296\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628385345,-64.99989891812339,-64.99981775406245,-64.99971590880706,-64.99959691256005,-64.99946400141862,-64.99931990441473,-64.99916684225425,-64.99900659845551,-64.99884060387761,-64.99867001305113,-64.99849576650733,-64.99831863934308,-64.99813927818651,-64.99795822902611,-64.99777595808803,-64.99759286752288,-64.99740930725532,-64.99722558401002,-64.99704196826116,-64.99685869965151,-64.9966759912785,-64.9964940331353,-64.99631299491708,-64.99613302834395,-64.99595426911279,-64.99577683855898,-64.99560084508889,-64.99542638542786,-64.9952535457177,-64.99508240248936,-64.99491302353073,-64.99474546866502,-64.99457979045214,-64.99441603482298,-64.99425424165455,-64.99409444529302,-64.99393667503004,-64.99378095553737,-64.99362730726388,-64.99347574679865,-64.99332628720325,-64.99317893831606,-64.99303370703136,-64.9928905975549,-64.99274961163876,-64.99261074879648,-64.99247400650084,-64.99233938036532,-64.99220686431082,-64.99207645071871,-64.99194813057166,-64.99182189358282,-64.99169772831473,-64.99157562228851,-64.99145556208427,-64.99133753343345,-64.99122152130369,-64.9911075099768,-64.99099548312059,-64.9908854238548,-64.99077731481177,-64.99067113819214,-64.9905668758162,-64.99046450917099,-64.99036401945361,-64.99026538761099,-64.9901685943766,-64.99007362030387,-64.98998044579729,-64.98988905114051,-64.9897994165226,-64.98971152206177,-64.98962534782736,-64.98954087385992,-64.98945808018966,-64.98937694685324,-64.98929745390932,-64.98921958145264,-64.989143309627,-64.98906861863699,-64.98899548875887,-64.98892390035034,-64.98885383385957,-64.98878526983322,-64.98871818892404,-64.98865257189745,-64.98858839963765,-64.9885256531532,-64.98846431358191,-64.98840436219535,-64.98834578040287,-64.98828854975515,-64.98823265194744,-64.98817806882242,-64.98812478237265,-64.98807277474282,-64.98802202823167,-64.98797252529366,-64.98792424854035,-64.9878771807417,-64.987831304827,-64.98778660388567,-64.98774306116796,-64.98770066008545,-64.98765938421131,-64.98761921728058,-64.9875801431902,-64.98754214599903,-64.98750520992768,-64.98746931935827,-64.98743445883417,-64.98740061305955,-64.9873677668989,-64.98733590537651,-64.98730501367591,-64.98727507713912,-64.98724608126601,-64.98721801171351,-64.98719085429482,-64.98716459497858,-64.98713921988795,-64.98711471529978,-64.98709106764358,-64.98706826350062,-64.98704628960292,-64.98702513283224,-64.98700478021905,-64.98698521894151,-64.98696643632434,-64.98694841983783,-64.98693115709669,-64.98691463585898,-64.98689884402502,-64.98688376963621,-64.98686940087397,-64.98685572605862,-64.9868427336482,-64.98683041223737,-64.98681875055624,-64.98680773746928,-64.98679736197414,-64.98678761320053,-64.98677848040906,-64.98676995299012,-64.98676202046272,-64.98675467247337,-64.98674789879493,-64.98674168932551,-64.9867360340873,-64.98673092322547,-64.98672634700701,-64.98672229581966,-64.98671876017077,-64.98671573068624,-64.9867131981093,-64.9867111532995,-64.98670958723163,-64.98670849099454,-64.98670785579017,-64.98670767293235,-64.98670793384585,-64.98670863006521,-64.98670975323373,-64.98671129510241,-64.98671324752888,-64.98671560247641,-64.9867183520128,-64.98672148830941,-64.9867250036401,-64.98672889038025,-64.98673314100571,-64.98673774809181,-64.98674270431239,-64.98674800243877,-64.98675363533877,-64.98675959597578,-64.98676587740773,-64.98677247278619,-64.98677937535531,-64.986786578451,-64.98679407549992,-64.9868018600185,-64.98680992561214,-64.98681826597411,-64.98682687488481,-64.98683574621076,-64.9868448739037,-64.98685425199976,-64.98686387461849,-64.98687373596204,-64.98688383031424,-64.98689415203978,-64.98690469558329,-64.98691545546858,-64.98692642629764,-64.98693760274998,-64.98694897958164,-64.98696055162445,-64.94584166314253,-64.84463773147279,-64.69056450437817,-64.49978960582901,-64.28729855676539,-64.06415634203539,-63.837800951463784,-63.61300440152011,-63.392729847735026,-63.178747515538646,-62.97204745870268,-62.773110668849924,-62.58208712243478,-62.398913532608084,-62.22339184942165,-62.05524190514387,-61.8941368061199,-61.73972667820361,-61.59165448127732,-61.449566391869276,-61.313118455298145,-61.181980676523615,-61.055839358377604,-60.93439824879184,-60.817378887828355,-60.704520375732486,-60.59557872158473,-60.4903260298199,-60.38854964478957,-60.29005128412028,-60.19464617102259,-60.10216217601281,-60.01243897928232,-59.92532726338606,-59.840687943270304,-59.758391438003684,-59.678316986373204,-59.600352006851594,-59.52439150127314,-59.45033742871815,-59.419228682081325,-59.44993378786983,-59.53515620062877,-59.65865240292929,-59.80536559246183,-59.96416386837183,-60.12754648045866,-60.29068262821773,-60.45055419250548,-60.605339664569804,-60.75400125594919,-60.89601365947005,-61.031185870071056,-61.159543294748005,-61.2812491063614,-61.396551444018336,-61.505747859100445,-61.609161401165935,-61.70712462996176,-61.7999690565648,-61.8880183143486,-61.971583892680435,-62.05096262661519,-62.12643538270002,-62.19826655156226,-62.266704076524654,-62.33197983025878,-62.39431020940119,-62.45389685762222,-62.51092745604837,-62.56557653981298,-62.61800631338012,-62.668367446933175,-62.716799842794494,-62.763433365430686,-62.80838853172111,-62.85177716026625,-62.89370297989696,-62.93426219843377,-62.97354403329202,-63.01163120584021,-63.048600401572656,-63.084522698205404,-63.11946396378289,-63.1534852268184,-63.18664302040034,-63.21898970209131,-63.250573751335416,-63.2814400459768,-63.31163009275104,-63.34118218233279,-63.370131558705836,-63.39851062617558,-63.426349173508015,-63.45367459403955,-63.48051209081422,-63.50688486333219,-63.53281427617569,-63.55832001115313,-63.58342020490423,-63.608131573793145,-63.632469527673784,-63.65644827385909,-63.68008091240429,-63.70337952363125,-63.726355248674615,-63.749018363714406,-63.77137834846734,-63.79344394943547,-63.81522323835112,-63.83672366620809,-63.857952113228706,-63.87891493508196,-63.89961800563852,-63.920066756523504,-63.94026621370513,-63.960221031338264,-63.9799355230639,-63.99941369095018,-64.0186592522461,-64.0376756641062,-64.0564661464328,-64.07503370297121,-64.09338114078395,-64.11151108822035,-64.12942598562495,-64.1471280537765,-64.16461928469262,-64.18190146062685,-64.1989761874741,-64.2158449306,-64.23250904715923,-64.24896981304796,-64.26522844455012,-64.28128611541806,-64.2971439702538,-64.31280313497425,-64.3282647250034,-64.3435298516971,-64.3585996273899,-64.37347516936043,-64.38815760294169,-64.4026480639491,-64.41694770055892,-64.43105767473998,-64.44497916331946,-64.45871335874632,-64.47226146960342,-64.48562472090981,-64.49880435424681,-64.51180162773603,-64.52461781589248,-64.53725420937266,-64.54971211463419,-64.56199285352132,-64.5740977627884,-64.58602819357212,-64.59778551082151,-64.60937109269358,-64.62078632992173,-64.63203262516274,-64.64311139232771,-64.65402405590149,-64.66477205025464,-64.67535681895136,-64.68577981405649,-64.69604249544422,-64.70614633011068,-64.71609279149267,-64.72588335879396,-64.73551951632088,-64.74500275282823,-64.75433456087691,-64.76351643620384,-64.77254987710518,-64.78143638383331,-64.79017745800834,-64.79877460204423,-64.80722931859016,-64.81554310998713,-64.82371747774026,-64.83175392200656,-64.83965394109845,-64.84741903100307,-64.8550506849172,-64.86255039279766,-64.86991964092736,-64.87715991149665,-64.88427268219975,-64.89125942584627,-64.89812160998756,-64.90486069655745,-64.91147813201891,-64.91797533632224,-64.92435369908237,-64.93061458221584,-64.93675932544258,-64.94278925208896,-64.9487056740425,-64.9545098955557,-64.96020321596691,-64.96578693152762,-64.97126233653707,-64.976630723959,-64.98189338566068,-64.98705161238112,-64.99210669350983,-64.99705991673508,-65.0019125676064,-65.00666592904255,-65.01132128080921,-65.01587989898277,-65.02034305541281,-65.02471201719196,-65.02898804613947,-65.03317239830282,-65.0372663234803,-65.04127106476665,-65.04518785812283,-65.04901793197054,-65.05276250681163,-65.05642279487243,-65.05999999977239,-65.06349531621652,-65.06690992971119,-65.07024501630217,-65.0735017423343,-65.0766812642319,-65.07978472829893,-65.08281327053813,-65.085768016488,-65.08865008107722,-65.09146056849494,-65.09420057207664,-65.09687117420467,-65.09947344622218,-65.10200844836037,-65.10447722967777,-65.10688082801107,-65.10922026993677,-65.11149657074294,-65.11371073441062,-65.11586375360403,-65.11795660966922,-65.11999027264055,-65.12196570125444,-65.12388384297002,-65.12574563399605,-65.12755199932396,-65.12930385276623,-65.13100209699998,-65.13264762361544,-65.13424131316869,-65.13578403523861,-65.13727664848761,-65.13872000072585,-65.14011492897873,-65.14146225955736,-65.14276280813175,-65.1440173798065,-65.1452267691989,-65.146391760519,-65.14751312765164,-65.14859163424025,-65.14962803377223,-65.15062306966566,-65.1515774753573,-65.15249197439186,-65.15336728051209,-65.15420409774977,-65.1550031205176,-65.15576503370167,-65.15649051275436,-65.15718022378795,-65.15783482366844,-65.15845496010968,-65.15904127176775,-65.15959438833549,-65.16011493063708,-65.16060351072264,-65.16106073196278,-65.16148718914302,-65.16188346855816,-65.16225014810631,-65.16258779738274,-65.16289697777344,-65.16317824254837,-65.16343213695423,-65.163659198307,-65.16385995608391,-65.16403493201499,-65.16418464017411,-65.16430958706962,-65.16441027173421,-65.16448718581445,-65.16454081365963,-65.16457163240996,-65.16458011208428,-65.16456671566696,-65.1645318991944,-65.16447611184051,-65.16439979600192,-65.16430338738215,-65.16418731507532,-65.16405200164908,-65.16389786322672,-65.16372530956875,-65.16353474415364,-65.16332656425779,-65.16310116103489,-65.1628589195944,-65.16260021907941,-65.16232543274363,-65.16203492802774,-65.16172906663486,-65.16140820460545,-65.16107269239124,-65.16072287492862,-65.16035909171103,-65.15998167686085,-65.15959095920037,-65.15918726232205,-65.15877090465806,-65.15834219954898,-65.15790145531196,-65.1574489753078,-65.15698505800766,-65.15650999705878,-65.15602408134947,-65.15552759507362,-65.1550208177941,-65.1545040245058,-65.15397748569768,-65.1534414674143,-65.15289623131643,-65.15234203474124,-65.15177913076148,-65.15120776824418,-65.15062819190857,-65.15004064238333,-65.14944535626314,-65.14884256616462,-65.14823250078146,-65.14761538493909,-65.14699143964847,-65.14636088215939,-65.14572392601303,-65.14508078109392,-65.14443165368128,-65.14377674649961,-65.14311625876886,-65.14245038625371,-65.14177932131258,-65.14110325294565,-65.1404223668426,-65.13973684542954,-65.13904686791544,-65.138352610338,-65.1376542456089,-65.1369519435584,-65.13624587097958,-65.13553619167178,-65.13482306648363,-65.13410665335557,-65.13338710736163,-65.13266458075088,-65.13193922298824,-65.13121118079476,-65.13048059818746,-65.12974761651856,-65.12901237451425,-65.12827500831294,-65.12753565150307,-65.12679443516029,-65.12605148788435,-65.12530693583531,-65.12456090276942,-65.12381351007443,-65.12306487680456,-65.12231511971486,-65.12156435329521,-65.12081268980388,-65.12006023930059,-65.11930710967914,-65.1185534066997,-65.11779923402057,-65.11704469322947,-65.11628988387466,-65.11553490349529,-65.1147798476517,-65.11402480995505,-65.11326988209672,-65.11251515387715,-65.11176071323456,-65.11100664627297,-65.11025303729006,-65.10949996880461,-65.10874752158354,-65.10799577466857,-65.10724480540257,-65.10649468945559,-65.10574550085038,-65.10499731198776,-65.10425019367152,-65.10350421513304,-65.10275944405552,-65.10201594659797,-65.1012737874188,-65.10053302969908,-65.09979373516559,-65.09905596411345,-65.09831977542844,-65.09758522660911,-65.09685237378854,-65.09612127175572,-65.09539197397679,-65.09466453261587,-65.09393899855566,-65.09321542141778,-65.09249384958272,-65.0917743302097,-65.09105690925605,-65.0903416314965,-65.08962854054211,-65.08891767885892,-65.08820908778647,-65.08750280755592,-65.086798877308,-65.08609733511067,-65.0853982179766,-65.08470156188035,-65.08400740177532,-65.0833157716105,-65.08262670434694,-65.08194023197402,-65.08125638552556,-65.08057519509552,-65.07989668985368,-65.07922089806102,-65.07854784708488,-65.07787756341388,-65.07721007267273,-65.07654539963674,-65.07588356824617,-65.07522460162038,-65.07456852207173,-65.07391535111944,-65.07326510950298,-65.0726178171956,-65.07197349341742,-65.07133215664841,-65.07069382464127,-65.07005851443404,-65.0694262423625,-65.06879702407254,-65.06817087453217,-65.06754780804356,-65.06692783825468,-65.06631097817106,-65.06569724016707,-65.0650866359973,-65.06447917680764,-65.06387487314619,-65.06327373497419,-65.06267577167652,-65.0620809920723,-65.06148940442517,-65.06090101645358,-65.06031583534073,-65.05973386774455,-65.05915511980749,-65.05857959716606,-65.0580073049604,-65.05743824784363,-65.05687242999102,-65.05630985510912,-65.0557505264447,-65.05519444679356,-65.05464161850932,-65.05409204351183,-65.05354572329578,-65.05300265893894,-65.05246285111038,-65.05192630007858,-65.05139300571935,-65.05086296752376,-65.0503361846058,-65.04981265571006,-65.04929237921921,-65.04877535316142,-65.04826157521765,-65.04775104272885,-65.047243752703,-65.04673970182212,-65.04623888644916,-65.04574130263475,-65.04524694612385,-65.04475581236235,-65.04426789650356,-65.04378319341453,-65.04330169768241,-65.04282340362055,-65.04234830527469,-65.04187639642889,-65.04140767061149,-65.0409421211009,-65.04047974093136,-65.0400205228986,-65.03956445956536,-65.0391115432669,-65.03866176611645,-65.03821512001039,-65.03777159663362,-65.03733118746464,-65.03689388378064,-65.03645967666247,-65.03602855699963,-65.03560051549503,-65.03517554266982,-65.03475362886803,-65.03433476426126,-65.03391893885313,-65.03350614248387,-65.03309636483466,-65.03268959543195,-65.03228582365179,-65.03188503872398,-65.03148722973627,-65.03109238563835,-65.03070049524588,-65.03031154724451,-65.02992553019364,-65.02954243253029,-65.02916224257288,-65.02878494852489,-65.0284105384785,-65.02803900041818,-65.02767032222415,-65.02730449167596,-65.02694149645576,-65.02658132415173,-65.02622396226134,-65.0258693981946,-65.02551761927722,-65.0251686127538,-65.02482236579083,-65.02447886547976,-65.02413809884,-65.02380005282177,-65.02346471430907,-65.02313207012244,-65.02280210702176,-65.02247481170897,-65.02215017083078,-65.02182817098132,-65.02150879870464,-65.0211920404974,-65.02087788281125,-65.02056631205535,-65.02025731459878,-65.0199508767729,-65.0196469848737,-65.01934562516408,-65.01904678387608,-65.01875044721312,-65.01845660135216,-65.0181652324458,-65.01787632662442,-65.0175898699982,-65.01730584865916,-65.01702424868309,-65.01674505613153,-65.01646825705366,-65.0161938374882,-65.01592178346522,-65.01565208100787,-65.0153847161343,-65.01511967485926,-65.01485694319584,-65.01459650715714,-65.0143383527579,-65.0140824660161,-65.01382883295454,-65.01357743960234,-65.0133282719965,-65.01308131618333,-65.01283655821995,-65.01259398417564,-65.0123535801333,-65.01211533219075,-65.01187922646211,-65.0116452490791,-65.01141338619226,-65.0111836239723,-65.01095594861121,-65.01073034632357,-65.01050680334765,-65.01028530594655,-65.01006584040941,-65.00984839305238,-65.0096329502198,-65.0094194982852,-65.00920802365233,-65.00899851275616,-65.00879095206388,-65.00858532807582,-65.00838162732641,-65.00817983638512,-65.00797994185727,-65.00778193038497,-65.00758578864794,-65.00739150336435,-65.0071990612916,-65.00700844922716,-65.00681965400926,-65.00663266251772,-65.00644746167463,-65.00626403844505,-65.00608237983775,-65.00590247290582,-65.00572430474739,-65.0055478625062,-65.0053731333723,-65.00520010458256,-65.00502876342132,-65.00485909722094,-65.00469109336237,-65.00452473927561,-65.00436002244034,-65.00419693038634,-65.00403545069403,-65.00387557099491,-65.003717278972,-65.00356056236038,-65.00340540894747,-65.00325180657362,-65.00309974313231,-65.00294920657073,-65.00280018489005,-65.00265266614574,-65.00250663844804,-65.00236208996218,-65.00221900890878,-65.00207738356411,-65.00193720226041,-65.0017984531044,-65.0016611237236,-65.00152520120602,-65.00139067218441,-65.00125752297703,-65.0011257397298,-65.00099530853697,-65.00086621553478,-65.00073844697071,-65.00061198925233,-65.0004868289806,-65.00036295297124,-65.00024034826748,-65.00011900214626,-64.99999890211994,-64.99988003593467,-64.99976239156638,-64.9996459572153,-64.9995307212992,-64.99941667244615,-64.99930379948668,-64.99919209144595,-64.99908153753562,-64.99897212714606,-64.99886384983856,-64.9987566953377,-64.99865065352421,-64.99854571442775,-64.99844186822035,-64.99833910520994,-64.99823741583417,-64.99813679065474,-64.99803722035183,-64.99793869571891,-64.9978412076579,-64.9977447471745,-64.99764930537388,-64.99755487345662,-64.99746144271485,-64.9973690045287,-64.99727755036292,-64.99718707176376,-64.99709756035602,-64.99700900784035,-64.9969214059906,-64.99683474665157,-64.99674902173666,-64.99666422322589,-64.99658034316393,-64.99649737365834,-64.99641530687785,-64.9963341350509,-64.9962538504641,-64.99617444546098,-64.9960959124407,-64.99601824385691,-64.99594143221671,-64.99586547007964,-64.99579035005672,-64.9957160648097,-64.99564260705014,-64.99556996953882,-64.99549814508495,-64.99542712654558,-64.99535690682502,-64.9952874788743,-64.99521883569065,-64.99515097031707,-64.99508387584181,-64.99501754539811,-64.99495197216366,-64.99488714936037,-64.99482307025399,-64.99475972815382,-64.99469711641245,-64.99463522842541,-64.99457405763101,-64.99451359751006,-64.99445384158568,-64.99439478342305,-64.9943364166292,-64.99427873485291,-64.99422173178444,-64.99416540115541,-64.99410973673864,-64.9940547323479,-64.99400038183796,-64.99394667910423,-64.99389361808274,-64.99384119274998,-64.99378939712278,-64.99373822525816,-64.99368767125321,-64.99363772924497,-64.99358839341029,-64.99353965796578,-64.9934915171676,-64.99344396531139,-64.99339699673214,-64.99335060580411,-64.99330478694064,-64.9932595345941,-64.99321484325576,-64.99317070745566,-64.99312712176251,-64.99308408078355,-64.99304157916444,-64.99299961158918,-64.99295817277995,-64.99291725749697,-64.99287686053846,-64.99283697674042,-64.99279760097662,-64.99275872815832,-64.99272035323436,-64.9926824711908,-64.99264507705098,-64.9926081658753,-64.99257173276106,-64.99253577284247,-64.99250028129036,-64.99246525331213,-64.9924306841516,-64.99239656908887,-64.9923629034402,-64.99232968255782,-64.9922969018299,-64.99226455668028,-64.9922326425684,-64.99220115498915,-64.99217008947271,-64.99213944158444,-64.99210920692468,-64.99207938112865,-64.99204995986626,-64.99202093884202,-64.99199231379481,-64.99196408049781,-64.99193623475827,-64.99190877241742,-64.99188168935027,-64.9918549814655,-64.99182864470524,-64.991802675045,-64.99177706849342,-64.99175182109218,-64.99172692891577,-64.99170238807143,-64.9916781946989,-64.9916543449703,-64.99163083508994,-64.99160766129418,-64.99158481985128,-64.9915623070612,-64.99154011925545]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1301\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1302\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1297\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1298\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1299\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1309\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1303\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1304\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1305\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.95640932209486,-64.91656743332514,-64.85984205555549,-64.78801247201851,-64.70268982250026,-64.60533363614289,-64.49726652550554,-64.37968726214805,-64.25368243584953,-64.12023687775266,-63.980243005197664,-63.83450685704832,-63.68374308554822,-63.5285980336341,-63.36965570689861,-63.207443213990864,-63.04243573374819,-62.875061058405976,-62.705685990186154,-62.53463298547816,-62.36219006339412,-62.18861374404723,-62.01413177577863,-61.83894566414371,-61.663205217148345,-61.48703775987238,-61.31055247641078,-61.13384197380701,-60.956983752569364,-60.780032640268615,-60.60300301991352,-60.42589999618499,-60.248720146379554,-60.07145224449328,-59.89407795126451,-59.716545232096806,-59.53877868318728,-59.36069958117042,-59.18222601318972,-59.00327301667765,-58.84474091546034,-58.70432117081082,-58.57995502026495,-58.469810379192914,-58.37225999121598,-58.28586154597049,-58.209339489475724,-58.1415683368062,-58.08155735114037,-58.02843648736541,-57.98144351898471,-57.93990439092094,-57.90322096506865,-57.87087405326114,-57.842414200050285,-57.8174533804225,-57.795657548680616,-57.776739975466505,-57.76045531084561,-57.74659431273124,-57.73497918177123,-57.72545944614459,-57.717908342462856,-57.712219642052986,-57.70830487522023,-57.706090909553595,-57.705517841856285,-57.706537166781075,-57.70911018866394,-57.713206646327876,-57.7188035237363,-57.72588402228672,-57.7344366732343,-57.74445457121548,-57.75593471210286,-57.76887742046904,-57.78328585377783,-57.79916557206703,-57.81652416335143,-57.83537091627141,-57.85571653265597,-57.87757287367391,-57.90095273412665,-57.92586964020441,-57.95233766669681,-57.980371270230194,-58.00998513560885,-58.04118863182379,-58.073980320095735,-58.10835983717307,-58.144327610543414,-58.18188460313077,-58.22103208334135,-58.26177141689563,-58.3041038773877,-58.348030472954164,-58.393551786821035,-58.44066782983598,-58.48937790338985,-58.53968047139201,-58.59157304019262,-58.645052045546144,-58.70011274588722,-58.75674912134638,-58.81495377807067,-58.8747178575363,-58.93603095064839,-58.998881016518396,-59.063254305894645,-59.12910563164493,-59.19639130679451,-59.26506921573751,-59.3350983488623,-59.40643840423012,-59.47904944766031,-59.552891623830895,-59.62792491207601,-59.70410892147847,-59.7814027206384,-59.859764698166714,-59.939152450520744,-60.019522694282635,-60.1008234914394,-60.18297908153588,-60.26591757266995,-60.34957032275106,-60.43387142032391,-60.51875725118721,-60.60416613898414,-60.69003804959403,-60.77631435056119,-60.86293761799346,-60.9498514843833,-61.03700052167408,-61.12431827557603,-61.211725299256585,-61.29914762720808,-61.38651612963027,-61.473765966668246,-61.560836127866146,-61.64766904428583,-61.73421026251719,-61.82040817132347,-61.906213772960946,-61.99158049232229,-62.07646401800559,-62.16080286421951,-62.24453928141221,-62.327621119020826,-62.41000122575536,-62.49163693273206,-62.572489607299595,-62.65252426717502,-62.7317092460167,-62.81001590285013,-62.887418368862846,-62.963893326026366,-63.03941981280936,-63.11397135602379,-63.1875182567721,-63.26003549372489,-63.33150218221794,-63.40190110330767,-63.471218292974214,-63.539442683086705,-63.60656578695785,-63.67258142334684,-63.73748547364993,-63.801275667769524,-63.86395139479437,-63.92551353517296,-63.98596431153159,-64.04530715569133,-64.10354001061239,-64.16066122082186,-64.21667161169955,-64.27157415306056,-64.32537366638986,-64.3780765698344,-64.42969065588605,-64.4802248973965,-64.52968927816944,-64.57809464489317,-64.62545257762025,-64.67177527638188,-64.71707546185132,-64.76136628825235,-64.80466126695046,-64.84697419937335,-64.88831911808649,-64.92871023500531,-64.96816189585883,-65.00668854013549,-65.04430395566007,-65.08101883610833,-65.11684468204223,-65.15179365175938,-65.18587843272269,-65.2191121307967,-65.25150817489684,-65.28308023498425,-65.31384215161913,-65.34380787552664,-65.37299141583769,-65.40140679584594,-65.4290680152771,-65.45598901820053,-65.48218366582871,-65.50766571354994,-65.53244879162641,-65.556546389065,-65.57997184023274,-65.60273831384559,-65.62485880400797,-65.64634612302304,-65.66721289573036,-65.68747155515985,-65.70713433931854,-65.72621328895086,-65.74472024613418,-65.76266685358969,-65.78006455460432,-65.79692459347336,-65.81325801638549,-65.82907567268218,-65.84438821643262,-65.85920610827318,-65.87353961746727,-65.88739882414737,-65.9007936217063,-65.91373371930922,-65.92622864450173,-65.93828774589302,-65.94992019589563,-65.96113499350648,-65.9719409671154,-65.98234677733001,-65.99236091980683,-66.00199172808051,-66.0112472254729,-66.02013475510326,-66.02866164811242,-66.03683520521541,-66.04466268109579,-66.05215127126426,-66.05930810105357,-66.0661402164635,-66.07265457660738,-66.07885804754348,-66.08475739730258,-66.09035929194773,-66.09567029252322,-66.10069685276856,-66.10544531748934,-66.1099219214909,-66.11413278899313,-66.11808393345548,-66.12178125775031,-66.12523055463143,-66.12843750745104,-66.13140769108526,-66.13414657303314,-66.13665951465924,-66.13895177255381,-66.1410284999879,-66.14289474844436,-66.14455546920803,-66.1460155150007,-66.14727964164882,-66.14835250977346,-66.14923868649348,-66.14994264713454,-66.1504687769374,-66.15082137276022,-66.15100464477013,-66.15102271812057,-66.15087963461106,-66.15057935432684,-66.15012575725638,-66.14952264488505,-66.14877374176358,-66.1478826970503,-66.14685308602657,-66.14568841158447,-66.14439210568698,-66.1429675307998,-66.14141798129536,-66.13974668482875,-66.13795680368564,-66.13605143610276,-66.13403361756096,-66.13190632205128,-66.12967246331445,-66.1273348960542,-66.12489641712486,-66.1223597666937,-66.11972762937856,-66.11700263536105,-66.1141873614762,-66.11128433227869,-66.10829602108635,-66.10522485100141,-66.10207319591001,-66.09884338146036,-66.09553768602017,-66.09215834161375,-66.0887075348393,-66.08518740776672,-66.08160005881662,-66.07794754362068,-66.07423187586413,-66.07045502811037,-66.06661893260856,-66.06272548208423,-66.05877653051351,-66.05477389388128,-66.0507193509236,-66.04661464385488,-66.04246147907993,-66.0382615278915,-66.03401642715343,-66.02972777996985,-66.02539715634063,-66.02102609380361,-66.01661609806362,-66.01216864360877,-66.00768517431432,-66.00316710403418,-65.9986158171806,-65.99403256403441,-65.98941833940326,-65.98477416004711,-65.98010105876435,-65.97540007927314,-65.97067227178951,-65.96591868921531,-65.96114038386001,-65.95633840462953,-65.95151379462345,-65.94666758908916,-65.9418008136877,-65.93691448303181,-65.9320095994612,-65.92708715202468,-65.92214811564249,-65.91719345042502,-65.91222410112783,-65.90724099672458,-65.90224505008224,-65.89723715772482,-65.89221819967332,-65.88718903935167,-65.88215052354893,-65.87710348243019,-65.8720487295886,-65.86698706213282,-65.86191926080416,-65.85684609011892,-65.85176829853184,-65.84668661861699,-65.84160176726314,-65.83651444588094,-65.83142534061938,-65.82633512258987,-65.82124444809594,-65.81615395886709,-65.81106428229566,-65.80597603167541,-65.80088980644105,-65.79580619240777,-65.79072576201015,-65.78564907453993,-65.78057667638193,-65.77550910124799,-65.77044687040848,-65.76539049292089,-65.76034046585568,-65.75529727451885,-65.75026139267123,-65.74523328274442,-65.74021339605314,-65.73520217300413,-65.73020004330141,-65.72520742614792,-65.72022473044353,-65.71525235497954,-65.71029068862943,-65.70534011053614,-65.70040099029585,-65.69547368813814,-65.69055855510285,-65.68565593321347,-65.68076615564713,-65.6758895469015,-65.67102642295819,-65.6661770914432,-65.66134185178414,-65.6565209953645,-65.65171480567477,-65.64692355846081,-65.64214752186926,-65.63738695659009,-65.63264211599655,-65.62791324628226,-65.62320058659581,-65.6185043691727,-65.61382481946471,-65.60916215626698,-65.6045165918425,-65.59988833204432,-65.59527757643542,-65.59068451840638,-65.58610934529072,-65.58155223847824,-65.57701337352607,-65.5724929202678,-65.56799104292047,-65.56350790018962,-65.55904364537247,-65.55459842645904,-65.55017238623155,-65.54576566236197,-65.54137838750773,-65.53701068940575,-65.53266269096471,-65.52833451035573,-65.52402626110131,-65.51973805216271,-65.51546998802577,-65.51122216878522,-65.50699469022739,-65.50278764391149,-65.4986011172495,-65.49443519358461,-65.49028995226814,-65.48616546873534,-65.48206181457961,-65.47797905762565,-65.4739172620011,-65.46987648820708,-65.46585679318746,-65.46185823039686,-65.45788084986758,-65.45392469827524,-65.4499898190034,-65.44607625220698,-65.4421840348746,-65.43831320088991,-65.43446378109178,-65.43063580333352,-65.42682929254102,-65.42304427076998,-65.4192807572621,-65.41553876850035,-65.41181831826327,-65.40811941767838,-65.40444207527464,-65.40078629703413,-65.39715208644267,-65.39353944453983,-65.38994836996784,-65.38637885901993,-65.38283090568765,-65.37930450170757,-65.375799636607,-65.37231629774921,-65.36885447037764,-65.36541413765957,-65.36199528072893,-65.3585978787285,-65.35522190885133,-65.35186734638155,-65.34853416473443,-65.34522233549586,-65.34193182846116,-65.33866261167314,-65.33541465145977,-65.33218791247099,-65.32898235771505,-65.32579794859424,-65.32263464494004,-65.31949240504764,-65.31637118570998,-65.3132709422512,-65.3101916285595,-65.30713319711955,-65.30409559904437,-65.3010787841066,-65.2980827007693,-65.2951072962164,-65.29215251638242,-65.28921830598188,-65.28630460853816,-65.28341136641195,-65.28053852082918,-65.27768601190854,-65.27485377868857,-65.27204175915425,-65.26924989026327,-65.26647810797175,-65.26372634725968,-65.26099454215583,-65.25828262576236,-65.25559053027897,-65.25291818702668,-65.25026552647128,-65.24763247824633,-65.24501897117581,-65.24242493329646,-65.2398502918797,-65.23729497345325,-65.23475890382232,-65.23224200809061,-65.2297442106808,-65.22726543535487,-65.22480560523394,-65.22236464281796,-65.21994247000495,-65.21753900810998,-65.21515417788386,-65.21278789953152,-65.2104400927301,-65.2081106766467,-65.20579956995593,-65.20350669085715,-65.20123195709137,-65.19897528595793,-65.19673659433096,-65.19451579867545,-65.1923128150632,-65.1901275591884,-65.187959946383,-65.18580989163188,-65.18367730958765,-65.18156211458536,-65.17946422065685,-65.17738354154494,-65.17531999071734,-65.17327348138036,-65.17124392649238,-65.16923123877713,-65.1672353307367,-65.1652561146644,-65.16329350265733,-65.16134740662878,-65.15941773832049,-65.15750440931457,-65.15560733104535,-65.15372641481093,-65.15186157178461,-65.15001271302609,-65.14817974949248,-65.14636259204919,-65.14456115148049,-65.14277533850006,-65.14100506376123,-65.13925023786713,-65.13751077138059,-65.13578657483396,-65.13407755873865,-65.13238363359464,-65.13070470989966,-65.12904069815836,-65.12739150889125,-65.12575705264346,-65.1241372399934,-65.12253198156121,-65.12094118801711,-65.1193647700896,-65.11780263857345,-65.11625470433758,-65.11472087833283,-65.11320107159958,-65.11169519527515,-65.11020316060115,-65.10872487893069,-65.10726026173539,-65.10580922061234,-65.10437166729085,-65.10294751363912,-65.10153667167081,-65.10013905355139,-65.09875457160445,-65.09738313831784,-65.09602466634975,-65.0946790685346,-65.09334625788884,-65.09202614761665,-65.09071865111548,-65.08942368198156,-65.08814115401519,-65.08687098122601,-65.08561307783815,-65.08436735829518,-65.0831337372651,-65.08191212964508,-65.08070245056622,-65.07950461539814,-65.07831853975345,-65.07714413949222,-65.07598133072622,-65.07483002982318,-65.07369015341085,-65.07256161838109,-65.07144434189374,-65.0703382413805,-65.06924323454861,-65.06815923938458,-65.06708617415774,-65.06602395742364,-65.06497250802757,-65.06393174510777,-65.06290158809871,-65.06188195673423,-65.06087277105055,-65.05987395138933,-65.0588854184005,-65.05790709304512,-65.05693889659814,-65.05598075065103,-65.0550325771144,-65.05409429822053,-65.05316583652578,-65.052247114913,-65.0513380565938,-65.05043858511084,-65.04954862433992,-65.04866809849213,-65.04779693211584,-65.04693505009871,-65.04608237766952,-65.04523884040006,-65.04440436420686,-65.04357887535288,-65.04276230044921,-65.04195456645658,-65.04115560068693,-65.04036533080485,-65.03958368482894,-65.03881059113324,-65.03804597844844,-65.03728977586313,-65.03654191282499,-65.03580231914187,-65.03507092498289,-65.03434766087943,-65.0336324577261,-65.03292524678162,-65.0322259596697,-65.03153452837985,-65.0308508852681,-65.03017496305773,-65.02950669483994,-65.0288460140744,-65.02819285458992,-65.02754715058484,-65.02690883662758,-65.02627784765708,-65.02565411898313,-65.02503758628671,-65.02442818562037,-65.02382585340835,-65.02323052644692,-65.02264214190448,-65.0220606373217,-65.02148595061165,-65.0209180200598,-65.02035678432406,-65.0198021824348,-65.0192541537947,-65.01871263817876,-65.01817757573404,-65.01764890697964,-65.01712657280639,-65.01661051447662,-65.01610067362398,-65.01559699225304,-65.01509941273898,-65.01460787782725,-65.01412233063316,-65.01364271464143,-65.01316897370579,-65.01270105204837,-65.01223889425934,-65.01178244529622,-65.0113316504834,-65.01088645551148,-65.01044680643669,-65.01001264968018,-65.00958393202737,-65.00916060062724,-65.00874260299156,-65.00832988699419,-65.00792240087024,-65.0075200932153,-65.0071229129846,-65.00673080949213,-65.00634373240979,-65.00596163176651,-65.00558445794728,-65.00521216169224,-65.00484469409574,-65.00448200660529,-65.00412405102061,-65.00377077949263,-65.00342214452237,-65.00307809895996,-65.00273859600351,-65.00240358919805,-65.00207303243438,-65.00174687994797,-65.00142508631782,-65.00110760646527,-65.0007943956528,-65.00048540948293,-65.00018060389691,-64.99987993517352,-64.99958334716148,-64.99929076720711,-64.99900212794529,-64.99871736664176,-64.99843642461747,-64.99815924674482,-64.99788578100703,-64.99761597811288,-64.9973497911601,-64.99708717534153,-64.99682808768848,-64.99657248684709,-64.99632033288326,-64.99607158711294,-64.9958262119543,-64.9955841707993,-64.99534542790211,-64.99510994828225,-64.99487769764075,-64.99464864228744,-64.99442274907818,-64.99419998536062,-64.99398031892741,-64.99376371797602,-64.99355015107412,-64.99333958712997,-64.99313199536704,-64.99292734530236,-64.9927256067281,-64.9925267496959,-64.99233074450362,-64.99213756168422,-64.99194717199633,-64.99175954641645,-64.99157465613236,-64.99139247253781,-64.99121296722802,-64.9910361119961,-64.99086187883007,-64.99069023991065,-64.99052116760926,-64.9903546344867,-64.99019061329206,-64.99002907696182,-64.98986999861937,-64.9897133515746,-64.98955910932362,-64.9894072455487,-64.98925773411817,-64.98911054908648,-64.98896566469426,-64.98882305536847,-64.98868269572246,-64.98854456055614,-64.98840862485604,-64.98827486379548,-64.9881432527346,-64.98801376722045,-64.98788638298699,-64.9877610759551,-64.9876378222326,-64.98751659811404,-64.98739738008072,-64.98728014480048,-64.98716486912751,-64.98705153010216,-64.98694010495068,-64.98683057108485,-64.98672290610176,-64.98661708778334,-64.98651309409603,-64.98641090319029,-64.98631049340021,-64.98621184324293,-64.98611493141814,-64.9860197368076,-64.98592623847445,-64.98583441566267,-64.98574424779645,-64.98565571447952,-64.98556879549449,-64.98548347080212,-64.9853997205407]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1310\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1311\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1306\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1307\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1308\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1319\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1313\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1314\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1315\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.42154720086567,-63.88482473194712,-63.375001539965346,-62.890198719360754,-62.42868505231436,-61.98886466156169,-61.56926575518039,-61.168530357345766,-60.785404930669976,-60.41873180609763,-60.067441345470456,-59.73054469987457,-59.40712680544451,-59.096340434592335,-58.7974007405865,-58.5095802534923,-58.232204289445285,-57.964646738713,-57.70632567570142,-57.456699694941335,-57.215264735198865,-56.98155115957887,-56.755121071749564,-56.53556584985357,-56.32250305891186,-56.11557439162729,-55.91444384723697,-55.71879605358115,-55.52833472200039,-55.342780960727154,-55.16187115249253,-54.98535586685969,-54.812998852677104,-54.64457610559119,-54.479875005615405,-54.318692714468376,-54.16083496363241,-54.0061154998965,-53.854355564267244,-53.70538340275823,-54.124708279496225,-54.51755406580369,-54.885805372720455,-55.23119228545026,-55.55530464851011,-55.859605002284844,-56.145440292848484,-56.41405246479747,-56.66658803697766,-56.904106752657896,-57.12758938842519,-57.3379445662536,-57.536014840457604,-57.72258255025405,-57.8983750881201,-58.06406964211094,-58.22029746531817,-58.36764772095419,-58.50667094713063,-58.637882181256565,-58.76176378011527,-58.878767968085945,-58.98931914265682,-59.09381596332416,-59.19263324718052,-59.2861236919553,-59.37461944496993,-59.4584335343951,-59.53786117733392,-59.6131809775878,-59.68465602447496,-59.75253490275039,-59.817052622504725,-59.87843147688411,-59.9368818345596,-59.99260287307046,-60.04578325845853,-60.09660177599018,-60.14522791621811,-60.19182242015794,-60.23653778693705,-60.27951874690704,-60.320902702890955,-60.36082014195582,-60.39939501985506,-60.43674512007009,-60.4729823891909,-60.50821309047957,-60.54253778683602,-60.57605167611248,-60.60884490015216,-60.641002829823336,-60.672606328076434,-60.70373199283864,-60.73445238137342,-60.76483621756819,-60.79494858346956,-60.8248510962594,-60.85460207175398,-60.8842566754117,-60.9138670617494,-60.943482502992694,-60.97314950772024,-61.0029119302044,-61.03281107110063,-61.06288577009378,-61.09317249107112,-61.12370540035841,-61.154516438525874,-61.18563450913764,-61.21708568481841,-61.24889340445442,-61.28107864613167,-61.31366007908611,-61.34665419751083,-61.380075438694746,-61.413936287649136,-61.44824737010344,-61.48301753551517,-61.51825393153429,-61.55396207118564,-61.59014589388002,-61.62680759324402,-61.66394700553635,-61.70156184957226,-61.73964793557457,-61.77819934755049,-61.817208603141076,-61.856666794330415,-61.896563711920564,-61.936887956264265,-61.977627036391006,-62.0187674593547,-62.06029481136591,-62.102193480726136,-62.144446337361536,-62.187034975773315,-62.229939925958874,-62.27314083696221,-62.31661663703111,-62.36034567377563,-62.404305837223156,-62.44847466823725,-62.49282945440089,-62.53734731515,-62.58200527767399,-62.62677977390457,-62.67164678270639,-62.71658201958671,-62.761561098568066,-62.806559670156226,-62.85155353876696,-62.89651876248889,-62.94143173764416,-62.986269270253246,-63.03100863620635,-63.07562763168393,-63.12010461514673,-63.16441831439408,-63.20854771150051,-63.252472167613725,-63.29617152511096,-63.339626190388266,-63.3828172000928,-63.42572627321036,-63.46833585108013,-63.51062912711641,-63.55259006776695,-63.594203426022546,-63.63545474860836,-63.67633037782894,-63.716817448903065,-63.756903883507576,-63.79657818557383,-63.83582942216262,-63.87464726685108,-63.91302203086016,-63.95094468386644,-63.98840686616407,-64.02540089360433,-64.06191975653516,-64.09795711378709,-64.1335072826002,-64.16856522525713,-64.20312653307427,-64.23718740830768,-64.27074464444658,-64.3037956052964,-64.33633820319166,-64.36837087662617,-64.39989256754282,-64.43090269848562,-64.46140114978388,-64.4913882159055,-64.52086449189927,-64.54983088125408,-64.57828859892871,-64.60623917041787,-64.63368442759224,-64.66062650194007,-64.68706781574323,-64.71301107163984,-64.7384592409552,-64.76341555112327,-64.78788347246956,-64.8118667045816,-64.83536916245642,-64.85839496258083,-64.8809484090739,-64.90303397999611,-64.92465631391069,-64.9458201967645,-64.96653054914177,-64.98679241393155,-65.00661094443916,-65.02599139296302,-65.0449390998514,-65.06345948304657,-65.08155802811955,-65.09924027879383,-65.11651182795335,-65.13337830912681,-65.14984538843864,-65.16591875701448,-65.1816041238285,-65.19690720897798,-65.21183373737036,-65.22638943280748,-65.24058001245096,-65.25441118165303,-65.26788862913685,-65.28101802251066,-65.29380500410004,-65.3062551870831,-65.31837415191377,-65.33016744301852,-65.34164056575251,-65.35279898360155,-65.36364811561668,-65.37419332960572,-65.38443992474497,-65.39439313487917,-65.4040581311001,-65.41344002372645,-65.42254386378954,-65.43137464411454,-65.4399373000733,-65.44823671007374,-65.45627769584081,-65.46406502253531,-65.4716033987499,-65.47889747641521,-65.48595185064313,-65.49277105953041,-65.49935958394117,-65.50572184728362,-65.51186221529355,-65.51778499583442,-65.52349443872203,-65.52899473557966,-65.53429001972829,-65.53938436611524,-65.54428179128331,-65.54898625338173,-65.55350165221968,-65.55783182936219,-65.56198056826791,-65.56595159446798,-65.56974857578463,-65.57337512258817,-65.57683478809066,-65.58013106867446,-65.58326740425379,-65.58624717866748,-65.58907372010073,-65.59175030153409,-65.59428014121758,-65.59666640316809,-65.5989121976881,-65.60102058190391,-65.60299456032169,-65.6048370853994,-65.60655105813315,-65.60813932865636,-65.60960469685017,-65.61094991296363,-65.61217767824256,-65.61329064556544,-65.61429142008545,-65.61518255987723,-65.61596657658761,-65.61664593608903,-65.61722305913483,-65.61770032201558,-65.61808005721555,-65.61836455406865,-65.61855605941301,-65.6186567782437,-65.61866887436292,-65.61859447102704,-65.6184356515901,-65.61819446014333,-65.61787290214995,-65.61747294507539,-65.61699651901203,-65.61644551729853,-65.61582179713324,-65.61512718018156,-65.61436345317692,-65.61353236851522,-65.61263564484253,-65.61167496763588,-65.61065198977703,-65.60956833211905,-65.6084255840457,-65.6072253040233,-65.60596902014532,-65.60465823066944,-65.60329440454701,-65.60187898194503,-65.6004133747605,-65.59889896712721,-65.59733711591487,-65.5957291512207,-65.59407637685345,-65.59238007080991,-65.5906414857438,-65.5888618494273,-65.58704236520508,-65.58518420932806,-65.58328852484051,-65.58135642399728,-65.57938899037747,-65.57738728073419,-65.57535232661499,-65.57328513578338,-65.5711866934676,-65.56905796345984,-65.56689988908585,-65.56471339406241,-65.56249938325786,-65.56025874336892,-65.55799234352523,-65.55570103583162,-65.55338565585672,-65.55104702307538,-65.54868594127151,-65.54630319890673,-65.54389956945982,-65.54147581174118,-65.5390326701857,-65.53657087512737,-65.53409114305799,-65.53159417687267,-65.52908066610354,-65.52655128714379,-65.52400670346313,-65.52144756581608,-65.51887451244392,-65.51628816927128,-65.51368915009806,-65.5110780567872,-65.50845547944894,-65.50582199662178,-65.50317817545071,-65.50052457186281,-65.49786173074051,-65.49519018609269,-65.49251046122373,-65.48982306890072,-65.48712851151872,-65.48442728126432,-65.48171986027748,-65.47900672081164,-65.47628832539216,-65.47356512697309,-65.47083756909224,-65.46810608602468,-65.46537110293437,-65.46263303602431,-65.45989229268484,-65.4571492716402,-65.45440436309354,-65.45165794886992,-65.44891040255776,-65.44616208964841,-65.44341336767394,-65.44066458634315,-65.43791608767577,-65.43516820613488,-65.43242126875735,-65.42967559528273,-65.42693149828007,-65.42418928327301,-65.4214492488631,-65.41871168685118,-65.41597688235706,-65.41324511393728,-65.41051665370122,-65.40779176742524,-65.40507071466516,-65.40235374886694,-65.39964111747561,-65.39693306204242,-65.39422981833032,-65.39153161641767,-65.3888386808003,-65.38615123049189,-65.38346947912264,-65.38079363503634,-65.37812390138583,-65.37546047622685,-65.37280355261024,-65.37015331867268,-65.36750995772582,-65.36487364834393,-65.36224456445001,-65.35962287540042,-65.35700874606813,-65.35440233692444,-65.35180380411929,-65.34921329956028,-65.34663097099019,-65.34405696206325,-65.34149141241998,-65.33893445776086,-65.33638622991852,-65.3338468569289,-65.33131646310098,-65.32879516908532,-65.32628309194153,-65.32378034520434,-65.32128703894868,-65.31880327985355,-65.31632917126478,-65.31386481325667,-65.31141030269258,-65.3089657332844,-65.306531195651,-65.30410677737575,-65.30169256306282,-65.29928863439267,-65.2968950701765,-65.29451194640976,-65.29213933632465,-65.28977731044185,-65.28742593662118,-65.28508528011145,-65.28275540359945,-65.2804363672581,-65.27812822879363,-65.27583104349213,-65.27354486426509,-65.27126974169433,-65.26900572407598,-65.26675285746384,-65.2645111857119,-65.26228075051608,-65.26006159145544,-65.2578537460324,-65.25565724971248,-65.2534721359633,-65.25129843629284,-65.2491361802871,-65.24698539564709,-65.24484610822522,-65.24271834206101,-65.24060211941622,-65.23849746080936,-65.23640438504961,-65.23432290927022,-65.23225304896123,-65.2301948180017,-65.22814822869142,-65.226113291782,-65.22409001650746,-65.22207841061437,-65.22007848039138,-65.21809023069828,-65.21611366499464,-65.21414878536784,-65.21219559256075,-65.21025408599884,-65.20832426381693,-65.2064061228854,-65.20449965883603,-65.20260486608737,-65.2007217378697,-65.19885026624958,-65.19699044215395,-65.19514225539389,-65.19330569468792,-65.19148074768498,-65.18966740098695,-65.18786564017088,-65.18607544981079,-65.1842968134991,-65.18252971386782,-65.1807741326092,-65.17903005049622,-65.17729744740264,-65.17557630232274,-65.17386659339076,-65.17216829789996,-65.17048139232149,-65.16880585232279,-65.1671416527858,-65.16548876782485,-65.16384717080423,-65.1622168343555,-65.16059773039451,-65.15898983013814,-65.15739310412074,-65.1558075222104,-65.15423305362478,-65.15266966694689,-65.15111733014045,-65.14957601056508,-65.14804567499122,-65.14652628961483,-65.14501782007177,-65.14352023145211,-65.14203348831404,-65.14055755469764,-65.13909239413837,-65.1376379696805,-65.13619424389005,-65.13476117886778,-65.13333873626183,-65.13192687728021,-65.130525562703,-65.12913475289453,-65.12775440781516,-65.126384487033,-65.12502494973538,-65.1236757547402,-65.12233686050705,-65.12100822514806,-65.11968980643877,-65.1183815618287,-65.11708344845174,-65.1157954231364,-65.11451744241596,-65.11324946253826,-65.11199143947562,-65.11074332893428,-65.10950508636395,-65.1082766669671,-65.107058025708,-65.10584911732182,-65.10464989632342,-65.10346031701602,-65.1022803334998,-65.10110989968031,-65.09994896927671,-65.09879749582994,-65.09765543271072,-65.09652273312741,-65.09539935013376,-65.09428523663651,-65.09318034540291,-65.09208462906805,-65.09099804014213,-65.08992053101751,-65.08885205397583,-65.08779256119477,-65.08674200475492,-65.08570033664635,-65.0846675087752,-65.08364347297007,-65.08262818098838,-65.0816215845226,-65.08062363520627,-65.0796342846201,-65.0786534842978,-65.07768118573193,-65.07671734037957,-65.07576189966791,-65.07481481499975,-65.07387603775895,-65.0729455193157,-65.07202321103173,-65.0711090642655,-65.07020303037713,-65.06930506073344,-65.06841510671278,-65.06753311970975,-65.06665905113996,-65.0657928524446,-65.06493447509493,-65.06408387059673,-65.06324099049469,-65.06240578637663,-65.06157820987772,-65.06075821268459,-65.05994574653936,-65.0591407632436,-65.05834321466229,-65.0575530527275,-65.05677022944224,-65.0559946968841,-65.05522640720882,-65.05446531265386,-65.05371136554184,-65.05296451828394,-65.05222472338319,-65.05149193343779,-65.05076610114423,-65.0500471793005,-65.0493351208091,-65.04862987868003,-65.04793140603378,-65.04723965610417,-65.04655458224119,-65.04587613791374,-65.04520427671234,-65.0445389523518,-65.04388011867374,-65.04322772964919,-65.042581739381,-65.04194210210632,-65.0413087721989,-65.04068170417146,-65.0400608526779,-65.03944617251553,-65.03883761862723,-65.03823514610353,-65.03763871018468,-65.03704826626266,-65.03646376988311,-65.03588517674727,-65.0353124427138,-65.03474552380065,-65.03418437618676,-65.03362895621382,-65.03307922038795,-65.03253512538132,-65.03199662803372,-65.03146368535417,-65.03093625452233,-65.03041429289004,-65.0298977579827,-65.02938660750064,-65.02888079932049,-65.02838029149645,-65.02788504226156,-65.02739501002894,-65.02691015339292,-65.02643043113025,-65.02595580220114,-65.02548622575038,-65.02502166110837,-65.02456206779209,-65.02410740550607,-65.02365763414335,-65.02321271378635,-65.02277260470773,-65.0223372673712,-65.02190666243239,-65.02148075073951,-65.02105949333416,-65.020642851452,-65.02023078652338,-65.01982326017408,-65.01942023422579,-65.0190216706968,-65.0186275318025,-65.01823777995587,-65.01785237776804,-65.0174712880487,-65.01709447380655,-65.01672189824974,-65.01635352478621,-65.01598931702407,-65.01562923877191,-65.01527325403913,-65.0149213270362,-65.01457342217496,-65.01422950406875,-65.01388953753273,-65.013553487584,-65.01322131944177,-65.01289299852749,-65.01256849046499,-65.01224776108053,-65.01193077640292,-65.01161750266353,-65.01130790629631,-65.01100195393785,-65.0106996124273,-65.01040084880638,-65.0101056303193,-65.00981392441271,-65.00952569873559,-65.00924092113912,-65.0089595596766,-65.00868158260324,-65.00840695837607,-65.00813565565366,-65.00786764329598,-65.00760289036418,-65.00734136612034,-65.0070830400272,-65.00682788174792,-65.0065758611458,-65.00632694828394,-65.00608111342497,-65.00583832703069,-65.00559855976172,-65.00536178247718,-65.00512796623426,-65.00489708228788,-65.00466910209028,-65.00444399729056,-65.00422173973432,-65.00400230146315,-65.00378565471422,-65.00357177154227,-65.00336062334122,-65.00315218103579,-65.00294641524344,-65.00274329641067,-65.00254279492711,-65.00234488122061,-65.00214952583576,-65.00195669949835,-65.00176637316768,-65.00157851807852,-65.00139310577414,-65.00121010813196,-65.00102949738265,-65.00085124612396,-65.00067532732996,-65.00050171435652,-65.0003303809436,-65.00016130121494,-64.9999944496757,-64.9998298012082,-64.99966733106645,-64.99950701486952,-64.99934882859407,-64.9991927485662,-64.99903875145303,-64.99888681425375,-64.9987369142907,-64.99858902920028,-64.99844313692387,-64.99829921569892,-64.99815724405013,-64.99801720078081,-64.9978790649645,-64.9977428159368,-64.9976084332876,-64.99747589685339,-64.99734518671004,-64.99721628316581,-64.99708916675469,-64.99696381822999,-64.99684021855828,-64.99671834891359,-64.99659819067196,-64.99647972540615,-64.99636293488068,-64.99624780104718,-64.99613430603989,-64.99602243217147,-64.99591216192897,-64.99580347797009,-64.99569636311955,-64.99559080036578,-64.99548677285766,-64.99538426390153,-64.99528325695832,-64.99518373564085,-64.99508568371127,-64.99498908507861,-64.99489392379655,-64.99480018406118,-64.99470785020895,-64.9946169067148,-64.99452733819017,-64.99443912938135,-64.99435226516778,-64.99426673056041,-64.99418251070027,-64.99409959085696,-64.99401795642727,-64.9939375929339,-64.9938584860242,-64.9937806214689,-64.99370398516105,-64.99362856311483,-64.99355434146452,-64.99348130646345,-64.99340944448304,-64.9933387420118,-64.99326918565446,-64.993200762131,-64.99313345827586,-64.99306726103706]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1320\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1321\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1316\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1317\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1318\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1328\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1322\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1323\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1324\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.9987636945507,-64.99821034832222,-64.99768732311597,-64.99718971697536,-64.99671408308582,-64.99625783545477,-64.99581894824438,-64.99539578442415,-64.99498698970879,-64.99459142284486,-64.99420810767162,-64.99383619897498,-64.99347495746416,-64.99312373099005,-64.99278194015042,-64.99244906704874,-64.99212464636327,-64.9918082581385,-64.99149952188127,-64.9911980916603,-64.99090365198978,-64.99061591433399,-64.99033461411129,-64.99005950810512,-64.98979037221086,-64.9895269994634,-64.98926919830161,-64.98901679103494,-64.98876961248357,-64.98852750876918,-64.98829033623673,-64.98805796049116,-64.98783025553521,-64.98760710299653,-64.98738839143397,-64.98717401571415,-64.98696387645072,-64.98675787949942,-64.98655593550308,-64.98635795948124,-64.98616387045988,-64.98597359113683,-64.98578704757958,-64.98560416895182,-64.98542488726613,-64.98524913715985,-64.98507685569218,-64.98490798216011,-64.98474245793143,-64.98458022629318,-64.98442123231392,-64.98426542271858,-64.98411274577461,-64.98396315118832,-64.9838165900105,-64.9836730145504,-64.98353237829721,-64.98339463584847,-64.9832597428446,-64.9831276559091,-64.98299833259384,-64.98287173132893,-64.98274781137683,-64.9826265327902,-64.98250785637335,-64.9823917436466,-64.98227815681373,-64.98216705873192,-64.98205841288403,-64.98195218335309,-64.98184833479876,-64.98174683243552,-64.98164764201255,-64.98155072979506,-64.98145606254701,-64.98136360751505,-64.98127333241358,-64.9811852054109,-64.98109919511624,-64.98101527056775,-64.98093340122115,-64.98085355693925,-64.98077570798203,-64.98069982499739,-64.98062587901245,-64.98055384142533,-64.98048368399749,-64.98041537884636,-64.98034889843854,-64.9802842155832,-64.98022130342598,-64.98016013544306,-64.98010068543559,-64.9800429275244,-64.97998683614486,-64.97993238604212,-64.97987955226638,-64.97982831016849,-64.97977863539563,-64.97973050388728,-64.97968389187116,-64.9796387758595,-64.97959513264529,-64.97955293929873,-64.97951217316383,-64.97947281185498,-64.97943483325373,-64.97939821550567,-64.97936293701729,-64.97932897645302,-64.97929631273229,-64.9792649250267,-64.9792347927572,-64.97920589559138,-64.97917821344078,-64.9791517264583,-64.9791264150356,-64.97910225980058,-64.97907924161495,-64.97905734157173,-64.97903654099288,-64.97901682142697,-64.9789981646468,-64.97898055264716,-64.97896396764257,-64.97894839206505,-64.9789338085619,-64.97892019999357,-64.9789075494315,-64.978895840156,-64.97888505565417,-64.97887517961787,-64.97886619594162,-64.97885808872059,-64.9788508422486,-64.97884444101622,-64.9788388697087,-64.97883411320406,-64.97883015657125,-64.97882698506812,-64.97882458413967,-64.97882293941609,-64.97882203671092,-64.97882186201927,-64.97882240151597,-64.97882364155375,-64.97882556866149,-64.97882816954247,-64.97883143107254,-64.97883534029846,-64.97883988443614,-64.97884505086894,-64.97885082714595,-64.97885720098034,-64.97886416024771,-64.97887169298436,-64.97887978738572,-64.97888843180472,-64.97889761475012,-64.97890732488499,-64.97891755102502,-64.97892828213706,-64.97893950733749,-64.97895121589063,-64.97896339720734,-64.97897604084334,-64.97898913649777,-64.97900267401175,-64.97901664336676,-64.97903103468326,-64.97904583821919,-64.97906104436854,-64.97907664365985,-64.97909262675488,-64.97910898444708,-64.97912570766027,-64.97914278744722,-64.97916021498823,-64.97917798158981,-64.97919607868332,-64.97921449782352,-64.97923323068738,-64.97925226907266,-64.97927160489658,-64.97929123019459,-64.97931113711901,-64.97933131793776,-64.9793517650331,-64.97937247090036,-64.9793934281467,-64.97941462948981,-64.97943606775677,-64.97945773588275,-64.97947962690985,-64.97950173398588,-64.97952405036315,-64.97954656939733,-64.97956928454623,-64.9795921893687,-64.97922752250246,-64.97736410442391,-64.97225389695645,-64.96189638938279,-64.94443966913774,-64.9184368985378,-64.88293947020529,-64.83747577863096,-64.781972420773,-64.71665856110177,-64.64197589459147,-64.55850357178015,-64.46690001625531,-64.36786008244256,-64.26208478806812,-64.15026076155883,-64.03304691064,-63.9110663106845,-63.78489206403426,-63.65505246485622,-63.522034729118275,-63.38628567297081,-63.24821322068805,-63.10818839618378,-62.96654757626449,-62.82359053461105,-62.679573309466804,-62.5347263425644,-62.38925617282335,-62.24334724911762,-62.09716372126464,-61.950851160404845,-61.80453043039392,-61.65829217568857,-61.51221530068127,-61.36636766958622,-61.220806965747,-61.075581570308245,-60.93073141623039,-60.786275266706056,-60.64259878571181,-60.50080677031568,-60.36263703658212,-60.23007773490744,-60.10496882223635,-59.98874841789161,-59.88235956892006,-59.786253070906476,-59.70049614658512,-59.62486814337527,-59.55895034385623,-59.502200405045016,-59.454009534829474,-59.41374403555891,-59.380774066332634,-59.35449256568444,-59.33432690108098,-59.319745307821165,-59.310259697610725,-59.305426010527555,-59.30484296293759,-59.30814979967882,-59.31502347751381,-59.325175574447684,-59.33834912399945,-59.354315505311014,-59.37287147173477,-59.393836366762216,-59.41704955279321,-59.44236806234287,-59.469664470695626,-59.498824982194336,-59.52974771818017,-59.562341192273195,-59.5965229576291,-59.632218410612076,-59.669359735694776,-59.70788497712431,-59.74773722383304,-59.7888638951216,-59.831216115728644,-59.87474816998109,-59.919417025757795,-59.96518191998075,-60.012003998259175,-60.05984194938683,-60.10864445131922,-60.15836365088737,-60.20895446057067,-60.260374081774145,-60.312581639619815,-60.36553788938621,-60.419204975033274,-60.47354622817272,-60.528525999680284,-60.584109518297254,-60.640262771910294,-60.69695240810224,-60.754145651212696,-60.81181023362844,-60.86991433939444,-60.928426558528614,-60.98731585065866,-61.04655151679094,-61.106090090719825,-61.165887359106,-61.225902032483305,-61.28609524354747,-61.34643020140003,-61.40687193006116,-61.46738706212599,-61.52794367210619,-61.588511139935015,-61.649060038192744,-61.709562038408535,-61.7699898329404,-61.830317069712144,-61.89051829763992,-61.95056892098918,-62.01044516121402,-62.070121675261085,-62.12956340390302,-62.1887387097927,-62.247618768862495,-62.3061771728766,-62.364389632011694,-62.42223373902005,-62.47968877630643,-62.53673555501898,-62.59335627902741,-62.64953442877131,-62.70525466126503,-62.760502723411776,-62.81526537638718,-62.86953032929659,-62.923286180644915,-62.97652236641673,-63.02922911376798,-63.08139236002126,-63.13299590263422,-63.18402595081157,-63.23447073025469,-63.284320204058574,-63.33356585476353,-63.38220050647982,-63.43021817610774,-63.47761394691675,-63.52438385991532,-63.57052481970673,-63.61603451233256,-63.66091133315647,-63.705154323235554,-63.74876311291968,-63.79173787164369,-63.83407926305267,-63.87578840473991,-63.91686683198993,-63.9573164650109,-63.99713957921684,-64.03633877818334,-64.07491229697952,-64.11285934350424,-64.15018027438364,-64.18687640008214,-64.22294983827587,-64.25840339637827,-64.29324047445056,-64.32746498347619,-64.36108127573351,-64.3940940849643,-64.42650847462609,-64.45832979290729,-64.4895636334582,-64.52021580099195,-64.550292281061,-64.57979921343284,-64.60874286858115,-64.63712962688422,-64.66496596018267,-64.69225841539942,-64.71901359996647,-64.74523816883807,-64.7709388128998,-64.79612224860809,-64.82079520871635,-64.84496443396252,-64.86863666560846,-64.89181863873573,-64.9145170762138,-64.93673868326765,-64.95849014257999,-64.97977810987173,-65.00060920991092,-65.02098997523899,-65.04092504981216,-65.06041946332158,-65.07947853044213,-65.09810778479854,-65.11631292938812,-65.13409979722532,-65.15147431919505,-65.1684424973531,-65.18501038251742,-65.20118405533044,-65.21696961018151,-65.23237314151648,-65.24740073215966,-65.26205844334443,-65.27635230620311,-65.29028831450891,-65.30387241849586,-65.31711051960947,-65.33000846606318,-65.34257204909287,-65.35480699981791,-65.36671898662883,-65.37831361303316,-65.3895964158999,-65.4005728640507,-65.41124835715294,-65.42162822487542,-65.4317177262725,-65.44152204936691,-65.45104631090517,-65.46029555626286,-65.46927475947996,-65.47798882340875,-65.48644257995932,-65.49464079042912,-65.50258814590528,-65.51028926772925,-65.51774870801512,-65.52497095021374,-65.53196040971592,-65.5387214344887,-65.5452583057397,-65.55157523860468,-65.55767638285486,-65.56356582361994,-65.56924758212425,-65.57472561643324,-65.58000382220798,-65.58508603346564,-65.58997602334422,-65.59467750487,-65.5991941317264,-65.60352949902293,-65.60768714406329,-65.6116705471119,-65.6154831321577,-65.61912826767488,-65.62260926737973,-65.62592939098322,-65.62909184493878,-65.63209978318496,-65.63495630788246,-65.63766447014548,-65.64022727076691,-65.64264766093727,-65.64492854295712,-65.6470727709428,-65.64908315152545,-65.650962444543,-65.65271336372518,-65.6543385773714,-65.65584070902142,-65.65722233811877,-65.65848600066687,-65.65963418987779,-65.66066935681366,-65.66159391102062,-65.66241022115547,-65.66312061560474,-65.6637273830965,-65.66423277330465,-65.66463899744582,-65.66494822886892,-65.66516260363726,-65.66528422110333,-65.66531514447632,-65.66525740138219,-65.66511298441667,-65.66488385169085,-65.6645719273697,-65.6641791022034,-65.66370723405153,-65.66315814840021,-65.6625336388723,-65.66183546773048,-65.66106536637356,-65.66022503582585,-65.65931614721967,-65.65834034227126,-65.65729923374982,-65.65619440594,-65.65502741509775,-65.65379978989972,-65.65251303188613,-65.65116861589725,-65.64976799050355,-65.64831257842958,-65.64680377697161,-65.64524295840913,-65.64363147041026,-65.64197063643117,-65.64026175610952,-65.638506105652,-65.63670493821604,-65.63485948428584,-65.63297095204258,-65.63104052772918,-65.6290693760093,-65.62705864032104,-65.62500944322508,-65.62292288674756,-65.6208000527176,-65.61864200309967,-65.61644978032072,-65.61422440759232,-65.61196688922767,-65.60967821095376,-65.60735934021854,-65.60501122649336,-65.60263480157057,-65.60023097985649,-65.59780065865968,-65.5953447184747,-65.59286402326137,-65.59035942071952,-65.58783174255944,-65.58528180476797,-65.58271040787035,-65.5801183371879,-65.57750636309149,-65.57487524125105,-65.57222571288098,-65.56955850498163,-65.56687433057692,-65.56417388894806,-65.56145786586355,-65.55872693380542,-65.55598175219183,-65.55322296759601,-65.55045121396172,-65.54766711281515,-65.54487127347336,-65.54206429324941,-65.53924675765403,-65.53641924059409,-65.53358230456779,-65.53073650085669,-65.52788236971458,-65.52502044055322,-65.52215123212513,-65.5192752527033,-65.51639300025802,-65.51350496263079,-65.51061161770534,-65.5077134335759,-65.5048108687127,-65.50190437212468,-65.49899438351964,-65.49608133346166,-65.49316564352601,-65.49024772645146,-65.4873279862901,-65.4844068185547,-65.4814846103637,-65.47856174058363,-65.47563857996948,-65.47271549130251,-65.46979282952586,-65.466870941878,-65.46395016802393,-65.4610308401842,-65.45811328326185,-65.45519781496728,-65.45228474594093,-65.44937437987416,-65.44646701362794,-65.44356293734972,-65.44066243458833,-65.43776578240696,-65.43487325149432,-65.43198510627404,-65.42910160501211,-65.42622299992269,-65.42334953727213,-65.42048145748133,-65.41761899522633,-65.41476237953736,-65.41191183389616,-65.40906757633174,-65.40622981951466,-65.40339877084965,-65.40057463256672,-65.39775760181085,-65.3949478707302,-65.3921456265628,-65.38935105172185,-65.38656432387974,-65.38378561605056,-65.3810150966713,-65.37825292968175,-65.37549927460306,-65.37275428661506,-65.37001811663234,-65.36729091137894,-65.36457281346206,-65.36186396144434,-65.35916448991516,-65.35647452956061,-65.35379420723247,-65.35112364601594,-65.34846296529636,-65.34581228082486,-65.34317170478283,-65.34054134584547,-65.33792130924424,-65.33531169682833,-65.3327126071251,-65.33012413539961,-65.32754637371312,-65.32497941098062,-65.32242333302756,-65.31987822264554,-65.31734415964715,-65.31482122091991,-65.31230948047934,-65.30980900952125,-65.30731987647302,-65.30484214704423,-65.30237588427639,-65.29992114859188,-65.29747799784208,-65.29504648735478,-65.29262666998079,-65.29021859613981,-65.28782231386556,-65.28543786885024,-65.28306530448815,-65.28070466191876,-65.27835598006897,-65.27601929569477,-65.27369464342222,-65.27138205578771,-65.26908156327768,-65.26679319436762,-65.2645169755605,-65.26225293142451,-65.26000108463036,-65.25776145598775,-65.25553406448145,-65.25331892730675,-65.25111605990428,-65.24892547599434,-65.24674718761072,-65.24458120513385,-65.24242753732356,-65.24028619135122,-65.2381571728314,-65.23604048585308,-65.23393613301026,-65.23184411543217,-65.22976443281293,-65.22769708344079,-65.22564206422689,-65.22359937073355,-65.2215689972021,-65.2195509365803,-65.21754518054932,-65.21555171955023,-65.21357054281016,-65.21160163836794,-65.20964499309945,-65.20770059274247,-65.20576842192115,-65.20384846417014,-65.20194070195826,-65.2000451167119,-65.1981616888379,-65.19629039774617,-65.19443122187195,-65.19258413869768,-65.19074912477447,-65.18892615574335,-65.18711520635608,-65.18531625049567,-65.18352926119654,-65.18175421066441,-65.1799910702958,-65.17823981069728,-65.17650040170437,-65.17477281240019,-65.1730570111337,-65.17135296553775,-65.16966064254686,-65.16798000841457,-65.16631102873068,-65.16465366843802,-65.1630078918492,-65.16137366266285,-65.15975094397973,-65.15813969831852,-65.15653988763141,-65.15495147331936,-65.1533744162472,-65.15180867675842,-65.15025421468972,-65.14871098938535,-65.14717895971121,-65.14565808406873,-65.14414832040845,-65.14264962624347,-65.14116195866265,-65.13968527434358,-65.13821952956528,-65.13676468022081,-65.13532068182961,-65.13388748954961,-65.13246505818913,-65.13105334221868,-65.12965229578246,-65.12826187270971,-65.12688202652586,-65.1255127104635,-65.12415387747315,-65.12280548023386,-65.12146747116368,-65.12013980242982,-65.11882242595877,-65.1175152934462,-65.11621835636666,-65.11493156598317,-65.11365487335658,-65.11238822935486,-65.11113158466215,-65.10988488978764,-65.10864809507439,-65.10742115070792,-65.1062040067247,-65.10499661302038,-65.10379891935804,-65.10261087537619,-65.10143243059663,-65.10026353443224,-65.09910413619451,-65.09795418510107,-65.09681363028301,-65.09568242079204,-65.09456050560765,-65.09344783364392,-65.0923443537565,-65.09125001474916,-65.09016476538045,-65.0890885543701,-65.08802133040535,-65.08696304214725,-65.0859136382366,-65.0848730673001,-65.08384127795605,-65.0828182188203,-65.08180383851169,-65.08079808565778,-65.07980090890017,-65.07881225689988,-65.07783207834254,-65.07686032194357,-65.07589693645315,-65.07494187066119,-65.07399507340213,-65.0730564935597,-65.07212608007154,-65.07120378193373,-65.0702895482053,-65.06938332801253,-65.06848507055328,-65.06759472510112,-65.06671224100945,-65.06583756771558,-65.06497065474454,-65.06411145171302,-65.0632599083331,-65.0624159744159,-65.06157959987529,-65.06075073473129,-65.05992932911359,-65.05911533326491,-65.05830869754432,-65.0575093724304,-65.05671730852447,-65.05593245655362,-65.05515476737371,-65.05438419197235,-65.05362068147174,-65.0528641871315,-65.05211466035136,-65.05137205267388,-65.05063631578702,-65.0499074015267,-65.04918526187927,-65.04846984898394,-65.04776111513512,-65.04705901278471,-65.04636349454438,-65.04567451318768,-65.04499202165222,-65.0443159730417,-65.04364632062794,-65.0429830178528,-65.04232601833014,-65.04167527584758,-65.04103074436837,-65.0403923780331,-65.0397601311614,-65.03913395825354,-65.0385138139921,-65.0378996532434,-65.03729143105913,-65.0366891026777,-65.03609262352565,-65.03550194921905,-65.03491703556477,-65.03433783856177,-65.03376431440229,-65.03319641947307,-65.03263411035645,-65.0320773438315,-65.03152607687504,-65.03098026666265,-65.03043987056971,-65.02990484617224,-65.02937515124789,-65.0288507437767,-65.028331581942,-65.02781762413116,-65.02730882893634,-65.02680515515523,-65.02630656179169,-65.0258130080564,-65.02532445336749,-65.02484085735111,-65.02436217984194,-65.02388838088378,-65.02341942072992,-65.02295525984371,-65.02249585889886,-65.02204117877994,-65.02159118058263,-65.02114582561414,-65.02070507539347,-65.02026889165167,-65.01983723633211,-65.0194100715907,-65.01898735979607,-65.01856906352972,-65.0181551455862,-65.01774556897318,-65.01734029691157,-65.01693929283557,-65.01654252039272,-65.0161499434439,-65.01576152606337,-65.01537723253867,-65.01499702737061,-65.01462087527324,-65.01424874117366,-65.01388059021198,-65.01351638774115,-65.01315609932682,-65.01279969074717,-65.01244712799269,-65.01209837726594,-65.01175340498142,-65.01141217776521,-65.01107466245475,-65.01074082609853,-65.01041063595582,-65.01008405949631,-65.00976106439978,-65.00944161855578,-65.0091256900632,-65.00881324722991,-65.00850425857237,-65.0081986928152,-65.00789651889075,-65.00759770593865,-65.00730222330535,-65.00701004054365,-65.00672112741219,-65.006435453875,-65.00615299010092,-65.00587370646312,-65.00559757353854,-65.00532456210735,-65.00505464315236,-65.00478778785849,-65.00452396761214,-65.00426315400063,-65.00400531881154,-65.00375043403214,-65.00349847184877,-65.00324940464614,-65.00300320500673,-65.00275984571013,-65.00251929973236,-65.00228154024516,-65.0020465406154,-65.00181427440427,-65.00158471536666,-65.00135783745044,-65.0011336147957,-65.00091202173407,-65.00069303278792,-65.00047662266974,-65.00026276628125,-65.00005143871276,-64.99984261524234,-64.99963625626677,-64.99943232045683,-64.99923076990501,-64.9990315694839,-64.99883468639707,-64.99864008983275,-64.99844775068497,-64.99825764132339,-64.99806973540024,-64.99788400768693,-64.99770043393472,-64.99751899075518,-64.99733965551744,-64.9971624062594,-64.99698722161106,-64.99681408072803,-64.99664296323394,-64.99647384917053,-64.99630671895424,-64.99614155333865,-64.9959783333818,-64.99581704041795,-64.99565765603303,-64.99550016204346,-64.99534454047772,-64.99519077356051,-64.99503884369905,-64.99488873347127,-64.99474042561563,-64.99459390302242,-64.99444914872619,-64.99430614589943,-64.994164877847,-64.99402532800151,-64.99388747991934,-64.9937513172772,-64.99361682386936,-64.9934839836052,-64.99335278050717,-64.99322319870909,-64.99309522245477,-64.99296883609678,-64.99284402409545,-64.9927207710181,-64.99259906153833,-64.99247888043546,-64.99236021259406,-64.99224304300364,-64.99212735675819,-64.99201313905604,-64.99190037519958,-64.99178905059505,-64.99167915075239,-64.9915706612851,-64.99146356791003,-64.9913578564473,-64.99125351282012,-64.99115052305467,-64.99104887327995,-64.9909485497276,-64.9908495387318,-64.99075182672898,-64.9906554002578,-64.9905602459588,-64.99046635057432,-64.99037370094818,-64.99028228402548,-64.99019208685239,-64.99010309657585,-64.99001530044332,-64.98992868580245,-64.98984324010088,-64.98975895088583,-64.98967580580383,-64.98959379260039,-64.98951289911963,-64.98943311330396,-64.98935442319369,-64.98927681692668,-64.98920028273795,-64.98912480895929,-64.98905038401884]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1329\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1330\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1325\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1326\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1327\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1337\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1331\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1332\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1333\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628385345,-64.99989891812339,-64.99981775406245,-64.99971590880706,-64.99959691256005,-64.99946400141862,-64.99931990441473,-64.99916684225425,-64.99900659845551,-64.99884060387761,-64.99867001305113,-64.99849576650733,-64.99831863934308,-64.99813927818651,-64.99795822902611,-64.99777595808803,-64.99759286752288,-64.99740930725532,-64.99722558401002,-64.99704196826116,-64.99685869965151,-64.9966759912785,-64.9964940331353,-64.99631299491708,-64.99613302834395,-64.99595426911279,-64.99577683855898,-64.99560084508889,-64.99542638542786,-64.9952535457177,-64.99508240248936,-64.99491302353073,-64.99474546866502,-64.99457979045214,-64.99441603482298,-64.99425424165455,-64.99409444529302,-64.99393667503004,-64.99378095553737,-64.99362730726388,-64.99347574679865,-64.99332628720325,-64.99317893831606,-64.99303370703136,-64.9928905975549,-64.99274961163876,-64.99261074879648,-64.99247400650084,-64.99233938036532,-64.99220686431082,-64.99207645071871,-64.99194813057166,-64.99182189358282,-64.99169772831473,-64.99157562228851,-64.99145556208427,-64.99133753343345,-64.99122152130369,-64.9911075099768,-64.99099548312059,-64.9908854238548,-64.99077731481177,-64.99067113819214,-64.9905668758162,-64.99046450917099,-64.99036401945361,-64.99026538761099,-64.9901685943766,-64.99007362030387,-64.98998044579729,-64.98988905114051,-64.9897994165226,-64.98971152206177,-64.98962534782736,-64.98954087385992,-64.98945808018966,-64.98937694685324,-64.98929745390932,-64.98921958145264,-64.989143309627,-64.98906861863699,-64.98899548875887,-64.98892390035034,-64.98885383385957,-64.98878526983322,-64.98871818892404,-64.98865257189745,-64.98858839963765,-64.9885256531532,-64.98846431358191,-64.98840436219535,-64.98834578040287,-64.98828854975515,-64.98823265194744,-64.98817806882242,-64.98812478237265,-64.98807277474282,-64.98802202823167,-64.98797252529366,-64.98792424854035,-64.9878771807417,-64.987831304827,-64.98778660388567,-64.98774306116796,-64.98770066008545,-64.98765938421131,-64.98761921728058,-64.9875801431902,-64.98754214599903,-64.98750520992768,-64.98746931935827,-64.98743445883417,-64.98740061305955,-64.9873677668989,-64.98733590537651,-64.98730501367591,-64.98727507713912,-64.98724608126601,-64.98721801171351,-64.98719085429482,-64.98716459497858,-64.98713921988795,-64.98711471529978,-64.98709106764358,-64.98706826350062,-64.98704628960292,-64.98702513283224,-64.98700478021905,-64.98698521894151,-64.98696643632434,-64.98694841983783,-64.98693115709669,-64.98691463585898,-64.98689884402502,-64.98688376963621,-64.98686940087397,-64.98685572605862,-64.9868427336482,-64.98683041223737,-64.98681875055624,-64.98680773746928,-64.98679736197414,-64.98678761320053,-64.98677848040906,-64.98676995299012,-64.98676202046272,-64.98675467247337,-64.98674789879493,-64.98674168932551,-64.9867360340873,-64.98673092322547,-64.98672634700701,-64.98672229581966,-64.98671876017077,-64.98671573068624,-64.9867131981093,-64.9867111532995,-64.98670958723163,-64.98670849099454,-64.98670785579017,-64.98670767293235,-64.98670793384585,-64.98670863006521,-64.98670975323373,-64.98671129510241,-64.98671324752888,-64.98671560247641,-64.9867183520128,-64.98672148830941,-64.9867250036401,-64.98672889038025,-64.98673314100571,-64.98673774809181,-64.98674270431239,-64.98674800243877,-64.98675363533877,-64.98675959597578,-64.98676587740773,-64.98677247278619,-64.98677937535531,-64.986786578451,-64.98679407549992,-64.9868018600185,-64.98680992561214,-64.98681826597411,-64.98682687488481,-64.98683574621076,-64.9868448739037,-64.98685425199976,-64.98686387461849,-64.98687373596204,-64.98688383031424,-64.98689415203978,-64.98690469558329,-64.98691545546858,-64.98692642629764,-64.98693760274998,-64.98694897958164,-64.98696055162445,-64.90471101249985,-64.70229120190095,-64.39413262030337,-64.0125705205577,-63.587575949537325,-63.14127888236,-62.68855530523519,-62.238949259925484,-61.79838706996358,-61.37040920354942,-60.956995790839535,-60.55910884178887,-60.17704833662479,-59.81068772322789,-59.459630908049206,-59.12331753412984,-58.80109374940062,-58.492259679858996,-58.19610087017335,-57.91190881696229,-57.638994150066495,-57.37669480107454,-57.12438072338226,-56.881456246235686,-56.64736082488862,-56.421568649383445,-56.20358732580469,-55.99295621125849,-55.78924468525513,-55.592050419614296,-55.40099765779621,-55.215735517943806,-55.035936204037284,-54.86129302411079,-54.69151859871998,-54.52634336984382,-54.36551433471611,-54.20879391867592,-54.05595893739346,-53.906799391053646,-53.84337838152634,-53.90341749754807,-54.07230743943245,-54.317544301807764,-54.60899707882384,-54.924384221994174,-55.248686331860114,-55.5722235932371,-55.88894123124358,-56.19517767726366,-56.488839289080246,-56.7688584227326,-57.034837587517025,-57.286814103805746,-57.52510316048784,-57.75019247737158,-57.96267137624768,-58.16318305700688,-58.35239266009754,-58.530966130329375,-58.69955649216469,-58.85879521061973,-59.00928703205398,-59.15160719216771,-59.286300218943964,-59.41387979469169,-59.5348293061599,-59.649602826819724,-59.758626355877134,-59.86229919478188,-59.960995381179856,-60.05506512748813,-60.14483623011484,-60.23061542830484,-60.312689700431875,-60.391327491521714,-60.46677986975266,-60.53928161225748,-60.60905222217405,-60.676296879865255,-60.74120733176278,-60.80396272053064,-60.864730360295695,-60.92366646062246,-60.98091680276682,-61.03661730100071,-61.09089432700373,-61.14386507829521,-61.19563807367483,-61.24631371755419,-61.29598486856607,-61.34473737746071,-61.39265058201385,-61.43979775806092,-61.48624653020535,-61.53205924690406,-61.577293324475626,-61.622001563997216,-61.666232444415655,-61.71003039462418,-61.75343604678202,-61.79648647277492,-61.83921540541532,-61.88165344574584,-61.92382802977026,-61.96576337049324,-62.00748055262818,-62.04899775736206,-62.09033053956179,-62.131492103735624,-62.17249355507009,-62.21334411949009,-62.25405133438016,-62.29462121409675,-62.335058394661445,-62.375366261492914,-62.415547063319956,-62.45560201474938,-62.4955313894079,-62.535334605140996,-62.575010261508524,-62.614555989973354,-62.65396837097323,-62.693242992599714,-62.732374594234635,-62.77135723319735,-62.81018444087699,-62.84884935639412,-62.8873448365274,-62.925663544707376,-62.96379802285678,-63.001740749626244,-63.039484187978005,-63.0770208244446,-63.114343201848456,-63.15144394683654,-63.18831579325243,-63.224951602118814,-63.26134429108031,-63.29748671388968,-63.333371614386905,-63.36899166385145,-63.40433953908841,-63.43940800649989,-63.47418999551778,-63.508678656534144,-63.542867403852334,-63.57674994602361,-63.61032030620619,-63.64357283488105,-63.67650221681276,-63.70910347371743,-63.7413719637455,-63.77330337860888,-63.804893738970584,-63.836139388557534,-63.86703698733996,-63.89758350403486,-63.927776208127426,-63.957612661557285,-63.98709062884248,-64.01620800101455,-64.04496277653661,-64.07335308181311,-64.1013772055608,-64.12903363175134,-64.15632106517559,-64.18323844861733,-64.20978497260025,-64.23596007920688,-64.26176346141953,-64.28719505919724,-64.3122550532413,-64.33694385717217,-64.36126210865527,-64.38521065987099,-64.40879056761761,-64.43200308325598,-64.45484964264723,-64.47733185619146,-64.49945149904411,-64.52121050156417,-64.54261094003061,-64.56365502765219,-64.5843451058855,-64.60468363607022,-64.62467319138486,-64.64431644912321,-64.66361618328844,-64.6825752575,-64.7011966182071,-64.7194832882012,-64.7374383604195,-64.75506499102664,-64.7723663605713,-64.78934564410179,-64.80600600408103,-64.82235059778434,-64.83838258935991,-64.85410516111656,-64.8695215220479,-64.88463491333135,-64.8994486112047,-64.91396592778693,-64.92819021037765,-64.9421248396765,-64.9557732272655,-64.9691388126123,-64.98222505978404,-64.9950354540097,-65.00757349818994,-65.01984270942462,-65.03184661560705,-65.043588752119,-65.05507265864884,-65.06630187614752,-65.07727994393102,-65.08801039693347,-65.09849676311251,-65.10874256100558,-65.11875129743514,-65.12852646535856,-65.13807154185895,-65.14738998627149,-65.15648523844021,-65.1653607170999,-65.17401981837733,-65.18246591440652,-65.19070235205245,-65.1987324517379,-65.20655950636785,-65.214186780347,-65.22161750868464,-65.22885489618271,-65.23590211670214,-65.24276231250327,-65.24943859365594,-65.25593403751527,-65.26225168825945,-65.26839455648562,-65.27436561886047,-65.28016781782233,-65.28580406133139,-65.29127722266524,-65.2965901402568,-65.30174561757194,-65.30674642302438,-65.3115952899252,-65.31629491646495,-65.32084796572609,-65.32525706572355,-65.32952480947192,-65.33365375507694,-65.33764642584997,-65.34150531044357,-65.34523286300681,-65.34883150335887,-65.35230361717929,-65.35565155621416,-65.35887763849632,-65.3619841485792,-65.36497333778243,-65.36784742444898,-65.37060859421226,-65.37325900027268,-65.37580076368266,-65.37823597363926,-65.38056668778391,-65.38279493250818,-65.38492270326527,-65.3869519648865,-65.38888465190203,-65.39072266886555,-65.3924678906822,-65.39412216293945,-65.39568730224025,-65.3971650965382,-65.39855730547431,-65.39986566071491,-65.40109186629047,-65.40223759893487,-65.40330450842495,-65.40429421791995,-65.40520832430063,-65.4060483985078,-65.40681598588013,-65.40751260649068,-65.40813975548251,-65.40869890340258,-65.40919149653429,-65.40961895722813,-65.40998268423043,-65.41028405301007,-65.41052441608309,-65.41070510333486,-65.41082742234002,-65.41089265867977,-65.41090207625665,-65.41085691760657,-65.41075840420824,-65.41060773678952,-65.41040609563115,-65.41015464086736,-65.40985451278355,-65.40950683211092,-65.409112700318,-65.40867319989917,-65.40818939465983,-65.40766232999857,-65.40709303318619,-65.40648251364121,-65.40583176320258,-65.40514175639878,-65.40441345071388,-65.40364778685029,-65.40284568898826,-65.40200806504218,-65.40113580691352,-65.40022979074058,-65.39929087714513,-65.3983199114756,-65.39731772404718,-65.39628513037881,-65.39522293142674,-65.39413191381516,-65.39301285006356,-65.39186649881093,-65.39069360503699,-65.38949490028016,-65.38827110285258,-65.38702291805207,-65.38575103837097,-65.38445614370212,-65.38313890154186,-65.38179996718993,-65.38043998394672,-65.37905958330737,-65.3776593851532,-65.37623999794022,-65.37480201888488,-65.37334603414702,-65.37187261901012,-65.37038233805886,-65.36887574535388,-65.36735338460402,-65.36581578933594,-65.3642634830611,-65.36269697944013,-65.3611167824449,-65.35952338651781,-65.35791727672884,-65.3562989289301,-65.35466880990792,-65.3530273775327,-65.3513750809063,-65.34971236050718,-65.34803964833337,-65.34635736804292,-65.34466593509248,-65.34296575687345,-65.34125723284606,-65.33954075467136,-65.33781670634107,-65.33608546430541,-65.33434739759885,-65.33260286796389,-65.33085222997283,-65.32909583114773,-65.3273340120782,-65.32556710653753,-65.32379544159691,-65.32201933773769,-65.320239108962,-65.31845506290149,-65.31666750092437,-65.31487671824065,-65.31308300400583,-65.31128664142274,-65.30948790784181,-65.30768707485981,-65.3058844084168,-65.30408016889169,-65.3022746111961,-65.30046798486687,-65.2986605341569,-65.2968524981246,-65.29504411072189,-65.29323560088073,-65.29142719259829,-65.2896191050207,-65.28781155252545,-65.28600474480245,-65.28419888693375,-65.28239417947198,-65.28059081851757,-65.27878899579456,-65.27698889872534,-65.27519071050405,-65.27339461016888,-65.27160077267311,-65.26980936895504,-65.26802056600675,-65.26623452694177,-65.26445141106163,-65.26267137392132,-65.26089456739368,-65.25912113973278,-65.2573512356362,-65.25558499630634,-65.25382255951072,-65.25206405964134,-65.25030962777294,-65.24855939172048,-65.24681347609557,-65.24507200236202,-65.24333508889049,-65.24160285101226,-65.23987540107201,-65.23815284847998,-65.23643529976303,-65.23472285861502,-65.2330156259463,-65.23131369993247,-65.22961717606229,-65.22792614718479,-65.22624070355563,-65.22456093288285,-65.22288692037158,-65.22121874876834,-65.2195564984044,-65.21790024723852,-65.21625007089905,-65.21460604272521,-65.21296823380784,-65.21133671302944,-65.2097115471035,-65.20809280061326,-65.20648053604988,-65.20487481384991,-65.20327569243219,-65.20168322823413,-65.2000974757475,-65.19851848755344,-65.1969463143572,-65.19538100502201,-65.19382260660262,-65.19227116437821,-65.19072672188479,-65.18918932094707,-65.18765900170979,-65.18613580266869,-65.18461976070073,-65.18311091109402,-65.18160928757726,-65.18011492234857,-65.178627846104,-65.17714808806558,-65.17567567600871,-65.17421063628942,-65.17275299387097,-65.17130277235015,-65.16985999398298,-65.16842467971028,-65.16699684918257,-65.16557652078465,-65.16416371165992,-65.1627584377341,-65.16136071373867,-65.15997055323403,-65.15858796863206,-65.15721297121856,-65.15584557117516,-65.15448577760097,-65.15313359853384,-65.15178904097132,-65.15045211089124,-65.14912281327199,-65.14780115211245,-65.14648713045167,-65.14518075038814,-65.14388201309875,-65.14259091885765,-65.14130746705446,-65.14003165621256,-65.13876348400673,-65.13750294728086,-65.1362500420651,-65.13500476359283,-65.13376710631745,-65.13253706392874,-65.13131462936907,-65.13009979484934,-65.1288925518646,-65.12769289120946,-65.12650080299336,-65.12531627665533,-65.1241393009788,-65.122969864106,-65.12180795355218,-65.1206535562196,-65.1195066584113,-65.11836724584467,-65.11723530366469,-65.11611081645715,-65.11499376826148,-65.11388414258349,-65.11278192240778,-65.11168709021013,-65.1105996279695,-65.10951951718002,-65.10844673886261,-65.10738127357651,-65.10632310143065,-65.10527220209474,-65.10422855481028,-65.1031921384013,-65.10216293128501,-65.10114091148225,-65.10012605662769,-65.09911834397998,-65.09811775043174,-65.0971242525192,-65.09613782643193,-65.09515844802226,-65.09418609281458,-65.09322073601452,-65.09226235251788,-65.09131091691954,-65.09036640352218,-65.08942878634481,-65.08849803913117,-65.08757413535807,-65.08665704824351,-65.08574675075467,-65.08484321561579,-65.08394641531599,-65.08305632211676,-65.08217290805955,-65.0812961449731,-65.08042600448066,-65.07956245800716,-65.07870547678615,-65.07785503186673,-65.07701109412028,-65.07617363424711,-65.07534262278304,-65.07451803010576,-65.07369982644124,-65.0728879818698,-65.07208246633233,-65.07128324963627,-65.07049030146143,-65.06970359136585,-65.06892308879148,-65.06814876306976,-65.06738058342708,-65.06661851899028,-65.06586253879183,-65.06511261177513,-65.0643687067996,-65.06363079264567,-65.06289883801979,-65.06217281155922,-65.06145268183687,-65.06073841736585,-65.06002998660419,-65.0593273579593,-65.0586304997924,-65.05793938042287,-65.05725396813251,-65.05657423116978,-65.05590013775381,-65.0552316560786,-65.05456875431682,-65.05391140062379,-65.05325956314128,-65.05261321000125,-65.05197230932954,-65.05133682924944,-65.05070673788525,-65.05008200336576,-65.04946259382764,-65.04884847741876,-65.0482396223015,-65.04763599665588,-65.04703756868284,-65.04644430660717,-65.04585617868065,-65.04527315318494,-65.04469519843451,-65.04412228277947,-65.04355437460839,-65.04299144235101,-65.04243345448086,-65.04188037951798,-65.0413321860314,-65.04078884264167,-65.04025031802338,-65.03971658090744,-65.03918760008355,-65.03866334440245,-65.03814378277818,-65.03762888419028,-65.03711861768598,-65.03661295238221,-65.03611185746784,-65.03561530220549,-65.03512325593363,-65.03463568806848,-65.03415256810587,-65.0336738656231,-65.03319955028068,-65.03272959182418,-65.03226396008584,-65.03180262498627,-65.03134555653614,-65.03089272483764,-65.03044410008617,-65.02999965257173,-65.0295593526805,-65.02912317089614,-65.02869107780134,-65.02826304407907,-65.02783904051394,-65.02741903799347,-65.0270030075094,-65.02659092015885,-65.02618274714554,-65.0257784597809,-65.02537802948525,-65.02498142778884,-65.02458862633294,-65.02419959687083,-65.02381431126881,-65.02343274150718,-65.02305485968114,-65.02268063800172,-65.02231004879661,-65.0219430645111,-65.02157965770878,-65.02121980107243,-65.02086346740472,-65.02051062962896,-65.02016126078982,-65.019815334054,-65.01947282271094,-65.01913370017336,-65.01879793997793,-65.01846551578586,-65.0181364013834,-65.01781057068247,-65.01748799772108,-65.01716865666386,-65.01685252180252,-65.01653956755635,-65.01622976847254,-65.01592309922664,-65.01561953462297,-65.01531904959491,-65.01502161920529,-65.01472721864668,-65.01443582324175,-65.01414740844348,-65.0138619498354,-65.01357942313194,-65.01329980417859,-65.01302306895207,-65.0127491935606,-65.01247815424398,-65.01220992737385,-65.01194448945373,-65.01168181711917,-65.0114218871379,-65.01116467640986,-65.01091016196727,-65.01065832097474,-65.01040913072927,-65.01016256866028,-65.00991861232963,-65.0096772394316,-65.0094384277929,-65.00920215537265,-65.00896840026226,-65.00873714068548,-65.00850835499821,-65.00828202168854,-65.00805811937656,-65.00783662681427,-65.00761752288551,-65.00740078660577,-65.00718639712207,-65.00697433371276,-65.00676457578747,-65.00655710288679,-65.00635189468215,-65.00614893097564,-65.00594819169974,-65.00574965691717,-65.00555330682059,-65.00535912173241,-65.0051670821045,-65.00497716851801,-65.00478936168297,-65.00460364243811,-65.00441999175061,-65.00423839071566,-65.0040588205563,-65.00388126262301,-65.0037056983935,-65.00353210947225,-65.00336047759026,-65.00319078460471,-65.00302301249857,-65.00285714338025,-65.00269315948326,-65.00253104316585,-65.00237077691055,-65.0022123433239,-65.00205572487364,-65.00190090359885,-65.00174786101216,-65.00159657817186,-65.00144703582976,-65.00129921458803,-65.00115309503512,-65.00100865785242,-65.00086588389348,-65.00072475423997,-65.00058525023981,-65.00044735353163,-65.00031104605911,-65.00017631007795,-65.00004312815747,-64.99991148317848,-64.99978135832835,-64.99965273709427,-64.99952560325531,-64.99939994087354,-64.9992757342849,-64.99915296808952,-64.9990316271424,-64.99891169654379,-64.99879316162996,-64.99867600796416,-64.99856022132786,-64.99844578771233,-64.99833269331047,-64.99822092450917,-64.99811046788184,-64.99800131018146,-64.9978934383338,-64.99778683943117,-64.99768150072636,-64.99757740962706,-64.99747455369038,-64.9973729206179,-64.99727249825092,-64.99717327456584,-64.99707523767006,-64.99697837579797,-64.9968826773072,-64.99678813067513,-64.99669472449553,-64.99660244747555,-64.99651128843271,-64.99642123629226,-64.9963322800845,-64.99624440894247,-64.99615761209962,-64.99607187888766,-64.99598719873465,-64.995903561163,-64.99582095578782,-64.99573937231513,-64.9956588005404,-64.99557923034702,-64.9955006517049,-64.9954230546692,-64.99534642937904,-64.9952707660564,-64.99519605500493,-64.99512228660895,-64.99504945133246,-64.9949775397182,-64.99490654238676,-64.99483645003568,-64.99476725343868,-64.99469894344493,-64.99463151097824,-64.9945649470364,-64.99449924269047,-64.99443438908416,-64.99437037743327,-64.99430719902493,-64.9942448452172,-64.99418330743839,-64.99412257718659,-64.99406264602914,-64.99400350560208,-64.99394514760975]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1338\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1339\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1334\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1335\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1336\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1346\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1340\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1341\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1342\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.94589763516821,-64.88611924001466,-64.80101570809497,-64.69325631981482,-64.56525833647144,-64.41921171428427,-64.25710099294712,-64.08072471378,-63.8917126956506,-63.691528629370595,-63.481487177849424,-63.26277700289422,-63.03647168529634,-62.803539638907345,-62.5648261590183,-62.32108478860732,-62.0729899379498,-61.82114341091309,-61.56605150776813,-61.30814845218831,-61.04781392028776,-60.78537741285835,-60.52108071812955,-60.2551149565734,-59.987633598170504,-59.71875256444835,-59.448495597344284,-59.176858169879466,-58.90380935100282,-58.62926705609883,-58.353075805785586,-58.075059311163834,-57.79502135110548,-57.51267792673238,-57.22770048200758,-56.939742182803094,-56.64841418446873,-56.35321544781151,-56.053624581650396,-55.74909833888263,-55.47038650285009,-55.213521667570575,-54.97494350476484,-54.75144586820083,-54.54004253639443,-54.33805281080059,-54.14306871836015,-53.95292431117575,-53.76563549508652,-53.57930794284159,-53.3922095202821,-53.20274453981735,-53.0094296456714,-52.810871263609336,-52.60559110566462,-52.39214916429342,-52.16913053607219,-51.93512524179435,-51.688650239499005,-51.42802182391997,-51.151495949022745,-50.857245989573414,-50.54319837200288,-50.20697937874873,-49.846045612804694,-49.457490519999,-49.037921249761304,-48.58364709934446,-48.09016823369881,-47.55250573978088,-46.96467168471127,-46.319902897905436,-45.610011996775214,-44.82547336143348,-43.95507619925709,-42.98549171677272,-41.90079374776157,-40.681928907436266,-39.3061332602382,-37.7462965642837,-35.97019218452696,-33.93976769694536,-31.610705282951336,-28.932665455908236,-25.850482851742626,-22.308029253219246,-18.255454964262054,-13.661851636191537,-8.534842584533767,-2.944824847477939,2.953816877600368,8.918333921402247,14.646208095573304,19.83586436829813,24.25703257571911,27.79638178086778,30.460109871702937,32.3408623270324,33.57264691482312,34.29358833189177,34.624412293424676,34.6607437090845,34.47386765883097,34.1151091230741,33.620886959141416,33.01709073122178,32.3224135329115,31.550710812334447,30.71259440542925,29.816486738414895,28.869309735810656,27.87693225267948,26.84446072448722,25.776428906196138,24.676922848069804,23.549664285622683,22.398067270824562,21.225277546188952,20.034200772673287,18.827523556698978,17.607729364217832,16.377112477964886,15.137789276052741,13.89170788277535,12.64065231025653,11.386250257511639,10.129991752423184,8.873234801582207,7.617198165528691,6.362972056909632,5.111545349611598,3.8638076599726667,2.6205269807919946,1.3823695254062258,0.1499335785492264,-1.0762526694630727,-2.295753373034628,-3.50823658363527,-4.713406185311732,-5.911010402336234,-7.100845212626789,-8.28280287219687,-9.456845064647155,-10.622949225517052,-11.781121341418789,-12.931403329270804,-14.073877618717603,-15.208722737340157,-16.33618823713922,-17.456538013344137,-18.570068870766526,-19.677123525516404,-20.77810068176094,-21.873463703921573,-22.96374873961046,-24.049572746942566,-25.13169179343273,-26.210972271635377,-27.288357170920474,-28.36488670074623,-29.44171377067356,-30.52011598872707,-31.601504987287512,-32.68743333604179,-33.77959892024502,-34.879846365926994,-35.990164829132425,-37.112681199107286,-38.249723190610666,-39.40368976953599,-40.577022436544915,-41.77217045239673,-42.9915373799179,-44.23740699448396,-45.511802994297675,-46.816354328641395,-48.15214864115474,-49.519431306699744,-50.91732706927062,-52.343764776074856,-53.79478317294343,-55.26464240037791,-56.74532551987605,-58.22655927425223,-59.69584394167373,-61.13873659451294,-62.539595845865456,-63.88221409421781,-65.15129209718344,-66.33329081417469,-67.41763003378422,-68.39752770325683,-69.27029140718194,-70.03718267344598,-70.70288442311546,-71.27462673039412,-71.76138519199809,-72.17296410434619,-72.51927417143735,-72.80978653327304,-73.05320214622822,-73.25725141507216,-73.42863061350727,-73.57303659613278,-73.69524027550337,-73.79918922777952,-73.88812002144047,-73.96466829765752,-74.03096994842232,-74.08875012863268,-74.13939985062336,-74.18404023202464,-74.223575263878,-74.25873493393894,-74.29011014759605,-74.31818081453015,-74.34333832508248,-74.36590347135314,-74.38614069970542,-74.40426942663385,-74.42047301441788,-74.43490588790478,-74.4476991781358,-74.4589652002744,-74.46880100996769,-74.47729123144823,-74.48451031014042,-74.49052431034045,-74.49539235305717,-74.49916776897939,-74.50189902567226,-74.50363047561332,-74.50440296184618,-74.50425431029251,-74.50321973167455,-74.5013321512067,-74.49862248043951,-74.49511984266366,-74.49085176093406,-74.48584431592099,-74.4801222793297,-74.4737092274713,-74.46662763864832,-74.45889897729059,-74.45054376719737,-74.44158165578176,-74.43203147084591,-74.42191127112338,-74.41123839159023,-74.40002948435969,-74.38830055582443,-74.37606700058991,-74.36334363264517,-74.35014471413845,-74.33648398206239,-74.32237467310124,-74.30782954685158,-74.29286090759356,-74.27748062476209,-74.26170015224464,-74.24553054661384,-74.22898248438732,-74.21206627839511,-74.19479189332374,-74.17716896049798,-74.15920679195351,-74.14091439384774,-74.12230047925098,-74.1033734803555,-74.08414156013643,-74.0646126234954,-74.04479432791489,-74.02469409364866,-74.0043191134724,-73.98367636201583,-73.96277257169484,-73.94161427560235,-73.92020782519081,-73.89855939571186,-73.8766749918151,-73.85456045322526,-73.83222146043393,-73.80966354035672,-73.78689207191783,-73.76391229153305,-73.74072929846957,-73.71734806006685,-73.69377341680698,-73.67001008722738,-73.64606267267096,-73.62193566187145,-73.59763343537328,-73.57316026978717,-73.5485203418829,-73.52371773252261,-73.49875643043752,-73.47364033585234,-73.44837326396124,-73.42295894826009,-73.39740104373924,-73.37170312994165,-73.34586871389091,-73.3199012328938,-73.29380405722195,-73.26758049267703,-73.24123378304397,-73.21476711243643,-73.18818360753866,-73.16148633974782,-73.1346783272208,-73.10776253682906,-73.0807418860255,-73.05361924462663,-73.02639743651353,-72.99907924125502,-72.97166739184803,-72.9441644701665,-72.91657304708912,-72.88889567823513,-72.86113490064204,-72.83329323021252,-72.80537315978837,-72.77737715773421,-72.74930766693434,-72.72116710412321,-72.69295785948373,-72.66468229645953,-72.63634275173672,-72.60794153535853,-72.5794809309431,-72.55096319597973,-72.52239056218356,-72.49376523589258,-72.4650893984936,-72.4363652068665,-72.40759479383826,-72.37878026863997,-72.3499237173613,-72.32102720339834,-72.29209276789138,-72.26312243015036,-72.23411818806612,-72.20508201850593,-72.17601587769283,-72.14692170156792,-72.11780140613554,-72.08865688779127,-72.05949002363293,-72.03030267175478,-72.00109667152549,-71.97187384385016,-71.9426357867375,-71.91338411698655,-71.88412047230928,-71.85484650460832,-71.82556387438788,-71.79627424611351,-71.76697928436666,-71.73768065066459,-71.70838000083714,-71.67907898286924,-71.64977923513261,-71.62048238494232,-71.59119004738437,-71.56190382436884,-71.53262530387047,-71.50335605932494,-71.47409764915382,-71.44485161639595,-71.41561948842632,-71.38640277674676,-71.35720297683545,-71.32802156804401,-71.29886001353347,-71.26971976024123,-71.24060223887287,-71.21150886391364,-71.18244103365542,-71.15340013023553,-71.12438751968456,-71.09540455198113,-71.0664525611113,-71.03753286513151,-71.00864676623364,-70.97979555081135,-70.95098025376163,-70.92220183916436,-70.89346131439066,-70.86475972046033,-70.83609812389592,-70.8074776098471,-70.77889927629282,-70.75036422915878,-70.7218735782117,-70.69342843361301,-70.66502990303216,-70.63667908923462,-70.60837708807233,-70.5801249868153,-70.55192386277199,-70.52377478215396,-70.49567879914721,-70.46763695515774,-70.43965027820421,-70.41171978243439,-70.38384646774567,-70.35603131949294,-70.3282753082696,-70.30057938974966,-70.27294450458085,-70.24537157832,-70.21786152140359,-70.19041522914718,-70.16303358176869,-70.13571744443121,-70.10846766730161,-70.081285085622,-70.05417051979151,-70.02712477545629,-70.00014864360585,-69.9732429006746,-69.94640782955135,-69.91964378355893,-69.89295117630093,-69.86633047022531,-69.83978216687159,-69.8133067985604,-69.78690492131925,-69.76057710886766,-69.73432394751056,-69.70814603180989,-69.68204396092311,-69.65601833551304,-69.6300697551468,-69.60419881611347,-69.5784061095996,-69.55269222017101,-69.5270577245157,-69.50150319040976,-69.47602917587324,-69.45063622848765,-69.42532488485102,-69.40009567014935,-69.37494909782701,-69.34988566934051,-69.32490587398269,-69.30001018876622,-69.2751990783567,-69.25047299504735,-69.22583237876813,-69.20127765712382,-69.17680924545543,-69.15242754692116,-69.12813295259309,-69.10392584156652,-69.07980658107954,-69.0557755266404,-69.03183302216122,-69.00797940009612,-68.98421498158281,-68.96053965881991,-68.93695317343789,-68.91345535432576,-68.89004610341424,-68.86672538344763,-68.84349320747339,-68.82034962981491,-68.79729473832577,-68.77432864775072,-68.7514514940428,-68.72866342950601,-68.70596461865097,-68.68335523466564,-68.66083545641706,-68.63840546591062,-68.61606544614378,-68.59381557929945,-68.57165604523152,-68.54958702020171,-68.52760867583203,-68.50572117824224,-68.48392468734593,-68.46221935628205,-68.44060533096217,-68.4190827497165,-68.39765174302369,-68.37631243331201,-68.35506493482055,-68.33390935351146,-68.31284578702481,-68.29187432466928,-68.27099504744261,-68.25020802807684,-68.22951333110387,-68.20891101293762,-68.18840112196965,-68.16798369867553,-68.14765877572964,-68.12742637812654,-68.10728652330718,-68.08723922128858,-68.067284474796,-68.04742227939633,-68.02765262363226,-68.00797548915627,-67.98839085086404,-67.96889823251296,-67.94949691969772,-67.93018630570971,-67.9109658756899,-67.8918351929013,-67.87279388684377,-67.85384164297047,-67.83497819379696,-67.81620331122082,-67.7975167998937,-67.77891849150801,-67.76040823987827,-67.74198591671285,-67.72365140798496,-67.7054046108239,-67.68724543085747,-67.66917377994542,-67.65118957425186,-67.63329273261077,-67.61548317514524,-67.59776082210583,-67.58012559289791,-67.5625774052723,-67.5451161746559,-67.52774181360333,-67.51045423135174,-67.49325333346465,-67.47613902155133,-67.45911119305102,-67.44216974107205,-67.42531455427775,-67.40854551681164,-67.39186250825598,-67.37526540361809,-67.3587540733399,-67.34232838332677,-67.32598819499219,-67.30973336531532,-67.29356374690903,-67.2774791880962,-67.26147953299248,-67.24556462159413,-67.22973428986927,-67.21398836985193,-67.19832668973754,-67.1827490739794,-67.16725534338529,-67.15184531521389,-67.13651880327035,-67.12127561800082,-67.10611556658567,-67.09103845303108,-67.07604407825885,-67.06113224019442,-67.0463027338529,-67.03155535142294,-67.01688988234875,-67.00230611340987,-66.9878038287989,-66.97338214574584,-66.95904016087728,-66.94477708140346,-66.93059220985907,-66.91648493081276,-66.90245469929704,-66.88850103074172,-66.87462349222103,-66.86082169484855,-66.84709528717488,-66.83344394946086,-66.81986738871547,-66.80636533440094,-66.79293753472004,-66.77958375341116,-66.7663037669858,-66.75309736235168,-66.7399643347715,-66.72690448611363,-66.7139176233567,-66.70100355731483,-66.68816210155404,-66.6753930714748,-66.66269628353818,-66.65007155461637,-66.63751870145059,-66.62503754020157,-66.61262788608003,-66.6002895530455,-66.58802235356423,-66.57582609841735,-66.5637005965522,-66.55164565497019,-66.53966107864593,-66.52774667047258,-66.51590223122943,-66.50412755956815,-66.49242245201445,-66.48078670298271,-66.46922010480108,-66.45772244774528,-66.4462935200793,-66.43493310810153,-66.42364099619533,-66.41241696688262,-66.40126080087997,-66.3901722771563,-66.3791511729915,-66.3681972640356,-66.35731032436794,-66.34649012655608,-66.335736441714,-66.32504903955967,-66.31442768847137,-66.30387215554302,-66.29338220663817,-66.28295760644266,-66.27259811851583,-66.2623035053403,-66.2520735283703,-66.24190794807853,-66.23180652400151,-66.2217690147835,-66.21179517821902,-66.20188477129393,-66.19203755022515,-66.18225327049907,-66.17253168690867,-66.16287255358935,-66.15327562405366,-66.14374065122473,-66.13426738746873,-66.1248555846261,-66.11550499404194,-66.10621536659525,-66.09698645272731,-66.08781800246912,-66.07870976546803,-66.06966149101345,-66.06067292806183,-66.05174382526094,-66.0428739309733,-66.03406299329897,-66.02531076009777,-66.01661697901069,-66.0079813974809,-65.99940376277401,-65.99088377656626,-65.98242054237429,-65.9740132660809,-65.96566124243702,-65.95736384325767,-65.94912050710396,-65.94093073026829,-65.93279405890245,-65.92471008214751,-65.9166784261422,-65.90869874880092,-65.90077073526611,-65.89289409395134,-65.8850685531015,-65.8772938578056,-65.86956976740554,-65.86189605325112,-65.8542724967577,-65.84669888772812,-65.83917502290547,-65.83170070472704,-65.824275740254,-65.81689994025369,-65.80957311841529,-65.80229509068087,-65.79506567467733,-65.78788468923527,-65.78075195398368,-65.77366728901004,-65.76663051457696,-65.75964145088777,-65.75269991789408,-65.74580573513958,-65.738958721635,-65.7321586957595,-65.72540547518489,-65.71869887681915,-65.71203871676639,-65.70542481030066,-65.69885697185144,-65.69233501499896,-65.68585875247757,-65.67942799618595,-65.67304255720276,-65.66670224580682,-65.66040687150081,-65.65415624303789,-65.6479501684504,-65.6417884550802,-65.63567090961031,-65.62959733809706,-65.62356754600289,-65.61758133822927,-65.6116385191495,-65.60573889264128,-65.599882262119,-65.59406843056529,-65.58829720056218,-65.58256837432144,-65.57688175371419,-65.5712371402998,-65.56563433535388,-65.56007313989551,-65.55455335471362,-65.54907478039254,-65.54363721733671,-65.53824046579454,-65.5328843258816,-65.52756859760282,-65.52229308087419,-65.51705757554343,-65.51186188141021,-65.50670579824549,-65.50158912581033,-65.49651166387396,-65.49147321223133,-65.48647357071995,-65.48151253923635,-65.47658991775181,-65.4717055063277,-65.46685910513025,-65.462050514445,-65.45727953469057,-65.4525459664322,-65.44784961039481,-65.44319026747567,-65.4385677387567,-65.43398182551644,-65.42943232924165,-65.42491905163862,-65.42044179464418,-65.41600036043634,-65.4115945514448,-65.407224170361,-65.40288902014815,-65.39858890405077,-65.39432362560416,-65.3900929886436,-65.38589679731336,-65.38173485607545,-65.37760696971823,-65.37351294336477,-65.36945258248113,-65.36542569288434,-65.36143208075033,-65.35747155262159,-65.35354391541475,-65.34964897642799,-65.34578654334831,-65.34195642425865,-65.33815842764486,-65.33439236240253,-65.33065803784378,-65.32695526370381,-65.32328385014739,-65.31964360777525,-65.31603434763028,-65.31245588120372,-65.30890802044117,-65.3053905777485,-65.30190336599769,-65.29844619853256,-65.29501888917436,-65.29162125222733,-65.28825310248412,-65.28491425523112,-65.2816045262537,-65.27832373184143,-65.27507168879306,-65.27184821442158,-65.26865312655909,-65.26548624356161,-65.26234738431384,-65.25923636823379,-65.25615301527736,-65.25309714594287,-65.25006858127543,-65.2470671428713,-65.24409265288219,-65.24114493401937,-65.23822380955788,-65.23532910334052,-65.23246063978183,-65.22961824387203,-65.22680174118076,-65.22401095786095,-65.22124572065245,-65.21850585688561]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1347\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1348\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1343\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1344\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1345\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1356\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1350\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1351\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1352\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-64.13870944462029,-63.33361883580457,-62.5688770526863,-61.84166575507862,-61.149388149752944,-60.48965047212201,-59.86024510124126,-59.259135148104626,-58.68444037543632,-58.13442394388773,-57.60748036963838,-57.10212480417863,-56.61698320782794,-56.15078333965094,-55.70234569619157,-55.27057586029804,-54.8544576305396,-54.453046709447555,-54.06546405064416,-53.69089025303274,-53.32856077187097,-52.97776151412902,-52.637823558223324,-52.308119250468074,-51.98805889434288,-51.67708761905263,-51.37468079913118,-51.08034160804206,-50.79359875718541,-50.51400362333561,-50.24112687125317,-49.974556811298314,-49.713897870436185,-49.45876713815851,-49.20879237453604,-48.96361090151728,-48.722867851385146,-48.48621243281966,-48.25329711195862,-48.02377679258337,-48.64581479715894,-49.22713679063287,-49.77045144727153,-50.278228402545125,-50.752717484499534,-51.19596945270301,-51.6098546630162,-51.99607983064307,-52.356202121125705,-52.69163976767263,-53.00368426514773,-53.293511153371796,-53.562189513105174,-53.810690289521204,-54.03988901191287,-54.250572006074485,-54.443441886233906,-54.61912215776685,-54.7781592684276,-54.921020776652426,-55.04809776734699,-55.15970648136029,-55.256084997077416,-55.33738851546447,-55.40368875456732,-55.4549676542571,-55.49110777438411,-55.51188877729546,-55.51696897681987,-55.505877630812314,-55.477991971344444,-55.43252237185632,-55.36847911101729,-55.284643448842324,-55.17952998239676,-55.05133820516671,-54.89789246842265,-54.71656946935534,-54.504212348271594,-54.25703055743777,-53.97048228636574,-53.639142167196475,-53.256563022808926,-52.81515218399274,-52.30608975672691,-51.71936548790069,-51.044027827657104,-50.26879422662159,-49.38320831120915,-48.3794523919756,-47.25469085792915,-46.01341822762998,-44.66883651772243,-43.24236373333533,-41.76108762098581,-40.25400538229038,-38.748387012009175,-37.267310622575835,-35.82866236802627,-34.44529112540837,-33.12579126110299,-31.875471497058236,-30.697249685928437,-29.592370417395227,-28.560934948287382,-27.60227347522554,-26.715199019917836,-25.898178035860003,-25.149444788748447,-24.467078469465644,-23.849055827255903,-23.293287767982733,-22.797645407972137,-22.35997912923546,-21.978132924043244,-21.64995550953489,-21.37330917571486,-21.14607699788533,-20.966168830241703,-20.831526358486368,-20.74012741277555,-20.68998963825246,-20.679173636591237,-20.705785654857547,-20.76798000871836,-20.863961145979292,-20.99198504892649,-21.150360394912457,-21.33744986881647,-21.55167108923339,-21.791496680654483,-22.055454280254793,-22.34212720578009,-22.65015450099631,-22.978229977599387,-23.32510137218975,-23.689570206172135,-24.070491994769068,-24.466774431937086,-24.87737592353352,-25.30130429953199,-25.73761702988658,-26.185420634814385,-26.643868539050143,-27.11215941887457,-27.589535855388906,-28.07528319501648,-28.568730114574738,-29.069248414727063,-29.576251148117525,-30.08919139625974,-30.60756149606659,-31.130892605575525,-31.658754549272818,-32.190755911883215,-32.7265443645691,-33.26580869791889,-33.80827989541072,-34.35373115222905,-34.90197850300017,-35.45288187391805,-36.006346433695896,-36.56232414839644,-37.12081545792444,-37.6818709927416,-38.24559324132766,-38.812138063478194,-39.381715922017605,-39.95459491485041,-40.5310998134883,-41.111610303499205,-41.69655829019997,-42.286423766812355,-42.88172871145746,-43.48302716010673,-44.09089182524284,-44.70589709265709,-45.328594022742614,-45.959478450403736,-46.59895855748646,-47.247303641060014,-47.90459890687764,-48.57068792771258,-49.24511877937904,-49.927093927567284,-50.61543116008851,-51.3085486246671,-52.0044693616428,-52.700869205006185,-53.39514732577948,-54.084528468146964,-54.766184564878166,-55.43735849785414,-56.095477256096686,-56.738243319022594,-57.36369531900249,-57.97024176627795,-58.55666586374462,-59.12210870400645,-59.66603721427982,-60.18820403013284,-60.688603579913206,-61.16742862706184,-61.625030152845326,-62.06188154810733,-62.47854774607392,-62.875659320688435,-63.2538912196012,-63.613945621770846,-63.956538340265375,-64.28238821426268,-64.59220896594978,-64.88670305157481,-65.16655711523607,-65.43243871749281,-65.68499406880245,-65.92484654836285,-66.15259583182244,-66.36881748694371,-66.57406292545514,-66.76885962291645,-66.95371153735238,-67.1290996725038,-67.29548274352183,-67.45329791239534,-67.60296156786141,-67.74487013041025,-67.87940086759431,-68.00691270845104,-68.12774704866118,-68.24222854025925,-68.35066586141987,-68.45335246316988,-68.55056729090296,-68.64257547936498,-68.72962902038641,-68.81196740310214,-68.88981822675001,-68.96339778640254,-69.03291163218081,-69.09855510263971,-69.16051383311265,-69.21896423987062,-69.2740739809911,-69.32600239485498,-69.37490091719636,-69.42091347762633,-69.46417687653933,-69.50482114329168,-69.54296987651905,-69.57874056743267,-69.61224490690577,-69.64358907713154,-69.6728740286033,-69.7001957431365,-69.7256454836214,-69.74931003116481,-69.77127191024948,-69.79160960251073,-69.81039774970155,-69.82770734639038,-69.84360592290957,-69.85815771904694,-69.87142384894928,-69.8834624576829,-69.89432886987464,-69.90407573083532,-69.91275314054752,-69.92040878088065,-69.92708803637737,-69.9328341089386,-69.93768812671732,-69.94168924751602,-69.94487475696717,-69.94728016176221,-69.94893927720508,-69.94988431137243,-69.95014594531582,-69.94975340915468,-69.94873455428326,-69.94711592190104,-69.94492280806264,-69.94217932543155,-69.93890846191113,-69.9351321363159,-69.9308712512374,-69.92614574324956,-69.92097463059096,-69.91537605845367,-69.90936734200118,-69.90296500723153,-69.89618482979552,-69.88904187187387,-69.88155051721208,-69.87372450440608,-69.86557695852756,-69.85712042117235,-69.84836687901206,-69.83932779092383,-69.83001411377013,-69.82043632689641,-69.81060445541094,-69.8005280923081,-69.79021641949305,-69.77967822776284,-69.76892193579619,-69.75795560820153,-69.74678697267052,-69.7354234362815,-69.72387210099544,-69.71213977838471,-69.70023300363282,-69.68815804884143,-69.67592093567922,-69.66352744740523,-69.65098314018533,-69.63829335071395,-69.62546320757436,-69.61249764186788,-69.59940139717894,-69.58617903893408,-69.57283496320562,-69.55937340500479,-69.54579844610355,-69.53211402242022,-69.51832393099995,-69.50443183661805,-69.49044127803106,-69.47635567389848,-69.46217832839568,-69.44791243653664,-69.4335610892238,-69.41912727804082,-69.4046138998027,-69.3900237608768,-69.37535958128727,-69.36062399861434,-69.3458195716996,-69.33094878416708,-69.31601404776994,-69.30101770557147,-69.28596203496892,-69.27084925056799,-69.25568150691558,-69.24046090109762,-69.22518947520894,-69.2098692187012,-69.19450207061512,-69.17908992170244,-69.16363461644329,-69.14813795496369,-69.13260168880512,-69.11702752406708,-69.10141712444499,-69.08577211390767,-69.07009407906682,-69.05438457128328,-69.03864510854729,-69.02287717716462,-69.00708223327538,-68.99126170422814,-68.97541698982853,-68.95954946347878,-68.94366047322183,-68.92775134270187,-68.9118233720513,-68.8958778387126,-68.8799159982023,-68.86393908482361,-68.84794831233249,-68.8319448745623,-68.8159299460106,-68.79990468239178,-68.78387022115828,-68.76782768199308,-68.75177816727583,-68.73572276252438,-68.71966253681363,-68.70359854317331,-68.68753181896591,-68.67146338624607,-68.65539425210274,-68.63932540898482,-68.6232578350115,-68.60719249426799,-68.59113033011486,-68.57507226419715,-68.5590191988808,-68.5429720192744,-68.52693159490215,-68.51089878108456,-68.49487442007413,-68.4788593419861,-68.46285436555836,-68.44686029876883,-68.43087793933465,-68.41490807511352,-68.39895148442413,-68.38300893630029,-68.36708119069064,-68.35116899861421,-68.33527310228023,-68.31939423517919,-68.30353312215117,-68.28769047943616,-68.27186701471058,-68.25606342711303,-68.24028040726243,-68.22451863727032,-68.20877879074946,-68.19306153282004,-68.17736752011466,-68.16169740078304,-68.14605181449718,-68.13043139245754,-68.1148367574005,-68.09926852360772,-68.08372729691727,-68.06821367473691,-68.05272824605944,-68.03727159148038,-68.0218442690486,-68.00644681754997,-67.99107975931565,-67.97574360254279,-67.96043884320316,-67.94516596660442,-67.92992544865902,-67.91471775690766,-67.89954335133727,-67.88440268502733,-67.8692962046536,-67.8542243508736,-67.83918755861461,-67.82418625728185,-67.80922087090157,-67.79429181821163,-67.77939951271013,-67.76454436267076,-67.74972677113252,-67.73494713586963,-67.7202058493471,-67.70550329866585,-67.69083986550106,-67.67621592603658,-67.66163185089746,-67.64708800508289,-67.63258474790044,-67.61812243290328,-67.60370140783088,-67.58932201455411,-67.57498458902494,-67.56068946123129,-67.54643695515718,-67.53222738874813,-67.51806107388207,-67.50393831634544,-67.48985941581459,-67.47582466584225,-67.46183435384889,-67.44788874876355,-67.4339880975555,-67.42013262898402,-67.40632255672814,-67.3925580819881,-67.37883939563741,-67.36516667999345,-67.3515401102646,-67.3379598557241,-67.32442608065323,-67.3109389450907,-67.29749860541953,-67.28410521481834,-67.27075892359984,-67.25745987945636,-67.2442082276286,-67.23100411101214,-67.21784767021336,-67.20473904356517,-67.19167836711077,-67.17866577456286,-67.16570139724419,-67.15278536401445,-67.13991780118765,-67.12709883244347,-67.11432857873527,-67.10160715819723,-67.08893468605221,-67.076311274522,-67.06373703274096,-67.05121206667404,-67.03873647903971,-67.02631036923839,-67.01393383328656,-67.00160696375688,-66.98932984972431,-66.97710257671818,-66.96492522668028,-66.95279787792875,-66.9407206051276,-66.92869347926174,-66.91671656761721,-66.90478993376641,-66.89291363755808,-66.8810877351118,-66.86931227881671,-66.85758730418797,-66.84591282372168,-66.83428883130553,-66.82271530592602,-66.81119221477222,-66.79971951582282,-66.78829715999132,-66.77692509289409,-66.76560325629703,-66.75433158928932,-66.74311002922565,-66.73193851247277,-66.72081697499134,-66.70974535277941,-66.69872358220039,-66.68775160021487,-66.6768293445332,-66.66595675370284,-66.65513376714274,-66.64436032513508,-66.63363636878307,-66.62296183994225,-66.61233668113147,-66.60176083542889,-66.59123424635723,-66.58075685776198,-66.57032861368559,-66.55994945824001,-66.54961933547972,-66.53933818927662,-66.52910596319836,-66.51892260039085,-66.50878804346581,-66.49870223439393,-66.48866511440396,-66.47867662388805,-66.46873670231346,-66.45884528814068,-66.44900231874783,-66.4392077303615,-66.4294614579936,-66.41976343538418,-66.41011359495008,-66.40051186773894,-66.3909581833887,-66.38145247009189,-66.37199465456477,-66.36258466202105,-66.35322241614968,-66.34390783909673,-66.33464085145094,-66.32542137223277,-66.31624931888666,-66.30712460727638,-66.29804715168305,-66.28901686480586,-66.28003365776513,-66.27109744010755,-66.26220811981348,-66.25336558365527,-66.24456969771715,-66.2358203117672,-66.22711726294517,-66.21846037886105,-66.20984948018632,-66.20128438280963,-66.19276489961881,-66.18429084196308,-66.17586202084212,-66.16747824786255,-66.15913933599661,-66.15084510017356,-66.14259535772965,-66.13438992873947,-66.1262286362479,-66.11811130641944,-66.11003776861914,-66.10200785543762,-66.09402140267045,-66.08607824926092,-66.07817823721383,-66.07032121148676,-66.0625070198642,-66.0547355128192,-66.04700654336638,-66.03931996690936,-66.03167564108556,-66.0240734256102,-66.01651318212154,-66.00899477402865,-66.00151806636285,-65.99408292563386,-65.98668921969107,-65.97933681759072,-65.97202558946908,-65.96475540642204,-65.95752614039114,-65.9503376640561,-65.94318985073382,-65.93608257428376,-65.92901570901957,-65.92198912962674,-65.91500271108619,-65.90805632860348,-65.90114985754346,-65.89428317337013,-65.88745615159134,-65.88066866770833,-65.8739205971696,-65.86721181532899,-65.86054219740772,-65.85391161846024,-65.84731995334343,-65.8407670766891,-65.8342528628797,-65.82777718602662,-65.82133991995146,-65.81494093816947,-65.80858011387558,-65.80225731993232,-65.7959724288599,-65.78972531282798,-65.78351584364931,-65.77734389277471,-65.77120933128965,-65.76511202991212,-65.75905185899161,-65.75302868850937,-65.74704238807955,-65.74109282695132,-65.73517987401182,-65.72930339778992,-65.72346326646061,-65.7176593478501,-65.71189150944139,-65.70615961838045,-65.70046354148282,-65.69480314524057,-65.68917829582975,-65.68358885911802,-65.67803470067267,-65.67251568576883,-65.66703167939795,-65.6615825462764,-65.6561681508543,-65.65078835732439,-65.6454430282875,-65.6401320071471,-65.63485512215878,-65.62961218986509,-65.62440301799819,-65.61922740792306,-65.61408515668379,-65.6089760587082,-65.60389990721855,-65.59885649538991,-65.59384561729243,-65.5888670686489,-65.58392064743501,-65.57900615434592,-65.57412339314959,-65.5692721709447,-65.56445229833844,-65.55966358955739,-65.55490586250288,-65.55017893876057,-65.54548264357268,-65.5408168057801,-65.53618125774031,-65.53157583522662,-65.52700037731292,-65.52245472624774,-65.5179387273209,-65.51345222872506,-65.50899508141485,-65.50456713896494,-65.5001682574288,-65.49579829519922,-65.4914571128718,-65.48714457311179,-65.48286054052531,-65.47860488153502,-65.47437746426085,-65.47017815840587,-65.46600683514741,-65.46186336703363,-65.45774762788537,-65.4536594927034,-65.44959883758088,-65.44556553962096,-65.44155947685931,-65.43758052819157,-65.43362857330534,-65.42970349261672,-65.42580516721112,-65.42193347878812,-65.41808830961021,-65.41426954245532,-65.41047706057272,-65.40671074764234,-65.40297048773718,-65.39925616528868,-65.39556766505484,-65.39190487209103,-65.38826767172317,-65.38465594952326,-65.38106959128707,-65.37750848301383,-65.37397251088778,-65.37046156126158,-65.3669755206412,-65.36351427567254,-65.36007771312927,-65.35666571990217,-65.35327818298957,-65.34991498948904,-65.34657602659004,-65.34326118156767,-65.33997034177717,-65.33670339464945,-65.33346022768724,-65.33024072846207,-65.32704478461184,-65.32387228383905,-65.32072311390954,-65.31759716265181,-65.31449431795677,-65.31141446777796,-65.30835750013216,-65.30532330310031,-65.30231176482887,-65.2993227735314,-65.29635621749047,-65.29341198505976,-65.29048996466648,-65.28759004481391,-65.2847121140842,-65.28185606114127,-65.27902177473393,-65.27620914369909,-65.27341805696508,-65.27064840355517,-65.26790007259103,-65.26517295329643,-65.2624669350009,-65.25978190714352,-65.25711775927672,-65.2544743810702,-65.2518516623147,-65.24924949292611,-65.24666776294927,-65.24410636256202,-65.24156518207919,-65.23904411195653,-65.23654304279479,-65.23406186534363,-65.23160047050567,-65.22915874934041,-65.22673659306824,-65.22433389307436,-65.22195054091272,-65.21958642830992,-65.21724144716912,-65.21491548957384,-65.21260844779188,-65.21032021427904,-65.20805068168293,-65.20579974284674,-65.20356729081287,-65.20135321882671,-65.19915742034019,-65.1969797890154,-65.19482021872821,-65.19267860357175,-65.1905548378599,-65.18844881613079,-65.18636043315013,-65.18428958391469,-65.18223616365556,-65.18020006784147,-65.17818119218205,-65.17617943263103,-65.17419468538942,-65.17222684690867,-65.17027581389371,-65.16834148330605,-65.16642375236677,-65.1645225185595,-65.16263767963333,-65.16076913360574,-65.1589167787654,-65.15708051367503,-65.1552602371741,-65.15345584838165]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1357\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1358\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1353\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1354\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1355\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1365\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1359\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1360\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1361\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.9987636945507,-64.99821034832222,-64.99768732311597,-64.99718971697536,-64.99671408308582,-64.99625783545477,-64.99581894824438,-64.99539578442415,-64.99498698970879,-64.99459142284486,-64.99420810767162,-64.99383619897498,-64.99347495746416,-64.99312373099005,-64.99278194015042,-64.99244906704874,-64.99212464636327,-64.9918082581385,-64.99149952188127,-64.9911980916603,-64.99090365198978,-64.99061591433399,-64.99033461411129,-64.99005950810512,-64.98979037221086,-64.9895269994634,-64.98926919830161,-64.98901679103494,-64.98876961248357,-64.98852750876918,-64.98829033623673,-64.98805796049116,-64.98783025553521,-64.98760710299653,-64.98738839143397,-64.98717401571415,-64.98696387645072,-64.98675787949942,-64.98655593550308,-64.98635795948124,-64.98616387045988,-64.98597359113683,-64.98578704757958,-64.98560416895182,-64.98542488726613,-64.98524913715985,-64.98507685569218,-64.98490798216011,-64.98474245793143,-64.98458022629318,-64.98442123231392,-64.98426542271858,-64.98411274577461,-64.98396315118832,-64.9838165900105,-64.9836730145504,-64.98353237829721,-64.98339463584847,-64.9832597428446,-64.9831276559091,-64.98299833259384,-64.98287173132893,-64.98274781137683,-64.9826265327902,-64.98250785637335,-64.9823917436466,-64.98227815681373,-64.98216705873192,-64.98205841288403,-64.98195218335309,-64.98184833479876,-64.98174683243552,-64.98164764201255,-64.98155072979506,-64.98145606254701,-64.98136360751505,-64.98127333241358,-64.9811852054109,-64.98109919511624,-64.98101527056775,-64.98093340122115,-64.98085355693925,-64.98077570798203,-64.98069982499739,-64.98062587901245,-64.98055384142533,-64.98048368399749,-64.98041537884636,-64.98034889843854,-64.9802842155832,-64.98022130342598,-64.98016013544306,-64.98010068543559,-64.9800429275244,-64.97998683614486,-64.97993238604212,-64.97987955226638,-64.97982831016849,-64.97977863539563,-64.97973050388728,-64.97968389187116,-64.9796387758595,-64.97959513264529,-64.97955293929873,-64.97951217316383,-64.97947281185498,-64.97943483325373,-64.97939821550567,-64.97936293701729,-64.97932897645302,-64.97929631273229,-64.9792649250267,-64.9792347927572,-64.97920589559138,-64.97917821344078,-64.9791517264583,-64.9791264150356,-64.97910225980058,-64.97907924161495,-64.97905734157173,-64.97903654099288,-64.97901682142697,-64.9789981646468,-64.97898055264716,-64.97896396764257,-64.97894839206505,-64.9789338085619,-64.97892019999357,-64.9789075494315,-64.978895840156,-64.97888505565417,-64.97887517961787,-64.97886619594162,-64.97885808872059,-64.9788508422486,-64.97884444101622,-64.9788388697087,-64.97883411320406,-64.97883015657125,-64.97882698506812,-64.97882458413967,-64.97882293941609,-64.97882203671092,-64.97882186201927,-64.97882240151597,-64.97882364155375,-64.97882556866149,-64.97882816954247,-64.97883143107254,-64.97883534029846,-64.97883988443614,-64.97884505086894,-64.97885082714595,-64.97885720098034,-64.97886416024771,-64.97887169298436,-64.97887978738572,-64.97888843180472,-64.97889761475012,-64.97890732488499,-64.97891755102502,-64.97892828213706,-64.97893950733749,-64.97895121589063,-64.97896339720734,-64.97897604084334,-64.97898913649777,-64.97900267401175,-64.97901664336676,-64.97903103468326,-64.97904583821919,-64.97906104436854,-64.97907664365985,-64.97909262675488,-64.97910898444708,-64.97912570766027,-64.97914278744722,-64.97916021498823,-64.97917798158981,-64.97919607868332,-64.97921449782352,-64.97923323068738,-64.97925226907266,-64.97927160489658,-64.97929123019459,-64.97931113711901,-64.97933131793776,-64.9793517650331,-64.97937247090036,-64.9793934281467,-64.97941462948981,-64.97943606775677,-64.97945773588275,-64.97947962690985,-64.97950173398588,-64.97952405036315,-64.97954656939733,-64.97956928454623,-64.9795921893687,-64.97903364499197,-64.97622688526604,-64.96854985631636,-64.95300179758559,-64.9268048539738,-64.8877888032172,-64.8345308056293,-64.76632357568398,-64.6830571854386,-64.5850755945094,-64.47304155222943,-64.34782391834472,-64.21041030213323,-64.06184269877984,-63.903171982590116,-63.73541655160935,-63.55954647268319,-63.37647864348125,-63.187069663973084,-62.992112709984504,-62.792336112821005,-62.588381549348576,-62.38083288057435,-62.170218463058326,-61.95701418910248,-61.74164048699887,-61.52444666431807,-61.305742323939214,-61.085799813023826,-60.86485693775061,-60.64309535837982,-60.42065345263937,-60.19764520567703,-59.974161753481575,-59.75026756634238,-59.525964293675706,-59.30123901606623,-59.07606455689696,-58.85040028682107,-58.6241534341047,-58.39778199127281,-58.17281932378364,-57.95174529505241,-57.73739858623221,-57.53234353175938,-57.338552578089256,-57.15727261966622,-56.98906241930187,-56.83391081679439,-56.69132985190988,-56.56055682564101,-56.44066488863743,-56.330647896342974,-56.22948162886917,-56.13616561793906,-56.04975003160537,-55.96935152452258,-55.894145453432415,-55.82336197689863,-55.75631229969183,-55.69238392986658,-55.63103498709772,-55.571787980265206,-55.51422342749457,-55.45797358576852,-55.40271646611396,-55.34817024134824,-55.29408810346696,-55.2402535927483,-55.18647639680183,-55.13258860213374,-55.07844137107108,-55.02390201138545,-54.968851403423905,-54.91316017049303,-54.85669358405901,-54.799327751454584,-54.74094709490821,-54.681442377728246,-54.62070906303419,-54.55864591466431,-54.49515378699104,-54.43013456648623,-54.36349023667861,-54.295122043754795,-54.22492974401909,-54.15281091742359,-54.0786603337439,-54.00236935989269,-53.92382539844304,-53.84284972577652,-53.759262061386266,-53.67287995289038,-53.58351677364784,-53.49098009849197,-53.39507027555208,-53.29557910989103,-53.19228861043872,-53.08496976827233,-52.973381343252235,-52.85724516827375,-52.73619140739806,-52.60984061447781,-52.477798774319716,-52.339653476836226,-52.19497052591042,-52.04329073946243,-51.88412682096035,-51.71685037188563,-51.54076071676651,-51.355122968500424,-51.159159834789605,-50.952044421440945,-50.732845887953864,-50.50040249936935,-50.253487288762464,-49.99079243668513,-49.71090645600412,-49.41202996322166,-49.09224670963656,-48.749498212732185,-48.38129685693484,-47.98486008040118,-47.55716796121051,-47.094501988476445,-46.5928411935129,-46.04737865175565,-45.45277266905105,-44.802620093010525,-44.08967582050827,-43.30548765981194,-42.440115161761554,-41.48202932708623,-40.41778600877796,-39.23169733034924,-37.90550301864316,-36.418023557894834,-34.74483904776597,-32.85819717492237,-30.727085855066008,-28.31791621989403,-25.59592200600964,-22.52795420685784,-19.087106469968518,-15.259658993150827,-11.055211145398847,-6.517350842899529,-1.7340861131362137,3.1595587544759436,7.989922802874787,12.56735394160264,16.717564153550043,20.3115680206247,23.28211702962455,25.623232426878474,27.37625856067316,28.610480915015852,29.405357041444322,29.83804723132398,29.976642432867592,29.877749175354335,29.586733471472073,29.139232224397453,28.563021283639177,27.879778866467856,27.10657756150261,26.25704726183766,25.342255615270126,24.371352851261104,23.352038506273924,22.290897780269376,21.193643480026363,20.0652906661668,18.910283761860516,17.732589736762016,16.53576845740333,15.32302716237665,14.0972616172472,12.861089297736456,11.616869708494194,10.366731378778347,9.112598796177462,7.8562076855208005,6.59910372390252,5.34266448297698,4.088128555020606,2.83660269099153,1.5890391975703118,0.3462709189907174,-0.8909606655917208,-2.1220041060177097,-3.346329872210992,-4.563507369855499,-5.773158796251479,-6.974964335992291,-8.168663044609321,-9.354127475735792,-10.531264352309684,-11.700011107675268,-12.860344553354455,-14.012285622992604,-15.155910130038903,-16.291426999184292,-17.41905588077091,-18.539047621746175,-19.65169728337203,-20.75735367527638,-21.856427237740636,-22.94939720163584,-24.0368184896263,-25.11936168441205,-26.19781513559593,-27.27303454186847,-28.345961621176386,-29.41763705150807,-30.489209855959245,-31.56194408447338,-32.63722303496507,-33.71655089715145,-34.80155144870677,-35.89396322037812,-36.99563034111523,-38.1084880579146,-39.23459542487288,-40.37602016525317,-41.5348051364911,-42.71292168989756,-43.91220594282537,-45.13427675872952,-46.380390406606175,-47.65129905058805,-48.94713770459806,-50.267259694732644,-51.609812380604374,-52.97176020108759,-54.348750877093075,-55.73453497733383,-57.12136783693304,-58.499865726409645,-59.85901980784272,-61.18693856587567,-62.47106788893278,-63.69902224890972,-64.85948578226633,-65.94289749965867,-66.94206100814098,-67.85256122188073,-68.67290944372226,-69.40439720664395,-70.05070125428054,-70.61732681233468,-71.11093429316051,-71.53885998858222,-71.90856793997838,-72.22732437952078,-72.50191117578925,-72.73849477024454,-72.94255901876221,-73.11889454534884,-73.27162848943881,-73.40428412947404,-73.5198475724742,-73.62083580188755,-73.70936271852894,-73.78719993791019,-73.8558308765659,-73.91649775125578,-73.97024174762056,-74.01793694579752,-74.06031868450606,-74.09800723488635,-74.13152749226215,-74.16132514630392,-74.1877800400761,-74.21121719429257,-74.23191590178115,-74.25011723175338,-74.26603022610612,-74.27983702090737,-74.29169708491284,-74.30175073257219,-74.31012204056641,-74.31692127355353,-74.32224690565296,-74.32618730854098,-74.32882216423906,-74.33022365023412,-74.33045743604268,-74.32958352336591,-74.32765695628954,-74.32472842332486,-74.32084476927342,-74.31604943177098,-74.31038281480002,-74.30388260935169,-74.29658406968271,-74.28852025218389,-74.2797222226979,-74.27021923715083,-74.26003889955672,-74.24920730078826,-74.23774914095411,-74.22568783776505,-74.2130456228899,-74.19984362798508,-74.1861019618176,-74.1718397796805,-74.15707534611595,-74.14182609180676,-74.1261086653682,-74.1099389806636,-74.09333226017607,-74.07630307489248,-74.05886538109071,-74.04103255436723,-74.02281742119567,-74.00423228826796,-73.98528896983683,-73.96599879085242,-73.94637263444747,-73.92642097112379,-73.90615387767623,-73.88558105548569,-73.864711848044,-73.84355525768217,-73.82211996150933,-73.80041432658487,-73.77844642435323,-73.75622404437343,-73.73375470737628,-73.71104567768235,-73.68810397501215,-73.66493638571973,-73.64154947347865,-73.61794958944859,-73.59414288194883,-73.57013530566383,-73.54593263040448,-73.52154044944747,-73.49696418747395,-73.47220910812733,-73.44728032120916,-73.42218278953092,-73.39692133543848,-73.3715006470252,-73.34592528404886,-73.32019968356637,-73.29432816530017,-73.26831493674884,-73.24216409805419,-73.21587964663632,-73.18946548160761,-73.16292540797598,-73.13626314064736,-73.10948230823666,-73.08258645669629,-73.05557905277053,-73.02846348728399,-73.0012430782718,-72.97392107395879,-72.94650056721864,-72.9189846079016,-72.89137620416491,-72.86367832012793,-72.83589387471378,-72.80802574121128,-72.78007674731903,-72.75204967552577,-72.72394726372923,-72.69577220602392,-72.66752715360663,-72.63921471576168,-72.61083746089663,-72.58239791760641,-72.55389857574866,-72.52534188751737,-72.49673026850465,-72.46806609874315,-72.43935172372329,-72.41058945538127,-72.3817815730547,-72.35293032440379,-72.32403792629698,-72.29510656566,-72.26613840028841,-72.23713555962348,-72.20810014549218,-72.17903423281159,-72.14993987025876,-72.12081908090703,-72.09167386282962,-72.06250618967202,-72.03331801119388,-72.00411125378199,-71.97488782093538,-71.94564944121238,-71.91639783445237,-71.88713473399417,-71.85786187903692,-71.82858100923696,-71.79929386064845,-71.77000216259064,-71.74070763519737,-71.71141198748737,-71.6821169158408,-71.65282410279718,-71.62353521611014,-71.5942519080084,-71.56497581462347,-71.53570855555212,-71.50645173352815,-71.47720693418272,-71.44797572587639,-71.41875965958907,-71.38956026885663,-71.36037906974491,-71.33121756085352,-71.30207722334316,-71.27295952098149,-71.24386590020303,-71.2147977901801,-71.18575660290155,-71.15674373325741,-71.12776055912738,-71.09880844147169,-71.06988872442342,-71.04100273538103,-71.01215178510063,-70.98333716778737,-70.9545599959845,-70.92582128246677,-70.89712208022516,-70.86846346958338,-70.83984654934972,-70.81127243015635,-70.78274222924568,-70.75425706630487,-70.7258180600977,-70.69742632572104,-70.6690829723604,-70.64078910144913,-70.6125458051578,-70.58435416515489,-70.55621525159242,-70.52813012227796,-70.50009982200233,-70.47212538199715,-70.44420781950099,-70.41634813741663,-70.38854732404451,-70.36080635288005,-70.33312618246454,-70.30550775628096,-70.27795200268709,-70.25045983488009,-70.22303215088719,-70.19566983357807,-70.16837375069531,-70.14114475489983,-70.11398368382861,-70.08689136016261,-70.05986859170298,-70.03291617145409,-70.00603487771203,-69.97922547415753,-69.95248839015449,-69.92582401613059,-69.89923280046816,-69.87271523409186,-69.84627183962262,-69.8199031631013,-69.79360976743932,-69.7673922271321,-69.74125112394114,-69.71518704334083,-69.68920057158125,-69.66329229325358,-69.63746278926986,-69.61171263518712,-69.58604239981872,-69.56045264408705,-69.534943920079,-69.50951677027288,-69.48417172690995,-69.45890931148853,-69.43373003436191,-69.40863439442418,-69.38362287887041,-69.35869596302008,-69.33385411019367,-69.30909777163434,-69.28442738646767,-69.25984338169326,-69.23534617220322,-69.21093616082317,-69.1866137383718,-69.16237928373619,-69.13823316395975,-69.11417573434096,-69.0902073385404,-69.06632830869496,-69.04253896553749,-69.01883961852079,-68.99523056594495,-68.97171198570129,-68.94828363413873,-68.92494536289117,-68.90169709451877,-68.87853880672316,-68.85547052067534,-68.8324922918964,-68.8096042029263,-68.78680635733069,-68.76409887474992,-68.74148188678073,-68.71895553353558,-68.69651996075987,-68.67417531741351,-68.65192175364109,-68.62975941906947,-68.60768846138227,-68.58570902512926,-68.5638212507356,-68.54202527368123,-68.52032122382563,-68.49870922485644,-68.47718939384396,-68.45576184088605,-68.43442666883013,-68.41318397306087,-68.39203384134389,-68.370976353717,-68.3500115824218,-68.32913959186948,-68.3083604386353,-68.28767417147745,-68.26708083137608,-68.2465804515893,-68.22617305772313,-68.20585866781302,-68.1856372924147,-68.16550893470264,-68.14547359057458,-68.12553124876062,-68.10568189093607,-68.08592549183679,-68.06626201937652,-68.04669143476522,-68.0272136926281,-68.00782874112475,-67.98853652206807,-67.96933658668188,-67.95022829393798,-67.93121110742031,-67.9122845719531,-67.89344829771458,-67.87470194821137,-67.85604523073658,-67.83747788860498,-67.81899969473622,-67.80061044629977,-67.78230996021574,-67.76409806935762,-67.74597461933783,-67.72793946578136,-67.70999247201118,-67.69213350708291,-67.67436244411692,-67.65667915888453,-67.63908352861188,-67.62157543097052,-67.60415474322849,-67.58682134153918,-67.56957510034897,-67.55241589190678,-67.53534358586136,-67.51835804893389,-67.50145914465536,-67.48464673315925,-67.46792067102182,-67.45128081114278,-67.43472700266071,-67.41825909089769,-67.40187691732893,-67.38558031957342,-67.36936913140224,-67.3532431827617,-67.33720229980885,-67.32124630495704,-67.30537501692993,-67.2895882508222,-67.27388581816571,-67.25826752699983,-67.24273318194513,-67.22728258427942,-67.21191553201555,-67.19663181998024,-67.18143123989363,-67.16631358044891,-67.15127862739187,-67.13632616359989,-67.12145596916028,-67.10666782144777,-67.09196149520085,-67.077336762597,-67.0627933933266,-67.04833115466555,-67.03394981154645,-67.01964912662834,-67.005428860365,-66.99128877107181,-66.97722819691498,-66.9632462952979,-66.94934233456743,-66.93551567057804,-66.92176573073198,-66.9080920018588,-66.89449402055725,-66.88097136529542,-66.86752364984561,-66.85415051777088,-66.84085163776169,-66.82762669967167,-66.81447541113559,-66.80139749467712,-66.78839268523133,-66.77546072802063,-66.76260137673317,-66.74981439196075,-66.73709953986045,-66.724456591009,-66.71188531942374,-66.69938550172773,-66.6869569164394,-66.67459934337012,-66.66231256311517,-66.65009635662544,-66.63795050484899,-66.62587478843292,-66.61386898747742,-66.60193288133456,-66.5900662484459,-66.57826886621314,-66.56654051089737,-66.55488095754261,-66.54328997992019,-66.53176735049072,-66.52031284038122,-66.50892621937469,-66.49760725591052,-66.4863557170937,-66.4751713687114,-66.46405397525568,-66.45300329995115,-66.44201910478664,-66.43110115055,-66.42024919686553,-66.40946300223303,-66.39874232406848,-66.38808691874554,-66.37749654163758,-66.36697094716001,-66.3565098888127,-66.34611311922204,-66.3357803901828,-66.32551145269932,-66.31530605702612,-66.3051639527079,-66.29508488861855,-66.28506861299942,-66.27511487349678,-66.26522341719816,-66.25539399066798,-66.24562633998215,-66.23592021076165,-66.22627534820535,-66.21669149712177,-66.20716840196002,-66.19770580683975,-66.18830345558037,-66.17896109172928,-66.16967845858935,-66.16045529924556,-66.15129135659092,-66.14218637335155,-66.13314009211109,-66.12415225533437,-66.1152226053904,-66.10635088457475,-66.09753683513121,-66.0887801992729,-66.0800807192028,-66.0714381371336,-66.06285219530714,-66.05432263601328,-66.04584920160819,-66.03743163453223,-66.0290696773273,-66.0207630726538,-66.0125115633071,-66.00431489223354,-65.99617280254614,-65.98808477850895,-65.98005006363425,-65.97206799569145,-65.96413798678219,-65.95625951008685,-65.94843208988291,-65.94065529361147,-65.93292872538682,-65.92525202059285,-65.91762484133251,-65.9100468725654,-65.902517818811,-65.89503740132328,-65.88760535566232,-65.88022142960287,-65.87288538133062,-65.86559697788526,-65.85835599381625,-65.85116221002214,-65.84401541274897,-65.83691539272641,-65.82986194442367,-65.82285486540934,-65.81589395580167,-65.80897901779741,-65.80210985526902,-65.79528627342127,-65.78850807849946,-65.7817750775424,-65.77508707817435,-65.76844388843051,-65.76184531661184,-65.75529117116493,-65.74878126058373,-65.74231539332997,-65.73589337776976,-65.72951502212389,-65.72318013443017,-65.71688852251565,-65.71063999397761,-65.70443435617172,-65.69827141620637,-65.69215098094222,-65.68607285699593,-65.68003685074761,-65.67404276835109,-65.6680904157466,-65.66217959867545,-65.65631012269608,-65.65048179320148,-65.64469441543724,-65.63894779452052,-65.6332417354592,-65.62757604317139,-65.62195052250507,-65.61636497825762,-65.61081921519525,-65.60531303807228,-65.59984625165006,-65.59441866071563,-65.58903007009995,-65.58368028469576,-65.57836910947499,-65.57309634950578,-65.56786180996893,-65.56266529617403,-65.557506613575,-65.55238556778525,-65.54730196459234,-65.54225560997216,-65.53724631010279,-65.53227387137775,-65.52733810041899,-65.52243880408935,-65.51757578950468,-65.51274886404555,-65.50795783536864,-65.5032025114177,-65.49848270043415,-65.49379821096746,-65.48914885188508,-65.48453443238213,-65.4799547619908,-65.4754096505894,-65.4708989084112,-65.466422346053,-65.46197977448337,-65.4575710050508,-65.45319584949141,-65.44885411993664,-65.44454562892061,-65.44027018938725,-65.43602761469734,-65.43181771863526,-65.4276403154156,-65.42349521968958,-65.41938224655134,-65.41530121154395]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1366\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1367\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1362\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1363\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1364\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1374\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1368\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1369\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1370\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628385345,-64.99989891812339,-64.99981775406245,-64.99971590880706,-64.99959691256005,-64.99946400141862,-64.99931990441473,-64.99916684225425,-64.99900659845551,-64.99884060387761,-64.99867001305113,-64.99849576650733,-64.99831863934308,-64.99813927818651,-64.99795822902611,-64.99777595808803,-64.99759286752288,-64.99740930725532,-64.99722558401002,-64.99704196826116,-64.99685869965151,-64.9966759912785,-64.9964940331353,-64.99631299491708,-64.99613302834395,-64.99595426911279,-64.99577683855898,-64.99560084508889,-64.99542638542786,-64.9952535457177,-64.99508240248936,-64.99491302353073,-64.99474546866502,-64.99457979045214,-64.99441603482298,-64.99425424165455,-64.99409444529302,-64.99393667503004,-64.99378095553737,-64.99362730726388,-64.99347574679865,-64.99332628720325,-64.99317893831606,-64.99303370703136,-64.9928905975549,-64.99274961163876,-64.99261074879648,-64.99247400650084,-64.99233938036532,-64.99220686431082,-64.99207645071871,-64.99194813057166,-64.99182189358282,-64.99169772831473,-64.99157562228851,-64.99145556208427,-64.99133753343345,-64.99122152130369,-64.9911075099768,-64.99099548312059,-64.9908854238548,-64.99077731481177,-64.99067113819214,-64.9905668758162,-64.99046450917099,-64.99036401945361,-64.99026538761099,-64.9901685943766,-64.99007362030387,-64.98998044579729,-64.98988905114051,-64.9897994165226,-64.98971152206177,-64.98962534782736,-64.98954087385992,-64.98945808018966,-64.98937694685324,-64.98929745390932,-64.98921958145264,-64.989143309627,-64.98906861863699,-64.98899548875887,-64.98892390035034,-64.98885383385957,-64.98878526983322,-64.98871818892404,-64.98865257189745,-64.98858839963765,-64.9885256531532,-64.98846431358191,-64.98840436219535,-64.98834578040287,-64.98828854975515,-64.98823265194744,-64.98817806882242,-64.98812478237265,-64.98807277474282,-64.98802202823167,-64.98797252529366,-64.98792424854035,-64.9878771807417,-64.987831304827,-64.98778660388567,-64.98774306116796,-64.98770066008545,-64.98765938421131,-64.98761921728058,-64.9875801431902,-64.98754214599903,-64.98750520992768,-64.98746931935827,-64.98743445883417,-64.98740061305955,-64.9873677668989,-64.98733590537651,-64.98730501367591,-64.98727507713912,-64.98724608126601,-64.98721801171351,-64.98719085429482,-64.98716459497858,-64.98713921988795,-64.98711471529978,-64.98709106764358,-64.98706826350062,-64.98704628960292,-64.98702513283224,-64.98700478021905,-64.98698521894151,-64.98696643632434,-64.98694841983783,-64.98693115709669,-64.98691463585898,-64.98689884402502,-64.98688376963621,-64.98686940087397,-64.98685572605862,-64.9868427336482,-64.98683041223737,-64.98681875055624,-64.98680773746928,-64.98679736197414,-64.98678761320053,-64.98677848040906,-64.98676995299012,-64.98676202046272,-64.98675467247337,-64.98674789879493,-64.98674168932551,-64.9867360340873,-64.98673092322547,-64.98672634700701,-64.98672229581966,-64.98671876017077,-64.98671573068624,-64.9867131981093,-64.9867111532995,-64.98670958723163,-64.98670849099454,-64.98670785579017,-64.98670767293235,-64.98670793384585,-64.98670863006521,-64.98670975323373,-64.98671129510241,-64.98671324752888,-64.98671560247641,-64.9867183520128,-64.98672148830941,-64.9867250036401,-64.98672889038025,-64.98673314100571,-64.98673774809181,-64.98674270431239,-64.98674800243877,-64.98675363533877,-64.98675959597578,-64.98676587740773,-64.98677247278619,-64.98677937535531,-64.986786578451,-64.98679407549992,-64.9868018600185,-64.98680992561214,-64.98681826597411,-64.98682687488481,-64.98683574621076,-64.9868448739037,-64.98685425199976,-64.98686387461849,-64.98687373596204,-64.98688383031424,-64.98689415203978,-64.98690469558329,-64.98691545546858,-64.98692642629764,-64.98693760274998,-64.98694897958164,-64.98696055162445,-64.86358036185717,-64.55994467232927,-64.09770073623307,-63.52535143533602,-62.8878533426365,-62.21840142421279,-61.539309664558715,-60.86489413496768,-60.204044334953984,-59.562070988491335,-58.94194432070703,-58.34510738319563,-57.772010185070904,-57.2224629304391,-56.695871491904875,-56.19139512908211,-55.70805233535587,-55.244791856260456,-54.80054005490526,-54.37423205984907,-53.96483172915945,-53.57134350934355,-53.192819084463345,-52.828360689874756,-52.47712219279191,-52.138308545132006,-51.81117378723414,-51.49501852381872,-51.18918732769108,-50.89306616000673,-50.6060793892934,-50.3276866123196,-50.057379802712056,-49.79468087774108,-49.539139467294696,-49.290330117288946,-49.04784974610133,-48.81131567040105,-48.580364059249575,-48.35464793656505,-48.25722694005521,-48.34464541020189,-48.59494841165923,-48.95933602759912,-49.392563637741524,-49.86115614777248,-50.34252728758713,-50.822097210549124,-51.290722152460354,-51.74284679976289,-52.17526638706472,-52.58631429952666,-52.975329146341316,-53.34230268750049,-53.68764530023125,-54.01202872133607,-54.31628024927718,-54.60131132852656,-54.86806929535122,-55.117505444400074,-55.35055448669108,-55.56812177138561,-55.771075724145746,-55.96024376515867,-56.13641053150708,-56.30031760752849,-56.452664222482845,-56.5941085486324,-56.72526935176298,-56.846727827867426,-56.95902951586535,-57.06268621475286,-57.15817785987717,-57.24595433086382,-57.32643680000869,-57.4000187419251,-57.46706710417009,-57.52792370875525,-57.58290674403705,-57.63231222334463,-57.67641534898842,-57.715471762779934,-57.7497186844855,-57.779375947141276,-57.804646939799596,-57.825719467629185,-57.84276653794512,-57.855947079336886,-57.86540659981632,-57.871277788872604,-57.873679994628425,-57.872718737820435,-57.868485789408254,-57.86105965035115,-57.8505061706735,-57.836879147221644,-57.8202208331492,-57.80056234234271,-57.77792395281381,-57.75231531947512,-57.723735198465924,-57.69216977040548,-57.657591252736985,-57.619957358200324,-57.579211286806085,-57.535281873360574,-57.488083675480574,-57.43751691668081,-57.383465352352935,-57.32579336342536,-57.26434396606802,-57.198937798818704,-57.129372542930504,-57.05542151949432,-56.97682918083102,-56.893306903369115,-56.80453027460613,-56.71013711581852,-56.609720771352045,-56.50282337238456,-56.38893107365112,-56.267465917998784,-56.137776082724024,-55.999127566695314,-55.85068990200822,-55.691522422431106,-55.52055604376369,-55.33657453285491,-55.13818893595308,-54.92380947108074,-54.69161258443784,-54.43949970920253,-54.165049311970435,-53.865461343415326,-53.53749235913666,-53.177380504176796,-52.78076021917,-52.342567501044776,-51.85694085583593,-51.317125739131235,-50.71539858063145,-50.043035411280535,-49.29036649907473,-48.44697791353984,-47.50214039596785,-46.44557070198301,-45.26859882745937,-43.96575690870172,-42.53663150431822,-40.98761824785466,-39.33304215536457,-37.59511925114926,-35.80250363060173,-33.98763363759048,-32.18349917734347,-30.420598182851233,-28.72469055186093,-27.11562120868502,-25.60715068674162,-24.20752303988508,-22.920440920108234,-21.746163366128506,-20.68253353384983,-19.725836105401566,-18.871454198603576,-18.114337952098428,-17.44931709356537,-16.871294868850008,-16.37535769942105,-15.956828529952478,-15.611284810586083,-15.334555846344943,-15.12270932937029,-14.972033249741719,-14.879016866432712,-14.840332732129278,-14.852820687682863,-14.913474134722108,-15.019428539757671,-15.167952056314851,-15.356437881085542,-15.582397837575899,-15.843456915806815,-16.13734887112055,-16.46191256449546,-16.815088459125505,-17.19491518328109,-17.599526784276982,-18.027150237597525,-18.476102577126216,-18.944787737916048,-19.431694008794675,-19.935391912476593,-20.454531513436105,-20.987839228962056,-21.534114575248484,-22.092228425846425,-22.661121122282502,-23.239799752292367,-23.827335065846956,-24.422858544748628,-25.02555998854227,-25.634686965548116,-26.249543815902896,-26.869489783013474,-27.493936944639575,-28.122348479290203,-28.754237462544033,-29.389166193404392,-30.026745985608883,-30.666637929951936,-31.308554473125106,-31.952260475821024,-32.597573747109585,-33.24436555581977,-33.892561422870074,-34.542142243637606,-35.19314565235635,-35.84566748978654,-36.499863220674534,-37.15594914011532,-37.81420319574735,-38.474965231590616,-39.138637363676864,-39.80568270101957,-40.47662174116712,-41.152026513879385,-41.83251242254655,-42.51872742142413,-43.21133719271328,-43.91100533311418,-44.61836878455843,-45.33400832056192,-46.05840934744716,-46.791916469286214,-47.534684917957826,-48.286622204179935,-49.0473297494753,-49.816048152185154,-50.59160712443928,-51.372393184825036,-52.15633832760821,-52.940936885415304,-53.7232980561578,-54.50023343810761,-55.26837371646276,-56.02430520717082,-56.764713944383665,-57.486523208604915,-58.18701092361001,-58.863896440735836,-59.51539012996009,-60.14020745455838,-60.737551457653936,-61.307071376896126,-61.84880525147554,-62.36311461439066,-62.85061800161838,-63.31212807876791,-63.748595413491074,-64.16106055614235,-64.55061487612211,-64.9183697270956,-65.26543303416327,-65.59289219000532,-65.9018021123469,-66.19317738515981,-66.46798753367776,-66.72715463447074,-66.97155261288083,-67.20200772049877,-67.41929980676589,-67.62416409520682,-67.8172932531153,-67.99933960524294,-68.17091738877248,-68.33260498124912,-68.48494705794756,-68.6284566527114,-68.76361710848154,-68.89088391197654,-69.0106864123998,-69.12342942745386,-69.22949474195006,-69.32924250536051,-69.42301253508441,-69.51112553222364,-69.59388421643453,-69.67157438605521,-69.74446590927049,-69.8128136516144,-69.87685834465547,-69.9368274002758,-69.99293567455275,-70.04538618488533,-70.09437078367573,-70.1400707915795,-70.18265759307288,-70.22229319684993,-70.25913076335206,-70.29331510154505,-70.32498313689256,-70.35426435232509,-70.38128120386959,-70.4061495124846,-70.42897883353626,-70.44987280525227,-70.4689294774005,-70.48624162135695,-70.5018970226524,-70.51597875701778,-70.5285654508844,-70.53973152723624,-70.5495474376564,-70.55807988135905,-70.56539201195123,-70.57154363262367,-70.57659138042968,-70.58058889988146,-70.58358700686797,-70.58563384375272,-70.58677502608106,-70.58705378120959,-70.58651107921061,-70.58518575644763,-70.58311463222984,-70.5803326189434,-70.57687282603867,-70.57276665822866,-70.56804390823297,-70.56273284437886,-70.55686029335287,-70.55045171837729,-70.54353129306976,-70.53612197122897,-70.52824555277462,-70.51992274605725,-70.51117322674051,-70.50201569344726,-70.49246792034967,-70.4825468068735,-70.47226842467704,-70.46164806205606,-70.4507002659175,-70.4394388814571,-70.42787708966762,-70.41602744279844,-70.40390189787918,-70.39151184841491,-70.37886815435364,-70.3659811704215,-70.3528607729157,-70.33951638504008,-70.32595700086364,-70.31219120797778,-70.29822720892365,-70.28407284145727,-70.26973559771618,-70.25522264234769,-70.24054082965584,-70.22569671828201,-70.2106965854144,-70.19554644130038,-70.18025204367999,-70.16481891166406,-70.14925233881424,-70.13355740536956,-70.11773898965534,-70.10180177874179,-70.08575027842363,-70.06958882258522,-70.05332158200731,-70.03695257266271,-70.02048566354094,-70.00392458403643,-69.98727293093,-69.97053417499008,-69.95371166721678,-69.93680864475046,-69.91982823646367,-69.90277346825474,-69.88564726805903,-69.86845247059365,-69.85119182184988,-69.83386798334668,-69.81648353615837,-69.79904098472808,-69.78154276047859,-69.76399122523114,-69.74638867444241,-69.72873734026926,-69.71103939447006,-69.69329695115172,-69.67551206937004,-69.65768675559143,-69.63982296336783,-69.62192259318053,-69.60398749413783,-69.58601946700111,-69.56802026760678,-69.54999161011422,-69.53193516986255,-69.51385258580963,-69.49574546260146,-69.47761537233899,-69.45946385610515,-69.441292425304,-69.42310256285258,-69.40489572425594,-69.38667333858842,-69.36843680939795,-69.35018751554603,-69.33192681199301,-69.3136560305354,-69.29537648050092,-69.27708944940544,-69.25879620357506,-69.2404979887362,-69.22219603057573,-69.20389153527341,-69.1855856900078,-69.16727966343763,-69.14897460615953,-69.13067165114366,-69.11237191414813,-69.09407649411334,-69.07578647353725,-69.05750291883254,-69.03922688066643,-69.02095939140791,-69.00270146117471,-68.98445407636316,-68.96621820084007,-68.9479947784004,-68.9297847353872,-68.9115889829598,-68.89340841887052,-68.87524392877889,-68.85709638718608,-68.83896665807842,-68.82085559535591,-68.80276404310641,-68.78469283577105,-68.76664279823464,-68.7486147458653,-68.73060948452104,-68.71262781053547,-68.69467051069152,-68.67673836218917,-68.65883213261127,-68.64095257989044,-68.62310045227879,-68.60527648832151,-68.58748141683532,-68.56971595689186,-68.55198081780628,-68.53427669913101,-68.51660429065444,-68.4989642724046,-68.48135731465725,-68.46378407794833,-68.44624521309056,-68.42874136119364,-68.41127315368806,-68.39384121235217,-68.37644614377447,-68.35908853352203,-68.34176894444509,-68.32448791847338,-68.30724597987683,-68.29004363860679,-68.2728813931202,-68.25575973254591,-68.23867913824775,-68.22164008489771,-68.20464304117596,-68.18768847019582,-68.17077682973223,-68.153908572312,-68.13708414520971,-68.12030399038073,-68.10356854435427,-68.08687823810246,-68.07023349689725,-68.05363474016305,-68.03708238133053,-68.02057682769568,-68.00411848028631,-67.98770773373771,-67.97134497617849,-67.95503058912684,-67.93876494739757,-67.92254841901965,-67.90638136516414,-67.89026414008208,-67.87419709105191,-67.85818055833607,-67.84221487514608,-67.82630036761579,-67.81043735478222,-67.79462614857357,-67.77886705380385,-67.76316036817366,-67.74750638227685,-67.73190537770803,-67.7163576180701,-67.70086334297982,-67.68542276792414,-67.6700360876435,-67.65470348055193,-67.63942511285549,-67.62420114189354,-67.60903171865414,-67.5939169895746,-67.57885709777584,-67.5638521838692,-67.54890238644884,-67.53400784235846,-67.51916868679817,-67.50438505332082,-67.48965707375336,-67.47498487806922,-67.46036859423022,-67.4458083480115,-67.43130426281884,-67.41685645950517,-67.40246505619069,-67.38813016809007,-67.37385190734855,-67.35963038288855,-67.34546570026734,-67.33135796154622,-67.31730726517138,-67.30331370586616,-67.28937737453457,-67.27549835817557,-67.26167673980778,-67.24791259840413,-67.23420600883577,-67.22055704182496,-67.2069657639063,-67.19343223739571,-67.17995652036679,-67.16653866663394,-67.15317872574197,-67.1398767429614,-67.12663275928945,-67.11344681145582,-67.1003189319334,-67.0872491489531,-67.07423748652265,-67.06128395775725,-67.04838855512928,-67.03555124616625,-67.02277197506864,-67.01005066727907,-66.99738723461189,-66.9847815797937,-66.97223360006667,-66.95974318987383,-66.94731024277338,-66.93493465274906,-66.92261631506575,-66.91035512679038,-66.8981509870708,-66.88600379724218,-66.87391346081223,-66.86187988336307,-66.84990297239722,-66.83798263714763,-66.82611878836626,-66.81431133810149,-66.80256019947197,-66.79086528644216,-66.77922651360313,-66.76764379596162,-66.75611704873846,-66.74464618717806,-66.73323112636925,-66.72187178107782,-66.71056806559096,-66.6993198935733,-66.68812717793442,-66.67698983070743,-66.66590776293816,-66.65488088458464,-66.64390910442617,-66.63299232998175,-66.62213046743703,-66.61132342157971,-66.6005710957424,-66.58987339175286,-66.57923020989101,-66.56864144885203,-66.55810700571566,-66.54762677592063,-66.53720065324434,-66.52682852978718,-66.5165102959611,-66.50624584048224,-66.49603505036724,-66.48587781093282,-66.47577400579858,-66.46572351689254,-66.4557262244592,-66.4457820070702,-66.43589074163681,-66.42605230342456,-66.41626656606952,-66.40653340159628,-66.39685268043714,-66.38722426417405,-66.37764799533959,-66.36812369300306,-66.35865115449076,-66.34923016014244,-66.3398604786414,-66.33054187173818,-66.32127409800972,-66.3120569156722,-66.30289008459643,-66.29377336769677,-66.28470653184564,-66.27568934843664,-66.26672159369193,-66.25780304878495,-66.24893349983236,-66.240112737794,-66.2313405583099,-66.22261676149539,-66.21394115170963,-66.20531353730888,-66.19673373039247,-66.18820154654763,-66.17971680459732,-66.17127932635391,-66.16288893638117,-66.15454546176568,-66.14624873189885,-66.13799857826987,-66.1297948342701,-66.12163733500874,-66.11352591713995,-66.10546041870082,-66.0974406789604,-66.08946653827894,-66.08153783797728,-66.07365442021582,-66.06581612788258,-66.05802280449011,-66.05027429408047,-66.04257044113811,-66.03491109051012,-66.02729608733327,-66.01972527696766,-66.01219850493638,-66.00471561687091,-65.99727645846184,-65.98988087541446,-65.98252871340908,-65.97521981806563,-65.96795403491211,-65.960731209357,-65.95355118666484,-65.94641381193512,-65.93931893008413,-65.93226638582937,-65.92525602367661,-65.91828768790914,-65.91136122257919,-65.90447647150123,-65.89763327824708,-65.89083148614266,-65.88407093826616,-65.87735147744763,-65.87067294626976,-65.86403518706979,-65.8574380419424,-65.85088135274363,-65.84436496109547,-65.8378887083913,-65.83145243580203,-65.82505598428268,-65.81869919457965,-65.81238190723845,-65.8061039626117,-65.79986520086771,-65.79366546199923,-65.78750458583244,-65.78138241203642,-65.77529878013252,-65.76925352950407,-65.76324649940624,-65.75727752897588,-65.75134645724161,-65.7454531231338,-65.73959736549476,-65.73377902308879,-65.72799793461238,-65.72225393870427,-65.71654687395556,-65.71087657891982,-65.70524288761322,-65.69964562092532,-65.69408458208592,-65.68855955741459,-65.68307031993588,-65.67761663369782,-65.67219825769808,-65.66681494905303,-65.6614664653932,-65.65615256659508,-65.65087301598602,-65.6456275811471,-65.64041603441642,-65.63523815317247,-65.63009371995796,-65.62498252248905,-65.61990435358344,-65.61485901103174,-65.60984629743032,-65.60486601998878,-65.5999179903218,-65.5950020242327,-65.59011794149367,-65.58526556562673,-65.58044472368795,-65.57565524605722,-65.57089696623468,-65.56616972064494,-65.56147334844967,-65.55680769136889,-65.55217259351124,-65.54756790121318,-65.54299346288707,-65.53844912887791,-65.53393475132881,-65.52945018405445,-65.52499528242267,-65.5205699032436,-65.51617390466625,-65.51180714608185,-65.50746948803402,-65.50316079213516,-65.4988809209888,-65.4946297381175,-65.49040710789629,-65.48621289549085,-65.48204696680055,-65.47790918840587,-65.47379942751995,-65.46971755194399,-65.46566343002638,-65.4616369306251,-65.45763792307336,-65.45366627714814,-65.44972186304157,-65.44580455133475,-65.44191421297401,-65.43805071924947,-65.43421394177545,-65.43040375247298,-65.42662002355397,-65.42286262750706,-65.41913143708496,-65.41542632529321,-65.41174716538023,-65.40809383082853,-65.40446619534706,-65.40086413286458,-65.39728751752396,-65.39373622367731,-65.39021012588188,-65.3867090988968,-65.38323301768038,-65.37978175738807,-65.37635519337088,-65.37295320117452,-65.36957565653876,-65.36622243539739,-65.36289341387848,-65.35958846830506,-65.356307475196,-65.35305031126734,-65.34981685343372,-65.34660697881016,-65.34342056471398,-65.34025748866702,-65.33711762839779,-65.33400086184409,-65.3309070671555,-65.3278361226961,-65.32478790704732,-65.3217622990108,-65.31875917761135,-65.31577842210007,-65.31281991195729,-65.30988352689589,-65.30696914686438,-65.30407665205009]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1375\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1376\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1371\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1372\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1373\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1383\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1377\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1378\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1379\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.998598911837,-64.99794925593888,-64.99732966642313,-64.99673762712916,-64.99617088430784,-64.99562741762804,-64.99510541447556,-64.9946032471633,-64.99411945271653,-64.9936527149364,-64.99320184847976,-64.99276578472384,-64.99234355921139,-64.99193430049557,-64.99153722022506,-64.99115160432804,-64.99077680517047,-64.99041223457797,-64.99005735762395,-64.98971168709728,-64.98937477857322,-64.9890462260198,-64.98872565787964,-64.98841273357424,-64.98810714038349,-64.98780859065901,-64.98751681933402,-64.9872315816972,-64.98695265140148,-64.9866798186819,-64.98641288875973,-64.98615168041253,-64.9858960246922,-64.98564576377485,-64.98540074992856,-64.98516084458598,-64.984925917511,-64.98469584604923,-64.9844705144533,-64.98424981327543,-64.98403363881987,-64.98382189264916,-64.98361448113856,-64.98341131507355,-64.9832123092862,-64.98301738232615,-64.98282645616295,-64.98263945591637,-64.98245630961195,-64.98227694795926,-64.98210130415067,-64.98192931367839,-64.98176091416826,-64.98159604522843,-64.98143464831162,-64.98127666658955,-64.98112204483847,-64.98097072933463,-64.98082266775884,-64.98067780910918,-64.98053610362118,-64.98039750269471,-64.980261958827,-64.98012942555118,-64.97999985737995,-64.97987320975372,-64.97974943899305,-64.97962850225485,-64.97951035749198,-64.97939496341611,-64.97928227946345,-64.97917226576304,-64.97906488310757,-64.97896009292623,-64.97885785725978,-64.97875813873726,-64.97866090055454,-64.97856610645431,-64.97847372070756,-64.97838370809629,-64.9782960338975,-64.97821066386815,-64.9781275642313,-64.97804670166295,-64.97796804327993,-64.97789155662848,-64.97781720967353,-64.9777449707887,-64.97767480874688,-64.97760669271136,-64.97754059222748,-64.97747647721481,-64.97741431795967,-64.9773540851082,-64.97729574965965,-64.97723928296008,-64.9771846566965,-64.97713184289104,-64.9770808138957,-64.97703154238708,-64.97698400136159,-64.97693816413066,-64.97689400431629,-64.97685149584677,-64.9768106129525,-64.97677133016207,-64.97673362229838,-64.97669746447504,-64.97666283209273,-64.97662970083584,-64.97659804666914,-64.97656784583448,-64.97653907484779,-64.97651171049594,-64.97648572983388,-64.9764611101817,-64.97643782912188,-64.97641586449653,-64.97639519440474,-64.97637579719998,-64.9763576514875,-64.97634073612193,-64.97632503020472,-64.97631051308181,-64.97629716434125,-64.97628496381084,-64.9762738915559,-64.97626392787703,-64.97625505330782,-64.97624724861278,-64.97624049478507,-64.97623477304448,-64.97623006483528,-64.97622635182415,-64.97622361589818,-64.9762218391628,-64.97622100393981,-64.97622109276539,-64.97622208838814,-64.97622397376716,-64.97622673207012,-64.97623034667136,-64.97623480114999,-64.97624007928805,-64.97624616506866,-64.97625304267416,-64.97626069648429,-64.97626911107443,-64.97627827121374,-64.97628816186347,-64.97629876817508,-64.9763100754886,-64.97632206933083,-64.97633473541363,-64.97634805963222,-64.97636202806343,-64.9763766269641,-64.9763918427693,-64.97640766209075,-64.9764240717151,-64.97644105860233,-64.9764586098841,-64.97647671286212,-64.97649535500656,-64.97651452395442,-64.97653420750798,-64.97655439363318,-64.97657507045807,-64.97659622627124,-64.97661784952031,-64.97663992881033,-64.97666245290229,-64.9766854107116,-64.97670879130655,-64.97673258390687,-64.97675677788216,-64.97678136275047,-64.97680632817683,-64.97683166397178,-64.97685736008987,-64.97688340662827,-64.97690979382539,-64.9769365120593,-64.97696355184648,-64.97699090384035,-64.97701855882984,-64.97704650773807,-64.97707474162094,-64.97710325166577,-64.97713202918995,-64.97716106563956,-64.97719035258812,-64.97721988173515,-64.97724964490492,-64.97727963404512,-64.97730984122556,-64.97734025863689,-64.97737087858928,-64.97740169351123,-64.93538594824155,-64.85567106622491,-64.7421895215917,-64.59850082631391,-64.42782873073864,-64.2330940697558,-64.0169437593253,-63.78177645050994,-63.52973963383349,-63.26277438976335,-62.98263543733259,-62.69090483800934,-62.38897200114539,-62.078084944270294,-61.75936164001186,-61.43376297186855,-61.1021279973203,-60.765195336817015,-60.42356783643669,-60.07774358880352,-59.728141839495095,-59.375049519333295,-59.01866785368003,-58.6591344429509,-58.29643881336777,-57.93050853768526,-57.56119642047543,-57.18821046806506,-56.81120702232628,-56.429724962668416,-56.04318118971834,-55.65093949204756,-55.25216221943077,-54.845931728334506,-54.43119268424509,-54.00668985100294,-53.57108619299188,-53.12271425943843,-52.6597916864331,-52.18019953289119,-51.72339424934042,-51.28235489518952,-50.85042880416219,-50.4212699002511,-49.98865029742721,-49.54659423001409,-49.08893114854003,-48.60956628314978,-48.10202520559616,-47.559600188883735,-46.974892579813044,-46.339949185344466,-45.64562506366333,-44.88162982602735,-44.036149818787386,-43.09535203402653,-42.04288260020619,-40.85939843801685,-39.52179866852613,-38.002488930618306,-36.268639006373206,-34.281160100490254,-31.994169837712256,-29.354749398516383,-26.304115087301867,-22.78055849412855,-18.726458184221187,-14.101212241321273,-8.90152720127092,-3.1888949850765176,2.884237438723927,9.065773190816149,15.030705895952192,20.44735539191572,25.05826962482452,28.73574493058252,31.48627177069815,33.41314637700453,34.66451630081989,35.39110242334699,35.72254529323123,35.75972183839812,35.57642538605371,35.224782422106735,34.74110096482446,34.150752107273526,33.471783007393654,32.71741258939222,31.897681695948982,31.020524778585855,30.092458183205252,29.119020279138514,28.10504838234548,27.054859474128772,25.972367481209588,24.861161089048533,23.72455625353342,22.565628591491414,21.387237391940992,20.19204300079508,18.982520027772892,17.760967913876854,16.529517994381333,15.290144514456088,14.044671080623129,12.794777338883417,11.54199385082306,10.287722687023606,9.033245953672616,7.779730367856143,6.528205021202863,5.279602467984663,4.034765673828877,2.7944499066573822,1.5592817390669587,0.32981985687603443,-0.8934376167194564,-2.110055035034096,-3.319695187442366,-4.522100745053109,-5.717045090791899,-6.904340922403943,-8.08384402198187,-9.255497322148404,-10.419318279710877,-11.575335310484505,-12.723602123755335,-13.86420630257916,-14.997274905859083,-16.12297870246062,-17.24163229340739,-18.353559778537818,-19.459114610389097,-20.558695844075313,-21.652760407237423,-22.741833321433482,-23.826516961513025,-24.907499932853046,-25.985565836529343,-27.061601996436096,-28.136673345695442,-29.211952249658363,-30.288716740069688,-31.368367432043566,-32.45243924669288,-33.54260897445635,-34.64069896185192,-35.74867667080884,-36.86864943536511,-38.00285335747519,-39.153636528831996,-40.32349963875272,-41.51493660515872,-42.73039306703331,-43.972201164338706,-45.242489115395095,-46.542984279800095,-47.87488746949399,-49.238704311846895,-50.633817612995664,-52.05832892938863,-53.50885137924999,-54.9798091161895,-56.46379258479625,-57.95067844078668,-59.42843906267284,-60.88266843285605,-62.297802627420786,-63.65745985814837,-64.94584172520288,-66.14893332779576,-67.25537999976139,-68.25755018069985,-69.15196582195493,-69.93922761922947,-70.62350952573098,-71.21174894737652,-71.71281501236483,-72.13653936647704,-72.49297800033246,-72.79180649931767,-73.04196330934667,-73.25142104563348,-73.42710327948491,-73.57491123682487,-73.69979262041453,-73.80584364503035,-73.89642317265096,-73.97426578633647,-74.04158637700579,-74.10017244567659,-74.1514639466942,-74.1966200874169,-74.23657434102398,-74.2720794148495,-74.30374366043287,-74.33206034566419,-74.35743106502629,-74.38018439037603,-74.40059068995681,-74.41887388188304,-74.43522074650006,-74.44978830141179,-74.46270964267127,-74.47409857354133,-74.48405327581791,-74.4926592254322,-74.49999151157708,-74.5061166849058,-74.51109423370377,-74.51497776591387,-74.51781595834294,-74.51965332135511,-74.52053081712042,-74.52048636144129,-74.51955523285505,-74.51777040773776,-74.51516283622294,-74.5117616706692,-74.50759445598452,-74.50268728920146,-74.49706495418724,-74.49075103617848,-74.48376801988599,-74.47613737416599,-74.46787962566067,-74.45901442333862,-74.4495605954902,-74.43953620043386,-74.42895857194979,-74.41784436026673,-74.40620956927435,-74.39406959051085,-74.38143923437626,-74.36833275894274,-74.35476389666852,-74.34074587927006,-74.32629146096504,-74.31141294026399,-74.29612218046081,-74.28043062894916,-74.26434933547313,-74.24788896940504,-74.23105983613048,-74.21387189261006,-74.19633476217862,-74.17845774863541,-74.16024984967221,-74.14171976968171,-74.1228759319836,-74.10372649050232,-74.08427934092741,-74.06454213138403,-74.04452227263971,-74.0242269478706,-74.00366312200909,-73.98283755069295,-73.9617567536893,-73.9404270614971,-73.9188546308921,-73.89704545002401,-73.87500534369246,-73.85273997871874,-73.83025486934834,-73.80755538263348,-73.78464674375668,-73.76153404126516,-73.73822223219368,-73.7147161470591,-73.69102049471479,-73.66713986705675,-73.64307874357591,-73.6188414957543,-73.59443239130363,-73.569855598247,-73.54511518884517,-73.52021514336992,-73.49515935372756,-73.46995162693607,-73.44459568845991,-73.4190951854066,-73.39345368958924,-73.36767470045956,-73.34176164791582,-73.31571789498992,-73.28954674041815,-73.26325142109985,-73.23683511444827,-73.21030094063752,-73.18365196475,-73.1568911988278,-73.1300216038321,-73.10304609151424,-73.07596752620171,-73.04878872650282,-73.02151246693316,-72.99414147946705,-72.9666784305793,-72.93912586223912,-72.9114863061811,-72.88376227972306,-72.85595628250333,-72.82807079396903,-72.80010827147652,-72.77207114888971,-72.74396183558206,-72.71578271576429,-72.68753614807402,-72.6592244653745,-72.63084997471913,-72.60241495744592,-72.57392166937306,-72.54537234107129,-72.51676917819364,-72.48811436184685,-72.45941004899124,-72.43065837285884,-72.40186144338135,-72.37302134762125,-72.34414015020076,-72.31521989372469,-72.28626259919372,-72.25727026640592,-72.22824487434474,-72.19918838155198,-72.17010272648517,-72.14098982785872,-72.11185158496858,-72.08268987800041,-72.0535065683215,-72.02430349875655,-71.99508249384793,-71.96584532443924,-71.93659357327881,-71.9073288509571,-71.87805278806773,-71.84876702868155,-71.81947322492044,-71.79017303245232,-71.76086810675748,-71.731560100041,-71.7022506586854,-71.6729414211557,-71.64363401628198,-71.6143300618574,-71.58503116349915,-71.55573891372826,-71.52645489123138,-71.49718066027349,-71.46791777023549,-71.43866775525501,-71.40943213395205,-71.38021240922427,-71.35101006809924,-71.32182658163298,-71.29266340484592,-71.26352197668918,-71.23440372003468,-71.20531004168458,-71.17624233239547,-71.1472019669142,-71.11819030402248,-71.08920868658811,-71.06025844162083,-71.0313408803316,-71.00245729819393,-70.97360897500657,-70.94479686537795,-70.91602194035704,-70.8872852122585,-70.85858772534243,-70.829930547942,-70.80131476581977,-70.77274147656681,-70.74421178488716,-70.71572679863377,-70.6872876254824,-70.65889537014667,-70.63055113205229,-70.6022560034005,-70.57401106756123,-70.54581739774557,-70.51767605591425,-70.48958809188584,-70.46155454261324,-70.43357643160239,-70.40565476845022,-70.37779054848329,-70.34998475248061,-70.32223834646695,-70.29455228156509,-70.26692749389724,-70.23936490452711,-70.21186541943578,-70.18442992952549,-70.15705931064623,-70.12975442364105,-70.10251611440664,-70.07534521396614,-70.04824253855186,-70.02120888969576,-69.99424505432616,-69.967351702146,-69.9405291268452,-69.91377769312389,-69.88709782368397,-69.86048998813,-69.83395469350513,-69.80749247622829,-69.78110389523195,-69.75478952612927,-69.72854995626324,-69.70238578051192,-69.67629759774138,-69.65028600781349,-69.6243516090688,-69.5984949962158,-69.57271675856799,-69.5470174785778,-69.52139773062427,-69.49585808001702,-69.47039908218441,-69.44502128201871,-69.41972521335428,-69.39451139855889,-69.36938034822072,-69.34433256091619,-69.31936852304592,-69.29448870872812,-69.26969357973985,-69.24498358549849,-69.22035916307661,-69.1958207372445,-69.17136872053544,-69.14700351332957,-69.12272550395302,-69.09853506878915,-69.07443257239943,-69.05041836765203,-69.02649279585611,-69.00265618690061,-68.978908859396,-68.95525056064534,-68.93168105296131,-68.90820018263402,-68.88480786616951,-68.86150407845531,-68.83828884259006,-68.81516222115037,-68.7921243086993,-68.76917522536709,-68.74631511135836,-68.72354412225897,-68.70086242503358,-68.67827019461903,-68.65576761103186,-68.63335485691896,-68.61103211549003,-68.58879956877891,-68.56665739618755,-68.5446057732731,-68.52264487074369,-68.50077485363292,-68.4789958806278,-68.45730810352745,-68.43571166681369,-68.41420670731682,-68.39279335396243,-68.3714717275868,-68.35024194081032,-68.32910409795996,-68.30805829503275,-68.28710461969368,-68.2662431513022,-68.24547396096247,-68.22479711159295,-68.20421265801198,-68.18372064703611,-68.16332111758858,-68.1430141008159,-68.12279962021046,-68.10267769173772,-68.08264832396664,-68.0627115182022,-68.04286726861918,-68.02311556239628,-68.00345637985022,-67.9838896945689,-67.96441485492244,-67.94503117268498,-67.92573806357625,-67.90653503191221,-67.88742165731034,-67.86839758318094,-67.84946250677127,-67.83061617055965,-67.81185835482307,-67.79318887122496,-67.77460755728946,-67.75611427164597,-67.7377088899426,-67.71939130134041,-67.70116140551163,-67.68301911007492,-67.66496432840945,-67.64699697779704,-67.62911697784826,-67.6113242491739,-67.5936187122687,-67.57600028657775,-67.55846888972081,-67.5410244368521,-67.52366684013676,-67.50639600832733,-67.48921184642582,-67.47211425541896,-67.45510313207582,-67.4381783687984,-67.42133985351721,-67.40458746962474,-67.38792109594094,-67.37134060670532,-67.35484587159142,-67.33843675573968,-67.32211311980538,-67.305874820019,-67.2897217082564,-67.2736536321169,-67.2576704350075,-67.24177195623156,-67.22595803108109,-67.21022849093117,-67.19458316333592,-67.1790218721251,-67.16354443750085,-67.14815067613395,-67.13284040125941,-67.11761342277069,-67.10246954731265,-67.08740857837286,-67.07243031637107,-67.05753455874681,-67.04272110004501,-67.02798973199954,-67.01334024361468,-66.99877242124457,-66.98428598187284,-66.96987992646042,-66.95555337971318,-66.94130557312575,-66.92713583020826,-66.91304355362084,-66.89902821397516,-66.88508934009266,-66.87122651053582,-66.8574393462514,-66.8437275041851,-66.83009067174449,-66.81652856200253,-66.80304090954738,-66.78962746689594,-66.77628800139912,-66.76302229257544,-66.74983012981788,-66.73671131042555,-66.72366563791792,-66.7106929205947,-66.69779297030892,-66.68496560142523,-66.67221062993845,-66.65952787273112,-66.64691714695117,-66.63437826949323,-66.62191105656939,-66.60951532335709,-66.59719088371298,-66.58493754994372,-66.57275513262516,-66.56064344046312,-66.54860228018934,-66.53663145648738,-66.52473077194382,-66.51290002702075,-66.50113902004607,-66.48944754721863,-66.47782540262568,-66.46627237827039,-66.45478826410748,-66.44337284808552,-66.43202591619433,-66.42074725251646,-66.40953663928157,-66.39839385692304,-66.38731868413608,-66.3763108979366,-66.36537027372052,-66.35449658532292,-66.34368960507699,-66.33294910387212,-66.32227485121128,-66.31166661526716,-66.3011241629373,-66.2906472598978,-66.2802356706557,-66.26988915859994,-66.25960748605081,-66.24939041430807,-66.23923770369737,-66.22914911361542,-66.21912440257358,-66.20916332824008,-66.19926564748083,-66.18943111639885,-66.17965949037244,-66.169950524092,-66.16030397159567,-66.15071958630374,-66.1411971210519,-66.13173632812348,-66.12233695928046,-66.11299876579365,-66.1037214984717,-66.09450490768938,-66.08534874341478,-66.07625275523576,-66.06721669238556,-66.05824030376762,-66.04932333797963,-66.04046554333692,-66.03166666789511,-66.02292645947212,-66.01424466566958,-66.00562103389365,-65.99705531137518,-65.98854702046934,-65.98009529222232,-65.97169935644435,-65.96335852866171,-65.95507219870777,-65.9468398207514,-65.93866090458633,-65.9305350080257,-65.92246173026597,-65.91444070610021,-65.90647160087589,-65.89855410610467,-65.89068793564347,-65.88287282237543,-65.87510851532848,-65.86739477717659,-65.8597313820757,-65.85211811379209,-65.84455476408607,-65.83704113131864,-65.82957701925262,-65.82216223602317,-65.81479659325595,-65.80747990531374,-65.80021198865475,-65.79299266128781,-65.7858217423118,-65.77869905152791,-65.77162440911508,-65.76459763535982,-65.75761855043324,-65.75068697420838,-65.74380272611256,-65.73696562500946,-65.73017548910678,-65.72343213588579,-65.7167353820493,-65.71008504348545,-65.70348093524481,-65.69692287152854,-65.69041066568596,-65.68394413021988,-65.67752307679837,-65.67114731627163,-65.66481665869328,-65.65853091334488,-65.65228988876314,-65.64609339276923,-65.63994123249948,-65.63383321443716,-65.627769144445,-65.62174882779799,-65.61577206921633,-65.60983867289829,-65.60394844255268,-65.598101181431,-65.59229669235904,-65.58653477776772,-65.58081523972338,-65.57513787995723,-65.56950249989401,-65.5639089006799,-65.55835688320947,-65.55284624815194,-65.5473767959765,-65.5419483269769,-65.5365606412951,-65.53121353894424,-65.52590681983082,-65.52064028377602,-65.51541373053642,-65.51022695982394,-65.5050797713251,-65.49997196471963,-65.49490333969851,-65.48987369598126,-65.48488283333279,-65.47993055157964,-65.47501665062568,-65.4701409304673,-65.46530319120815,-65.46050323307337,-65.45574085642342,-65.45101586176746,-65.44632804977634,-65.44167722129522,-65.43706317735578,-65.43248571918812,-65.42794464823236,-65.42343976614981,-65.41897087483399,-65.41453777642121,-65.41014027330101,-65.40577816812622,-65.40145126382284,-65.39715936359966,-65.39290227095765,-65.38867978969913,-65.38449172393673,-65.38033787810214,-65.37621805695467,-65.37213206558961,-65.36807970944646,-65.36406079431691,-65.36007512635273,-65.35612251207341,-65.35220275837379,-65.34831567253137,-65.34446106221357,-65.34063873548486,-65.33684850081373,-65.33309016707952,-65.32936354357912,-65.32566844003358,-65.3220046665946,-65.31837203385082,-65.31477035283415,-65.3111994350258,-65.3076590923624,-65.30414913724185,-65.30066938252916,-65.29721964156218,-65.29379972815718,-65.29040945661443,-65.28704864172353,-65.28371709876885,-65.28041464353471,-65.27714109231056,-65.27389626189603,-65.27067996960594,-65.26749203327515,-65.26433227126343,-65.26120050246017,-65.258096546289,-65.2550202227124,-65.25197135223621,-65.24894975591398,-65.24595525535138,-65.24298767271041,-65.24004683071362,-65.23713255264822,-65.23424466237012,-65.23138298430788,-65.22854734346666,-65.225737565432,-65.22295347637359,-65.22019490304896,-65.21746167280712,-65.21475361359208,-65.21207055394635,-65.20941232301433,-65.20677875054574,-65.20416966689878,-65.20158490304345,-65.1990242905647,-65.1964876616654,-65.19397484916955,-65.19148568652508,-65.18902000780686,-65.18657764771945,-65.18415844159992,-65.18176222542058,-65.1793888357916,-65.17703810996356,-65.17470988583008,-65.1724040019302]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1384\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1385\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1380\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1381\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1382\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1393\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1387\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1388\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1389\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844425136,-64.99988107211001,-64.9998084306499,-64.99972214764252,-64.99962369753801,-64.9995144165318,-64.9993955160687,-64.99926809495432,-64.99913315022349,-64.99899158689979,-64.99884422676449,-64.99869181624054,-64.9985350334856,-64.99837449477738,-64.99821076026592,-64.99804433915868,-64.99787569439785,-64.99770524688209,-64.99753337927989,-64.99736043947617,-64.99718674368971,-64.99701257929458,-64.99683820737549,-64.99666386504373,-64.99648976753747,-64.99631611012784,-64.99614306984986,-64.99597080707548,-64.99579946694378,-64.99562918066249,-64.99546006669293,-64.99529223182958,-64.99512577218431,-64.9949607740841,-64.99479731489052,-64.9946354637481,-64.9944752822682,-64.9943168251544,-64.99416014077448,-64.99400527168412,-64.99385225510643,-64.99370112337144,-64.99355190431889,-64.9934046216678,-64.9932592953555,-64.99311594184894,-64.99297457443062,-64.9928352034613,-64.99269783662147,-64.9925624791335,-64.99242913396586,-64.99229780202121,-64.99216848230948,-64.99204117210725,-64.99191586710461,-64.99179256154044,-64.99167124832717,-64.99155191916574,-64.99143456465166,-64.99131917437279,-64.99120573699963,-64.99109424036858,-64.99098467155879,-64.99087701696315,-64.99077126235376,-64.99066739294244,-64.9905653934366,-64.99046524809079,-64.99036694075441,-64.99027045491569,-64.99017577374232,-64.99008288011908,-64.98999175668246,-64.98990238585274,-64.9898147498636,-64.98972883078939,-64.98964461057045,-64.98956207103639,-64.98948119392759,-64.9894019609151,-64.98932435361894,-64.98924835362503,-64.98917394250077,-64.98910110180945,-64.9890298131235,-64.98896005803665,-64.98889181817528,-64.98882507520867,-64.98875981085857,-64.98869600690797,-64.9886336452091,-64.98857270769084,-64.98851317636543,-64.98845503333476,-64.98839826079598,-64.9883428410467,-64.98828875648972,-64.98823598963735,-64.98818452311531,-64.98813433966635,-64.9880854221534,-64.98803775356255,-64.98799131700564,-64.98794609572263,-64.98790207308376,-64.98785923259133,-64.98781755788148,-64.9877770327256,-64.98773764103164,-64.98769936684522,-64.98766219435059,-64.98762610787146,-64.98759109187166,-64.98755713095572,-64.98752420986928,-64.98749231349942,-64.98746142687492,-64.98743153516634,-64.98740262368612,-64.98737467788854,-64.98734768336958,-64.98732162586678,-64.98729649125903,-64.98727226556622,-64.98724893494891,-64.98722648570794,-64.98720490428398,-64.98718417725708,-64.98716429134606,-64.98714523340801,-64.98712699043769,-64.98710954956687,-64.9870928980637,-64.98707702333202,-64.98706191291066,-64.98704755447268,-64.98703393582467,-64.98702104490594,-64.98700886978777,-64.98699739867256,-64.98698661989306,-64.98697652191154,-64.98696709331894,-64.986958322834,-64.98695019930244,-64.98694271169606,-64.98693584911189,-64.98692960077129,-64.98692395601907,-64.98691890432258,-64.98691443527085,-64.98691053857365,-64.98690720406061,-64.9869044216803,-64.98690218149929,-64.98690047370131,-64.98689928858629,-64.98689861656943,-64.98689844818033,-64.98689877406201,-64.98689958497008,-64.98690087177174,-64.98690262544494,-64.9869048370774,-64.98690749786577,-64.98691059911464,-64.98691413223568,-64.98691808874676,-64.98692246027096,-64.98692723853576,-64.98693241537207,-64.98693798271337,-64.98694393259481,-64.98695025715233,-64.98695694862172,-64.98696399933783,-64.98697140173358,-64.98697914833917,-64.98698723178114,-64.98699564478156,-64.9870043801571,-64.98701343081824,-64.98702278976832,-64.98703245010277,-64.98704240500822,-64.98705264776164,-64.98706317172952,-64.98707397036702,-64.98708503721716,-64.98709636590992,-64.98710795016152,-64.98711978377351,-64.98713186063199,-64.98714417470678,-64.98715672005066,-64.9871694907985,-64.98718248116647,-64.98719568545133,-64.98720909802951,-63.8558716883749,-62.78241294023915,-61.76275257071386,-60.79313281530131,-59.870091326000306,-58.99043648379463,-58.151224883142824,-57.3497407739721,-56.583476512612336,-55.85011537705734,-55.147515890125426,-54.47369738259154,-53.82682573365891,-53.205201386649385,-52.60724833835713,-52.031502914828415,-51.4766041876426,-50.94128553302929,-50.42436559532494,-49.924740648990834,-49.44137813346984,-48.973308950992354,-48.51962155291583,-48.07945699394583,-47.65200175214902,-47.23648347822349,-46.83216659210441,-46.43834604292223,-46.054344155579834,-45.679505699290246,-45.313193085114335,-44.95478385589131,-44.60366392313601,-44.259224755706526,-43.920859011781204,-43.58795456355917,-43.25989233291004,-42.93603688959458,-42.61573392341579,-42.29830129537472,-43.114367604265496,-43.873940331552156,-44.580296903763895,-45.23635256474745,-45.8446831548839,-46.407550638377316,-46.926914054452375,-47.40444788723084,-47.841545988217455,-48.2393296184419,-48.598641528341574,-48.920044386399454,-49.20380044635908,-49.44985366637547,-49.65780160645285,-49.826854150599516,-49.95577959490258,-50.042839755045165,-50.08570579825459,-50.08135679925061,-50.025961742111846,-49.91473755838479,-49.741798901324906,-49.5000087360869,-49.180871533447124,-48.774519103839886,-48.269904552317506,-47.655368379225095,-46.91977447331497,-46.05439823527007,-45.055488123922316,-43.92694796276778,-42.682085599146724,-41.34330957600484,-39.93944932688304,-38.50157607231659,-37.05891474559393,-35.636079320329394,-34.25199186140665,-32.920109476465164,-31.649338727181217,-30.44512858306137,-29.310455497100875,-28.246595835181093,-27.253684216461227,-26.331097757054685,-25.47771300318766,-24.69207537544445,-23.972510788934976,-23.31719963580567,-22.724226473025258,-22.191614048063695,-21.71734732308658,-21.29939087536883,-20.935701902761558,-20.62424023542032,-20.36297626147249,-20.149897472765097,-19.983013951975785,-19.860363053429587,-19.780013444106178,-19.74006861696353,-19.73867000831661,-19.773999623455705,-19.8442823316699,-19.947787841574183,-20.082832722799637,-20.24778171100388,-20.441048691228833,-20.661097493589484,-20.906443304225007,-21.175652785969202,-21.46734398709211,-21.780186198976676,-22.112901033854246,-22.46426164678063,-22.83309178242807,-23.218264929232145,-23.618704582057706,-24.03338394214552,-24.461324178862967,-24.9015930384341,-25.35330363822682,-25.815614628468644,-26.28772997193457,-26.76889685546231,-27.258404136598543,-27.755581126708332,-28.259796604554374,-28.77045800761781,-29.28701362753165,-29.808950715791923,-30.335794277493388,-30.867106409871614,-31.402486038940317,-31.94156897244241,-32.4840282238224,-33.029574581489534,-33.57795740699473,-34.128965648810784,-34.68243098728266,-35.238228736686736,-35.7962786470368,-36.35654616350971,-36.91904396550499,-37.48383364744035,-38.05102741909016,-38.62078970235948,-39.19333848797286,-39.76894629152844,-40.34794056244357,-40.930705272081646,-41.517677704074735,-42.109344187978486,-42.70623413123509,-43.308911694697535,-43.91796208707593,-44.53397487193544,-45.157523176145816,-45.78913135823435,-46.42923971275342,-47.07816492642373,-47.73604192205988,-48.402779305399314,-49.07799115623593,-49.76095639206317,-50.45056627353902,-51.145310800217935,-51.84327588716685,-52.54218213314872,-53.23945701724067,-53.932329180412786,-54.61794912104299,-55.2935161932084,-55.95639663196106,-56.60422034506103,-57.23494860168349,-57.846913519204456,-58.43882678390703,-59.009766076334174,-59.559144334265795,-60.08667010202791,-60.592303227525626,-61.07621045713135,-61.53872418444309,-61.98030543077407,-62.40151181431656,-62.80297060021676,-63.1853565296487,-63.54937392243598,-63.89574246237538,-64.22518610071482,-64.53842452600945,-64.8361667151234,-65.11910615751005,-65.38791741057402,-65.64325370414406,-65.88574536483614,-66.11599887589492,-66.33459642535611,-66.5420958258688,-66.73903071419424,-66.92591095819502,-67.10322321490446,-67.27143159577564,-67.43097840508742,-67.58228492526268,-67.72575222896035,-67.86176200258832,-67.99067736962682,-68.11284370507289,-68.22858943459345,-68.33822681374409,-68.44205268398404,-68.5403492032796,-68.63338454990672,-68.72141359869136,-68.80467856940462,-68.88340964739203,-68.95782557678709,-69.02813422685959,-69.09453313219355,-69.15721000749157,-69.2163432378708,-69.27210234555784,-69.32464843391321,-69.37413460972328,-69.42070638469343,-69.46450205706411,-69.50565307425198,-69.54428437739503,-69.5805147286535,-69.6144570220893,-69.64621857891642,-69.67590142788315,-69.70360257151589,-69.72941423892287,-69.75342412582515,-69.77571562245195,-69.79636802990824,-69.81545676559327,-69.83305355822182,-69.84922663297282,-69.8640408872646,-69.87755805763148,-69.88983687815306,-69.90093323086482,-69.91090028855753,-69.91978865035234,-69.92764647041899,-69.93451958018598,-69.94045160437388,-69.94548407116632,-69.94965651681687,-69.95300658497518,-69.95557012100112,-69.9573812615219,-69.95847251843506,-69.95887485981693,-69.95861778698311,-69.95772940759669,-69.95623650503994,-69.95416460425137,-69.95153803421715,-69.94837998729439,-69.94471257553342,-69.94055688415598,-69.93593302233762,-69.93086017143395,-69.92535663078276,-69.91943986120663,-69.913126526334,-69.90643253185011,-69.89937306278351,-69.89196261892796,-69.88421504849455,-69.87614358008359,-69.8677608530614,-69.85907894642256,-69.85010940621412,-69.8408632715941,-69.8313510995932,-69.8215829886448,-69.81156860094521,-69.80131718370285,-69.79083758933211,-69.78013829464471,-69.76922741908876,-69.75811274208317,-69.74680171949264,-69.73530149928614,-69.72361893641963,-69.71176060698166,-69.6997328216387,-69.687541638415,-69.67519287484002,-69.6626921194951,-69.65004474226632,-69.63725590230631,-69.62433055895181,-69.61127348193614,-69.5980892609614,-69.58478231468689,-69.57135689918259,-69.55781711589124,-69.5441669191369,-69.53041012321384,-69.51655040908594,-69.50259133072333,-69.48853632110071,-69.47438869787895,-69.46015166879012,-69.44582833674376,-69.43142170467107,-69.41693468012211,-69.40237007963016,-69.38773063285593,-69.37301898652392,-69.35823770816181,-69.34338928965357,-69.32847615061581,-69.3135006416066,-69.29846504717527,-69.28337158876148,-69.26822242745074,-69.25301966659389,-69.23776535429724,-69.22246148578967,-69.20711000567279,-69.19171281006003,-69.17627174860985,-69.16078862645851,-69.14526520500249,-69.12970319866447,-69.11410427821787,-69.09847007370237,-69.08280217699138,-69.06710214406218,-69.05137149701204,-69.03561172585661,-69.0198242901411,-69.00401062039049,-68.98817211942047,-68.97231016352787,-68.95642610357618,-68.94052126598959,-68.92459695366695,-68.90865444682517,-68.89269500378035,-68.87671986167369,-68.86073023714812,-68.84472732698072,-68.8287123086755,-68.81268634102024,-68.79665056461056,-68.78060610234441,-68.76455405988902,-68.74849552612282,-68.73243157355411,-68.71636325871805,-68.70029162255369,-68.68421769076224,-68.66814247414763,-68.65206696894082,-68.63599215710836,-68.61991900664654,-68.6038484718616,-68.5877814844813,-68.57171895534334,-68.555661776728,-68.53961082429096,-68.52356695866041,-68.50753102675262,-68.49150386285181,-68.47548628949316,-68.45947911818139,-68.4434831499729,-68.42749917594443,-68.41152797756804,-68.39557032700883,-68.37962698735926,-68.36369871282186,-68.34778624884972,-68.33189033225332,-68.31601169128018,-68.30015104567309,-68.28430910671155,-68.2684865772404,-68.25268415168863,-68.23690251608114,-68.2211423480455,-68.20540431681538,-68.18968908323214,-68.17399729974562,-68.15832961041498,-68.14268665091025,-68.12706904851522,-68.11147742213191,-68.09591238228694,-68.08037453114007,-68.06486446249488,-68.04938276181186,-68.03393000318567,-68.01850673883,-68.00311350234259,-67.98775081141184,-67.972419170051,-67.95711907043344,-67.94185099439186,-67.92661541463471,-67.91141279572527,-67.89624359486227,-67.88110826249479,-67.86600724279967,-67.8509409740448,-67.83590988885885,-67.82091441442402,-67.80595497260654,-67.79103198003676,-67.77614584814916,-67.76129698319076,-67.74648578620516,-67.73171265299787,-67.7169779740883,-67.70228213465197,-67.68762551445676,-67.67300848779553,-67.65843142341757,-67.64389468446048,-67.62939862838401,-67.61494360690682,-67.60052996594705,-67.58615804556733,-67.57182817992468,-67.55754069722549,-67.54329591968586,-67.52909416349735,-67.5149357387981,-67.50082094964938,-67.48675009401721,-67.4727234637592,-67.45874134461617,-67.44480399964182,-67.4309116708545,-67.41706458284082,-67.40326294576037,-67.38950695784045,-67.3757968074372,-67.36213267472871,-67.34851473309647,-67.33494315024329,-67.32141808908945,-67.30793970848212,-67.29450816374884,-67.28112360712063,-67.26778618804711,-67.25449605342237,-67.24125334773771,-67.22805821317476,-67.21491078965065,-67.20181121482483,-67.18875962407591,-67.17575615045529,-67.1628009246233,-67.14989407477287,-67.1370357265445,-67.12422600293581,-67.11146502420854,-67.09875290779493,-67.08608976820545,-67.07347571693906,-67.06091086239715,-67.04839530980216,-67.03592916112112,-67.02351251499486,-67.01114546667301,-66.99882810795505,-66.98656052713726,-66.97434280896591,-66.96217503459624,-66.95005728155726,-66.93798962372226,-66.92597213128468,-66.91400487073923,-66.90208790486794,-66.89022129273094,-66.87840508966167,-66.86663934726631,-66.85492409513179,-66.84325934091584,-66.83164507458869,-66.82008127199506,-66.8085678978332,-66.79710490813497,-66.78569225231955,-66.77432987488312,-66.7630177167789,-66.75175571653403,-66.74054381114352,-66.72938193677602,-66.71827002932116,-66.70720802480399,-66.6961958596887,-66.68523347109019,-66.67432079690981,-66.66345777590892,-66.65264434773195,-66.64188045288898,-66.6311660327062,-66.62050102925144,-66.60988538524067,-66.59931904393059,-66.58880194900145,-66.57833404443353,-66.56791527438031,-66.55754558304045,-66.54722491453066,-66.53695321276092,-66.52673042131325,-66.51655648332492,-66.50643134137697,-66.49635493738829,-66.4863272125159,-66.47634810706141,-66.46641756038393,-66.4565355108194,-66.44670189560628,-66.43691665081747,-66.42717971129844,-66.41749101061119,-66.40785048098397,-66.3982580532664,-66.38871365688996,-66.37921721983328,-66.36976866859222,-66.36036792815439,-66.35101492197785,-66.34170957197372,-66.33245179849247,-66.32324152031362,-66.31407865463868,-66.30496311708701,-66.29589482169447,-66.2868736809146,-66.27789960562208,-66.26897250511853,-66.26009228516456,-66.25125882699243,-66.24247199227163,-66.23373162730877,-66.22503756658678,-66.2163896357353,-66.20778765401168,-66.19923143636177,-66.19072079512055,-66.18225554140464,-66.17383548624179,-66.16546044147653,-66.15713022048573,-66.14884463873328,-66.14060351418922,-66.13240666763502,-66.12425392287373,-66.11614510686111,-66.10808004977164,-66.10005858501107,-66.09208054918574,-66.0841457820373,-66.07625412635002,-66.06840542783704,-66.06059953501061,-66.05283629904098,-66.04511557360733,-66.03743721474406,-66.02980108068475,-66.022207031706,-66.01465492997283,-66.00714463938698,-65.99967602543904,-65.99224895506559,-65.98486329651155,-65.97751891919853,-65.97021569359936,-65.962953491119,-65.95573218398191,-65.94855164512603,-65.94141174810312,-65.93431236698547,-65.9272533762789,-65.92023465084173,-65.91325606580962,-65.90631749652597,-65.89941881847777,-65.89255990723653,-65.88574063840413,-65.87896088756327,-65.87222053023237,-65.86551944182453,-65.85885749761047,-65.85223457268509,-65.84565054193749,-65.83910528002424,-65.8325986613456,-65.82613056002462,-65.81970084988883,-65.81330940445434,-65.80695609691229,-65.80064080011729,-65.79436338657793,-65.78812372844894,-65.78192169752515,-65.77575716523693,-65.76963000264698,-65.76354008044854,-65.75748726896465,-65.75147143814864,-65.74549245758548,-65.73955019649415,-65.73364452373075,-65.72777530779243,-65.72194241682197,-65.71614571861299,-65.71038508061568,-65.70466036994307,-65.69897145337777,-65.693318197379,-65.68770046809016,-65.68211813134648,-65.67657105268322,-65.67105909734379,-65.66558213028841,-65.66014001620275,-65.65473261950669,-65.64935980436337,-65.6440214280423,-65.63871732971357,-65.63344733433254,-65.62821125593157,-65.62300890039924,-65.61784006781662,-65.61270455441158,-65.60760215418408,-65.60253266024866,-65.59749586593436,-65.59249156567692,-65.58751955573364,-65.58257963474722,-65.5776716041815,-65.57279526864869,-65.5679504361453,-65.56313691821154,-65.5583545300269,-65.55360309045273,-65.54888242203143,-65.54419235095027,-65.53953270697659,-65.5349033233704,-65.53030403677943,-65.52573468712066,-65.52119511745214,-65.516685173838,-65.51220470520914,-65.50775356322181,-65.50333160211561,-65.4989386785726,-65.49457465157842,-65.49023938228643,-65.48593273388566,-65.48165457147302,-65.4774047619302,-65.47318317380568,-65.46898967720183,-65.46482414366743,-65.46068644609555,-65.45657645862676,-65.4524940565577,-65.4484391162548,-65.4444115150732,-65.44041113128046,-65.43643784398522,-65.43249153307035,-65.4285720791306,-65.42467936341441,-65.4208132677698,-65.4169736745941,-65.41316046678733,-65.409373527709,-65.40561274113821,-65.40187799123692,-65.39816916251588,-65.39448613980363,-65.3908288082178,-65.38719705313898,-65.38359076018676,-65.38000981519804,-65.37645410420708,-65.37292351342771,-65.36941792923695,-65.36593723816053,-65.3624813268597,-65.35905008211957,-65.3556433908387,-65.35226114001988,-65.3489032167621,-65.34556950825346,-65.34225990176517,-65.33897428464634,-65.3357125443196,-65.33247456827759,-65.32926024408,-65.32606945935142,-65.32290210177962,-65.31975805911458,-65.3166372191678,-65.3135394698123,-65.31046469898284,-65.30741279467671,-65.30438364495477,-65.30137713794285,-65.29839316183345,-65.29543160488767,-65.29249235543749,-65.28957530188816,-65.28668033272088,-65.28380733649556,-65.28095620185385,-65.27812681752232,-65.27531907231564,-65.27253285514,-65.26976805499665,-65.2670245609854,-65.26430226230836,-65.2616010482736,-65.258920808299,-65.25626143191603,-65.25362280877374,-65.25100482864258,-65.2484073814184,-65.24583035712642,-65.24327364592519,-65.24073713811062,-65.23822072412,-65.23572429453594,-65.23324774009045,-65.23079095166887,-65.22835382031388,-65.22593623722953,-65.22353809378508,-65.22115928151904,-65.218799692143,-65.2164592175456,-65.21413774979635,-65.21183518114947,-65.20955140404767,-65.20728631112603,-65.20503979521558,-65.2028117493472,-65.20060206675514,-65.19841064088074,-65.19623736537602,-65.19408213410726,-65.1919448411585,-65.18982538083507,-65.18772364766703,-65.18563953641257,-65.1835729420614,-65.18152375983811,-65.17949188520542,-65.17747721386746,-65.17547964177298,-65.17349906511855,-65.17153538035164,-65.16958848417377,-65.16765827354352,-65.16574464567958,-65.16384749806369,-65.16196672844357,-65.16010223483585,-65.15825391552886,-65.15642166908547,-65.15460539434588,-65.1528049904303,-65.15102035674165,-65.14925139296825,-65.14749799908638,-65.14576007536286,-65.14403752235756,-65.14233024092594,-65.14063813222147,-65.138961097698,-65.13729903911221,-65.13565185852588,-65.13401945830822,-65.1324017411381,-65.13079861000628,-65.12920996821761,-65.12763571939314,-65.12607576747223,-65.12453001671464,-65.12299837170255]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1394\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1395\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1390\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1391\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1392\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1402\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1396\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1397\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1398\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.9987636945507,-64.99821034832222,-64.99768732311597,-64.99718971697536,-64.99671408308582,-64.99625783545477,-64.99581894824438,-64.99539578442415,-64.99498698970879,-64.99459142284486,-64.99420810767162,-64.99383619897498,-64.99347495746416,-64.99312373099005,-64.99278194015042,-64.99244906704874,-64.99212464636327,-64.9918082581385,-64.99149952188127,-64.9911980916603,-64.99090365198978,-64.99061591433399,-64.99033461411129,-64.99005950810512,-64.98979037221086,-64.9895269994634,-64.98926919830161,-64.98901679103494,-64.98876961248357,-64.98852750876918,-64.98829033623673,-64.98805796049116,-64.98783025553521,-64.98760710299653,-64.98738839143397,-64.98717401571415,-64.98696387645072,-64.98675787949942,-64.98655593550308,-64.98635795948124,-64.98616387045988,-64.98597359113683,-64.98578704757958,-64.98560416895182,-64.98542488726613,-64.98524913715985,-64.98507685569218,-64.98490798216011,-64.98474245793143,-64.98458022629318,-64.98442123231392,-64.98426542271858,-64.98411274577461,-64.98396315118832,-64.9838165900105,-64.9836730145504,-64.98353237829721,-64.98339463584847,-64.9832597428446,-64.9831276559091,-64.98299833259384,-64.98287173132893,-64.98274781137683,-64.9826265327902,-64.98250785637335,-64.9823917436466,-64.98227815681373,-64.98216705873192,-64.98205841288403,-64.98195218335309,-64.98184833479876,-64.98174683243552,-64.98164764201255,-64.98155072979506,-64.98145606254701,-64.98136360751505,-64.98127333241358,-64.9811852054109,-64.98109919511624,-64.98101527056775,-64.98093340122115,-64.98085355693925,-64.98077570798203,-64.98069982499739,-64.98062587901245,-64.98055384142533,-64.98048368399749,-64.98041537884636,-64.98034889843854,-64.9802842155832,-64.98022130342598,-64.98016013544306,-64.98010068543559,-64.9800429275244,-64.97998683614486,-64.97993238604212,-64.97987955226638,-64.97982831016849,-64.97977863539563,-64.97973050388728,-64.97968389187116,-64.9796387758595,-64.97959513264529,-64.97955293929873,-64.97951217316383,-64.97947281185498,-64.97943483325373,-64.97939821550567,-64.97936293701729,-64.97932897645302,-64.97929631273229,-64.9792649250267,-64.9792347927572,-64.97920589559138,-64.97917821344078,-64.9791517264583,-64.9791264150356,-64.97910225980058,-64.97907924161495,-64.97905734157173,-64.97903654099288,-64.97901682142697,-64.9789981646468,-64.97898055264716,-64.97896396764257,-64.97894839206505,-64.9789338085619,-64.97892019999357,-64.9789075494315,-64.978895840156,-64.97888505565417,-64.97887517961787,-64.97886619594162,-64.97885808872059,-64.9788508422486,-64.97884444101622,-64.9788388697087,-64.97883411320406,-64.97883015657125,-64.97882698506812,-64.97882458413967,-64.97882293941609,-64.97882203671092,-64.97882186201927,-64.97882240151597,-64.97882364155375,-64.97882556866149,-64.97882816954247,-64.97883143107254,-64.97883534029846,-64.97883988443614,-64.97884505086894,-64.97885082714595,-64.97885720098034,-64.97886416024771,-64.97887169298436,-64.97887978738572,-64.97888843180472,-64.97889761475012,-64.97890732488499,-64.97891755102502,-64.97892828213706,-64.97893950733749,-64.97895121589063,-64.97896339720734,-64.97897604084334,-64.97898913649777,-64.97900267401175,-64.97901664336676,-64.97903103468326,-64.97904583821919,-64.97906104436854,-64.97907664365985,-64.97909262675488,-64.97910898444708,-64.97912570766027,-64.97914278744722,-64.97916021498823,-64.97917798158981,-64.97919607868332,-64.97921449782352,-64.97923323068738,-64.97925226907266,-64.97927160489658,-64.97929123019459,-64.97931113711901,-64.97933131793776,-64.9793517650331,-64.97937247090036,-64.9793934281467,-64.97941462948981,-64.97943606775677,-64.97945773588275,-64.97947962690985,-64.97950173398588,-64.97952405036315,-64.97954656939733,-64.97956928454623,-64.9795921893687,-64.97883976748149,-64.97508966611758,-64.96484581591638,-64.94410720814295,-64.90917005234073,-64.85714076254757,-64.78612231247011,-64.69517181684886,-64.58414294028738,-64.45349458261441,-64.30411069624459,-64.13714996494707,-63.95392921673206,-63.75583258033971,-63.54424000725591,-63.32050279651812,-63.08591608856215,-62.841702063075864,-62.58898123621055,-62.32877816890028,-62.06203219030621,-61.78959846190462,-61.51222047103148,-61.23055694789826,-60.94519532459071,-60.65664646843335,-60.36531835411887,-60.07156284346412,-59.77567877816999,-59.47786967618875,-59.178280029578765,-58.87701346288321,-58.574105378239565,-58.26951145714864,-57.96315584316491,-57.65492158839538,-57.344582751182784,-57.03188798309042,-56.71655992825026,-56.398196870382414,-56.07713575469504,-55.75513172154945,-55.43508638475028,-55.12035659138669,-54.81399688972242,-54.518172039720525,-54.23402021671775,-53.96176659460143,-53.7008670059545,-53.45009801683014,-53.207873357035716,-52.97238870205732,-52.741713707371495,-52.51375132558892,-52.286430571392856,-52.057732154087134,-51.825700448237754,-51.5883100627012,-51.34354909623751,-51.089451053983495,-50.8240757288634,-50.54533567136461,-50.251041531177044,-49.93895746706147,-49.60671477011826,-49.25158090676138,-48.87067768447188,-48.460813141902086,-48.018287715998895,-47.539114252832384,-47.01848279614521,-46.45113581350555,-45.83073547159722,-45.1501300392349,-44.40090505500841,-43.573149739354996,-42.6552844636557,-41.633667067650585,-40.492172518693536,-39.21174387768954,-37.769916661679986,-36.14025103153061,-34.291863014966275,-32.189142638309825,-29.791821823356308,-27.055876541859806,-23.9356570659515,-20.388518967679,-16.382682059295902,-11.908874397002645,-6.996349467323501,-1.730176531230411,3.7378126953741067,9.194910303453078,14.395397355736751,19.106604101067727,23.15587040326645,26.45775951634009,29.013321609304636,30.887465864044145,32.17857474771437,32.992719322180356,33.42729965410847,33.56369550574799,33.466084255896,33.18335032125144,32.75210106868709,32.1996536262786,31.54654230572324,30.808443228717685,29.99757866688005,29.123713983562634,28.194856782397952,27.217732888496222,26.198116646386335,25.14105885683479,24.051044739346914,22.932104273120657,21.787891388076645,20.621739552822742,19.436701640459994,18.23558035694355,17.02095180291487,15.795184331624489,14.560449187029052,13.318740284400846,12.07188549235175,10.821556357565383,9.569264119371963,8.316381352121763,7.064156561976854,5.813719536849621,4.566060697888206,3.322066299520348,2.0825341597074516,0.8481752115967753,-0.38041895580305995,-1.6027403259586,-2.8183371263045145,-4.026817155375745,-5.227857106195104,-6.42125355600726,-7.60682620990149,-8.78442987639191,-9.953959861467995,-11.115354341564576,-12.268659534621177,-13.413962717407673,-14.551368642628228,-15.681012613765313,-16.80306874088356,-17.91775600651428,-19.02534344655801,-20.126175616339154,-21.220712108065594,-22.309443098833835,-23.392910471450485,-24.471722548769044,-25.546565623329766,-26.618213696008873,-27.68753707291681,-28.755510066484174,-29.82321780803966,-30.891862020486432,-31.962765478846148,-33.037374777920554,-34.11729288519723,-35.20426328205389,-36.30012266894947,-37.40679850660143,-38.52629662396362,-39.66067927423402,-40.81203282902324,-41.98242361748595,-43.173839926096925,-44.388109391049326,-45.626771867260125,-46.89097160963568,-48.181324563181875,-49.49763319157349,-50.838737062741565,-52.20240948524845,-53.58492692624367,-54.98095386441962,-56.38362065436468,-57.78394397105472,-59.171513553649106,-60.53446500141276,-61.85993190648844,-63.134960038166355,-64.34704531979787,-65.48505337245803,-66.54010491363121,-67.50609332399655,-68.37996420680406,-69.16169691031112,-69.85399851648117,-70.46174768849426,-70.99138534275124,-71.45032708977485,-71.84631691144341,-72.18705360380945,-72.47982591560148,-72.73132014684924,-72.94752234901055,-73.13368351231718,-73.29433711447616,-73.43335673097945,-73.55402419717832,-73.65910221326348,-73.75090638664962,-73.83137238763474,-73.90211612411271,-73.96448623840136,-74.01960905510666,-74.06842649148236,-74.11172786207354,-74.1501764161159,-74.18433112555546,-74.2146646717534,-74.24157825926764,-74.26541380119255,-74.28646393797045,-74.30498027622885,-74.32118016814836,-74.33525229542727,-74.34736127448686,-74.35765146017091,-74.36625009272936,-74.37326990626393,-74.37881129507551,-74.38296411663389,-74.38580919546649,-74.3874195805256,-74.38786159904319,-74.38719574210825,-74.38547741086782,-74.38275754708951,-74.379083167608,-74.37449781873438,-74.36904196388875,-74.36275331540885,-74.35566711959385,-74.34781640248755,-74.33923218262687,-74.32994365592822,-74.31997835701658,-74.30936230058532,-74.2981201057822,-74.28627510612696,-74.27384944705918,-74.26086417287776,-74.24733930455334,-74.23329390966128,-74.21874616548892,-74.20371341620806,-74.18821222486861,-74.17225842085554,-74.15586714335633,-74.13905288130616,-74.12182951021127,-74.10421032619409,-74.08620807755617,-74.06783499411475,-74.04910281453462,-74.03002281184791,-74.01060581732995,-73.99086224287832,-73.9708020874486,-73.95043495904518,-73.9297701153994,-73.90881647887214,-73.88758265120696,-73.86607692785628,-73.844307311788,-73.82228152673866,-73.80000702990543,-73.77749102408153,-73.7547404692476,-73.73176209363497,-73.70856240427965,-73.68514769708639,-73.6615240664231,-73.6376974142656,-73.61367345891261,-73.58945774329015,-73.56505564286417,-73.5404723731793,-73.5157129970412,-73.49078243135897,-73.4656854536634,-73.44042670831647,-73.41501071242624,-73.3894418614811,-73.36372443471635,-73.33786260022568,-73.31186041982947,-73.28572185371112,-73.25945076483225,-73.2330509231371,-73.20652600955579,-73.1798796198158,-73.15311526807055,-73.12623639035355,-73.099246347866,-73.07214843010577,-73.04494585784491,-73.01764178596261,-72.99023930614044,-72.96274141578829,-72.93515100209228,-72.90747092128176,-72.87970399443866,-72.8518530052457,-72.82392069875826,-72.79590978082803,-72.76782291797421,-72.73966273757271,-72.71143182827424,-72.6831327405872,-72.65476798757773,-72.62634004565102,-72.59785135538634,-72.56930432240472,-72.54070131825286,-72.51204468129079,-72.48333671757348,-72.45457970171901,-72.42577587775766,-72.39692745995771,-72.368036633625,-72.33910555587389,-72.31013635636846,-72.2811311380329,-72.25209197773074,-72.223020926913,-72.19392001223542,-72.16479123614535,-72.13563657743875,-72.10645799178845,-72.0772574122442,-72.04803674970572,-72.01879789336964,-71.98954271115134,-71.9602729858806,-71.93099037943257,-71.90169657503664,-71.87239326743205,-71.84308215630435,-71.81376494145742,-71.78444331911854,-71.75511897905461,-71.72579360229773,-71.69646885934168,-71.667146408709,-71.6378278958129,-71.60851495205596,-71.57920919411966,-71.54991222340885,-71.52062562562156,-71.49135097042098,-71.46208981119031,-71.43284368485493,-71.40361411175917,-71.37440259558711,-71.3452106233189,-71.31603966521538,-71.28689117482533,-71.25776658901049,-71.22866732798441,-71.19959479536207,-71.17055037821737,-71.14153544714665,-71.1125513563364,-71.08359944363374,-71.05468103061874,-71.02579742267746,-70.99694990907531,-70.96813973255541,-70.93936786716563,-70.91063533603472,-70.88194319556963,-70.85329252514757,-70.82468441952128,-70.79611998293883,-70.76760032447393,-70.73912655426307,-70.7106997804463,-70.68232110666635,-70.65399163001719,-70.62571243935899,-70.59748461393352,-70.56930922222777,-70.54118732104358,-70.51311995473849,-70.48510815460983,-70.45715293839842,-70.42925530989243,-70.40141625861526,-70.37363675958386,-70.34591777312608,-70.31826024474742,-70.29066510503935,-70.26313326962222,-70.2356656391171,-70.20826309914193,-70.18092652032757,-70.15365675835073,-70.12645465398066,-70.09932103313723,-70.07225670695851,-70.04526247187596,-70.018339109696,-69.99148738768665,-69.96470792685348,-69.93800107687963,-69.9113672561125,-69.88480693242998,-69.8583206105925,-69.83190882283697,-69.8055721215303,-69.77931107328402,-69.75312625416908,-69.72701824578954,-69.70098763204224,-69.67503499643327,-69.64916091985152,-69.62336597872071,-69.59765074346663,-69.57201577724844,-69.54646163491182,-69.5209888621292,-69.49559799469787,-69.47028955797188,-69.4450640664069,-69.41992202320115,-69.39486392001741,-69.36989023677387,-69.34500144149317,-69.32019799020067,-69.29548032686425,-69.2708488833691,-69.24630407952192,-69.22184632307977,-69.1974760097996,-69.17319352350479,-69.14899923616603,-69.12489350799382,-69.10087668754053,-69.07694911181035,-69.05311110637533,-69.02936298549646,-69.00570505224862,-68.98213759864842,-68.95866049159652,-68.93527353967046,-68.91197663286975,-68.8887697234435,-68.86565281247694,-68.84262593964743,-68.81968917508611,-68.79684261277094,-68.77408636509244,-68.75142055834627,-68.72884532897413,-68.70636082041774,-68.68396718048066,-68.6616645591141,-68.63945310655903,-68.617332971789,-68.5953043012077,-68.57336723756319,-68.55152191904627,-68.5297684785461,-68.50810704303997,-68.48653773309748,-68.46506066248253,-68.4436759378388,-68.42238365844631,-68.40118391603859,-68.38007679467155,-68.35906237063601,-68.33814071240734,-68.31731188062652,-68.29657592810753,-68.2759328998669,-68.25538283317181,-68.23492575760345,-68.21456169513321,-68.19429066020913,-68.17411265985083,-68.15402769375122,-68.13403575438342,-68.11413682711192,-68.09433089030674,-68.07461791545977,-68.05499786730266,-68.03547070392554,-68.01603637689604,-67.99669483137828,-67.97744589499477,-67.95828887149257,-67.93922318272956,-67.92024834043285,-67.90136392804959,-67.88256958733915,-67.86386500787056,-67.84524991854045,-67.82672408059797,-67.80828728184258,-67.78993933176011,-67.771680057424,-67.75350930002905,-67.73542691195317,-67.71743275426361,-67.69952669459929,-67.68170860537299,-67.66397836224651,-67.64633584283942,-67.62878092563805,-67.61131348907648,-67.59393341076533,-67.57664056684771,-67.55943483146444,-67.54231607631324,-67.5252841702888,-67.50833897919219,-67.49148036549974,-67.47470818818289,-67.45802230257166,-67.44142256025529,-67.42490880901443,-67.40848089278035,-67.39213865161673,-67.3758819217207,-67.35971053543983,-67.34362432130257,-67.32762310405984,-67.31170670473561,-67.29587494068507,-67.28012762565865,-67.26446456987085,-67.24888558007277,-67.2333904596273,-67.21797900858647,-67.20265102377003,-67.18740629884492,-67.17224462440507,-67.15716578805117,-67.14216957447013,-67.12725576551384,-67.1124241402772,-67.09767447517513,-67.08300654401843,-67.06842011808843,-67.05391496621026,-67.03949085482482,-67.02514754805927,-67.01088480779605,-66.99670239374046,-66.98259990469394,-66.96857644530263,-66.95463124351159,-66.94076362263718,-66.92697298334599,-66.91325879028594,-66.89962056156435,-66.88605786020489,-66.87257028708144,-66.85915747500322,-66.84581908372311,-66.83255479570134,-66.81936431249534,-66.80624735167493,-66.79320364418123,-66.78023293206287,-66.76733496653463,-66.75450950631257,-66.74175631618706,-66.72907516580078,-66.71646582860376,-66.70392808096152,-66.69146170139551,-66.67906646993819,-66.66674216758724,-66.65448857584559,-66.64230547633561,-66.63019265047748,-66.61814987922294,-66.60617694283671,-66.59427362071916,-66.58243969126427,-66.57067493174789,-66.55897911824212,-66.5473520255518,-66.5357934271699,-66.52430309524902,-66.51288080058639,-66.50152631262034,-66.49023939943638,-66.47901982778119,-66.4678673630832,-66.45678176947865,-66.4457628098419,-66.43481024581932,-66.42392383786594,-66.41310334528413,-66.40234852626388,-66.39165913792421,-66.38103493635523,-66.37047567666059,-66.35998111300005,-66.3495509986319,-66.33918508595511,-66.32888312655096,-66.31864487122411,-66.30847007004293,-66.29835847237914,-66.28830982694653,-66.2783238818389,-66.26840038456697,-66.2585390820945,-66.24873972087336,-66.23900204687772,-66.22932580563727,-66.2197107422696,-66.21015660151146,-66.2006631277494,-66.19123006504924,-66.18185715718494,-66.1725441476664,-66.16329077976663,-66.15409679654798,-66.14496194088771,-66.13588595550281,-66.12686858297398,-66.11790956576908,-66.1090086462658,-66.10016556677373,-66.09138006955574,-66.0826518968489,-66.07398079088469,-66.06536649390867,-66.05680874819967,-66.0483072960884,-66.03986187997559,-66.03147224234966,-66.02313812580391,-66.01485927305325,-66.0066354269505,-65.9984663305023,-65.99035162279344,-65.9822905148705,-65.97428231935697,-65.96632642786854,-65.95842229654497,-65.95056943533505,-65.94276739955627,-65.93501578302693,-65.92731421236832,-65.91966234221806,-65.91205985117415,-65.90450643833731,-65.89700182035054,-65.88954572885623,-65.88213790830714,-65.87477811407909,-65.86746611084222,-65.86020167115471,-65.85298457424871,-65.8458146049822,-65.83869155293512,-65.83161521163036,-65.82458537786341,-65.81760185112637,-65.81066443311406,-65.8037729273015,-65.79692713858337,-65.79012687296746,-65.78337193731481,-65.77666213912052,-65.76999728632978,-65.7633771871844,-65.75680165009562,-65.7502704835398,-65.74378349597355,-65.73734049576602,-65.7309412911454,-65.724585690158,-65.71827350063788,-65.71200453018551,-65.7057785861541,-65.69959547564235,-65.69345500549272,-65.68735698229415,-65.68130121238862,-65.67528750188086,-65.6693156566505,-65.66338548236632,-65.65749678450219,-65.65164936835413,-65.64584303905848,-65.64007760161068,-65.63435286088462,-65.6286686216521,-65.62302468860265,-65.61742086636325,-65.61185695951788,-65.60633277262701,-65.6008481102468,-65.59540277694786,-65.58999657733386,-65.58462931605955,-65.5793007978484,-65.57401082750994,-65.56875920995638,-65.56354575021905,-65.55837025346413,-65.55323252500808,-65.54813237033255,-65.54306959509879,-65.53804400516167,-65.53305540658327,-65.52810360564602,-65.52318840886537,-65.51830962300212,-65.51346705507439,-65.50866051236912,-65.50388980245326,-65.4991547331846,-65.49445511272226,-65.48979074953688,-65.48516145242039,-65.4805670304956,-65.4760072932255,-65.47148205042217,-65.46699111225547,-65.46253428926158,-65.45811139235111,-65.45372223281711,-65.44936662234282,-65.44504437300915,-65.44075529730202,-65.43649920811944,-65.43227591877846,-65.42808524302183,-65.42392699502462,-65.41980098940053,-65.41570704120814,-65.41164496595692,-65.40761457961314,-65.40361569860558,-65.39964813983113,-65.39571172066029,-65.39180625894242,-65.38793157301097,-65.38408748168852,-65.38027380429172,-65.37649036063611,-65.37273697104085,-65.36901345633325,-65.36531963785329,-65.36165533745799,-65.35802037752569,-65.35441458096021,-65.3508377711949,-65.34728977219666,-65.3437704084698,-65.34027950505983,-65.33681688755718,-65.33338238210081,-65.32997581538173,-65.32659701464647,-65.32324580770042,-65.31992202291116,-65.31662548921165,-65.31335603610331,-65.3101134936592,-65.30689769252687,-65.30370846393139,-65.30054563967808,-65.29740905215536,-65.29429853433744,-65.29121391978694,-65.28815504265744,-65.28512173769602,-65.28211384024569,-65.27913118624774,-65.27617361224408,-65.27324095537946,-65.27033305340372,-65.26744974467383,-65.26459086815602,-65.2617562634278,-65.25894577067989,-65.2561592307181,-65.25339648496521,-65.25065737546274,-65.24794174487268,-65.24524943647916]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1403\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1404\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1399\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1400\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1401\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1411\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1405\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1406\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1407\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628385345,-64.99989891812339,-64.99981775406245,-64.99971590880706,-64.99959691256005,-64.99946400141862,-64.99931990441473,-64.99916684225425,-64.99900659845551,-64.99884060387761,-64.99867001305113,-64.99849576650733,-64.99831863934308,-64.99813927818651,-64.99795822902611,-64.99777595808803,-64.99759286752288,-64.99740930725532,-64.99722558401002,-64.99704196826116,-64.99685869965151,-64.9966759912785,-64.9964940331353,-64.99631299491708,-64.99613302834395,-64.99595426911279,-64.99577683855898,-64.99560084508889,-64.99542638542786,-64.9952535457177,-64.99508240248936,-64.99491302353073,-64.99474546866502,-64.99457979045214,-64.99441603482298,-64.99425424165455,-64.99409444529302,-64.99393667503004,-64.99378095553737,-64.99362730726388,-64.99347574679865,-64.99332628720325,-64.99317893831606,-64.99303370703136,-64.9928905975549,-64.99274961163876,-64.99261074879648,-64.99247400650084,-64.99233938036532,-64.99220686431082,-64.99207645071871,-64.99194813057166,-64.99182189358282,-64.99169772831473,-64.99157562228851,-64.99145556208427,-64.99133753343345,-64.99122152130369,-64.9911075099768,-64.99099548312059,-64.9908854238548,-64.99077731481177,-64.99067113819214,-64.9905668758162,-64.99046450917099,-64.99036401945361,-64.99026538761099,-64.9901685943766,-64.99007362030387,-64.98998044579729,-64.98988905114051,-64.9897994165226,-64.98971152206177,-64.98962534782736,-64.98954087385992,-64.98945808018966,-64.98937694685324,-64.98929745390932,-64.98921958145264,-64.989143309627,-64.98906861863699,-64.98899548875887,-64.98892390035034,-64.98885383385957,-64.98878526983322,-64.98871818892404,-64.98865257189745,-64.98858839963765,-64.9885256531532,-64.98846431358191,-64.98840436219535,-64.98834578040287,-64.98828854975515,-64.98823265194744,-64.98817806882242,-64.98812478237265,-64.98807277474282,-64.98802202823167,-64.98797252529366,-64.98792424854035,-64.9878771807417,-64.987831304827,-64.98778660388567,-64.98774306116796,-64.98770066008545,-64.98765938421131,-64.98761921728058,-64.9875801431902,-64.98754214599903,-64.98750520992768,-64.98746931935827,-64.98743445883417,-64.98740061305955,-64.9873677668989,-64.98733590537651,-64.98730501367591,-64.98727507713912,-64.98724608126601,-64.98721801171351,-64.98719085429482,-64.98716459497858,-64.98713921988795,-64.98711471529978,-64.98709106764358,-64.98706826350062,-64.98704628960292,-64.98702513283224,-64.98700478021905,-64.98698521894151,-64.98696643632434,-64.98694841983783,-64.98693115709669,-64.98691463585898,-64.98689884402502,-64.98688376963621,-64.98686940087397,-64.98685572605862,-64.9868427336482,-64.98683041223737,-64.98681875055624,-64.98680773746928,-64.98679736197414,-64.98678761320053,-64.98677848040906,-64.98676995299012,-64.98676202046272,-64.98675467247337,-64.98674789879493,-64.98674168932551,-64.9867360340873,-64.98673092322547,-64.98672634700701,-64.98672229581966,-64.98671876017077,-64.98671573068624,-64.9867131981093,-64.9867111532995,-64.98670958723163,-64.98670849099454,-64.98670785579017,-64.98670767293235,-64.98670793384585,-64.98670863006521,-64.98670975323373,-64.98671129510241,-64.98671324752888,-64.98671560247641,-64.9867183520128,-64.98672148830941,-64.9867250036401,-64.98672889038025,-64.98673314100571,-64.98673774809181,-64.98674270431239,-64.98674800243877,-64.98675363533877,-64.98675959597578,-64.98676587740773,-64.98677247278619,-64.98677937535531,-64.986786578451,-64.98679407549992,-64.9868018600185,-64.98680992561214,-64.98681826597411,-64.98682687488481,-64.98683574621076,-64.9868448739037,-64.98685425199976,-64.98686387461849,-64.98687373596204,-64.98688383031424,-64.98689415203978,-64.98690469558329,-64.98691545546858,-64.98692642629764,-64.98693760274998,-64.98694897958164,-64.98696055162445,-64.82244971121449,-64.41759814275774,-63.80126885216725,-63.038132350164,-62.188130736062874,-61.29552396759345,-60.39006402943375,-59.49083902665103,-58.60970164275095,-57.75373287060139,-56.926893049238956,-56.1311062961013,-55.36697267629307,-54.63423909022197,-53.93211286818513,-53.25947200166991,-52.61500653266557,-51.99731346945082,-51.40495968003709,-50.836522897771076,-50.29061799741413,-49.76591325333843,-49.261139181935285,-48.775092541726636,-48.30663743238859,-47.854704403660335,-47.418287655969,-46.996441583807766,-46.58827727640944,-46.19295827394707,-45.80969615441256,-45.43774661335157,-45.07640556638094,-44.72500486610293,-44.38290856198124,-44.04950975200968,-43.72422658868699,-43.40649874778643,-43.09578485213768,-42.791558862174696,-42.65782924976625,-42.76990963652795,-43.09843837717508,-43.578249084599555,-44.148904723851736,-44.765649570838335,-45.39823357091676,-46.02706846749626,-46.63980083935377,-47.228848568342656,-47.78975062712706,-48.32008465577353,-48.81875702771639,-49.28553159503405,-49.72071521727518,-50.124947369850574,-50.4990589868475,-50.84397521152236,-51.16064850676571,-51.45001396520106,-51.71296011217828,-51.950307318186546,-52.16279139696251,-52.35105265829228,-52.51562818342321,-52.65694204330015,-52.7752969888431,-52.870866483938734,-52.94368326300119,-52.99362883569155,-53.02041673549398,-53.023575847301814,-53.00242649769109,-52.956054003975034,-52.88327624099482,-52.78260258668668,-52.6521851673215,-52.4897604500254,-52.292578419556,-52.057317491344655,-51.779984321974645,-51.45579713564222,-51.079053658983014,-50.64298908630711,-50.13963530723634,-49.55970484888716,-48.8925391530553,-48.126192913103225,-47.247762688125896,-46.24409775377787,-45.10305327925387,-43.815398667847916,-42.377302196251875,-40.79296301891136,-39.076615123616975,-37.25301029833681,-35.3558240835515,-33.42417041943263,-31.498136546752146,-29.614546375500066,-27.803915227854436,-26.088991553475452,-24.48474007747512,-22.999312062589905,-21.63549077695308,-20.392205972856846,-19.26587009635765,-18.25143027077161,-17.34312570632282,-16.534990738016013,-15.821161574744634,-15.196043691168239,-14.65438705926993,-14.19130477858336,-13.802259891839523,-13.483036588753233,-13.229705761346876,-13.038590613899727,-12.906235246649413,-12.829377458180335,-12.804926046043054,-12.82994233728224,-12.90162542039287,-13.017300468062839,-13.174409641384043,-13.370504926890803,-13.603242416838794,-13.870377694302844,-14.169762285424477,-14.499340725069034,-14.857147831367767,-15.241306115104795,-15.65002380994969,-16.081593001645302,-16.53438742686932,-17.006860048222734,-17.497541232854758,-18.005037070213138,-18.52802713633227,-19.06526185364833,-19.615559960508428,-20.177807193902527,-20.750954478225445,-21.33401534983936,-21.926063146865232,-22.526228366723288,-23.13369744735924,-23.747711767966745,-24.367565858408607,-24.992605142197235,-25.622223777365196,-26.255862888661593,-26.893009254351337,-27.53319476992686,-28.17599722558733,-28.82104059090107,-29.467994623812686,-30.116574410569037,-30.766540270764036,-31.417698162553844,-32.06990055832164,-32.72304770490674,-33.37708917472273,-34.03202561942169,-34.68791064176179,-35.34485269959124,-36.00301750426547,-36.662630554289976,-37.32397867124732,-37.987410426096474,-38.65333567879951,-39.32222425614132,-39.9946035509045,-40.6710546689369,-41.35220665361481,-42.038728095870006,-42.73131492180543,-43.430673873569994,-44.137501390459114,-44.85245519485326,-45.57611857031559,-46.30895957336159,-47.051281626033806,-47.80316669882877,-48.564417775383305,-49.33449493373571,-50.11245870458542,-50.896925111734454,-51.686037757472754,-52.477469416741435,-53.26845589931505,-54.05586530087833,-54.8363039792685,-55.60625157253427,-56.3622118580376,-57.10086401188383,-57.81919886911737,-58.51462662278474,-59.185048004176096,-59.82888744539381,-60.44508954054583,-61.033086308396925,-61.592743448646395,-62.12429437499506,-62.628270029017955,-63.10543051428805,-63.556702597388465,-63.98312553415203,-64.38580617629056,-64.76588319867703,-65.12449963556698,-65.462782593694,-65.7818289076243,-66.08269554054917,-66.3663936537956,-66.63388542598014,-66.88608287158189,-67.12384806821993,-67.34799433605754,-67.55928802691624,-67.75845067388393,-67.94616132480954,-68.12305893788402,-68.28974475797492,-68.44678462168936,-68.59471115995363,-68.73402588135873,-68.86520112931677,-68.98868191249989,-69.10488761207095,-69.21421357159412,-69.31703257676101,-69.41369623257026,-69.50453624562022,-69.58986561890625,-69.66997976608117,-69.74515755162412,-69.81566226282511,-69.88174251896262,-69.94363312254924,-70.00155585705676,-70.05572023511073,-70.10632420076534,-70.15355478913243,-70.19758874633749,-70.23859311251077,-70.2767257702854,-70.3121359610663,-70.34496477114853,-70.3753455895985,-70.4034045396651,-70.42926088535498,-70.45302741468862,-70.47481080104599,-70.49471194391393,-70.51282629025886,-70.5292441376679,-70.54405092032728,-70.557327478839,-70.56915031481398,-70.57959183112204,-70.58872055862457,-70.59660137016682,-70.60329568255908,-70.60886164723331,-70.61335433022101,-70.61682588205986,-70.61932569820158,-70.62090057020627,-70.62159482827536,-70.62145047611581,-70.62050731861643,-70.61880308256984,-70.61637353069193,-70.61325256925267,-70.60947234966329,-70.6050633643661,-70.60005453735997,-70.59447330967532,-70.58834572009262,-70.58169648137869,-70.57454905229822,-70.56692570564071,-70.5588475924887,-70.55033480293929,-70.5414064234783,-70.5320805911948,-70.52237454501245,-70.51230467410456,-70.50188656364956,-70.4911350380751,-70.48006420193042,-70.4686874785185,-70.45701764641285,-70.44506687397543,-70.43284675198734,-70.42036832449585,-70.40764211797723,-70.39467816890777,-70.38148604983138,-70.36807489400641,-70.35445341871012,-70.34062994727483,-70.32661242992536,-70.31240846348376,-70.29802531000372,-70.28346991439314,-70.26874892108052,-70.25386868977759,-70.23883530980196,-70.2236546127001,-70.20833218486325,-70.19287338044329,-70.17728333410005,-70.16156697317165,-70.14572902909134,-70.12977404802905,-70.11370640080378,-70.09753029213398,-70.08124976929221,-70.06486873022308,-70.04839093117434,-70.03181999388336,-70.01515941235422,-69.9984125592558,-69.98158269196679,-69.96467295829079,-69.94768640186157,-69.93062596725731,-69.91349450484014,-69.8962947753369,-69.87902945417497,-69.86170113558691,-69.84431233649602,-69.82686550019487,-69.80936299982753,-69.79180714168614,-69.77420016833148,-69.7565442615469,-69.7388415451344,-69.72109408756113,-69.70330390446415,-69.6854729610211,-69.66760317419366,-69.64969641373266,-69.63175450134666,-69.61377921110108,-69.59577227160753,-69.57773536911577,-69.55967015070127,-69.54157822715392,-69.5234611754553,-69.5053205408618,-69.48715783865568,-69.46897455563023,-69.45077215136766,-69.43255205935618,-69.41431568798168,-69.39606442142089,-69.37779962045552,-69.35952262322225,-69.34123474590882,-69.3229372834048,-69.30463150991258,-69.28631867952338,-69.26800002676161,-69.24967676710072,-69.23135009745235,-69.21302119663086,-69.19469122579491,-69.17636132886722,-69.15803263293384,-69.13970624862405,-69.1213832704718,-69.10306477725958,-69.08475183234573,-69.06644548397588,-69.0481467655793,-69.02985669552034,-69.01157627244876,-68.99330647214443,-68.97504824766274,-68.95680253147728,-68.9385702381789,-68.92035226695945,-68.9021495036134,-68.883962822039,-68.86579308531279,-68.84764114643002,-68.82950784879597,-68.81139402653669,-68.79330050468208,-68.77522809926037,-68.75717761733259,-68.73914985698744,-68.72114560731129,-68.70316564834356,-68.68521075102454,-68.66728167714075,-68.64937917927102,-68.63150400073573,-68.61365687555026,-68.59583852838396,-68.57804967452473,-68.56029101984953,-68.54256326080086,-68.52486708436905,-68.50720316808003,-68.48957217998864,-68.47197477867677,-68.4544116132564,-68.43688332337702,-68.41939053923721,-68.4019338816001,-68.38451395951748,-68.36713136363701,-68.3497866622419,-68.3324804016233,-68.31521310890793,-68.29798529550898,-68.28079746025435,-68.2636500918766,-68.24654367085412,-68.22947867070165,-68.212455558831,-68.19547479709108,-68.17853684207574,-68.16164214526712,-68.14479115306526,-68.12798430674104,-68.1112220423393,-68.09450479055107,-68.07783297656883,-68.06120701993426,-68.04462733438508,-68.02809432770567,-68.01160840158438,-67.99516995147968,-67.97877936649624,-67.96243702927153,-67.94614331587343,-67.92989859570864,-67.91370323144174,-67.8975575789247,-67.88146198713628,-67.86541679813087,-67.8494223469965,-67.8334789618212,-67.81758696366741,-67.80174666655387,-67.78595837744462,-67.77022239624436,-67.75453901580009,-67.73890852190831,-67.72333118611643,-67.70780725787016,-67.69233696199917,-67.67692050085535,-67.66155805847504,-67.64624980492786,-67.63099590004008,-67.61579649628594,-67.60065174090344,-67.58556177737357,-67.57052674640934,-67.55554678658042,-67.54062203467309,-67.52575262586184,-67.51093869374905,-67.4961803703145,-67.48147778580476,-67.46683106858424,-67.4522403449638,-67.43770573901759,-67.42322737239662,-67.40880536414394,-67.39443983051581,-67.38013088481097,-67.36587863721005,-67.35168319462583,-67.33754466056503,-67.32346313500186,-67.30943871426318,-67.29547149092515,-67.28156155372099,-67.26770898745941,-67.25391387295329,-67.240176286958,-67.22649630211906,-67.21287398692826,-67.19930940568813,-67.18580261848382,-67.17235368116226,-67.15896264531787,-67.14562955828441,-67.13235446313259,-67.11913739867295,-67.10597839946364,-67.09287749582263,-67.07983471384415,-67.0668500734819,-67.05392357766765,-67.04105520480219,-67.02824490830946,-67.01549262053555,-67.00279825798775,-66.99016172627451,-66.97758292415078,-66.96506174659199,-66.95259808701883,-66.94019183884406,-66.9278428965026,-66.9155511560988,-66.90331651577524,-66.89113887588177,-66.8790181390036,-66.86695420989179,-66.85494699532687,-66.84299640393945,-66.8311023460036,-66.81926473321533,-66.80748347846487,-66.79575849560848,-66.78408969924462,-66.77247700449708,-66.76092032680734,-66.74941958173751,-66.73797468478455,-66.72658555120617,-66.71525209585886,-66.70397423304753,-66.69275187638696,-66.68158493867446,-66.67047333177355,-66.65941696650796,-66.64841575256587,-66.63746959841338,-66.62657841121718,-66.61574209677558,-66.60496055945752,-66.59423370214917,-66.58356142620734,-66.57294363141965,-66.56238021597059,-66.55187107641342,-66.54141610764717,-66.53101520289864,-66.52066825370883,-66.51037514992352,-66.50013577968774,-66.48995002944369,-66.47981778393198,-66.46973892619567,-66.45971333758727,-66.44974089777789,-66.43982148476891,-66.42995497490553,-66.4201412428922,-66.41038016180978,-66.40067160313407,-66.39101543399119,-66.38141150591109,-66.37185964738633,-66.36235966363155,-66.35291134069188,-66.34351445086295,-66.33416875778231,-66.32487402059984,-66.3156299971548,-66.30643644628374,-66.29729312943336,-66.28819981174162,-66.27915626272254,-66.27016225666098,-66.26121757279745,-66.25232199536316,-66.24347531350946,-66.23467732116427,-66.2259278168391,-66.21722660340441,-66.20857348784567,-66.19996828100952,-66.1914107973467,-66.18290085465658,-66.17443827383673,-66.16602287863996,-66.15765449544058,-66.1493329530108,-66.14105808230825,-66.13282971627473,-66.12464768964641,-66.11651183877548,-66.10842200146308,-66.10037801680315,-66.0923797250369,-66.08442696741768,-66.07651958608545,-66.06865742395077,-66.06084032458777,-66.05306813213546,-66.0453406912071,-66.03765784680714,-66.03001944425527,-66.02242532911723,-66.0148753471417,-66.00736934420325,-65.9999071662508,-65.9924886592609,-65.98511366919624,-65.9777820419682,-65.9704936234038,-65.96324825921627,-65.95604579497939,-65.9488860761049,-65.94176894782312,-65.93469425516629,-65.9276618429545,-65.92067155578403,-65.91372323801785,-65.9068167337782,-65.89995188694088,-65.8931285411314,-65.88634653972254,-65.87960572583336,-65.87290594232952,-65.86624703182476,-65.85962883668338,-65.85305119902381,-65.84651396072289,-65.84001696342104,-65.8335600485281,-65.82714305722982,-65.82076583049482,-65.81442820908222,-65.80813003354952,-65.80187114426103,-65.79565138139651,-65.78947058496021,-65.78332859479015,-65.77722525056745,-65.77116039182616,-65.76513385796291,-65.75914548824693,-65.75319512183,-65.7472825977566,-65.74140775497393,-65.73557043234226,-65.72977046864492,-65.72400770259856,-65.71828197286331,-65.71259311805284,-65.70694097493224,-65.70132536920278,-65.69574610915842,-65.6902029852618,-65.68469577337046,-65.67922423910818,-65.67378814201055,-65.6683872389404,-65.66302128670156,-65.65769004394662,-65.65239327251676,-65.64713073834557,-65.64190221203607,-65.63670746919767,-65.63154629060796,-65.62641846224876,-65.62132377525269,-65.61626202578682,-65.61123301489336,-65.60623654830165,-65.60127243622237,-65.59634049313132,-65.59144053754906,-65.58657239182001,-65.5817358818945,-65.57693083711567,-65.57215709001294,-65.56741447610297,-65.56270283369898,-65.55802200372871,-65.55337182956136,-65.54875215684348,-65.54416283334395,-65.53960370880765,-65.5350746348178,-65.53057546466674,-65.52610605323467,-65.5216662568763,-65.51725593331476,-65.5128749415428,-65.5085231417307,-65.50420039514044,-65.4999065640462,-65.49564151166045,-65.49140510206551,-65.48719720015018,-65.48301767155128,-65.47886638259959,-65.47474320027011,-65.4706479921362,-65.46658062632757,-65.46254097149158,-65.45852889675794,-65.4545442717063,-65.45058696633672,-65.44665685104276,-65.44275379658706,-65.43887767407904,-65.43502835495494,-65.43120571095952,-65.42740961412986,-65.42363993678067,-65.4198965514912,-65.41617933109355,-65.41248814866238,-65.40882287750583,-65.40518339115748,-65.40156956336953,-65.39798126810672,-65.39441837954134,-65.3908807720489,-65.38736832020469,-65.38388089878083,-65.38041838274418,-65.37698064725464,-65.37356756766405,-65.3701790195156,-65.36681487854361,-65.3634750206737,-65.36015932202346,-65.35686765890328,-65.35359990781757,-65.35035594546619,-65.34713564874622,-65.34393889475386,-65.34076556078656,-65.33761552434527,-65.33448866313698,-65.33138485507725,-65.32830397829292,-65.325245911125,-65.32221053213148,-65.3191977200904,-65.31620735400291,-65.31323931309633,-65.31029347682743,-65.30736972488546,-65.30446793719561,-65.30158799392208,-65.29872977547151,-65.29589316249617,-65.29307803589725,-65.29028427682827,-65.28751176669826,-65.28476038717504,-65.28203002018859,-65.27932054793418,-65.27663185287568,-65.27396381774874,-65.27131632556394,-65.26868925961006,-65.26608250345701,-65.26349594095913,-65.2609294562581,-65.25838293378602,-65.25585625826842,-65.25334931472716,-65.25086198848334,-65.24839416516024,-65.24594573068607,-65.24351657129684,-65.24110657353899,-65.23871562427223,-65.23634361067212,-65.23399042023271,-65.23165594076916,-65.2293400604202,-65.22704266765066,-65.22476365125395,-65.22250290035444,-65.22026030440979,-65.21803575321331,-65.21582913689626,-65.21364034593,-65.21146927112828,-65.20931580364932,-65.20717983499792,-65.20506125702757,-65.20295996194244,-65.20087584229935,-65.19880879100974,-65.19675870134157,-65.1947254669211,-65.19270898173482,-65.19070914013119,-65.18872583682233,-65.18675896688573,-65.18480842576601,-65.18287410927638]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1412\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1413\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1408\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1409\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1410\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_dash\":[6]}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1238\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1251\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1252\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1253\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1254\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1260\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1259\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1261\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1262\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1263\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1246\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1247\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1248\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1249\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1241\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1242\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1243\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1244\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1245\",\"attributes\":{\"axis\":{\"id\":\"p1241\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1250\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1246\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1273\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1274\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1270\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1293\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"\"},\"renderers\":[{\"id\":\"p1290\"},{\"id\":\"p1328\"},{\"id\":\"p1365\"},{\"id\":\"p1402\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1312\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1309\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1349\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1346\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1386\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1383\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"7eb27da4-7713-402f-b3db-420c74220098\",\"roots\":{\"p1230\":\"e5b796e4-3ab8-47a2-b0d5-6a168a29a379\"},\"root_ids\":[\"p1230\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1230" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " for my_cell.dend.nseg, width in [(1, 2), (101, 1)]:\n", " n.finitialize(-65)\n", " n.continuerun(25)\n", " f.line(\n", " t,\n", " list(soma_v),\n", " line_width=width,\n", " legend_label=\"amp={:.3g}\".format(amp) if my_cell.dend.nseg == 1 else \"\",\n", " color=color,\n", " )\n", " f.line(t, list(dend_v), line_width=width, line_dash=\"dashed\", color=color)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This code has only two changes to the previous code: (1) addition of the `for` loop for `dend.nseg` values and width with accompanying indentation changes, (2) a modification to the legend formula to only generate a legend for the `nseg=1` case since the colors are unchanged. (The calls to `f.line` are split onto multiple lines but this is only for readability; there is no difference to Python if it is on one line or on multiple lines.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we see with the high-resolution simulation that the soma peaks should be reduced and delayed and the dendrite peaks increased relative to what was seen in the `nseg=1` case." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Exercise\n", "\n", "Modify the above example, increasing the low resolution case from `nseg=1` to find a low value of `nseg` that gives negligible error relative to the high-resolution `nseg=101` case. Hint: a non-quantitative way to proceed would be to find values such that all the thin and thick curves of a given color overlap. (Note that since we're plotting from the center of the dendrite, `nseg` should be odd, otherwise the center will fall on the segment boundaries and be ill-defined.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Advanced exercise" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Calculate the approximate absolute error for your low `nseg` solution that graphically overlaps the high `nseg` solution. Compare this to the error for the `nseg=1` case. (Since the true solution is unknown, approximate it with the high `nseg` solution.)" ] } ], "metadata": { "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.12.10" } }, "nbformat": 4, "nbformat_minor": 2 }