Skip to content

Instantly share code, notes, and snippets.

@hsharrison
Created September 7, 2016 19:18
Show Gist options
  • Save hsharrison/e448a7d96b3f6eb674640d9646648a25 to your computer and use it in GitHub Desktop.
Save hsharrison/e448a7d96b3f6eb674640d9646648a25 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<script>\n",
"code_show=true; \n",
"function code_toggle() {\n",
" if (code_show){\n",
" $('div.input').hide();\n",
" } else {\n",
" $('div.input').show();\n",
" }\n",
" code_show = !code_show\n",
"} \n",
"$( document ).ready(code_toggle);\n",
"</script>\n",
"<form action=\"javascript:code_toggle()\"><input type=\"submit\" value=\"Click here to toggle on/off the raw code.\"></form>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import HTML\n",
"\n",
"HTML('''<script>\n",
"code_show=true; \n",
"function code_toggle() {\n",
" if (code_show){\n",
" $('div.input').hide();\n",
" } else {\n",
" $('div.input').show();\n",
" }\n",
" code_show = !code_show\n",
"} \n",
"$( document ).ready(code_toggle);\n",
"</script>\n",
"<form action=\"javascript:code_toggle()\"><input type=\"submit\" value=\"Click here to toggle on/off the raw code.\"></form>''')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Behavioral dynamics\n",
"\n",
"Warren, W. H. (2006). The dynamics of perception and action. *Psychological Review, 113*(2), 358-389. http://mlrg.cs.brown.edu/warren-intro.pdf\n",
"\n",
"## Theoretical motivation\n",
"\n",
"#### The big-picture setup\n",
"\n",
"> The **organization of behavior** has been a central concern for psychology for well over a century. How is it that humans and other animals can generate behavioral patterns that are tightly coordinated wit the environment, in the service of achieving a specific goal?\n",
"\n",
"> ...organization in behavior has been attributed to prior organization in\n",
"> - the structure of the nervous system (the neuroreductionist view),\n",
"> - the structure of internal representations (the cognitivist view), or\n",
"> - in the contingencies presented by the environemnt (the behaviorist view).\n",
"\n",
"> This...merely displaces the original problem of bheavioral organization to preexisting internal or external structures, begging the question of why that particular organization obtains and how that specific structure originated.\n",
"\n",
"> Gibson (1979):\n",
">> Locomotion and manipulation . . . are controlled not by the brain but\n",
">> by information. . . . Control lies in the animal–environment system....\n",
">> The rules that govern behavior are not like laws enforced by an\n",
">> authority or decisions made by a commander; behavior is regular\n",
">> without being regulated. The question is how this can be.\n",
"\n",
"> Although the quotation asserts Gibson’s belief that behavior is\n",
"regular without being centrally controlled, the question of how this\n",
"can be remains open.\n",
"\n",
"> ...**the organization of behavior can be attributed to the dynamics\n",
"of the agent–environment interaction** under such constraints and\n",
"seek to develop a coherent theoretical framework for understanding\n",
"perception and action.\n",
"\n",
"#### Stability and flexibility\n",
"\n",
"> Human and animal behavior exhibits two complementary attributes\n",
"that need to be accounted for: *stability* and *flexibility*.\n",
"\n",
"> ...behavior is characterized by stable and reproducible\n",
"low-dimensional patterns. These patterns are stable in the sense\n",
"that the functional form of movement is consistent over time and\n",
"resists perturbation and reproducible in that a similar pattern may\n",
"recur on separate occasions.\n",
"\n",
"> ...behavior is not\n",
"stereotyped and rigid but flexible and adaptive. Although action\n",
"patterns exhibit regular morphologies, the agent is not locked into\n",
"to a rigidly stable solution but can modulate the behavioral pattern.\n",
"To the extent that such flexibility is tailored to current environmental\n",
"conditions or task demands, it implicates perceptual\n",
"control."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## What are dynamical systems?\n",
"\n",
"A dynamical system is an abstract mathematical object built around the general concept of *change over time*.\n",
"\n",
"At any time, a dynamical system has a state: one or more values that completely characterize the system. The system's dynamics describe how the state changes, as a function of the state.\n",
"\n",
"$$\n",
"\\dot{\\mathbf{x}} = \\mathbf{f}(\\mathbf{x})\n",
"$$\n",
"\n",
"where $\\mathbf{x}$ is the state (bold means this is a vector) and $\\mathbf{f}$ is the dynamics."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Why use dynamical systems\n",
"\n",
"1. Because they (can) make a good model, and models are useful for\n",
" - predicting what happens next\n",
" - testing counterfactuals\n",
" - testing experimental hypotheses\n",
" - more specific to dynamical systems: they provide a *qualitative* understanding of a system's behavior\n",
"2. Because they provide a **proof of concept** of the theoretical perspective described previously.\n",
"\n",
"Dynamical systems are general; just using a dynamical model doesn't bring in any assumptions (of course, you can use whatever assumptions you want in actually describing $\\mathbf{f}$).\n",
"\n",
"The biggest obstacle to a Gibsonian/interactivist perspective (particularly for someone coming from a cognitive background) on perception-action is plausibility.\n",
"If we can show a dynamical system that contains only perceptual variables directly available to the agent, and the system behaves somewhat realistically, it shows that *control without a controller* is possible."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1D example\n",
"\n",
"$$\\dot{x} = -kx$$"
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <div class=\"bk-root\">\n",
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
" <span id=\"b057cf8b-5c02-4c2b-9368-7f111db46025\">Loading BokehJS ...</span>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"\n",
"(function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
"\n",
" var force = \"1\";\n",
"\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
"\n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
"\n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };\n",
"\n",
" var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.12.1.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.1.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-compiler-0.12.1.min.js'];\n",
"\n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
" \n",
" function(Bokeh) {\n",
" \n",
" Bokeh.$(\"#b057cf8b-5c02-4c2b-9368-7f111db46025\").text(\"BokehJS successfully loaded\");\n",
" var kernel = Jupyter.notebook.kernel\n",
" if (kernel.execute !== undefined) {\n",
" kernel.execute(\"import bokeh.io; bokeh.io._nb_loaded = True\");\n",
" }\n",
" },\n",
" function(Bokeh) {\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.1.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.1.min.css\");\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.1.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.1.min.css\");\n",
" }\n",
" ];\n",
"\n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
"\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
"}(this));"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"from ipywidgets import interact, FloatSlider\n",
"from bokeh.plotting import figure\n",
"from bokeh.io import push_notebook, output_notebook, show\n",
"from bokeh.models import Span, Arrow, NormalHead\n",
"from bokeh.layouts import column, gridplot\n",
"\n",
"output_notebook()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def f(x, k=1):\n",
" return -k * x"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def init_plot(show_xaxis=True, show_yaxis=True):\n",
" fig = figure(plot_width=300, plot_height=300)\n",
" fig.grid.grid_line_color = None\n",
" \n",
" if show_xaxis:\n",
" fig.add_layout(Span(location=0, dimension='height', line_color='black', line_dash='dotted', line_width=1))\n",
" if show_yaxis:\n",
" fig.add_layout(Span(location=0, dimension='width', line_color='black', line_width=1))\n",
" return fig\n",
"\n",
"\n",
"def add_arrow(fig, x, y, fill_color='black'):\n",
" if isinstance(x, (int, float)):\n",
" x = [x, x]\n",
" if isinstance(y, (int, float)):\n",
" y = [y, y]\n",
" \n",
" fig.add_layout(Arrow(x_start=x[0], x_end=x[1], y_start=y[0], y_end=y[1], end=NormalHead(fill_color=fill_color)))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Phase-space representation\n",
"\n",
"state $x$ along x axis, change in state $\\dot{x}$ along y axis.\n",
"\n",
"$k=1$\n",
"\n",
"Circles are *fixed points*. At a fixed point, state does not change.\n",
"\n",
"Filled circle = attractor. An attractor is a fixed point that attracts nearby states."
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"b5cea01b-92aa-449e-9133-0239bdc99b40\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"b5cea01b-92aa-449e-9133-0239bdc99b40\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'b5cea01b-92aa-449e-9133-0239bdc99b40' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"27427091-a09a-4d02-8ff2-bb0fdf9e5919\":{\"roots\":{\"references\":[{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"ef158bd3-c670-439c-b356-e3b38f25fec9\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e7783245-bb78-47f3-839d-f06c59c58383\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ba1876f7-7b76-49af-b664-fc22f5437e4f\",\"type\":\"Span\"},{\"attributes\":{\"axis_label\":\"x-dot\",\"formatter\":{\"id\":\"90d2fa62-0cf4-478a-9711-7242e9bdb5e3\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"}},\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"e869f06b-e0d1-4275-b95f-5e9905b2cc64\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null},\"id\":\"f0c9ba4a-384f-41e1-91a0-c5224138989f\",\"type\":\"NormalHead\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"86313e4f-9b9e-4709-980b-72177d006f73\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null},\"id\":\"2c91d74e-44ae-4186-a024-d075c503cec1\",\"type\":\"DataRange1d\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"a54e916a-6d39-4d37-a1f5-f68be89026ce\",\"type\":\"PanTool\"},{\"id\":\"e7783245-bb78-47f3-839d-f06c59c58383\",\"type\":\"WheelZoomTool\"},{\"id\":\"e593631e-886c-4cf6-b867-c9e3721800b6\",\"type\":\"BoxZoomTool\"},{\"id\":\"7997d630-022e-4e8f-9e2b-9a9143891874\",\"type\":\"SaveTool\"},{\"id\":\"8b64eaf3-ce83-462f-8a99-e183d27bdd4d\",\"type\":\"ResetTool\"},{\"id\":\"8acf80a9-5553-44bc-8e2d-e1d6b4944a61\",\"type\":\"HelpTool\"}]},\"id\":\"b0db77eb-fbd7-4ea4-a505-72c9d27c1028\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7997d630-022e-4e8f-9e2b-9a9143891874\",\"type\":\"SaveTool\"},{\"attributes\":{\"overlay\":{\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e593631e-886c-4cf6-b867-c9e3721800b6\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"47ba58ca-e63b-4dbe-bf19-90446a9e4b6a\",\"type\":\"Circle\"},{\"attributes\":{\"end\":{\"id\":\"f0c9ba4a-384f-41e1-91a0-c5224138989f\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":0.9},\"x_start\":{\"value\":1.1},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"4ea54523-9078-4e1b-bee4-550341f426b8\",\"type\":\"Arrow\"},{\"attributes\":{\"plot\":null},\"id\":\"f88eaf5c-162c-4b5f-bad7-13d2236e162a\",\"type\":\"NormalHead\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8b64eaf3-ce83-462f-8a99-e183d27bdd4d\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"90d2fa62-0cf4-478a-9711-7242e9bdb5e3\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"e869f06b-e0d1-4275-b95f-5e9905b2cc64\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"47ba58ca-e63b-4dbe-bf19-90446a9e4b6a\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"ef158bd3-c670-439c-b356-e3b38f25fec9\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"294a8eb1-94c8-4808-a7e3-11d9619948ff\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"ea419665-7642-4ce3-9caf-1de10bbbecb1\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"}},\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7c4825b9-684b-4078-b6eb-2e40d1f51d89\",\"type\":\"Span\"},{\"attributes\":{},\"id\":\"fdb0e284-a2cc-42b5-be29-ab11c93e90f6\",\"type\":\"ToolEvents\"},{\"attributes\":{\"callback\":null},\"id\":\"c9d068d5-ae20-4dfa-b1a3-d3a129d5d852\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"ea419665-7642-4ce3-9caf-1de10bbbecb1\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8acf80a9-5553-44bc-8e2d-e1d6b4944a61\",\"type\":\"HelpTool\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"}},\"id\":\"fc812d6d-7dba-42e8-b235-feb7b1a336e3\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[2.0,1.9183673469387754,1.836734693877551,1.7551020408163265,1.6734693877551021,1.5918367346938775,1.510204081632653,1.4285714285714286,1.3469387755102042,1.2653061224489797,1.183673469387755,1.1020408163265307,1.0204081632653061,0.9387755102040818,0.8571428571428572,0.7755102040816328,0.6938775510204083,0.6122448979591837,0.5306122448979593,0.44897959183673475,0.3673469387755104,0.2857142857142858,0.20408163265306145,0.12244897959183687,0.04081632653061229,-0.04081632653061229,-0.12244897959183643,-0.204081632653061,-0.2857142857142856,-0.36734693877551017,-0.4489795918367343,-0.5306122448979589,-0.6122448979591835,-0.693877551020408,-0.7755102040816326,-0.8571428571428568,-0.9387755102040813,-1.020408163265306,-1.1020408163265305,-1.1836734693877546,-1.2653061224489792,-1.3469387755102038,-1.4285714285714284,-1.510204081632653,-1.591836734693877,-1.6734693877551017,-1.7551020408163263,-1.8367346938775508,-1.9183673469387754,-2.0]}},\"id\":\"6e8713de-0aae-48ca-89a0-53b2e1241f5c\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a54e916a-6d39-4d37-a1f5-f68be89026ce\",\"type\":\"PanTool\"},{\"attributes\":{\"end\":{\"id\":\"f88eaf5c-162c-4b5f-bad7-13d2236e162a\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":-0.9},\"x_start\":{\"value\":-1.1},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"e7a98741-bec3-4ebf-b688-d5150a2db856\",\"type\":\"Arrow\"},{\"attributes\":{\"data_source\":{\"id\":\"6e8713de-0aae-48ca-89a0-53b2e1241f5c\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"92ebb19c-28c5-4662-a222-5b0c9c1b6d90\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1ee5f97b-e515-413c-9aa6-6d88243cccfe\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"2274cc23-3bf3-418a-ba5c-af8b0a6a4715\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"92ebb19c-28c5-4662-a222-5b0c9c1b6d90\",\"type\":\"Line\"},{\"attributes\":{\"below\":[{\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"},{\"id\":\"fc812d6d-7dba-42e8-b235-feb7b1a336e3\",\"type\":\"Grid\"},{\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"},{\"id\":\"7d49776d-f868-4152-922f-aa96bd21f2d5\",\"type\":\"Grid\"},{\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},{\"id\":\"ba1876f7-7b76-49af-b664-fc22f5437e4f\",\"type\":\"Span\"},{\"id\":\"7c4825b9-684b-4078-b6eb-2e40d1f51d89\",\"type\":\"Span\"},{\"id\":\"2274cc23-3bf3-418a-ba5c-af8b0a6a4715\",\"type\":\"GlyphRenderer\"},{\"id\":\"294a8eb1-94c8-4808-a7e3-11d9619948ff\",\"type\":\"GlyphRenderer\"},{\"id\":\"e7a98741-bec3-4ebf-b688-d5150a2db856\",\"type\":\"Arrow\"},{\"id\":\"4ea54523-9078-4e1b-bee4-550341f426b8\",\"type\":\"Arrow\"}],\"title\":{\"id\":\"86313e4f-9b9e-4709-980b-72177d006f73\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"fdb0e284-a2cc-42b5-be29-ab11c93e90f6\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"b0db77eb-fbd7-4ea4-a505-72c9d27c1028\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"c9d068d5-ae20-4dfa-b1a3-d3a129d5d852\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"2c91d74e-44ae-4186-a024-d075c503cec1\",\"type\":\"DataRange1d\"}},\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1ee5f97b-e515-413c-9aa6-6d88243cccfe\",\"type\":\"Line\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"}},\"id\":\"7d49776d-f868-4152-922f-aa96bd21f2d5\",\"type\":\"Grid\"}],\"root_ids\":[\"92e904a7-f03d-43f8-b916-8d9c296d024a\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"27427091-a09a-4d02-8ff2-bb0fdf9e5919\",\"elementid\":\"b5cea01b-92aa-449e-9133-0239bdc99b40\",\"modelid\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"notebook_comms_target\":\"f8b82a64-e755-4f91-a140-e51220126e7c\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"xs = np.linspace(-2, 2, 50)\n",
"\n",
"attractor_fig = init_plot()\n",
"attractor_fig.xaxis.axis_label = 'x'\n",
"attractor_fig.yaxis.axis_label = 'x-dot'\n",
"\n",
"attractor_fig.line(xs, f(xs), line_width=2)\n",
"attractor_fig.scatter(0, 0, size=20)\n",
"add_arrow(attractor_fig, [-1.1, -0.9], 0)\n",
"add_arrow(attractor_fig, [1.1, 0.9], 0)\n",
"\n",
"\n",
"show(attractor_fig);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$k=1$\n",
"\n",
"Open circle = repeller = a fixed point that repels nearby states."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"97434987-b175-44f7-ab85-8af137789327\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"97434987-b175-44f7-ab85-8af137789327\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '97434987-b175-44f7-ab85-8af137789327' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"479b7ee7-3901-4001-8a92-69f4c4bae18b\":{\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"},{\"id\":\"52b5d119-9860-400e-8db5-683e517cc043\",\"type\":\"Grid\"},{\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"},{\"id\":\"5dcbc515-0d2a-4e64-91ad-e89c0a2dc44b\",\"type\":\"Grid\"},{\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},{\"id\":\"c07fdae9-bff0-44be-bb35-1ca5ae3fc5d7\",\"type\":\"Span\"},{\"id\":\"d1ce83c9-5503-4927-ba05-52ef06b87dbd\",\"type\":\"Span\"},{\"id\":\"7c3ef19d-3085-49ea-ad88-1687cc66f9c2\",\"type\":\"GlyphRenderer\"},{\"id\":\"dd7cd32f-66c9-4020-aba9-682cfb22f757\",\"type\":\"GlyphRenderer\"},{\"id\":\"706e9381-f81d-4faa-9a24-d71a35911d30\",\"type\":\"Arrow\"},{\"id\":\"724981cc-dda1-4156-8e74-4dad18badc6c\",\"type\":\"Arrow\"}],\"title\":{\"id\":\"a1e32d61-8d18-4689-8916-46443ea170fc\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"2419f652-d600-4aab-91ce-c520ed8f6127\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"b0cb944b-b9e4-4438-9af8-98a80f3d5355\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"bc67957a-62a2-4e29-9517-363d6eb2a390\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"7ca72362-2c17-4589-945c-aa0f382eab2c\",\"type\":\"DataRange1d\"}},\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c9a30506-2bc7-4c9a-91d6-57431e1e0ba1\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bf4595db-8c93-47c2-990a-afabe79ae008\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"a1e32d61-8d18-4689-8916-46443ea170fc\",\"type\":\"Title\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d1ce83c9-5503-4927-ba05-52ef06b87dbd\",\"type\":\"Span\"},{\"attributes\":{\"axis_label\":\"x-dot\",\"formatter\":{\"id\":\"5bd88c74-f9c0-44e5-947d-2a79e39ca431\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"}},\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"0e032771-2678-4d02-b5c5-65b9a176eecb\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"df50942e-651e-4898-a4b4-d8286019a439\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"c9a30506-2bc7-4c9a-91d6-57431e1e0ba1\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"7c3ef19d-3085-49ea-ad88-1687cc66f9c2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"}},\"id\":\"52b5d119-9860-400e-8db5-683e517cc043\",\"type\":\"Grid\"},{\"attributes\":{\"fill_color\":{\"value\":\"white\"},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"e7170f45-baa4-4b4c-8436-573ac8bc2120\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b305c2ad-b7a8-4c29-b768-94a743723d11\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":null},\"id\":\"55891522-058a-4a16-ae0f-defe3941bf70\",\"type\":\"NormalHead\"},{\"attributes\":{},\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"df50942e-651e-4898-a4b4-d8286019a439\",\"type\":\"Line\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"}},\"id\":\"5dcbc515-0d2a-4e64-91ad-e89c0a2dc44b\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"7c8f5163-71db-421b-b502-a6ded407a4db\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"bc67957a-62a2-4e29-9517-363d6eb2a390\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data_source\":{\"id\":\"7c8f5163-71db-421b-b502-a6ded407a4db\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"e7170f45-baa4-4b4c-8436-573ac8bc2120\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"7c6877f6-2c7d-4d01-8f4e-e100fd43afdd\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"dd7cd32f-66c9-4020-aba9-682cfb22f757\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"e780f468-1f11-4536-a59c-9b48b3576914\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"dfd10c8f-2d36-4f79-b9dd-a719bbd21a38\",\"type\":\"ResetTool\"},{\"attributes\":{\"callback\":null},\"id\":\"7ca72362-2c17-4589-945c-aa0f382eab2c\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"7c6877f6-2c7d-4d01-8f4e-e100fd43afdd\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"b305c2ad-b7a8-4c29-b768-94a743723d11\",\"type\":\"PanTool\"},{\"id\":\"0d950a5d-af08-4262-aebd-4abd93477caa\",\"type\":\"WheelZoomTool\"},{\"id\":\"4d3daead-1864-48b1-aa87-8bbab4146554\",\"type\":\"BoxZoomTool\"},{\"id\":\"bf4595db-8c93-47c2-990a-afabe79ae008\",\"type\":\"SaveTool\"},{\"id\":\"dfd10c8f-2d36-4f79-b9dd-a719bbd21a38\",\"type\":\"ResetTool\"},{\"id\":\"04cb21a3-a612-4f4b-929b-7b6e720a5a1a\",\"type\":\"HelpTool\"}]},\"id\":\"b0cb944b-b9e4-4438-9af8-98a80f3d5355\",\"type\":\"Toolbar\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"04cb21a3-a612-4f4b-929b-7b6e720a5a1a\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"e780f468-1f11-4536-a59c-9b48b3576914\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"}},\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0d950a5d-af08-4262-aebd-4abd93477caa\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"2419f652-d600-4aab-91ce-c520ed8f6127\",\"type\":\"ToolEvents\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[2.0,1.9183673469387754,1.836734693877551,1.7551020408163265,1.6734693877551021,1.5918367346938775,1.510204081632653,1.4285714285714286,1.3469387755102042,1.2653061224489797,1.183673469387755,1.1020408163265307,1.0204081632653061,0.9387755102040818,0.8571428571428572,0.7755102040816328,0.6938775510204083,0.6122448979591837,0.5306122448979593,0.44897959183673475,0.3673469387755104,0.2857142857142858,0.20408163265306145,0.12244897959183687,0.04081632653061229,-0.04081632653061229,-0.12244897959183643,-0.204081632653061,-0.2857142857142856,-0.36734693877551017,-0.4489795918367343,-0.5306122448979589,-0.6122448979591835,-0.693877551020408,-0.7755102040816326,-0.8571428571428568,-0.9387755102040813,-1.020408163265306,-1.1020408163265305,-1.1836734693877546,-1.2653061224489792,-1.3469387755102038,-1.4285714285714284,-1.510204081632653,-1.591836734693877,-1.6734693877551017,-1.7551020408163263,-1.8367346938775508,-1.9183673469387754,-2.0]}},\"id\":\"0e032771-2678-4d02-b5c5-65b9a176eecb\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"5bd88c74-f9c0-44e5-947d-2a79e39ca431\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c07fdae9-bff0-44be-bb35-1ca5ae3fc5d7\",\"type\":\"Span\"},{\"attributes\":{\"overlay\":{\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4d3daead-1864-48b1-aa87-8bbab4146554\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":null},\"id\":\"07882eed-ebb6-4d39-aa8e-c88913c13df0\",\"type\":\"NormalHead\"},{\"attributes\":{\"end\":{\"id\":\"55891522-058a-4a16-ae0f-defe3941bf70\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":-1.1},\"x_start\":{\"value\":-0.9},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"706e9381-f81d-4faa-9a24-d71a35911d30\",\"type\":\"Arrow\"},{\"attributes\":{\"end\":{\"id\":\"07882eed-ebb6-4d39-aa8e-c88913c13df0\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":1.1},\"x_start\":{\"value\":0.9},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"724981cc-dda1-4156-8e74-4dad18badc6c\",\"type\":\"Arrow\"}],\"root_ids\":[\"e4b3e02f-6f71-470e-90b2-48f70d24caab\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"479b7ee7-3901-4001-8a92-69f4c4bae18b\",\"elementid\":\"97434987-b175-44f7-ab85-8af137789327\",\"modelid\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"notebook_comms_target\":\"b47ade72-aeb9-4091-898e-93f85192ec8d\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"repeller_fig = init_plot()\n",
"repeller_fig.xaxis.axis_label = 'x'\n",
"repeller_fig.yaxis.axis_label = 'x-dot'\n",
"\n",
"repeller_fig.line(xs, f(xs, 1), line_width=2)\n",
"repeller_fig.scatter(0, 0, size=20, fill_color='white', line_width=2)\n",
"add_arrow(repeller_fig, [-0.9, -1.1], 0)\n",
"add_arrow(repeller_fig, [0.9, 1.1], 0)\n",
"\n",
"\n",
"show(repeller_fig);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Potential ($V$) representation"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def v(x, k=1):\n",
" return k * x**2"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"0a5866eb-6a57-4f94-8cb2-8ff182a02903\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"0a5866eb-6a57-4f94-8cb2-8ff182a02903\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '0a5866eb-6a57-4f94-8cb2-8ff182a02903' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"3a7d7de6-ed43-437c-923b-53302545fcf9\":{\"roots\":{\"references\":[{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"ef158bd3-c670-439c-b356-e3b38f25fec9\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"85da341c-08e1-45e1-9d3e-8eb7b31f1c0e\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"9bd3638c-9a02-4bb3-bdc9-5087b3f3b412\",\"type\":\"BasicTicker\"}},\"id\":\"c70053f3-1d28-4920-a16d-881a699944ce\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"a5444773-3d8b-41b5-b327-3f90dedfbef7\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9e493d1d-3324-4e2d-926a-0864fd2e8b9f\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"x-dot\",\"formatter\":{\"id\":\"90d2fa62-0cf4-478a-9711-7242e9bdb5e3\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"}},\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"d7d49015-3971-4085-8989-241e7b74c28d\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis_label\":\"V\",\"formatter\":{\"id\":\"3b128fbb-e81a-4cf4-bea1-c7818759eb2f\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"38463e46-cb26-41f9-b6f5-e6c02e036d7e\",\"type\":\"BasicTicker\"}},\"id\":\"7c0a59e4-3ea1-496c-8c35-a577aa84dcd9\",\"type\":\"LinearAxis\"},{\"attributes\":{\"overlay\":{\"id\":\"4085cf9f-b4a3-4709-9a7f-0460afb64af0\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e4e864fe-bd5c-47d1-ac80-1d66a41beb6a\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a54e916a-6d39-4d37-a1f5-f68be89026ce\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c54f7f7f-efae-4e7d-8eff-57a25a78e579\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"5de4b055-bd17-4d56-9035-40df5b5d7fd1\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"92ebb19c-28c5-4662-a222-5b0c9c1b6d90\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"3b128fbb-e81a-4cf4-bea1-c7818759eb2f\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"90d2fa62-0cf4-478a-9711-7242e9bdb5e3\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0be12618-2bb8-4a70-a990-215800224be8\",\"type\":\"Span\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"ea419665-7642-4ce3-9caf-1de10bbbecb1\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"},\"visible\":false},\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"a5444773-3d8b-41b5-b327-3f90dedfbef7\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"363eec45-5d4a-4b32-b017-4bcde97dcd0f\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"cc7f39a3-190e-4151-8482-bd1d29ed8d26\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"d8902d12-e18a-43e2-a419-f2659cb85390\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"4085cf9f-b4a3-4709-9a7f-0460afb64af0\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"c54f7f7f-efae-4e7d-8eff-57a25a78e579\",\"type\":\"PanTool\"},{\"id\":\"5de4b055-bd17-4d56-9035-40df5b5d7fd1\",\"type\":\"WheelZoomTool\"},{\"id\":\"e4e864fe-bd5c-47d1-ac80-1d66a41beb6a\",\"type\":\"BoxZoomTool\"},{\"id\":\"42b6d705-95a1-43a0-b081-abfc4c70e2e6\",\"type\":\"SaveTool\"},{\"id\":\"ca952037-111b-4fab-9952-d097cc115592\",\"type\":\"ResetTool\"},{\"id\":\"9e493d1d-3324-4e2d-926a-0864fd2e8b9f\",\"type\":\"HelpTool\"}]},\"id\":\"5295e772-4289-40d0-b86c-8d0cb0d15a01\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null},\"id\":\"2c91d74e-44ae-4186-a024-d075c503cec1\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"b8462f13-7e68-47ab-a688-57f62ef6690b\",\"type\":\"ToolEvents\"},{\"attributes\":{\"below\":[{\"id\":\"c70053f3-1d28-4920-a16d-881a699944ce\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"7c0a59e4-3ea1-496c-8c35-a577aa84dcd9\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"c70053f3-1d28-4920-a16d-881a699944ce\",\"type\":\"LinearAxis\"},{\"id\":\"c58a35d9-db70-4f29-a55b-356b48d208b9\",\"type\":\"Grid\"},{\"id\":\"7c0a59e4-3ea1-496c-8c35-a577aa84dcd9\",\"type\":\"LinearAxis\"},{\"id\":\"caf79dfc-1c8b-49d0-ab4d-7f0547cb9c19\",\"type\":\"Grid\"},{\"id\":\"4085cf9f-b4a3-4709-9a7f-0460afb64af0\",\"type\":\"BoxAnnotation\"},{\"id\":\"0be12618-2bb8-4a70-a990-215800224be8\",\"type\":\"Span\"},{\"id\":\"1e3c7d7f-b181-4e73-b85f-4f53c5d0411f\",\"type\":\"GlyphRenderer\"},{\"id\":\"d8902d12-e18a-43e2-a419-f2659cb85390\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"0ede09b9-30cf-4f12-97c1-211fc86f561b\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"b8462f13-7e68-47ab-a688-57f62ef6690b\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"5295e772-4289-40d0-b86c-8d0cb0d15a01\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"c9d068d5-ae20-4dfa-b1a3-d3a129d5d852\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"d7d49015-3971-4085-8989-241e7b74c28d\",\"type\":\"DataRange1d\"}},\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b3c54726-ec13-46dd-ad3a-9b55019a04ce\",\"type\":\"BasicTicker\"}},\"id\":\"7d49776d-f868-4152-922f-aa96bd21f2d5\",\"type\":\"Grid\"},{\"attributes\":{\"end\":{\"id\":\"f88eaf5c-162c-4b5f-bad7-13d2236e162a\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":-0.9},\"x_start\":{\"value\":-1.1},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"e7a98741-bec3-4ebf-b688-d5150a2db856\",\"type\":\"Arrow\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"47ba58ca-e63b-4dbe-bf19-90446a9e4b6a\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8b64eaf3-ce83-462f-8a99-e183d27bdd4d\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"9bd3638c-9a02-4bb3-bdc9-5087b3f3b412\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"0ede09b9-30cf-4f12-97c1-211fc86f561b\",\"type\":\"Title\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e7783245-bb78-47f3-839d-f06c59c58383\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ba1876f7-7b76-49af-b664-fc22f5437e4f\",\"type\":\"Span\"},{\"attributes\":{\"callback\":null},\"id\":\"e869f06b-e0d1-4275-b95f-5e9905b2cc64\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"children\":[{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"0c749fe7-42a2-4bd8-adad-2963836942f7\",\"type\":\"Column\"},{\"attributes\":{\"plot\":null},\"id\":\"f0c9ba4a-384f-41e1-91a0-c5224138989f\",\"type\":\"NormalHead\"},{\"attributes\":{},\"id\":\"85da341c-08e1-45e1-9d3e-8eb7b31f1c0e\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"86313e4f-9b9e-4709-980b-72177d006f73\",\"type\":\"Title\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"cc7f39a3-190e-4151-8482-bd1d29ed8d26\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"363eec45-5d4a-4b32-b017-4bcde97dcd0f\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7997d630-022e-4e8f-9e2b-9a9143891874\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":null},\"id\":\"f88eaf5c-162c-4b5f-bad7-13d2236e162a\",\"type\":\"NormalHead\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"9bd3638c-9a02-4bb3-bdc9-5087b3f3b412\",\"type\":\"BasicTicker\"}},\"id\":\"c58a35d9-db70-4f29-a55b-356b48d208b9\",\"type\":\"Grid\"},{\"attributes\":{\"end\":{\"id\":\"f0c9ba4a-384f-41e1-91a0-c5224138989f\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":0.9},\"x_start\":{\"value\":1.1},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"4ea54523-9078-4e1b-bee4-550341f426b8\",\"type\":\"Arrow\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"a54e916a-6d39-4d37-a1f5-f68be89026ce\",\"type\":\"PanTool\"},{\"id\":\"e7783245-bb78-47f3-839d-f06c59c58383\",\"type\":\"WheelZoomTool\"},{\"id\":\"e593631e-886c-4cf6-b867-c9e3721800b6\",\"type\":\"BoxZoomTool\"},{\"id\":\"7997d630-022e-4e8f-9e2b-9a9143891874\",\"type\":\"SaveTool\"},{\"id\":\"8b64eaf3-ce83-462f-8a99-e183d27bdd4d\",\"type\":\"ResetTool\"},{\"id\":\"8acf80a9-5553-44bc-8e2d-e1d6b4944a61\",\"type\":\"HelpTool\"}]},\"id\":\"b0db77eb-fbd7-4ea4-a505-72c9d27c1028\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"e869f06b-e0d1-4275-b95f-5e9905b2cc64\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"47ba58ca-e63b-4dbe-bf19-90446a9e4b6a\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"ef158bd3-c670-439c-b356-e3b38f25fec9\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"294a8eb1-94c8-4808-a7e3-11d9619948ff\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7c4825b9-684b-4078-b6eb-2e40d1f51d89\",\"type\":\"Span\"},{\"attributes\":{},\"id\":\"fdb0e284-a2cc-42b5-be29-ab11c93e90f6\",\"type\":\"ToolEvents\"},{\"attributes\":{},\"id\":\"38463e46-cb26-41f9-b6f5-e6c02e036d7e\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"78ef0314-6420-45b3-9651-3dca7018a404\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"d9b3f020-e834-488a-8171-871bd9132148\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"012383a4-c38c-4b26-9796-6e0e36733809\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"1e3c7d7f-b181-4e73-b85f-4f53c5d0411f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null},\"id\":\"c9d068d5-ae20-4dfa-b1a3-d3a129d5d852\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"ea419665-7642-4ce3-9caf-1de10bbbecb1\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8acf80a9-5553-44bc-8e2d-e1d6b4944a61\",\"type\":\"HelpTool\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"97277230-c5a2-4b79-8821-43a8bfb3b34a\",\"type\":\"BasicTicker\"}},\"id\":\"fc812d6d-7dba-42e8-b235-feb7b1a336e3\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"42b6d705-95a1-43a0-b081-abfc4c70e2e6\",\"type\":\"SaveTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[2.0,1.9183673469387754,1.836734693877551,1.7551020408163265,1.6734693877551021,1.5918367346938775,1.510204081632653,1.4285714285714286,1.3469387755102042,1.2653061224489797,1.183673469387755,1.1020408163265307,1.0204081632653061,0.9387755102040818,0.8571428571428572,0.7755102040816328,0.6938775510204083,0.6122448979591837,0.5306122448979593,0.44897959183673475,0.3673469387755104,0.2857142857142858,0.20408163265306145,0.12244897959183687,0.04081632653061229,-0.04081632653061229,-0.12244897959183643,-0.204081632653061,-0.2857142857142856,-0.36734693877551017,-0.4489795918367343,-0.5306122448979589,-0.6122448979591835,-0.693877551020408,-0.7755102040816326,-0.8571428571428568,-0.9387755102040813,-1.020408163265306,-1.1020408163265305,-1.1836734693877546,-1.2653061224489792,-1.3469387755102038,-1.4285714285714284,-1.510204081632653,-1.591836734693877,-1.6734693877551017,-1.7551020408163263,-1.8367346938775508,-1.9183673469387754,-2.0]}},\"id\":\"6e8713de-0aae-48ca-89a0-53b2e1241f5c\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1ee5f97b-e515-413c-9aa6-6d88243cccfe\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ca952037-111b-4fab-9952-d097cc115592\",\"type\":\"ResetTool\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"198e5fd5-3899-466d-b16d-18e5b6815d9a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"38463e46-cb26-41f9-b6f5-e6c02e036d7e\",\"type\":\"BasicTicker\"}},\"id\":\"caf79dfc-1c8b-49d0-ab4d-7f0547cb9c19\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"012383a4-c38c-4b26-9796-6e0e36733809\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"6e8713de-0aae-48ca-89a0-53b2e1241f5c\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"92ebb19c-28c5-4662-a222-5b0c9c1b6d90\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1ee5f97b-e515-413c-9aa6-6d88243cccfe\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"2274cc23-3bf3-418a-ba5c-af8b0a6a4715\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[4.0,3.680133277800916,3.3735943356934612,3.080383173677634,2.8004997917534364,2.533944189920866,2.2807163681799247,2.0408163265306123,1.8142440649729283,1.6009995835068722,1.4010828821324448,1.2144939608496463,1.0412328196584757,0.8812994585589341,0.7346938775510206,0.6014160766347358,0.4814660558100793,0.3748438150770512,0.281549354435652,0.20158267388588094,0.13494377342773858,0.08163265306122454,0.04164931278633912,0.014993752603082082,0.0016659725114535648,0.0016659725114535648,0.014993752603081974,0.04164931278633894,0.08163265306122441,0.13494377342773842,0.20158267388588053,0.2815493544356515,0.37484381507705095,0.48146605581007895,0.6014160766347355,0.7346938775510198,0.8812994585589332,1.0412328196584753,1.2144939608496457,1.4010828821324437,1.600999583506871,1.8142440649729272,2.040816326530612,2.2807163681799247,2.533944189920865,2.8004997917534347,3.0803831736776335,3.3735943356934603,3.680133277800916,4.0]}},\"id\":\"78ef0314-6420-45b3-9651-3dca7018a404\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"below\":[{\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"367b7f5f-9050-4457-a304-e964b2cef058\",\"type\":\"LinearAxis\"},{\"id\":\"fc812d6d-7dba-42e8-b235-feb7b1a336e3\",\"type\":\"Grid\"},{\"id\":\"2ea0cad3-c07d-442f-9e68-4b5804a4ba62\",\"type\":\"LinearAxis\"},{\"id\":\"7d49776d-f868-4152-922f-aa96bd21f2d5\",\"type\":\"Grid\"},{\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},{\"id\":\"ba1876f7-7b76-49af-b664-fc22f5437e4f\",\"type\":\"Span\"},{\"id\":\"7c4825b9-684b-4078-b6eb-2e40d1f51d89\",\"type\":\"Span\"},{\"id\":\"2274cc23-3bf3-418a-ba5c-af8b0a6a4715\",\"type\":\"GlyphRenderer\"},{\"id\":\"294a8eb1-94c8-4808-a7e3-11d9619948ff\",\"type\":\"GlyphRenderer\"},{\"id\":\"e7a98741-bec3-4ebf-b688-d5150a2db856\",\"type\":\"Arrow\"},{\"id\":\"4ea54523-9078-4e1b-bee4-550341f426b8\",\"type\":\"Arrow\"}],\"title\":{\"id\":\"86313e4f-9b9e-4709-980b-72177d006f73\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"fdb0e284-a2cc-42b5-be29-ab11c93e90f6\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"b0db77eb-fbd7-4ea4-a505-72c9d27c1028\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"c9d068d5-ae20-4dfa-b1a3-d3a129d5d852\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"2c91d74e-44ae-4186-a024-d075c503cec1\",\"type\":\"DataRange1d\"}},\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"overlay\":{\"id\":\"08896806-e352-4b71-8f72-be039456e715\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"92e904a7-f03d-43f8-b916-8d9c296d024a\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e593631e-886c-4cf6-b867-c9e3721800b6\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d9b3f020-e834-488a-8171-871bd9132148\",\"type\":\"Line\"}],\"root_ids\":[\"0c749fe7-42a2-4bd8-adad-2963836942f7\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"3a7d7de6-ed43-437c-923b-53302545fcf9\",\"elementid\":\"0a5866eb-6a57-4f94-8cb2-8ff182a02903\",\"modelid\":\"0c749fe7-42a2-4bd8-adad-2963836942f7\",\"notebook_comms_target\":\"7f146c07-2092-416e-8963-fa63bc47ddc2\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"att_v_fig = init_plot(show_yaxis=False)\n",
"attractor_fig.xaxis.visible = False\n",
"att_v_fig.x_range = attractor_fig.x_range\n",
"att_v_fig.xaxis.axis_label = 'x'\n",
"att_v_fig.yaxis.axis_label = 'V'\n",
"\n",
"att_v_fig.line(xs, v(xs), line_width=2)\n",
"att_v_fig.scatter(0, v(0), size=20)\n",
"\n",
"show(column([attractor_fig, att_v_fig]));"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"2009ec8e-0199-461c-8c30-7e4de4ddaa11\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"2009ec8e-0199-461c-8c30-7e4de4ddaa11\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '2009ec8e-0199-461c-8c30-7e4de4ddaa11' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"bb70a52e-9cc7-44e4-bfbf-7d687988b6bd\":{\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"},{\"id\":\"52b5d119-9860-400e-8db5-683e517cc043\",\"type\":\"Grid\"},{\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"},{\"id\":\"5dcbc515-0d2a-4e64-91ad-e89c0a2dc44b\",\"type\":\"Grid\"},{\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},{\"id\":\"c07fdae9-bff0-44be-bb35-1ca5ae3fc5d7\",\"type\":\"Span\"},{\"id\":\"d1ce83c9-5503-4927-ba05-52ef06b87dbd\",\"type\":\"Span\"},{\"id\":\"7c3ef19d-3085-49ea-ad88-1687cc66f9c2\",\"type\":\"GlyphRenderer\"},{\"id\":\"dd7cd32f-66c9-4020-aba9-682cfb22f757\",\"type\":\"GlyphRenderer\"},{\"id\":\"706e9381-f81d-4faa-9a24-d71a35911d30\",\"type\":\"Arrow\"},{\"id\":\"724981cc-dda1-4156-8e74-4dad18badc6c\",\"type\":\"Arrow\"}],\"title\":{\"id\":\"a1e32d61-8d18-4689-8916-46443ea170fc\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"2419f652-d600-4aab-91ce-c520ed8f6127\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"b0cb944b-b9e4-4438-9af8-98a80f3d5355\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"bc67957a-62a2-4e29-9517-363d6eb2a390\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"7ca72362-2c17-4589-945c-aa0f382eab2c\",\"type\":\"DataRange1d\"}},\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"70eb3e77-f1e9-44d4-9916-55e6be233074\",\"type\":\"BasicTicker\"}},\"id\":\"1d9e81b4-3206-40ed-9af8-e67d87154d97\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c9a30506-2bc7-4c9a-91d6-57431e1e0ba1\",\"type\":\"Line\"},{\"attributes\":{\"below\":[{\"id\":\"ff398b48-68cb-42e5-b8fa-b19672dcb6aa\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"305f1870-2ed7-4b5e-85ed-bc363f20ef59\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"ff398b48-68cb-42e5-b8fa-b19672dcb6aa\",\"type\":\"LinearAxis\"},{\"id\":\"fd52e262-34ec-494d-a191-64ba634aa37e\",\"type\":\"Grid\"},{\"id\":\"305f1870-2ed7-4b5e-85ed-bc363f20ef59\",\"type\":\"LinearAxis\"},{\"id\":\"1d9e81b4-3206-40ed-9af8-e67d87154d97\",\"type\":\"Grid\"},{\"id\":\"b1047b0d-d0b3-4c25-83f8-d9f7d7fd9fc5\",\"type\":\"BoxAnnotation\"},{\"id\":\"522933d1-3151-4ca5-a159-273694d5daa4\",\"type\":\"Span\"},{\"id\":\"f267861c-2fca-410f-a1db-bff7ad12b94c\",\"type\":\"GlyphRenderer\"},{\"id\":\"a66d851c-5aa0-44f5-bd2e-44f3349a903f\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"a612c56f-eaf9-46f6-884c-4fd695faf34e\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"1786c38f-9de5-4852-84d8-688e0b5559f1\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"260a1c19-0b2d-408d-852c-157d66a3020d\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"bc67957a-62a2-4e29-9517-363d6eb2a390\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"6ab18f2c-6c3a-439c-8dfe-641c75973d0b\",\"type\":\"DataRange1d\"}},\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"a1e32d61-8d18-4689-8916-46443ea170fc\",\"type\":\"Title\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"57a5477f-8ab3-432e-8a35-a9e2977ff8d1\",\"type\":\"Line\"},{\"attributes\":{\"axis_label\":\"x-dot\",\"formatter\":{\"id\":\"5bd88c74-f9c0-44e5-947d-2a79e39ca431\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"}},\"id\":\"4ef84b22-ee84-4060-bb2a-dc8132b218cd\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"0e032771-2678-4d02-b5c5-65b9a176eecb\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"df50942e-651e-4898-a4b4-d8286019a439\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"c9a30506-2bc7-4c9a-91d6-57431e1e0ba1\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"7c3ef19d-3085-49ea-ad88-1687cc66f9c2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"white\"},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"e7170f45-baa4-4b4c-8436-573ac8bc2120\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":null},\"id\":\"55891522-058a-4a16-ae0f-defe3941bf70\",\"type\":\"NormalHead\"},{\"attributes\":{\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bde66eda-4134-4d98-a03c-0e0ccc9a8583\",\"type\":\"SaveTool\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"df50942e-651e-4898-a4b4-d8286019a439\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null},\"id\":\"7c8f5163-71db-421b-b502-a6ded407a4db\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"7ca72362-2c17-4589-945c-aa0f382eab2c\",\"type\":\"DataRange1d\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"}},\"id\":\"5dcbc515-0d2a-4e64-91ad-e89c0a2dc44b\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"70eb3e77-f1e9-44d4-9916-55e6be233074\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"b305c2ad-b7a8-4c29-b768-94a743723d11\",\"type\":\"PanTool\"},{\"id\":\"0d950a5d-af08-4262-aebd-4abd93477caa\",\"type\":\"WheelZoomTool\"},{\"id\":\"4d3daead-1864-48b1-aa87-8bbab4146554\",\"type\":\"BoxZoomTool\"},{\"id\":\"bf4595db-8c93-47c2-990a-afabe79ae008\",\"type\":\"SaveTool\"},{\"id\":\"dfd10c8f-2d36-4f79-b9dd-a719bbd21a38\",\"type\":\"ResetTool\"},{\"id\":\"04cb21a3-a612-4f4b-929b-7b6e720a5a1a\",\"type\":\"HelpTool\"}]},\"id\":\"b0cb944b-b9e4-4438-9af8-98a80f3d5355\",\"type\":\"Toolbar\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"b1047b0d-d0b3-4c25-83f8-d9f7d7fd9fc5\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"04cb21a3-a612-4f4b-929b-7b6e720a5a1a\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"e780f468-1f11-4536-a59c-9b48b3576914\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"},\"visible\":false},\"id\":\"57cfc817-9ab8-46b6-91af-53111c49e949\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"2419f652-d600-4aab-91ce-c520ed8f6127\",\"type\":\"ToolEvents\"},{\"attributes\":{},\"id\":\"e780f468-1f11-4536-a59c-9b48b3576914\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":null},\"id\":\"07882eed-ebb6-4d39-aa8e-c88913c13df0\",\"type\":\"NormalHead\"},{\"attributes\":{\"end\":{\"id\":\"55891522-058a-4a16-ae0f-defe3941bf70\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":-1.1},\"x_start\":{\"value\":-0.9},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"706e9381-f81d-4faa-9a24-d71a35911d30\",\"type\":\"Arrow\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bf4595db-8c93-47c2-990a-afabe79ae008\",\"type\":\"SaveTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[-4.0,-3.680133277800916,-3.3735943356934612,-3.080383173677634,-2.8004997917534364,-2.533944189920866,-2.2807163681799247,-2.0408163265306123,-1.8142440649729283,-1.6009995835068722,-1.4010828821324448,-1.2144939608496463,-1.0412328196584757,-0.8812994585589341,-0.7346938775510206,-0.6014160766347358,-0.4814660558100793,-0.3748438150770512,-0.281549354435652,-0.20158267388588094,-0.13494377342773858,-0.08163265306122454,-0.04164931278633912,-0.014993752603082082,-0.0016659725114535648,-0.0016659725114535648,-0.014993752603081974,-0.04164931278633894,-0.08163265306122441,-0.13494377342773842,-0.20158267388588053,-0.2815493544356515,-0.37484381507705095,-0.48146605581007895,-0.6014160766347355,-0.7346938775510198,-0.8812994585589332,-1.0412328196584753,-1.2144939608496457,-1.4010828821324437,-1.600999583506871,-1.8142440649729272,-2.040816326530612,-2.2807163681799247,-2.533944189920865,-2.8004997917534347,-3.0803831736776335,-3.3735943356934603,-3.680133277800916,-4.0]}},\"id\":\"2338b98e-b363-4d59-9cba-dc75eb1b64e6\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"d6c3f799-73af-468f-911f-456cc204b2dc\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.0,-1.9183673469387754,-1.836734693877551,-1.7551020408163265,-1.6734693877551021,-1.5918367346938775,-1.510204081632653,-1.4285714285714286,-1.3469387755102042,-1.2653061224489797,-1.183673469387755,-1.1020408163265307,-1.0204081632653061,-0.9387755102040818,-0.8571428571428572,-0.7755102040816328,-0.6938775510204083,-0.6122448979591837,-0.5306122448979593,-0.44897959183673475,-0.3673469387755104,-0.2857142857142858,-0.20408163265306145,-0.12244897959183687,-0.04081632653061229,0.04081632653061229,0.12244897959183643,0.204081632653061,0.2857142857142856,0.36734693877551017,0.4489795918367343,0.5306122448979589,0.6122448979591835,0.693877551020408,0.7755102040816326,0.8571428571428568,0.9387755102040813,1.020408163265306,1.1020408163265305,1.1836734693877546,1.2653061224489792,1.3469387755102038,1.4285714285714284,1.510204081632653,1.591836734693877,1.6734693877551017,1.7551020408163263,1.8367346938775508,1.9183673469387754,2.0],\"y\":[2.0,1.9183673469387754,1.836734693877551,1.7551020408163265,1.6734693877551021,1.5918367346938775,1.510204081632653,1.4285714285714286,1.3469387755102042,1.2653061224489797,1.183673469387755,1.1020408163265307,1.0204081632653061,0.9387755102040818,0.8571428571428572,0.7755102040816328,0.6938775510204083,0.6122448979591837,0.5306122448979593,0.44897959183673475,0.3673469387755104,0.2857142857142858,0.20408163265306145,0.12244897959183687,0.04081632653061229,-0.04081632653061229,-0.12244897959183643,-0.204081632653061,-0.2857142857142856,-0.36734693877551017,-0.4489795918367343,-0.5306122448979589,-0.6122448979591835,-0.693877551020408,-0.7755102040816326,-0.8571428571428568,-0.9387755102040813,-1.020408163265306,-1.1020408163265305,-1.1836734693877546,-1.2653061224489792,-1.3469387755102038,-1.4285714285714284,-1.510204081632653,-1.591836734693877,-1.6734693877551017,-1.7551020408163263,-1.8367346938775508,-1.9183673469387754,-2.0]}},\"id\":\"0e032771-2678-4d02-b5c5-65b9a176eecb\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"a612c56f-eaf9-46f6-884c-4fd695faf34e\",\"type\":\"Title\"},{\"attributes\":{\"overlay\":{\"id\":\"b1047b0d-d0b3-4c25-83f8-d9f7d7fd9fc5\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"85a3cc7b-762c-4367-9c15-f4be2859658c\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1786c38f-9de5-4852-84d8-688e0b5559f1\",\"type\":\"ToolEvents\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d1ce83c9-5503-4927-ba05-52ef06b87dbd\",\"type\":\"Span\"},{\"attributes\":{},\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"54c15a3a-eb9a-4613-a658-369f0b85c421\",\"type\":\"PanTool\"},{\"id\":\"8b36cbd3-3bf0-493e-9a0b-5093565c0621\",\"type\":\"WheelZoomTool\"},{\"id\":\"85a3cc7b-762c-4367-9c15-f4be2859658c\",\"type\":\"BoxZoomTool\"},{\"id\":\"bde66eda-4134-4d98-a03c-0e0ccc9a8583\",\"type\":\"SaveTool\"},{\"id\":\"2b46a4c4-6f43-407c-bf5e-52c26c4c0641\",\"type\":\"ResetTool\"},{\"id\":\"6ddd299c-e6b3-4678-9933-39ddec64fe84\",\"type\":\"HelpTool\"}]},\"id\":\"260a1c19-0b2d-408d-852c-157d66a3020d\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"bb68c3b6-b232-49be-bf74-1cc98ba26641\",\"type\":\"BasicTicker\"},{\"attributes\":{\"end\":{\"id\":\"07882eed-ebb6-4d39-aa8e-c88913c13df0\",\"type\":\"NormalHead\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"source\":null,\"start\":null,\"x_end\":{\"value\":1.1},\"x_start\":{\"value\":0.9},\"y_end\":{\"value\":0},\"y_start\":{\"value\":0}},\"id\":\"724981cc-dda1-4156-8e74-4dad18badc6c\",\"type\":\"Arrow\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b305c2ad-b7a8-4c29-b768-94a743723d11\",\"type\":\"PanTool\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2a3c7dde-3f66-4c2f-a0b3-12fc6569b9ba\",\"type\":\"Line\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"522933d1-3151-4ca5-a159-273694d5daa4\",\"type\":\"Span\"},{\"attributes\":{\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8b36cbd3-3bf0-493e-9a0b-5093565c0621\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"bb68c3b6-b232-49be-bf74-1cc98ba26641\",\"type\":\"BasicTicker\"}},\"id\":\"fd52e262-34ec-494d-a191-64ba634aa37e\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"3838a06d-4c49-470b-a554-16504c3404ee\",\"type\":\"BasicTicker\"},{\"attributes\":{\"callback\":null},\"id\":\"6ab18f2c-6c3a-439c-8dfe-641c75973d0b\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"a2f49614-a6fb-4cea-bcd9-61eda19f389c\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null},\"id\":\"bc67957a-62a2-4e29-9517-363d6eb2a390\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data_source\":{\"id\":\"7c8f5163-71db-421b-b502-a6ded407a4db\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"e7170f45-baa4-4b4c-8436-573ac8bc2120\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"7c6877f6-2c7d-4d01-8f4e-e100fd43afdd\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"dd7cd32f-66c9-4020-aba9-682cfb22f757\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"V\",\"formatter\":{\"id\":\"a2f49614-a6fb-4cea-bcd9-61eda19f389c\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"70eb3e77-f1e9-44d4-9916-55e6be233074\",\"type\":\"BasicTicker\"}},\"id\":\"305f1870-2ed7-4b5e-85ed-bc363f20ef59\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"6ddd299c-e6b3-4678-9933-39ddec64fe84\",\"type\":\"HelpTool\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f344c21d-0b77-4c8b-af98-92b0c46b628c\",\"type\":\"BasicTicker\"}},\"id\":\"52b5d119-9860-400e-8db5-683e517cc043\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"765a7329-5ee6-4141-a977-1614a196c52f\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"7c6877f6-2c7d-4d01-8f4e-e100fd43afdd\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"54c15a3a-eb9a-4613-a658-369f0b85c421\",\"type\":\"PanTool\"},{\"attributes\":{\"overlay\":{\"id\":\"0d4239d0-d3a7-4d4f-bb71-c7a8b5625d0f\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4d3daead-1864-48b1-aa87-8bbab4146554\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"dfd10c8f-2d36-4f79-b9dd-a719bbd21a38\",\"type\":\"ResetTool\"},{\"attributes\":{\"data_source\":{\"id\":\"2338b98e-b363-4d59-9cba-dc75eb1b64e6\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"57a5477f-8ab3-432e-8a35-a9e2977ff8d1\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"2a3c7dde-3f66-4c2f-a0b3-12fc6569b9ba\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"f267861c-2fca-410f-a1db-bff7ad12b94c\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0d950a5d-af08-4262-aebd-4abd93477caa\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null},\"id\":\"9e088290-e14b-48a5-b4d6-6da3240ddf24\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"d6c3f799-73af-468f-911f-456cc204b2dc\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"bb68c3b6-b232-49be-bf74-1cc98ba26641\",\"type\":\"BasicTicker\"}},\"id\":\"ff398b48-68cb-42e5-b8fa-b19672dcb6aa\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"5bd88c74-f9c0-44e5-947d-2a79e39ca431\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c07fdae9-bff0-44be-bb35-1ca5ae3fc5d7\",\"type\":\"Span\"},{\"attributes\":{\"plot\":{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"2b46a4c4-6f43-407c-bf5e-52c26c4c0641\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"white\"},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"f4641566-7d29-4df1-b384-16109ee2c873\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"9e088290-e14b-48a5-b4d6-6da3240ddf24\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"f4641566-7d29-4df1-b384-16109ee2c873\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"765a7329-5ee6-4141-a977-1614a196c52f\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"a66d851c-5aa0-44f5-bd2e-44f3349a903f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"e4b3e02f-6f71-470e-90b2-48f70d24caab\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"eb473ca0-228a-4b82-8a94-f6ad2a2288cc\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"ffe8986f-bda1-4c27-b48e-9f62f2468790\",\"type\":\"Column\"}],\"root_ids\":[\"ffe8986f-bda1-4c27-b48e-9f62f2468790\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"bb70a52e-9cc7-44e4-bfbf-7d687988b6bd\",\"elementid\":\"2009ec8e-0199-461c-8c30-7e4de4ddaa11\",\"modelid\":\"ffe8986f-bda1-4c27-b48e-9f62f2468790\",\"notebook_comms_target\":\"dc8cef67-0b31-46e2-a25e-dc102195b82d\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"rep_v_fig = init_plot(show_yaxis=False)\n",
"repeller_fig.xaxis.visible = False\n",
"rep_v_fig.x_range = repeller_fig.x_range\n",
"rep_v_fig.xaxis.axis_label = 'x'\n",
"rep_v_fig.yaxis.axis_label = 'V'\n",
"\n",
"rep_v_fig.line(xs, v(xs, k=-1), line_width=2)\n",
"rep_v_fig.scatter(0, v(0), size=20, line_width=2, fill_color='white')\n",
"\n",
"show(column([repeller_fig, rep_v_fig]));"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### A nonlinear system\n",
"\n",
"$$ \\dot{x} = -rx - x^3 $$"
]
},
{
"cell_type": "code",
"execution_count": 75,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def ddx(r, x):\n",
" return -r - 3 * x**2\n",
"\n",
"def dx(r, x):\n",
" return -r * x - x**3\n",
"\n",
"def v(r, x):\n",
" x = np.asarray(x)\n",
" return (1/2) * r * x**2 + (1/4) * x**4"
]
},
{
"cell_type": "code",
"execution_count": 83,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"fd676109-7e18-4ffa-b3ae-9bcd50dd7346\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"fd676109-7e18-4ffa-b3ae-9bcd50dd7346\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'fd676109-7e18-4ffa-b3ae-9bcd50dd7346' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"35d22711-c926-4309-b8ac-8d42b0632c62\":{\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"d431a578-962a-40f8-9705-5331bd468edf\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"bca4cf9e-9a20-4370-9b65-068e39446d62\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"d431a578-962a-40f8-9705-5331bd468edf\",\"type\":\"LinearAxis\"},{\"id\":\"bacd7dcb-0e56-4b14-893a-77ca8ccc38b0\",\"type\":\"Grid\"},{\"id\":\"bca4cf9e-9a20-4370-9b65-068e39446d62\",\"type\":\"LinearAxis\"},{\"id\":\"114a8496-ca27-4c6b-b605-24f9efd118f3\",\"type\":\"Grid\"},{\"id\":\"dbae5b33-c573-46d3-911c-c97e94a1e113\",\"type\":\"BoxAnnotation\"},{\"id\":\"6db02c21-f0a8-492b-a5c5-b16f39c857be\",\"type\":\"Span\"},{\"id\":\"0abb971e-54bb-4f50-bc2c-2bc1e8df2f55\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"08516d6e-53d8-483b-82bd-f979a403eb60\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"9f301e7a-ed28-403d-92d6-f6cc7a294b93\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"65ff0ab7-e066-408f-bca0-96da4dc9df2c\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"0d10dda6-a1a8-4eda-876f-9601c34603da\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"20d3dc6b-5675-402d-b0ed-0dc981b6724a\",\"type\":\"DataRange1d\"}},\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-4.0,-3.991991991991992,-3.983983983983984,-3.975975975975976,-3.967967967967968,-3.95995995995996,-3.951951951951952,-3.943943943943944,-3.935935935935936,-3.9279279279279278,-3.91991991991992,-3.911911911911912,-3.903903903903904,-3.895895895895896,-3.8878878878878878,-3.87987987987988,-3.871871871871872,-3.863863863863864,-3.855855855855856,-3.8478478478478477,-3.83983983983984,-3.831831831831832,-3.823823823823824,-3.815815815815816,-3.8078078078078077,-3.7997997997998,-3.7917917917917916,-3.7837837837837838,-3.775775775775776,-3.7677677677677677,-3.75975975975976,-3.7517517517517516,-3.7437437437437437,-3.735735735735736,-3.7277277277277276,-3.71971971971972,-3.7117117117117115,-3.7037037037037037,-3.6956956956956954,-3.6876876876876876,-3.67967967967968,-3.6716716716716715,-3.6636636636636637,-3.6556556556556554,-3.6476476476476476,-3.6396396396396398,-3.6316316316316315,-3.6236236236236237,-3.6156156156156154,-3.6076076076076076,-3.5995995995995997,-3.5915915915915915,-3.5835835835835836,-3.5755755755755754,-3.5675675675675675,-3.5595595595595597,-3.5515515515515514,-3.5435435435435436,-3.5355355355355353,-3.5275275275275275,-3.5195195195195197,-3.5115115115115114,-3.5035035035035036,-3.4954954954954953,-3.4874874874874875,-3.4794794794794797,-3.4714714714714714,-3.4634634634634636,-3.4554554554554553,-3.4474474474474475,-3.4394394394394396,-3.4314314314314314,-3.4234234234234235,-3.4154154154154153,-3.4074074074074074,-3.3993993993993996,-3.3913913913913913,-3.3833833833833835,-3.3753753753753752,-3.3673673673673674,-3.3593593593593596,-3.3513513513513513,-3.3433433433433435,-3.335335335335335,-3.3273273273273274,-3.3193193193193196,-3.3113113113113113,-3.3033033033033035,-3.295295295295295,-3.2872872872872874,-3.2792792792792795,-3.2712712712712713,-3.263263263263263,-3.255255255255255,-3.2472472472472473,-3.2392392392392395,-3.2312312312312312,-3.223223223223223,-3.215215215215215,-3.2072072072072073,-3.1991991991991995,-3.191191191191191,-3.183183183183183,-3.175175175175175,-3.1671671671671673,-3.159159159159159,-3.151151151151151,-3.143143143143143,-3.135135135135135,-3.1271271271271273,-3.119119119119119,-3.111111111111111,-3.103103103103103,-3.095095095095095,-3.0870870870870872,-3.079079079079079,-3.071071071071071,-3.063063063063063,-3.055055055055055,-3.047047047047047,-3.039039039039039,-3.031031031031031,-3.023023023023023,-3.015015015015015,-3.007007007007007,-2.998998998998999,-2.990990990990991,-2.982982982982983,-2.974974974974975,-2.966966966966967,-2.958958958958959,-2.950950950950951,-2.942942942942943,-2.934934934934935,-2.926926926926927,-2.918918918918919,-2.910910910910911,-2.9029029029029028,-2.894894894894895,-2.886886886886887,-2.878878878878879,-2.8708708708708706,-2.8628628628628627,-2.854854854854855,-2.846846846846847,-2.838838838838839,-2.8308308308308305,-2.8228228228228227,-2.814814814814815,-2.806806806806807,-2.798798798798799,-2.7907907907907905,-2.7827827827827827,-2.774774774774775,-2.766766766766767,-2.7587587587587588,-2.7507507507507505,-2.7427427427427427,-2.734734734734735,-2.726726726726727,-2.7187187187187187,-2.7107107107107105,-2.7027027027027026,-2.694694694694695,-2.686686686686687,-2.6786786786786787,-2.6706706706706704,-2.6626626626626626,-2.6546546546546548,-2.646646646646647,-2.6386386386386387,-2.6306306306306304,-2.6226226226226226,-2.6146146146146148,-2.606606606606607,-2.5985985985985987,-2.5905905905905904,-2.5825825825825826,-2.5745745745745747,-2.566566566566567,-2.5585585585585586,-2.5505505505505504,-2.5425425425425425,-2.5345345345345347,-2.5265265265265264,-2.5185185185185186,-2.5105105105105103,-2.5025025025025025,-2.4944944944944947,-2.4864864864864864,-2.4784784784784786,-2.4704704704704703,-2.4624624624624625,-2.4544544544544546,-2.4464464464464464,-2.4384384384384385,-2.4304304304304303,-2.4224224224224224,-2.4144144144144146,-2.4064064064064064,-2.3983983983983985,-2.3903903903903903,-2.3823823823823824,-2.3743743743743746,-2.3663663663663663,-2.358358358358358,-2.3503503503503502,-2.3423423423423424,-2.3343343343343346,-2.3263263263263263,-2.318318318318318,-2.31031031031031,-2.3023023023023024,-2.2942942942942945,-2.2862862862862863,-2.278278278278278,-2.27027027027027,-2.2622622622622623,-2.2542542542542545,-2.2462462462462462,-2.238238238238238,-2.23023023023023,-2.2222222222222223,-2.2142142142142145,-2.206206206206206,-2.198198198198198,-2.19019019019019,-2.1821821821821823,-2.1741741741741745,-2.166166166166166,-2.158158158158158,-2.15015015015015,-2.1421421421421423,-2.1341341341341344,-2.126126126126126,-2.118118118118118,-2.11011011011011,-2.1021021021021022,-2.0940940940940944,-2.086086086086086,-2.078078078078078,-2.07007007007007,-2.062062062062062,-2.0540540540540544,-2.046046046046046,-2.038038038038038,-2.03003003003003,-2.022022022022022,-2.014014014014014,-2.006006006006006,-1.9979979979979978,-1.98998998998999,-1.9819819819819822,-1.973973973973974,-1.965965965965966,-1.9579579579579578,-1.94994994994995,-1.9419419419419421,-1.9339339339339339,-1.925925925925926,-1.9179179179179178,-1.90990990990991,-1.9019019019019021,-1.8938938938938938,-1.885885885885886,-1.8778778778778777,-1.86986986986987,-1.861861861861862,-1.8538538538538538,-1.845845845845846,-1.8378378378378377,-1.82982982982983,-1.821821821821822,-1.8138138138138138,-1.805805805805806,-1.7977977977977977,-1.7897897897897899,-1.7817817817817816,-1.7737737737737738,-1.765765765765766,-1.7577577577577577,-1.7497497497497498,-1.7417417417417416,-1.7337337337337337,-1.725725725725726,-1.7177177177177176,-1.7097097097097098,-1.7017017017017015,-1.6936936936936937,-1.6856856856856859,-1.6776776776776776,-1.6696696696696698,-1.6616616616616615,-1.6536536536536537,-1.6456456456456459,-1.6376376376376376,-1.6296296296296298,-1.6216216216216215,-1.6136136136136137,-1.6056056056056058,-1.5975975975975976,-1.5895895895895897,-1.5815815815815815,-1.5735735735735736,-1.5655655655655654,-1.5575575575575575,-1.5495495495495497,-1.5415415415415414,-1.5335335335335336,-1.5255255255255253,-1.5175175175175175,-1.5095095095095097,-1.5015015015015014,-1.4934934934934936,-1.4854854854854853,-1.4774774774774775,-1.4694694694694697,-1.4614614614614614,-1.4534534534534536,-1.4454454454454453,-1.4374374374374375,-1.4294294294294296,-1.4214214214214214,-1.4134134134134135,-1.4054054054054053,-1.3973973973973974,-1.3893893893893896,-1.3813813813813813,-1.3733733733733735,-1.3653653653653652,-1.3573573573573574,-1.3493493493493496,-1.3413413413413413,-1.3333333333333335,-1.3253253253253252,-1.3173173173173174,-1.3093093093093096,-1.3013013013013013,-1.2932932932932935,-1.2852852852852852,-1.2772772772772774,-1.269269269269269,-1.2612612612612613,-1.2532532532532534,-1.2452452452452452,-1.2372372372372373,-1.229229229229229,-1.2212212212212212,-1.2132132132132134,-1.2052052052052051,-1.1971971971971973,-1.189189189189189,-1.1811811811811812,-1.1731731731731734,-1.165165165165165,-1.1571571571571573,-1.149149149149149,-1.1411411411411412,-1.1331331331331334,-1.125125125125125,-1.1171171171171173,-1.109109109109109,-1.1011011011011012,-1.0930930930930933,-1.085085085085085,-1.0770770770770772,-1.069069069069069,-1.0610610610610611,-1.0530530530530529,-1.045045045045045,-1.0370370370370372,-1.029029029029029,-1.021021021021021,-1.0130130130130128,-1.005005005005005,-0.9969969969969972,-0.9889889889889889,-0.9809809809809811,-0.9729729729729728,-0.964964964964965,-0.9569569569569571,-0.9489489489489489,-0.940940940940941,-0.9329329329329328,-0.924924924924925,-0.9169169169169171,-0.9089089089089089,-0.900900900900901,-0.8928928928928928,-0.8848848848848849,-0.8768768768768771,-0.8688688688688688,-0.860860860860861,-0.8528528528528527,-0.8448448448448449,-0.8368368368368371,-0.8288288288288288,-0.820820820820821,-0.8128128128128127,-0.8048048048048049,-0.796796796796797,-0.7887887887887888,-0.780780780780781,-0.7727727727727727,-0.7647647647647648,-0.7567567567567566,-0.7487487487487487,-0.7407407407407409,-0.7327327327327327,-0.7247247247247248,-0.7167167167167166,-0.7087087087087087,-0.7007007007007009,-0.6926926926926926,-0.6846846846846848,-0.6766766766766765,-0.6686686686686687,-0.6606606606606609,-0.6526526526526526,-0.6446446446446448,-0.6366366366366365,-0.6286286286286287,-0.6206206206206208,-0.6126126126126126,-0.6046046046046047,-0.5965965965965965,-0.5885885885885886,-0.5805805805805808,-0.5725725725725725,-0.5645645645645647,-0.5565565565565564,-0.5485485485485486,-0.5405405405405403,-0.5325325325325325,-0.5245245245245247,-0.5165165165165164,-0.5085085085085086,-0.5005005005005003,-0.4924924924924925,-0.48448448448448467,-0.4764764764764764,-0.46846846846846857,-0.4604604604604603,-0.45245245245245247,-0.44444444444444464,-0.43643643643643637,-0.42842842842842854,-0.42042042042042027,-0.41241241241241244,-0.4044044044044046,-0.39639639639639634,-0.3883883883883885,-0.38038038038038025,-0.3723723723723724,-0.3643643643643646,-0.3563563563563563,-0.3483483483483485,-0.3403403403403402,-0.3323323323323324,-0.32432432432432456,-0.3163163163163163,-0.30830830830830847,-0.3003003003003002,-0.29229229229229237,-0.28428428428428454,-0.27627627627627627,-0.26826826826826844,-0.26026026026026017,-0.25225225225225234,-0.24424424424424407,-0.23623623623623624,-0.2282282282282284,-0.22022022022022014,-0.21221221221221231,-0.20420420420420404,-0.19619619619619622,-0.1881881881881884,-0.18018018018018012,-0.1721721721721723,-0.16416416416416402,-0.1561561561561562,-0.14814814814814836,-0.1401401401401401,-0.13213213213213226,-0.12412412412412399,-0.11611611611611616,-0.10810810810810834,-0.10010010010010006,-0.09209209209209224,-0.08408408408408397,-0.07607607607607614,-0.06806806806806831,-0.06006006006006004,-0.05205205205205221,-0.04404404404404394,-0.03603603603603611,-0.02802802802802784,-0.020020020020020013,-0.012012012012012185,-0.004004004004003914,0.004004004004004358,0.012012012012012185,0.020020020020020013,0.02802802802802784,0.03603603603603567,0.044044044044044384,0.05205205205205221,0.06006006006006004,0.06806806806806787,0.0760760760760757,0.08408408408408441,0.09209209209209224,0.10010010010010006,0.10810810810810789,0.11611611611611572,0.12412412412412444,0.13213213213213226,0.1401401401401401,0.14814814814814792,0.15615615615615575,0.16416416416416446,0.1721721721721723,0.18018018018018012,0.18818818818818794,0.19619619619619577,0.2042042042042045,0.21221221221221231,0.22022022022022014,0.22822822822822797,0.2362362362362358,0.2442442442442445,0.25225225225225234,0.26026026026026017,0.268268268268268,0.2762762762762758,0.28428428428428454,0.29229229229229237,0.3003003003003002,0.308308308308308,0.31631631631631585,0.32432432432432456,0.3323323323323324,0.3403403403403402,0.34834834834834805,0.3563563563563559,0.3643643643643646,0.3723723723723724,0.38038038038038025,0.3883883883883881,0.3963963963963968,0.4044044044044046,0.41241241241241244,0.42042042042042027,0.4284284284284281,0.4364364364364368,0.44444444444444464,0.45245245245245247,0.4604604604604603,0.4684684684684681,0.47647647647647684,0.48448448448448467,0.4924924924924925,0.5005005005005003,0.5085085085085082,0.5165165165165169,0.5245245245245247,0.5325325325325325,0.5405405405405403,0.5485485485485482,0.5565565565565569,0.5645645645645647,0.5725725725725725,0.5805805805805804,0.5885885885885882,0.5965965965965969,0.6046046046046047,0.6126126126126126,0.6206206206206204,0.6286286286286282,0.6366366366366369,0.6446446446446448,0.6526526526526526,0.6606606606606604,0.6686686686686683,0.676676676676677,0.6846846846846848,0.6926926926926926,0.7007007007007005,0.7087087087087083,0.716716716716717,0.7247247247247248,0.7327327327327327,0.7407407407407405,0.7487487487487483,0.756756756756757,0.7647647647647648,0.7727727727727727,0.7807807807807805,0.7887887887887883,0.796796796796797,0.8048048048048049,0.8128128128128127,0.8208208208208205,0.8288288288288284,0.8368368368368371,0.8448448448448449,0.8528528528528527,0.8608608608608606,0.8688688688688693,0.8768768768768771,0.8848848848848849,0.8928928928928928,0.9009009009009006,0.9089089089089093,0.9169169169169171,0.924924924924925,0.9329329329329328,0.9409409409409406,0.9489489489489493,0.9569569569569571,0.964964964964965,0.9729729729729728,0.9809809809809806,0.9889889889889893,0.9969969969969972,1.005005005005005,1.0130130130130128,1.0210210210210207,1.0290290290290294,1.0370370370370372,1.045045045045045,1.0530530530530529,1.0610610610610607,1.0690690690690694,1.0770770770770772,1.085085085085085,1.0930930930930929,1.1011011011011007,1.1091091091091094,1.1171171171171173,1.125125125125125,1.133133133133133,1.1411411411411407,1.1491491491491495,1.1571571571571573,1.165165165165165,1.173173173173173,1.1811811811811808,1.1891891891891895,1.1971971971971973,1.2052052052052051,1.213213213213213,1.2212212212212208,1.2292292292292295,1.2372372372372373,1.2452452452452452,1.253253253253253,1.2612612612612608,1.2692692692692695,1.2772772772772774,1.2852852852852852,1.293293293293293,1.3013013013013008,1.3093093093093096,1.3173173173173174,1.3253253253253252,1.333333333333333,1.3413413413413409,1.3493493493493496,1.3573573573573574,1.3653653653653652,1.373373373373373,1.381381381381381,1.3893893893893896,1.3973973973973974,1.4054054054054053,1.413413413413413,1.4214214214214218,1.4294294294294296,1.4374374374374375,1.4454454454454453,1.4534534534534531,1.4614614614614618,1.4694694694694697,1.4774774774774775,1.4854854854854853,1.4934934934934931,1.5015015015015019,1.5095095095095097,1.5175175175175175,1.5255255255255253,1.5335335335335332,1.5415415415415419,1.5495495495495497,1.5575575575575575,1.5655655655655654,1.5735735735735732,1.581581581581582,1.5895895895895897,1.5975975975975976,1.6056056056056054,1.6136136136136132,1.621621621621622,1.6296296296296298,1.6376376376376376,1.6456456456456454,1.6536536536536532,1.661661661661662,1.6696696696696698,1.6776776776776776,1.6856856856856854,1.6936936936936933,1.701701701701702,1.7097097097097098,1.7177177177177176,1.7257257257257255,1.7337337337337333,1.741741741741742,1.7497497497497498,1.7577577577577577,1.7657657657657655,1.7737737737737733,1.781781781781782,1.7897897897897899,1.7977977977977977,1.8058058058058055,1.8138138138138133,1.821821821821822,1.82982982982983,1.8378378378378377,1.8458458458458455,1.8538538538538534,1.861861861861862,1.86986986986987,1.8778778778778777,1.8858858858858856,1.8938938938938943,1.9019019019019021,1.90990990990991,1.9179179179179178,1.9259259259259256,1.9339339339339343,1.9419419419419421,1.94994994994995,1.9579579579579578,1.9659659659659656,1.9739739739739743,1.9819819819819822,1.98998998998999,1.9979979979979978,2.0060060060060056,2.0140140140140144,2.022022022022022,2.03003003003003,2.038038038038038,2.0460460460460457,2.0540540540540544,2.062062062062062,2.07007007007007,2.078078078078078,2.0860860860860857,2.0940940940940944,2.1021021021021022,2.11011011011011,2.118118118118118,2.1261261261261257,2.1341341341341344,2.1421421421421423,2.15015015015015,2.158158158158158,2.1661661661661658,2.1741741741741745,2.1821821821821823,2.19019019019019,2.198198198198198,2.2062062062062058,2.2142142142142145,2.2222222222222223,2.23023023023023,2.238238238238238,2.246246246246246,2.2542542542542545,2.2622622622622623,2.27027027027027,2.278278278278278,2.286286286286286,2.2942942942942945,2.3023023023023024,2.31031031031031,2.318318318318318,2.326326326326326,2.3343343343343346,2.3423423423423424,2.3503503503503502,2.358358358358358,2.366366366366366,2.3743743743743746,2.3823823823823824,2.3903903903903903,2.398398398398398,2.406406406406406,2.4144144144144146,2.4224224224224224,2.4304304304304303,2.438438438438438,2.446446446446447,2.4544544544544546,2.4624624624624625,2.4704704704704703,2.478478478478478,2.486486486486487,2.4944944944944947,2.5025025025025025,2.5105105105105103,2.518518518518518,2.526526526526527,2.5345345345345347,2.5425425425425425,2.5505505505505504,2.558558558558558,2.566566566566567,2.5745745745745747,2.5825825825825826,2.5905905905905904,2.598598598598598,2.606606606606607,2.6146146146146148,2.6226226226226226,2.6306306306306304,2.6386386386386382,2.646646646646647,2.6546546546546548,2.6626626626626626,2.6706706706706704,2.6786786786786783,2.686686686686687,2.694694694694695,2.7027027027027026,2.7107107107107105,2.7187187187187183,2.726726726726727,2.734734734734735,2.7427427427427427,2.7507507507507505,2.7587587587587583,2.766766766766767,2.774774774774775,2.7827827827827827,2.7907907907907905,2.7987987987987983,2.806806806806807,2.814814814814815,2.8228228228228227,2.8308308308308305,2.8388388388388384,2.846846846846847,2.854854854854855,2.8628628628628627,2.8708708708708706,2.8788788788788784,2.886886886886887,2.894894894894895,2.9029029029029028,2.9109109109109106,2.9189189189189193,2.926926926926927,2.934934934934935,2.942942942942943,2.9509509509509506,2.9589589589589593,2.966966966966967,2.974974974974975,2.982982982982983,2.9909909909909906,2.9989989989989994,3.007007007007007,3.015015015015015,3.023023023023023,3.0310310310310307,3.0390390390390394,3.047047047047047,3.055055055055055,3.063063063063063,3.0710710710710707,3.0790790790790794,3.0870870870870872,3.095095095095095,3.103103103103103,3.1111111111111107,3.1191191191191194,3.1271271271271273,3.135135135135135,3.143143143143143,3.1511511511511507,3.1591591591591595,3.1671671671671673,3.175175175175175,3.183183183183183,3.1911911911911908,3.1991991991991995,3.2072072072072073,3.215215215215215,3.223223223223223,3.231231231231231,3.2392392392392395,3.2472472472472473,3.255255255255255,3.263263263263263,3.271271271271271,3.2792792792792795,3.2872872872872874,3.295295295295295,3.303303303303303,3.311311311311311,3.3193193193193196,3.3273273273273274,3.335335335335335,3.343343343343343,3.351351351351351,3.3593593593593596,3.3673673673673674,3.3753753753753752,3.383383383383383,3.391391391391391,3.3993993993993996,3.4074074074074074,3.4154154154154153,3.423423423423423,3.431431431431431,3.4394394394394396,3.4474474474474475,3.4554554554554553,3.463463463463463,3.471471471471472,3.4794794794794797,3.4874874874874875,3.4954954954954953,3.503503503503503,3.511511511511512,3.5195195195195197,3.5275275275275275,3.5355355355355353,3.543543543543543,3.551551551551552,3.5595595595595597,3.5675675675675675,3.5755755755755754,3.583583583583583,3.591591591591592,3.5995995995995997,3.6076076076076076,3.6156156156156154,3.6236236236236232,3.631631631631632,3.6396396396396398,3.6476476476476476,3.6556556556556554,3.6636636636636633,3.671671671671672,3.67967967967968,3.6876876876876876,3.6956956956956954,3.7037037037037033,3.711711711711712,3.71971971971972,3.7277277277277276,3.7357357357357355,3.7437437437437433,3.751751751751752,3.75975975975976,3.7677677677677677,3.7757757757757755,3.7837837837837833,3.791791791791792,3.7997997997998,3.8078078078078077,3.8158158158158155,3.8238238238238234,3.831831831831832,3.83983983983984,3.8478478478478477,3.8558558558558556,3.8638638638638634,3.871871871871872,3.87987987987988,3.8878878878878878,3.8958958958958956,3.9039039039039034,3.911911911911912,3.91991991991992,3.9279279279279278,3.9359359359359356,3.9439439439439443,3.951951951951952,3.95995995995996,3.967967967967968,3.9759759759759756,3.9839839839839843,3.991991991991992,4.0],\"y\":[72.0,71.45702454303755,70.91717905695126,70.38045125381517,69.84682887037775,69.31629966806213,68.7888514329659,68.26447197586121,67.74314913219484,67.22487076208803,66.70962475033664,66.19739900641102,65.68818146445608,65.18196008329133,64.67872284641076,64.17845776198301,63.68115286285118,63.18679620653289,62.69537587522045,62.20687997578057,61.72129663975465,61.23861402335853,60.75882030748261,60.281903697691924,59.807852424225956,59.33665474199883,58.86829893059913,58.402773294290085,57.9400661620094,57.48016588736933,57.02306084865676,56.568739448833014,56.117190115534086,55.66840130107042,55.22236148242703,54.779059161263554,54.33848286391406,53.90062114138728,53.46546256936642,53.032995748209295,52.603209302948216,52.17609188329004,51.751632163616264,51.3298188429828,50.91064064512026,50.49408631843369,50.080144636002686,49.6688043955815,49.26005441959882,48.85388355515798,48.45028067403678,48.049234672687604,47.6507344722374,47.25476901848765,46.86132728191441,46.47039825766826,46.0819709655743,45.696034450132274,45.31257778051637,44.93159005057542,44.553060378832754,44.17697790848622,43.80333180740832,43.43211126814598,43.063305507920795,42.69690376862883,42.33289531684071,41.97126944380166,41.61201546543138,41.2551227223242,40.90058057974895,40.548378427649,40.19850568064231,39.85095177802137,39.505706183753226,39.16275838647948,38.82209789951623,38.48371426085423,38.14759703315867,37.81373580376938,37.482120184700705,37.15273981264149,36.825584348955246,36.50064347967991,36.17790691552807,35.857364391886804,35.539005668817744,35.22282053105711,34.908798788015616,34.5969302737786,34.28720484710588,33.97961239143185,33.67414281486546,33.37078605019023,33.06953205486419,32.77037081101994,32.4732923254646,32.1782866296799,31.885343779822097,31.594453856721973,31.305606965884877,31.01879323749069,30.734002826393887,30.451225912123473,30.170452698882983,29.891673415550507,29.614878315678723,29.340057677494798,29.067201803900517,28.796301022472168,28.52734568546058,28.260326169791192,27.995232877063923,27.732056233553305,27.470786690208374,27.21141472265272,26.953930831184522,26.69832554077646,26.44458940107581,26.192712986404363,25.94268689575846,25.694501752809032,25.44814820590151,25.20361692805592,24.9608986169668,24.719983995003258,24.48086380920896,24.243528831302086,24.007969857675427,23.77417770939627,23.542143232206463,23.31185729652243,23.08331079743511,22.856494654710033,22.631399812787244,22.40801724078134,22.1863379324815,21.96635290635141,21.74805320552935,21.53142989782812,21.316474075735062,21.103176856412105,20.891529381695715,20.681522818096887,20.47314835680119,20.266397213668714,20.061260629234134,19.857729868706674,19.65579622197008,19.455451003582663,19.256685552777277,19.059491233461344,18.863859434216835,18.66978156830025,18.477249073642653,18.286253412849646,18.096786073201407,17.908838566652655,17.72240242983264,17.537469224045182,17.35403053526863,17.17207797415591,16.991603176034502,16.8125978009064,16.635053533448176,16.458962083010935,16.28431518362035,16.11110459397665,15.939322097454586,15.768959502103478,15.60000864064718,15.432461370484122,15.266309573687277,15.101545157004157,14.938160051856824,14.77614621434189,14.615495625230535,14.456200289968479,14.298252238675985,14.141643526147872,13.986366231853504,13.832412459936801,13.679774339216246,13.528444023184852,13.378413690010175,13.229675542534356,13.08222180827405,12.936044739420488,12.79113661283944,12.647489730071214,12.5050964173307,12.363949025507305,12.224039930165016,12.085361531542343,11.947906254552358,11.811666548782693,11.676634888495512,11.542803772627547,11.410165724790067,11.27871329326889,11.148439051024402,11.019335595691514,10.891395549579713,10.76461155967302,10.63897629763,10.514482459783787,10.391122767142063,10.268889965387048,10.147776824875516,10.027776140638787,9.908880732382746,9.791083444487825,9.674377146008995,9.558754730675783,9.44420911689226,9.33073324773706,9.218320090963369,9.106962638998906,8.996653908945952,8.88738694258133,8.779154806356424,8.67195059139717,8.565767413504041,8.460598413152066,8.35643675549082,8.253275630344442,8.151108252211614,8.049927860265564,7.949727718354071,7.850501114999462,7.752241363398625,7.654941801422995,7.558595791618551,7.463196721205824,7.3687380020798905,7.275213070810391,7.182615388641513,7.090938441491983,7.000175739955087,6.9103208192986525,6.821367239465069,6.733308585071276,6.646138465408752,6.559850514443534,6.4744383908162,6.3898957778418914,6.3062163835103,6.2233939404856535,6.1414222061067365,6.0602949623868945,5.980006016014002,5.900549198350508,5.821918365433395,5.744107397974194,5.6671102013590025,5.5909207056484505,5.515532865577733,5.440940660556587,5.3671380946692935,5.2941191966747025,5.221878020006193,5.150408642771715,5.079705167753751,5.00976172240934,4.9405724588700775,4.872131553942098,4.804433209106099,4.737471650517318,4.671241129005541,4.605735920075119,4.540950323904935,4.4768786653484405,4.413515293933621,4.350854583863016,4.288890934013727,4.227618767937389,4.167032533860201,4.107126704682901,4.0478957779807905,3.9893342760037083,3.931436745676045,3.874197758596753,3.81761191103932,3.7616738239517966,3.706378142956777,3.6517195383514016,3.597692705107373,3.5442923628709306,3.4915132559628774,3.439350153378556,3.387797848787862,3.3368511605352467,3.2865049316397013,3.23675402979478,3.187593347368577,3.1390178014037384,3.0910223336174676,3.043601910401507,2.9967515228221613,2.950466186620277,2.9047409422112507,2.8595708546850367,2.81495101380613,2.7708765340135857,2.727342554420999,2.684344238816526,2.6418767756628636,2.5999353780972614,2.5585152839315253,2.517611755652003,2.477220080419599,2.4373355700697643,2.397953561112499,2.3590694147323603,2.320678516788446,2.2827762778144134,2.2453581330184638,2.208419542283349,2.171955990166377,2.1359629858993974,2.100436063388819,2.0653707812155937,2.0307627226352247,1.9966074955777713,1.9629007326478347,1.9296380911245743,1.896815252961694,1.864427924787448,1.8324718379046465,1.8009427482906424,1.769836436597346,1.7391487081512125,1.7088753929532479,1.679012345679013,1.6495554456786121,1.620500596976707,1.5918437282725044,1.563580792939761,1.5357077690267888,1.5082206592564442,1.4811154910261395,1.4543883164078313,1.428035212148032,1.4020522796678008,1.3764356450627466,1.3511814591030324,1.3262858972333669,1.3017451595730134,1.2775554709157824,1.253713080730034,1.230214263158683,1.2070553170191884,1.1842325658035655,1.1617423576783756,1.1395810654847305,1.1177450867382956,1.0962308436292822,1.0750347830224558,1.0541533764571298,1.0335831201471666,1.0133205349809833,0.9933621665215421,0.9737045850063601,0.9543443853475018,0.935278187131581,0.9165026346197658,0.8980143967477698,0.8798101671258618,0.8618866640388555,0.8442406304461201,0.8268688339815712,0.8097680669536753,0.7929351463454515,0.776366913814466,0.7600602356928381,0.7440120029872354,0.7282191313788754,0.7126785612235285,0.6973872575515121,0.6823422100676969,0.6675404331515017,0.6529789658568952,0.6386548719123992,0.6245652397210821,0.6107071823605662,0.5970778375830212,0.5836743678151675,0.5704939601582777,0.557533826388172,0.5447912029552232,0.532263350984353,0.5199475562750328,0.5078411293012862,0.495941405211685,0.48424574382935326,0.47275152965196365,0.46145617185173904,0.4503571042754544,0.4394517854444326,0.428737698554549,0.4182123514762276,0.40787327675444246,0.3977180316087198,0.38774419793313386,0.37794938229631114,0.36833121594142637,0.35888735478620665,0.3496154794229277,0.34051329511841555,0.33157853181404795,0.322808944125751,0.314202311344003,0.3057564374338309,0.29746915103481214,0.28933830546107553,0.2813617787012986,0.2735374734187107,0.2658633169510903,0.25833726131076584,0.25095728318461763,0.2437213839340744,0.23662758959511665,0.22967395087827414,0.22285854316862677,0.21617946652580586,0.20963484568399152,0.2032228300519155,0.19694159371285877,0.1907893354246526,0.18476427861967948,0.17886467140487078,0.17308878656170956,0.16743492154622774,0.16190139848900878,0.15648656419518545,0.1511887901444408,0.146006472491009,0.1409380320636734,0.13598191436576856,0.1311365895751786,0.12640055254433785,0.1217723228002317,0.11725044454439475,0.11283348665291286,0.10852004267642139,0.10430873084010596,0.10019819404370318,0.09618709986149897,0.09227414054233037,0.08845803300958406,0.08473751886119694,0.08111136436965681,0.07757836048200092,0.07413732281981752,0.07078709167924457,0.06752653203097028,0.06435453352023365,0.06127001046682322,0.05827190186507848,0.05535917138388866,0.052530807366693265,0.0497858228314825,0.047123255470796224,0.04454216765172514,0.04204164641590977,0.039620803479540875,0.03727877523335991,0.03501472274265803,0.032827831747277145,0.030717312661608955,0.028682400574595854,0.026722355249730163,0.024836461125054457,0.023024027313161874,0.021284387601195404,0.019616900450848677,0.018020948998365285,0.016495941054539085,0.015041309104714446,0.01365651030878565,0.012341026501197554,0.01109436419094503,0.009916054561573219,0.00880565347117771,0.007762741452404088,0.006786923712448433,0.005877830133056897,0.005035115270525903,0.004258458355702263,0.0035475632939828633,0.0029021586653150055,0.0023219977241961246,0.0018068583996739232,0.0013565432953464385,0.0009708796893618546,0.0006497195344186994,0.00039293945776567576,0.00020044076120180246,7.214942107630637e-05,8.01608828868097e-06,8.016088288682748e-06,7.214942107630637e-05,0.00020044076120180246,0.00039293945776567576,0.0006497195344186835,0.0009708796893618741,0.0013565432953464385,0.0018068583996739232,0.0023219977241960943,0.0029021586653149713,0.0035475632939829006,0.004258458355702263,0.005035115270525903,0.005877830133056848,0.00678692371244838,0.007762741452404145,0.00880565347117771,0.009916054561573219,0.011094364190944962,0.012341026501197483,0.013656510308785726,0.015041309104714446,0.016495941054539085,0.018020948998365198,0.019616900450848587,0.021284387601195498,0.023024027313161874,0.024836461125054457,0.02672235524973006,0.028682400574595746,0.03071731266160907,0.032827831747277145,0.03501472274265803,0.03727877523335978,0.039620803479540743,0.04204164641590977,0.04454216765172514,0.047123255470796224,0.04978582283148235,0.05253080736669311,0.05535917138388866,0.05827190186507848,0.06127001046682322,0.06435453352023347,0.06752653203097012,0.07078709167924457,0.07413732281981752,0.07757836048200092,0.08111136436965662,0.08473751886119714,0.08845803300958406,0.09227414054233037,0.09618709986149897,0.10019819404370296,0.1043087308401062,0.10852004267642139,0.11283348665291286,0.11725044454439475,0.12177232280023145,0.1264005525443381,0.1311365895751786,0.13598191436576856,0.1409380320636734,0.14600647249100873,0.1511887901444411,0.15648656419518545,0.16190139848900878,0.16743492154622774,0.17308878656170926,0.1788646714048711,0.18476427861967948,0.1907893354246526,0.19694159371285844,0.20322283005191513,0.20963484568399188,0.21617946652580586,0.22285854316862677,0.22967395087827377,0.2366275895951163,0.24372138393407478,0.25095728318461763,0.25833726131076584,0.26586331695108983,0.27353747341871026,0.281361778701299,0.28933830546107553,0.29746915103481214,0.30575643743383046,0.31420231134400256,0.32280894412575156,0.33157853181404795,0.34051329511841555,0.34961547942292714,0.35888735478620615,0.36833121594142687,0.37794938229631114,0.38774419793313386,0.39771803160871927,0.4078732767544419,0.4182123514762276,0.428737698554549,0.4394517854444326,0.45035710427545383,0.4614561718517384,0.47275152965196365,0.48424574382935326,0.495941405211685,0.5078411293012856,0.5199475562750334,0.532263350984353,0.5447912029552232,0.557533826388172,0.570493960158277,0.5836743678151681,0.5970778375830212,0.6107071823605662,0.6245652397210821,0.6386548719123983,0.652978965856896,0.6675404331515017,0.6823422100676969,0.6973872575515121,0.7126785612235277,0.7282191313788763,0.7440120029872354,0.7600602356928381,0.776366913814466,0.7929351463454506,0.8097680669536762,0.8268688339815712,0.8442406304461201,0.8618866640388555,0.8798101671258607,0.898014396747771,0.9165026346197658,0.935278187131581,0.9543443853475007,0.973704585006359,0.9933621665215431,1.0133205349809833,1.0335831201471666,1.0541533764571285,1.0750347830224547,1.0962308436292831,1.1177450867382956,1.1395810654847305,1.1617423576783745,1.1842325658035642,1.2070553170191896,1.230214263158683,1.253713080730034,1.277555470915781,1.301745159573012,1.3262858972333682,1.3511814591030324,1.3764356450627466,1.4020522796677994,1.4280352121480306,1.4543883164078326,1.4811154910261395,1.5082206592564442,1.5357077690267875,1.5635807929397592,1.5918437282725044,1.620500596976707,1.6495554456786121,1.6790123456790114,1.708875392953246,1.7391487081512125,1.769836436597346,1.8009427482906424,1.8324718379046447,1.8644279247874465,1.896815252961694,1.9296380911245743,1.9629007326478347,1.9966074955777695,2.030762722635227,2.0653707812155937,2.100436063388819,2.1359629858993974,2.171955990166375,2.2084195422833512,2.2453581330184638,2.2827762778144134,2.320678516788446,2.3590694147323577,2.3979535611125016,2.4373355700697643,2.477220080419599,2.517611755652003,2.5585152839315235,2.5999353780972636,2.6418767756628636,2.684344238816526,2.727342554420999,2.7708765340135835,2.814951013806133,2.8595708546850367,2.9047409422112507,2.9504661866202744,2.9967515228221586,3.0436019104015095,3.0910223336174676,3.1390178014037384,3.1875933473685745,3.236754029794777,3.286504931639704,3.3368511605352467,3.387797848787862,3.4393501533785535,3.4915132559628743,3.5442923628709337,3.597692705107373,3.6517195383514016,3.706378142956774,3.761673823951794,3.8176119110393234,3.874197758596753,3.931436745676045,3.9893342760037047,4.047895777980787,4.107126704682905,4.167032533860201,4.227618767937389,4.288890934013724,4.350854583863013,4.413515293933621,4.4768786653484405,4.540950323904935,4.605735920075116,4.671241129005537,4.737471650517318,4.804433209106099,4.872131553942098,4.940572458870074,5.009761722409344,5.079705167753751,5.150408642771715,5.221878020006193,5.294119196674698,5.367138094669298,5.440940660556587,5.515532865577733,5.5909207056484505,5.667110201358998,5.744107397974198,5.821918365433395,5.900549198350508,5.980006016014002,6.060294962386889,6.141422206106742,6.2233939404856535,6.3062163835103,6.3898957778418914,6.474438390816195,6.559850514443534,6.646138465408752,6.733308585071276,6.821367239465069,6.910320819298647,7.000175739955087,7.090938441491983,7.182615388641513,7.275213070810391,7.368738002079885,7.463196721205824,7.558595791618551,7.654941801422995,7.752241363398625,7.850501114999457,7.949727718354071,8.049927860265564,8.151108252211614,8.253275630344442,8.356436755490815,8.460598413152066,8.565767413504041,8.67195059139717,8.779154806356424,8.887386942581324,8.996653908945952,9.106962638998906,9.218320090963369,9.33073324773706,9.444209116892253,9.558754730675783,9.674377146008995,9.791083444487825,9.908880732382746,10.027776140638782,10.147776824875516,10.268889965387048,10.391122767142063,10.514482459783787,10.638976297629993,10.76461155967302,10.891395549579713,11.019335595691514,11.148439051024393,11.278713293268883,11.410165724790067,11.542803772627547,11.676634888495512,11.811666548782688,11.947906254552366,12.085361531542343,12.224039930165016,12.363949025507305,12.505096417330694,12.647489730071221,12.79113661283944,12.936044739420488,13.08222180827405,13.229675542534348,13.378413690010184,13.528444023184852,13.679774339216246,13.832412459936801,13.986366231853495,14.141643526147872,14.298252238675985,14.456200289968479,14.615495625230535,14.776146214341882,14.938160051856824,15.101545157004157,15.266309573687277,15.432461370484122,15.60000864064717,15.768959502103478,15.939322097454586,16.11110459397665,16.28431518362035,16.458962083010924,16.635053533448176,16.8125978009064,16.991603176034502,17.17207797415591,17.35403053526862,17.537469224045182,17.72240242983264,17.908838566652655,18.096786073201407,18.28625341284964,18.477249073642653,18.66978156830025,18.863859434216835,19.059491233461344,19.256685552777267,19.455451003582663,19.65579622197008,19.857729868706674,20.061260629234134,20.266397213668704,20.47314835680119,20.681522818096887,20.891529381695715,21.103176856412105,21.31647407573505,21.53142989782812,21.74805320552935,21.96635290635141,22.18633793248149,22.408017240781355,22.631399812787244,22.856494654710033,23.08331079743511,23.31185729652242,23.542143232206474,23.77417770939627,24.007969857675427,24.243528831302086,24.480863809208945,24.71998399500327,24.9608986169668,25.20361692805592,25.44814820590151,25.69450175280902,25.942686895758477,26.192712986404363,26.44458940107581,26.69832554077646,26.953930831184508,27.211414722652734,27.470786690208374,27.732056233553305,27.995232877063923,28.260326169791178,28.527345685460595,28.796301022472168,29.067201803900517,29.340057677494798,29.614878315678705,29.89167341555052,30.170452698882983,30.451225912123473,30.734002826393887,31.018793237490677,31.305606965884877,31.594453856721973,31.885343779822097,32.1782866296799,32.473292325464584,32.77037081101994,33.06953205486419,33.37078605019023,33.67414281486546,33.979612391431836,34.28720484710588,34.5969302737786,34.908798788015616,35.22282053105709,35.53900566881772,35.857364391886804,36.17790691552807,36.50064347967991,36.825584348955225,37.15273981264148,37.482120184700705,37.81373580376938,38.14759703315867,38.483714260854214,38.822097899516216,39.16275838647948,39.505706183753226,39.85095177802137,40.1985056806423,40.54837842764897,40.90058057974895,41.2551227223242,41.61201546543138,41.97126944380163,42.33289531684073,42.69690376862883,43.063305507920795,43.43211126814598,43.8033318074083,44.17697790848624,44.553060378832754,44.93159005057542,45.31257778051637,45.696034450132245,46.08197096557432,46.47039825766826,46.86132728191441,47.25476901848765,47.65073447223738,48.049234672687625,48.45028067403678,48.85388355515798,49.26005441959882,49.66880439558148,50.08014463600271,50.49408631843369,50.91064064512026,51.3298188429828,51.75163216361624,52.17609188329007,52.603209302948216,53.032995748209295,53.46546256936642,53.90062114138726,54.33848286391408,54.779059161263554,55.22236148242703,55.668401301070396,56.117190115534065,56.56873944883305,57.02306084865676,57.48016588736933,57.94006616200937,58.402773294290064,58.86829893059915,59.33665474199883,59.807852424225956,60.281903697691895,60.75882030748258,61.23861402335853,61.72129663975465,62.20687997578057,62.695375875220414,63.18679620653286,63.68115286285118,64.17845776198301,64.67872284641076,65.1819600832913,65.68818146445604,66.19739900641102,66.70962475033664,67.22487076208803,67.74314913219482,68.26447197586124,68.7888514329659,69.31629966806213,69.84682887037775,70.38045125381514,70.91717905695128,71.45702454303755,72.0]}},\"id\":\"569a4077-0c9c-499b-815e-47d5bd6d364b\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"6f91c459-ac47-491f-9957-90866bee96b0\",\"type\":\"ResetTool\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f4f68f6c-1a46-46bd-acaf-052c545a8c43\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c5ee0695-1042-4fc8-9176-c80f392a24a4\",\"type\":\"ResetTool\"},{\"attributes\":{\"data_source\":{\"id\":\"569a4077-0c9c-499b-815e-47d5bd6d364b\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"f4f68f6c-1a46-46bd-acaf-052c545a8c43\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"c4ba84b1-350d-4efc-814a-f13610631788\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"0abb971e-54bb-4f50-bc2c-2bc1e8df2f55\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null},\"id\":\"20d3dc6b-5675-402d-b0ed-0dc981b6724a\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.0],\"y\":[0.0]}},\"id\":\"b46a0034-afad-4734-9778-619930b24c57\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"92d73220-b4d1-401e-966a-dca3883b4609\",\"type\":\"BasicTicker\"}},\"id\":\"20529087-06c0-404f-a687-dee155226f85\",\"type\":\"Grid\"},{\"attributes\":{\"dimension\":1,\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"e368b9db-f5e7-4652-b26a-2857f27f9176\",\"type\":\"BasicTicker\"}},\"id\":\"114a8496-ca27-4c6b-b605-24f9efd118f3\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"090b47ce-2020-425d-9baf-22f83b0e02e7\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ceb52416-1f2a-4907-a1ee-e0451d40bf14\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"below\":[{\"id\":\"1efcc638-42a9-4fcb-88b3-c7d3f6f57aed\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"9e6c0fa3-7bad-4c8e-bc29-3de37dabdec9\",\"type\":\"LinearAxis\"}],\"plot_height\":300,\"plot_width\":300,\"renderers\":[{\"id\":\"1efcc638-42a9-4fcb-88b3-c7d3f6f57aed\",\"type\":\"LinearAxis\"},{\"id\":\"6a10afad-c432-4691-832c-93978fadf93f\",\"type\":\"Grid\"},{\"id\":\"9e6c0fa3-7bad-4c8e-bc29-3de37dabdec9\",\"type\":\"LinearAxis\"},{\"id\":\"20529087-06c0-404f-a687-dee155226f85\",\"type\":\"Grid\"},{\"id\":\"d0ceaf8f-3705-47f7-ba3a-eec1847ab62d\",\"type\":\"BoxAnnotation\"},{\"id\":\"9d0a6af3-2c5a-4fc7-96e3-f3ce7a8b50bb\",\"type\":\"Span\"},{\"id\":\"35100835-4b0d-4055-a275-c0465533d182\",\"type\":\"Span\"},{\"id\":\"55961941-9439-4dd5-aec7-e1d9aa353811\",\"type\":\"GlyphRenderer\"},{\"id\":\"775b005a-3487-4b1e-a0fa-9cdec88c3c59\",\"type\":\"GlyphRenderer\"},{\"id\":\"7453b8a6-d8a7-455e-a509-fd2899f7ba96\",\"type\":\"GlyphRenderer\"},{\"id\":\"3f873ffa-9500-4589-be79-305ca444bdbc\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"7dd99212-3bf0-4e17-ab85-ce9577a4e562\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"2d74bd51-1e76-4357-a3b8-13e69470fb66\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"d9e75323-7ec7-42a2-8570-1a6a9999cf15\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"0d10dda6-a1a8-4eda-876f-9601c34603da\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"090b47ce-2020-425d-9baf-22f83b0e02e7\",\"type\":\"DataRange1d\"}},\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3354b12e-c591-4f42-bc3e-998a360d9650\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"9f301e7a-ed28-403d-92d6-f6cc7a294b93\",\"type\":\"ToolEvents\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[],\"y\":[]}},\"id\":\"b05cb554-c5d1-4d3b-90e4-57e8459a1bc0\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"92d73220-b4d1-401e-966a-dca3883b4609\",\"type\":\"BasicTicker\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"dbae5b33-c573-46d3-911c-c97e94a1e113\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"9ca99864-d194-410e-a9e8-3192cfc84a53\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"bbbc196c-51a7-46df-80d2-ffafe971b2f3\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"0f66464c-392e-4e17-9d51-e2b143b1a56d\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"b996a9ee-377a-48aa-9c3a-fbc94ee4a5ee\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"55961941-9439-4dd5-aec7-e1d9aa353811\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"09352031-cc18-42cb-9f9b-8b3005376d31\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b996a9ee-377a-48aa-9c3a-fbc94ee4a5ee\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"dc50eac8-7ecd-4ddc-9b0c-ca4f6250f397\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d31f494f-bcd0-4524-9501-70f604c37df5\",\"type\":\"HelpTool\"},{\"attributes\":{\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"0f66464c-392e-4e17-9d51-e2b143b1a56d\",\"type\":\"Line\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"35100835-4b0d-4055-a275-c0465533d182\",\"type\":\"Span\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c79c6e03-aab5-4672-82be-a04697d29232\",\"type\":\"BasicTicker\"}},\"id\":\"bacd7dcb-0e56-4b14-893a-77ca8ccc38b0\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c4ba84b1-350d-4efc-814a-f13610631788\",\"type\":\"Line\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"d0ceaf8f-3705-47f7-ba3a-eec1847ab62d\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"dfc5ef53-29b0-4260-a7ab-c26965074851\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"48076646-df37-480b-82a8-900f93452f05\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"09352031-cc18-42cb-9f9b-8b3005376d31\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"3f873ffa-9500-4589-be79-305ca444bdbc\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d42415b0-31ac-4fed-82ec-0ff548debed7\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"254d8dae-9d00-4cf7-b4e8-c9c68c24d4d5\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bd71595f-9516-4c65-ac67-8b4faf2ff053\",\"type\":\"SaveTool\"},{\"attributes\":{\"children\":[{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"9a5fdbd8-01d1-44c7-8987-685ea39c3890\",\"type\":\"Column\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"48076646-df37-480b-82a8-900f93452f05\",\"type\":\"Circle\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"6db02c21-f0a8-492b-a5c5-b16f39c857be\",\"type\":\"Span\"},{\"attributes\":{\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"88521740-68df-4fe5-aa6f-3ff1bfff63da\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"327ef69e-2f43-476c-ba70-109227f05d5f\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"2d74bd51-1e76-4357-a3b8-13e69470fb66\",\"type\":\"ToolEvents\"},{\"attributes\":{\"callback\":null},\"id\":\"0d10dda6-a1a8-4eda-876f-9601c34603da\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"08516d6e-53d8-483b-82bd-f979a403eb60\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"9a0125e1-3a74-421d-8a62-33e0348c8fe5\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e8727f22-834c-4543-935c-ec526247f5f3\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"c79c6e03-aab5-4672-82be-a04697d29232\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"517d8776-1bb4-4d5d-843b-c82234743972\",\"type\":\"PanTool\"},{\"attributes\":{\"grid_line_color\":{\"value\":null},\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c82de546-a5d9-4efe-84d8-dca953aa414b\",\"type\":\"BasicTicker\"}},\"id\":\"6a10afad-c432-4691-832c-93978fadf93f\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"b46a0034-afad-4734-9778-619930b24c57\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"d42415b0-31ac-4fed-82ec-0ff548debed7\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1967b6ee-b55e-45ed-8289-125584e99b65\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"775b005a-3487-4b1e-a0fa-9cdec88c3c59\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"formatter\":{\"id\":\"9a0125e1-3a74-421d-8a62-33e0348c8fe5\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c82de546-a5d9-4efe-84d8-dca953aa414b\",\"type\":\"BasicTicker\"},\"visible\":false},\"id\":\"1efcc638-42a9-4fcb-88b3-c7d3f6f57aed\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-4.0,-3.991991991991992,-3.983983983983984,-3.975975975975976,-3.967967967967968,-3.95995995995996,-3.951951951951952,-3.943943943943944,-3.935935935935936,-3.9279279279279278,-3.91991991991992,-3.911911911911912,-3.903903903903904,-3.895895895895896,-3.8878878878878878,-3.87987987987988,-3.871871871871872,-3.863863863863864,-3.855855855855856,-3.8478478478478477,-3.83983983983984,-3.831831831831832,-3.823823823823824,-3.815815815815816,-3.8078078078078077,-3.7997997997998,-3.7917917917917916,-3.7837837837837838,-3.775775775775776,-3.7677677677677677,-3.75975975975976,-3.7517517517517516,-3.7437437437437437,-3.735735735735736,-3.7277277277277276,-3.71971971971972,-3.7117117117117115,-3.7037037037037037,-3.6956956956956954,-3.6876876876876876,-3.67967967967968,-3.6716716716716715,-3.6636636636636637,-3.6556556556556554,-3.6476476476476476,-3.6396396396396398,-3.6316316316316315,-3.6236236236236237,-3.6156156156156154,-3.6076076076076076,-3.5995995995995997,-3.5915915915915915,-3.5835835835835836,-3.5755755755755754,-3.5675675675675675,-3.5595595595595597,-3.5515515515515514,-3.5435435435435436,-3.5355355355355353,-3.5275275275275275,-3.5195195195195197,-3.5115115115115114,-3.5035035035035036,-3.4954954954954953,-3.4874874874874875,-3.4794794794794797,-3.4714714714714714,-3.4634634634634636,-3.4554554554554553,-3.4474474474474475,-3.4394394394394396,-3.4314314314314314,-3.4234234234234235,-3.4154154154154153,-3.4074074074074074,-3.3993993993993996,-3.3913913913913913,-3.3833833833833835,-3.3753753753753752,-3.3673673673673674,-3.3593593593593596,-3.3513513513513513,-3.3433433433433435,-3.335335335335335,-3.3273273273273274,-3.3193193193193196,-3.3113113113113113,-3.3033033033033035,-3.295295295295295,-3.2872872872872874,-3.2792792792792795,-3.2712712712712713,-3.263263263263263,-3.255255255255255,-3.2472472472472473,-3.2392392392392395,-3.2312312312312312,-3.223223223223223,-3.215215215215215,-3.2072072072072073,-3.1991991991991995,-3.191191191191191,-3.183183183183183,-3.175175175175175,-3.1671671671671673,-3.159159159159159,-3.151151151151151,-3.143143143143143,-3.135135135135135,-3.1271271271271273,-3.119119119119119,-3.111111111111111,-3.103103103103103,-3.095095095095095,-3.0870870870870872,-3.079079079079079,-3.071071071071071,-3.063063063063063,-3.055055055055055,-3.047047047047047,-3.039039039039039,-3.031031031031031,-3.023023023023023,-3.015015015015015,-3.007007007007007,-2.998998998998999,-2.990990990990991,-2.982982982982983,-2.974974974974975,-2.966966966966967,-2.958958958958959,-2.950950950950951,-2.942942942942943,-2.934934934934935,-2.926926926926927,-2.918918918918919,-2.910910910910911,-2.9029029029029028,-2.894894894894895,-2.886886886886887,-2.878878878878879,-2.8708708708708706,-2.8628628628628627,-2.854854854854855,-2.846846846846847,-2.838838838838839,-2.8308308308308305,-2.8228228228228227,-2.814814814814815,-2.806806806806807,-2.798798798798799,-2.7907907907907905,-2.7827827827827827,-2.774774774774775,-2.766766766766767,-2.7587587587587588,-2.7507507507507505,-2.7427427427427427,-2.734734734734735,-2.726726726726727,-2.7187187187187187,-2.7107107107107105,-2.7027027027027026,-2.694694694694695,-2.686686686686687,-2.6786786786786787,-2.6706706706706704,-2.6626626626626626,-2.6546546546546548,-2.646646646646647,-2.6386386386386387,-2.6306306306306304,-2.6226226226226226,-2.6146146146146148,-2.606606606606607,-2.5985985985985987,-2.5905905905905904,-2.5825825825825826,-2.5745745745745747,-2.566566566566567,-2.5585585585585586,-2.5505505505505504,-2.5425425425425425,-2.5345345345345347,-2.5265265265265264,-2.5185185185185186,-2.5105105105105103,-2.5025025025025025,-2.4944944944944947,-2.4864864864864864,-2.4784784784784786,-2.4704704704704703,-2.4624624624624625,-2.4544544544544546,-2.4464464464464464,-2.4384384384384385,-2.4304304304304303,-2.4224224224224224,-2.4144144144144146,-2.4064064064064064,-2.3983983983983985,-2.3903903903903903,-2.3823823823823824,-2.3743743743743746,-2.3663663663663663,-2.358358358358358,-2.3503503503503502,-2.3423423423423424,-2.3343343343343346,-2.3263263263263263,-2.318318318318318,-2.31031031031031,-2.3023023023023024,-2.2942942942942945,-2.2862862862862863,-2.278278278278278,-2.27027027027027,-2.2622622622622623,-2.2542542542542545,-2.2462462462462462,-2.238238238238238,-2.23023023023023,-2.2222222222222223,-2.2142142142142145,-2.206206206206206,-2.198198198198198,-2.19019019019019,-2.1821821821821823,-2.1741741741741745,-2.166166166166166,-2.158158158158158,-2.15015015015015,-2.1421421421421423,-2.1341341341341344,-2.126126126126126,-2.118118118118118,-2.11011011011011,-2.1021021021021022,-2.0940940940940944,-2.086086086086086,-2.078078078078078,-2.07007007007007,-2.062062062062062,-2.0540540540540544,-2.046046046046046,-2.038038038038038,-2.03003003003003,-2.022022022022022,-2.014014014014014,-2.006006006006006,-1.9979979979979978,-1.98998998998999,-1.9819819819819822,-1.973973973973974,-1.965965965965966,-1.9579579579579578,-1.94994994994995,-1.9419419419419421,-1.9339339339339339,-1.925925925925926,-1.9179179179179178,-1.90990990990991,-1.9019019019019021,-1.8938938938938938,-1.885885885885886,-1.8778778778778777,-1.86986986986987,-1.861861861861862,-1.8538538538538538,-1.845845845845846,-1.8378378378378377,-1.82982982982983,-1.821821821821822,-1.8138138138138138,-1.805805805805806,-1.7977977977977977,-1.7897897897897899,-1.7817817817817816,-1.7737737737737738,-1.765765765765766,-1.7577577577577577,-1.7497497497497498,-1.7417417417417416,-1.7337337337337337,-1.725725725725726,-1.7177177177177176,-1.7097097097097098,-1.7017017017017015,-1.6936936936936937,-1.6856856856856859,-1.6776776776776776,-1.6696696696696698,-1.6616616616616615,-1.6536536536536537,-1.6456456456456459,-1.6376376376376376,-1.6296296296296298,-1.6216216216216215,-1.6136136136136137,-1.6056056056056058,-1.5975975975975976,-1.5895895895895897,-1.5815815815815815,-1.5735735735735736,-1.5655655655655654,-1.5575575575575575,-1.5495495495495497,-1.5415415415415414,-1.5335335335335336,-1.5255255255255253,-1.5175175175175175,-1.5095095095095097,-1.5015015015015014,-1.4934934934934936,-1.4854854854854853,-1.4774774774774775,-1.4694694694694697,-1.4614614614614614,-1.4534534534534536,-1.4454454454454453,-1.4374374374374375,-1.4294294294294296,-1.4214214214214214,-1.4134134134134135,-1.4054054054054053,-1.3973973973973974,-1.3893893893893896,-1.3813813813813813,-1.3733733733733735,-1.3653653653653652,-1.3573573573573574,-1.3493493493493496,-1.3413413413413413,-1.3333333333333335,-1.3253253253253252,-1.3173173173173174,-1.3093093093093096,-1.3013013013013013,-1.2932932932932935,-1.2852852852852852,-1.2772772772772774,-1.269269269269269,-1.2612612612612613,-1.2532532532532534,-1.2452452452452452,-1.2372372372372373,-1.229229229229229,-1.2212212212212212,-1.2132132132132134,-1.2052052052052051,-1.1971971971971973,-1.189189189189189,-1.1811811811811812,-1.1731731731731734,-1.165165165165165,-1.1571571571571573,-1.149149149149149,-1.1411411411411412,-1.1331331331331334,-1.125125125125125,-1.1171171171171173,-1.109109109109109,-1.1011011011011012,-1.0930930930930933,-1.085085085085085,-1.0770770770770772,-1.069069069069069,-1.0610610610610611,-1.0530530530530529,-1.045045045045045,-1.0370370370370372,-1.029029029029029,-1.021021021021021,-1.0130130130130128,-1.005005005005005,-0.9969969969969972,-0.9889889889889889,-0.9809809809809811,-0.9729729729729728,-0.964964964964965,-0.9569569569569571,-0.9489489489489489,-0.940940940940941,-0.9329329329329328,-0.924924924924925,-0.9169169169169171,-0.9089089089089089,-0.900900900900901,-0.8928928928928928,-0.8848848848848849,-0.8768768768768771,-0.8688688688688688,-0.860860860860861,-0.8528528528528527,-0.8448448448448449,-0.8368368368368371,-0.8288288288288288,-0.820820820820821,-0.8128128128128127,-0.8048048048048049,-0.796796796796797,-0.7887887887887888,-0.780780780780781,-0.7727727727727727,-0.7647647647647648,-0.7567567567567566,-0.7487487487487487,-0.7407407407407409,-0.7327327327327327,-0.7247247247247248,-0.7167167167167166,-0.7087087087087087,-0.7007007007007009,-0.6926926926926926,-0.6846846846846848,-0.6766766766766765,-0.6686686686686687,-0.6606606606606609,-0.6526526526526526,-0.6446446446446448,-0.6366366366366365,-0.6286286286286287,-0.6206206206206208,-0.6126126126126126,-0.6046046046046047,-0.5965965965965965,-0.5885885885885886,-0.5805805805805808,-0.5725725725725725,-0.5645645645645647,-0.5565565565565564,-0.5485485485485486,-0.5405405405405403,-0.5325325325325325,-0.5245245245245247,-0.5165165165165164,-0.5085085085085086,-0.5005005005005003,-0.4924924924924925,-0.48448448448448467,-0.4764764764764764,-0.46846846846846857,-0.4604604604604603,-0.45245245245245247,-0.44444444444444464,-0.43643643643643637,-0.42842842842842854,-0.42042042042042027,-0.41241241241241244,-0.4044044044044046,-0.39639639639639634,-0.3883883883883885,-0.38038038038038025,-0.3723723723723724,-0.3643643643643646,-0.3563563563563563,-0.3483483483483485,-0.3403403403403402,-0.3323323323323324,-0.32432432432432456,-0.3163163163163163,-0.30830830830830847,-0.3003003003003002,-0.29229229229229237,-0.28428428428428454,-0.27627627627627627,-0.26826826826826844,-0.26026026026026017,-0.25225225225225234,-0.24424424424424407,-0.23623623623623624,-0.2282282282282284,-0.22022022022022014,-0.21221221221221231,-0.20420420420420404,-0.19619619619619622,-0.1881881881881884,-0.18018018018018012,-0.1721721721721723,-0.16416416416416402,-0.1561561561561562,-0.14814814814814836,-0.1401401401401401,-0.13213213213213226,-0.12412412412412399,-0.11611611611611616,-0.10810810810810834,-0.10010010010010006,-0.09209209209209224,-0.08408408408408397,-0.07607607607607614,-0.06806806806806831,-0.06006006006006004,-0.05205205205205221,-0.04404404404404394,-0.03603603603603611,-0.02802802802802784,-0.020020020020020013,-0.012012012012012185,-0.004004004004003914,0.004004004004004358,0.012012012012012185,0.020020020020020013,0.02802802802802784,0.03603603603603567,0.044044044044044384,0.05205205205205221,0.06006006006006004,0.06806806806806787,0.0760760760760757,0.08408408408408441,0.09209209209209224,0.10010010010010006,0.10810810810810789,0.11611611611611572,0.12412412412412444,0.13213213213213226,0.1401401401401401,0.14814814814814792,0.15615615615615575,0.16416416416416446,0.1721721721721723,0.18018018018018012,0.18818818818818794,0.19619619619619577,0.2042042042042045,0.21221221221221231,0.22022022022022014,0.22822822822822797,0.2362362362362358,0.2442442442442445,0.25225225225225234,0.26026026026026017,0.268268268268268,0.2762762762762758,0.28428428428428454,0.29229229229229237,0.3003003003003002,0.308308308308308,0.31631631631631585,0.32432432432432456,0.3323323323323324,0.3403403403403402,0.34834834834834805,0.3563563563563559,0.3643643643643646,0.3723723723723724,0.38038038038038025,0.3883883883883881,0.3963963963963968,0.4044044044044046,0.41241241241241244,0.42042042042042027,0.4284284284284281,0.4364364364364368,0.44444444444444464,0.45245245245245247,0.4604604604604603,0.4684684684684681,0.47647647647647684,0.48448448448448467,0.4924924924924925,0.5005005005005003,0.5085085085085082,0.5165165165165169,0.5245245245245247,0.5325325325325325,0.5405405405405403,0.5485485485485482,0.5565565565565569,0.5645645645645647,0.5725725725725725,0.5805805805805804,0.5885885885885882,0.5965965965965969,0.6046046046046047,0.6126126126126126,0.6206206206206204,0.6286286286286282,0.6366366366366369,0.6446446446446448,0.6526526526526526,0.6606606606606604,0.6686686686686683,0.676676676676677,0.6846846846846848,0.6926926926926926,0.7007007007007005,0.7087087087087083,0.716716716716717,0.7247247247247248,0.7327327327327327,0.7407407407407405,0.7487487487487483,0.756756756756757,0.7647647647647648,0.7727727727727727,0.7807807807807805,0.7887887887887883,0.796796796796797,0.8048048048048049,0.8128128128128127,0.8208208208208205,0.8288288288288284,0.8368368368368371,0.8448448448448449,0.8528528528528527,0.8608608608608606,0.8688688688688693,0.8768768768768771,0.8848848848848849,0.8928928928928928,0.9009009009009006,0.9089089089089093,0.9169169169169171,0.924924924924925,0.9329329329329328,0.9409409409409406,0.9489489489489493,0.9569569569569571,0.964964964964965,0.9729729729729728,0.9809809809809806,0.9889889889889893,0.9969969969969972,1.005005005005005,1.0130130130130128,1.0210210210210207,1.0290290290290294,1.0370370370370372,1.045045045045045,1.0530530530530529,1.0610610610610607,1.0690690690690694,1.0770770770770772,1.085085085085085,1.0930930930930929,1.1011011011011007,1.1091091091091094,1.1171171171171173,1.125125125125125,1.133133133133133,1.1411411411411407,1.1491491491491495,1.1571571571571573,1.165165165165165,1.173173173173173,1.1811811811811808,1.1891891891891895,1.1971971971971973,1.2052052052052051,1.213213213213213,1.2212212212212208,1.2292292292292295,1.2372372372372373,1.2452452452452452,1.253253253253253,1.2612612612612608,1.2692692692692695,1.2772772772772774,1.2852852852852852,1.293293293293293,1.3013013013013008,1.3093093093093096,1.3173173173173174,1.3253253253253252,1.333333333333333,1.3413413413413409,1.3493493493493496,1.3573573573573574,1.3653653653653652,1.373373373373373,1.381381381381381,1.3893893893893896,1.3973973973973974,1.4054054054054053,1.413413413413413,1.4214214214214218,1.4294294294294296,1.4374374374374375,1.4454454454454453,1.4534534534534531,1.4614614614614618,1.4694694694694697,1.4774774774774775,1.4854854854854853,1.4934934934934931,1.5015015015015019,1.5095095095095097,1.5175175175175175,1.5255255255255253,1.5335335335335332,1.5415415415415419,1.5495495495495497,1.5575575575575575,1.5655655655655654,1.5735735735735732,1.581581581581582,1.5895895895895897,1.5975975975975976,1.6056056056056054,1.6136136136136132,1.621621621621622,1.6296296296296298,1.6376376376376376,1.6456456456456454,1.6536536536536532,1.661661661661662,1.6696696696696698,1.6776776776776776,1.6856856856856854,1.6936936936936933,1.701701701701702,1.7097097097097098,1.7177177177177176,1.7257257257257255,1.7337337337337333,1.741741741741742,1.7497497497497498,1.7577577577577577,1.7657657657657655,1.7737737737737733,1.781781781781782,1.7897897897897899,1.7977977977977977,1.8058058058058055,1.8138138138138133,1.821821821821822,1.82982982982983,1.8378378378378377,1.8458458458458455,1.8538538538538534,1.861861861861862,1.86986986986987,1.8778778778778777,1.8858858858858856,1.8938938938938943,1.9019019019019021,1.90990990990991,1.9179179179179178,1.9259259259259256,1.9339339339339343,1.9419419419419421,1.94994994994995,1.9579579579579578,1.9659659659659656,1.9739739739739743,1.9819819819819822,1.98998998998999,1.9979979979979978,2.0060060060060056,2.0140140140140144,2.022022022022022,2.03003003003003,2.038038038038038,2.0460460460460457,2.0540540540540544,2.062062062062062,2.07007007007007,2.078078078078078,2.0860860860860857,2.0940940940940944,2.1021021021021022,2.11011011011011,2.118118118118118,2.1261261261261257,2.1341341341341344,2.1421421421421423,2.15015015015015,2.158158158158158,2.1661661661661658,2.1741741741741745,2.1821821821821823,2.19019019019019,2.198198198198198,2.2062062062062058,2.2142142142142145,2.2222222222222223,2.23023023023023,2.238238238238238,2.246246246246246,2.2542542542542545,2.2622622622622623,2.27027027027027,2.278278278278278,2.286286286286286,2.2942942942942945,2.3023023023023024,2.31031031031031,2.318318318318318,2.326326326326326,2.3343343343343346,2.3423423423423424,2.3503503503503502,2.358358358358358,2.366366366366366,2.3743743743743746,2.3823823823823824,2.3903903903903903,2.398398398398398,2.406406406406406,2.4144144144144146,2.4224224224224224,2.4304304304304303,2.438438438438438,2.446446446446447,2.4544544544544546,2.4624624624624625,2.4704704704704703,2.478478478478478,2.486486486486487,2.4944944944944947,2.5025025025025025,2.5105105105105103,2.518518518518518,2.526526526526527,2.5345345345345347,2.5425425425425425,2.5505505505505504,2.558558558558558,2.566566566566567,2.5745745745745747,2.5825825825825826,2.5905905905905904,2.598598598598598,2.606606606606607,2.6146146146146148,2.6226226226226226,2.6306306306306304,2.6386386386386382,2.646646646646647,2.6546546546546548,2.6626626626626626,2.6706706706706704,2.6786786786786783,2.686686686686687,2.694694694694695,2.7027027027027026,2.7107107107107105,2.7187187187187183,2.726726726726727,2.734734734734735,2.7427427427427427,2.7507507507507505,2.7587587587587583,2.766766766766767,2.774774774774775,2.7827827827827827,2.7907907907907905,2.7987987987987983,2.806806806806807,2.814814814814815,2.8228228228228227,2.8308308308308305,2.8388388388388384,2.846846846846847,2.854854854854855,2.8628628628628627,2.8708708708708706,2.8788788788788784,2.886886886886887,2.894894894894895,2.9029029029029028,2.9109109109109106,2.9189189189189193,2.926926926926927,2.934934934934935,2.942942942942943,2.9509509509509506,2.9589589589589593,2.966966966966967,2.974974974974975,2.982982982982983,2.9909909909909906,2.9989989989989994,3.007007007007007,3.015015015015015,3.023023023023023,3.0310310310310307,3.0390390390390394,3.047047047047047,3.055055055055055,3.063063063063063,3.0710710710710707,3.0790790790790794,3.0870870870870872,3.095095095095095,3.103103103103103,3.1111111111111107,3.1191191191191194,3.1271271271271273,3.135135135135135,3.143143143143143,3.1511511511511507,3.1591591591591595,3.1671671671671673,3.175175175175175,3.183183183183183,3.1911911911911908,3.1991991991991995,3.2072072072072073,3.215215215215215,3.223223223223223,3.231231231231231,3.2392392392392395,3.2472472472472473,3.255255255255255,3.263263263263263,3.271271271271271,3.2792792792792795,3.2872872872872874,3.295295295295295,3.303303303303303,3.311311311311311,3.3193193193193196,3.3273273273273274,3.335335335335335,3.343343343343343,3.351351351351351,3.3593593593593596,3.3673673673673674,3.3753753753753752,3.383383383383383,3.391391391391391,3.3993993993993996,3.4074074074074074,3.4154154154154153,3.423423423423423,3.431431431431431,3.4394394394394396,3.4474474474474475,3.4554554554554553,3.463463463463463,3.471471471471472,3.4794794794794797,3.4874874874874875,3.4954954954954953,3.503503503503503,3.511511511511512,3.5195195195195197,3.5275275275275275,3.5355355355355353,3.543543543543543,3.551551551551552,3.5595595595595597,3.5675675675675675,3.5755755755755754,3.583583583583583,3.591591591591592,3.5995995995995997,3.6076076076076076,3.6156156156156154,3.6236236236236232,3.631631631631632,3.6396396396396398,3.6476476476476476,3.6556556556556554,3.6636636636636633,3.671671671671672,3.67967967967968,3.6876876876876876,3.6956956956956954,3.7037037037037033,3.711711711711712,3.71971971971972,3.7277277277277276,3.7357357357357355,3.7437437437437433,3.751751751751752,3.75975975975976,3.7677677677677677,3.7757757757757755,3.7837837837837833,3.791791791791792,3.7997997997998,3.8078078078078077,3.8158158158158155,3.8238238238238234,3.831831831831832,3.83983983983984,3.8478478478478477,3.8558558558558556,3.8638638638638634,3.871871871871872,3.87987987987988,3.8878878878878878,3.8958958958958956,3.9039039039039034,3.911911911911912,3.91991991991992,3.9279279279279278,3.9359359359359356,3.9439439439439443,3.951951951951952,3.95995995995996,3.967967967967968,3.9759759759759756,3.9839839839839843,3.991991991991992,4.0],\"y\":[68.0,67.60837663237561,67.2182892601309,66.82973480203142,66.4427101768427,66.05721230333029,65.67323810025972,65.29078448639652,64.90984838050623,64.53042670135439,64.15251636770654,63.77611429832822,63.40121741198493,63.027822627442276,62.65592686346572,62.285527038820874,61.91662007227323,61.54920288258832,61.18327238853171,60.8188255088689,60.45585916236547,60.09437026778694,59.73435574389882,59.37581250946669,59.01873748325605,58.66312758403247,58.30897973056147,57.95629084160859,57.60505783593938,57.255277632319334,56.906947149514046,56.56006330628901,56.214623021409786,55.87062321364192,55.528060801750904,55.18693270450233,54.847235840661696,54.50896712899456,54.17212348826645,53.83670183724291,53.50269909468949,53.170112179371685,52.838938010055074,52.50917350550517,52.18081558448752,51.853861165767675,51.528307168111134,51.20415051028347,50.8813881110502,50.56001688917688,50.24003376342904,49.92143565257219,49.60421947537191,49.288382150593705,48.973920597003136,48.66083173336573,48.34911247844702,48.03875975101255,47.72977046982784,47.422141553658456,47.11586992126992,46.81095249142776,46.507386182897534,46.20516791444475,45.90429460483498,45.604763172833756,45.30657053720658,45.009713616719026,44.714189330136605,44.41999459622488,44.12712633374938,43.83558146147563,43.545356898169175,43.25644956259554,42.968856373520296,42.682574249708956,42.397600109927055,42.11393087294014,41.83156345751373,41.55049478241339,41.27072176640464,40.992241328253016,40.715050386724066,40.43914586058331,40.16452466859631,39.89118372952859,39.619119962145675,39.348330285213116,39.07881161749645,38.81056087776121,38.543574984772945,38.277850857297175,38.01338541409943,37.75017557394529,37.48821825560025,37.22751037782987,36.96804885939967,36.70983061907519,36.45285257562199,36.197111647805585,35.942604754391525,35.68932881414533,35.43728074583253,35.186457468218705,34.93685590006937,34.68847296015004,34.44130556722629,34.195350640063616,33.95060509742759,33.707065858083745,33.464729840797595,33.22359396433471,32.98365514746059,32.7449103089408,32.50735636754088,32.270990242026336,32.03580885116275,31.80180911371561,31.56898794845049,31.337342274132926,31.106869009528424,30.877565073402554,30.64942738452083,30.422452861648814,30.19663842355203,29.971980988996,29.748477476746288,29.526124805568408,29.304919894227922,29.084859661490352,28.865941026121224,28.6481609068861,28.431516222550496,28.21600389187997,28.001620833640047,27.78836396659625,27.576230209514147,27.365216481159248,27.155319700297113,26.946536785693265,26.738864656113236,26.53230023032257,26.326840427086815,26.122482165171505,25.919222363342165,25.71705794036433,25.515985815003543,25.316002906025357,25.117106132195296,24.9192924122789,24.72255866504169,24.526901809249214,24.332318763667026,24.138806447060652,23.94636177819562,23.754981675837467,23.564663058751737,23.375402845703974,23.187197955459716,23.000045306784486,22.81394181844382,22.62888440920326,22.44486999782836,22.261895503084645,22.079957843737645,21.8990539385529,21.719180706295944,21.540335065732332,21.36251393562759,21.18571423474726,21.00993288185686,20.83516679572194,20.66141289510805,20.488668098780714,20.316929325505477,20.146193494047857,19.976457523173405,19.807718331647663,19.63997283823617,19.473217961704453,19.307450620818045,19.14266773434249,18.978866221043333,18.816042999686104,18.654194989036338,18.493319107859577,18.33341227492135,18.174471408987205,18.016493428822677,17.859475253193295,17.703413800864606,17.548305990602138,17.39414874117144,17.240938971338043,17.088673599867477,16.93734954552529,16.78696372707701,16.63751306328819,16.488994472924354,16.34140487475103,16.194741187533783,16.049000330038123,15.904179221029604,15.760274779273763,15.617283923536121,15.475203572582227,15.334030645177625,15.193762060087845,15.054394736078425,14.915925591914894,14.778351546362796,14.641669518187676,14.505876426155066,14.370969189030498,14.236944725579505,14.103799954567634,13.971531794760427,13.840137164923416,13.709612983822133,13.579956170222111,13.451163642888897,13.323232320588033,13.19615912208505,13.069940966145483,12.944574771534864,12.820057457018738,12.69638594136265,12.573557143332124,12.451567981692705,12.33041537520992,12.210096242649314,12.090607502776427,11.971946074356794,11.854108876155953,11.737092826939431,11.620894845472773,11.505511850521524,11.390940760851215,11.27717849522738,11.164221972415552,11.052068111181274,10.940713830290093,10.830156048507536,10.72039168459914,10.611417657330438,10.503230885466973,10.395828287774288,10.289206783017914,10.183363289963383,10.078294727376242,9.973998014022019,9.870470068666263,9.767707810074503,9.665708157012274,9.56446802824512,9.46398434253857,9.364254018658173,9.265273975369459,9.16704113143796,9.069552405629224,8.97280471670878,8.87679498344217,8.781520124594934,8.686977058932598,8.59316270522071,8.500073982224801,8.407707808710413,8.316061103443083,8.22513078518834,8.134913772711732,8.045406984778786,7.9566073401550526,7.8685117576060595,7.781117155897341,7.694420453794445,7.608418570062896,7.523108423468243,7.438486932776014,7.354551016751756,7.271297594161,7.18872358376928,7.1068259043421405,7.025601474645111,6.945047213443738,6.865160039503554,6.785936871590091,6.707374628468897,6.6294702289054985,6.552220591665442,6.475622635514261,6.399673279217487,6.324369441540668,6.249708041249331,6.1756859971090226,6.102300227885275,6.029547652343621,5.957425189249608,5.885929757368762,5.815058275466631,5.74480766230875,5.675174836660647,5.6061567172878695,5.537750222955948,5.469952272430427,5.402759784476835,5.336169677860719,5.270178871347609,5.204784283703042,5.13998283369256,5.075771440081695,5.01214702163599,4.9491064971209795,4.886646785302197,4.824764804945186,4.763457474815478,4.702721713678617,4.6425544403001355,4.582952573445569,4.5239130318804595,4.4654327343703395,4.407508599680752,4.350137546577231,4.29331649382531,4.237042360190534,4.181312064438433,4.126122525334551,4.071470661644421,4.017353392133577,3.9637676355675646,3.910710310711913,3.8581783363321662,3.806168631193858,3.754678114062523,3.7037037037037046,3.653242318882934,3.6032908783657533,3.553846300917698,3.5049055053043023,3.4564654102911088,3.408522934643649,3.3610749971274663,3.3141185165080924,3.267650411551069,3.2216676010219314,3.1761670036862144,3.1311455383094593,3.0866001236572,3.0425276784949773,2.9989251215883264,2.9557893717027826,2.9131173476038867,2.8709059680571727,2.8291521518281812,2.787852817682448,2.747004884385508,2.7066052707029025,2.6666508954001644,2.6271386772428356,2.588065534996451,2.5494283874265458,2.5112241532986608,2.47344975137833,2.4361021004310945,2.399178119222489,2.3626747265180494,2.326588841083316,2.2909173816838235,2.2556572670851116,2.2208054160527144,2.1863587473521733,2.1523141797490224,2.1186686320087986,2.0854190228970415,2.052562271179286,2.0200952956210716,1.9880150149879345,1.9563183480454103,1.925002213559039,1.8940635302943551,1.863499217016899,1.833306192492206,1.803481375485812,1.7740216847632575,1.7449240390900764,1.7161853572318093,1.6878025579539915,1.6597725600221587,1.6320922822018518,1.604758643258604,1.5777685619579567,1.551118957065445,1.5248067473466045,1.4988288515669757,1.4731821884920926,1.4478636768874957,1.4228702355187206,1.3981987831513032,1.3738462385507835,1.3498095204826959,1.3260855477125804,1.302671239005973,1.2795635131284093,1.2567592888454295,1.2342554849225682,1.2120490201253649,1.1901368132193548,1.1685157829700772,1.1471828481430681,1.126134927503864,1.1053689398180038,1.0848818038510228,1.0646704383684606,1.0447317621358534,1.025062693918737,1.005660152482651,0.9865210565931304,0.9676423250157145,0.9490208765159396,0.930653629859342,0.9125375038114607,0.8946694171378312,0.8770462886039926,0.859665036975481,0.842522581017833,0.8256158394965873,0.8089417311772797,0.7924971748254491,0.7762790892066318,0.7602843930863642,0.7445100052301852,0.7289528444036303,0.7136098293722386,0.6984778789015454,0.6835539117570899,0.6688348467044083,0.654317602509037,0.639999097936515,0.6258762517523778,0.6119459827221643,0.5982052096114109,0.5846508511856541,0.5712798262104326,0.5580890534512822,0.5450754516737417,0.5322359396433474,0.5195674361256358,0.5070668598861459,0.49473112969041305,0.4825571643039762,0.47054188249237183,0.4586822030211365,0.4469750446558087,0.4354173261619244,0.4240059663050222,0.4127378838506386,0.4016099975643102,0.3906192262115755,0.37976248855797057,0.36903670336903377,0.3584387894103018,0.3479656654473112,0.33761425024560054,0.3273814625707057,0.3172642211881652,0.3072594448635157,0.29736405236229385,0.28757496245003794,0.27788909389228417,0.26830336545457084,0.2588146959024341,0.24942000400141223,0.240116208517042,0.2309002282148601,0.22176898186040472,0.21271938821921219,0.20374836605682067,0.19485283413876694,0.1860297112305877,0.1772759160978212,0.1685883675060037,0.15996398422067337,0.151399685007367,0.1428923886316213,0.1344390138589745,0.12603647945496285,0.11768170418512457,0.10937160681499639,0.10110310611011508,0.09287312083601881,0.08467856975824391,0.0765163716423285,0.06838344525380936,0.06027670935822328,0.052193082721108404,0.044129484108001056,0.03608283228443937,0.02805004601595969,0.02002804406810013,0.012013745206397492,0.004004068196388555,-0.004004068196388999,-0.012013745206397492,-0.02002804406810013,-0.02805004601595969,-0.036082832284438926,-0.04412948410800151,-0.052193082721108404,-0.06027670935822328,-0.0683834452538089,-0.07651637164232804,-0.08467856975824437,-0.09287312083601881,-0.10110310611011508,-0.10937160681499593,-0.11768170418512411,-0.12603647945496332,-0.1344390138589745,-0.1428923886316213,-0.15139968500736653,-0.1599639842206729,-0.16858836750600417,-0.1772759160978212,-0.1860297112305877,-0.19485283413876645,-0.20374836605682017,-0.21271938821921269,-0.22176898186040472,-0.2309002282148601,-0.2401162085170415,-0.24942000400141173,-0.2588146959024346,-0.26830336545457084,-0.27788909389228417,-0.2875749624500374,-0.2973640523622933,-0.3072594448635157,-0.3172642211881652,-0.3273814625707057,-0.33761425024559993,-0.34796566544731067,-0.3584387894103018,-0.36903670336903377,-0.37976248855797057,-0.3906192262115749,-0.4016099975643096,-0.4127378838506386,-0.4240059663050222,-0.4354173261619244,-0.44697504465580806,-0.4586822030211371,-0.47054188249237183,-0.4825571643039762,-0.49473112969041305,-0.5070668598861451,-0.5195674361256366,-0.5322359396433474,-0.5450754516737417,-0.5580890534512822,-0.5712798262104319,-0.5846508511856549,-0.5982052096114109,-0.6119459827221643,-0.6258762517523778,-0.6399990979365142,-0.6543176025090378,-0.6688348467044083,-0.6835539117570899,-0.6984778789015454,-0.7136098293722377,-0.7289528444036312,-0.7445100052301852,-0.7602843930863642,-0.7762790892066309,-0.7924971748254482,-0.8089417311772807,-0.8256158394965873,-0.842522581017833,-0.8596650369754801,-0.8770462886039916,-0.8946694171378322,-0.9125375038114607,-0.930653629859342,-0.9490208765159386,-0.9676423250157135,-0.9865210565931314,-1.005660152482651,-1.025062693918737,-1.0447317621358523,-1.0646704383684598,-1.084881803851024,-1.1053689398180038,-1.126134927503864,-1.1471828481430668,-1.1685157829700759,-1.190136813219356,-1.2120490201253649,-1.2342554849225682,-1.2567592888454282,-1.279563513128408,-1.302671239005973,-1.3260855477125804,-1.3498095204826959,-1.3738462385507821,-1.3981987831513019,-1.4228702355187206,-1.4478636768874957,-1.4731821884920926,-1.498828851566974,-1.5248067473466058,-1.551118957065445,-1.5777685619579567,-1.604758643258604,-1.63209228220185,-1.6597725600221604,-1.6878025579539915,-1.7161853572318093,-1.7449240390900764,-1.774021684763256,-1.8034813754858137,-1.833306192492206,-1.863499217016899,-1.8940635302943551,-1.9250022135590372,-1.9563183480454118,-1.9880150149879345,-2.0200952956210716,-2.052562271179286,-2.0854190228970397,-2.1186686320088004,-2.1523141797490224,-2.1863587473521733,-2.2208054160527144,-2.25565726708511,-2.2909173816838253,-2.326588841083316,-2.3626747265180494,-2.399178119222487,-2.4361021004310923,-2.473449751378332,-2.5112241532986608,-2.5494283874265458,-2.5880655349964488,-2.627138677242834,-2.6666508954001666,-2.7066052707029025,-2.747004884385508,-2.787852817682446,-2.829152151828179,-2.870905968057175,-2.9131173476038867,-2.9557893717027826,-2.998925121588324,-3.0425276784949746,-3.0866001236572025,-3.1311455383094593,-3.1761670036862144,-3.2216676010219287,-3.2676504115510663,-3.3141185165080946,-3.3610749971274663,-3.408522934643649,-3.456465410291106,-3.5049055053042997,-3.553846300917698,-3.6032908783657533,-3.653242318882934,-3.703703703703702,-3.7546781140625205,-3.806168631193858,-3.8581783363321662,-3.910710310711913,-3.9637676355675615,-4.0173533921335745,-4.071470661644421,-4.126122525334551,-4.181312064438433,-4.2370423601905305,-4.293316493825314,-4.350137546577231,-4.407508599680752,-4.4654327343703395,-4.523913031880456,-4.582952573445572,-4.6425544403001355,-4.702721713678617,-4.763457474815478,-4.824764804945183,-4.886646785302201,-4.9491064971209795,-5.01214702163599,-5.075771440081695,-5.139982833692557,-5.204784283703045,-5.270178871347609,-5.336169677860719,-5.402759784476835,-5.469952272430423,-5.537750222955951,-5.6061567172878695,-5.675174836660647,-5.744807662308745,-5.815058275466629,-5.885929757368767,-5.957425189249608,-6.029547652343621,-6.10230022788527,-6.175685997109018,-6.249708041249335,-6.324369441540668,-6.399673279217487,-6.475622635514257,-6.552220591665438,-6.629470228905503,-6.707374628468897,-6.785936871590091,-6.865160039503549,-6.9450472134437335,-7.025601474645115,-7.1068259043421405,-7.18872358376928,-7.271297594160996,-7.354551016751751,-7.438486932776019,-7.523108423468243,-7.608418570062896,-7.694420453794439,-7.781117155897336,-7.8685117576060595,-7.9566073401550526,-8.045406984778786,-8.134913772711727,-8.225130785188334,-8.316061103443083,-8.407707808710413,-8.500073982224801,-8.593162705220706,-8.686977058932602,-8.781520124594934,-8.87679498344217,-8.97280471670878,-9.069552405629219,-9.167041131437966,-9.265273975369459,-9.364254018658173,-9.46398434253857,-9.564468028245114,-9.66570815701228,-9.767707810074503,-9.870470068666263,-9.973998014022019,-10.078294727376237,-10.183363289963388,-10.289206783017914,-10.395828287774288,-10.503230885466973,-10.611417657330431,-10.72039168459914,-10.830156048507536,-10.940713830290093,-11.052068111181274,-11.164221972415547,-11.27717849522738,-11.390940760851215,-11.505511850521524,-11.620894845472773,-11.737092826939424,-11.854108876155953,-11.971946074356794,-12.090607502776427,-12.210096242649314,-12.330415375209913,-12.451567981692705,-12.573557143332124,-12.69638594136265,-12.820057457018738,-12.944574771534858,-13.069940966145483,-13.19615912208505,-13.323232320588033,-13.451163642888897,-13.579956170222104,-13.709612983822133,-13.840137164923416,-13.971531794760427,-14.103799954567634,-14.236944725579498,-14.370969189030498,-14.505876426155066,-14.641669518187676,-14.778351546362796,-14.915925591914887,-15.054394736078425,-15.193762060087845,-15.334030645177625,-15.475203572582227,-15.617283923536114,-15.760274779273763,-15.904179221029604,-16.049000330038123,-16.194741187533776,-16.341404874751024,-16.488994472924354,-16.63751306328819,-16.78696372707701,-16.937349545525283,-17.088673599867484,-17.240938971338043,-17.39414874117144,-17.548305990602138,-17.7034138008646,-17.859475253193303,-18.016493428822677,-18.174471408987205,-18.33341227492135,-18.493319107859566,-18.654194989036345,-18.816042999686104,-18.978866221043333,-19.14266773434249,-19.307450620818035,-19.473217961704453,-19.63997283823617,-19.807718331647663,-19.976457523173405,-20.146193494047846,-20.316929325505477,-20.488668098780714,-20.66141289510805,-20.83516679572194,-21.00993288185685,-21.18571423474726,-21.36251393562759,-21.540335065732332,-21.719180706295944,-21.89905393855289,-22.079957843737645,-22.261895503084645,-22.44486999782836,-22.62888440920326,-22.81394181844381,-23.000045306784486,-23.187197955459716,-23.375402845703974,-23.564663058751737,-23.754981675837456,-23.94636177819562,-24.138806447060652,-24.332318763667026,-24.526901809249214,-24.722558665041678,-24.9192924122789,-25.117106132195296,-25.316002906025357,-25.515985815003543,-25.71705794036432,-25.919222363342165,-26.122482165171505,-26.326840427086815,-26.53230023032257,-26.738864656113225,-26.946536785693265,-27.155319700297113,-27.365216481159248,-27.576230209514137,-27.788363966596265,-28.001620833640047,-28.21600389187997,-28.431516222550496,-28.64816090688609,-28.865941026121238,-29.084859661490352,-29.304919894227922,-29.526124805568408,-29.748477476746277,-29.971980988996012,-30.19663842355203,-30.422452861648814,-30.64942738452083,-30.877565073402543,-31.106869009528435,-31.337342274132926,-31.56898794845049,-31.80180911371561,-32.03580885116273,-32.27099024202636,-32.50735636754088,-32.7449103089408,-32.98365514746059,-33.2235939643347,-33.46472984079761,-33.707065858083745,-33.95060509742759,-34.195350640063616,-34.441305567226266,-34.68847296015005,-34.93685590006937,-35.186457468218705,-35.43728074583253,-35.68932881414531,-35.942604754391525,-36.197111647805585,-36.45285257562199,-36.70983061907519,-36.96804885939966,-37.22751037782987,-37.48821825560025,-37.75017557394529,-38.01338541409943,-38.27785085729715,-38.543574984772945,-38.81056087776121,-39.07881161749645,-39.3483302852131,-39.61911996214566,-39.89118372952859,-40.16452466859631,-40.43914586058331,-40.71505038672405,-40.992241328253,-41.27072176640464,-41.55049478241339,-41.83156345751373,-42.113930872940124,-42.39760010992704,-42.682574249708956,-42.968856373520296,-43.25644956259554,-43.54535689816916,-43.8355814614756,-44.12712633374938,-44.41999459622488,-44.714189330136605,-45.009713616719004,-45.306570537206596,-45.604763172833756,-45.90429460483498,-46.20516791444475,-46.50738618289751,-46.81095249142778,-47.11586992126992,-47.422141553658456,-47.72977046982784,-48.03875975101253,-48.34911247844703,-48.66083173336573,-48.973920597003136,-49.288382150593705,-49.60421947537189,-49.92143565257221,-50.24003376342904,-50.56001688917688,-50.8813881110502,-51.204150510283455,-51.52830716811115,-51.853861165767675,-52.18081558448752,-52.50917350550517,-52.83893801005505,-53.170112179371706,-53.50269909468949,-53.83670183724291,-54.17212348826645,-54.50896712899454,-54.84723584066171,-55.18693270450233,-55.528060801750904,-55.8706232136419,-56.21462302140977,-56.560063306289024,-56.906947149514046,-57.255277632319334,-57.605057835939355,-57.95629084160857,-58.30897973056149,-58.66312758403247,-59.01873748325605,-59.37581250946667,-59.734355743898796,-60.09437026778694,-60.45585916236547,-60.8188255088689,-61.18327238853169,-61.5492028825883,-61.91662007227323,-62.285527038820874,-62.65592686346572,-63.027822627442255,-63.40121741198491,-63.77611429832822,-64.15251636770654,-64.53042670135439,-64.9098483805062,-65.29078448639653,-65.67323810025972,-66.05721230333029,-66.4427101768427,-66.82973480203141,-67.21828926013092,-67.60837663237561,-68.0]}},\"id\":\"bbbc196c-51a7-46df-80d2-ffafe971b2f3\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"overlay\":{\"id\":\"d0ceaf8f-3705-47f7-ba3a-eec1847ab62d\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c25b1e7f-3df1-49d7-b61c-64b7933ae62d\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"dimension\":\"height\",\"line_dash\":[2,4],\"location\":0,\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9d0a6af3-2c5a-4fc7-96e3-f3ce7a8b50bb\",\"type\":\"Span\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1967b6ee-b55e-45ed-8289-125584e99b65\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"x-dot\",\"formatter\":{\"id\":\"eb681205-3376-4511-aba0-8dec89a3af9c\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"c56fb4df-1080-48dd-9403-0e9f0387408c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"92d73220-b4d1-401e-966a-dca3883b4609\",\"type\":\"BasicTicker\"}},\"id\":\"9e6c0fa3-7bad-4c8e-bc29-3de37dabdec9\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"7dd99212-3bf0-4e17-ab85-ce9577a4e562\",\"type\":\"Title\"},{\"attributes\":{\"axis_label\":\"V\",\"formatter\":{\"id\":\"9ca99864-d194-410e-a9e8-3192cfc84a53\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"e368b9db-f5e7-4652-b26a-2857f27f9176\",\"type\":\"BasicTicker\"}},\"id\":\"bca4cf9e-9a20-4370-9b65-068e39446d62\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"y\",\"x\"],\"data\":{\"x\":[],\"y\":[]}},\"id\":\"dfc5ef53-29b0-4260-a7ab-c26965074851\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"b05cb554-c5d1-4d3b-90e4-57e8459a1bc0\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"38abff87-f579-4d45-ac9c-ee5d16d533d9\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"3354b12e-c591-4f42-bc3e-998a360d9650\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"7453b8a6-d8a7-455e-a509-fd2899f7ba96\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"254d8dae-9d00-4cf7-b4e8-c9c68c24d4d5\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c79c6e03-aab5-4672-82be-a04697d29232\",\"type\":\"BasicTicker\"}},\"id\":\"d431a578-962a-40f8-9705-5331bd468edf\",\"type\":\"LinearAxis\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"517d8776-1bb4-4d5d-843b-c82234743972\",\"type\":\"PanTool\"},{\"id\":\"327ef69e-2f43-476c-ba70-109227f05d5f\",\"type\":\"WheelZoomTool\"},{\"id\":\"c25b1e7f-3df1-49d7-b61c-64b7933ae62d\",\"type\":\"BoxZoomTool\"},{\"id\":\"bd71595f-9516-4c65-ac67-8b4faf2ff053\",\"type\":\"SaveTool\"},{\"id\":\"6f91c459-ac47-491f-9957-90866bee96b0\",\"type\":\"ResetTool\"},{\"id\":\"d31f494f-bcd0-4524-9501-70f604c37df5\",\"type\":\"HelpTool\"}]},\"id\":\"d9e75323-7ec7-42a2-8570-1a6a9999cf15\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"c82de546-a5d9-4efe-84d8-dca953aa414b\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"e8727f22-834c-4543-935c-ec526247f5f3\",\"type\":\"PanTool\"},{\"id\":\"ceb52416-1f2a-4907-a1ee-e0451d40bf14\",\"type\":\"WheelZoomTool\"},{\"id\":\"2166eeb8-b006-43db-b83e-31a64d3e653c\",\"type\":\"BoxZoomTool\"},{\"id\":\"88521740-68df-4fe5-aa6f-3ff1bfff63da\",\"type\":\"SaveTool\"},{\"id\":\"c5ee0695-1042-4fc8-9176-c80f392a24a4\",\"type\":\"ResetTool\"},{\"id\":\"dc50eac8-7ecd-4ddc-9b0c-ca4f6250f397\",\"type\":\"HelpTool\"}]},\"id\":\"65ff0ab7-e066-408f-bca0-96da4dc9df2c\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"eb681205-3376-4511-aba0-8dec89a3af9c\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"value\":\"white\"},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"38abff87-f579-4d45-ac9c-ee5d16d533d9\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"dbae5b33-c573-46d3-911c-c97e94a1e113\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"17ee768e-776e-4562-ac86-96d1a83088a7\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"2166eeb8-b006-43db-b83e-31a64d3e653c\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"e368b9db-f5e7-4652-b26a-2857f27f9176\",\"type\":\"BasicTicker\"}],\"root_ids\":[\"9a5fdbd8-01d1-44c7-8987-685ea39c3890\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"35d22711-c926-4309-b8ac-8d42b0632c62\",\"elementid\":\"fd676109-7e18-4ffa-b3ae-9bcd50dd7346\",\"modelid\":\"9a5fdbd8-01d1-44c7-8987-685ea39c3890\",\"notebook_comms_target\":\"f65f059f-bec0-48a1-b3df-70f4e5f54266\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"def roots(r, f):\n",
" attractors = []\n",
" repellers = []\n",
" halfs = []\n",
" all_roots = set()\n",
" for root in np.roots([-1, 0, -r, 0]):\n",
" if np.isreal(root):\n",
" root = float(np.real(root))\n",
" if root in all_roots:\n",
" continue\n",
" \n",
" all_roots.add(root)\n",
" sign = np.sign(f(r, root))\n",
" if sign == -1:\n",
" attractors.append(root)\n",
" elif sign == 1:\n",
" repellers.append(root)\n",
" elif sign == 0:\n",
" halfs.append(root)\n",
" return attractors, repellers, halfs\n",
"\n",
"\n",
"r = 1.\n",
"range_ = 4\n",
"xs = np.linspace(-range_, range_, 1000)\n",
"\n",
"fig = init_plot()\n",
"fig.xaxis.visible = False\n",
"fig.yaxis.axis_label = 'x-dot'\n",
"dx_glyph = fig.line(xs, dx(r, xs), line_width=2)\n",
"attractors, repellers, halfs = roots(r, ddx)\n",
"att_glyph = fig.scatter(attractors, np.zeros_like(attractors), size=20)\n",
"rep_glyph = fig.scatter(repellers, np.zeros_like(repellers), size=20, line_width=2, fill_color='white')\n",
"half_glyphs = fig.scatter(halfs, np.zeros_like(halfs), size=20, line_width=2, fill_alpha=0.5)\n",
"\n",
"v_fig = init_plot(show_yaxis=False)\n",
"v_fig.xaxis.axis_label = 'x'\n",
"v_fig.yaxis.axis_label = 'V'\n",
"v_fig.x_range = fig.x_range\n",
"v_glyph = v_fig.line(xs, v(r, xs), line_width=2)\n",
"#v_att_glyphs = v_fig.scatter(attractors, v(r, attractors), size=20)\n",
"#v_rep_glyphs = v_fig.scatter(repellers, v(r, repellers), size=20, line_width=2, fill_color='white')\n",
"#v_half_glyphs = v_fig.scatter(halfs, v(r, halfs), size=20, line_width=2, fill_alpha=0.5)\n",
"\n",
"show(column([fig, v_fig]));"
]
},
{
"cell_type": "code",
"execution_count": 84,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"@interact(r=FloatSlider(min=-10., max=10., value=1.))\n",
"def update(r):\n",
" dx_glyph.data_source.data['y'] = dx(r, xs)\n",
" v_glyph.data_source.data['y'] = v(r, xs)\n",
" attractors, repellers, halfs = roots(r, ddx)\n",
" att_glyph.data_source.data = {'x': attractors, 'y': np.zeros_like(attractors)}\n",
" rep_glyph.data_source.data = {'x': repellers, 'y': np.zeros_like(repellers)}\n",
" half_glyphs.data_source.data = {'x': halfs, 'y': np.zeros_like(halfs)}\n",
" #v_att_glyphs.data_source.data = {'x': attractors, 'y': v(r, attractors)}\n",
" #v_rep_glyphs.data_source.data = {'x': repellers, 'y': v(r, repellers)}\n",
" #v_half_glyphs.data_source.data = {'x': halfs, 'y': v(r, halfs)}\n",
" push_notebook()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### A 2D system: Damped spring"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Dynamics are a useful modeling tool because they allow us to develop *spatial intuitions* about our systems in order to get a qualitative view of their behavior."
]
},
{
"cell_type": "code",
"execution_count": 90,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/e/ea/Simple_Harmonic_Motion_Orbit.gif\" alt=\"mass-spring\" style=\"width:640px;height:400px;\">"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%%HTML\n",
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/e/ea/Simple_Harmonic_Motion_Orbit.gif\" alt=\"mass-spring\" style=\"width:640px;height:400px;\">"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$$ m\\ddot{x} + b\\dot{x} + kx = 0 $$\n",
"\n",
"or as a system of first-order differential equations\n",
"\n",
"\\begin{aligned}\n",
"\\dot{x} &= v \\\\\n",
"\\dot{v} &= -bv -x\n",
"\\end{aligned}\n",
"\n",
"with mass $m$, damping strength $b$, position $x$, velocity $v$."
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def dv(b, x, v):\n",
" return -b * v - x"
]
},
{
"cell_type": "code",
"execution_count": 132,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"3fccc182-c7d3-4fed-b826-0e71173241a1\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = \"\";\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"3fccc182-c7d3-4fed-b826-0e71173241a1\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '3fccc182-c7d3-4fed-b826-0e71173241a1' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"03e7a648-ca7c-4d04-9144-1c679ef7ab44\":{\"roots\":{\"references\":[{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"cbf851a9-4de9-40ac-96bf-0fe6700bfd2b\",\"type\":\"BasicTicker\"},\"visible\":false},\"id\":\"45db6537-8059-48d9-a0f8-c88d0041a2ea\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"f014b591-873e-4080-a2b3-987f92b4c903\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"8d6f035f-1e14-4bf9-9fbb-bd976a477690\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"71b14c44-3e85-4569-be92-652ec15edc5b\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"aaf83fdf-71dc-41cd-9b47-56fe265b7196\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"c180692d-46da-4b1a-b518-fee71d903327\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"b888cf4b-6dc9-4af7-a91e-40e42c2e86b1\",\"type\":\"ToolEvents\"},{\"attributes\":{\"below\":[{\"id\":\"06785295-1284-43f9-9316-3d06a85bb30e\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"5ea11a45-c43f-4de6-95ec-54caebabe475\",\"type\":\"LinearAxis\"}],\"renderers\":[{\"id\":\"06785295-1284-43f9-9316-3d06a85bb30e\",\"type\":\"LinearAxis\"},{\"id\":\"a46e206e-0906-4efa-b730-82c10a7cfa7a\",\"type\":\"Grid\"},{\"id\":\"5ea11a45-c43f-4de6-95ec-54caebabe475\",\"type\":\"LinearAxis\"},{\"id\":\"45db6537-8059-48d9-a0f8-c88d0041a2ea\",\"type\":\"Grid\"},{\"id\":\"3c01c808-2d6d-4994-b1a0-78b3c02a2f8b\",\"type\":\"BoxAnnotation\"},{\"id\":\"78232f43-dff4-462d-9188-ef4a827f4c53\",\"type\":\"GlyphRenderer\"},{\"id\":\"865be683-3062-4444-96f2-b6d11a467f49\",\"type\":\"GlyphRenderer\"},{\"id\":\"e8f229b8-d1a9-477a-932b-f42f05691cbb\",\"type\":\"Span\"},{\"id\":\"557c97e4-794a-496f-9f0a-c42221a993b4\",\"type\":\"Span\"},{\"id\":\"aaf83fdf-71dc-41cd-9b47-56fe265b7196\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"4534e8b6-4680-40fe-b2bd-7dc474098b34\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"b888cf4b-6dc9-4af7-a91e-40e42c2e86b1\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"93a3254a-f1a4-41be-a8dc-e90e8e048b8b\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"cadfb20e-071a-4565-b7ca-9fd326461690\",\"type\":\"Range1d\"},\"y_range\":{\"id\":\"05b8d51f-13a3-422c-9975-33dfbfd97b43\",\"type\":\"Range1d\"}},\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"location\":0,\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"557c97e4-794a-496f-9f0a-c42221a993b4\",\"type\":\"Span\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"71b14c44-3e85-4569-be92-652ec15edc5b\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.8},\"line_color\":{\"value\":\"#ee6666\"},\"line_width\":{\"value\":2},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"4c77f537-5d4a-48cc-82b4-5fd54944d25b\",\"type\":\"MultiLine\"},{\"attributes\":{\"axis_label\":\"v\",\"formatter\":{\"id\":\"5729c890-f0df-48e1-93c7-e2716e768aa8\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"cbf851a9-4de9-40ac-96bf-0fe6700bfd2b\",\"type\":\"BasicTicker\"}},\"id\":\"5ea11a45-c43f-4de6-95ec-54caebabe475\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"1d16edb2-4ff1-4417-9ac0-f43cf2ad4736\",\"type\":\"MultiLine\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"29841bb4-392e-49b8-b755-bbcfb835575a\",\"type\":\"PanTool\"},{\"id\":\"8b1ec17e-8bf8-4c0f-8f88-9f061996d38a\",\"type\":\"WheelZoomTool\"},{\"id\":\"f50fd601-1ead-4f39-ab4e-abc04d0a2d18\",\"type\":\"BoxZoomTool\"},{\"id\":\"08a19558-0ea0-42e3-b50b-7880e2d1cbd5\",\"type\":\"SaveTool\"},{\"id\":\"94e1cc0d-9534-4d19-9367-2c1730036b47\",\"type\":\"ResetTool\"},{\"id\":\"a2a16484-7905-4aa3-ab1f-da8a36746293\",\"type\":\"HelpTool\"}]},\"id\":\"93a3254a-f1a4-41be-a8dc-e90e8e048b8b\",\"type\":\"Toolbar\"},{\"attributes\":{\"data_source\":{\"id\":\"04e39605-b980-42df-aa94-9aeb972c2dee\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"badf88dd-1ff4-454f-afdc-f0ff6862a608\",\"type\":\"Segment\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1b911a7f-9be6-4d84-84b1-8e97c5d6789e\",\"type\":\"Segment\"},\"selection_glyph\":null},\"id\":\"78232f43-dff4-462d-9188-ef4a827f4c53\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"5729c890-f0df-48e1-93c7-e2716e768aa8\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"08a19558-0ea0-42e3-b50b-7880e2d1cbd5\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"29841bb4-392e-49b8-b755-bbcfb835575a\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null,\"end\":3,\"start\":-3},\"id\":\"05b8d51f-13a3-422c-9975-33dfbfd97b43\",\"type\":\"Range1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ee6666\"},\"line_color\":{\"value\":\"#ee6666\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"value\":0},\"y\":{\"value\":0}},\"id\":\"8d6f035f-1e14-4bf9-9fbb-bd976a477690\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"x\",\"formatter\":{\"id\":\"2e74bb01-7eb0-45fc-9fce-d7b6abd4ed44\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c180692d-46da-4b1a-b518-fee71d903327\",\"type\":\"BasicTicker\"}},\"id\":\"06785295-1284-43f9-9316-3d06a85bb30e\",\"type\":\"LinearAxis\"},{\"attributes\":{\"overlay\":{\"id\":\"3c01c808-2d6d-4994-b1a0-78b3c02a2f8b\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"f50fd601-1ead-4f39-ab4e-abc04d0a2d18\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"xs\",\"ys\"],\"data\":{\"xs\":[[-2.3730407523510975,-2.4024357695305754,-2.431526603410684,-2.4603083548069944,-2.4887758590212625,-2.5169238575297643,-2.5447468492764083,-2.572239201809594,-2.5993951108350903,-2.626208517369077,-2.6526732492145024,-2.678782780764976,-2.704530525295002,-2.7299095224883754,-2.754912664305174,-2.779532525568522,-2.8037613770812007,-2.8275913224092473,-2.8510140374569173,-2.8740209932246086,-2.8966033030394156,-2.9187516757054954,-2.9404565449392996,-2.9617078977501277,-2.9824953340101614],[-1.955067920585163,-1.9863046948859717,-2.0172343430320288,-2.047851921057337,-2.0781520583548234,-2.1081294186827177,-2.1377782662759626,-2.1670929277757454,-2.196067262058875,-2.224695170131676,-2.252970086876182,-2.28088544665498,-2.3084342529246733,-2.335609365112501,-2.3624032886487956,-2.3888083016308537,-2.414816413984995,-2.4404192291742928,-2.4656081585527616,-2.4903740781991877,-2.514707683004721,-2.5385991922629496,-2.562038410746231,-2.585014811410773,-2.6075172285206856,-2.6295341541661728,-2.651053576178956,-2.672062864275231,-2.692548929989488,-2.712498039696906,-2.7318957789626563,-2.7507271384674272,-2.7689763585465736,-2.78662686238614,-2.8036613475779255,-2.820061654321419,-2.83580867112144,-2.850882335613265,-2.865261580796839,-2.878924241002001,-2.891846967625671,-2.904005180701715,-2.915373001339801,-2.9259231498938836,-2.935626859165081,-2.944453781900537,-2.952371893786908,-2.9593474033930094,-2.9653446408809585,-2.9703259518135114,-2.974251590534904,-2.9770796142865037,-2.9787657805304333,-2.979263450763469,-2.9785235051041226,-2.976494273152755,-2.973121488074771,-2.968348272540264,-2.9621151670399004,-2.9543602131080946,-2.945019105969619,-2.9340254367768956,-2.921311089083993,-2.906806679185859,-2.8904424832577464,-2.8721490345813816,-2.851858450280753,-2.829505373069227,-2.8050284446306817,-2.77837310288727,-2.7494917609701477,-2.718349068893473,-2.684920574430242,-2.6491968579042386,-2.611188837967525,-2.5709263660465305,-2.5284566583988273,-2.483843675507053,-2.437185750364605,-2.3885900554247876,-2.3381773717127734,-2.2860983415861535,-2.232489883723307,-2.1775237318611165,-2.12135067283768,-2.064131269259862,-2.0060356648647044,-1.9472052520282097,-1.8877768546249087,-1.8278893948349764,-1.7676722351112317,-1.7072351562858727,-1.6466786488275693,-1.5860938400898403,-1.525562586427715,-1.465157856439882,-1.4049443344143666,-1.3449794591520001,-1.2853192044289832,-1.2260106916477713,-1.167092617524522,-1.1085992030708476,-1.0505632143067822,-0.993018806255002,-0.9359899632808952,-0.8794997764108947,-0.8235761197271145,-0.7682381526514948,-0.7135072031028695,-0.659403255661029,-0.6059441968243329,-0.5531526802475262,-0.501049104903506,-0.4496537103124836,-0.3989862922870704,-0.34906943937912693,-0.29992548084582715,-0.2515792577215432,-0.20406146403105874,-0.1573996420340218,-0.11162543286925031,-0.06677252549213142,-0.02288501220400896,0.01999439065137487,0.06181779541750343,0.10252797696583471,0.14205916897652981,0.18034058114732288,0.21728533861335597,0.25279395439875474,0.286752654312572,0.3190185787405948,0.3494291212774683,0.3777760280918887,0.40381302865265667,0.4272216944694014,0.4476004851493438,0.46442343615953163,0.47698759046080275,0.4843390331200177,0.4851605206352412,0.4776499839600832,0.45951797652160886,0.428546308569981,0.38411483490650333,0.3299087817004569,0.2706885981441096,0.2108836790855535,0.15303935978137018,0.09834363129983448,0.04765574900903813,0.0018134602526158616,-0.037656600949669716,-0.06769513036159047,-0.07881769370957858,-0.04738595254472999],[-1.537095088819228,-1.5703692646770038,-1.6033342767661063,-1.6359850378021532,-1.6683161971679195,-1.7003222189210605,-1.7319974306120471,-1.763335878286687,-1.794331494331439,-1.8249778582562486,-1.855268469760931,-1.8851963978607298,-1.9147545979257887,-1.9439356321417363,-1.9727319043646963,-2.0011353948687036,-2.029137828831747,-2.056730582272519,-2.0839046396547483,-2.110650708187376,-2.1369588725415816,-2.162819058946203,-2.1882204986618863,-2.2131521776916743,-2.2376024452069583,-2.2615591152521968,-2.285009539621938,-2.30794028182378,-2.330337462576023,-2.352186438508556,-2.3734717933072984,-2.3941774575975234,-2.4142864086439255,-2.4337807407728818,-2.4526417273644334,-2.4708495726751987,-2.488383392466976,-2.5052212234549094,-2.5213398614533733,-2.5367147296281165,-2.551319897647275,-2.5651279359691874,-2.5781097927583136,-2.5902346628368664,-2.60146990433969,-2.6117809009615187,-2.621130908576633,-2.6294809063936433,-2.6367894454084695,-2.6430124898703835,-2.6481032527733586,-2.6520120240074676,-2.6546860003158232,-2.6560691234728653,-2.6561019307855362,-2.654721426841653,-2.651860988266316,-2.6474503166732437,-2.641415458989732,-2.6336789196237107,-2.624159910219476,-2.6127747436807924,-2.599437422369846,-2.584060464434658,-2.566556034273598,-2.546837774700602,-2.5248221068969254,-2.500430619340899,-2.4735937514077504,-2.4442533654349896,-2.4123704559232597,-2.377919339972868,-2.3409006370358227,-2.301336814818235,-2.259276279079125,-2.2148132466146815,-2.1680532375472383,-2.1191271094811284,-2.0682121463355396,-2.0154712214249386,-1.961121455395447,-1.9053404613442713,-1.848346947181948,-1.7903376622184604,-1.7314913587429952,-1.6719908841622046,-1.612013800868894,-1.5517072463182586,-1.4912051073815324,-1.4306281476426894,-1.370083871112795,-1.3096669612374263,-1.249460158099906,-1.1895354292516864,-1.129957016672721,-1.0707882486401226],[-1.1191222570532933,-1.1546485873245456,-1.18986458868359,-1.2247650583905498,-1.2593448366639588,-1.29359816795906,-1.327519538356594,-1.361102903095082,-1.3943421851436748,-1.4272309926473403,-1.4597626322322994,-1.4919302781462331,-1.5237266780890988,-1.5551444918542998,-1.5861758128038614,-1.6168127211955212,-1.6470466260977703,-1.6768688546141277,-1.706270084721808,-1.7352408942142137,-1.7637711453487033,-1.7918504707606626,-1.8194678536856863,-1.8466118806278493,-1.8732705591154717,-1.899431195386929,-1.9250806641037939,-1.9502049458008854,-1.9747895998082852,-1.9988191998581186,-2.022277617246775,-2.0451478828293705,-2.067411932244536,-2.089050927790578,-2.1100448484595686,-2.1303724909085107,-2.150011544813793,-2.1689382713776677,-2.1871274796388165,-2.204552449982117,-2.221184845437516,-2.23699444960243,-2.251949192482431,-2.266014900445243,-2.2791551143008366,-2.2913308827741954,-2.302500645540107,-2.3126199726879655,-2.321641332269085,-2.3295138484362923,-2.3361830458626507,-2.3415905824576235,-2.3456739807010107,-2.3483663473950545,-2.3495961076984035,-2.3492867618083064,-2.3473566821019656,-2.3437189759821844,-2.338281447887201,-2.330946704395854,-2.321612476994436,-2.310172206311643,-2.29651596766546,-2.280531827167306,-2.2621077759977517,-2.241134977529306,-2.2175106565651137,-2.1911425816610643,-2.1619540494435494,-2.1298868628063357,-2.0949148136924935,-2.057047827555219,-2.0163271430835175,-1.972835912304858,-1.9266990987187622,-1.8780939357677162,-1.8272053736974396,-1.774288606095492,-1.7195658817814286,-1.663323624111649,-1.6057958997286463,-1.5472314308643451,-1.4878850567466397,-1.427964457624119,-1.3676602621511318,-1.3071452501579273,-1.2465728882806524,-1.1860771685771556,-1.125773515386746,-1.0657604586090186,-1.0061217638404198,-0.9469287457845041,-0.8882504769640089,-0.8301457395187937,-0.7726578428204975,-0.7158273320421449,-0.6596999348608694,-0.6043059125899224],[-0.7011494252873582,-0.7391580521822605,-0.7768560225229311,-0.8142380062971144,-0.8512989654148959,-0.888033490585459,-0.9244358608443561,-0.9605004678863049,-0.9962210083413621,-1.0315913216878734,-1.0666048443562501,-1.1012546988967584,-1.1355339712539418,-1.1694350261167141,-1.2029503853091164,-1.2360717853188377,-1.268791015664019,-1.3010992074635346,-1.3329872625540538,-1.3644455912785567,-1.3954641471402796,-1.4260324070380372,-1.4561393439608272,-1.4857734443929085,-1.514922545526492,-1.5435738939602859,-1.5717141226008675,-1.5993290664705682,-1.6264039358600522,-1.652922840597937,-1.6788694352140376,-1.7042259959575192,-1.7289741966452252,-1.7530943570998503,-1.7765656575396254,-1.7993661835308374,-1.821472329120776,-1.842859301801572,-1.8635006048789922,-1.883367855065789,-1.9024309493821205,-1.9206575843226577,-1.9380131059261378,-1.9544605777530861,-1.9699603619048223,-1.9844698123220827,-1.9979430881149902,-2.010330885802451,-2.021580054851447,-2.031633246367673,-2.040428525309701,-2.047898986040257,-2.0539723089393633,-2.0585702966927237,-2.0616084134991395,-2.0629953324503845,-2.0626325167430206,-2.0604138726461816,-2.0562255284210353,-2.0499458140269815,-2.0414455409544043,-2.0305887076186626,-2.0172338792362106,-2.0012363809684546,-1.982451254724559,-1.9607376267834544,-1.9359667640131841,-1.9080267834643285,-1.876832528854013,-1.842332284925228,-1.8045335350056197,-1.7634906636787226,-1.7193206414140556,-1.6721888391411468,-1.6223591059060933,-1.5700853361014784,-1.5157057621852166,-1.4595200459681574],[-0.28317659352142366,-0.3239044424730273,-0.36432163953633134,-0.40442328847746545,-0.44420427907305227,-0.48365962847031163,-0.5227838245795868,-0.5615712124117413,-0.6000161919303793,-0.6381124606350541,-0.6758537964411726,-0.7132338083806165,-0.7502452935708419,-0.7868813913910677,-0.82313454975995,-0.8589969495733296,-0.8944607020611839,-0.9295169007134834,-0.9641569720884307,-0.9983713970783978,-1.0321505029957212,-1.0654840460467228,-1.0983611856391726,-1.130770728338591,-1.1627005713906398,-1.1941384762294613,-1.2250709252105343,-1.255484341145324,-1.2853637084609937,-1.3146938085793312,-1.3434578351332405,-1.3716386688215374,-1.3992176485766041,-1.4261753432193116,-1.452490816048722,-1.4781418819058492,-1.5031050405879083,-1.5273548944735114,-1.550864716273097,-1.5736054434345723,-1.5955461216530245,-1.6166536991821236,-1.6368922909717636,-1.6562235894286708,-1.6746062367557835,-1.6919953336578124,-1.708342495326178,-1.7235952793282099,-1.7376966871402748,-1.7505846954099198,-1.7621918567284434,-1.7724446405724874,-1.7812627707388322,-1.7885585275039744,-1.7942360012025047,-1.7981903181036671,-1.800306840336308,-1.800460403942785,-1.7985146650301904,-1.7943216541639597,-1.78772169290737,-1.7785439160570833,-1.7666077174513475,-1.751725422456603,-1.733706620962525,-1.7123649347061733,-1.6875283993054224,-1.6590484069726268,-1.6268226237214283,-1.5908138898749484,-1.551056648013168,-1.5076661049681772,-1.460839386232674,-1.4109195635032266,-1.3582387970516523,-1.3032538803573852,-1.2463574393304961,-1.1880174622792357,-1.1286380739570558,-1.068568195730739,-1.00812195499787,-0.9475717323167006,-0.8871463913530513,-0.8270337616342838,-0.7673859199856268,-0.7083257818903417,-0.6499558850211362,-0.5923796831937778,-0.5356645516264638,-0.4798690858630108,-0.42506154897563553,-0.37129681018358207,-0.3186347231144686,-0.2671257322014968,-0.2168269556526572,-0.16779956405583274,-0.12011133314284228,-0.07384371954111435,-0.029094284837459128,0.014030974965127285],[0.13479623824451092,0.0911221687858692,0.04775854179019978,0.004709700909098835,-0.03801936525054472,-0.08042386644935062,-0.12249895017522006,-0.16423929530924264,-0.20563927660596404,-0.24669344444082997,-0.28739592031569794,-0.3277402640081135,-0.3677203137653251,-0.40732939978541793,-0.44656025401207033,-0.4854058613542418,-0.5238584840477025,-0.5619100052593282,-0.5995523732997694,-0.6367764734029939,-0.673573235006407,-0.7099331271708871,-0.7458456827388726,-0.7813005916529834,-0.8162862835950819,-0.8507910836791526,-0.8848024877662208,-0.9183071818899542,-0.9512915151474344,-0.9837402654452463,-1.0156382722776234,-1.046968418833746,-1.077713578213303,-1.107854526498297,-1.1373717958740532,-1.1662436618489402,-1.1944477309222357,-1.221959226904871,-1.2487524697575338,-1.2747992776412413,-1.3000697199257951,-1.3245314279688953,-1.3481493276243572,-1.3708859625485483,-1.3927002511220303,-1.4135479699736684,-1.4333810766942796,-1.4521468398004667,-1.469787853570034,-1.4862414795877121,-1.5014388652006174,-1.5153044150214654,-1.527754967373059,-1.5386987410597135,-1.548034285927603,-1.5556493143294483,-1.5614194683561349,-1.5652069376093931,-1.5668590763299861,-1.5662071055639588,-1.5630650588324069,-1.5572292432367603,-1.5484786272261184,-1.5365768010531884,-1.5212765457574453,-1.5023274315489097,-1.4794876207805447,-1.4525446360152952,-1.421338141938431,-1.385789182007839,-1.3459103848939393,-1.3019001565854915,-1.2540533805031586,-1.2027674312628345,-1.1486193099144564,-1.0921228800936027,-1.0338804515566289,-0.9744505886622372,-0.9142864029280986,-0.8537871327288062,-0.7932886186847945,-0.7330632516135807,-0.673326859993467,-0.6142492526302021],[0.7617554858934135,0.7133336685787959,0.6652210982333049,0.6174218906209306,0.5699404647054296,0.5227808904969544,0.47594747582557595,0.42944449268795726,0.38327732369167933,0.33745067455737354,0.29196949648893344,0.24683885564804253,0.2020647813904901,0.15765290706647717,0.11360902624741209,0.06993911132358699,0.02665041173510696,-0.016250570866654712,-0.05875696373482553,-0.10086099564923323,-0.14255475809877405,-0.18383034883497107,-0.22467905464078042,-0.2650915057037255,-0.30505853079547274,-0.3445699891090941,-0.38361499068392657,-0.4221827875021269,-0.46026126742652407,-0.49783784770238304,-0.5348997812838632,-0.5714322586088665,-0.6074208417916158,-0.6428495520057256,-0.6777012706934449,-0.7119584718271721,-0.7456011704723111,-0.7786094470971809,-0.8109606765820176,-0.8426315289719644,-0.8735961186272414,-0.9038273095654241,-0.9332951464466701,-0.961967822532444,-0.9898101887251376,-1.0167849206596058,-1.042850317161057,-1.0679617419007625,-1.0920694227683065,-1.1151194531376105,-1.1370523889704516,-1.1578021270001857,-1.1772960374973964,-1.1954531183778465,-1.2121828160647536,-1.227384183263253,-1.240943926018535,-1.252734439781822,-1.262611735887936,-1.2704130070100341,-1.2759537404833825,-1.2790247215831487,-1.2793889904442066,-1.2767791217386935,-1.2708955269067475,-1.2614069804084076,-1.247955228018608,-1.2301666188711715,-1.2076757042798218,-1.1801572296612288,-1.1473797984654401,-1.109301945532851,-1.0660951138181374,-1.0181514769348228,-0.9661174633623659],[1.1797283176593476,1.1280670713057326,1.076711811266386,1.0256662507729901,0.9749340355266467,0.9245201613000975,0.8744283261660386,0.8246627823856443,0.7752277431103511,0.7261275205191948,0.6773668719632941,0.628950959351509,0.5808844744582244,0.5331723862987969,0.4858197713101853,0.43883248219683146,0.39221633749551765,0.3459771252850201,0.3001208550471146,0.2546539536377561],[-3.0,-2.9660081832633334,-2.9299446688801933,-2.8918172017234576,-2.851654458734844,-2.8094940946176443,-2.7653877747787576,-2.719405057608027,-2.671632797201309,-2.6221624902842526,-2.57111149640314,-2.518589819138155,-2.4647296383363164,-2.4096506730998293,-2.3534972674186716,-2.296387852743559,-2.2384548982890586,-2.179829940495602,-2.120625211156086,-2.0609491145987597,-2.000906386407923,-1.940601580548906,-1.8801231740503705,-1.8195512440332995,-1.758959009848748,-1.6984129238159493,-1.6379729308607942,-1.5776928589259542,-1.5176232394135138,-1.4578110688046269,-1.3982948945085547,-1.3391088245008378,-1.2802833149572397,-1.2218476456562164],[-3.0,-2.948772891880289,-2.8962685411485034,-2.8425895682700735,-2.78782308026482,-2.7320820160431354,-2.675457326697252,-2.618049951101451,-2.5599620337812605,-2.5012809097621074,-2.4420927820045994,-2.3824896755518488,-2.3225531739652387,-2.2623566231687438,-2.201969187274507,-2.141455558526908,-2.0808757954957526,-2.020285280764827,-1.9597347848434499,-1.8992706199975102,-1.8389348661245082,-1.7787656505314156,-1.7187974642807347,-1.6590614993763468,-1.5995886739849006,-1.5404074720017802,-1.4815407360239463,-1.4230091770191964,-1.3648330201699643,-1.3070345255768445,-1.249629633287256],[2.0156739811912185,1.9582195375324902,1.9010276253695961,1.8441039117420592,1.7874550667414493,1.7310876750165978,1.675006979459008,1.6192193373618817,1.5637299572600627,1.5085438830023525,1.4536668765936422,1.399103755883492,1.3448608931956132,1.2909427886379907,1.2373546002693487,1.184101154389892,1.1311877108963744,1.0786193662725436,1.0264009987427603,0.9745376214665513,0.9230356969875713,0.871900260499102,0.8211366709302781,0.7707505094346199,0.7207476320337389,0.6711334242098239,0.621915432909856,0.5730996485444178,0.5246926126508593,0.4767011948185722,0.4291320749552554,0.38199404433431994,0.3352946261813745,0.2890419324663456,0.24324440352746102,0.19791164541386097,0.1530535312352055,0.1086799583306104,0.06480129953072744,0.02142981612236783,-0.02142250243761845,-0.0637432486051499,-0.1055186833987789,-0.14673352360682923,-0.1873727732879069,-0.22741993494508073,-0.26685624493880544,-0.30566324081589835,-0.34382017757530603,-0.38130425143021496,-0.4180923372736296,-0.4541575773170865,-0.48947196414904015,-0.5240049228885999,-0.5577223320031566,-0.5905885146703969,-0.6225619282407742,-0.6535995200642755,-0.6836508544031288,-0.7126629581230874,-0.7405742534299131,-0.7673183357084792,-0.7928185134697419,-0.8169901055506985,-0.8397364114486257,-0.860947152039746,-0.8804969687438349,-0.898240660058498,-0.9140101401526,-0.9276101639074739,-0.9388121938735692,-0.9473472560325331,-0.9528978095971148,-0.9550882985769635,-0.9534754700007775,-0.9475409273172763,-0.9366909682414102,-0.9202747293054809,-0.8976370480049458,-0.8682185430727043,-0.8317400121735177,-0.7883631912012103,-0.7388043308766168,-0.6844591394314521,-0.6267214016866558,-0.5669925845099515,-0.5065639437866927,-0.44629408832948947,-0.3868224968787919,-0.32861374165863566,-0.27194567818021165,-0.21704376449850482,-0.1641469758035332,-0.11342300706181518,-0.0650847960255656,-0.01943721200876425,0.0231743014133885,0.06226157559297585,0.09703945474864506,0.12622527956278518,0.1474674830021372,0.15565998175566165,0.1389772138752483,0.09217722199916256,0.037951128820859825],[-3.0,-2.9424563779590547,-2.884315912335394,-2.8256480300477445,-2.7665290434980627,-2.7070277501282205,-2.6472062049792586,-2.587123944126315,-2.5268376760913185,-2.466401047236762,-2.4058644817524346,-2.3452750938458085,-2.2846766672105376,-2.224109694875115,-2.163611471165903,-2.1032162267445305,-2.0429552974473175,-1.9828573178837436,-1.9229484313460616,-1.863252508442194,-1.8037913678923978,-1.7445862818460551,-1.6856587622770853,-1.627025505445515,-1.5687016812399777,-1.5107025761466057,-1.4530445206595957,-1.395739477109358,-1.3388002200149511],[-3.0,-2.9398485399802903,-2.8795319758946265,-2.8190903318429745,-2.758561511759137,-2.697981258506983,-2.6373831452731653,-2.5767985962500344,-2.5162569331126834,-2.4557854434948747,-2.395409467545972,-2.3351524986836956,-2.275036294819661,-2.2150822250994766,-2.1553107543706513,-2.095739143112736,-2.036383269147611,-1.9772578255099036,-1.9183769497577055,-1.8597562679211193,-1.8014075588888598,-1.7433415621965649,-1.6855696784909044,-1.628103566403096,-1.5709519485621113,-1.514123940972749,-1.4576300125739061,-1.4014784511305387,-1.3456778185671643,-1.2902364475392776],[2.8516196447230877,2.7911214712974495,2.7307017153930833,2.6703795645961295,2.610172919875817,2.5500984696474553,2.490171767292117,2.430407310561944,2.3708186214800637,2.311419448588609,2.2522231911417263,2.193240792008554,2.1344824326601506,2.075957906569478,2.01767860480468,1.9596531089692037,1.9018891952953236,1.8443956339460774,1.7871808299090697,1.7302514274048226],[2.9717861646381234,2.911806807080069,2.8516196447230877,2.791271718787204,2.7308046773851222,2.6702577852591203,2.609667980444395,2.5490698750671053,2.488495787826115,2.4279758039976125,2.3675378585242015,2.3072078376770317,2.2470098997483783,2.186968524456221,2.127104686460436,2.067437273609042,2.007983691607061,1.9487600089994537,1.8897819399157498,1.8310660857451815,1.7726251678997906,1.7144708199435312,1.6566153268255421,1.5990711952679577,1.5418477903720191,1.4849547646562442,1.4284033796859879,1.3722017986920312,1.316358950100751,1.2608837616492847,1.2057832404302529,1.1510663996083084,1.0967408320395942,1.0428154975023665,0.9892977263588634,0.9361948865477907,0.8835148235363737,0.8312653437274165,0.7794542980337589,0.7280892074756689,0.6771793132754098,0.6267336305122231,0.576760310836749,0.5272686759770258,0.47826793694943603,0.4297674819309649,0.38177962731995585,0.3343146689123251,0.28738406930811244,0.24099975167908294,0.19517504198942248,0.1499246200862454,0.105262798801538,0.0612049562274013],[-2.944035993433272,-2.8834391981812266,-2.8228687669856263,-2.762347719707959,-2.701897655875883,-2.6415397731917603,-2.581293759053914,-2.521177336319316,-2.4612069940163854,-2.4013980731786138,-2.341764853693325,-2.282320668547791,-2.2230795494356452,-2.1640543364681304,-2.1052556870440977,-2.0466935826303256,-1.9883784700420442,-1.9303210152651473,-1.8725293810895842,-1.8150114188706457,-1.757776665492905,-1.7008328143146993,-1.644186885769548,-1.5878472655886886,-1.531820129542632,-1.4761118485653877,-1.4207295474844355,-1.365678717602312,-1.3109664274225439],[2.9657575033920542,2.9090470058809386,2.8516196447230877,2.7935661320663687,2.7349610900988335,2.6758768060743003,2.6163881008369936,2.55656871236884,2.4964821303746403,2.4361884236885416,2.3757442959396107,2.315202920399135,2.254613856864836,2.1940230442270217,2.1334728601245683,2.073002237620667,2.0126468280807295,1.9524391993389747,1.8924090586847928,1.8325834910577532,1.7729882494406288,1.71364939714568,1.6545875390157416,1.5958212333227637,1.5373677093395761,1.4792460444300568,1.4214720396886502,1.3640587185553636,1.3070207047035778,1.2503723822548594,1.1941242845636904,1.1382889410048236,1.0828775943557138,1.0278997575257378,0.9733675358416214,0.9192918192751458],[2.9985803708588783,2.95112634427716,2.9021133882084653,2.8516196447230877,2.7997528129521143,2.746603290068739,2.6922866441314923,2.636898242875107,2.580559450900952,2.523372682973535,2.465437337830368,2.406868970649044,2.347762050137389,2.2882063906415064,2.228288306083332,2.168091417457094,2.107697347541424,2.047175945693965,1.9865913797061854,1.926002641043219,1.8654636430364304,1.805023419559184,1.7447264759366865,1.6846157697029085,1.6247297751739893,1.565101176898799,1.505759314199861,1.4467306098744874,1.3880399656822675,1.3297142601173002],[-1.599194277409529,-1.544378534533932,-1.4898574395853403,-1.4356359485814154,-1.381718254939292,-1.3281086729362608,-1.274811540668888,-1.2218318901756953,-1.1691743987535619,-1.11684318072663,-1.064842848530643,-1.0131779614655598,-0.9618531746607122,-0.9108729204018093,-0.8602427572381535,-0.8099678389907194,-0.7600529422738922,-0.7105034730082842,-0.6613246468607961,-0.6125218452745886,-0.5641019860070857,-0.5160706674805375,-0.4684341406556767,-0.42119877906221115,-0.3743714024058846,-0.3279598780896671,-0.281971329650208,-0.23641343418733074,-0.19129409934594177,-0.1466230213191939,-0.10240888858043418,-0.05866099348782283,-0.015389604570302584,0.02739406650743259,0.0696790757037471,0.11145388371485776,0.15270452243130705,0.19341795970009512,0.2335802788137924,0.2731749977737503,0.3121861263947525,0.35059646511348275,0.38838603813780015,0.4255353178716246,0.462022305452634,0.49782304827951185,0.5329129671027726,0.5672631674813227,0.600844693311045,0.6336244019732473,0.6655671364736264,0.6966335719641217,0.7267811056912308,0.7559626825728061,0.7841264743527439,0.8112146047208131,0.8371635330524994,0.8619011568695849,0.8853480049040052,0.9074132178447596,0.9279942865403017,0.9469752644772855,0.9642228726569284,0.9795847255926824,0.9928848958476522,1.00391920463853,1.0124497817934772,1.0181988593519717,1.020841415683643,1.0199977685953323,1.0152274337291018,1.006027273933503,0.9918397335703575,0.9720827780090713,0.9462090574161808,0.9138204512007935,0.8748133107373266,0.8294756453697376,0.77872366429132,0.7235981679914123,0.6655774691976477,0.6058433480759895,0.5454164787685021,0.485097114105733,0.4254610250438935,0.36690693173116573,0.30972293436084986,0.25417050183069057,0.200412254127182,0.14861608563864293,0.0989603831243846],[2.994280705899042,2.9617469051445866,2.9271232072245192,2.8904106622673247,2.8516196447230877,2.8107853000573897,2.7679515892080406,2.723175292452808,2.6765325325255818,2.6281203128510393,2.57803205415284,2.526394106508673,2.4733187617128047,2.4189460881440263,2.36339380884003,2.306814155892445,2.2493319589754845,2.191068813058541,2.1321638911390766,2.072731226959803,2.0128775947000888,1.952704194062461,1.8923057687502514,1.831770007484753,1.7711772249456619,1.7106003021455,1.6501048523317374,1.589749570127844,1.529586718123312,1.469662705812107,1.4100187196605667,1.35069136906536,1.2917138377540214,1.2331214779995863,1.1749413319804312,1.1171963017101465,1.0599098737603745,1.003106579344017,0.9468042431656993,0.8910222917422623,0.8357793732196517,0.78109008833477,0.7269730980625888,0.6734442089953148,0.6205224829106228,0.5682227411216791,0.5165616821447498,0.4655561556820538,0.415224582055707,0.3655837804066522,0.3166567422426039,0.26846455902410726,0.22102932530553598,0.17437525557690536,0.1285273215558087,0.08351945882864875,0.03938213632635579,-0.003850184784108812,-0.046138011423134895,-0.08743464270799528,-0.1276923091894675,-0.16685573345355031,-0.2048579544337068,-0.24162888590208187,-0.27708329075680727,-0.3111233958273223,-0.34363708017157624,-0.3744865322358675,-0.40351337723509895,-0.4305204490797494,-0.45527205393717907,-0.4774718880407969,-0.49674617069560734,-0.5126173640375193,-0.5244594310516688,-0.531440620636872,-0.5324442748574008,-0.5259807326402974,-0.5101670306133483,-0.4830301417029075,-0.4434250387557621,-0.3930186514184011],[-0.8972304493081174,-0.8477420591709133,-0.7985629682131141,-0.7496975089341533,-0.7011494252873582,-0.6529228614631042,-0.605021944434204,-0.5574512313963926,-0.5102156852058974,-0.463319828475778,-0.416768491730624,-0.37056648008086723,-0.3247199464371855,-0.27923412281040827,-0.2341146169431978,-0.18936711052641408,-0.14499871912679474,-0.10101568096038527,-0.05742461962243395,-0.014232714369684984,0.02855210033845923,0.07092222874149323,0.11286974002909256,0.15438517296490595,0.19545970571097016,0.23608407878384385,0.27624755355222774,0.31593959691973605,0.3551493321212278,0.39386409844962733,0.4320715527153718,0.46975846644956576,0.5069099485414785,0.5435114021781651,0.5795464037201037,0.6149977344298709],[1.943620849295268,1.9748000677964619,2.00566849775163,2.0362209834327487,2.066452093159847,2.096356316592476,2.125927838296068,2.1551607522612723,2.1840488581508097,2.212585795655757,2.240764898713673,2.2685793019866836,2.296021927790333,2.3230853452613953,2.349761964984281,2.376043723031845,2.4019224554497827,2.427389492109322,2.4524359510287495,2.477052506903699,2.501229413518911,2.5249566665794037,2.5482236709905965,2.5710195223671084,2.59333280138868,2.6151515154367058,2.6364632456474038,2.6572549340243903,2.6775129354137635,2.697223044978344,2.716370315723429,2.734939094749234,2.752913029811305,2.770274933504634,2.787006733011272,2.8030894872315644,2.8185032845574947,2.833227183880606,2.8472391619691857,2.8605160613433496,2.8730334875331174,2.884765728987662,2.8956856644626345,2.9057647086079967,2.91497269867361,2.9232777951531306,2.9306463801382474,2.9370429518420007,2.9424300159477452,2.9467679754018485,2.9500150210901843,2.952127022065028,2.95305742299913,2.9527571513063835,2.951174539113847,2.948255266841101,2.9439423368408635,2.938176087616525,2.9308942654798003,2.9220321649472707,2.911522853592616,2.8992975059991073,2.8852858631116547,2.8694168688155184,2.8516196447230877,2.8318242423782047,2.8099631731972234,2.7859735781470887,2.759797642074566,2.7313853621028334,2.7006965051359693,2.6677049305556872,2.6324016603560674,2.5947915991561716,2.554897875958984,2.5127649577112363,2.468465976294616,2.42208766982158,2.373729957602702,2.3235341556506084,2.2716300659193696,2.2181780239381776,2.163328583298731,2.107259227153749,2.0501175404361955,1.9920720743124507,1.933282631107029,1.873887579652802,1.8140195867982811,1.7538040231373921,1.6933617769941698,1.6327986502000646,1.5722067326839984,1.5116687158554454,1.4512584293488437,1.3910451310799408,1.331089637174463,1.2714429754137795,1.2121497828660628,1.1532500148708413,1.0947806347285507],[-2.7815679215657623,-2.7910135841170325,-2.799525341853446,-2.807067025993693,-2.813600351003888,-2.8190847864181867,-2.8234774259177606,-2.8267328574293233,-2.8288030335178838,-2.8296371492726387,-2.829181532782417,-2.8273795545189353,-2.8241715645546566,-2.8194948688757018,-2.8132837601575735,-2.8054696238996892,-2.7959811321131975,-2.784744555751459,-2.7716842184243893,-2.7567231188034445,-2.739783896713868],[-0.2058650618390061,-0.16165920882777085,-0.11776608019153123,-0.07419017763845615,-0.030936468887227786,0.011990354980006668,0.054585432957193536,0.09684311828692005,0.13875806471564722,0.18032479907473054,0.22153719695002794,0.26238900822150946,0.3028740398452854,0.3429854228061737,0.38271601209757034,0.422058746398811,0.4610057263891165,0.49954887269226855,0.5376800873610339,0.5753901200225147,0.6126698641005697,0.6495096998238341,0.685899039079823,0.721827509632246,0.7572834470793568,0.7922549625790483,0.8267294795929416,0.8606934182600243,0.8941330594181736,0.9270329150705625,0.9593775403220066,0.9911496302853404,1.022331664838859,1.0529042292724666,1.0828472727765774,1.1121388062442144,1.1407559631051587,1.1686734564878414,1.1958649638076375,1.222301367837126,1.2479522199189352,1.2727840364324052,1.2967609274076377,1.3198440594032759,1.3419909974771205,1.3631561065512425,1.3832893344760233,1.402336024833919,1.4202366123281172,1.436925587609469,1.4523308274206306,1.4663729269065922,1.4789643369387102,1.4900081445983018,1.4993968769286408,1.5070112812474745,1.512718804750926,1.516372054795962,1.5178072396438793,1.5168427048684974,1.5132777803219275,1.506892288227017,1.4974472484432146,1.4846875375374928,1.4683479280307905,1.4481635781034283,1.4238846980985418,1.3953012465749923,1.3622726996537278,1.3247618418184626,1.2828419819826502,1.2367998679844536,1.1870186579528692,1.1339992306546414,1.0783596498358996,1.020708698260668,0.9615941039547726,0.9015692913424602,0.8411084205347406,0.7805749381567275,0.7202653280313287,0.6604195528201426,0.6012500039848909,0.5429017331698467,0.4854865264455488,0.42911319301214546,0.373885700416535,0.319872248249756,0.2671535835801233,0.2158011363212795],[0.22129665020253642,0.2624390464153472,0.30326935371466224,0.34378265412747844,0.383973834449272,0.42383790122443354,0.4633693436580981,0.5025624701715907,0.5414116675875178,0.5799106505905129,0.6180531220179466,0.6558327463278135,0.6932422419096551,0.7302746734849292,0.7669225583161148,0.8031779229038838,0.8390328977077188,0.8744785837426341,0.9095062163000023,0.9441063704612476,0.9782691427920911,1.011984394826876,1.045241008094302,1.0780279181144294,1.1103326847593227,1.1421430395748793,1.1734453615129121,1.204225835409864,1.234469383165588,1.2641605378784453,1.2932823750614633,1.3218174720846179,1.349746844911862,1.377050949221072,1.4037082486682637,1.429696466239891,1.4549913846554485,1.4795674006891693,1.5033971152366394,1.5264509312904986,1.548697370245402,1.5701022922326073,1.5906291470818,1.6102386610003316,1.6288881622837383,1.646531616935654,1.6631192095340612,1.6785967613352932,1.6929053103927592,1.7059807441336785,1.7177530991880587,1.7281459194151143,1.7370755409733052,1.744450382391066,1.7501701158096958,1.7541247740265007,1.7561938774309676,1.7562455984096568,1.7541360443785186,1.7497087849245467,1.7427948082265754,1.7332131658990981,1.72077266963508,1.7052753905777687,1.6865217880851526,1.6643183080223123,1.6384898519696423,1.6088919703744509,1.5754306495547175,1.5380966175710613,1.496955241427285],[0.6476943089559768,0.6860278688564283,0.7240499813157024,0.7617554858934135,0.7991391607421758,0.8361957847733001,0.8729194197743628,0.9093044515684965,0.945344771099434,0.9810339946500171,1.0163657699198705,1.051332964806777,1.085928719311112,1.1201454895336473,1.1539756016750022,1.1874109767031058,1.2204431344847775,1.2530634226923443,1.2852624397909818,1.317030825304344,1.3483582221318589,1.3792343167643688,1.4096477297508905,1.4395871627572339,1.4690400947548063,1.4979939714492803,1.5264350255744183,1.5543492878704361,1.5817215619383678,1.6085361009254147,1.6347761252436595,1.6604239810963932,1.6854610626757154,1.7098674051648883,1.7336221433321306,1.756702819462582,1.7790857689511546,1.8007458343408818,1.8216559628323896,1.8417875524130949,1.8611099720408282,1.8795902301411571,1.8971932342242335,1.9138813542722906,1.9296140683591787,1.9443478921153527,1.9580360362812366,1.9706280507179024,1.982069461214075,1.9923014465504059,2.00126043033847,2.00887761590886,2.015078522299195,2.0197824983082677,2.022902225555346,2.0243432285334713,2.0240034197022787,2.0217727216344947,2.0175328269927633,2.011157181191475,2.0025113014855798,1.9914535772352329,1.9778367226017224,1.9615101127492736,1.9423237929758317,1.9201330870151114,1.894805538006402,1.8662309219789242,1.8343247359124835,1.7990450309164165,1.7604143835495334,1.7185058558292194,1.6734533276627461,1.625455773909728,1.5747896777775976,1.5217306217590005,1.4666602772203055,1.4098928072477763,1.3517748271735517,1.2926526119254769,1.2328104008348895,1.172509202982364,1.1119822600501585,1.0514323129737493,0.9910316180417778,0.9309241044646202,0.8712289107423361,0.8120445660115143,0.7534546955464783,0.6955442245525152,0.6383724668806221,0.5819901684163575,0.5264540854206476,0.47180631934605843,0.4180885901056901,0.3653437011926415,0.31361933824630794,0.262962739487167],[1.0733102517524982,1.109095144933022,1.1445695909979392,1.1797283176593476,1.214566070237023,1.2490773390970205,1.2832563517811062,1.3170973288694388,1.3505939203031518,1.383739959899997,1.4165285806664842,1.4489530496406173,1.481006091656294,1.5126803172305534,1.5439679052578024,1.5748608031941203,1.6053505382315558,1.6354282878154525,1.6650848542433163,1.6943106753223702,1.723095673264483,1.751429409211446,1.7793008331911082,1.8066985754817857,1.8336104461327984,1.8600239077657363,1.8859255214825428,1.9113014936891002,1.936137120618775,1.9604169808553777,1.984124915439553,2.00724366551602,2.029755299088059,2.051640729861539,2.0728797758924653,2.093451223957193,2.1133324580635966,2.132499525692374,2.1509270706944736,2.168588127807322,2.185454032836793,2.2014943605352775,2.216676682831835,2.230966365255145,2.2443264989180722,2.2567176742899004,2.2680977530368125,2.2784216445347614,2.2876410641898257,2.2957043103400956,2.3025559722896416,2.308136648141299,2.312382656400583,2.315225745668398,2.3165928120004553,2.3164056378533493,2.314580672271668,2.311028879342204,2.3056556910860158,2.298361111749294,2.2890400322496536,2.2775828248175465,2.2638763333543945,2.2478054865995087,2.229255392097687,2.20811411980063,2.1842768426436097,2.157649330290039,2.128153101945543,2.0957319528045106,2.060367310187008,2.0220686987445333,1.9808873301708,1.9369104991876211,1.890284791969834,1.8411929224579993,1.7898347650677966,1.7364752753037775,1.6813500823411704,1.6247412588252415,1.56691136532619,1.5080955346177483,1.4485361291969179,1.3884634823901356,1.3280661135384824,1.267512550620391,1.20695141283894,1.14651176248488,1.0863044159793729,1.0264238904517429,0.966956302730908],[1.531664030792336,1.5648396360640886,1.5977011494252835,1.6302433617210648,1.6624606813835427,1.6943474868798534,1.7258978329000474,1.7571056263953553,1.7879645235217314,1.8184679561885995,1.8486090554497334,1.8783807387908853,1.9077756432811244,1.9367861259060337,1.9654041897945396,1.9936216002741753,2.0214296753380543,2.048819532161745,2.075781643582192,2.1023063716554393,2.128383392464844,2.1540021755936634,2.179151555442335,2.2038198951144548,2.227995090889456,2.2516643180478164,2.274814341196522,2.297431140907528,2.319500047629324,2.341005722250081,2.3619318686570843,2.382261524190958,2.4019768576163774,2.4210589705773726,2.4394880567261827,2.457243238780099,2.4743024098214645,2.4906422559687496,2.5062381711463093,2.5210641089673036,2.535092447893298,2.548293982792404,2.5606377690140647,2.572090978841798,2.5826187639151907,2.5921841130271526,2.600747722014926,2.6082678168107956,2.6146999859415114,2.6199970086661937,2.62410867976305,2.6269816343682972,2.628559177714231,2.628781126491239,2.6275836709599867,2.624899269948486,2.6206565945398834,2.614780540582961,2.607192335009926,2.59780976599359,2.58654757157324,2.573318028706053,2.558031901223462,2.540599557605269,2.5209323442999763,2.49894467033546,2.474556744504512,2.447698339500926,2.418312399584548,2.3863549387400074,2.351802963884989,2.314654727652023,2.274936226805215,2.232706547634354,2.188052498732877,2.141086506143301,2.09195456533282,2.040827062798634,1.9878816540416642,1.9333276076242125,1.8773634352209472,1.820189420226325,1.762028185872043,1.7030610809997961],[2.304364931554095,2.3338973925190345,2.3631206985640008,2.3920297011943266,2.420619098334355,2.448883396587889,2.4768169849835457,2.5044139623418724,2.5316683517157896,2.55857381437165,2.5851239729967617,2.6113120576697444,2.6371311767595396,2.662574098002387,2.6876333638406837,2.7123013070627318,2.7365698467397674,2.7604307363363842,2.7838753002096484,2.8068945641434775,2.829479265590341,2.8516196447230877,2.8733056744474865,2.89452688267313,2.9152723109512406,2.9355306063973634,2.955289896079208,2.9745377915199462,2.9932614338947134],[2.4173529606885102,2.429445487104032,2.440586682644672,2.450736923818593,2.459853981257697,2.4678928273203864,2.4748054493998213,2.4805406261164835,2.485043710379962,2.4882564116754518,2.490116582384002,2.490558016490527,2.489510272250305,2.4868985344723162,2.4826435371275117,2.4766615729962203,2.468864623835687,2.459160651551416,2.4474541108894323,2.4336468129571527,2.417638972952088],[-1.1735894417502777,-1.1191222570532933,-1.0650501753405246,-1.0113821079355396,-0.9581247126908785,-0.9052860580115021,-0.8528729687071208,-0.8008955340164277,-0.7493608040939796,-0.6982769884879936,-0.6476521326487283,-0.5974952102414659,-0.5478142900463472,-0.4986200821081921,-0.44992233539715354,-0.4017308463109983,-0.3540563073537104,-0.3069092732079608,-0.2603032335630613,-0.21425057195705577,-0.16876441480262327,-0.1238586254714753,-0.07954958697977954,-0.035853780929239853,0.007211730792415327,0.04962853173607895,0.09137436872950833,0.13242793250044427,0.17276606409479855,0.21236075104163854,0.2511843766407442,0.289206502617136,0.3263910510410657,0.36270180590634027,0.3980965796608298,0.4325290790864722,0.4659488981174795,0.498296983310222,0.5295105548676307,0.5595148612677492,0.5882291769352013,0.6155573571571114,0.6413925486260394,0.665608820357066,0.6880606660845188,0.7085776202339615,0.7269557194255234,0.7429535781952881,0.7562805300278512,0.7665833731570859,0.7734304915091181,0.7762920248231615,0.7745180171409265,0.7673212110145333,0.7537807074415936,0.7329064840077169,0.7038179412435936,0.6660857077210234,0.6201231288191185],[-1.004770106969037,-0.9497693884365108,-0.8952502922598704,-0.8412260493937005,-0.7877073081675414,-0.7347076649273938,-0.6822399586921915,-0.6303160874692066,-0.5789479290188471,-0.5281488010442219,-0.4779314573473483,-0.4283092622187832,-0.3792991658760472,-0.33091628805899553,-0.28317659352142366,-0.23609735919146413,-0.18969639245392544,-0.1439970665470245,-0.0990201142699525,-0.05478865735219873,-0.011328006037862881],[0.010509713497426798,-0.03217500852246724,-0.07419017763845615,-0.11551460634009514,-0.15612298585683693,-0.1959897651539606,-0.2350877378133167,-0.27338438627491213,-0.3108463411644813,-0.3474368571824398,-0.38311309643387625,-0.4178309628744725,-0.4515382689089722,-0.4841785290350691,-0.5156874750402505,-0.5459929528135476,-0.5750128744255769,-0.6026537251896409,-0.6288076801452966,-0.6533513519875696,-0.6761388545179456,-0.6970003305599937,-0.715734041637913,-0.7320992892603262,-0.7458068150961146,-0.7565046894855314,-0.7637618883879616,-0.7670482539344761,-0.7657118482389795,-0.7589599263011548,-0.7458601474666744,-0.7254008261212741],[0.6602681630514464,0.6947176538983983,0.7285536236222878,0.7617554858934135,0.794301133839781,0.8261670432459138,0.857327417200803,0.8877553055861669,0.917420614752205,0.9462917168617992,0.9743335195644129,1.0015085814389248,1.0277755975999954,1.0530893345271037,1.0774008232636731,1.1006555739303625,1.1227943970756353,1.143751288408513,1.1634532171936378,1.1818192249949817,1.1987586431684472,1.214170130576096,1.227940110352801,1.2399405754320316,1.2500268702322979,1.2580352148129803,1.2637798912955063,1.2670500672218798,1.2676066313210326,1.2651793300714873,1.2594649002391938,1.2501274018058783,1.2368026739030915,1.2191106373020908,1.1966772259578766,1.1691682995710497,1.1363579003057103,1.0981989323418668]],\"ys\":[[-3.0,-2.9470000225336657,-2.893832565242863,-2.8404970886224126,-2.786993255169941,-2.7333206022653234,-2.679478809833207,-2.625467477306648,-2.5712861837441072,-2.5169346393345755,-2.462412384929048,-2.4077192664319194,-2.35285481271937,-2.297818869271806,-2.242611100042378,-2.187231329424129,-2.131679499503576,-2.075955328607134,-2.0200588832026694,-1.963990030373846,-1.9077487614406312,-1.8513352838428077,-1.7947496584664122,-1.73799219430664,-1.6810632583789449],[-3.0,-2.9480641623695596,-2.8959450043659554,-2.8436417571741996,-2.7911540866183353,-2.7384812963420093,-2.685623067358504,-2.6325786301150362,-2.579347696178019,-2.5259295206300973,-2.472323818942302,-2.418529881021555,-2.3645473649120903,-2.310375729247938,-2.2560146208083687,-2.201463601030032,-2.1467221957707174,-2.0917901597559516,-2.036666991204321,-1.9813526419553669,-1.9258467083301194,-1.8701490406200156,-1.8142595749445392,-1.7581780845452213,-1.7019048761773328,-1.6454400217997716,-1.5887836863827103,-1.5319363713613328,-1.4748984211830294,-1.4176704428751628,-1.360253341973703,-1.302647979173624,-1.2448555213846746,-1.186877562283179,-1.128715707874387,-1.0703718530436395,-1.0118483707674506,-0.9531479569289836,-0.8942736333175949,-0.8352289018089523,-0.7760178756936562,-0.7166452457669168,-0.6571162914471906,-0.5974370444910675,-0.537614380332037,-0.4776561292864905,-0.4175712083529062,-0.35736968095622723,-0.29706295286803464,-0.2366639456955255,-0.1761872882165436,-0.11564953266227906,-0.05506939895528751,0.005531949942259917,0.06613059838090818,0.1266995310349781,0.18720824595331376,0.24762232585309096,0.30790296724029576,0.36800646907052803,0.42788368576263824,0.4874794338723909,0.5467316800752777,0.6055712009342966,0.6639199647088567,0.7216917392707329,0.778790720371549,0.8351122627966068,0.8905425713754274,0.9449565605945045,0.9982222388946385,1.0501956348326287,1.1007288980089092,1.1496683776378314,1.1968534068153414,1.2421245276766575,1.2853293703731357,1.3263258342573883,1.3649700852356528,1.401143206435914,1.4347455427336673,1.4656872914505303,1.493915246007881,1.5193827775282793,1.5420775338385715,1.5620021628563858,1.579174542853357,1.5936365056883286,1.6054410701715547,1.6146496880144285,1.6213331456777071,1.6255696671508604,1.6274408195612438,1.62702993760651,1.6244207283826135,1.619696068940926,1.6129370197798139,1.6042221042910825,1.5936277523015212,1.5812268875301738,1.567088111746207,1.5512759911697147,1.5338517553285707,1.5148744353303414,1.494397071325957,1.4724692484554414,1.4491396637342806,1.4244507989168085,1.3984431393294585,1.3711537729474923,1.3426158383753846,1.312862191778839,1.2819218020764325,1.2498206545278583,1.2165813711467859,1.1822251786138667,1.1467697884996353,1.1102310767309929,1.0726256893951458,1.0339638321044706,0.9942542860539878,0.9535022544667568,0.9117166009104758,0.868898530777293,0.8250462564928775,0.7801583250191557,0.7342318350430332,0.6872561944036564,0.6392235840073566,0.5901220165286092,0.5399322202205306,0.4886430241854729,0.4362287318426943,0.38267888573084496,0.3279669827059668,0.2720876494913602,0.21503904339287594,0.15684996669419649,0.09761375127671368,0.037534339303962216,-0.02294158431844906,-0.08286762805365955,-0.14031163274414338,-0.19169942220698122,-0.2320382368873486,-0.2566644594939693,-0.2652931256011808,-0.2600724553711702,-0.243804812654147,-0.21865027397653858,-0.1860453763906187,-0.1467631096984756,-0.1011933820516493,-0.04918872756784687,0.007177450414376008,0.043133582510876955],[-3.0,-2.949345421168944,-2.8984891836302835,-2.847430570589373,-2.7961689860561,-2.7447038251321256,-2.6930343802650314,-2.6411600614794124,-2.5890801060143525,-2.5367939599014777,-2.4843007997755833,-2.431600114706475,-2.3786911389744843,-2.3255733209270697,-2.272245878158472,-2.218708254344323,-2.164959784154326,-2.110999836479988,-2.0568278678053638,-2.002443157590643,-1.9478454714163833,-1.893034072156441,-1.8380087881580058,-1.7827690133300496,-1.727314491521466,-1.671645050557389,-1.6157603599860015,-1.5596606321245579,-1.5033457210130243,-1.4468158065154988,-1.3900713472571584,-1.3331126551615402,-1.2759405862894577,-1.2185562540298882,-1.16096068993091,-1.1031554082792836,-1.0451423188604354,-0.9869234912469991,-0.928501456975162,-0.8698794538912744,-0.8110610914389205,-0.7520505725257491,-0.6928528410106449,-0.6334737695906751,-0.5739201004654997,-0.5141995854639503,-0.4543211991338225,-0.3942953252992689,-0.3341339421072389,-0.27385083096128016,-0.2134618105538535,-0.15298504442140315,-0.09244139932320383,-0.03185483371446107,0.02874715795649907,0.08933303881316101,0.14986665511448605,0.2103065891700533,0.2706054373178941,0.3307090085997135,0.39055535879449943,0.4500739112941834,0.5091845140410216,0.567796483690084,0.6258076268129589,0.6831023930760822,0.7395531103804531,0.7950189196603961,0.8493437897726936,0.9023589056798418,0.953877487344569,1.0037132591249502,1.0516675734389596,1.0975448212495005,1.141153429130643,1.1822944348426718,1.2208024833090354,1.256531658697714,1.2893452664013196,1.319158158018375,1.3458920703851023,1.3695246487228125,1.3900441625330213,1.4074749879995023,1.4218666805385665,1.4332831842476867,1.4418034997755278,1.44752109334246,1.4505359607675024,1.4509518706495292,1.448874009603247,1.4444069387710101,1.4376529259296946,1.4287106710953879,1.4176747552618636,1.4046366615906214],[-3.0,-2.950898817513079,-2.901574548191788,-2.852026619145819,-2.8022541129821574,-2.752256671025266,-2.702033272635699,-2.651583342311117,-2.600906002754175,-2.5500004768848195,-2.4988660575263375,-2.447501822248759,-2.395907076870857,-2.3440807891582516,-2.2920223455171036,-2.2397306085480464,-2.18720499476471,-2.134444441850752,-2.0814483606573466,-2.0282156245194622,-1.9747456380807686,-1.9210374065515063,-1.867090270486089,-1.8129033757243571,-1.7584759643080992,-1.7038075740022691,-1.6488974119074908,-1.5937452532183212,-1.5383503390345508,-1.482712517409136,-1.426831522888547,-1.370707163797817,-1.3143398309776493,-1.257729560119508,-1.2008768946935007,-1.1437827436996664,-1.086447962033648,-1.0288740281225297,-0.9710629028153437,-0.9130169913470634,-0.8547390917769335,-0.7962329296997059,-0.7375026608220403,-0.6785532880462237,-0.6193908478409043,-0.5600226989443073,-0.5004573340839733,-0.4407047783238087,-0.38077685581062903,-0.32068747420263,-0.2604529594125684,-0.20009245813184862,-0.13962833790554852,-0.07908676154715488,-0.018498315446540126,0.04210126653666446,0.10267026460851847,0.16316000837980926,0.22351377782117332,0.28366556201041604,0.343538573068622,0.4030437857001421,0.4620784101573574,0.520524355545426,0.5782466246550726,0.6350902904046873,0.6908815719697348,0.7454267928412635,0.798513228505406,0.8499151129468059,0.8993848386936287,0.9466645410633703,0.9915050710194695,1.0336631376811942,1.072912357851199,1.109044137489958,1.1419056070084777,1.1713571663392877,1.1973347002535144,1.2197905236388848,1.2387425130805827,1.254233916534341,1.2663351945408863,1.2751486481721628,1.2807913776834807,1.2833903786448495,1.28307826346773,1.2799893507968063,1.2742563655725618,1.2660078693954393,1.2553664326748866,1.2424474806672077,1.227360888217575,1.2102091170986045,1.1910844162494145,1.1700717416333504,1.1472523621918764,1.1226958591231018],[-3.0,-2.9527943296224044,-2.905339891942306,-2.8576364468636046,-2.809683119758261,-2.7614792226595166,-2.713024177075143,-2.6643169328926954,-2.6153570355138984,-2.5661434823154643,-2.5166754419723083,-2.4669521220710307,-2.416972346215716,-2.366735525012539,-2.3162403485874514,-2.2654861568919396,-2.214471651235433,-2.1631959464912276,-2.111657876553722,-2.0598563675680586,-2.007790348207104,-1.9554587399320331,-1.9028604554583959,-1.8499943119874354,-1.7968592600045648,-1.7434542199658984,-1.6897780476852227,-1.6358298057359628,-1.5816083430106285,-1.5271131497155883,-1.4723429435853361,-1.4172974547547603,-1.3619756607019573,-1.30637725061215,-1.2505020201184298,-1.1943495448445864,-1.1379204227783812,-1.0812147981333913,-1.0242333658907323,-0.966977608234814,-0.9094489721242702,-0.8516498404366173,-0.7935836128773359,-0.7352539388069412,-0.6766654363416094,-0.6178241153498281,-0.5587373001567593,-0.49941371170163507,-0.43986398229047685,-0.38010099951368126,-0.3201403732874293,-0.26000077779360486,-0.1997045496858636,-0.1392784455589604,-0.0787544702504781,-0.018170865367162836,0.04242671417092003,0.10298380686672015,0.16343550838846044,0.22370457446170233,0.28369926333510476,0.3433109515266328,0.4024112046760253,0.46084900389343586,0.518448903505464,0.5750085718491968,0.6302925718795542,0.6840400365906874,0.7359632972236234,0.7857567388813513,0.8330834443445649,0.877618331325174,0.9190462675791968,0.9570906762428129,0.9914867984106213,1.0220692052896272,1.0487025454228975,1.0713459498224225],[-3.0,-2.955119537324605,-2.909958940198314,-2.864517894382182,-2.8187960791924596,-2.772792758227328,-2.7265075225151048,-2.6799398381493527,-2.633088783284998,-2.5859539509591203,-2.538534485139538,-2.4908293515838427,-2.442838148308602,-2.3945596067844397,-2.3459928968373003,-2.297137059712965,-2.247990697722148,-2.1985532582807803,-2.1488231250760137,-2.0987993746766813,-2.048480615780852,-1.9978655446631042,-1.9469529502668959,-1.8957412854893905,-1.8442294843745244,-1.7924156646180187,-1.7402989153150035,-1.6878772058310314,-1.6351496272572357,-1.5821141715926608,-1.5287700803822981,-1.4751154259206645,-1.421149242787426,-1.3668699268285962,-1.3122764984669133,-1.257367926373274,-1.2021430186671416,-1.146601461007472,-1.0907422690239006,-1.0345657923189913,-0.97807236653418,-0.9212623285929844,-0.8641374890571143,-0.8066994867007926,-0.7489508219094572,-0.6908956644687421,-0.6325388154067308,-0.5738864802656747,-0.514946841427216,-0.45573048176415343,-0.39625027676241453,-0.33652218580426574,-0.27656600479329363,-0.21640619146363438,-0.15607288246720152,-0.09560304250973894,-0.03504199818675824,0.02555468526518645,0.08611897069787666,0.14656765965828633,0.20679920322793066,0.2666898424505324,0.32608924673250694,0.3848161498173859,0.4426540051509238,0.49934640730750557,0.5545923146613654,0.6080531287392232,0.6593409746798944,0.7080315125302454,0.7536954457707696,0.7959187014369817,0.834326441445175,0.8685608798694857,0.8984107815847016,0.9237119711127875,0.9444401730774459,0.9606248705295344,0.972386774982791,0.9799010523624188,0.9833727255621314,0.9830241330534513,0.979083112573885,0.9717733158981106,0.9613072882775064,0.9478822742949427,0.9316789106852879,0.9128667648455799,0.8915923846404135,0.8679849382154381,0.8421648816218599,0.8142348123333618,0.7842876127926415,0.7523982996760243,0.7186319907691052,0.6830419541409078,0.6456700073921993,0.6065504312668857,0.565710509260279,0.5231595864387675],[-3.0,-2.957981237106158,-2.9156421651648503,-2.872982733560792,-2.8300032937302086,-2.786703757628134,-2.743083830582527,-2.699143420263319,-2.654882468471665,-2.6103004207343456,-2.56539684968018,-2.5201716055022025,-2.474623862318089,-2.428752967398186,-2.3825585486865792,-2.3360394947131597,-2.289195071016357,-2.242024503771413,-2.194526388136342,-2.146700067901022,-2.0985442147527658,-2.0500574116733232,-2.001238761890619,-1.9520863702283215,-1.9025992214797616,-1.8527755360233322,-1.8026137110556906,-1.7521122462778527,-1.701268945818766,-1.6500827238457834,-1.5985509761605932,-1.5466726663049029,-1.4944450589006792,-1.4418670404583953,-1.3889358175886306,-1.3356502553601115,-1.282007852192692,-1.2280076906428847,-1.173647365946218,-1.1189258003161755,-1.0638414224394204,-1.0083931925466354,-0.9525808015845842,-0.8964033536414999,-0.8398617149804832,-0.7829566500936829,-0.7256896073543788,-0.6680642078908781,-0.6100851180386999,-0.5517581934735238,-0.4930919739578612,-0.4340975275215171,-0.37478893962955206,-0.315184524230407,-0.25530785127594546,-0.1951891029430679,-0.13486643144605903,-0.07438815130782483,-0.013815402007207211,0.04677457891813663,0.10728436469467928,0.16759129884514623,0.2275414395711759,0.28694228851014136,0.3455541353018168,0.403083282603379,0.4591761167089241,0.5134089315819934,0.5652955093512073,0.6142978642957715,0.6598706429162515,0.7014200957598149,0.7384648186285085,0.7706328632111954,0.7976343437974478,0.8193908578145566,0.8359195222445774,0.8473652326550574,0.8539644190935087,0.8559944511069273,0.8537525344327959,0.8475369613310861,0.8376331443622185,0.8243050190568972],[-3.0,-2.9635544852730917,-2.926701297008564,-2.889442429915305,-2.851779899508322,-2.8137152168252544,-2.7752498330651036,-2.736384906948732,-2.697122264880746,-2.6574629013068862,-2.6174077236928945,-2.57695742685344,-2.5361132536167483,-2.4948757686544627,-2.4532453232556213,-2.4112220494189898,-2.368806919823527,-2.325999779101553,-2.282800375840294,-2.239208893878915,-2.195225170098266,-2.1508484889881228,-2.1060784146282967,-2.0609146232086184,-2.0153559049404572,-1.9694014171555,-1.923050425765664,-1.8763011875705145,-1.829152682436314,-1.7816035009290971,-1.7336513423508995,-1.6852953873403258,-1.6365330620881704,-1.5873624234972536,-1.5377815607208687,-1.4877874014074888,-1.43737853617664,-1.3865513539767773,-1.3353039948637035,-1.283633088044225,-1.2315364285140378,-1.1790105700961842,-1.1260531321134342,-1.0726607443749963,-1.0188313004194833,-0.9645612248236484,-0.9098491533681696,-0.854692329866376,-0.7990903803423723,-0.7430421253664594,-0.6865473880861557,-0.6296083736563958,-0.5722274175216793,-0.5144096123036905,-0.4561637005208876,-0.3975011721625883,-0.3384383136689726,-0.2789980718654119,-0.2192116733873415,-0.15912079870841556,-0.0987814712183468,-0.0382686070621987,0.022317948406881616,0.08284542699192654,0.14313770785245028,0.20296212735578045,0.2620137688234183,0.3198974028202253,0.3761074405425888,0.43002809695529454,0.4809283868706262,0.5279555311479993,0.5702687084244227,0.6071328462083301,0.6379648257950179],[-3.0,-2.9683138613001585,-2.936134167724881,-2.9034650777996447,-2.8703104515283853,-2.836674791883416,-2.802561506116193,-2.767974104467959,-2.7329158008819445,-2.697389596617248,-2.661398529138407,-2.6249456561730136,-2.5880333885922333,-2.5506640246014496,-2.512839609963357,-2.47456247008913,-2.435834563746943,-2.3966574526745945,-2.3570324841092782,-2.3169609453295044],[1.1797283176593476,1.2298869388978888,1.2785775733926252,1.3256732181410937,1.3710391767673595,1.4145512473908184,1.4560910367842066,1.495544740937695,1.5328066698207277,1.56779009032038,1.600412146338388,1.6306167996261296,1.6583548597545201,1.6836024797901645,1.7063411436289737,1.7265785590045937,1.7443291767879279,1.7596197642075273,1.7724916180989796,1.7829932883311814,1.79117937785173,1.797109294459525,1.8008477497304565,1.8024617908678708,1.802019545433331,1.7995893180994278,1.7952388040149243,1.7890344306200863,1.7810411760502074,1.771322369789405,1.7599384882346785,1.746947205929013,1.73240329642727,1.7163591392915203],[1.806687565308251,1.8390414038472827,1.8692873449571685,1.897386467013927,1.9233206425865967,1.947070613870844,1.9686378174360408,1.988028235529864,2.0052560880711026,2.0203470856556027,2.0333322602896846,2.044246261981633,2.053130215436709,2.060029484640582,2.064991966921867,2.0680674480284376,2.0693069751345323,2.0687622668097276,2.0664851746777497,2.0625272069548055,2.056939119663906,2.049770577365594,2.041069881919362,2.030883765191306,2.0192577969301198,2.0062360321878945,1.9918600629359702,1.9761694893528317,1.959202326721548,1.9409959174995315,1.921584374129349],[-3.0,-2.9807198287529406,-2.960675690753712,-2.939880569426834,-2.918347414012377,-2.896088791637472,-2.873116371143778,-2.8494418972182807,-2.825076273123321,-2.8000299394030126,-2.774313289827286,-2.74793591485251,-2.7209077999005857,-2.693237660085127,-2.6649341572168814,-2.6360054035001212,-2.6064593673534393,-2.576303555181748,-2.5455449601356714,-2.514190253197109,-2.482246608683446,-2.449719953812425,-2.41661599670667,-2.3829401657385634,-2.348697643509726,-2.313892836929441,-2.278531223716624,-2.2426167401293076,-2.206153219101748,-2.169144225766857,-2.1315926301210393,-2.093502421091721,-2.0548760249106657,-2.0157157145005975,-1.9760233702695986,-1.9358011879997674,-1.8950508897255112,-1.8537734302927804,-1.811969327565674,-1.7696399892128516,-1.7267856145524088,-1.6834057262701374,-1.6395000184955288,-1.595068564986005,-1.5501097576504426,-1.5046220657969054,-1.4586048654342076,-1.4120553398648745,-1.3649712680662833,-1.3173506736382514,-1.2691893697483452,-1.2204850650641998,-1.1712337491065574,-1.121431152918038,-1.0710737975775435,-1.0201555204166148,-0.9686734293643502,-0.9166204029964469,-0.8639937545392278,-0.8107860537904883,-0.7569944648988565,-0.7026122842765719,-0.6476375123659497,-0.5920658437111017,-0.5358959667072947,-0.479129509293192,-0.4217692558675532,-0.3638250543579531,-0.30531429891218353,-0.24626341194114554,-0.1867131091584353,-0.12672547381685373,-0.0663924424013258,-0.005849223997972164,0.05470543924079019,0.11498076620306197,0.17455432155867578,0.23281777547811533,0.28892086162307695,0.34174542759100524,0.3899010488195893,0.43191870143007227,0.4664930269583474,0.4926875367238899,0.5103370937164908,0.5197461819040363,0.5215486518783159,0.5165379851477336,0.5054884928475802,0.48909814013933417,0.4679397136048076,0.4424760000835928,0.4130960996510371,0.38006969630708776,0.3435966017943253,0.30384112654109297,0.2608660355833883,0.21464880082965498,0.16512663085278856,0.11217358989990212,0.05566866288453909,-0.0037570810711695657,-0.05933737262038541,-0.08478971091941734,-0.07353924081604113],[2.224660397074185,2.2436402773474686,2.2607052305876394,2.275875303233147,2.2891727718386496,2.300625554665343,2.310265673746911,2.3181276087965905,2.3242478972690197,2.328664724169145,2.3314175139188844,2.332546535268114,2.3320925285081913,2.330096362277314,2.3265987251943008,2.321639855557714,2.315259310509277,2.3074957744611764,2.29838690527125,2.28796921563561,2.2762779864486413,2.263347503600169,2.2492113059185153,2.2339009377618053,2.21744649950066,2.19987709681162,2.181221248091849,2.16150515040919,2.140754243575845],[2.64263322884012,2.649986146248753,2.6558215817185875,2.6601692126855916,2.663059442756283,2.664523180716076,2.6645916311435567,2.6632960996425954,2.660667814940659,2.656737769355874,2.651536578438222,2.6450943599651273,2.6374406319337718,2.628604422014229,2.618614208431361,2.607497447015043,2.595280721055615,2.5819897233925637,2.5676493687383584,2.5522843576649787,2.5359178239561535,2.518571899167263,2.5002682238102176,2.4810279153264716,2.460870478184976,2.439814844004359,2.4178798233525987,2.3950827907727508,2.371440581132944,2.3469693110824004],[-3.0,-2.9964296860003294,-2.9917225772223053,-2.9859026169432883,-2.9789933628774357,-2.971017926390249,-2.961998921995768,-2.951958426510935,-2.9409179471336566,-2.9288986344046726,-2.9159212112530253,-2.9020054671052984,-2.8871705332427657,-2.8714349608405954,-2.8548173066919555,-2.8373349311402065,-2.819004453805674,-2.7998423323839488,-2.7798644830297277,-2.759085755024604],[-2.5662951549571225,-2.574952411925237,-2.582027168234065,-2.5875494727667974,-2.591550846687792,-2.5940635342539435,-2.595120251203236,-2.5947539592542093,-2.5929976579700855,-2.5898841962837245,-2.5854461051156203,-2.579715451723358,-2.5727237416593463,-2.564502120109287,-2.5550808410016574,-2.5444892531911263,-2.5327557953258144,-2.519907959082812,-2.5059724741070903,-2.490975671886842,-2.474942280072934,-2.4578959611815363,-2.4398598278625134,-2.420856410895585,-2.40090652397592,-2.380030309480696,-2.3582478266084532,-2.335577291773566,-2.312036491983469,-2.2876425378110605,-2.2624109893165167,-2.2363576047168534,-2.2094968114391835,-2.181843039999333,-2.153409234701652,-2.1242076344288066,-2.0942500239644724,-2.0635474588223337,-2.032110295848061,-1.9999479359031076,-1.9670701051315411,-1.9334856733033816,-1.8992021448225935,-1.8642269752465133,-1.8285666841118875,-1.7922269886860724,-1.7552148890498955,-1.7175349147794858,-1.6791914266205004,-1.6401880194519325,-1.6005282549094848,-1.5602156212276082,-1.5192519146818162,-1.4776383379433986],[2.948899902400772,2.9481825298430637,2.9462473465168193,2.9431197701051603,2.9388249922694314,2.9333879907561355,2.9268334073993394,2.9191853923370896,2.910467585199455,2.90070306747132,2.8899143250100927,2.8781232255859504,2.865351351219993,2.8516196447230877,2.836948092715681,2.8213559954355842,2.804862281178046,2.787485504590542,2.7692430154272953,2.7501515304987088,2.730227849081336,2.7094877014743872,2.687946079009791,2.665618026188385,2.6425172667838037,2.6186570937021987,2.5940506523092086,2.568709895263911,2.542647017026531],[-2.123364418995903,-2.1447082315848665,-2.1640543364681304,-2.181413199154184,-2.19680608750662,-2.210258861073429,-2.221800452569215,-2.231463601656176,-2.2392855494679322,-2.245305781085267,-2.2495655008865647,-2.252107176881034,-2.2529741022211427,-2.2522099844195016,-2.249858570349097,-2.245963312598707,-2.2405670803559765,-2.233711915828062,-2.2254388353703853,-2.21578767302333,-2.204797167819104,-2.192505304421098,-2.1789480837946935,-2.164159932253071,-2.1481737998807886,-2.1310220989920468,-2.112735325616712,-2.0933419737489802,-2.0728699432430067,-2.051346065696454,-2.028794659052848,-2.0052397095656955,-1.9807036416788246,-1.955207012709989,-1.9287705023511599,-1.901413240249345],[-1.6392899658055873,-1.6769655392029008,-1.7125828766827547,-1.7460815047021954,-1.7773974616022168,-1.8064938454564166,-1.8333339918025529,-1.857905151928032,-1.8801946818085251,-1.9002094755528065,-1.9179659536426474,-1.933483923403399,-1.9467967555814683,-1.957943902316462,-1.9669695742149067,-1.9739218476117555,-1.9788520484863577,-1.981814691396148,-1.98286561691624,-1.98206125588322,-1.9794580283023535,-1.975111817865603,-1.969077536125824,-1.9614091439403718,-1.9521591755380194,-1.9413781094970766,-1.929114373994748,-1.9154142441781161,-1.9003220598103863,-1.8838812587627736],[2.986935903913495,2.9610894974541724,2.934626570799753,2.907555516014555,2.8798840521138676,2.8516196447230877,2.822769460880542,2.7933407459842554,2.7633402653542865,2.732774151763162,2.70164850181828,2.669969062600738,2.637741313474109,2.6049702552366965,2.571661278461155,2.537819192425661,2.503448197567609,2.4685525541080846,2.433136013624183,2.3972020450653817,2.36075486415508,2.3237973108422754,2.286332273874441,2.248362278839396,2.209889726576238,2.1709173981593475,2.131446947609602,2.0914799277233502,2.0510174871666536,2.0100617671374144,1.9686133573592661,1.9266726689996565,1.884240270676762,1.841316855457407,1.7979019735855282,1.7539947828160392,1.709595962322818,1.6647041008179135,1.619317461018488,1.57343584665478,1.5270570461597197,1.4801785729694492,1.4327995101662676,1.3849163887850375,1.336526587726751,1.287627560074461,1.2382147268209236,1.188286330315357,1.1378370981359378,1.0868637657308353,1.035361417534653,0.983326275556395,0.9307536570497632,0.8776391035468505,0.8239779909229936,0.7697667612720265,0.7150006832632787,0.6596779867853533,0.6037950665428813,0.5473527105775666,0.49035365348582705,0.4328023278133837,0.3747099940480596,0.316092591352815,0.25697491183445775,0.1973947024063203,0.13740792482275355,0.07709481383483441,0.016570822901116777,-0.04399853091524797,-0.10437694110586815,-0.16422894972309354,-0.22308316297550723,-0.28028483102261426,-0.33496720030979077,-0.3860251877210734,-0.4321833243359259,-0.47218404131556646,-0.5048740196073802,-0.5297102731416432,-0.5465054676339731,-0.5556129325825978,-0.5576160268313588,-0.5532002881323685,-0.5430482754643862,-0.5277749277015862,-0.5079054644263552,-0.4838939167162777,-0.4560896155487981,-0.4247715369081724,-0.3901529406638047],[-1.1325164747013627,-1.183633243108261,-1.2333576941085902,-1.2815585160593057,-1.3281086729362608,-1.3728702885372726,-1.4157178625700177,-1.456534246832341,-1.4952067114559378,-1.531629300597816,-1.5657220368734663,-1.5974045673234052,-1.626627665819799,-1.6533462518682234,-1.6775450007047903,-1.6992095320115792,-1.7183522968637206,-1.7349977518206963,-1.7491759532655948,-1.7609329506223108,-1.770322293503734,-1.7774030790997846,-1.7822387824127932,-1.78489605891551,-1.7854435782301226,-1.7839509374847764,-1.7804876905764908,-1.775122516376596,-1.7679225364131805,-1.7589527818010797,-1.7482758007610197,-1.735951392166103,-1.7220365764308794,-1.7065869822314943,-1.6896542326047619,-1.6712864532135199,-1.651529649498529,-1.630428174048681,-1.6080218579486587,-1.5843489136316462,-1.55944516904293,-1.5333424590020737,-1.5060723490877665,-1.4776629525350136,-1.4481420446556659,-1.4175329927430034,-1.3858579467820202,-1.3531368665378174,-1.3193883699136577,-1.2846275013995634,-1.2488710373599554,-1.2121318517776265,-1.1744205942613601,-1.1357463196139912,-1.0961150580105836,-1.0555367694664568,-1.0140142508996302,-0.9715488658298788,-0.9281411078123516,-0.8837924408196667,-0.8384979261264691,-0.792251616714648,-0.7450505369413101,-0.6968824743742887,-0.6477382640154556,-0.5976057946641884,-0.546467678290016,-0.4943129582906507,-0.44112095850539346,-0.3868810812564085,-0.3315761609374852,-0.27520188093801057,-0.2177695779607287,-0.15931253777441468,-0.09992083798895779,-0.03978604349199477,0.020708584987618295,0.08080268760826526,0.1390296408201639,0.19272009865528394,0.23793359245354218,0.2701699799153068],[2.9941461044253073,2.9591623382216268,2.9237448791268,2.8878965812276682,2.8516196447230877,2.814916321153354,2.7777885991905507,2.74023854295056,2.702268284707454,2.6638793364850875,2.6250731651210417,2.585850905884846,2.5462145320521783,2.5061649178549317,2.465702907759871,2.4248290346064607,2.3835447650790327,2.3418503725157525,2.2997460471499327,2.2572320503205825,2.2143089142609487,2.170976327095109,2.127233744099067,2.0830816319559826,2.038519173909415,1.993545318001102,1.9481599148403337,1.9023618177828094,1.856149392053835,1.8095221723022332,1.7624783290713566,1.715015986805935,1.6671341667080934,1.6188302059480266,1.5701023644330947,1.5209483925819187],[2.964180822711702,2.9122104542303813,2.8600549760169596,2.807713757792551,2.7551863394999048,2.702472080568075,2.6495705407601315,2.59648108797139,2.543203245929158,2.4897364354776688,2.436080227244762,2.3822341259917668,2.328197568909175,2.2739701803457404,2.219551362116457,2.1649409070561223,2.1101382050728654,2.0551430553660612,1.9999550161838773,1.9445738654319893,1.8889995283241543,1.8332316587131032,1.7772703636487641,1.7211154977637513,1.6647670925716023,1.6082254609577804,1.5514907595278684,1.4945634692290497,1.4374441967242833,1.3801335034786755,1.3226323322893538,1.2649418208043066,1.207063160775797,1.1489978960353344,1.0907479744481297,1.0323155472638463,0.9737031568090746,0.9149137802438956,0.8559508338624067,0.7968181455779022,0.7375201265771247,0.6780618525878763,0.6184492034110995,0.5586887791109838,0.4987880931188964,0.4387556969450448,0.3786013098098282,0.318335965416793,0.2579721802619277,0.19752414356350867,0.13700791419204972,0.07644167839795024,0.015846024251287005,-0.0447557505990841,-0.10533729332108477,-0.16586880953160454,-0.2263166339592848,-0.2866427559554552,-0.3468042698755651,-0.40675281332840774,-0.4664339828037538,-0.525786703787003,-0.5847426097436115,-0.643225338271741,-0.7011494252873582,-0.758420776185893,-0.8149353392061078,-0.8705775914432068,-0.925224038833464,-0.9787414008143984,-1.03098786297056,-1.0818112529536839,-1.1310511228977158,-1.1785490574726005,-1.224146766973566,-1.267687445557096,-1.309014186167059,-1.347989079792868,-1.3844929347394868,-1.4184067698917113,-1.4496515809463135,-1.4781576827589862,-1.503887842546974,-1.526816157947452,-1.5469508720357603,-1.5643094763753198,-1.5789287814782735,-1.5908632444595232,-1.6001768218338128,-1.6069413249166888,-1.6112344607349973,-1.6131389657635482,-1.612739821723646,-1.6101222822408927,-1.605370673027,-1.5985678993535815,-1.5897945480752593,-1.5791277377669517,-1.5666408273435524,-1.5524033533337314,-1.5364812619566397],[-0.552026800601717,-0.4921630094043907,-0.4321594583398016,-0.3720264323285236,-0.3117756747337892,-0.25142058062904304,-0.1909764213823455,-0.13046058040896824,-0.06989284656712602,-0.009295744541935935,0.05130509812061268,0.11188053680906895,0.1723974447401142,0.2328181942413985,0.2931000710324798,0.3531946117603795,0.41304694512055606,0.47259505850209393,0.5317690538195161,0.5904904115950358,0.6486708205937135],[2.9769891431286917,2.9355303656269323,2.8937404563283184,2.8516196447230877,2.8091683753124856,2.766386574376856,2.723274059829846,2.679831165365381,2.636057631836736,2.591953008914584,2.547517201123801,2.5027499069483987,2.4576503852980576,2.412218243332174,2.3664529878346627,2.320353575664935,2.2739194561667597,2.2271497900983377,2.180043199720833,2.132599133579631,2.084816239569002,2.0366931225764633,1.9882289168904306,1.9394216747856499,1.8902703219667298,1.8407731719482054,1.790928479441808,1.7407348404510152,1.6901898369561152,1.639292383964623,1.5880398909493296,1.5364310935405214,1.4844633256770212,1.432135100064368,1.3794438644055598,1.326388048289532,1.2729649834412076,1.2191734909930432,1.1650110306000379,1.1104767995179836,1.0555684566923675,1.0002851915210433,0.9446259745693677,0.8885901394501636,0.8321783392856235,0.7753907620105376,0.7182292777202415,0.6606969825344393,0.6027976810621785,0.5445374097719462,0.48592486751130837,0.42697151484126117,0.3676918957395938,0.30810512322892913,0.2482361683232428,0.1881167342496215,0.12778743187413832,0.06730015885675877,0.006721077522442442,-0.053865601792566054,-0.11435285166924869,-0.1746049100253737,-0.2344501418990288,-0.2936728345115953,-0.3520030124935172,-0.40910743983962705,-0.46458614761449457,-0.5179646143637533,-0.5687010931571432,-0.61620580933221,-0.6598982641463449,-0.6991703889165612,-0.7335628639264256,-0.7627441842263512,-0.7865198045723205,-0.804875342788796,-0.8179374046005354,-0.8259148271702945,-0.8290893732648734,-0.8277776049537655,-0.822298480906483,-0.812958677556598,-0.800048645597859,-0.7838285673596497,-0.7645270166533327,-0.7423495048977196,-0.7174808074110106,-0.6900697984507107,-0.660249384869771,-0.6281258754563099],[2.985982170033891,2.941481455817941,2.8966940308412994,2.8516196447230877,2.8062580145810507,2.7606084516246705,2.714670568297662,2.6684438917497406,2.621927534221556,2.5751210689754576,2.5280237322197916,2.4806344156932196,2.4329527895094136,2.384977661244288,2.336708071571292,2.2881432166199858,2.239281620789728,2.190122636950142,2.140664835163806,2.0909070512384584,2.0408481078108123,1.9904864064300858,1.939820987639587,1.8888499235596852,1.8375724537043086,1.7859865138574573,1.7340910759558295,1.6818842022669385,1.6293647266789941,1.5765306758923456,1.5233810281098954,1.4699138900837712,1.416128305331485,1.362022210070756,1.30759503942123,1.2528450666591464,1.1977716074728306,1.1423736344269253,1.0866503416731295,1.0306017769322615,0.9742277242812927,0.91752918732365,0.8605072958907383,0.8031634674643846,0.7455006466208149,0.6875224639798705,0.629233519765275,0.5706401994850845,0.5117509295277856,0.4525759666798099,0.3931283062812323,0.33342430380771404,0.27348453147228335,0.2133343835896584,0.15300511332504296,0.0925353473675865,0.03197273801354994,-0.028624005144672893,-0.08918262955951572,-0.14961432806675834,-0.20981014939314768,-0.26963683194952814,-0.32893206281524634,-0.3874984005140898,-0.44509950562859,-0.501456465746525,-0.5562418053301617,-0.6090854357299187,-0.6595745466155347,-0.7072485594191518,-0.7516605646658752],[2.993204913484875,2.946262779152476,2.899067838779569,2.8516196447230877,2.8039175616195164,2.7559606620802146,2.707748644012134,2.6592804678880784,2.610555404026149,2.5615727376252186,2.5123313246896686,2.462830698665644,2.413069581488566,2.363047205642637,2.3127625044499895,2.2622144817940635,2.2114021850098116,2.160324317551818,2.108980103106105,2.057368002679942,2.005487335627456,1.9533365465681882,1.9009149983674654,1.8482209745084717,1.795253870408236,1.7420120389655764,1.6884948383038019,1.6347006960682524,1.580628946839509,1.5262784526917157,1.4716484345176664,1.4167380400428495,1.3615463494151,1.3060731238207914,1.250317617477669,1.1942799630149405,1.1379600713411193,1.0813580354107408,1.0244749168406262,0.9673115260530292,0.9098693189115243,0.8521510245993458,0.7941594115507633,0.7358980218775759,0.6773717595749482,0.61858642875286,0.5595490955121982,0.5002684925848802,0.440755442328729,0.38102299097319214,0.3210867964098445,0.26096576936329363,0.20068268404728062,0.14026491023305,0.07974529131421093,0.019163196782403524,-0.04143421922063517,-0.10199052009124365,-0.16243821870812125,-0.2226967172418286,-0.2826699536477357,-0.3422437923622894,-0.4012832608423915,-0.45962966436543073,-0.5170963290513053,-0.5734679583422193,-0.6284983127001391,-0.6819077652950449,-0.7333975173684011,-0.7826421723664625,-0.8292884806340997,-0.8730007247292049,-0.9134635934051252,-0.9503936233029888,-0.9835447195010127,-1.0127636464603686,-1.0379232587541274,-1.0590080161973,-1.0760452119405486,-1.089113558131753,-1.0983428236173007,-1.103887222568182,-1.1059172597580011,-1.1046118990138332,-1.1001515453698731,-1.0927123988035778,-1.0824623917318905,-1.0695586415620901,-1.054146590362012,-1.0363640385707142,-1.0163331375621942,-0.9941633981533093,-0.9699577338602685,-0.94380430207781,-0.9157816939854295,-0.8859599460451588,-0.8544030626366252,-0.8211660177158326],[2.999036415435624,2.9501234502461564,2.9009846851287886,2.8516196447230877,2.802027552440964,2.752207694226641,2.702159422534325,2.6518817651421314,2.601374242826928,2.5506357276680545,2.49966576155977,2.4484632622523144,2.3970275465340727,2.345357637611344,2.293452747026765,2.241311923987678,2.188934339356708,2.136319140744784,2.0834654613763526,2.030372360987446,1.9770390591251834,1.9234646099394554,1.8696483211423027,1.8155891436714588,1.761286589162518,1.7067397376702536,1.651948293119851,1.5969113739661438,1.541628590654894,1.4860995564833308,1.430323811631915,1.3743015631461626,1.3180325485580804,1.261517041056952,1.2047555780599213,1.1477485940968464,1.0904972211554682,1.0330029204585367,0.9752674118084874,0.9172930072612031,0.8590825916943032,0.8006394387552271,0.7419676059744713,0.6830722433641854,0.6239593234111998,0.5646359065198374,0.5051104132108244,0.4453928557187057,0.3854951329247691,0.32543113501902177,0.2652172023582948,0.20487253875816425,0.14441968264765226,0.08388505908300159,0.023299625783980815,-0.03730037259326524,-0.09787252742699248,-0.15836725290746045,-0.2187266266176704,-0.27888308105137716,-0.3387579558248972,-0.39825994056002445,-0.4572833199032815,-0.5157057757347472,-0.5733870105003493,-0.6301675257206787,-0.6858665405016606,-0.7402843375632107,-0.793202556166225,-0.8443849048671899,-0.8935692614480826,-0.9404984680564339,-0.984913345646659,-1.0265709174322644,-1.0652328693587225,-1.1006978885407834,-1.1328145904704932,-1.1614516191493582,-1.1865515141357308,-1.2080821772573336,-1.2260635486319094,-1.2405558104446894,-1.2516411978262079,-1.2594254127064544,-1.2640339489511552,-1.2656006286499244,-1.2642631268900408,-1.2601592138765239,-1.2534236981486637,-1.2441861397788756,-1.2325705138942384],[2.9532620575601216,2.9025428106211733,2.8516196447230877,2.800491756340552,2.7491586368249132,2.697619507139869,2.645873769510345,2.593920710824925,2.541759653085874,2.489389892632926,2.436810813700726,2.3840217189110833,2.3310219213956422,2.277810720508822,2.2243875127362562,2.170751548723742,2.1169022971241596,2.062838939360187,2.0085612042686485,1.954068274881866,1.8993599036645499,1.8444353846586203,1.7892943955322815,1.733936608060234,1.6783616079235175,1.6225694135147695,1.5665596870410958,1.510332530852346,1.4538880965284706,1.397226524786067,1.3403486026307228,1.2832548906500385,1.2259461097632203,1.1684235852916967,1.1106886362393666,1.0527428636188612,0.9945884746790408,0.9362280096263786,0.8776643670707918,0.8189010530125049,0.7599424161296127,0.7007933395991266,0.6414594659974489,0.5819473822874497,0.5222647734728816,0.4624205843806144,0.40242506101841746,0.34229003400091607,0.2820291518141844,0.2216581409685463,0.1611951052486078,0.10066086984716005,0.04007937674059514,-0.020521861903992633,-0.08111124534506642,-0.141652494292412,-0.20210398384407524,-0.26241799614688777,-0.3225398936358084,-0.3824072201397777,-0.44194874669480866,-0.5010834746055024,-0.5597192286854789,-0.617751989226091,-0.6750654061026276,-0.7315294771491945,-0.7869994255704666,-0.8413143895664743,-0.8942986534360977,-0.9457697238124791,-0.995532662903758,-1.0433889654861102,-1.089136100918927,-1.1325709308304577,-1.173503585733491,-1.211763455440891,-1.2471963371713872,-1.2796753238134826,-1.309110615240987,-1.3354335461941171,-1.3586170296286766,-1.3786621802583294,-1.3955891978348522,-1.409453376605548],[2.954570354919672,2.901646881878732,2.8485520554625516,2.795285459740165,2.741846660950018,2.6882352654321924,2.6344507657652274,2.5804928571794665,2.5263610082918655,2.4720550073601046,2.417574301515095,2.3629186925718146,2.308087765977656,2.253081325233113,2.1978991301795228,2.142540829631554,2.0870063916445245,2.031295517889525,1.9754082144705958,1.9193444643743884,1.8631041563191753,1.806687565308251,1.7500947403903444,1.6933259011054593,1.6363815122291268,1.5792619858335275,1.5219679672648523,1.464500272052386,1.4068596779419034],[0.6494454410232913,0.590060147871649,0.5304891736807842,0.47074149169829305,0.4108275984467151,0.3507597569599419,0.29055214683203756,0.2302212401570234,0.16978615801819386,0.1092690757824859,0.04869569219122738,-0.01190422873916841,-0.07249623370289715,-0.13304046505056766,-0.19349084725527455,-0.25379417067239496,-0.31388907412477884,-0.37370493715520947,-0.4331606424355887,-0.4921630094043907,-0.550606015137519],[2.251229548901435,2.224660397074185,2.1972945602883556,2.169145963521383,2.1402266859670034,2.11054883991676,2.0801231271725893,2.048961451660926,2.017073250680963,1.984467895982367,1.9511538884697393,1.9171395519320562,1.8824317780970707,1.8470384624952114,1.810966008191274,1.774219926548784,1.7368054258376686,1.6987265588309768,1.659988674053734,1.6205951227385968,1.5805486188729594,1.5398511419080894,1.4985055060927728,1.456513102069044,1.4138741182191854,1.3705880976628695,1.326656411199136,1.2820771720528912,1.2368477383703658,1.1909679506304034,1.1444339418498979,1.0972412494496977,1.0493880450441875,1.0008677092396558,0.9516755669920665,0.9018058326034768,0.851250468400377,0.8000048410475591,0.7480587010369648,0.6954075506499482,0.642040307614741,0.5879529974543822,0.5331362792275867,0.477586700508875,0.4213014553986607,0.3642809275913259,0.30653868795915207,0.2480952785556969,0.1889886155716618,0.12928532557577954,0.06909472344302303,0.008592757728838496,-0.0519376004392238,-0.11204474388617136,-0.171016945805039,-0.22775412265505324,-0.28067085216209353,-0.32771666966966695,-0.3667131381403026],[1.8308290130736102,1.805389122024553,1.7789304425086696,1.751475566909411,1.7230444404939922,1.6936571941203518,1.6633322885032715,1.6320862836827734,1.5999342654583035,1.5668907406001127,1.5329683460051218,1.498178501635631,1.4625335490712956,1.426042903132891,1.3887147335423151,1.3505562204757968,1.3115727803649841,1.2717722545602177,1.2311578358045523,1.1897319501496346,1.1474958633303238],[-1.4148025611943473,-1.3717826066930763,-1.3281086729362608,-1.2837790802951303,-1.2387939521785172,-1.193150838151581,-1.1468457483673071,-1.0998771688403315,-1.052240406815894,-1.0039299360657388,-0.9549424870304875,-0.905269773365573,-0.8549069215313545,-0.8038460772039637,-0.7520800597480419,-0.6996008212615754,-0.646400535738962,-0.5924713017284082,-0.5378067608245742,-0.4823992809672486,-0.4262481509199758,-0.36935429791130625,-0.3117272307720569,-0.25338748785070475,-0.1943704671044859,-0.13473913487184985,-0.07459925105866239,-0.014122650945840753,0.046413719712204315,0.10656557731375482,0.16562742567388655,0.22250411480195842],[1.5395562398804383,1.4896950253127175,1.4394153748849439,1.3887147335423151,1.3375905108415163,1.2860396961484968,1.2340599950974838,1.1816476967656229,1.1288006915757878,1.0755153275217975,1.0217893936546947,0.967619553510318,0.9130036029381214,0.8579400043025371,0.8024265326490592,0.7464631727820601,0.6900489552821036,0.6331854612056849,0.5758756753843177,0.5181239947518597,0.45993862685452447,0.40133121626827917,0.3423174679115033,0.2829195146233303,0.22316798541787541,0.1631043982962619,0.10278423836853312,0.042281937337246056,-0.018302991369999244,-0.07883784653088766,-0.13914615365176353,-0.19899426904682382,-0.2580752010939995,-0.3159879992013246,-0.3722235204010085,-0.42615784150020053,-0.47702963058831616,-0.5239835871987402]]}},\"id\":\"69d877e6-107b-4159-b126-d07d020b8749\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x0\":{\"field\":\"x0\"},\"x1\":{\"field\":\"x1\"},\"y0\":{\"field\":\"y0\"},\"y1\":{\"field\":\"y1\"}},\"id\":\"1b911a7f-9be6-4d84-84b1-8e97c5d6789e\",\"type\":\"Segment\"},{\"attributes\":{\"dimension\":\"height\",\"location\":0,\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e8f229b8-d1a9-477a-932b-f42f05691cbb\",\"type\":\"Span\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"94e1cc0d-9534-4d19-9367-2c1730036b47\",\"type\":\"ResetTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x0\",\"y0\",\"x1\",\"y1\",\"line_color\"],\"data\":{\"line_color\":[\"#0C2C84\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#225EA8\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#C7E9B4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#7FCDBB\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#41B6C4\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#1D91C0\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\",\"#225EA8\"],\"x0\":[-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.878787878787879,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.757575757575758,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.6363636363636362,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.515151515151515,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.393939393939394,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.2727272727272725,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.1515151515151514,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-2.0303030303030303,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.9090909090909092,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.7878787878787878,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.6666666666666665,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.5454545454545454,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.4242424242424243,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.303030303030303,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.1818181818181817,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-1.0606060606060606,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.9393939393939394,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.8181818181818183,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.6969696969696968,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.5757575757575757,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.4545454545454546,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.33333333333333304,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.21212121212121193,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,-0.09090909090909083,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.030303030303030276,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.15151515151515138,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.27272727272727293,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.39393939393939403,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.5151515151515151,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.6363636363636367,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.7575757575757578,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,0.8787878787878789,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.121212121212121,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.2424242424242422,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.3636363636363633,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.4848484848484853,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.6060606060606064,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.7272727272727275,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.8484848484848486,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,1.9696969696969697,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.090909090909091,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.212121212121212,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.333333333333334,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.454545454545455,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.575757575757576,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.6969696969696972,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.8181818181818183,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394,2.9393939393939394],\"x1\":[-2.925,-2.928030303030303,-2.931060606060606,-2.934090909090909,-2.937121212121212,-2.940151515151515,-2.9431818181818183,-2.9462121212121213,-2.949242424242424,-2.952272727272727,-2.95530303030303,-2.9583333333333335,-2.9613636363636364,-2.9643939393939394,-2.9674242424242423,-2.9704545454545457,-2.9734848484848486,-2.9765151515151516,-2.9795454545454545,-2.9825757575757574,-2.985606060606061,-2.9886363636363638,-2.9916666666666667,-2.9946969696969696,-2.9977272727272726,-2.999242424242424,-2.996212121212121,-2.993181818181818,-2.9901515151515152,-2.9871212121212123,-2.984090909090909,-2.981060606060606,-2.978030303030303,-2.975,-2.971969696969697,-2.9689393939393938,-2.965909090909091,-2.962878787878788,-2.959848484848485,-2.956818181818182,-2.9537878787878786,-2.9507575757575757,-2.9477272727272728,-2.94469696969697,-2.9416666666666664,-2.9386363636363635,-2.9356060606060606,-2.9325757575757576,-2.9295454545454547,-2.9265151515151517,-2.8037878787878787,-2.806818181818182,-2.809848484848485,-2.812878787878788,-2.815909090909091,-2.818939393939394,-2.8219696969696972,-2.825,-2.828030303030303,-2.831060606060606,-2.834090909090909,-2.8371212121212124,-2.8401515151515153,-2.8431818181818183,-2.846212121212121,-2.8492424242424246,-2.8522727272727275,-2.8553030303030305,-2.8583333333333334,-2.8613636363636363,-2.8643939393939397,-2.8674242424242427,-2.8704545454545456,-2.8734848484848485,-2.8765151515151515,-2.878030303030303,-2.875,-2.871969696969697,-2.868939393939394,-2.865909090909091,-2.862878787878788,-2.859848484848485,-2.856818181818182,-2.853787878787879,-2.850757575757576,-2.8477272727272727,-2.8446969696969697,-2.841666666666667,-2.838636363636364,-2.835606060606061,-2.8325757575757575,-2.8295454545454546,-2.8265151515151516,-2.8234848484848487,-2.8204545454545453,-2.8174242424242424,-2.8143939393939394,-2.8113636363636365,-2.8083333333333336,-2.8053030303030306,-2.6825757575757576,-2.685606060606061,-2.688636363636364,-2.691666666666667,-2.69469696969697,-2.6977272727272728,-2.700757575757576,-2.703787878787879,-2.706818181818182,-2.709848484848485,-2.712878787878788,-2.7159090909090913,-2.718939393939394,-2.721969696969697,-2.725,-2.728030303030303,-2.7310606060606064,-2.7340909090909093,-2.7371212121212123,-2.7401515151515152,-2.7431818181818186,-2.7462121212121215,-2.7492424242424245,-2.7522727272727274,-2.7553030303030304,-2.756818181818182,-2.753787878787879,-2.750757575757576,-2.747727272727273,-2.74469696969697,-2.7416666666666667,-2.7386363636363638,-2.735606060606061,-2.732575757575758,-2.729545454545455,-2.7265151515151516,-2.7234848484848486,-2.7204545454545457,-2.7174242424242427,-2.71439393939394,-2.7113636363636364,-2.7083333333333335,-2.7053030303030305,-2.7022727272727276,-2.699242424242424,-2.6962121212121213,-2.6931818181818183,-2.6901515151515154,-2.6871212121212125,-2.6840909090909095,-2.561363636363636,-2.5643939393939394,-2.5674242424242424,-2.5704545454545453,-2.5734848484848483,-2.576515151515151,-2.5795454545454546,-2.5825757575757575,-2.5856060606060605,-2.5886363636363634,-2.5916666666666663,-2.5946969696969697,-2.5977272727272727,-2.6007575757575756,-2.6037878787878785,-2.6068181818181815,-2.609848484848485,-2.612878787878788,-2.6159090909090907,-2.6189393939393937,-2.621969696969697,-2.625,-2.628030303030303,-2.631060606060606,-2.634090909090909,-2.6356060606060603,-2.6325757575757573,-2.6295454545454544,-2.6265151515151515,-2.6234848484848485,-2.620454545454545,-2.617424242424242,-2.6143939393939393,-2.6113636363636363,-2.6083333333333334,-2.60530303030303,-2.602272727272727,-2.599242424242424,-2.596212121212121,-2.5931818181818183,-2.590151515151515,-2.587121212121212,-2.584090909090909,-2.581060606060606,-2.578030303030303,-2.5749999999999997,-2.571969696969697,-2.568939393939394,-2.565909090909091,-2.5628787878787875,-2.440151515151515,-2.4431818181818183,-2.4462121212121213,-2.449242424242424,-2.452272727272727,-2.45530303030303,-2.4583333333333335,-2.4613636363636364,-2.4643939393939394,-2.4674242424242423,-2.4704545454545452,-2.4734848484848486,-2.4765151515151516,-2.4795454545454545,-2.4825757575757574,-2.4856060606060604,-2.4886363636363638,-2.4916666666666667,-2.4946969696969696,-2.4977272727272726,-2.500757575757576,-2.503787878787879,-2.506818181818182,-2.5098484848484848,-2.5128787878787877,-2.514393939393939,-2.5113636363636362,-2.5083333333333333,-2.5053030303030304,-2.5022727272727274,-2.499242424242424,-2.496212121212121,-2.493181818181818,-2.4901515151515152,-2.4871212121212123,-2.484090909090909,-2.481060606060606,-2.478030303030303,-2.475,-2.471969696969697,-2.4689393939393938,-2.465909090909091,-2.462878787878788,-2.459848484848485,-2.456818181818182,-2.4537878787878786,-2.4507575757575757,-2.4477272727272728,-2.44469696969697,-2.4416666666666664,-2.318939393939394,-2.3219696969696972,-2.325,-2.328030303030303,-2.331060606060606,-2.334090909090909,-2.3371212121212124,-2.3401515151515153,-2.3431818181818183,-2.346212121212121,-2.349242424242424,-2.3522727272727275,-2.3553030303030305,-2.3583333333333334,-2.3613636363636363,-2.3643939393939393,-2.3674242424242427,-2.3704545454545456,-2.3734848484848485,-2.3765151515151515,-2.379545454545455,-2.382575757575758,-2.3856060606060607,-2.3886363636363637,-2.3916666666666666,-2.393181818181818,-2.390151515151515,-2.387121212121212,-2.3840909090909093,-2.3810606060606063,-2.378030303030303,-2.375,-2.371969696969697,-2.368939393939394,-2.365909090909091,-2.362878787878788,-2.359848484848485,-2.356818181818182,-2.353787878787879,-2.350757575757576,-2.3477272727272727,-2.3446969696969697,-2.341666666666667,-2.338636363636364,-2.3356060606060605,-2.3325757575757575,-2.3295454545454546,-2.3265151515151516,-2.3234848484848487,-2.3204545454545453,-2.1977272727272723,-2.2007575757575757,-2.2037878787878786,-2.2068181818181816,-2.2098484848484845,-2.2128787878787874,-2.215909090909091,-2.2189393939393938,-2.2219696969696967,-2.2249999999999996,-2.2280303030303026,-2.231060606060606,-2.234090909090909,-2.237121212121212,-2.240151515151515,-2.243181818181818,-2.246212121212121,-2.249242424242424,-2.252272727272727,-2.25530303030303,-2.2583333333333333,-2.2613636363636362,-2.264393939393939,-2.267424242424242,-2.270454545454545,-2.2719696969696965,-2.2689393939393936,-2.2659090909090907,-2.2628787878787877,-2.2598484848484848,-2.2568181818181814,-2.2537878787878785,-2.2507575757575755,-2.2477272727272726,-2.2446969696969696,-2.2416666666666663,-2.2386363636363633,-2.2356060606060604,-2.2325757575757574,-2.2295454545454545,-2.226515151515151,-2.223484848484848,-2.2204545454545452,-2.2174242424242423,-2.214393939393939,-2.211363636363636,-2.208333333333333,-2.20530303030303,-2.202272727272727,-2.199242424242424,-2.076515151515151,-2.0795454545454546,-2.0825757575757575,-2.0856060606060605,-2.0886363636363634,-2.0916666666666663,-2.0946969696969697,-2.0977272727272727,-2.1007575757575756,-2.1037878787878785,-2.1068181818181815,-2.109848484848485,-2.112878787878788,-2.1159090909090907,-2.1189393939393937,-2.1219696969696966,-2.125,-2.128030303030303,-2.131060606060606,-2.134090909090909,-2.137121212121212,-2.140151515151515,-2.143181818181818,-2.146212121212121,-2.149242424242424,-2.1507575757575754,-2.1477272727272725,-2.1446969696969695,-2.1416666666666666,-2.1386363636363637,-2.1356060606060603,-2.1325757575757573,-2.1295454545454544,-2.1265151515151515,-2.1234848484848485,-2.120454545454545,-2.117424242424242,-2.1143939393939393,-2.1113636363636363,-2.1083333333333334,-2.10530303030303,-2.102272727272727,-2.099242424242424,-2.096212121212121,-2.0931818181818183,-2.090151515151515,-2.087121212121212,-2.084090909090909,-2.081060606060606,-2.078030303030303,-1.9553030303030303,-1.9583333333333333,-1.9613636363636364,-1.9643939393939394,-1.9674242424242423,-1.9704545454545455,-1.9734848484848484,-1.9765151515151516,-1.9795454545454545,-1.9825757575757574,-1.9856060606060606,-1.9886363636363635,-1.9916666666666667,-1.9946969696969696,-1.9977272727272728,-2.000757575757576,-2.003787878787879,-2.006818181818182,-2.0098484848484848,-2.0128787878787877,-2.015909090909091,-2.018939393939394,-2.021969696969697,-2.025,-2.028030303030303,-2.0295454545454543,-2.0265151515151514,-2.0234848484848484,-2.0204545454545455,-2.0174242424242426,-2.014393939393939,-2.0113636363636362,-2.0083333333333333,-2.0053030303030304,-2.0022727272727274,-1.9992424242424243,-1.996212121212121,-1.9931818181818182,-1.9901515151515152,-1.987121212121212,-1.9840909090909091,-1.981060606060606,-1.978030303030303,-1.975,-1.971969696969697,-1.968939393939394,-1.9659090909090908,-1.962878787878788,-1.9598484848484847,-1.9568181818181818,-1.8340909090909092,-1.8371212121212122,-1.8401515151515153,-1.8431818181818183,-1.8462121212121212,-1.8492424242424244,-1.8522727272727273,-1.8553030303030305,-1.8583333333333334,-1.8613636363636363,-1.8643939393939395,-1.8674242424242424,-1.8704545454545456,-1.8734848484848485,-1.8765151515151517,-1.8795454545454546,-1.8825757575757576,-1.8856060606060607,-1.8886363636363637,-1.8916666666666668,-1.8946969696969698,-1.8977272727272727,-1.9007575757575759,-1.9037878787878788,-1.906818181818182,-1.9083333333333334,-1.9053030303030303,-1.9022727272727273,-1.8992424242424244,-1.8962121212121212,-1.8931818181818183,-1.8901515151515151,-1.8871212121212122,-1.8840909090909093,-1.881060606060606,-1.8780303030303032,-1.875,-1.871969696969697,-1.8689393939393941,-1.865909090909091,-1.862878787878788,-1.8598484848484849,-1.856818181818182,-1.853787878787879,-1.8507575757575758,-1.8477272727272729,-1.8446969696969697,-1.8416666666666668,-1.8386363636363636,-1.8356060606060607,-1.712878787878788,-1.7159090909090908,-1.718939393939394,-1.721969696969697,-1.7249999999999999,-1.728030303030303,-1.731060606060606,-1.7340909090909091,-1.737121212121212,-1.740151515151515,-1.7431818181818182,-1.746212121212121,-1.7492424242424243,-1.7522727272727272,-1.7553030303030304,-1.7583333333333333,-1.7613636363636362,-1.7643939393939394,-1.7674242424242423,-1.7704545454545455,-1.7734848484848484,-1.7765151515151514,-1.7795454545454545,-1.7825757575757575,-1.7856060606060606,-1.787121212121212,-1.7840909090909092,-1.781060606060606,-1.778030303030303,-1.775,-1.771969696969697,-1.7689393939393938,-1.7659090909090909,-1.762878787878788,-1.7598484848484848,-1.7568181818181818,-1.7537878787878787,-1.7507575757575757,-1.7477272727272726,-1.7446969696969696,-1.7416666666666667,-1.7386363636363635,-1.7356060606060606,-1.7325757575757574,-1.7295454545454545,-1.7265151515151516,-1.7234848484848484,-1.7204545454545455,-1.7174242424242423,-1.7143939393939394,-1.5916666666666666,-1.5946969696969695,-1.5977272727272727,-1.6007575757575756,-1.6037878787878785,-1.6068181818181817,-1.6098484848484846,-1.6128787878787878,-1.6159090909090907,-1.618939393939394,-1.6219696969696968,-1.6249999999999998,-1.628030303030303,-1.6310606060606059,-1.634090909090909,-1.637121212121212,-1.640151515151515,-1.643181818181818,-1.646212121212121,-1.6492424242424242,-1.6522727272727271,-1.65530303030303,-1.6583333333333332,-1.6613636363636362,-1.6643939393939393,-1.6659090909090908,-1.6628787878787878,-1.6598484848484847,-1.6568181818181817,-1.6537878787878786,-1.6507575757575756,-1.6477272727272725,-1.6446969696969695,-1.6416666666666666,-1.6386363636363634,-1.6356060606060605,-1.6325757575757573,-1.6295454545454544,-1.6265151515151515,-1.6234848484848483,-1.6204545454545454,-1.6174242424242422,-1.6143939393939393,-1.6113636363636363,-1.6083333333333332,-1.6053030303030302,-1.602272727272727,-1.5992424242424241,-1.596212121212121,-1.593181818181818,-1.4704545454545455,-1.4734848484848484,-1.4765151515151516,-1.4795454545454545,-1.4825757575757574,-1.4856060606060606,-1.4886363636363635,-1.4916666666666667,-1.4946969696969696,-1.4977272727272726,-1.5007575757575757,-1.5037878787878787,-1.5068181818181818,-1.5098484848484848,-1.512878787878788,-1.5159090909090909,-1.5189393939393938,-1.521969696969697,-1.525,-1.528030303030303,-1.531060606060606,-1.534090909090909,-1.537121212121212,-1.540151515151515,-1.5431818181818182,-1.5446969696969697,-1.5416666666666665,-1.5386363636363636,-1.5356060606060606,-1.5325757575757575,-1.5295454545454545,-1.5265151515151514,-1.5234848484848484,-1.5204545454545455,-1.5174242424242423,-1.5143939393939394,-1.5113636363636362,-1.5083333333333333,-1.5053030303030301,-1.5022727272727272,-1.4992424242424243,-1.496212121212121,-1.4931818181818182,-1.4901515151515152,-1.487121212121212,-1.4840909090909091,-1.481060606060606,-1.478030303030303,-1.4749999999999999,-1.471969696969697,-1.3492424242424244,-1.3522727272727273,-1.3553030303030305,-1.3583333333333334,-1.3613636363636363,-1.3643939393939395,-1.3674242424242424,-1.3704545454545456,-1.3734848484848485,-1.3765151515151515,-1.3795454545454546,-1.3825757575757576,-1.3856060606060607,-1.3886363636363637,-1.3916666666666668,-1.3946969696969698,-1.3977272727272727,-1.4007575757575759,-1.4037878787878788,-1.406818181818182,-1.409848484848485,-1.4128787878787878,-1.415909090909091,-1.418939393939394,-1.421969696969697,-1.4234848484848486,-1.4204545454545454,-1.4174242424242425,-1.4143939393939395,-1.4113636363636364,-1.4083333333333334,-1.4053030303030303,-1.4022727272727273,-1.3992424242424244,-1.3962121212121212,-1.3931818181818183,-1.3901515151515151,-1.3871212121212122,-1.3840909090909093,-1.381060606060606,-1.3780303030303032,-1.375,-1.371969696969697,-1.3689393939393941,-1.365909090909091,-1.362878787878788,-1.3598484848484849,-1.356818181818182,-1.3537878787878788,-1.3507575757575758,-1.228030303030303,-1.231060606060606,-1.2340909090909091,-1.237121212121212,-1.240151515151515,-1.2431818181818182,-1.246212121212121,-1.2492424242424243,-1.2522727272727272,-1.2553030303030304,-1.2583333333333333,-1.2613636363636362,-1.2643939393939394,-1.2674242424242423,-1.2704545454545455,-1.2734848484848484,-1.2765151515151514,-1.2795454545454545,-1.2825757575757575,-1.2856060606060606,-1.2886363636363636,-1.2916666666666665,-1.2946969696969697,-1.2977272727272726,-1.3007575757575758,-1.3022727272727272,-1.2992424242424243,-1.2962121212121211,-1.2931818181818182,-1.290151515151515,-1.287121212121212,-1.284090909090909,-1.281060606060606,-1.278030303030303,-1.275,-1.271969696969697,-1.2689393939393938,-1.2659090909090909,-1.2628787878787877,-1.2598484848484848,-1.2568181818181818,-1.2537878787878787,-1.2507575757575757,-1.2477272727272728,-1.2446969696969696,-1.2416666666666667,-1.2386363636363635,-1.2356060606060606,-1.2325757575757574,-1.2295454545454545,-1.1068181818181817,-1.1098484848484846,-1.1128787878787878,-1.1159090909090907,-1.1189393939393937,-1.1219696969696968,-1.1249999999999998,-1.128030303030303,-1.1310606060606059,-1.1340909090909088,-1.137121212121212,-1.140151515151515,-1.143181818181818,-1.146212121212121,-1.1492424242424242,-1.1522727272727271,-1.15530303030303,-1.1583333333333332,-1.1613636363636362,-1.1643939393939393,-1.1674242424242423,-1.1704545454545452,-1.1734848484848484,-1.1765151515151513,-1.1795454545454545,-1.181060606060606,-1.1780303030303028,-1.1749999999999998,-1.1719696969696969,-1.1689393939393937,-1.1659090909090908,-1.1628787878787876,-1.1598484848484847,-1.1568181818181817,-1.1537878787878786,-1.1507575757575756,-1.1477272727272725,-1.1446969696969695,-1.1416666666666666,-1.1386363636363634,-1.1356060606060605,-1.1325757575757573,-1.1295454545454544,-1.1265151515151515,-1.1234848484848483,-1.1204545454545454,-1.1174242424242422,-1.1143939393939393,-1.111363636363636,-1.1083333333333332,-0.9856060606060606,-0.9886363636363635,-0.9916666666666666,-0.9946969696969696,-0.9977272727272727,-1.0007575757575757,-1.0037878787878787,-1.0068181818181818,-1.0098484848484848,-1.012878787878788,-1.0159090909090909,-1.0189393939393938,-1.021969696969697,-1.025,-1.028030303030303,-1.031060606060606,-1.034090909090909,-1.037121212121212,-1.040151515151515,-1.0431818181818182,-1.0462121212121211,-1.049242424242424,-1.0522727272727272,-1.0553030303030302,-1.0583333333333333,-1.0598484848484848,-1.0568181818181817,-1.0537878787878787,-1.0507575757575758,-1.0477272727272726,-1.0446969696969697,-1.0416666666666665,-1.0386363636363636,-1.0356060606060606,-1.0325757575757575,-1.0295454545454545,-1.0265151515151514,-1.0234848484848484,-1.0204545454545455,-1.0174242424242423,-1.0143939393939394,-1.0113636363636362,-1.0083333333333333,-1.0053030303030301,-1.0022727272727272,-0.9992424242424242,-0.9962121212121211,-0.9931818181818182,-0.9901515151515151,-0.9871212121212121,-0.8643939393939395,-0.8674242424242424,-0.8704545454545455,-0.8734848484848485,-0.8765151515151516,-0.8795454545454546,-0.8825757575757576,-0.8856060606060606,-0.8886363636363637,-0.8916666666666667,-0.8946969696969698,-0.8977272727272728,-0.9007575757575759,-0.9037878787878788,-0.9068181818181819,-0.9098484848484849,-0.912878787878788,-0.915909090909091,-0.918939393939394,-0.921969696969697,-0.925,-0.9280303030303031,-0.9310606060606061,-0.9340909090909092,-0.9371212121212121,-0.9386363636363637,-0.9356060606060607,-0.9325757575757576,-0.9295454545454546,-0.9265151515151515,-0.9234848484848486,-0.9204545454545455,-0.9174242424242425,-0.9143939393939394,-0.9113636363636364,-0.9083333333333334,-0.9053030303030304,-0.9022727272727273,-0.8992424242424243,-0.8962121212121212,-0.8931818181818182,-0.8901515151515152,-0.8871212121212122,-0.8840909090909091,-0.8810606060606061,-0.878030303030303,-0.875,-0.8719696969696971,-0.868939393939394,-0.865909090909091,-0.7431818181818184,-0.7462121212121213,-0.7492424242424244,-0.7522727272727274,-0.7553030303030305,-0.7583333333333335,-0.7613636363636366,-0.7643939393939395,-0.7674242424242426,-0.7704545454545456,-0.7734848484848487,-0.7765151515151517,-0.7795454545454547,-0.7825757575757577,-0.7856060606060608,-0.7886363636363638,-0.7916666666666669,-0.7946969696969699,-0.7977272727272728,-0.8007575757575759,-0.8037878787878789,-0.806818181818182,-0.809848484848485,-0.8128787878787881,-0.815909090909091,-0.8174242424242426,-0.8143939393939396,-0.8113636363636365,-0.8083333333333335,-0.8053030303030304,-0.8022727272727275,-0.7992424242424244,-0.7962121212121214,-0.7931818181818183,-0.7901515151515153,-0.7871212121212123,-0.7840909090909093,-0.7810606060606062,-0.7780303030303032,-0.7750000000000001,-0.7719696969696971,-0.7689393939393941,-0.7659090909090911,-0.762878787878788,-0.759848484848485,-0.756818181818182,-0.7537878787878789,-0.750757575757576,-0.7477272727272729,-0.7446969696969699,-0.6219696969696968,-0.6249999999999998,-0.6280303030303028,-0.6310606060606059,-0.6340909090909089,-0.637121212121212,-0.640151515151515,-0.643181818181818,-0.646212121212121,-0.6492424242424241,-0.6522727272727271,-0.6553030303030302,-0.6583333333333332,-0.6613636363636362,-0.6643939393939392,-0.6674242424242423,-0.6704545454545453,-0.6734848484848484,-0.6765151515151513,-0.6795454545454543,-0.6825757575757574,-0.6856060606060604,-0.6886363636363635,-0.6916666666666665,-0.6946969696969695,-0.6962121212121211,-0.693181818181818,-0.690151515151515,-0.6871212121212119,-0.6840909090909089,-0.6810606060606059,-0.6780303030303029,-0.6749999999999998,-0.6719696969696968,-0.6689393939393937,-0.6659090909090908,-0.6628787878787877,-0.6598484848484847,-0.6568181818181816,-0.6537878787878786,-0.6507575757575755,-0.6477272727272726,-0.6446969696969695,-0.6416666666666665,-0.6386363636363634,-0.6356060606060604,-0.6325757575757573,-0.6295454545454544,-0.6265151515151514,-0.6234848484848483,-0.5007575757575757,-0.5037878787878787,-0.5068181818181817,-0.5098484848484848,-0.5128787878787878,-0.5159090909090909,-0.5189393939393939,-0.5219696969696969,-0.5249999999999999,-0.528030303030303,-0.531060606060606,-0.5340909090909091,-0.5371212121212121,-0.540151515151515,-0.5431818181818181,-0.5462121212121211,-0.5492424242424242,-0.5522727272727272,-0.5553030303030302,-0.5583333333333332,-0.5613636363636363,-0.5643939393939393,-0.5674242424242424,-0.5704545454545454,-0.5734848484848484,-0.575,-0.5719696969696969,-0.5689393939393939,-0.5659090909090908,-0.5628787878787878,-0.5598484848484848,-0.5568181818181818,-0.5537878787878787,-0.5507575757575757,-0.5477272727272726,-0.5446969696969697,-0.5416666666666666,-0.5386363636363636,-0.5356060606060605,-0.5325757575757575,-0.5295454545454544,-0.5265151515151515,-0.5234848484848484,-0.5204545454545454,-0.5174242424242423,-0.5143939393939393,-0.5113636363636362,-0.5083333333333333,-0.5053030303030303,-0.5022727272727272,-0.3795454545454546,-0.3825757575757576,-0.3856060606060606,-0.38863636363636367,-0.3916666666666667,-0.39469696969696977,-0.39772727272727276,-0.4007575757575758,-0.4037878787878788,-0.40681818181818186,-0.4098484848484849,-0.4128787878787879,-0.41590909090909095,-0.418939393939394,-0.421969696969697,-0.42500000000000004,-0.4280303030303031,-0.4310606060606061,-0.43409090909090914,-0.43712121212121213,-0.4401515151515152,-0.44318181818181823,-0.4462121212121213,-0.4492424242424243,-0.4522727272727273,-0.45378787878787885,-0.4507575757575758,-0.44772727272727275,-0.44469696969696976,-0.4416666666666667,-0.43863636363636366,-0.43560606060606066,-0.4325757575757576,-0.42954545454545456,-0.42651515151515157,-0.4234848484848485,-0.4204545454545455,-0.4174242424242425,-0.4143939393939394,-0.4113636363636364,-0.4083333333333334,-0.40530303030303033,-0.40227272727272734,-0.3992424242424243,-0.39621212121212124,-0.3931818181818182,-0.3901515151515152,-0.38712121212121214,-0.38409090909090915,-0.3810606060606061,-0.258333333333333,-0.2613636363636361,-0.26439393939393907,-0.2674242424242421,-0.27045454545454517,-0.27348484848484816,-0.2765151515151512,-0.27954545454545426,-0.28257575757575726,-0.2856060606060603,-0.28863636363636336,-0.2916666666666664,-0.2946969696969694,-0.29772727272727245,-0.30075757575757545,-0.3037878787878785,-0.30681818181818155,-0.30984848484848454,-0.3128787878787876,-0.31590909090909064,-0.31893939393939363,-0.3219696969696967,-0.32499999999999973,-0.32803030303030273,-0.3310606060606058,-0.3325757575757573,-0.32954545454545425,-0.3265151515151512,-0.3234848484848482,-0.32045454545454516,-0.3174242424242421,-0.3143939393939391,-0.31136363636363606,-0.308333333333333,-0.30530303030303,-0.30227272727272697,-0.299242424242424,-0.2962121212121209,-0.2931818181818179,-0.2901515151515148,-0.28712121212121183,-0.2840909090909088,-0.2810606060606058,-0.27803030303030274,-0.2749999999999997,-0.27196969696969664,-0.26893939393939365,-0.2659090909090906,-0.2628787878787876,-0.25984848484848455,-0.13712121212121195,-0.14015151515151497,-0.14318181818181797,-0.14621212121212102,-0.14924242424242407,-0.1522727272727271,-0.1553030303030301,-0.15833333333333316,-0.16136363636363615,-0.1643939393939392,-0.16742424242424223,-0.17045454545454528,-0.1734848484848483,-0.17651515151515132,-0.17954545454545434,-0.1825757575757574,-0.1856060606060604,-0.18863636363636344,-0.19166666666666649,-0.1946969696969695,-0.19772727272727253,-0.20075757575757558,-0.2037878787878786,-0.20681818181818162,-0.20984848484848467,-0.21136363636363617,-0.20833333333333315,-0.2053030303030301,-0.20227272727272708,-0.19924242424242405,-0.196212121212121,-0.19318181818181798,-0.19015151515151496,-0.18712121212121194,-0.18409090909090892,-0.18106060606060587,-0.17803030303030284,-0.1749999999999998,-0.17196969696969677,-0.16893939393939375,-0.16590909090909073,-0.16287878787878768,-0.15984848484848468,-0.15681818181818163,-0.15378787878787858,-0.15075757575757553,-0.14772727272727254,-0.1446969696969695,-0.1416666666666665,-0.13863636363636345,-0.01590909090909083,-0.018939393939393853,-0.02196969696969689,-0.024999999999999925,-0.02803030303030296,-0.031060606060605983,-0.03409090909090902,-0.03712121212121204,-0.04015151515151508,-0.0431818181818181,-0.046212121212121135,-0.049242424242424164,-0.05227272727272719,-0.05530303030303022,-0.05833333333333326,-0.06136363636363629,-0.06439393939393931,-0.06742424242424234,-0.07045454545454537,-0.0734848484848484,-0.07651515151515144,-0.07954545454545446,-0.0825757575757575,-0.08560606060606053,-0.08863636363636355,-0.09015151515151507,-0.08712121212121204,-0.08409090909090901,-0.08106060606060597,-0.07803030303030295,-0.07499999999999991,-0.07196969696969688,-0.06893939393939386,-0.06590909090909083,-0.0628787878787878,-0.059848484848484776,-0.05681818181818174,-0.0537878787878787,-0.05075757575757567,-0.047727272727272646,-0.04469696969696961,-0.04166666666666659,-0.03863636363636356,-0.03560606060606054,-0.03257575757575747,-0.029545454545454458,-0.026515151515151422,-0.023484848484848386,-0.020454545454545364,-0.017424242424242342,0.10530303030303029,0.10227272727272727,0.09924242424242423,0.0962121212121212,0.09318181818181816,0.09015151515151514,0.08712121212121209,0.08409090909090905,0.08106060606060603,0.078030303030303,0.07499999999999998,0.07196969696969693,0.06893939393939391,0.06590909090909089,0.06287878787878784,0.05984848484848482,0.05681818181818178,0.05378787878787876,0.05075757575757574,0.047727272727272695,0.04469696969696967,0.041666666666666644,0.0386363636363636,0.03560606060606057,0.03257575757575755,0.03106060606060603,0.03409090909090906,0.0371212121212121,0.040151515151515126,0.043181818181818155,0.04621212121212119,0.04924242424242422,0.05227272727272725,0.05530303030303027,0.058333333333333307,0.06136363636363633,0.06439393939393936,0.06742424242424241,0.07045454545454544,0.07348484848484846,0.0765151515151515,0.0795454545454545,0.08257575757575755,0.08560606060606057,0.08863636363636362,0.09166666666666665,0.09469696969696968,0.0977272727272727,0.10075757575757573,0.10378787878787876,0.2265151515151514,0.22348484848484834,0.22045454545454532,0.2174242424242423,0.21439393939393925,0.21136363636363623,0.2083333333333332,0.20530303030303015,0.20227272727272713,0.1992424242424241,0.19621212121212106,0.19318181818181804,0.19015151515151502,0.187121212121212,0.18409090909090894,0.18106060606060592,0.1780303030303029,0.17499999999999988,0.17196969696969683,0.1689393939393938,0.16590909090909078,0.16287878787878773,0.1598484848484847,0.1568181818181817,0.15378787878787864,0.15227272727272714,0.15530303030303017,0.15833333333333321,0.16136363636363624,0.16439393939393926,0.1674242424242423,0.17045454545454533,0.17348484848484835,0.17651515151515138,0.1795454545454544,0.18257575757575745,0.18560606060606047,0.18863636363636352,0.19166666666666654,0.19469696969696956,0.19772727272727258,0.20075757575757563,0.20378787878787866,0.20681818181818168,0.20984848484848473,0.21287878787878775,0.21590909090909077,0.21893939393939382,0.22196969696969684,0.22499999999999987,0.3477272727272729,0.3446969696969699,0.3416666666666669,0.33863636363636385,0.3356060606060608,0.3325757575757578,0.32954545454545475,0.3265151515151517,0.3234848484848487,0.32045454545454566,0.3174242424242426,0.31439393939393956,0.31136363636363656,0.3083333333333335,0.3053030303030305,0.30227272727272747,0.2992424242424244,0.2962121212121214,0.2931818181818184,0.2901515151515153,0.28712121212121233,0.2840909090909093,0.28106060606060623,0.27803030303030324,0.2750000000000002,0.27348484848484866,0.2765151515151517,0.27954545454545476,0.28257575757575776,0.2856060606060608,0.28863636363636386,0.29166666666666685,0.2946969696969699,0.29772727272727295,0.30075757575757595,0.303787878787879,0.306818181818182,0.30984848484848504,0.3128787878787881,0.31590909090909114,0.31893939393939413,0.3219696969696972,0.3250000000000002,0.3280303030303032,0.3310606060606063,0.3340909090909093,0.3371212121212123,0.34015151515151537,0.34318181818181837,0.3462121212121214,0.46893939393939404,0.465909090909091,0.462878787878788,0.45984848484848495,0.4568181818181819,0.45378787878787885,0.45075757575757586,0.4477272727272728,0.4446969696969698,0.44166666666666676,0.4386363636363637,0.4356060606060607,0.43257575757575767,0.4295454545454547,0.4265151515151516,0.4234848484848486,0.4204545454545455,0.41742424242424253,0.4143939393939395,0.41136363636363643,0.40833333333333344,0.4053030303030304,0.40227272727272734,0.39924242424242434,0.3962121212121213,0.39469696969696977,0.3977272727272728,0.40075757575757587,0.40378787878787886,0.4068181818181819,0.40984848484848496,0.41287878787878796,0.415909090909091,0.41893939393939406,0.42196969696969705,0.4250000000000001,0.4280303030303031,0.43106060606060614,0.4340909090909092,0.43712121212121224,0.44015151515151524,0.4431818181818183,0.44621212121212134,0.44924242424242433,0.4522727272727274,0.45530303030303043,0.4583333333333334,0.4613636363636365,0.46439393939393947,0.4674242424242425,0.5901515151515151,0.5871212121212122,0.5840909090909091,0.581060606060606,0.578030303030303,0.575,0.5719696969696969,0.568939393939394,0.5659090909090909,0.5628787878787879,0.5598484848484848,0.5568181818181818,0.5537878787878788,0.5507575757575758,0.5477272727272727,0.5446969696969697,0.5416666666666666,0.5386363636363636,0.5356060606060606,0.5325757575757576,0.5295454545454545,0.5265151515151515,0.5234848484848484,0.5204545454545454,0.5174242424242425,0.5159090909090909,0.5189393939393939,0.521969696969697,0.525,0.5280303030303031,0.531060606060606,0.5340909090909091,0.5371212121212121,0.5401515151515152,0.5431818181818182,0.5462121212121211,0.5492424242424242,0.5522727272727272,0.5553030303030303,0.5583333333333333,0.5613636363636364,0.5643939393939393,0.5674242424242424,0.5704545454545454,0.5734848484848485,0.5765151515151515,0.5795454545454546,0.5825757575757575,0.5856060606060606,0.5886363636363636,0.7113636363636366,0.7083333333333337,0.7053030303030307,0.7022727272727276,0.6992424242424246,0.6962121212121215,0.6931818181818185,0.6901515151515155,0.6871212121212125,0.6840909090909094,0.6810606060606064,0.6780303030303033,0.6750000000000003,0.6719696969696973,0.6689393939393943,0.6659090909090912,0.6628787878787882,0.6598484848484851,0.6568181818181822,0.6537878787878791,0.6507575757575761,0.647727272727273,0.64469696969697,0.6416666666666669,0.638636363636364,0.6371212121212124,0.6401515151515155,0.6431818181818185,0.6462121212121216,0.6492424242424246,0.6522727272727276,0.6553030303030306,0.6583333333333337,0.6613636363636367,0.6643939393939398,0.6674242424242427,0.6704545454545457,0.6734848484848488,0.6765151515151518,0.6795454545454549,0.682575757575758,0.6856060606060609,0.6886363636363639,0.691666666666667,0.69469696969697,0.6977272727272731,0.7007575757575761,0.7037878787878791,0.7068181818181821,0.7098484848484852,0.8325757575757577,0.8295454545454548,0.8265151515151518,0.8234848484848487,0.8204545454545457,0.8174242424242426,0.8143939393939396,0.8113636363636366,0.8083333333333336,0.8053030303030305,0.8022727272727275,0.7992424242424244,0.7962121212121214,0.7931818181818184,0.7901515151515154,0.7871212121212123,0.7840909090909093,0.7810606060606062,0.7780303030303033,0.7750000000000002,0.7719696969696972,0.7689393939393941,0.7659090909090911,0.762878787878788,0.7598484848484851,0.7583333333333335,0.7613636363636366,0.7643939393939396,0.7674242424242427,0.7704545454545456,0.7734848484848487,0.7765151515151517,0.7795454545454548,0.7825757575757578,0.7856060606060609,0.7886363636363638,0.7916666666666669,0.7946969696969699,0.797727272727273,0.800757575757576,0.803787878787879,0.806818181818182,0.809848484848485,0.8128787878787881,0.8159090909090911,0.8189393939393942,0.8219696969696972,0.8250000000000002,0.8280303030303032,0.8310606060606063,0.9537878787878789,0.9507575757575759,0.9477272727272729,0.9446969696969698,0.9416666666666668,0.9386363636363637,0.9356060606060607,0.9325757575757577,0.9295454545454547,0.9265151515151516,0.9234848484848486,0.9204545454545455,0.9174242424242425,0.9143939393939395,0.9113636363636365,0.9083333333333334,0.9053030303030304,0.9022727272727273,0.8992424242424244,0.8962121212121213,0.8931818181818183,0.8901515151515152,0.8871212121212122,0.8840909090909091,0.8810606060606062,0.8795454545454546,0.8825757575757577,0.8856060606060607,0.8886363636363638,0.8916666666666668,0.8946969696969698,0.8977272727272728,0.9007575757575759,0.9037878787878789,0.906818181818182,0.9098484848484849,0.912878787878788,0.915909090909091,0.9189393939393941,0.9219696969696971,0.9250000000000002,0.9280303030303031,0.9310606060606061,0.9340909090909092,0.9371212121212122,0.9401515151515153,0.9431818181818183,0.9462121212121213,0.9492424242424243,0.9522727272727274,1.075,1.071969696969697,1.0689393939393939,1.065909090909091,1.062878787878788,1.0598484848484848,1.0568181818181819,1.0537878787878787,1.0507575757575758,1.0477272727272728,1.0446969696969697,1.0416666666666667,1.0386363636363636,1.0356060606060606,1.0325757575757575,1.0295454545454545,1.0265151515151516,1.0234848484848484,1.0204545454545455,1.0174242424242423,1.0143939393939394,1.0113636363636365,1.0083333333333333,1.0053030303030304,1.0022727272727272,1.0007575757575757,1.0037878787878787,1.0068181818181818,1.0098484848484848,1.012878787878788,1.0159090909090909,1.018939393939394,1.021969696969697,1.025,1.028030303030303,1.031060606060606,1.0340909090909092,1.037121212121212,1.0401515151515153,1.0431818181818182,1.0462121212121211,1.0492424242424243,1.0522727272727272,1.0553030303030304,1.0583333333333333,1.0613636363636363,1.0643939393939394,1.0674242424242424,1.0704545454545455,1.0734848484848485,1.196212121212121,1.1931818181818181,1.190151515151515,1.187121212121212,1.184090909090909,1.181060606060606,1.178030303030303,1.1749999999999998,1.1719696969696969,1.168939393939394,1.1659090909090908,1.1628787878787878,1.1598484848484847,1.1568181818181817,1.1537878787878786,1.1507575757575756,1.1477272727272727,1.1446969696969695,1.1416666666666666,1.1386363636363634,1.1356060606060605,1.1325757575757576,1.1295454545454544,1.1265151515151515,1.1234848484848483,1.1219696969696968,1.125,1.128030303030303,1.1310606060606059,1.134090909090909,1.137121212121212,1.1401515151515151,1.143181818181818,1.146212121212121,1.1492424242424242,1.1522727272727271,1.1553030303030303,1.1583333333333332,1.1613636363636364,1.1643939393939393,1.1674242424242423,1.1704545454545454,1.1734848484848484,1.1765151515151515,1.1795454545454545,1.1825757575757574,1.1856060606060606,1.1886363636363635,1.1916666666666667,1.1946969696969696,1.3174242424242422,1.3143939393939392,1.311363636363636,1.3083333333333331,1.3053030303030302,1.302272727272727,1.299242424242424,1.296212121212121,1.293181818181818,1.290151515151515,1.2871212121212119,1.284090909090909,1.2810606060606058,1.2780303030303028,1.2749999999999997,1.2719696969696968,1.2689393939393938,1.2659090909090907,1.2628787878787877,1.2598484848484846,1.2568181818181816,1.2537878787878787,1.2507575757575755,1.2477272727272726,1.2446969696969694,1.243181818181818,1.246212121212121,1.249242424242424,1.252272727272727,1.2553030303030301,1.258333333333333,1.2613636363636362,1.2643939393939392,1.2674242424242421,1.2704545454545453,1.2734848484848482,1.2765151515151514,1.2795454545454543,1.2825757575757573,1.2856060606060604,1.2886363636363634,1.2916666666666665,1.2946969696969695,1.2977272727272724,1.3007575757575756,1.3037878787878785,1.3068181818181817,1.3098484848484846,1.3128787878787878,1.3159090909090907,1.4386363636363633,1.4356060606060603,1.4325757575757572,1.4295454545454542,1.4265151515151513,1.4234848484848481,1.4204545454545452,1.417424242424242,1.414393939393939,1.4113636363636362,1.408333333333333,1.40530303030303,1.402272727272727,1.399242424242424,1.3962121212121208,1.3931818181818179,1.390151515151515,1.3871212121212118,1.3840909090909088,1.3810606060606057,1.3780303030303027,1.3749999999999998,1.3719696969696966,1.3689393939393937,1.3659090909090905,1.364393939393939,1.367424242424242,1.3704545454545451,1.373484848484848,1.3765151515151512,1.3795454545454542,1.3825757575757573,1.3856060606060603,1.3886363636363632,1.3916666666666664,1.3946969696969693,1.3977272727272725,1.4007575757575754,1.4037878787878784,1.4068181818181815,1.4098484848484845,1.4128787878787876,1.4159090909090906,1.4189393939393937,1.4219696969696967,1.4249999999999996,1.4280303030303028,1.4310606060606057,1.4340909090909089,1.4371212121212118,1.5598484848484853,1.5568181818181823,1.5537878787878792,1.5507575757575762,1.5477272727272733,1.5446969696969701,1.5416666666666672,1.538636363636364,1.535606060606061,1.5325757575757581,1.529545454545455,1.526515151515152,1.5234848484848489,1.520454545454546,1.5174242424242428,1.5143939393939398,1.511363636363637,1.5083333333333337,1.5053030303030308,1.5022727272727276,1.4992424242424247,1.4962121212121218,1.4931818181818186,1.4901515151515157,1.4871212121212125,1.485606060606061,1.488636363636364,1.4916666666666671,1.49469696969697,1.4977272727272732,1.5007575757575762,1.5037878787878793,1.5068181818181823,1.5098484848484852,1.5128787878787884,1.5159090909090913,1.5189393939393945,1.5219696969696974,1.5250000000000006,1.5280303030303035,1.5310606060606065,1.5340909090909096,1.5371212121212126,1.5401515151515155,1.5431818181818187,1.5462121212121216,1.5492424242424248,1.5522727272727277,1.5553030303030309,1.5583333333333338,1.6810606060606064,1.6780303030303034,1.6750000000000003,1.6719696969696973,1.6689393939393944,1.6659090909090912,1.6628787878787883,1.6598484848484851,1.6568181818181822,1.6537878787878793,1.650757575757576,1.6477272727272732,1.64469696969697,1.641666666666667,1.638636363636364,1.635606060606061,1.632575757575758,1.6295454545454549,1.626515151515152,1.6234848484848488,1.6204545454545458,1.6174242424242429,1.6143939393939397,1.6113636363636368,1.6083333333333336,1.6068181818181821,1.6098484848484853,1.6128787878787882,1.6159090909090912,1.6189393939393943,1.6219696969696973,1.6250000000000004,1.6280303030303034,1.6310606060606063,1.6340909090909095,1.6371212121212124,1.6401515151515156,1.6431818181818185,1.6462121212121217,1.6492424242424246,1.6522727272727276,1.6553030303030307,1.6583333333333337,1.6613636363636368,1.6643939393939398,1.6674242424242427,1.6704545454545459,1.6734848484848488,1.676515151515152,1.679545454545455,1.8022727272727275,1.7992424242424245,1.7962121212121214,1.7931818181818184,1.7901515151515155,1.7871212121212123,1.7840909090909094,1.7810606060606062,1.7780303030303033,1.7750000000000004,1.7719696969696972,1.7689393939393943,1.765909090909091,1.7628787878787882,1.759848484848485,1.756818181818182,1.7537878787878791,1.750757575757576,1.747727272727273,1.7446969696969699,1.741666666666667,1.738636363636364,1.7356060606060608,1.7325757575757579,1.7295454545454547,1.7280303030303032,1.7310606060606064,1.7340909090909093,1.7371212121212123,1.7401515151515154,1.7431818181818184,1.7462121212121215,1.7492424242424245,1.7522727272727274,1.7553030303030306,1.7583333333333335,1.7613636363636367,1.7643939393939396,1.7674242424242426,1.7704545454545457,1.7734848484848487,1.7765151515151518,1.7795454545454548,1.782575757575758,1.7856060606060609,1.7886363636363638,1.791666666666667,1.79469696969697,1.797727272727273,1.800757575757576,1.9234848484848486,1.9204545454545456,1.9174242424242425,1.9143939393939395,1.9113636363636366,1.9083333333333334,1.9053030303030305,1.9022727272727273,1.8992424242424244,1.8962121212121215,1.8931818181818183,1.8901515151515154,1.8871212121212122,1.8840909090909093,1.881060606060606,1.8780303030303032,1.8750000000000002,1.871969696969697,1.8689393939393941,1.865909090909091,1.862878787878788,1.859848484848485,1.856818181818182,1.853787878787879,1.8507575757575758,1.8492424242424244,1.8522727272727273,1.8553030303030305,1.8583333333333334,1.8613636363636366,1.8643939393939395,1.8674242424242427,1.8704545454545456,1.8734848484848485,1.8765151515151517,1.8795454545454546,1.8825757575757578,1.8856060606060607,1.8886363636363637,1.8916666666666668,1.8946969696969698,1.897727272727273,1.9007575757575759,1.903787878787879,1.906818181818182,1.909848484848485,1.912878787878788,1.915909090909091,1.9189393939393942,1.921969696969697,2.04469696969697,2.0416666666666665,2.0386363636363636,2.0356060606060606,2.0325757575757577,2.0295454545454548,2.0265151515151514,2.0234848484848484,2.0204545454545455,2.0174242424242426,2.0143939393939396,2.0113636363636362,2.0083333333333333,2.0053030303030304,2.0022727272727274,1.9992424242424243,1.9962121212121213,1.9931818181818182,1.9901515151515152,1.987121212121212,1.9840909090909091,1.9810606060606062,1.978030303030303,1.975,1.971969696969697,1.9704545454545455,1.9734848484848486,1.9765151515151516,1.9795454545454545,1.9825757575757577,1.9856060606060606,1.9886363636363638,1.9916666666666667,1.9946969696969696,1.9977272727272728,2.000757575757576,2.003787878787879,2.006818181818182,2.0098484848484848,2.0128787878787877,2.015909090909091,2.018939393939394,2.021969696969697,2.025,2.0280303030303033,2.0310606060606062,2.034090909090909,2.037121212121212,2.040151515151515,2.043181818181818,2.165909090909091,2.1628787878787876,2.1598484848484847,2.1568181818181817,2.153787878787879,2.150757575757576,2.1477272727272725,2.1446969696969695,2.1416666666666666,2.1386363636363637,2.1356060606060607,2.1325757575757573,2.1295454545454544,2.1265151515151515,2.1234848484848485,2.120454545454545,2.117424242424242,2.1143939393939393,2.1113636363636363,2.1083333333333334,2.10530303030303,2.102272727272727,2.099242424242424,2.096212121212121,2.0931818181818183,2.091666666666667,2.0946969696969697,2.0977272727272727,2.1007575757575756,2.1037878787878785,2.106818181818182,2.109848484848485,2.112878787878788,2.1159090909090907,2.1189393939393937,2.121969696969697,2.125,2.128030303030303,2.131060606060606,2.134090909090909,2.137121212121212,2.140151515151515,2.143181818181818,2.146212121212121,2.149242424242424,2.1522727272727273,2.1553030303030303,2.158333333333333,2.161363636363636,2.164393939393939,2.287121212121212,2.2840909090909087,2.281060606060606,2.278030303030303,2.275,2.271969696969697,2.2689393939393936,2.2659090909090907,2.2628787878787877,2.2598484848484848,2.256818181818182,2.2537878787878785,2.2507575757575755,2.2477272727272726,2.2446969696969696,2.2416666666666663,2.2386363636363633,2.2356060606060604,2.2325757575757574,2.2295454545454545,2.226515151515151,2.223484848484848,2.2204545454545452,2.2174242424242423,2.2143939393939394,2.212878787878788,2.215909090909091,2.2189393939393938,2.2219696969696967,2.2249999999999996,2.228030303030303,2.231060606060606,2.234090909090909,2.237121212121212,2.240151515151515,2.243181818181818,2.246212121212121,2.249242424242424,2.252272727272727,2.25530303030303,2.2583333333333333,2.2613636363636362,2.264393939393939,2.267424242424242,2.270454545454545,2.2734848484848484,2.2765151515151514,2.2795454545454543,2.2825757575757573,2.28560606060606,2.408333333333334,2.4053030303030307,2.402272727272728,2.399242424242425,2.396212121212122,2.393181818181819,2.3901515151515156,2.3871212121212126,2.3840909090909097,2.3810606060606068,2.378030303030304,2.3750000000000004,2.3719696969696975,2.3689393939393946,2.3659090909090916,2.3628787878787882,2.3598484848484853,2.3568181818181824,2.3537878787878794,2.3507575757575765,2.347727272727273,2.34469696969697,2.3416666666666672,2.3386363636363643,2.3356060606060614,2.33409090909091,2.337121212121213,2.3401515151515158,2.3431818181818187,2.3462121212121216,2.349242424242425,2.352272727272728,2.355303030303031,2.358333333333334,2.3613636363636368,2.36439393939394,2.367424242424243,2.370454545454546,2.373484848484849,2.376515151515152,2.3795454545454553,2.3825757575757582,2.385606060606061,2.388636363636364,2.3916666666666675,2.3946969696969704,2.3977272727272734,2.4007575757575763,2.4037878787878793,2.406818181818182,2.529545454545455,2.526515151515152,2.523484848484849,2.520454545454546,2.517424242424243,2.51439393939394,2.5113636363636367,2.5083333333333337,2.505303030303031,2.502272727272728,2.499242424242425,2.4962121212121215,2.4931818181818186,2.4901515151515157,2.4871212121212127,2.4840909090909093,2.4810606060606064,2.4780303030303035,2.4750000000000005,2.4719696969696976,2.468939393939394,2.4659090909090913,2.4628787878787883,2.4598484848484854,2.4568181818181825,2.455303030303031,2.458333333333334,2.461363636363637,2.46439393939394,2.4674242424242427,2.470454545454546,2.473484848484849,2.476515151515152,2.479545454545455,2.482575757575758,2.4856060606060613,2.488636363636364,2.491666666666667,2.49469696969697,2.497727272727273,2.5007575757575764,2.5037878787878793,2.5068181818181823,2.509848484848485,2.5128787878787886,2.5159090909090915,2.5189393939393945,2.5219696969696974,2.5250000000000004,2.5280303030303037,2.6507575757575763,2.647727272727273,2.64469696969697,2.641666666666667,2.638636363636364,2.635606060606061,2.632575757575758,2.629545454545455,2.626515151515152,2.623484848484849,2.620454545454546,2.6174242424242427,2.6143939393939397,2.6113636363636368,2.608333333333334,2.6053030303030305,2.6022727272727275,2.5992424242424246,2.5962121212121216,2.5931818181818187,2.5901515151515153,2.5871212121212124,2.5840909090909094,2.5810606060606065,2.5780303030303036,2.576515151515152,2.579545454545455,2.582575757575758,2.585606060606061,2.588636363636364,2.5916666666666672,2.59469696969697,2.597727272727273,2.600757575757576,2.603787878787879,2.6068181818181824,2.6098484848484853,2.6128787878787882,2.615909090909091,2.618939393939394,2.6219696969696975,2.6250000000000004,2.6280303030303034,2.6310606060606063,2.6340909090909097,2.6371212121212126,2.6401515151515156,2.6431818181818185,2.6462121212121215,2.6492424242424244,2.7719696969696974,2.768939393939394,2.765909090909091,2.762878787878788,2.759848484848485,2.7568181818181823,2.753787878787879,2.750757575757576,2.747727272727273,2.74469696969697,2.741666666666667,2.7386363636363638,2.735606060606061,2.732575757575758,2.729545454545455,2.7265151515151516,2.7234848484848486,2.7204545454545457,2.7174242424242427,2.71439393939394,2.7113636363636364,2.7083333333333335,2.7053030303030305,2.7022727272727276,2.6992424242424247,2.697727272727273,2.700757575757576,2.703787878787879,2.706818181818182,2.709848484848485,2.7128787878787883,2.7159090909090913,2.718939393939394,2.721969696969697,2.725,2.7280303030303035,2.7310606060606064,2.7340909090909093,2.7371212121212123,2.7401515151515152,2.7431818181818186,2.7462121212121215,2.7492424242424245,2.7522727272727274,2.755303030303031,2.7583333333333337,2.7613636363636367,2.7643939393939396,2.7674242424242426,2.7704545454545455,2.8931818181818185,2.890151515151515,2.887121212121212,2.8840909090909093,2.8810606060606063,2.8780303030303034,2.875,2.871969696969697,2.868939393939394,2.865909090909091,2.8628787878787882,2.859848484848485,2.856818181818182,2.853787878787879,2.850757575757576,2.8477272727272727,2.8446969696969697,2.841666666666667,2.838636363636364,2.835606060606061,2.8325757575757575,2.8295454545454546,2.8265151515151516,2.8234848484848487,2.8204545454545458,2.8189393939393943,2.8219696969696972,2.825,2.828030303030303,2.831060606060606,2.8340909090909094,2.8371212121212124,2.8401515151515153,2.8431818181818183,2.846212121212121,2.8492424242424246,2.8522727272727275,2.8553030303030305,2.8583333333333334,2.8613636363636363,2.8643939393939397,2.8674242424242427,2.8704545454545456,2.8734848484848485,2.876515151515152,2.879545454545455,2.882575757575758,2.8856060606060607,2.8886363636363637,2.891666666666667,3.0143939393939396,3.0113636363636362,3.0083333333333333,3.0053030303030304,3.0022727272727274,2.9992424242424245,2.996212121212121,2.993181818181818,2.9901515151515152,2.9871212121212123,2.9840909090909093,2.981060606060606,2.978030303030303,2.975,2.971969696969697,2.9689393939393938,2.965909090909091,2.962878787878788,2.959848484848485,2.956818181818182,2.9537878787878786,2.9507575757575757,2.9477272727272728,2.94469696969697,2.941666666666667,2.9401515151515154,2.9431818181818183,2.9462121212121213,2.949242424242424,2.952272727272727,2.9553030303030305,2.9583333333333335,2.9613636363636364,2.9643939393939394,2.9674242424242423,2.9704545454545457,2.9734848484848486,2.9765151515151516,2.9795454545454545,2.9825757575757574,2.985606060606061,2.9886363636363638,2.9916666666666667,2.9946969696969696,2.997727272727273,3.000757575757576,3.003787878787879,3.006818181818182,3.0098484848484848,3.012878787878788],\"y0\":[-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394,-3.0,-2.878787878787879,-2.757575757575758,-2.6363636363636362,-2.515151515151515,-2.393939393939394,-2.2727272727272725,-2.1515151515151514,-2.0303030303030303,-1.9090909090909092,-1.7878787878787878,-1.6666666666666665,-1.5454545454545454,-1.4242424242424243,-1.303030303030303,-1.1818181818181817,-1.0606060606060606,-0.9393939393939394,-0.8181818181818183,-0.6969696969696968,-0.5757575757575757,-0.4545454545454546,-0.33333333333333304,-0.21212121212121193,-0.09090909090909083,0.030303030303030276,0.15151515151515138,0.27272727272727293,0.39393939393939403,0.5151515151515151,0.6363636363636367,0.7575757575757578,0.8787878787878789,1.0,1.121212121212121,1.2424242424242422,1.3636363636363633,1.4848484848484853,1.6060606060606064,1.7272727272727275,1.8484848484848486,1.9696969696969697,2.090909090909091,2.212121212121212,2.333333333333334,2.454545454545455,2.575757575757576,2.6969696969696972,2.8181818181818183,2.9393939393939394],\"y1\":[-3.15,-3.025757575757576,-2.901515151515152,-2.7772727272727273,-2.653030303030303,-2.528787878787879,-2.4045454545454543,-2.2803030303030303,-2.1560606060606062,-2.0318181818181817,-1.9075757575757575,-1.7833333333333332,-1.659090909090909,-1.534848484848485,-1.4106060606060606,-1.2863636363636362,-1.162121212121212,-1.0378787878787878,-0.9136363636363638,-0.7893939393939392,-0.665151515151515,-0.540909090909091,-0.41666666666666635,-0.29242424242424225,-0.1681818181818181,0.10454545454545451,0.2227272727272726,0.3409090909090911,0.4590909090909092,0.5772727272727273,0.6954545454545458,0.8136363636363638,0.9318181818181819,1.05,1.168181818181818,1.2863636363636362,1.4045454545454543,1.5227272727272732,1.6409090909090913,1.7590909090909093,1.8772727272727274,1.9954545454545456,2.1136363636363638,2.2318181818181815,2.3500000000000005,2.4681818181818187,2.586363636363637,2.704545454545455,2.8227272727272728,2.940909090909091,-3.146969696969697,-3.022727272727273,-2.898484848484849,-2.774242424242424,-2.65,-2.525757575757576,-2.4015151515151514,-2.2772727272727273,-2.153030303030303,-2.028787878787879,-1.9045454545454545,-1.78030303030303,-1.656060606060606,-1.531818181818182,-1.4075757575757575,-1.2833333333333332,-1.159090909090909,-1.034848484848485,-0.9106060606060608,-0.7863636363636362,-0.6621212121212121,-0.537878787878788,-0.41363636363636336,-0.2893939393939392,-0.16515151515151505,0.10151515151515149,0.21969696969696956,0.33787878787878806,0.45606060606060617,0.5742424242424242,0.6924242424242427,0.8106060606060608,0.9287878787878789,1.0469696969696969,1.165151515151515,1.2833333333333332,1.4015151515151512,1.5196969696969702,1.6378787878787882,1.7560606060606063,1.8742424242424245,1.9924242424242424,2.1106060606060604,2.2287878787878785,2.3469696969696976,2.4651515151515158,2.583333333333334,2.7015151515151516,2.81969696969697,2.937878787878788,-3.143939393939394,-3.01969696969697,-2.8954545454545455,-2.771212121212121,-2.646969696969697,-2.522727272727273,-2.3984848484848484,-2.274242424242424,-2.15,-2.025757575757576,-1.9015151515151514,-1.7772727272727271,-1.653030303030303,-1.5287878787878788,-1.4045454545454545,-1.28030303030303,-1.156060606060606,-1.031818181818182,-0.9075757575757577,-0.7833333333333331,-0.6590909090909091,-0.5348484848484849,-0.4106060606060603,-0.28636363636363615,-0.16212121212121205,0.09848484848484847,0.21666666666666654,0.33484848484848506,0.4530303030303031,0.5712121212121212,0.6893939393939397,0.8075757575757578,0.9257575757575759,1.043939393939394,1.162121212121212,1.28030303030303,1.3984848484848482,1.516666666666667,1.6348484848484852,1.7530303030303032,1.8712121212121213,1.9893939393939395,2.1075757575757574,2.2257575757575756,2.3439393939393947,2.462121212121213,2.5803030303030305,2.6984848484848487,2.816666666666667,2.934848484848485,-3.140909090909091,-3.0166666666666666,-2.8924242424242426,-2.768181818181818,-2.643939393939394,-2.51969696969697,-2.395454545454545,-2.271212121212121,-2.146969696969697,-2.022727272727273,-1.8984848484848484,-1.7742424242424242,-1.65,-1.5257575757575759,-1.4015151515151514,-1.2772727272727271,-1.153030303030303,-1.0287878787878788,-0.9045454545454548,-0.7803030303030302,-0.656060606060606,-0.5318181818181819,-0.40757575757575726,-0.2833333333333331,-0.159090909090909,0.09545454545454542,0.2136363636363635,0.331818181818182,0.45000000000000007,0.5681818181818181,0.6863636363636366,0.8045454545454548,0.9227272727272728,1.040909090909091,1.159090909090909,1.2772727272727271,1.395454545454545,1.5136363636363641,1.631818181818182,1.7500000000000002,1.8681818181818184,1.9863636363636363,2.1045454545454545,2.2227272727272727,2.3409090909090913,2.4590909090909094,2.5772727272727276,2.6954545454545458,2.813636363636364,2.9318181818181817,-3.1378787878787877,-3.0136363636363637,-2.8893939393939396,-2.765151515151515,-2.640909090909091,-2.5166666666666666,-2.392424242424242,-2.268181818181818,-2.143939393939394,-2.0196969696969695,-1.8954545454545455,-1.771212121212121,-1.646969696969697,-1.5227272727272727,-1.3984848484848484,-1.2742424242424242,-1.15,-1.0257575757575759,-0.9015151515151517,-0.7772727272727271,-0.653030303030303,-0.5287878787878788,-0.4045454545454542,-0.2803030303030301,-0.15606060606060598,0.0924242424242424,0.21060606060606046,0.32878787878787896,0.4469696969696971,0.5651515151515152,0.6833333333333337,0.8015151515151517,0.9196969696969698,1.0378787878787878,1.156060606060606,1.274242424242424,1.3924242424242421,1.510606060606061,1.6287878787878791,1.7469696969696973,1.8651515151515152,1.9833333333333334,2.1015151515151516,2.2196969696969697,2.3378787878787883,2.4560606060606065,2.5742424242424247,2.692424242424243,2.8106060606060606,2.9287878787878787,-3.1348484848484848,-3.0106060606060607,-2.8863636363636367,-2.7621212121212118,-2.6378787878787877,-2.5136363636363637,-2.389393939393939,-2.265151515151515,-2.1409090909090907,-2.0166666666666666,-1.8924242424242423,-1.768181818181818,-1.6439393939393938,-1.5196969696969698,-1.3954545454545455,-1.271212121212121,-1.146969696969697,-1.0227272727272727,-0.8984848484848487,-0.7742424242424241,-0.6499999999999999,-0.5257575757575759,-0.4015151515151512,-0.27727272727272706,-0.15303030303030296,0.08939393939393939,0.20757575757575744,0.32575757575757597,0.443939393939394,0.5621212121212121,0.6803030303030306,0.7984848484848487,0.9166666666666667,1.034848484848485,1.1530303030303028,1.271212121212121,1.3893939393939392,1.507575757575758,1.6257575757575762,1.7439393939393941,1.8621212121212123,1.9803030303030302,2.0984848484848486,2.2166666666666663,2.3348484848484854,2.4530303030303036,2.5712121212121217,2.6893939393939394,2.8075757575757576,2.925757575757576,-3.131818181818182,-3.007575757575758,-2.8833333333333337,-2.759090909090909,-2.6348484848484848,-2.5106060606060607,-2.3863636363636362,-2.2621212121212118,-2.1378787878787877,-2.0136363636363637,-1.8893939393939394,-1.765151515151515,-1.6409090909090909,-1.5166666666666668,-1.3924242424242423,-1.268181818181818,-1.1439393939393938,-1.0196969696969698,-0.8954545454545456,-0.771212121212121,-0.6469696969696969,-0.5227272727272728,-0.39848484848484816,-0.27424242424242407,-0.1499999999999999,0.08636363636363634,0.2045454545454544,0.3227272727272729,0.440909090909091,0.5590909090909091,0.6772727272727276,0.7954545454545456,0.9136363636363637,1.0318181818181817,1.15,1.2681818181818179,1.386363636363636,1.504545454545455,1.622727272727273,1.7409090909090912,1.8590909090909091,1.9772727272727273,2.0954545454545452,2.2136363636363634,2.3318181818181825,2.4500000000000006,2.5681818181818183,2.6863636363636365,2.8045454545454547,2.922727272727273,-3.128787878787879,-3.004545454545455,-2.8803030303030304,-2.756060606060606,-2.631818181818182,-2.507575757575758,-2.383333333333333,-2.259090909090909,-2.1348484848484848,-2.0106060606060607,-1.8863636363636362,-1.762121212121212,-1.637878787878788,-1.5136363636363637,-1.3893939393939394,-1.265151515151515,-1.1409090909090909,-1.0166666666666666,-0.8924242424242426,-0.768181818181818,-0.6439393939393939,-0.5196969696969698,-0.39545454545454517,-0.271212121212121,-0.1469696969696969,0.08333333333333331,0.20151515151515137,0.31969696969696987,0.437878787878788,0.556060606060606,0.6742424242424245,0.7924242424242426,0.9106060606060608,1.0287878787878788,1.146969696969697,1.265151515151515,1.383333333333333,1.501515151515152,1.61969696969697,1.737878787878788,1.8560606060606062,1.9742424242424244,2.0924242424242423,2.2106060606060605,2.3287878787878795,2.4469696969696972,2.5651515151515154,2.6833333333333336,2.8015151515151517,2.91969696969697,-3.125757575757576,-3.0015151515151515,-2.8772727272727274,-2.753030303030303,-2.628787878787879,-2.504545454545455,-2.38030303030303,-2.256060606060606,-2.131818181818182,-2.007575757575758,-1.8833333333333333,-1.7590909090909088,-1.6348484848484848,-1.5106060606060607,-1.3863636363636362,-1.262121212121212,-1.1378787878787877,-1.0136363636363637,-0.8893939393939396,-0.7651515151515149,-0.6409090909090909,-0.5166666666666667,-0.3924242424242421,-0.26818181818181797,-0.14393939393939387,0.08030303030303028,0.19848484848484835,0.3166666666666669,0.43484848484848493,0.553030303030303,0.6712121212121215,0.7893939393939396,0.9075757575757577,1.0257575757575759,1.1439393939393938,1.262121212121212,1.38030303030303,1.498484848484849,1.616666666666667,1.734848484848485,1.8530303030303032,1.9712121212121212,2.0893939393939394,2.2075757575757575,2.325757575757576,2.4439393939393943,2.5621212121212125,2.6803030303030306,2.798484848484849,2.9166666666666665,-3.1227272727272726,-2.9984848484848485,-2.8742424242424245,-2.75,-2.625757575757576,-2.5015151515151515,-2.377272727272727,-2.253030303030303,-2.128787878787879,-2.004545454545455,-1.8803030303030304,-1.7560606060606059,-1.6318181818181818,-1.5075757575757576,-1.3833333333333333,-1.2590909090909088,-1.1348484848484848,-1.0106060606060607,-0.8863636363636366,-0.762121212121212,-0.6378787878787878,-0.5136363636363637,-0.38939393939393907,-0.26515151515151497,-0.14090909090909082,0.07727272727272724,0.19545454545454533,0.3136363636363638,0.4318181818181819,0.5499999999999999,0.6681818181818185,0.7863636363636366,0.9045454545454547,1.0227272727272727,1.1409090909090909,1.2590909090909088,1.377272727272727,1.4954545454545458,1.613636363636364,1.7318181818181821,1.85,1.9681818181818183,2.0863636363636364,2.204545454545454,2.322727272727273,2.4409090909090914,2.5590909090909095,2.6772727272727277,2.7954545454545454,2.9136363636363636,-3.1196969696969696,-2.9954545454545456,-2.8712121212121215,-2.7469696969696966,-2.6227272727272726,-2.4984848484848485,-2.374242424242424,-2.25,-2.125757575757576,-2.0015151515151515,-1.8772727272727272,-1.753030303030303,-1.6287878787878787,-1.5045454545454546,-1.3803030303030301,-1.2560606060606059,-1.1318181818181818,-1.0075757575757576,-0.8833333333333335,-0.7590909090909089,-0.6348484848484848,-0.5106060606060606,-0.3863636363636361,-0.2621212121212119,-0.1378787878787878,0.07424242424242422,0.19242424242424228,0.3106060606060608,0.4287878787878789,0.546969696969697,0.6651515151515155,0.7833333333333335,0.9015151515151516,1.0196969696969698,1.1378787878787877,1.2560606060606059,1.3742424242424238,1.4924242424242429,1.610606060606061,1.728787878787879,1.8469696969696972,1.965151515151515,2.083333333333333,2.201515151515151,2.3196969696969703,2.4378787878787884,2.5560606060606066,2.6742424242424243,2.7924242424242425,2.9106060606060606,-3.1166666666666667,-2.9924242424242427,-2.868181818181818,-2.7439393939393937,-2.6196969696969696,-2.4954545454545456,-2.371212121212121,-2.2469696969696966,-2.1227272727272726,-1.9984848484848485,-1.8742424242424243,-1.7499999999999998,-1.6257575757575757,-1.5015151515151515,-1.3772727272727272,-1.253030303030303,-1.1287878787878787,-1.0045454545454546,-0.8803030303030305,-0.7560606060606059,-0.6318181818181817,-0.5075757575757576,-0.383333333333333,-0.2590909090909089,-0.13484848484848477,0.07121212121212118,0.18939393939393925,0.3075757575757578,0.42575757575757583,0.543939393939394,0.6621212121212124,0.7803030303030305,0.8984848484848486,1.0166666666666666,1.1348484848484848,1.2530303030303027,1.3712121212121209,1.48939393939394,1.6075757575757579,1.725757575757576,1.843939393939394,1.9621212121212122,2.08030303030303,2.1984848484848483,2.3166666666666673,2.4348484848484855,2.553030303030303,2.6712121212121214,2.7893939393939395,2.9075757575757577,-3.1136363636363638,-2.9893939393939397,-2.8651515151515152,-2.7409090909090907,-2.6166666666666667,-2.4924242424242427,-2.3681818181818177,-2.2439393939393937,-2.1196969696969696,-1.9954545454545456,-1.871212121212121,-1.7469696969696968,-1.6227272727272726,-1.4984848484848485,-1.3742424242424243,-1.2499999999999998,-1.1257575757575757,-1.0015151515151515,-0.8772727272727274,-0.7530303030303028,-0.6287878787878787,-0.5045454545454546,-0.38030303030303,-0.2560606060606059,-0.13181818181818172,0.06818181818181815,0.18636363636363623,0.30454545454545473,0.42272727272727284,0.5409090909090909,0.6590909090909094,0.7772727272727274,0.8954545454545456,1.0136363636363637,1.1318181818181816,1.2499999999999998,1.368181818181818,1.4863636363636368,1.604545454545455,1.7227272727272729,1.840909090909091,1.9590909090909092,2.077272727272727,2.1954545454545453,2.3136363636363644,2.431818181818182,2.5500000000000003,2.6681818181818184,2.7863636363636366,2.9045454545454548,-3.1106060606060604,-2.9863636363636363,-2.8621212121212123,-2.737878787878788,-2.6136363636363638,-2.4893939393939397,-2.365151515151515,-2.2409090909090907,-2.1166666666666667,-1.9924242424242424,-1.8681818181818182,-1.7439393939393937,-1.6196969696969696,-1.4954545454545456,-1.371212121212121,-1.2469696969696968,-1.1227272727272726,-0.9984848484848485,-0.8742424242424244,-0.7499999999999998,-0.6257575757575757,-0.5015151515151516,-0.377272727272727,-0.25303030303030283,-0.1287878787878787,0.06515151515151513,0.1833333333333332,0.30151515151515174,0.4196969696969698,0.5378787878787878,0.6560606060606063,0.7742424242424244,0.8924242424242426,1.0106060606060605,1.1287878787878787,1.2469696969696968,1.3651515151515148,1.4833333333333338,1.6015151515151518,1.71969696969697,1.8378787878787881,1.956060606060606,2.074242424242424,2.1924242424242424,2.310606060606061,2.428787878787879,2.5469696969696973,2.6651515151515155,2.7833333333333337,2.9015151515151514,-3.1075757575757574,-2.9833333333333334,-2.8590909090909093,-2.734848484848485,-2.6106060606060604,-2.4863636363636363,-2.362121212121212,-2.237878787878788,-2.1136363636363638,-1.9893939393939395,-1.865151515151515,-1.7409090909090907,-1.6166666666666667,-1.4924242424242424,-1.3681818181818182,-1.2439393939393937,-1.1196969696969696,-0.9954545454545455,-0.8712121212121213,-0.7469696969696968,-0.6227272727272727,-0.49848484848484853,-0.37424242424242393,-0.2499999999999998,-0.12575757575757568,0.0621212121212121,0.1803030303030302,0.2984848484848487,0.41666666666666674,0.5348484848484848,0.6530303030303033,0.7712121212121215,0.8893939393939395,1.0075757575757576,1.1257575757575757,1.2439393939393937,1.3621212121212118,1.4803030303030307,1.5984848484848488,1.716666666666667,1.834848484848485,1.9530303030303031,2.0712121212121213,2.189393939393939,2.307575757575758,2.4257575757575762,2.5439393939393944,2.6621212121212126,2.7803030303030303,2.8984848484848484,-3.1045454545454545,-2.9803030303030305,-2.8560606060606064,-2.7318181818181815,-2.6075757575757574,-2.4833333333333334,-2.359090909090909,-2.234848484848485,-2.1106060606060604,-1.9863636363636363,-1.862121212121212,-1.7378787878787878,-1.6136363636363635,-1.4893939393939395,-1.365151515151515,-1.2409090909090907,-1.1166666666666667,-0.9924242424242424,-0.8681818181818184,-0.7439393939393938,-0.6196969696969696,-0.4954545454545455,-0.3712121212121209,-0.24696969696969678,-0.12272727272727263,0.05909090909090907,0.17727272727272714,0.29545454545454564,0.41363636363636375,0.5318181818181817,0.6500000000000004,0.7681818181818184,0.8863636363636365,1.0045454545454546,1.1227272727272726,1.2409090909090907,1.3590909090909087,1.4772727272727277,1.595454545454546,1.7136363636363638,1.831818181818182,1.95,2.068181818181818,2.186363636363636,2.304545454545455,2.4227272727272733,2.5409090909090915,2.659090909090909,2.7772727272727273,2.8954545454545455,-3.1015151515151516,-2.9772727272727275,-2.8530303030303035,-2.7287878787878785,-2.6045454545454545,-2.4803030303030305,-2.356060606060606,-2.2318181818181815,-2.1075757575757574,-1.9833333333333334,-1.8590909090909091,-1.7348484848484846,-1.6106060606060606,-1.4863636363636363,-1.362121212121212,-1.2378787878787878,-1.1136363636363635,-0.9893939393939395,-0.8651515151515153,-0.7409090909090907,-0.6166666666666666,-0.4924242424242425,-0.3681818181818179,-0.24393939393939373,-0.11969696969696961,0.05606060606060603,0.17424242424242412,0.29242424242424264,0.4106060606060607,0.5287878787878788,0.6469696969696973,0.7651515151515154,0.8833333333333334,1.0015151515151515,1.1196969696969696,1.2378787878787876,1.3560606060606057,1.4742424242424246,1.5924242424242427,1.710606060606061,1.8287878787878789,1.946969696969697,2.065151515151515,2.183333333333333,2.301515151515152,2.4196969696969703,2.537878787878788,2.6560606060606062,2.7742424242424244,2.8924242424242426,-3.0984848484848486,-2.9742424242424246,-2.85,-2.7257575757575756,-2.6015151515151516,-2.4772727272727275,-2.3530303030303026,-2.2287878787878785,-2.1045454545454545,-1.9803030303030305,-1.856060606060606,-1.7318181818181817,-1.6075757575757574,-1.4833333333333334,-1.3590909090909091,-1.2348484848484846,-1.1106060606060606,-0.9863636363636364,-0.8621212121212123,-0.7378787878787877,-0.6136363636363635,-0.48939393939393944,-0.36515151515151484,-0.2409090909090907,-0.11666666666666659,0.05303030303030301,0.1712121212121211,0.2893939393939396,0.40757575757575765,0.5257575757575758,0.6439393939393943,0.7621212121212123,0.8803030303030304,0.9984848484848485,1.1166666666666665,1.2348484848484846,1.3530303030303028,1.4712121212121216,1.5893939393939398,1.7075757575757577,1.825757575757576,1.9439393939393939,2.062121212121212,2.18030303030303,2.2984848484848492,2.416666666666667,2.534848484848485,2.6530303030303033,2.7712121212121215,2.8893939393939396,-3.0954545454545457,-2.971212121212121,-2.846969696969697,-2.7227272727272727,-2.5984848484848486,-2.4742424242424246,-2.3499999999999996,-2.2257575757575756,-2.1015151515151516,-1.9772727272727273,-1.853030303030303,-1.7287878787878785,-1.6045454545454545,-1.4803030303030305,-1.356060606060606,-1.2318181818181817,-1.1075757575757574,-0.9833333333333334,-0.8590909090909092,-0.7348484848484846,-0.6106060606060606,-0.4863636363636364,-0.36212121212121184,-0.2378787878787877,-0.11363636363636356,0.049999999999999975,0.16818181818181804,0.28636363636363654,0.40454545454545465,0.5227272727272727,0.6409090909090912,0.7590909090909093,0.8772727272727274,0.9954545454545455,1.1136363636363635,1.2318181818181817,1.3499999999999996,1.4681818181818187,1.5863636363636366,1.7045454545454548,1.8227272727272728,1.940909090909091,2.059090909090909,2.1772727272727272,2.295454545454546,2.413636363636364,2.531818181818182,2.6500000000000004,2.7681818181818185,2.8863636363636362,-3.0924242424242423,-2.9681818181818183,-2.843939393939394,-2.7196969696969697,-2.5954545454545452,-2.471212121212121,-2.3469696969696967,-2.2227272727272727,-2.0984848484848486,-1.9742424242424244,-1.8499999999999999,-1.7257575757575756,-1.6015151515151516,-1.4772727272727273,-1.353030303030303,-1.2287878787878785,-1.1045454545454545,-0.9803030303030303,-0.8560606060606062,-0.7318181818181816,-0.6075757575757575,-0.4833333333333334,-0.3590909090909088,-0.23484848484848464,-0.11060606060606051,0.04696969696969694,0.16515151515151502,0.28333333333333355,0.4015151515151516,0.5196969696969697,0.6378787878787882,0.7560606060606063,0.8742424242424244,0.9924242424242424,1.1106060606060606,1.2287878787878785,1.3469696969696967,1.4651515151515155,1.5833333333333337,1.7015151515151516,1.8196969696969698,1.937878787878788,2.056060606060606,2.174242424242424,2.292424242424243,2.410606060606061,2.5287878787878793,2.6469696969696974,2.765151515151515,2.8833333333333333,-3.0893939393939394,-2.9651515151515153,-2.8409090909090913,-2.7166666666666663,-2.5924242424242423,-2.4681818181818183,-2.3439393939393938,-2.2196969696969697,-2.0954545454545452,-1.9712121212121212,-1.846969696969697,-1.7227272727272727,-1.5984848484848484,-1.4742424242424244,-1.3499999999999999,-1.2257575757575756,-1.1015151515151516,-0.9772727272727273,-0.8530303030303032,-0.7287878787878787,-0.6045454545454545,-0.48030303030303034,-0.35606060606060574,-0.23181818181818162,-0.10757575757575749,0.04393939393939391,0.162121212121212,0.2803030303030305,0.39848484848484855,0.5166666666666666,0.6348484848484852,0.7530303030303033,0.8712121212121213,0.9893939393939394,1.1075757575757574,1.2257575757575756,1.3439393939393935,1.4621212121212126,1.5803030303030305,1.6984848484848487,1.8166666666666669,1.9348484848484848,2.0530303030303028,2.171212121212121,2.28939393939394,2.407575757575758,2.5257575757575763,2.643939393939394,2.762121212121212,2.8803030303030304,-3.0863636363636364,-2.9621212121212124,-2.837878787878788,-2.7136363636363634,-2.5893939393939394,-2.4651515151515153,-2.340909090909091,-2.2166666666666663,-2.0924242424242423,-1.9681818181818183,-1.843939393939394,-1.7196969696969695,-1.5954545454545455,-1.4712121212121212,-1.346969696969697,-1.2227272727272727,-1.0984848484848484,-0.9742424242424244,-0.8500000000000002,-0.7257575757575756,-0.6015151515151514,-0.4772727272727273,-0.35303030303030275,-0.2287878787878786,-0.10454545454545447,0.04090909090909088,0.15909090909090895,0.27727272727272745,0.39545454545454556,0.5136363636363637,0.6318181818181822,0.7500000000000002,0.8681818181818183,0.9863636363636363,1.1045454545454545,1.2227272727272724,1.3409090909090906,1.4590909090909094,1.5772727272727276,1.6954545454545458,1.8136363636363637,1.9318181818181819,2.05,2.168181818181818,2.286363636363637,2.404545454545455,2.522727272727273,2.640909090909091,2.7590909090909093,2.8772727272727274,-3.0833333333333335,-2.959090909090909,-2.834848484848485,-2.7106060606060605,-2.5863636363636364,-2.4621212121212124,-2.3378787878787874,-2.2136363636363634,-2.0893939393939394,-1.9651515151515153,-1.8409090909090908,-1.7166666666666666,-1.5924242424242423,-1.4681818181818183,-1.343939393939394,-1.2196969696969695,-1.0954545454545455,-0.9712121212121213,-0.8469696969696972,-0.7227272727272726,-0.5984848484848484,-0.4742424242424243,-0.3499999999999997,-0.22575757575757555,-0.10151515151515142,0.037878787878787845,0.15606060606060593,0.27424242424242445,0.3924242424242425,0.5106060606060606,0.6287878787878791,0.7469696969696972,0.8651515151515152,0.9833333333333333,1.1015151515151513,1.2196969696969695,1.3378787878787874,1.4560606060606065,1.5742424242424247,1.6924242424242426,1.8106060606060608,1.9287878787878787,2.046969696969697,2.165151515151515,2.283333333333334,2.401515151515152,2.51969696969697,2.637878787878788,2.7560606060606063,2.8742424242424245,-3.08030303030303,-2.956060606060606,-2.831818181818182,-2.7075757575757575,-2.5833333333333335,-2.459090909090909,-2.3348484848484845,-2.2106060606060605,-2.0863636363636364,-1.9621212121212122,-1.837878787878788,-1.7136363636363634,-1.5893939393939394,-1.4651515151515153,-1.3409090909090908,-1.2166666666666666,-1.0924242424242423,-0.9681818181818183,-0.8439393939393941,-0.7196969696969695,-0.5954545454545453,-0.47121212121212125,-0.34696969696969665,-0.22272727272727252,-0.0984848484848484,0.034848484848484816,0.1530303030303029,0.2712121212121214,0.38939393939393946,0.5075757575757576,0.6257575757575761,0.7439393939393941,0.8621212121212122,0.9803030303030303,1.0984848484848484,1.2166666666666666,1.3348484848484845,1.4530303030303036,1.5712121212121215,1.6893939393939397,1.8075757575757576,1.9257575757575758,2.043939393939394,2.162121212121212,2.2803030303030307,2.398484848484849,2.516666666666667,2.634848484848485,2.7530303030303034,2.871212121212121,-3.077272727272727,-2.953030303030303,-2.828787878787879,-2.7045454545454546,-2.58030303030303,-2.456060606060606,-2.3318181818181816,-2.2075757575757575,-2.0833333333333335,-1.9590909090909092,-1.8348484848484847,-1.7106060606060605,-1.5863636363636364,-1.4621212121212122,-1.337878787878788,-1.2136363636363634,-1.0893939393939394,-0.9651515151515152,-0.840909090909091,-0.7166666666666665,-0.5924242424242423,-0.4681818181818182,-0.34393939393939366,-0.2196969696969695,-0.09545454545454538,0.03181818181818179,0.14999999999999986,0.26818181818181835,0.38636363636363646,0.5045454545454545,0.622727272727273,0.7409090909090911,0.8590909090909092,0.9772727272727273,1.0954545454545452,1.2136363636363634,1.3318181818181816,1.4500000000000004,1.5681818181818186,1.6863636363636365,1.8045454545454547,1.9227272727272728,2.040909090909091,2.1590909090909087,2.277272727272728,2.395454545454546,2.513636363636364,2.6318181818181823,2.75,2.868181818181818,-3.074242424242424,-2.95,-2.825757575757576,-2.701515151515151,-2.577272727272727,-2.453030303030303,-2.3287878787878786,-2.2045454545454546,-2.08030303030303,-1.956060606060606,-1.8318181818181818,-1.7075757575757575,-1.5833333333333333,-1.4590909090909092,-1.3348484848484847,-1.2106060606060605,-1.0863636363636364,-0.9621212121212122,-0.837878787878788,-0.7136363636363634,-0.5893939393939394,-0.4651515151515152,-0.3409090909090906,-0.21666666666666648,-0.09242424242424234,0.02878787878787876,0.14696969696969683,0.26515151515151536,0.3833333333333334,0.5015151515151515,0.61969696969697,0.7378787878787881,0.8560606060606062,0.9742424242424242,1.0924242424242423,1.2106060606060605,1.3287878787878784,1.4469696969696975,1.5651515151515154,1.6833333333333336,1.8015151515151517,1.9196969696969697,2.0378787878787876,2.156060606060606,2.274242424242425,2.392424242424243,2.510606060606061,2.628787878787879,2.746969696969697,2.8651515151515152,-3.0712121212121213,-2.9469696969696972,-2.8227272727272728,-2.6984848484848483,-2.574242424242424,-2.45,-2.3257575757575757,-2.201515151515151,-2.077272727272727,-1.9530303030303031,-1.8287878787878789,-1.7045454545454544,-1.5803030303030303,-1.456060606060606,-1.3318181818181818,-1.2075757575757575,-1.0833333333333333,-0.9590909090909091,-0.8348484848484851,-0.7106060606060605,-0.5863636363636363,-0.46212121212121215,-0.33787878787878756,-0.21363636363636346,-0.08939393939393932,0.025757575757575736,0.1439393939393938,0.2621212121212123,0.3803030303030304,0.4984848484848485,0.616666666666667,0.7348484848484851,0.8530303030303031,0.9712121212121212,1.0893939393939394,1.2075757575757573,1.3257575757575755,1.4439393939393943,1.5621212121212125,1.6803030303030306,1.7984848484848486,1.9166666666666667,2.0348484848484847,2.153030303030303,2.271212121212122,2.38939393939394,2.507575757575758,2.625757575757576,2.743939393939394,2.8621212121212123,-3.0681818181818183,-2.943939393939394,-2.81969696969697,-2.6954545454545453,-2.5712121212121213,-2.4469696969696972,-2.3227272727272723,-2.1984848484848483,-2.074242424242424,-1.9500000000000002,-1.8257575757575757,-1.7015151515151514,-1.5772727272727272,-1.4530303030303031,-1.3287878787878786,-1.2045454545454544,-1.0803030303030303,-0.956060606060606,-0.831818181818182,-0.7075757575757574,-0.5833333333333333,-0.4590909090909091,-0.33484848484848456,-0.2106060606060604,-0.08636363636363628,0.022727272727272697,0.14090909090909076,0.25909090909090926,0.37727272727272737,0.4954545454545454,0.613636363636364,0.731818181818182,0.8500000000000001,0.9681818181818181,1.0863636363636362,1.2045454545454544,1.3227272727272723,1.4409090909090914,1.5590909090909095,1.6772727272727275,1.7954545454545456,1.9136363636363636,2.0318181818181817,2.15,2.268181818181819,2.3863636363636367,2.504545454545455,2.622727272727273,2.740909090909091,2.8590909090909093,-3.065151515151515,-2.940909090909091,-2.816666666666667,-2.6924242424242424,-2.5681818181818183,-2.443939393939394,-2.3196969696969694,-2.1954545454545453,-2.0712121212121213,-1.946969696969697,-1.8227272727272728,-1.6984848484848483,-1.5742424242424242,-1.4500000000000002,-1.3257575757575757,-1.2015151515151514,-1.0772727272727272,-0.9530303030303031,-0.828787878787879,-0.7045454545454544,-0.5803030303030302,-0.4560606060606061,-0.3318181818181815,-0.20757575757575739,-0.08333333333333325,0.01969696969696967,0.13787878787878774,0.25606060606060627,0.3742424242424243,0.49242424242424243,0.6106060606060609,0.728787878787879,0.846969696969697,0.9651515151515151,1.0833333333333333,1.2015151515151512,1.3196969696969694,1.4378787878787884,1.5560606060606064,1.6742424242424245,1.7924242424242425,1.9106060606060606,2.028787878787879,2.146969696969697,2.2651515151515156,2.3833333333333337,2.501515151515152,2.61969696969697,2.7378787878787882,2.856060606060606,-3.062121212121212,-2.937878787878788,-2.813636363636364,-2.6893939393939394,-2.565151515151515,-2.440909090909091,-2.3166666666666664,-2.1924242424242424,-2.0681818181818183,-1.943939393939394,-1.8196969696969696,-1.6954545454545453,-1.571212121212121,-1.446969696969697,-1.3227272727272728,-1.1984848484848483,-1.0742424242424242,-0.9500000000000001,-0.8257575757575759,-0.7015151515151513,-0.5772727272727272,-0.45303030303030306,-0.32878787878787846,-0.20454545454545436,-0.08030303030303022,0.016666666666666642,0.13484848484848472,0.2530303030303032,0.3712121212121213,0.4893939393939394,0.6075757575757579,0.7257575757575759,0.843939393939394,0.9621212121212122,1.08030303030303,1.1984848484848483,1.3166666666666664,1.4348484848484853,1.5530303030303034,1.6712121212121214,1.7893939393939395,1.9075757575757577,2.025757575757576,2.1439393939393936,2.2621212121212126,2.380303030303031,2.498484848484849,2.616666666666667,2.734848484848485,2.853030303030303,-3.059090909090909,-2.934848484848485,-2.810606060606061,-2.686363636363636,-2.562121212121212,-2.437878787878788,-2.3136363636363635,-2.1893939393939394,-2.065151515151515,-1.940909090909091,-1.8166666666666667,-1.6924242424242422,-1.5681818181818181,-1.443939393939394,-1.3196969696969696,-1.1954545454545453,-1.071212121212121,-0.946969696969697,-0.8227272727272729,-0.6984848484848483,-0.5742424242424241,-0.45,-0.32575757575757547,-0.20151515151515131,-0.07727272727272719,0.013636363636363603,0.13181818181818167,0.25000000000000017,0.3681818181818183,0.48636363636363633,0.6045454545454548,0.7227272727272729,0.840909090909091,0.9590909090909091,1.0772727272727272,1.1954545454545453,1.3136363636363633,1.4318181818181823,1.5500000000000003,1.6681818181818184,1.7863636363636366,1.9045454545454545,2.0227272727272725,2.1409090909090907,2.2590909090909097,2.377272727272728,2.495454545454546,2.6136363636363638,2.731818181818182,2.85,-3.056060606060606,-2.931818181818182,-2.8075757575757576,-2.683333333333333,-2.559090909090909,-2.434848484848485,-2.3106060606060606,-2.186363636363636,-2.062121212121212,-1.937878787878788,-1.8136363636363635,-1.6893939393939392,-1.5651515151515152,-1.440909090909091,-1.3166666666666667,-1.1924242424242422,-1.0681818181818181,-0.943939393939394,-0.8196969696969698,-0.6954545454545453,-0.5712121212121212,-0.446969696969697,-0.3227272727272724,-0.1984848484848483,-0.07424242424242415,0.010606060606060574,0.12878787878787865,0.24696969696969717,0.3651515151515152,0.48333333333333334,0.6015151515151518,0.71969696969697,0.837878787878788,0.956060606060606,1.0742424242424242,1.1924242424242422,1.3106060606060603,1.4287878787878792,1.5469696969696973,1.6651515151515155,1.7833333333333334,1.9015151515151516,2.0196969696969695,2.1378787878787877,2.2560606060606068,2.374242424242425,2.4924242424242427,2.610606060606061,2.728787878787879,2.846969696969697,-3.053030303030303,-2.9287878787878787,-2.8045454545454547,-2.68030303030303,-2.556060606060606,-2.431818181818182,-2.307575757575757,-2.183333333333333,-2.059090909090909,-1.934848484848485,-1.8106060606060606,-1.6863636363636363,-1.562121212121212,-1.437878787878788,-1.3136363636363635,-1.1893939393939392,-1.0651515151515152,-0.9409090909090909,-0.8166666666666669,-0.6924242424242423,-0.5681818181818181,-0.44393939393939397,-0.31969696969696937,-0.19545454545454527,-0.07121212121212113,0.007575757575757545,0.12575757575757562,0.24393939393939412,0.36212121212121223,0.4803030303030303,0.5984848484848488,0.7166666666666669,0.834848484848485,0.953030303030303,1.071212121212121,1.1893939393939392,1.3075757575757572,1.4257575757575762,1.5439393939393944,1.6621212121212123,1.7803030303030305,1.8984848484848484,2.0166666666666666,2.1348484848484848,2.253030303030304,2.3712121212121215,2.4893939393939397,2.607575757575758,2.725757575757576,2.8439393939393938,-3.05,-2.925757575757576,-2.8015151515151517,-2.6772727272727272,-2.553030303030303,-2.4287878787878787,-2.3045454545454542,-2.18030303030303,-2.056060606060606,-1.9318181818181819,-1.8075757575757576,-1.6833333333333331,-1.559090909090909,-1.4348484848484848,-1.3106060606060606,-1.1863636363636363,-1.062121212121212,-0.937878787878788,-0.8136363636363638,-0.6893939393939392,-0.5651515151515151,-0.440909090909091,-0.3166666666666664,-0.19242424242424222,-0.0681818181818181,0.004545454545454519,0.12272727272727259,0.2409090909090911,0.3590909090909092,0.47727272727272724,0.5954545454545458,0.7136363636363638,0.8318181818181819,0.95,1.0681818181818181,1.186363636363636,1.3045454545454542,1.4227272727272733,1.5409090909090912,1.6590909090909094,1.7772727272727273,1.8954545454545455,2.0136363636363637,2.131818181818182,2.2500000000000004,2.3681818181818186,2.4863636363636368,2.604545454545455,2.7227272727272727,2.840909090909091,-3.046969696969697,-2.922727272727273,-2.798484848484849,-2.6742424242424243,-2.55,-2.425757575757576,-2.3015151515151513,-2.1772727272727272,-2.053030303030303,-1.928787878787879,-1.8045454545454545,-1.6803030303030302,-1.556060606060606,-1.4318181818181819,-1.3075757575757576,-1.1833333333333331,-1.059090909090909,-0.9348484848484849,-0.8106060606060608,-0.6863636363636362,-0.562121212121212,-0.4378787878787879,-0.3136363636363633,-0.1893939393939392,-0.06515151515151507,0.0015151515151514867,0.11969696969696957,0.23787878787878808,0.3560606060606062,0.47424242424242424,0.5924242424242427,0.7106060606060608,0.8287878787878789,0.946969696969697,1.065151515151515,1.1833333333333331,1.3015151515151513,1.4196969696969701,1.5378787878787883,1.6560606060606062,1.7742424242424244,1.8924242424242426,2.0106060606060607,2.1287878787878785,2.2469696969696975,2.3651515151515157,2.483333333333334,2.6015151515151516,2.7196969696969697,2.837878787878788,-3.043939393939394,-2.91969696969697,-2.795454545454546,-2.671212121212121,-2.546969696969697,-2.422727272727273,-2.2984848484848484,-2.1742424242424243,-2.05,-1.9257575757575758,-1.8015151515151515,-1.677272727272727,-1.553030303030303,-1.428787878787879,-1.3045454545454545,-1.1803030303030302,-1.056060606060606,-0.9318181818181819,-0.8075757575757577,-0.6833333333333331,-0.5590909090909091,-0.4348484848484849,-0.31060606060606033,-0.18636363636363618,-0.06212121212121204,-0.0015151515151515388,0.11666666666666654,0.23484848484848506,0.35303030303030314,0.4712121212121212,0.5893939393939397,0.7075757575757577,0.8257575757575759,0.943939393939394,1.062121212121212,1.1803030303030302,1.2984848484848481,1.4166666666666672,1.5348484848484851,1.6530303030303033,1.7712121212121212,1.8893939393939394,2.0075757575757573,2.1257575757575755,2.2439393939393946,2.3621212121212127,2.4803030303030305,2.5984848484848486,2.716666666666667,2.834848484848485,-3.040909090909091,-2.916666666666667,-2.7924242424242425,-2.668181818181818,-2.543939393939394,-2.41969696969697,-2.2954545454545454,-2.171212121212121,-2.046969696969697,-1.9227272727272728,-1.7984848484848484,-1.674242424242424,-1.55,-1.4257575757575758,-1.3015151515151515,-1.177272727272727,-1.053030303030303,-0.9287878787878788,-0.8045454545454547,-0.6803030303030302,-0.556060606060606,-0.4318181818181819,-0.3075757575757573,-0.18333333333333315,-0.05909090909090902,-0.004545454545454568,0.11363636363636351,0.23181818181818203,0.3500000000000001,0.46818181818181814,0.5863636363636366,0.7045454545454548,0.8227272727272729,0.9409090909090909,1.059090909090909,1.177272727272727,1.2954545454545452,1.413636363636364,1.5318181818181822,1.6500000000000001,1.7681818181818183,1.8863636363636365,2.0045454545454544,2.1227272727272726,2.2409090909090916,2.3590909090909093,2.4772727272727275,2.5954545454545457,2.713636363636364,2.831818181818182,-3.037878787878788,-2.9136363636363636,-2.7893939393939395,-2.665151515151515,-2.540909090909091,-2.416666666666667,-2.292424242424242,-2.168181818181818,-2.043939393939394,-1.9196969696969697,-1.7954545454545454,-1.6712121212121211,-1.5469696969696969,-1.4227272727272728,-1.2984848484848484,-1.174242424242424,-1.0499999999999998,-0.9257575757575758,-0.8015151515151516,-0.677272727272727,-0.553030303030303,-0.42878787878787883,-0.30454545454545423,-0.1803030303030301,-0.056060606060605964,-0.007575757575757604,0.11060606060606046,0.22878787878787898,0.34696969696969704,0.46515151515151515,0.5833333333333336,0.7015151515151518,0.8196969696969698,0.9378787878787879,1.056060606060606,1.174242424242424,1.292424242424242,1.410606060606061,1.528787878787879,1.6469696969696972,1.7651515151515154,1.8833333333333333,2.0015151515151515,2.1196969696969696,2.2378787878787882,2.3560606060606064,2.4742424242424246,2.5924242424242427,2.710606060606061,2.8287878787878786,-3.0348484848484847,-2.9106060606060606,-2.7863636363636366,-2.662121212121212,-2.537878787878788,-2.4136363636363636,-2.289393939393939,-2.165151515151515,-2.040909090909091,-1.9166666666666667,-1.7924242424242425,-1.668181818181818,-1.543939393939394,-1.4196969696969697,-1.2954545454545454,-1.171212121212121,-1.0469696969696969,-0.9227272727272727,-0.7984848484848487,-0.6742424242424241,-0.5499999999999999,-0.4257575757575758,-0.3015151515151512,-0.17727272727272708,-0.05303030303030294,-0.01060606060606064,0.10757575757575744,0.22575757575757593,0.343939393939394,0.4621212121212121,0.5803030303030307,0.6984848484848487,0.8166666666666668,0.9348484848484848,1.053030303030303,1.171212121212121,1.289393939393939,1.407575757575758,1.525757575757576,1.6439393939393943,1.7621212121212122,1.8803030303030304,1.9984848484848483,2.1166666666666663,2.2348484848484853,2.3530303030303035,2.4712121212121216,2.58939393939394,2.7075757575757575,2.8257575757575757,-3.0318181818181817,-2.9075757575757577,-2.7833333333333337,-2.659090909090909,-2.5348484848484847,-2.4106060606060606,-2.286363636363636,-2.162121212121212,-2.037878787878788,-1.9136363636363638,-1.7893939393939393,-1.665151515151515,-1.5409090909090908,-1.4166666666666667,-1.2924242424242425,-1.168181818181818,-1.043939393939394,-0.9196969696969698,-0.7954545454545456,-0.671212121212121,-0.5469696969696969,-0.4227272727272728,-0.2984848484848482,-0.17424242424242403,-0.04999999999999991,-0.013636363636363669,0.10454545454545441,0.2227272727272729,0.340909090909091,0.45909090909090905,0.5772727272727276,0.6954545454545457,0.8136363636363637,0.9318181818181818,1.0499999999999998,1.168181818181818,1.2863636363636362,1.404545454545455,1.5227272727272732,1.640909090909091,1.7590909090909093,1.8772727272727272,1.9954545454545454,2.1136363636363633,2.2318181818181824,2.3500000000000005,2.4681818181818187,2.586363636363637,2.7045454545454546,2.8227272727272728,-3.028787878787879,-2.9045454545454548,-2.7803030303030307,-2.656060606060606,-2.5318181818181817,-2.4075757575757577,-2.283333333333333,-2.159090909090909,-2.0348484848484847,-1.9106060606060606,-1.7863636363636364,-1.6621212121212119,-1.5378787878787878,-1.4136363636363638,-1.2893939393939393,-1.165151515151515,-1.0409090909090908,-0.9166666666666667,-0.7924242424242426,-0.668181818181818,-0.5439393939393938,-0.41969696969696973,-0.29545454545454514,-0.17121212121212104,-0.046969696969696884,-0.01666666666666669,0.10151515151515138,0.2196969696969699,0.337878787878788,0.45606060606060606,0.5742424242424246,0.6924242424242426,0.8106060606060607,0.9287878787878787,1.0469696969696969,1.165151515151515,1.283333333333333,1.401515151515152,1.51969696969697,1.6378787878787882,1.756060606060606,1.8742424242424243,1.9924242424242424,2.1106060606060604,2.2287878787878794,2.3469696969696976,2.4651515151515158,2.5833333333333335,2.7015151515151516,2.81969696969697,-3.025757575757576,-2.901515151515152,-2.7772727272727273,-2.653030303030303,-2.528787878787879,-2.4045454545454548,-2.2803030303030303,-2.156060606060606,-2.0318181818181817,-1.9075757575757577,-1.7833333333333332,-1.659090909090909,-1.534848484848485,-1.4106060606060606,-1.2863636363636364,-1.1621212121212119,-1.0378787878787878,-0.9136363636363637,-0.7893939393939395,-0.6651515151515149,-0.5409090909090908,-0.4166666666666667,-0.29242424242424214,-0.168181818181818,-0.043939393939393855,-0.019696969696969727,0.09848484848484837,0.21666666666666687,0.33484848484848495,0.453030303030303,0.5712121212121215,0.6893939393939396,0.8075757575757576,0.9257575757575758,1.043939393939394,1.1621212121212119,1.28030303030303,1.3984848484848489,1.516666666666667,1.634848484848485,1.7530303030303032,1.8712121212121213,1.9893939393939393,2.1075757575757574,2.2257575757575765,2.343939393939394,2.4621212121212124,2.5803030303030305,2.6984848484848487,2.816666666666667,-3.022727272727273,-2.8984848484848484,-2.7742424242424244,-2.65,-2.525757575757576,-2.401515151515152,-2.277272727272727,-2.153030303030303,-2.028787878787879,-1.9045454545454545,-1.7803030303030303,-1.656060606060606,-1.5318181818181817,-1.4075757575757577,-1.2833333333333332,-1.159090909090909,-1.0348484848484847,-0.9106060606060606,-0.7863636363636365,-0.6621212121212119,-0.5378787878787878,-0.4136363636363637,-0.2893939393939391,-0.16515151515151497,-0.04090909090909083,-0.022727272727272756,0.09545454545454532,0.21363636363636385,0.3318181818181819,0.44999999999999996,0.5681818181818185,0.6863636363636365,0.8045454545454547,0.9227272727272727,1.0409090909090908,1.159090909090909,1.277272727272727,1.395454545454546,1.513636363636364,1.631818181818182,1.7500000000000002,1.8681818181818182,1.9863636363636363,2.1045454545454545,2.222727272727273,2.3409090909090913,2.4590909090909094,2.5772727272727276,2.6954545454545458,2.8136363636363635,-3.0196969696969695,-2.8954545454545455,-2.7712121212121215,-2.646969696969697,-2.522727272727273,-2.3984848484848484,-2.274242424242424,-2.15,-2.025757575757576,-1.9015151515151516,-1.7772727272727273,-1.6530303030303028,-1.5287878787878788,-1.4045454545454545,-1.2803030303030303,-1.1560606060606058,-1.0318181818181817,-0.9075757575757576,-0.7833333333333335,-0.659090909090909,-0.5348484848484848,-0.41060606060606064,-0.28636363636363604,-0.16212121212121194,-0.037878787878787804,-0.025757575757575785,0.0924242424242423,0.2106060606060608,0.32878787878787885,0.44696969696969696,0.5651515151515155,0.6833333333333336,0.8015151515151516,0.9196969696969697,1.0378787878787878,1.1560606060606058,1.274242424242424,1.3924242424242428,1.510606060606061,1.6287878787878791,1.746969696969697,1.8651515151515152,1.9833333333333332,2.1015151515151516,2.21969696969697,2.3378787878787883,2.4560606060606065,2.5742424242424247,2.6924242424242424,2.8106060606060606,-3.0166666666666666,-2.8924242424242426,-2.7681818181818185,-2.6439393939393936,-2.5196969696969695,-2.3954545454545455,-2.271212121212121,-2.146969696969697,-2.0227272727272725,-1.8984848484848484,-1.7742424242424242,-1.65,-1.5257575757575756,-1.4015151515151516,-1.2772727272727271,-1.1530303030303028,-1.0287878787878788,-0.9045454545454545,-0.7803030303030305,-0.6560606060606059,-0.5318181818181817,-0.4075757575757576,-0.283333333333333,-0.1590909090909089,-0.03484848484848475,-0.028787878787878834,0.08939393939393925,0.20757575757575775,0.32575757575757586,0.4439393939393939,0.5621212121212125,0.6803030303030305,0.7984848484848486,0.9166666666666666,1.0348484848484847,1.1530303030303028,1.2712121212121208,1.3893939393939398,1.5075757575757578,1.625757575757576,1.7439393939393941,1.862121212121212,1.9803030303030302,2.098484848484848,2.2166666666666672,2.3348484848484854,2.4530303030303036,2.5712121212121213,2.6893939393939394,2.8075757575757576,-3.0136363636363637,-2.8893939393939396,-2.7651515151515156,-2.6409090909090907,-2.5166666666666666,-2.3924242424242426,-2.268181818181818,-2.1439393939393936,-2.0196969696969695,-1.8954545454545455,-1.7712121212121212,-1.6469696969696968,-1.5227272727272727,-1.3984848484848484,-1.2742424242424242,-1.15,-1.0257575757575756,-0.9015151515151516,-0.7772727272727274,-0.6530303030303028,-0.5287878787878787,-0.4045454545454546,-0.28030303030303,-0.15606060606060584,-0.03181818181818172,-0.03181818181818186,0.08636363636363623,0.20454545454545472,0.3227272727272728,0.4409090909090909,0.5590909090909094,0.6772727272727275,0.7954545454545455,0.9136363636363636,1.0318181818181817,1.1499999999999997,1.2681818181818179,1.3863636363636367,1.5045454545454549,1.622727272727273,1.740909090909091,1.8590909090909091,1.977272727272727,2.0954545454545452,2.2136363636363643,2.3318181818181825,2.45,2.5681818181818183,2.6863636363636365,2.8045454545454547,-3.0106060606060607,-2.8863636363636367,-2.762121212121212,-2.6378787878787877,-2.5136363636363637,-2.3893939393939396,-2.2651515151515147,-2.1409090909090907,-2.0166666666666666,-1.8924242424242426,-1.768181818181818,-1.6439393939393938,-1.5196969696969695,-1.3954545454545455,-1.2712121212121212,-1.1469696969696968,-1.0227272727272727,-0.8984848484848486,-0.7742424242424244,-0.6499999999999998,-0.5257575757575756,-0.40151515151515155,-0.27727272727272695,-0.15303030303030282,-0.028787878787878703,-0.03484848484848488,0.08333333333333319,0.2015151515151517,0.31969696969696976,0.43787878787878787,0.5560606060606064,0.6742424242424244,0.7924242424242425,0.9106060606060606,1.0287878787878786,1.1469696969696968,1.265151515151515,1.3833333333333337,1.501515151515152,1.6196969696969699,1.737878787878788,1.8560606060606062,1.9742424242424241,2.0924242424242423,2.2106060606060614,2.328787878787879,2.4469696969696972,2.5651515151515154,2.6833333333333336,2.8015151515151517,-3.007575757575758,-2.8833333333333333,-2.7590909090909093,-2.6348484848484848,-2.5106060606060607,-2.3863636363636362,-2.2621212121212118,-2.1378787878787877,-2.0136363636363637,-1.8893939393939394,-1.7651515151515151,-1.6409090909090907,-1.5166666666666666,-1.3924242424242426,-1.268181818181818,-1.1439393939393938,-1.0196969696969695,-0.8954545454545455,-0.7712121212121213,-0.6469696969696968,-0.5227272727272727,-0.3984848484848485,-0.27424242424242395,-0.1499999999999998,-0.025757575757575674,-0.037878787878787915,0.08030303030303017,0.19848484848484865,0.31666666666666676,0.4348484848484848,0.5530303030303033,0.6712121212121214,0.7893939393939395,0.9075757575757576,1.0257575757575756,1.1439393939393938,1.2621212121212118,1.3803030303030308,1.4984848484848488,1.616666666666667,1.7348484848484849,1.853030303030303,1.9712121212121212,2.0893939393939394,2.207575757575758,2.325757575757576,2.4439393939393943,2.5621212121212125,2.6803030303030306,2.7984848484848484,-3.0045454545454544,-2.8803030303030304,-2.7560606060606063,-2.631818181818182,-2.5075757575757573,-2.3833333333333333,-2.259090909090909,-2.1348484848484848,-2.0106060606060607,-1.8863636363636365,-1.762121212121212,-1.6378787878787877,-1.5136363636363637,-1.3893939393939394,-1.2651515151515151,-1.1409090909090907,-1.0166666666666666,-0.8924242424242425,-0.7681818181818183,-0.6439393939393938,-0.5196969696969697,-0.3954545454545455,-0.2712121212121209,-0.14696969696969678,-0.02272727272727265,-0.04090909090909094,0.07727272727272715,0.19545454545454566,0.3136363636363637,0.43181818181818177,0.5500000000000003,0.6681818181818184,0.7863636363636365,0.9045454545454545,1.0227272727272727,1.1409090909090907,1.2590909090909088,1.3772727272727276,1.4954545454545458,1.6136363636363638,1.731818181818182,1.85,1.968181818181818,2.086363636363636,2.204545454545455,2.322727272727273,2.4409090909090914,2.5590909090909095,2.6772727272727272,2.7954545454545454,-3.0015151515151515,-2.8772727272727274,-2.7530303030303034,-2.6287878787878785,-2.5045454545454544,-2.3803030303030304,-2.256060606060606,-2.131818181818182,-2.0075757575757573,-1.8833333333333333,-1.759090909090909,-1.6348484848484848,-1.5106060606060605,-1.3863636363636365,-1.262121212121212,-1.1378787878787877,-1.0136363636363637,-0.8893939393939394,-0.7651515151515154,-0.6409090909090908,-0.5166666666666666,-0.39242424242424245,-0.26818181818181785,-0.14393939393939376,-0.019696969696969616,-0.04393939393939396,0.07424242424242411,0.1924242424242426,0.31060606060606066,0.4287878787878788,0.5469696969696973,0.6651515151515154,0.7833333333333334,0.9015151515151515,1.0196969696969695,1.1378787878787877,1.2560606060606057,1.3742424242424247,1.4924242424242429,1.6106060606060608,1.728787878787879,1.846969696969697,1.965151515151515,2.083333333333333,2.201515151515152,2.3196969696969703,2.4378787878787884,2.556060606060606,2.6742424242424243,2.7924242424242425]}},\"id\":\"04e39605-b980-42df-aa94-9aeb972c2dee\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"3c01c808-2d6d-4994-b1a0-78b3c02a2f8b\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null},\"id\":\"f014b591-873e-4080-a2b3-987f92b4c903\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"69d877e6-107b-4159-b126-d07d020b8749\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"4c77f537-5d4a-48cc-82b4-5fd54944d25b\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1d16edb2-4ff1-4417-9ac0-f43cf2ad4736\",\"type\":\"MultiLine\"},\"selection_glyph\":null},\"id\":\"865be683-3062-4444-96f2-b6d11a467f49\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":{\"field\":\"line_color\"},\"line_width\":{\"value\":2},\"x0\":{\"field\":\"x0\"},\"x1\":{\"field\":\"x1\"},\"y0\":{\"field\":\"y0\"},\"y1\":{\"field\":\"y1\"}},\"id\":\"badf88dd-1ff4-454f-afdc-f0ff6862a608\",\"type\":\"Segment\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c180692d-46da-4b1a-b518-fee71d903327\",\"type\":\"BasicTicker\"},\"visible\":false},\"id\":\"a46e206e-0906-4efa-b730-82c10a7cfa7a\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"cbf851a9-4de9-40ac-96bf-0fe6700bfd2b\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a2a16484-7905-4aa3-ab1f-da8a36746293\",\"type\":\"HelpTool\"},{\"attributes\":{\"callback\":null,\"end\":3,\"start\":-3},\"id\":\"cadfb20e-071a-4565-b7ca-9fd326461690\",\"type\":\"Range1d\"},{\"attributes\":{\"plot\":{\"id\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8b1ec17e-8bf8-4c0f-8f88-9f061996d38a\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"4534e8b6-4680-40fe-b2bd-7dc474098b34\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"2e74bb01-7eb0-45fc-9fce-d7b6abd4ed44\",\"type\":\"BasicTickFormatter\"}],\"root_ids\":[\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.1\"}};\n",
" var render_items = [{\"docid\":\"03e7a648-ca7c-4d04-9144-1c679ef7ab44\",\"elementid\":\"3fccc182-c7d3-4fed-b826-0e71173241a1\",\"modelid\":\"3ab4c6d3-79b6-4092-ab94-94812e467d5f\",\"notebook_comms_target\":\"877cd960-3ec7-4e5a-9f65-5c9924ad7512\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"def streamlines(x, y, u, v, density=1):\n",
" ''' Return streamlines of a vector flow.\n",
"\n",
" * x and y are 1d arrays defining an *evenly spaced* grid.\n",
" * u and v are 2d arrays (shape [y,x]) giving velocities.\n",
" * density controls the closeness of the streamlines. For different\n",
" densities in each direction, use a tuple or list [densityx, densityy].\n",
"\n",
" '''\n",
"\n",
" ## Set up some constants - size of the grid used.\n",
" NGX = len(x)\n",
" NGY = len(y)\n",
"\n",
" ## Constants used to convert between grid index coords and user coords.\n",
" DX = x[1]-x[0]\n",
" DY = y[1]-y[0]\n",
" XOFF = x[0]\n",
" YOFF = y[0]\n",
"\n",
" ## Now rescale velocity onto axes-coordinates\n",
" u = u / (x[-1]-x[0])\n",
" v = v / (y[-1]-y[0])\n",
" speed = np.sqrt(u*u+v*v)\n",
" ## s (path length) will now be in axes-coordinates, but we must\n",
" ## rescale u for integrations.\n",
" u *= NGX\n",
" v *= NGY\n",
" ## Now u and v in grid-coordinates.\n",
"\n",
" NBX = int(30*density)\n",
" NBY = int(30*density)\n",
" blank = np.zeros((NBY,NBX))\n",
"\n",
" bx_spacing = NGX/float(NBX-1)\n",
" by_spacing = NGY/float(NBY-1)\n",
"\n",
" def blank_pos(xi, yi):\n",
" return int((xi / bx_spacing) + 0.5), \\\n",
" int((yi / by_spacing) + 0.5)\n",
"\n",
" def value_at(a, xi, yi):\n",
" if type(xi) == np.ndarray:\n",
" x = xi.astype(np.int)\n",
" y = yi.astype(np.int)\n",
" else:\n",
" x = np.int(xi)\n",
" y = np.int(yi)\n",
" a00 = a[y,x]\n",
" a01 = a[y,x+1]\n",
" a10 = a[y+1,x]\n",
" a11 = a[y+1,x+1]\n",
" xt = xi - x\n",
" yt = yi - y\n",
" a0 = a00*(1-xt) + a01*xt\n",
" a1 = a10*(1-xt) + a11*xt\n",
" return a0*(1-yt) + a1*yt\n",
"\n",
" def rk4_integrate(x0, y0):\n",
" ## This function does RK4 forward and back trajectories from\n",
" ## the initial conditions, with the odd 'blank array'\n",
" ## termination conditions. TODO tidy the integration loops.\n",
"\n",
" def f(xi, yi):\n",
" dt_ds = 1./value_at(speed, xi, yi)\n",
" ui = value_at(u, xi, yi)\n",
" vi = value_at(v, xi, yi)\n",
" return ui*dt_ds, vi*dt_ds\n",
"\n",
" def g(xi, yi):\n",
" dt_ds = 1./value_at(speed, xi, yi)\n",
" ui = value_at(u, xi, yi)\n",
" vi = value_at(v, xi, yi)\n",
" return -ui*dt_ds, -vi*dt_ds\n",
"\n",
" check = lambda xi, yi: xi>=0 and xi<NGX-1 and yi>=0 and yi<NGY-1\n",
"\n",
" bx_changes = []\n",
" by_changes = []\n",
"\n",
" ## Integrator function\n",
" def rk4(x0, y0, f):\n",
" ds = 0.01 #min(1./NGX, 1./NGY, 0.01)\n",
" stotal = 0\n",
" xi = x0\n",
" yi = y0\n",
" xb, yb = blank_pos(xi, yi)\n",
" xf_traj = []\n",
" yf_traj = []\n",
" while check(xi, yi):\n",
" # Time step. First save the point.\n",
" xf_traj.append(xi)\n",
" yf_traj.append(yi)\n",
" # Next, advance one using RK4\n",
" try:\n",
" k1x, k1y = f(xi, yi)\n",
" k2x, k2y = f(xi + .5*ds*k1x, yi + .5*ds*k1y)\n",
" k3x, k3y = f(xi + .5*ds*k2x, yi + .5*ds*k2y)\n",
" k4x, k4y = f(xi + ds*k3x, yi + ds*k3y)\n",
" except IndexError:\n",
" # Out of the domain on one of the intermediate steps\n",
" break\n",
" xi += ds*(k1x+2*k2x+2*k3x+k4x) / 6.\n",
" yi += ds*(k1y+2*k2y+2*k3y+k4y) / 6.\n",
" # Final position might be out of the domain\n",
" if not check(xi, yi): break\n",
" stotal += ds\n",
" # Next, if s gets to thres, check blank.\n",
" new_xb, new_yb = blank_pos(xi, yi)\n",
" if new_xb != xb or new_yb != yb:\n",
" # New square, so check and colour. Quit if required.\n",
" if blank[new_yb,new_xb] == 0:\n",
" blank[new_yb,new_xb] = 1\n",
" bx_changes.append(new_xb)\n",
" by_changes.append(new_yb)\n",
" xb = new_xb\n",
" yb = new_yb\n",
" else:\n",
" break\n",
" if stotal > 2:\n",
" break\n",
" return stotal, xf_traj, yf_traj\n",
"\n",
" integrator = rk4\n",
"\n",
" sf, xf_traj, yf_traj = integrator(x0, y0, f)\n",
" sb, xb_traj, yb_traj = integrator(x0, y0, g)\n",
" stotal = sf + sb\n",
" x_traj = xb_traj[::-1] + xf_traj[1:]\n",
" y_traj = yb_traj[::-1] + yf_traj[1:]\n",
"\n",
" ## Tests to check length of traj. Remember, s in units of axes.\n",
" if len(x_traj) < 1: return None\n",
" if stotal > .2:\n",
" initxb, inityb = blank_pos(x0, y0)\n",
" blank[inityb, initxb] = 1\n",
" return x_traj, y_traj\n",
" else:\n",
" for xb, yb in zip(bx_changes, by_changes):\n",
" blank[yb, xb] = 0\n",
" return None\n",
"\n",
" ## A quick function for integrating trajectories if blank==0.\n",
" trajectories = []\n",
" def traj(xb, yb):\n",
" if xb < 0 or xb >= NBX or yb < 0 or yb >= NBY:\n",
" return\n",
" if blank[yb, xb] == 0:\n",
" t = rk4_integrate(xb*bx_spacing, yb*by_spacing)\n",
" if t is not None:\n",
" trajectories.append(t)\n",
"\n",
" ## Now we build up the trajectory set. I've found it best to look\n",
" ## for blank==0 along the edges first, and work inwards.\n",
" for indent in range((max(NBX,NBY))//2):\n",
" for xi in range(max(NBX,NBY)-2*indent):\n",
" traj(xi+indent, indent)\n",
" traj(xi+indent, NBY-1-indent)\n",
" traj(indent, xi+indent)\n",
" traj(NBX-1-indent, xi+indent)\n",
"\n",
" xs = [np.array(t[0])*DX+XOFF for t in trajectories]\n",
" ys = [np.array(t[1])*DY+YOFF for t in trajectories]\n",
"\n",
" return xs, ys\n",
"\n",
"xx = np.linspace(-3, 3, 100)\n",
"yy = np.linspace(-3, 3, 100)\n",
"\n",
"Y, X = np.meshgrid(xx, yy)\n",
"U = Y\n",
"V = dv(1, X, Y)\n",
"speed = np.sqrt(U*U + V*V)\n",
"theta = np.arctan(V/U)\n",
"\n",
"x0 = X[::2, ::2].flatten()\n",
"y0 = Y[::2, ::2].flatten()\n",
"length = speed[::2, ::2].flatten()/40\n",
"angle = theta[::2, ::2].flatten()\n",
"x1 = x0 + length * np.cos(angle)\n",
"y1 = y0 + length * np.sin(angle)\n",
"\n",
"xs, ys = streamlines(xx, yy, U.T, V.T, density=1)\n",
"\n",
"cm = np.array([\"#C7E9B4\", \"#7FCDBB\", \"#41B6C4\", \"#1D91C0\", \"#225EA8\", \"#0C2C84\"])\n",
"ix = ((length-length.min())/(length.max()-length.min())*5).astype('int')\n",
"colors = cm[ix]\n",
"\n",
"p1 = figure(x_range=(-3,3 ), y_range=(-3, 3))\n",
"quiver = p1.segment(x0, y0, x1, y1, color=colors, line_width=2)\n",
"\n",
"multi_line = p1.multi_line(xs, ys, color=\"#ee6666\", line_width=2, line_alpha=0.8)\n",
"p1.grid.visible = False\n",
"p1.xaxis.axis_label = 'x'\n",
"p1.yaxis.axis_label = 'v'\n",
"p1.add_layout(Span(location=0, dimension='height', line_width=1, line_color='black'))\n",
"p1.add_layout(Span(location=0, dimension='width', line_width=1, line_color='black'))\n",
"p1.scatter(0, 0, size=20, color=\"#ee6666\")\n",
"\n",
"show(p1);"
]
},
{
"cell_type": "code",
"execution_count": 133,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"@interact(b=FloatSlider(min=0., max=2., value=0.))\n",
"def update(b):\n",
" V = dv(b, X, Y)\n",
" speed = np.sqrt(U*U + V*V)\n",
" theta = np.arctan(V/U)\n",
"\n",
" length = speed[::2, ::2].flatten()/40\n",
" angle = theta[::2, ::2].flatten()\n",
" x1 = x0 + length * np.cos(angle)\n",
" y1 = y0 + length * np.sin(angle)\n",
" xs, ys = streamlines(xx, yy, U.T, V.T, density=1)\n",
"\n",
" cm = np.array([\"#C7E9B4\", \"#7FCDBB\", \"#41B6C4\", \"#1D91C0\", \"#225EA8\", \"#0C2C84\"])\n",
" ix = ((length-length.min())/(length.max()-length.min())*5).astype('int')\n",
" colors = cm[ix]\n",
" \n",
" quiver.data_source.data = dict(x0=x0, y0=y0, x1=x1, y1=y1)\n",
" multi_line.data_source.data = dict(xs=xs, ys=ys)\n",
" push_notebook()\n",
"\n",
" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### >2 dimensions\n",
"\n",
"Chaos = sensitivity to initial conditions"
]
},
{
"cell_type": "code",
"execution_count": 88,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/4/45/Double-compound-pendulum.gif\" alt=\"double-pendulum\" style=\"width:400;height:400px;\">"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%%HTML\n",
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/4/45/Double-compound-pendulum.gif\" alt=\"double-pendulum\" style=\"width:400;height:400px;\">"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Sociodynamics\n",
"\n",
"![](http://i.imgur.com/GPGTD1T.png)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Back to behavioral dynamics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"![](http://i.imgur.com/t29qPXk.png)\n",
"\n",
"![](http://i.imgur.com/ExVKw5e.png)\n",
"\n",
"![](http://i.imgur.com/mJVcuig.png)\n",
"\n",
"![](http://i.imgur.com/XuxfN7P.png)\n",
"\n",
"![](http://i.imgur.com/pCGecWX.png)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (py35)",
"language": "python",
"name": "py35"
},
"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.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment